@box/combobox-with-api 0.25.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (101) hide show
  1. package/LICENSE +379 -0
  2. package/chunks/dynamic-loading-tree.js +423 -0
  3. package/esm/index.js +8 -0
  4. package/esm/lib/components/combobox-with-api/combobox-with-api-container.js +47 -0
  5. package/esm/lib/components/combobox-with-api/combobox-with-api-error.js +26 -0
  6. package/esm/lib/components/combobox-with-api/combobox-with-api.js +37 -0
  7. package/esm/lib/components/combobox-with-api/messages.js +10 -0
  8. package/esm/lib/components/combobox-with-api-pagination/combobox-with-api-pagination.js +207 -0
  9. package/esm/lib/components/combobox-with-api-pagination/index.js +4 -0
  10. package/esm/lib/components/combobox-with-api-pagination/messages.js +34 -0
  11. package/esm/lib/components/combobox-with-api-pagination/request.js +6 -0
  12. package/esm/lib/components/combobox-with-api-pagination/use-async-list.js +137 -0
  13. package/esm/lib/components/combobox-with-api-pagination/utils/is-abort-error.js +13 -0
  14. package/esm/lib/components/combobox-with-api-pagination/utils/use-controllable-state.js +40 -0
  15. package/esm/lib/components/combobox-with-api-pagination/utils/use-intersection-observer.js +87 -0
  16. package/esm/lib/components/combobox-with-api-tree-view/combobox-with-api-tree-view.js +125 -0
  17. package/esm/lib/components/combobox-with-api-tree-view/dynamic-loading-tree.js +10 -0
  18. package/esm/lib/components/combobox-with-api-tree-view/index.js +4 -0
  19. package/esm/lib/components/combobox-with-api-tree-view/tree-utils.js +26 -0
  20. package/i18n/bn-IN.js +10 -0
  21. package/i18n/bn-IN.properties +16 -0
  22. package/i18n/da-DK.js +10 -0
  23. package/i18n/da-DK.properties +16 -0
  24. package/i18n/de-DE.js +10 -0
  25. package/i18n/de-DE.properties +16 -0
  26. package/i18n/en-AU.js +10 -0
  27. package/i18n/en-AU.properties +16 -0
  28. package/i18n/en-CA.js +10 -0
  29. package/i18n/en-CA.properties +16 -0
  30. package/i18n/en-GB.js +10 -0
  31. package/i18n/en-GB.properties +16 -0
  32. package/i18n/en-US.js +10 -0
  33. package/i18n/en-US.properties +16 -0
  34. package/i18n/en-x-pseudo.js +10 -0
  35. package/i18n/en-x-pseudo.properties +16 -0
  36. package/i18n/es-419.js +10 -0
  37. package/i18n/es-419.properties +16 -0
  38. package/i18n/es-ES.js +10 -0
  39. package/i18n/es-ES.properties +16 -0
  40. package/i18n/fi-FI.js +10 -0
  41. package/i18n/fi-FI.properties +16 -0
  42. package/i18n/fr-CA.js +10 -0
  43. package/i18n/fr-CA.properties +16 -0
  44. package/i18n/fr-FR.js +10 -0
  45. package/i18n/fr-FR.properties +16 -0
  46. package/i18n/hi-IN.js +10 -0
  47. package/i18n/hi-IN.properties +16 -0
  48. package/i18n/it-IT.js +10 -0
  49. package/i18n/it-IT.properties +16 -0
  50. package/i18n/ja-JP.js +10 -0
  51. package/i18n/ja-JP.properties +16 -0
  52. package/i18n/json/src/lib/components/combobox-with-api/messages.json +1 -0
  53. package/i18n/json/src/lib/components/combobox-with-api-pagination/messages.json +1 -0
  54. package/i18n/ko-KR.js +10 -0
  55. package/i18n/ko-KR.properties +16 -0
  56. package/i18n/nb-NO.js +10 -0
  57. package/i18n/nb-NO.properties +16 -0
  58. package/i18n/nl-NL.js +10 -0
  59. package/i18n/nl-NL.properties +16 -0
  60. package/i18n/pl-PL.js +10 -0
  61. package/i18n/pl-PL.properties +16 -0
  62. package/i18n/pt-BR.js +10 -0
  63. package/i18n/pt-BR.properties +16 -0
  64. package/i18n/ru-RU.js +10 -0
  65. package/i18n/ru-RU.properties +16 -0
  66. package/i18n/sv-SE.js +10 -0
  67. package/i18n/sv-SE.properties +16 -0
  68. package/i18n/tr-TR.js +10 -0
  69. package/i18n/tr-TR.properties +16 -0
  70. package/i18n/zh-CN.js +10 -0
  71. package/i18n/zh-CN.properties +16 -0
  72. package/i18n/zh-TW.js +10 -0
  73. package/i18n/zh-TW.properties +16 -0
  74. package/package.json +55 -0
  75. package/styles/combobox-with-api-error.css +1 -0
  76. package/styles/combobox-with-api-pagination.css +1 -0
  77. package/styles/dynamic-loading-tree.css +1 -0
  78. package/types/index.d.ts +4 -0
  79. package/types/lib/components/combobox-with-api/combobox-with-api-container.d.ts +3 -0
  80. package/types/lib/components/combobox-with-api/combobox-with-api-error.d.ts +3 -0
  81. package/types/lib/components/combobox-with-api/combobox-with-api.d.ts +3 -0
  82. package/types/lib/components/combobox-with-api/messages.d.ts +8 -0
  83. package/types/lib/components/combobox-with-api/stories/shared.d.ts +8 -0
  84. package/types/lib/components/combobox-with-api/types.d.ts +39 -0
  85. package/types/lib/components/combobox-with-api-pagination/combobox-with-api-pagination.d.ts +17 -0
  86. package/types/lib/components/combobox-with-api-pagination/index.d.ts +2 -0
  87. package/types/lib/components/combobox-with-api-pagination/messages.d.ts +38 -0
  88. package/types/lib/components/combobox-with-api-pagination/request.d.ts +7 -0
  89. package/types/lib/components/combobox-with-api-pagination/stories/shared.d.ts +38 -0
  90. package/types/lib/components/combobox-with-api-pagination/types.d.ts +49 -0
  91. package/types/lib/components/combobox-with-api-pagination/use-async-list.d.ts +63 -0
  92. package/types/lib/components/combobox-with-api-pagination/utils/is-abort-error.d.ts +1 -0
  93. package/types/lib/components/combobox-with-api-pagination/utils/use-controllable-state.d.ts +8 -0
  94. package/types/lib/components/combobox-with-api-pagination/utils/use-intersection-observer.d.ts +28 -0
  95. package/types/lib/components/combobox-with-api-tree-view/combobox-with-api-tree-view.d.ts +21 -0
  96. package/types/lib/components/combobox-with-api-tree-view/dynamic-loading-tree.d.ts +23 -0
  97. package/types/lib/components/combobox-with-api-tree-view/index.d.ts +3 -0
  98. package/types/lib/components/combobox-with-api-tree-view/stories/mock-api-response.d.ts +11 -0
  99. package/types/lib/components/combobox-with-api-tree-view/stories/shared.d.ts +26 -0
  100. package/types/lib/components/combobox-with-api-tree-view/tree-utils.d.ts +22 -0
  101. package/types/lib/components/combobox-with-api-tree-view/types.d.ts +60 -0
package/i18n/bn-IN.js ADDED
@@ -0,0 +1,10 @@
1
+ export default {
2
+ "comboboxWithApi.apiError": "ফলাফল লোড করা যায়নি। আবার চেষ্টা করতে ক্লিক করুন।",
3
+ "comboboxWithApiPagination.clearButtonAriaLabel": "ইনপুট এবং নির্বাচন মুছে ফেলুন",
4
+ "comboboxWithApiPagination.errorAction": "রিলোড করুন",
5
+ "comboboxWithApiPagination.errorIconLabel": "ত্রুটি",
6
+ "comboboxWithApiPagination.errorMessage": "বিকল্পগুলো লোড করা যায়নি",
7
+ "comboboxWithApiPagination.loadingAriaLabel": "লোড হচ্ছে...",
8
+ "comboboxWithApiPagination.loadingMoreAriaLabel": "আরও লোড করা হচ্ছে...",
9
+ "comboboxWithApiPagination.noResults": "কোনও ফলাফল খুঁজে পাওয়া যায়নি"
10
+ }
@@ -0,0 +1,16 @@
1
+ # Error message displayed as combobox item when an API failed and the suggestions could not load
2
+ comboboxWithApi.apiError = ফলাফল লোড করা যায়নি। আবার চেষ্টা করতে ক্লিক করুন।
3
+ # Aria label for the clear button visible at the end of the combobox. When clicked, it will clear all text in the input, as well as the current selection.
4
+ comboboxWithApiPagination.clearButtonAriaLabel = ইনপুট এবং নির্বাচন মুছে ফেলুন
5
+ # Error message displayed resembling button that calls to action to reload the results
6
+ comboboxWithApiPagination.errorAction = রিলোড করুন
7
+ # Aria-label text for the error icon in the loading results error message
8
+ comboboxWithApiPagination.errorIconLabel = ত্রুটি
9
+ # Error message displayed as inline notice that informs the user that the options failed to load
10
+ comboboxWithApiPagination.errorMessage = বিকল্পগুলো লোড করা যায়নি
11
+ # Visually hidden aria-label text for the loading spinner
12
+ comboboxWithApiPagination.loadingAriaLabel = লোড হচ্ছে...
13
+ # Visually hidden aria-label text for the loading spinner show when loading more results from infinite scrolling list
14
+ comboboxWithApiPagination.loadingMoreAriaLabel = আরও লোড করা হচ্ছে...
15
+ # Message displayed when no results are found in the combobox
16
+ comboboxWithApiPagination.noResults = কোনও ফলাফল খুঁজে পাওয়া যায়নি
package/i18n/da-DK.js ADDED
@@ -0,0 +1,10 @@
1
+ export default {
2
+ "comboboxWithApi.apiError": "Kunne ikke indlæse resultater. Klik for at prøve igen.",
3
+ "comboboxWithApiPagination.clearButtonAriaLabel": "Ryd input og valg",
4
+ "comboboxWithApiPagination.errorAction": "Genindlæs",
5
+ "comboboxWithApiPagination.errorIconLabel": "Fejl",
6
+ "comboboxWithApiPagination.errorMessage": "Kunne ikke indlæse indstillinger",
7
+ "comboboxWithApiPagination.loadingAriaLabel": "Henter...",
8
+ "comboboxWithApiPagination.loadingMoreAriaLabel": "Indlæser mere...",
9
+ "comboboxWithApiPagination.noResults": "Ingen resultater"
10
+ }
@@ -0,0 +1,16 @@
1
+ # Error message displayed as combobox item when an API failed and the suggestions could not load
2
+ comboboxWithApi.apiError = Kunne ikke indlæse resultater. Klik for at prøve igen.
3
+ # Aria label for the clear button visible at the end of the combobox. When clicked, it will clear all text in the input, as well as the current selection.
4
+ comboboxWithApiPagination.clearButtonAriaLabel = Ryd input og valg
5
+ # Error message displayed resembling button that calls to action to reload the results
6
+ comboboxWithApiPagination.errorAction = Genindlæs
7
+ # Aria-label text for the error icon in the loading results error message
8
+ comboboxWithApiPagination.errorIconLabel = Fejl
9
+ # Error message displayed as inline notice that informs the user that the options failed to load
10
+ comboboxWithApiPagination.errorMessage = Kunne ikke indlæse indstillinger
11
+ # Visually hidden aria-label text for the loading spinner
12
+ comboboxWithApiPagination.loadingAriaLabel = Henter...
13
+ # Visually hidden aria-label text for the loading spinner show when loading more results from infinite scrolling list
14
+ comboboxWithApiPagination.loadingMoreAriaLabel = Indlæser mere...
15
+ # Message displayed when no results are found in the combobox
16
+ comboboxWithApiPagination.noResults = Ingen resultater
package/i18n/de-DE.js ADDED
@@ -0,0 +1,10 @@
1
+ export default {
2
+ "comboboxWithApi.apiError": "Ergebnisse konnten nicht geladen werden. Klicken Sie auf den Link, um es erneut zu versuchen.",
3
+ "comboboxWithApiPagination.clearButtonAriaLabel": "Eingabe und Auswahl löschen",
4
+ "comboboxWithApiPagination.errorAction": "Neu laden",
5
+ "comboboxWithApiPagination.errorIconLabel": "Fehler",
6
+ "comboboxWithApiPagination.errorMessage": "Optionen konnten nicht geladen werden",
7
+ "comboboxWithApiPagination.loadingAriaLabel": "Laden …",
8
+ "comboboxWithApiPagination.loadingMoreAriaLabel": "Mehr laden ...",
9
+ "comboboxWithApiPagination.noResults": "Keine Ergebnisse gefunden"
10
+ }
@@ -0,0 +1,16 @@
1
+ # Error message displayed as combobox item when an API failed and the suggestions could not load
2
+ comboboxWithApi.apiError = Ergebnisse konnten nicht geladen werden. Klicken Sie auf den Link, um es erneut zu versuchen.
3
+ # Aria label for the clear button visible at the end of the combobox. When clicked, it will clear all text in the input, as well as the current selection.
4
+ comboboxWithApiPagination.clearButtonAriaLabel = Eingabe und Auswahl löschen
5
+ # Error message displayed resembling button that calls to action to reload the results
6
+ comboboxWithApiPagination.errorAction = Neu laden
7
+ # Aria-label text for the error icon in the loading results error message
8
+ comboboxWithApiPagination.errorIconLabel = Fehler
9
+ # Error message displayed as inline notice that informs the user that the options failed to load
10
+ comboboxWithApiPagination.errorMessage = Optionen konnten nicht geladen werden
11
+ # Visually hidden aria-label text for the loading spinner
12
+ comboboxWithApiPagination.loadingAriaLabel = Laden …
13
+ # Visually hidden aria-label text for the loading spinner show when loading more results from infinite scrolling list
14
+ comboboxWithApiPagination.loadingMoreAriaLabel = Mehr laden ...
15
+ # Message displayed when no results are found in the combobox
16
+ comboboxWithApiPagination.noResults = Keine Ergebnisse gefunden
package/i18n/en-AU.js ADDED
@@ -0,0 +1,10 @@
1
+ export default {
2
+ "comboboxWithApi.apiError": "Couldn't load results. Click to try again.",
3
+ "comboboxWithApiPagination.clearButtonAriaLabel": "Clear input and selection",
4
+ "comboboxWithApiPagination.errorAction": "Re-load",
5
+ "comboboxWithApiPagination.errorIconLabel": "Error",
6
+ "comboboxWithApiPagination.errorMessage": "Failed to load options",
7
+ "comboboxWithApiPagination.loadingAriaLabel": "Loading...",
8
+ "comboboxWithApiPagination.loadingMoreAriaLabel": "Loading more...",
9
+ "comboboxWithApiPagination.noResults": "No results found"
10
+ }
@@ -0,0 +1,16 @@
1
+ # Error message displayed as combobox item when an API failed and the suggestions could not load
2
+ comboboxWithApi.apiError = Couldn't load results. Click to try again.
3
+ # Aria label for the clear button visible at the end of the combobox. When clicked, it will clear all text in the input, as well as the current selection.
4
+ comboboxWithApiPagination.clearButtonAriaLabel = Clear input and selection
5
+ # Error message displayed resembling button that calls to action to reload the results
6
+ comboboxWithApiPagination.errorAction = Re-load
7
+ # Aria-label text for the error icon in the loading results error message
8
+ comboboxWithApiPagination.errorIconLabel = Error
9
+ # Error message displayed as inline notice that informs the user that the options failed to load
10
+ comboboxWithApiPagination.errorMessage = Failed to load options
11
+ # Visually hidden aria-label text for the loading spinner
12
+ comboboxWithApiPagination.loadingAriaLabel = Loading...
13
+ # Visually hidden aria-label text for the loading spinner show when loading more results from infinite scrolling list
14
+ comboboxWithApiPagination.loadingMoreAriaLabel = Loading more...
15
+ # Message displayed when no results are found in the combobox
16
+ comboboxWithApiPagination.noResults = No results found
package/i18n/en-CA.js ADDED
@@ -0,0 +1,10 @@
1
+ export default {
2
+ "comboboxWithApi.apiError": "Couldn't load results. Click to try again.",
3
+ "comboboxWithApiPagination.clearButtonAriaLabel": "Clear input and selection",
4
+ "comboboxWithApiPagination.errorAction": "Reload",
5
+ "comboboxWithApiPagination.errorIconLabel": "Error",
6
+ "comboboxWithApiPagination.errorMessage": "Failed to load options",
7
+ "comboboxWithApiPagination.loadingAriaLabel": "Loading...",
8
+ "comboboxWithApiPagination.loadingMoreAriaLabel": "Loading more...",
9
+ "comboboxWithApiPagination.noResults": "No results found"
10
+ }
@@ -0,0 +1,16 @@
1
+ # Error message displayed as combobox item when an API failed and the suggestions could not load
2
+ comboboxWithApi.apiError = Couldn't load results. Click to try again.
3
+ # Aria label for the clear button visible at the end of the combobox. When clicked, it will clear all text in the input, as well as the current selection.
4
+ comboboxWithApiPagination.clearButtonAriaLabel = Clear input and selection
5
+ # Error message displayed resembling button that calls to action to reload the results
6
+ comboboxWithApiPagination.errorAction = Reload
7
+ # Aria-label text for the error icon in the loading results error message
8
+ comboboxWithApiPagination.errorIconLabel = Error
9
+ # Error message displayed as inline notice that informs the user that the options failed to load
10
+ comboboxWithApiPagination.errorMessage = Failed to load options
11
+ # Visually hidden aria-label text for the loading spinner
12
+ comboboxWithApiPagination.loadingAriaLabel = Loading...
13
+ # Visually hidden aria-label text for the loading spinner show when loading more results from infinite scrolling list
14
+ comboboxWithApiPagination.loadingMoreAriaLabel = Loading more...
15
+ # Message displayed when no results are found in the combobox
16
+ comboboxWithApiPagination.noResults = No results found
package/i18n/en-GB.js ADDED
@@ -0,0 +1,10 @@
1
+ export default {
2
+ "comboboxWithApi.apiError": "Couldn't load results. Click to try again.",
3
+ "comboboxWithApiPagination.clearButtonAriaLabel": "Clear input and selection",
4
+ "comboboxWithApiPagination.errorAction": "Re-load",
5
+ "comboboxWithApiPagination.errorIconLabel": "Error",
6
+ "comboboxWithApiPagination.errorMessage": "Failed to load options",
7
+ "comboboxWithApiPagination.loadingAriaLabel": "Loading...",
8
+ "comboboxWithApiPagination.loadingMoreAriaLabel": "Loading more...",
9
+ "comboboxWithApiPagination.noResults": "No results found"
10
+ }
@@ -0,0 +1,16 @@
1
+ # Error message displayed as combobox item when an API failed and the suggestions could not load
2
+ comboboxWithApi.apiError = Couldn't load results. Click to try again.
3
+ # Aria label for the clear button visible at the end of the combobox. When clicked, it will clear all text in the input, as well as the current selection.
4
+ comboboxWithApiPagination.clearButtonAriaLabel = Clear input and selection
5
+ # Error message displayed resembling button that calls to action to reload the results
6
+ comboboxWithApiPagination.errorAction = Re-load
7
+ # Aria-label text for the error icon in the loading results error message
8
+ comboboxWithApiPagination.errorIconLabel = Error
9
+ # Error message displayed as inline notice that informs the user that the options failed to load
10
+ comboboxWithApiPagination.errorMessage = Failed to load options
11
+ # Visually hidden aria-label text for the loading spinner
12
+ comboboxWithApiPagination.loadingAriaLabel = Loading...
13
+ # Visually hidden aria-label text for the loading spinner show when loading more results from infinite scrolling list
14
+ comboboxWithApiPagination.loadingMoreAriaLabel = Loading more...
15
+ # Message displayed when no results are found in the combobox
16
+ comboboxWithApiPagination.noResults = No results found
package/i18n/en-US.js ADDED
@@ -0,0 +1,10 @@
1
+ export default {
2
+ "comboboxWithApi.apiError": "Couldn't load results. Click to try again.",
3
+ "comboboxWithApiPagination.clearButtonAriaLabel": "Clear input and selection",
4
+ "comboboxWithApiPagination.errorAction": "Reload",
5
+ "comboboxWithApiPagination.errorIconLabel": "Error",
6
+ "comboboxWithApiPagination.errorMessage": "Failed to load options",
7
+ "comboboxWithApiPagination.loadingAriaLabel": "Loading...",
8
+ "comboboxWithApiPagination.loadingMoreAriaLabel": "Loading more...",
9
+ "comboboxWithApiPagination.noResults": "No results found"
10
+ }
@@ -0,0 +1,16 @@
1
+ # Error message displayed as combobox item when an API failed and the suggestions could not load
2
+ comboboxWithApi.apiError = Couldn't load results. Click to try again.
3
+ # Aria label for the clear button visible at the end of the combobox. When clicked, it will clear all text in the input, as well as the current selection.
4
+ comboboxWithApiPagination.clearButtonAriaLabel = Clear input and selection
5
+ # Error message displayed resembling button that calls to action to reload the results
6
+ comboboxWithApiPagination.errorAction = Reload
7
+ # Aria-label text for the error icon in the loading results error message
8
+ comboboxWithApiPagination.errorIconLabel = Error
9
+ # Error message displayed as inline notice that informs the user that the options failed to load
10
+ comboboxWithApiPagination.errorMessage = Failed to load options
11
+ # Visually hidden aria-label text for the loading spinner
12
+ comboboxWithApiPagination.loadingAriaLabel = Loading...
13
+ # Visually hidden aria-label text for the loading spinner show when loading more results from infinite scrolling list
14
+ comboboxWithApiPagination.loadingMoreAriaLabel = Loading more...
15
+ # Message displayed when no results are found in the combobox
16
+ comboboxWithApiPagination.noResults = No results found
@@ -0,0 +1,10 @@
1
+ export default {
2
+ "comboboxWithApi.apiError": "⟦萬萬萬萬萬萬萬萬萬萬萬萬 Çŏűĺďπ'ţ ļоåď ŕεśüľţś. Ĉļïċκ ŧσ τґÿ ąġąîη. 國國國國國國國國國國國國⟧",
3
+ "comboboxWithApiPagination.clearButtonAriaLabel": "⟦萬萬萬萬萬萬萬 Ċĺėåг ίйΡùť ąήď ŝєļêćţіóń 國國國國國國國⟧",
4
+ "comboboxWithApiPagination.errorAction": "⟦萬 Ŗêĺôåď 國⟧",
5
+ "comboboxWithApiPagination.errorIconLabel": "⟦萬 Εяѓõґ 國⟧",
6
+ "comboboxWithApiPagination.errorMessage": "⟦萬萬萬萬萬萬 ₣άίļęď ţõ ļőăď ŏΡţїóʼnѕ 國國國國國國⟧",
7
+ "comboboxWithApiPagination.loadingAriaLabel": "⟦萬萬 Ļôåďίňĝ... 國國⟧",
8
+ "comboboxWithApiPagination.loadingMoreAriaLabel": "⟦萬萬萬萬 Ľøâďïлĝ mоŗê... 國國國國⟧",
9
+ "comboboxWithApiPagination.noResults": "⟦萬萬萬萬 Ńò ŗěŝųľŧѕ ƒōűηď 國國國國⟧"
10
+ }
@@ -0,0 +1,16 @@
1
+ # Error message displayed as combobox item when an API failed and the suggestions could not load
2
+ comboboxWithApi.apiError = ⟦萬萬萬萬萬萬萬萬萬萬萬萬 Çŏűĺďπ'ţ ļоåď ŕεśüľţś. Ĉļïċκ ŧσ τґÿ ąġąîη. 國國國國國國國國國國國國⟧
3
+ # Aria label for the clear button visible at the end of the combobox. When clicked, it will clear all text in the input, as well as the current selection.
4
+ comboboxWithApiPagination.clearButtonAriaLabel = ⟦萬萬萬萬萬萬萬 Ċĺėåг ίйΡùť ąήď ŝєļêćţіóń 國國國國國國國⟧
5
+ # Error message displayed resembling button that calls to action to reload the results
6
+ comboboxWithApiPagination.errorAction = ⟦萬 Ŗêĺôåď 國⟧
7
+ # Aria-label text for the error icon in the loading results error message
8
+ comboboxWithApiPagination.errorIconLabel = ⟦萬 Εяѓõґ 國⟧
9
+ # Error message displayed as inline notice that informs the user that the options failed to load
10
+ comboboxWithApiPagination.errorMessage = ⟦萬萬萬萬萬萬 ₣άίļęď ţõ ļőăď ŏΡţїóʼnѕ 國國國國國國⟧
11
+ # Visually hidden aria-label text for the loading spinner
12
+ comboboxWithApiPagination.loadingAriaLabel = ⟦萬萬 Ļôåďίňĝ... 國國⟧
13
+ # Visually hidden aria-label text for the loading spinner show when loading more results from infinite scrolling list
14
+ comboboxWithApiPagination.loadingMoreAriaLabel = ⟦萬萬萬萬 Ľøâďïлĝ mоŗê... 國國國國⟧
15
+ # Message displayed when no results are found in the combobox
16
+ comboboxWithApiPagination.noResults = ⟦萬萬萬萬 Ńò ŗěŝųľŧѕ ƒōűηď 國國國國⟧
package/i18n/es-419.js ADDED
@@ -0,0 +1,10 @@
1
+ export default {
2
+ "comboboxWithApi.apiError": "No es posible cargar los resultados. Haz clic para intentarlo nuevamente.",
3
+ "comboboxWithApiPagination.clearButtonAriaLabel": "Eliminar entrada y selección",
4
+ "comboboxWithApiPagination.errorAction": "Volver a cargar",
5
+ "comboboxWithApiPagination.errorIconLabel": "Error",
6
+ "comboboxWithApiPagination.errorMessage": "Error al cargar las colecciones",
7
+ "comboboxWithApiPagination.loadingAriaLabel": "Cargando...",
8
+ "comboboxWithApiPagination.loadingMoreAriaLabel": "Cargando más...",
9
+ "comboboxWithApiPagination.noResults": "No se han encontrado resultados"
10
+ }
@@ -0,0 +1,16 @@
1
+ # Error message displayed as combobox item when an API failed and the suggestions could not load
2
+ comboboxWithApi.apiError = No es posible cargar los resultados. Haz clic para intentarlo nuevamente.
3
+ # Aria label for the clear button visible at the end of the combobox. When clicked, it will clear all text in the input, as well as the current selection.
4
+ comboboxWithApiPagination.clearButtonAriaLabel = Eliminar entrada y selección
5
+ # Error message displayed resembling button that calls to action to reload the results
6
+ comboboxWithApiPagination.errorAction = Volver a cargar
7
+ # Aria-label text for the error icon in the loading results error message
8
+ comboboxWithApiPagination.errorIconLabel = Error
9
+ # Error message displayed as inline notice that informs the user that the options failed to load
10
+ comboboxWithApiPagination.errorMessage = Error al cargar las colecciones
11
+ # Visually hidden aria-label text for the loading spinner
12
+ comboboxWithApiPagination.loadingAriaLabel = Cargando...
13
+ # Visually hidden aria-label text for the loading spinner show when loading more results from infinite scrolling list
14
+ comboboxWithApiPagination.loadingMoreAriaLabel = Cargando más...
15
+ # Message displayed when no results are found in the combobox
16
+ comboboxWithApiPagination.noResults = No se han encontrado resultados
package/i18n/es-ES.js ADDED
@@ -0,0 +1,10 @@
1
+ export default {
2
+ "comboboxWithApi.apiError": "No es posible cargar los resultados. Haz clic para intentarlo nuevamente.",
3
+ "comboboxWithApiPagination.clearButtonAriaLabel": "Eliminar entrada y selección",
4
+ "comboboxWithApiPagination.errorAction": "Volver a cargar",
5
+ "comboboxWithApiPagination.errorIconLabel": "Error",
6
+ "comboboxWithApiPagination.errorMessage": "Error al cargar las colecciones",
7
+ "comboboxWithApiPagination.loadingAriaLabel": "Cargando...",
8
+ "comboboxWithApiPagination.loadingMoreAriaLabel": "Cargando más...",
9
+ "comboboxWithApiPagination.noResults": "No se han encontrado resultados"
10
+ }
@@ -0,0 +1,16 @@
1
+ # Error message displayed as combobox item when an API failed and the suggestions could not load
2
+ comboboxWithApi.apiError = No es posible cargar los resultados. Haz clic para intentarlo nuevamente.
3
+ # Aria label for the clear button visible at the end of the combobox. When clicked, it will clear all text in the input, as well as the current selection.
4
+ comboboxWithApiPagination.clearButtonAriaLabel = Eliminar entrada y selección
5
+ # Error message displayed resembling button that calls to action to reload the results
6
+ comboboxWithApiPagination.errorAction = Volver a cargar
7
+ # Aria-label text for the error icon in the loading results error message
8
+ comboboxWithApiPagination.errorIconLabel = Error
9
+ # Error message displayed as inline notice that informs the user that the options failed to load
10
+ comboboxWithApiPagination.errorMessage = Error al cargar las colecciones
11
+ # Visually hidden aria-label text for the loading spinner
12
+ comboboxWithApiPagination.loadingAriaLabel = Cargando...
13
+ # Visually hidden aria-label text for the loading spinner show when loading more results from infinite scrolling list
14
+ comboboxWithApiPagination.loadingMoreAriaLabel = Cargando más...
15
+ # Message displayed when no results are found in the combobox
16
+ comboboxWithApiPagination.noResults = No se han encontrado resultados
package/i18n/fi-FI.js ADDED
@@ -0,0 +1,10 @@
1
+ export default {
2
+ "comboboxWithApi.apiError": "Tuloksia ei voitu ladata. Yritä uudelleen napsauttamalla.",
3
+ "comboboxWithApiPagination.clearButtonAriaLabel": "Tyhjennä syöte ja valinta",
4
+ "comboboxWithApiPagination.errorAction": "Lataa uudelleen",
5
+ "comboboxWithApiPagination.errorIconLabel": "Virhe",
6
+ "comboboxWithApiPagination.errorMessage": "Vaihtoehtoja ei voitu ladata",
7
+ "comboboxWithApiPagination.loadingAriaLabel": "Ladataan...",
8
+ "comboboxWithApiPagination.loadingMoreAriaLabel": "Ladataan lisää...",
9
+ "comboboxWithApiPagination.noResults": "Ei tuloksia"
10
+ }
@@ -0,0 +1,16 @@
1
+ # Error message displayed as combobox item when an API failed and the suggestions could not load
2
+ comboboxWithApi.apiError = Tuloksia ei voitu ladata. Yritä uudelleen napsauttamalla.
3
+ # Aria label for the clear button visible at the end of the combobox. When clicked, it will clear all text in the input, as well as the current selection.
4
+ comboboxWithApiPagination.clearButtonAriaLabel = Tyhjennä syöte ja valinta
5
+ # Error message displayed resembling button that calls to action to reload the results
6
+ comboboxWithApiPagination.errorAction = Lataa uudelleen
7
+ # Aria-label text for the error icon in the loading results error message
8
+ comboboxWithApiPagination.errorIconLabel = Virhe
9
+ # Error message displayed as inline notice that informs the user that the options failed to load
10
+ comboboxWithApiPagination.errorMessage = Vaihtoehtoja ei voitu ladata
11
+ # Visually hidden aria-label text for the loading spinner
12
+ comboboxWithApiPagination.loadingAriaLabel = Ladataan...
13
+ # Visually hidden aria-label text for the loading spinner show when loading more results from infinite scrolling list
14
+ comboboxWithApiPagination.loadingMoreAriaLabel = Ladataan lisää...
15
+ # Message displayed when no results are found in the combobox
16
+ comboboxWithApiPagination.noResults = Ei tuloksia
package/i18n/fr-CA.js ADDED
@@ -0,0 +1,10 @@
1
+ export default {
2
+ "comboboxWithApi.apiError": "Impossible de charger les résultats. Cliquez pour réessayer.",
3
+ "comboboxWithApiPagination.clearButtonAriaLabel": "Effacer la saisie et la sélection",
4
+ "comboboxWithApiPagination.errorAction": "Recharger",
5
+ "comboboxWithApiPagination.errorIconLabel": "Erreur",
6
+ "comboboxWithApiPagination.errorMessage": "Échec du chargement des options",
7
+ "comboboxWithApiPagination.loadingAriaLabel": "Chargement en cours…",
8
+ "comboboxWithApiPagination.loadingMoreAriaLabel": "Chargement supplémentaire...",
9
+ "comboboxWithApiPagination.noResults": "Pas de résultat trouvé"
10
+ }
@@ -0,0 +1,16 @@
1
+ # Error message displayed as combobox item when an API failed and the suggestions could not load
2
+ comboboxWithApi.apiError = Impossible de charger les résultats. Cliquez pour réessayer.
3
+ # Aria label for the clear button visible at the end of the combobox. When clicked, it will clear all text in the input, as well as the current selection.
4
+ comboboxWithApiPagination.clearButtonAriaLabel = Effacer la saisie et la sélection
5
+ # Error message displayed resembling button that calls to action to reload the results
6
+ comboboxWithApiPagination.errorAction = Recharger
7
+ # Aria-label text for the error icon in the loading results error message
8
+ comboboxWithApiPagination.errorIconLabel = Erreur
9
+ # Error message displayed as inline notice that informs the user that the options failed to load
10
+ comboboxWithApiPagination.errorMessage = Échec du chargement des options
11
+ # Visually hidden aria-label text for the loading spinner
12
+ comboboxWithApiPagination.loadingAriaLabel = Chargement en cours…
13
+ # Visually hidden aria-label text for the loading spinner show when loading more results from infinite scrolling list
14
+ comboboxWithApiPagination.loadingMoreAriaLabel = Chargement supplémentaire...
15
+ # Message displayed when no results are found in the combobox
16
+ comboboxWithApiPagination.noResults = Pas de résultat trouvé
package/i18n/fr-FR.js ADDED
@@ -0,0 +1,10 @@
1
+ export default {
2
+ "comboboxWithApi.apiError": "Impossible de charger les résultats. Cliquez pour réessayer.",
3
+ "comboboxWithApiPagination.clearButtonAriaLabel": "Effacer la saisie et la sélection",
4
+ "comboboxWithApiPagination.errorAction": "Recharger",
5
+ "comboboxWithApiPagination.errorIconLabel": "Erreur",
6
+ "comboboxWithApiPagination.errorMessage": "Échec du chargement des options",
7
+ "comboboxWithApiPagination.loadingAriaLabel": "Chargement en cours…",
8
+ "comboboxWithApiPagination.loadingMoreAriaLabel": "Chargement supplémentaire...",
9
+ "comboboxWithApiPagination.noResults": "Pas de résultat trouvé"
10
+ }
@@ -0,0 +1,16 @@
1
+ # Error message displayed as combobox item when an API failed and the suggestions could not load
2
+ comboboxWithApi.apiError = Impossible de charger les résultats. Cliquez pour réessayer.
3
+ # Aria label for the clear button visible at the end of the combobox. When clicked, it will clear all text in the input, as well as the current selection.
4
+ comboboxWithApiPagination.clearButtonAriaLabel = Effacer la saisie et la sélection
5
+ # Error message displayed resembling button that calls to action to reload the results
6
+ comboboxWithApiPagination.errorAction = Recharger
7
+ # Aria-label text for the error icon in the loading results error message
8
+ comboboxWithApiPagination.errorIconLabel = Erreur
9
+ # Error message displayed as inline notice that informs the user that the options failed to load
10
+ comboboxWithApiPagination.errorMessage = Échec du chargement des options
11
+ # Visually hidden aria-label text for the loading spinner
12
+ comboboxWithApiPagination.loadingAriaLabel = Chargement en cours…
13
+ # Visually hidden aria-label text for the loading spinner show when loading more results from infinite scrolling list
14
+ comboboxWithApiPagination.loadingMoreAriaLabel = Chargement supplémentaire...
15
+ # Message displayed when no results are found in the combobox
16
+ comboboxWithApiPagination.noResults = Pas de résultat trouvé
package/i18n/hi-IN.js ADDED
@@ -0,0 +1,10 @@
1
+ export default {
2
+ "comboboxWithApi.apiError": "परिणाम लोड नहीं हो सके. फिर से कोशिश करने के लिए क्लिक करें.",
3
+ "comboboxWithApiPagination.clearButtonAriaLabel": "इनपुट और चयन साफ करें",
4
+ "comboboxWithApiPagination.errorAction": "पुनः लोड करें",
5
+ "comboboxWithApiPagination.errorIconLabel": "त्रुटि",
6
+ "comboboxWithApiPagination.errorMessage": "विकल्प लोड करने में विफल रहा",
7
+ "comboboxWithApiPagination.loadingAriaLabel": "लोड हो रहा है...",
8
+ "comboboxWithApiPagination.loadingMoreAriaLabel": "और अधिक लोड हो रहा है...",
9
+ "comboboxWithApiPagination.noResults": "कोई परिणाम नहीं मिला"
10
+ }
@@ -0,0 +1,16 @@
1
+ # Error message displayed as combobox item when an API failed and the suggestions could not load
2
+ comboboxWithApi.apiError = परिणाम लोड नहीं हो सके. फिर से कोशिश करने के लिए क्लिक करें.
3
+ # Aria label for the clear button visible at the end of the combobox. When clicked, it will clear all text in the input, as well as the current selection.
4
+ comboboxWithApiPagination.clearButtonAriaLabel = इनपुट और चयन साफ करें
5
+ # Error message displayed resembling button that calls to action to reload the results
6
+ comboboxWithApiPagination.errorAction = पुनः लोड करें
7
+ # Aria-label text for the error icon in the loading results error message
8
+ comboboxWithApiPagination.errorIconLabel = त्रुटि
9
+ # Error message displayed as inline notice that informs the user that the options failed to load
10
+ comboboxWithApiPagination.errorMessage = विकल्प लोड करने में विफल रहा
11
+ # Visually hidden aria-label text for the loading spinner
12
+ comboboxWithApiPagination.loadingAriaLabel = लोड हो रहा है...
13
+ # Visually hidden aria-label text for the loading spinner show when loading more results from infinite scrolling list
14
+ comboboxWithApiPagination.loadingMoreAriaLabel = और अधिक लोड हो रहा है...
15
+ # Message displayed when no results are found in the combobox
16
+ comboboxWithApiPagination.noResults = कोई परिणाम नहीं मिला
package/i18n/it-IT.js ADDED
@@ -0,0 +1,10 @@
1
+ export default {
2
+ "comboboxWithApi.apiError": "Impossibile caricare i risultati. Fai clic per riprovare.",
3
+ "comboboxWithApiPagination.clearButtonAriaLabel": "Cancella inserimento e selezione",
4
+ "comboboxWithApiPagination.errorAction": "Ricarica",
5
+ "comboboxWithApiPagination.errorIconLabel": "Errore",
6
+ "comboboxWithApiPagination.errorMessage": "Caricamento delle opzioni non riuscito",
7
+ "comboboxWithApiPagination.loadingAriaLabel": "Caricamento in corso…",
8
+ "comboboxWithApiPagination.loadingMoreAriaLabel": "Caricamento di più opzioni in corso...",
9
+ "comboboxWithApiPagination.noResults": "Nessun risultato trovato"
10
+ }
@@ -0,0 +1,16 @@
1
+ # Error message displayed as combobox item when an API failed and the suggestions could not load
2
+ comboboxWithApi.apiError = Impossibile caricare i risultati. Fai clic per riprovare.
3
+ # Aria label for the clear button visible at the end of the combobox. When clicked, it will clear all text in the input, as well as the current selection.
4
+ comboboxWithApiPagination.clearButtonAriaLabel = Cancella inserimento e selezione
5
+ # Error message displayed resembling button that calls to action to reload the results
6
+ comboboxWithApiPagination.errorAction = Ricarica
7
+ # Aria-label text for the error icon in the loading results error message
8
+ comboboxWithApiPagination.errorIconLabel = Errore
9
+ # Error message displayed as inline notice that informs the user that the options failed to load
10
+ comboboxWithApiPagination.errorMessage = Caricamento delle opzioni non riuscito
11
+ # Visually hidden aria-label text for the loading spinner
12
+ comboboxWithApiPagination.loadingAriaLabel = Caricamento in corso…
13
+ # Visually hidden aria-label text for the loading spinner show when loading more results from infinite scrolling list
14
+ comboboxWithApiPagination.loadingMoreAriaLabel = Caricamento di più opzioni in corso...
15
+ # Message displayed when no results are found in the combobox
16
+ comboboxWithApiPagination.noResults = Nessun risultato trovato
package/i18n/ja-JP.js ADDED
@@ -0,0 +1,10 @@
1
+ export default {
2
+ "comboboxWithApi.apiError": "結果を読み込めませんでした。クリックしてもう一度やり直してください。",
3
+ "comboboxWithApiPagination.clearButtonAriaLabel": "入力と選択をクリア",
4
+ "comboboxWithApiPagination.errorAction": "再読み込み",
5
+ "comboboxWithApiPagination.errorIconLabel": "エラー",
6
+ "comboboxWithApiPagination.errorMessage": "オプションを読み込めませんでした",
7
+ "comboboxWithApiPagination.loadingAriaLabel": "読み込み中...",
8
+ "comboboxWithApiPagination.loadingMoreAriaLabel": "さらに読み込み中...",
9
+ "comboboxWithApiPagination.noResults": "一致する結果がありません"
10
+ }
@@ -0,0 +1,16 @@
1
+ # Error message displayed as combobox item when an API failed and the suggestions could not load
2
+ comboboxWithApi.apiError = 結果を読み込めませんでした。クリックしてもう一度やり直してください。
3
+ # Aria label for the clear button visible at the end of the combobox. When clicked, it will clear all text in the input, as well as the current selection.
4
+ comboboxWithApiPagination.clearButtonAriaLabel = 入力と選択をクリア
5
+ # Error message displayed resembling button that calls to action to reload the results
6
+ comboboxWithApiPagination.errorAction = 再読み込み
7
+ # Aria-label text for the error icon in the loading results error message
8
+ comboboxWithApiPagination.errorIconLabel = エラー
9
+ # Error message displayed as inline notice that informs the user that the options failed to load
10
+ comboboxWithApiPagination.errorMessage = オプションを読み込めませんでした
11
+ # Visually hidden aria-label text for the loading spinner
12
+ comboboxWithApiPagination.loadingAriaLabel = 読み込み中...
13
+ # Visually hidden aria-label text for the loading spinner show when loading more results from infinite scrolling list
14
+ comboboxWithApiPagination.loadingMoreAriaLabel = さらに読み込み中...
15
+ # Message displayed when no results are found in the combobox
16
+ comboboxWithApiPagination.noResults = 一致する結果がありません
@@ -0,0 +1 @@
1
+ [{"id":"comboboxWithApi.apiError","description":"Error message displayed as combobox item when an API failed and the suggestions could not load","defaultMessage":"Couldn't load results. Click to try again."}]
@@ -0,0 +1 @@
1
+ [{"id":"comboboxWithApiPagination.errorAction","description":"Error message displayed resembling button that calls to action to reload the results","defaultMessage":"Reload"},{"id":"comboboxWithApiPagination.errorMessage","description":"Error message displayed as inline notice that informs the user that the options failed to load","defaultMessage":"Failed to load options"},{"id":"comboboxWithApiPagination.errorIconLabel","description":"Aria-label text for the error icon in the loading results error message","defaultMessage":"Error"},{"id":"comboboxWithApiPagination.loadingAriaLabel","description":"Visually hidden aria-label text for the loading spinner","defaultMessage":"Loading..."},{"id":"comboboxWithApiPagination.loadingMoreAriaLabel","description":"Visually hidden aria-label text for the loading spinner show when loading more results from infinite scrolling list","defaultMessage":"Loading more..."},{"id":"comboboxWithApiPagination.noResults","description":"Message displayed when no results are found in the combobox","defaultMessage":"No results found"},{"id":"comboboxWithApiPagination.clearButtonAriaLabel","description":"Aria label for the clear button visible at the end of the combobox. When clicked, it will clear all text in the input, as well as the current selection.","defaultMessage":"Clear input and selection"}]
package/i18n/ko-KR.js ADDED
@@ -0,0 +1,10 @@
1
+ export default {
2
+ "comboboxWithApi.apiError": "결과를 로드할 수 없었습니다. 다시 시도하려면 클릭하세요.",
3
+ "comboboxWithApiPagination.clearButtonAriaLabel": "입력 및 선택 지우기",
4
+ "comboboxWithApiPagination.errorAction": "다시 로드",
5
+ "comboboxWithApiPagination.errorIconLabel": "오류",
6
+ "comboboxWithApiPagination.errorMessage": "상세한 옵션을 로드하지 못함",
7
+ "comboboxWithApiPagination.loadingAriaLabel": "로딩중...",
8
+ "comboboxWithApiPagination.loadingMoreAriaLabel": "자세한 내용 로딩 중...",
9
+ "comboboxWithApiPagination.noResults": "결과 없음"
10
+ }
@@ -0,0 +1,16 @@
1
+ # Error message displayed as combobox item when an API failed and the suggestions could not load
2
+ comboboxWithApi.apiError = 결과를 로드할 수 없었습니다. 다시 시도하려면 클릭하세요.
3
+ # Aria label for the clear button visible at the end of the combobox. When clicked, it will clear all text in the input, as well as the current selection.
4
+ comboboxWithApiPagination.clearButtonAriaLabel = 입력 및 선택 지우기
5
+ # Error message displayed resembling button that calls to action to reload the results
6
+ comboboxWithApiPagination.errorAction = 다시 로드
7
+ # Aria-label text for the error icon in the loading results error message
8
+ comboboxWithApiPagination.errorIconLabel = 오류
9
+ # Error message displayed as inline notice that informs the user that the options failed to load
10
+ comboboxWithApiPagination.errorMessage = 상세한 옵션을 로드하지 못함
11
+ # Visually hidden aria-label text for the loading spinner
12
+ comboboxWithApiPagination.loadingAriaLabel = 로딩중...
13
+ # Visually hidden aria-label text for the loading spinner show when loading more results from infinite scrolling list
14
+ comboboxWithApiPagination.loadingMoreAriaLabel = 자세한 내용 로딩 중...
15
+ # Message displayed when no results are found in the combobox
16
+ comboboxWithApiPagination.noResults = 결과 없음
package/i18n/nb-NO.js ADDED
@@ -0,0 +1,10 @@
1
+ export default {
2
+ "comboboxWithApi.apiError": "Kunne ikke laste inn resultater. Klikk for å prøve igjen.",
3
+ "comboboxWithApiPagination.clearButtonAriaLabel": "Fjern inndata og valg",
4
+ "comboboxWithApiPagination.errorAction": "Last inn på nytt",
5
+ "comboboxWithApiPagination.errorIconLabel": "Feil",
6
+ "comboboxWithApiPagination.errorMessage": "Kunne ikke laste inn alternativer",
7
+ "comboboxWithApiPagination.loadingAriaLabel": "Laster …",
8
+ "comboboxWithApiPagination.loadingMoreAriaLabel": "Laster mer …",
9
+ "comboboxWithApiPagination.noResults": "Fant ingen resultater"
10
+ }
@@ -0,0 +1,16 @@
1
+ # Error message displayed as combobox item when an API failed and the suggestions could not load
2
+ comboboxWithApi.apiError = Kunne ikke laste inn resultater. Klikk for å prøve igjen.
3
+ # Aria label for the clear button visible at the end of the combobox. When clicked, it will clear all text in the input, as well as the current selection.
4
+ comboboxWithApiPagination.clearButtonAriaLabel = Fjern inndata og valg
5
+ # Error message displayed resembling button that calls to action to reload the results
6
+ comboboxWithApiPagination.errorAction = Last inn på nytt
7
+ # Aria-label text for the error icon in the loading results error message
8
+ comboboxWithApiPagination.errorIconLabel = Feil
9
+ # Error message displayed as inline notice that informs the user that the options failed to load
10
+ comboboxWithApiPagination.errorMessage = Kunne ikke laste inn alternativer
11
+ # Visually hidden aria-label text for the loading spinner
12
+ comboboxWithApiPagination.loadingAriaLabel = Laster …
13
+ # Visually hidden aria-label text for the loading spinner show when loading more results from infinite scrolling list
14
+ comboboxWithApiPagination.loadingMoreAriaLabel = Laster mer …
15
+ # Message displayed when no results are found in the combobox
16
+ comboboxWithApiPagination.noResults = Fant ingen resultater
package/i18n/nl-NL.js ADDED
@@ -0,0 +1,10 @@
1
+ export default {
2
+ "comboboxWithApi.apiError": "Kon geen resultaten laden. Klik om het opnieuw te proberen.",
3
+ "comboboxWithApiPagination.clearButtonAriaLabel": "Invoer en selectie wissen",
4
+ "comboboxWithApiPagination.errorAction": "Herladen",
5
+ "comboboxWithApiPagination.errorIconLabel": "Fout",
6
+ "comboboxWithApiPagination.errorMessage": "Kan geen opties laden",
7
+ "comboboxWithApiPagination.loadingAriaLabel": "Aan het laden...",
8
+ "comboboxWithApiPagination.loadingMoreAriaLabel": "Meer aan het laden...",
9
+ "comboboxWithApiPagination.noResults": "Geen resultaten gevonden"
10
+ }
@@ -0,0 +1,16 @@
1
+ # Error message displayed as combobox item when an API failed and the suggestions could not load
2
+ comboboxWithApi.apiError = Kon geen resultaten laden. Klik om het opnieuw te proberen.
3
+ # Aria label for the clear button visible at the end of the combobox. When clicked, it will clear all text in the input, as well as the current selection.
4
+ comboboxWithApiPagination.clearButtonAriaLabel = Invoer en selectie wissen
5
+ # Error message displayed resembling button that calls to action to reload the results
6
+ comboboxWithApiPagination.errorAction = Herladen
7
+ # Aria-label text for the error icon in the loading results error message
8
+ comboboxWithApiPagination.errorIconLabel = Fout
9
+ # Error message displayed as inline notice that informs the user that the options failed to load
10
+ comboboxWithApiPagination.errorMessage = Kan geen opties laden
11
+ # Visually hidden aria-label text for the loading spinner
12
+ comboboxWithApiPagination.loadingAriaLabel = Aan het laden...
13
+ # Visually hidden aria-label text for the loading spinner show when loading more results from infinite scrolling list
14
+ comboboxWithApiPagination.loadingMoreAriaLabel = Meer aan het laden...
15
+ # Message displayed when no results are found in the combobox
16
+ comboboxWithApiPagination.noResults = Geen resultaten gevonden
package/i18n/pl-PL.js ADDED
@@ -0,0 +1,10 @@
1
+ export default {
2
+ "comboboxWithApi.apiError": "Nie można wczytać wyników. Kliknij, aby spróbować ponownie.",
3
+ "comboboxWithApiPagination.clearButtonAriaLabel": "Wyczyść wprowadzone dane i wybór",
4
+ "comboboxWithApiPagination.errorAction": "Wczytaj ponownie",
5
+ "comboboxWithApiPagination.errorIconLabel": "Błąd",
6
+ "comboboxWithApiPagination.errorMessage": "Nie udało się wczytać opcji",
7
+ "comboboxWithApiPagination.loadingAriaLabel": "Wczytywanie...",
8
+ "comboboxWithApiPagination.loadingMoreAriaLabel": "Wczytywanie kolejnych...",
9
+ "comboboxWithApiPagination.noResults": "Brak wyników"
10
+ }