@transferwise/components 45.20.0 → 45.21.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.
- package/build/i18n/cs.json +11 -3
- package/build/i18n/de.json +11 -3
- package/build/i18n/en.json +1 -0
- package/build/i18n/es.json +11 -3
- package/build/i18n/fr.json +11 -3
- package/build/i18n/hu.json +11 -3
- package/build/i18n/id.json +11 -3
- package/build/i18n/it.json +11 -3
- package/build/i18n/ja.json +11 -3
- package/build/i18n/pl.json +11 -3
- package/build/i18n/pt.json +11 -3
- package/build/i18n/ro.json +11 -3
- package/build/i18n/ru.json +11 -3
- package/build/i18n/th.json +11 -3
- package/build/i18n/tr.json +11 -3
- package/build/i18n/uk.json +11 -3
- package/build/i18n/zh-CN.json +11 -3
- package/build/i18n/{zh.json → zh-HK.json} +11 -3
- package/build/index.esm.js +535 -236
- package/build/index.esm.js.map +1 -1
- package/build/index.js +535 -236
- package/build/index.js.map +1 -1
- package/build/main.css +1 -1
- package/build/styles/actionButton/ActionButton.css +1 -1
- package/build/styles/chips/Chip.css +1 -1
- package/build/styles/circularButton/CircularButton.css +1 -1
- package/build/styles/common/Option/Option.css +1 -1
- package/build/styles/common/bottomSheet/BottomSheet.css +1 -1
- package/build/styles/common/closeButton/CloseButton.css +1 -1
- package/build/styles/dateLookup/DateLookup.css +1 -1
- package/build/styles/drawer/Drawer.css +1 -1
- package/build/styles/flowNavigation/FlowNavigation.css +1 -1
- package/build/styles/inputs/SelectInput.css +1 -1
- package/build/styles/main.css +1 -1
- package/build/styles/overlayHeader/OverlayHeader.css +1 -1
- package/build/styles/statusIcon/StatusIcon.css +1 -1
- package/build/styles/summary/Summary.css +1 -1
- package/build/styles/typeahead/Typeahead.css +1 -1
- package/build/styles/uploadInput/UploadInput.css +1 -1
- package/build/types/common/bottomSheet/BottomSheet.d.ts.map +1 -1
- package/build/types/common/locale/index.d.ts +10 -1
- package/build/types/common/locale/index.d.ts.map +1 -1
- package/build/types/common/propsValues/breakpoint.d.ts +1 -0
- package/build/types/common/propsValues/breakpoint.d.ts.map +1 -1
- package/build/types/dateLookup/DateLookup.d.ts.map +1 -1
- package/build/types/dateLookup/dateHeader/DateHeader.d.ts.map +1 -1
- package/build/types/i18n/index.d.ts.map +1 -1
- package/build/types/inputs/SelectInput.d.ts.map +1 -1
- package/build/types/inputs/SelectInput.messages.d.ts +9 -0
- package/build/types/inputs/SelectInput.messages.d.ts.map +1 -0
- package/build/types/test-utils/story-config.d.ts +11 -1
- package/build/types/test-utils/story-config.d.ts.map +1 -1
- package/build/types/test-utils/window-mock.d.ts +2 -0
- package/build/types/test-utils/window-mock.d.ts.map +1 -0
- package/package.json +4 -4
- package/src/actionButton/ActionButton.css +1 -1
- package/src/actionButton/ActionButton.less +5 -1
- package/src/chips/Chip.css +1 -1
- package/src/chips/Chip.less +8 -0
- package/src/circularButton/CircularButton.css +1 -1
- package/src/circularButton/CircularButton.less +9 -3
- package/src/common/Option/Option.css +1 -1
- package/src/common/Option/Option.less +6 -0
- package/src/common/bottomSheet/BottomSheet.css +1 -1
- package/src/common/bottomSheet/BottomSheet.less +1 -1
- package/src/common/bottomSheet/BottomSheet.spec.tsx +4 -1
- package/src/common/bottomSheet/BottomSheet.story.tsx +4 -0
- package/src/common/bottomSheet/BottomSheet.tsx +10 -1
- package/src/common/closeButton/CloseButton.css +1 -1
- package/src/common/closeButton/CloseButton.less +12 -0
- package/src/common/hooks/useMedia.spec.ts +3 -17
- package/src/common/locale/index.js +10 -1
- package/src/common/locale/index.spec.js +1 -34
- package/src/common/propsValues/breakpoint.ts +1 -0
- package/src/dateLookup/DateLookup.css +1 -1
- package/src/dateLookup/DateLookup.js +7 -3
- package/src/dateLookup/DateLookup.keyboardEvents.spec.js +3 -0
- package/src/dateLookup/DateLookup.less +6 -0
- package/src/dateLookup/DateLookup.story.js +6 -1
- package/src/dateLookup/DateLookup.testingLibrary.spec.js +3 -1
- package/src/dateLookup/DateLookup.view.spec.js +4 -0
- package/src/dateLookup/dateHeader/DateHeader.js +4 -2
- package/src/drawer/Drawer.css +1 -1
- package/src/drawer/Drawer.less +6 -8
- package/src/drawer/Drawer.story.js +42 -2
- package/src/flowNavigation/FlowNavigation.css +1 -1
- package/src/i18n/cs.json +11 -3
- package/src/i18n/de.json +11 -3
- package/src/i18n/en.json +1 -0
- package/src/i18n/es.json +11 -3
- package/src/i18n/fr.json +11 -3
- package/src/i18n/hu.json +11 -3
- package/src/i18n/id.json +11 -3
- package/src/i18n/index.ts +6 -2
- package/src/i18n/it.json +11 -3
- package/src/i18n/ja.json +11 -3
- package/src/i18n/pl.json +11 -3
- package/src/i18n/pt.json +11 -3
- package/src/i18n/ro.json +11 -3
- package/src/i18n/ru.json +11 -3
- package/src/i18n/th.json +11 -3
- package/src/i18n/tr.json +11 -3
- package/src/i18n/uk.json +11 -3
- package/src/i18n/zh-CN.json +11 -3
- package/src/i18n/{zh.json → zh-HK.json} +11 -3
- package/src/inputs/SelectInput.css +1 -1
- package/src/inputs/SelectInput.less +13 -1
- package/src/inputs/SelectInput.messages.ts +9 -0
- package/src/inputs/SelectInput.story.tsx +8 -5
- package/src/inputs/SelectInput.tsx +55 -22
- package/src/inputs/_BottomSheet.tsx +19 -19
- package/src/main.css +1 -1
- package/src/modal/Modal.tsx +2 -2
- package/src/overlayHeader/OverlayHeader.css +1 -1
- package/src/popover/Popover.spec.js +3 -1
- package/src/radioGroup/RadioGroup.js +1 -1
- package/src/radioGroup/RadioGroup.spec.js +18 -0
- package/src/select/Select.spec.js +6 -9
- package/src/statusIcon/StatusIcon.css +1 -1
- package/src/statusIcon/StatusIcon.less +10 -0
- package/src/summary/Summary.css +1 -1
- package/src/summary/Summary.less +1 -1
- package/src/test-utils/index.js +1 -0
- package/src/test-utils/story-config.ts +21 -7
- package/src/test-utils/window-mock.ts +19 -0
- package/src/typeahead/Typeahead.css +1 -1
- package/src/typeahead/Typeahead.less +5 -6
- package/src/uploadInput/UploadInput.css +1 -1
- package/src/uploadInput/UploadInput.less +5 -1
- package/build/i18n/zh_CN.json +0 -44
- package/src/i18n/zh_CN.json +0 -44
package/build/i18n/cs.json
CHANGED
|
@@ -1,14 +1,22 @@
|
|
|
1
1
|
{
|
|
2
|
+
"neptune.Button.loadingAriaLabel": "načítání",
|
|
2
3
|
"neptune.Chips.ariaLabel": "Vyčistit {choice}",
|
|
3
4
|
"neptune.ClearButton.ariaLabel": "Vyčistit",
|
|
4
5
|
"neptune.CloseButton.ariaLabel": "Zavřít",
|
|
5
6
|
"neptune.DateInput.day.label": "Den",
|
|
6
7
|
"neptune.DateInput.month.label": "Měsíc",
|
|
7
8
|
"neptune.DateInput.year.label": "Rok",
|
|
9
|
+
"neptune.DateLookup.day": "den",
|
|
10
|
+
"neptune.DateLookup.goTo20YearView": "Go to 20 year view",
|
|
11
|
+
"neptune.DateLookup.month": "měsíc",
|
|
12
|
+
"neptune.DateLookup.next": "další",
|
|
13
|
+
"neptune.DateLookup.previous": "předchozí",
|
|
14
|
+
"neptune.DateLookup.selected": "vybráno",
|
|
15
|
+
"neptune.DateLookup.twentyYears": "20 let",
|
|
16
|
+
"neptune.DateLookup.year": "rok",
|
|
17
|
+
"neptune.FlowNavigation.back": "back to previous step",
|
|
18
|
+
"neptune.Link.opensInNewTab": "(opens in new tab)",
|
|
8
19
|
"neptune.MoneyInput.Select.placeholder": "Vybrat možnost...",
|
|
9
|
-
"neptune.Pagination.ariaLabel": "Navigace v Pagination",
|
|
10
|
-
"neptune.PaginationLink.ariaLabel.active": "Přejít na stránku {pageNumber}",
|
|
11
|
-
"neptune.PaginationLink.ariaLabel.inactive": "Současná stránka, stránka {pageNumber}",
|
|
12
20
|
"neptune.Select.searchPlaceholder": "Hledat...",
|
|
13
21
|
"neptune.Summary.statusDone": "Položka dokončena",
|
|
14
22
|
"neptune.Summary.statusNotDone": "Položka k dokončení",
|
package/build/i18n/de.json
CHANGED
|
@@ -1,14 +1,22 @@
|
|
|
1
1
|
{
|
|
2
|
+
"neptune.Button.loadingAriaLabel": "wird geladen",
|
|
2
3
|
"neptune.Chips.ariaLabel": "{choice} zurücksetzen",
|
|
3
4
|
"neptune.ClearButton.ariaLabel": "Zurücksetzen",
|
|
4
5
|
"neptune.CloseButton.ariaLabel": "Schließen",
|
|
5
6
|
"neptune.DateInput.day.label": "Tag",
|
|
6
7
|
"neptune.DateInput.month.label": "Monat",
|
|
7
8
|
"neptune.DateInput.year.label": "Jahr",
|
|
9
|
+
"neptune.DateLookup.day": "Tag",
|
|
10
|
+
"neptune.DateLookup.goTo20YearView": "Zur 20-Jahres-Ansicht",
|
|
11
|
+
"neptune.DateLookup.month": "Monat",
|
|
12
|
+
"neptune.DateLookup.next": "weiter",
|
|
13
|
+
"neptune.DateLookup.previous": "zurück",
|
|
14
|
+
"neptune.DateLookup.selected": "ausgewählt",
|
|
15
|
+
"neptune.DateLookup.twentyYears": "20 Jahre",
|
|
16
|
+
"neptune.DateLookup.year": "Jahr",
|
|
17
|
+
"neptune.FlowNavigation.back": "zurück zum vorherigen Schritt",
|
|
18
|
+
"neptune.Link.opensInNewTab": "(wird in einem neuen Tab geöffnet)",
|
|
8
19
|
"neptune.MoneyInput.Select.placeholder": "Wähle eine der Möglichkeiten aus...",
|
|
9
|
-
"neptune.Pagination.ariaLabel": "Seitennummer-Navigation",
|
|
10
|
-
"neptune.PaginationLink.ariaLabel.active": "Weiter zur Seite {pageNumber}",
|
|
11
|
-
"neptune.PaginationLink.ariaLabel.inactive": "Aktuelle Seite – Seite {pageNumber}",
|
|
12
20
|
"neptune.Select.searchPlaceholder": "Wird gesucht...",
|
|
13
21
|
"neptune.Summary.statusDone": "Schritt erledigt",
|
|
14
22
|
"neptune.Summary.statusNotDone": "Schritt noch zu erledigen",
|
package/build/i18n/en.json
CHANGED
|
@@ -18,6 +18,7 @@
|
|
|
18
18
|
"neptune.Link.opensInNewTab": "(opens in new tab)",
|
|
19
19
|
"neptune.MoneyInput.Select.placeholder": "Select an option...",
|
|
20
20
|
"neptune.Select.searchPlaceholder": "Search...",
|
|
21
|
+
"neptune.SelectInput.noResultsFound": "No results found",
|
|
21
22
|
"neptune.Summary.statusDone": "Item done",
|
|
22
23
|
"neptune.Summary.statusNotDone": "Item to do",
|
|
23
24
|
"neptune.Summary.statusPending": "Item pending",
|
package/build/i18n/es.json
CHANGED
|
@@ -1,14 +1,22 @@
|
|
|
1
1
|
{
|
|
2
|
+
"neptune.Button.loadingAriaLabel": "cargando",
|
|
2
3
|
"neptune.Chips.ariaLabel": "Descartar {choice}",
|
|
3
4
|
"neptune.ClearButton.ariaLabel": "Borrar",
|
|
4
5
|
"neptune.CloseButton.ariaLabel": "Cerrar",
|
|
5
6
|
"neptune.DateInput.day.label": "Día",
|
|
6
7
|
"neptune.DateInput.month.label": "Mes",
|
|
7
8
|
"neptune.DateInput.year.label": "Año",
|
|
9
|
+
"neptune.DateLookup.day": "día",
|
|
10
|
+
"neptune.DateLookup.goTo20YearView": "Ir a vista de 20 años",
|
|
11
|
+
"neptune.DateLookup.month": "mes",
|
|
12
|
+
"neptune.DateLookup.next": "siguiente",
|
|
13
|
+
"neptune.DateLookup.previous": "anterior",
|
|
14
|
+
"neptune.DateLookup.selected": "seleccionado",
|
|
15
|
+
"neptune.DateLookup.twentyYears": "20 años",
|
|
16
|
+
"neptune.DateLookup.year": "año",
|
|
17
|
+
"neptune.FlowNavigation.back": "volver al paso anterior",
|
|
18
|
+
"neptune.Link.opensInNewTab": "(se abre en una pestaña nueva)",
|
|
8
19
|
"neptune.MoneyInput.Select.placeholder": "Selecciona una opción...",
|
|
9
|
-
"neptune.Pagination.ariaLabel": "Navegación por las páginas",
|
|
10
|
-
"neptune.PaginationLink.ariaLabel.active": "Ve a la página {pageNumber}",
|
|
11
|
-
"neptune.PaginationLink.ariaLabel.inactive": "Página actual, página {pageNumber}",
|
|
12
20
|
"neptune.Select.searchPlaceholder": "Buscar...",
|
|
13
21
|
"neptune.Summary.statusDone": "Apartado listo",
|
|
14
22
|
"neptune.Summary.statusNotDone": "Apartado a completar",
|
package/build/i18n/fr.json
CHANGED
|
@@ -1,14 +1,22 @@
|
|
|
1
1
|
{
|
|
2
|
+
"neptune.Button.loadingAriaLabel": "chargement",
|
|
2
3
|
"neptune.Chips.ariaLabel": "Effacer {choice}",
|
|
3
4
|
"neptune.ClearButton.ariaLabel": "Effacer",
|
|
4
5
|
"neptune.CloseButton.ariaLabel": "Fermer",
|
|
5
6
|
"neptune.DateInput.day.label": "Jour",
|
|
6
7
|
"neptune.DateInput.month.label": "Mois",
|
|
7
8
|
"neptune.DateInput.year.label": "Année",
|
|
9
|
+
"neptune.DateLookup.day": "jour",
|
|
10
|
+
"neptune.DateLookup.goTo20YearView": "Accéder à la vue sur 20 ans",
|
|
11
|
+
"neptune.DateLookup.month": "mois",
|
|
12
|
+
"neptune.DateLookup.next": "suivant",
|
|
13
|
+
"neptune.DateLookup.previous": "précédent",
|
|
14
|
+
"neptune.DateLookup.selected": "sélectionnée",
|
|
15
|
+
"neptune.DateLookup.twentyYears": "20 ans",
|
|
16
|
+
"neptune.DateLookup.year": "année",
|
|
17
|
+
"neptune.FlowNavigation.back": "revenir à l'étape précédente",
|
|
18
|
+
"neptune.Link.opensInNewTab": "(ouvre dans un nouvel onglet)",
|
|
8
19
|
"neptune.MoneyInput.Select.placeholder": "Sélectionner une option...",
|
|
9
|
-
"neptune.Pagination.ariaLabel": "Navigation par pagination",
|
|
10
|
-
"neptune.PaginationLink.ariaLabel.active": "Aller à la page {pageNumber}",
|
|
11
|
-
"neptune.PaginationLink.ariaLabel.inactive": "Page actuelle, page {pageNumber}",
|
|
12
20
|
"neptune.Select.searchPlaceholder": "Recherche...",
|
|
13
21
|
"neptune.Summary.statusDone": "Validé",
|
|
14
22
|
"neptune.Summary.statusNotDone": "À compléter",
|
package/build/i18n/hu.json
CHANGED
|
@@ -1,14 +1,22 @@
|
|
|
1
1
|
{
|
|
2
|
+
"neptune.Button.loadingAriaLabel": "betöltés",
|
|
2
3
|
"neptune.Chips.ariaLabel": "{choice} törlése",
|
|
3
4
|
"neptune.ClearButton.ariaLabel": "Törlés",
|
|
4
5
|
"neptune.CloseButton.ariaLabel": "Bezárás",
|
|
5
6
|
"neptune.DateInput.day.label": "Nap",
|
|
6
7
|
"neptune.DateInput.month.label": "Hónap",
|
|
7
8
|
"neptune.DateInput.year.label": "Év",
|
|
9
|
+
"neptune.DateLookup.day": "nap",
|
|
10
|
+
"neptune.DateLookup.goTo20YearView": "Ugrás a 20 éves nézetre",
|
|
11
|
+
"neptune.DateLookup.month": "hónap",
|
|
12
|
+
"neptune.DateLookup.next": "következő",
|
|
13
|
+
"neptune.DateLookup.previous": "előző",
|
|
14
|
+
"neptune.DateLookup.selected": "kiválasztva",
|
|
15
|
+
"neptune.DateLookup.twentyYears": "20 év",
|
|
16
|
+
"neptune.DateLookup.year": "év",
|
|
17
|
+
"neptune.FlowNavigation.back": "vissza az előző lépéshez",
|
|
18
|
+
"neptune.Link.opensInNewTab": "(új lapon nyílik meg)",
|
|
8
19
|
"neptune.MoneyInput.Select.placeholder": "Válassz ki egy lehetőséget...",
|
|
9
|
-
"neptune.Pagination.ariaLabel": "Lapszámos navigáció",
|
|
10
|
-
"neptune.PaginationLink.ariaLabel.active": "Ugrás a(z) {pageNumber}. oldalra",
|
|
11
|
-
"neptune.PaginationLink.ariaLabel.inactive": "Jelenlegi oldal, {pageNumber}. oldal",
|
|
12
20
|
"neptune.Select.searchPlaceholder": "Keresés...",
|
|
13
21
|
"neptune.Summary.statusDone": "Kész",
|
|
14
22
|
"neptune.Summary.statusNotDone": "Hátravan",
|
package/build/i18n/id.json
CHANGED
|
@@ -1,14 +1,22 @@
|
|
|
1
1
|
{
|
|
2
|
+
"neptune.Button.loadingAriaLabel": "memuat",
|
|
2
3
|
"neptune.Chips.ariaLabel": "Hapus {choice}",
|
|
3
4
|
"neptune.ClearButton.ariaLabel": "Hapus",
|
|
4
5
|
"neptune.CloseButton.ariaLabel": "Tutup",
|
|
5
6
|
"neptune.DateInput.day.label": "Hari",
|
|
6
7
|
"neptune.DateInput.month.label": "Bulan",
|
|
7
8
|
"neptune.DateInput.year.label": "Tahun",
|
|
9
|
+
"neptune.DateLookup.day": "hari",
|
|
10
|
+
"neptune.DateLookup.goTo20YearView": "Lihat tampilan 20 tahun",
|
|
11
|
+
"neptune.DateLookup.month": "bulan",
|
|
12
|
+
"neptune.DateLookup.next": "berikutnya",
|
|
13
|
+
"neptune.DateLookup.previous": "sebelumnya",
|
|
14
|
+
"neptune.DateLookup.selected": "terpilih",
|
|
15
|
+
"neptune.DateLookup.twentyYears": "20 tahun",
|
|
16
|
+
"neptune.DateLookup.year": "tahun",
|
|
17
|
+
"neptune.FlowNavigation.back": "kembali ke langkah sebelumnya",
|
|
18
|
+
"neptune.Link.opensInNewTab": "(terbuka di tab baru)",
|
|
8
19
|
"neptune.MoneyInput.Select.placeholder": "Pilih opsi...",
|
|
9
|
-
"neptune.Pagination.ariaLabel": "Halaman navigasi",
|
|
10
|
-
"neptune.PaginationLink.ariaLabel.active": "Lanjut ke halaman {pageNumber}",
|
|
11
|
-
"neptune.PaginationLink.ariaLabel.inactive": "Halaman saat ini, halaman {pageNumber}",
|
|
12
20
|
"neptune.Select.searchPlaceholder": "Cari...",
|
|
13
21
|
"neptune.Summary.statusDone": "Item selesai",
|
|
14
22
|
"neptune.Summary.statusNotDone": "Item yang harus dilakukan",
|
package/build/i18n/it.json
CHANGED
|
@@ -1,14 +1,22 @@
|
|
|
1
1
|
{
|
|
2
|
+
"neptune.Button.loadingAriaLabel": "caricamento",
|
|
2
3
|
"neptune.Chips.ariaLabel": "Rimuovi {choice}",
|
|
3
4
|
"neptune.ClearButton.ariaLabel": "Elimina",
|
|
4
5
|
"neptune.CloseButton.ariaLabel": "Chiudi",
|
|
5
6
|
"neptune.DateInput.day.label": "Giorno",
|
|
6
7
|
"neptune.DateInput.month.label": "Mese",
|
|
7
8
|
"neptune.DateInput.year.label": "Anno",
|
|
9
|
+
"neptune.DateLookup.day": "giorno",
|
|
10
|
+
"neptune.DateLookup.goTo20YearView": "Vai alla vista su 20 anni",
|
|
11
|
+
"neptune.DateLookup.month": "mese",
|
|
12
|
+
"neptune.DateLookup.next": "continua",
|
|
13
|
+
"neptune.DateLookup.previous": "indietro",
|
|
14
|
+
"neptune.DateLookup.selected": "selezionata",
|
|
15
|
+
"neptune.DateLookup.twentyYears": "20 anni",
|
|
16
|
+
"neptune.DateLookup.year": "anno",
|
|
17
|
+
"neptune.FlowNavigation.back": "torna al passaggio precedente",
|
|
18
|
+
"neptune.Link.opensInNewTab": "(si apre in una nuova scheda)",
|
|
8
19
|
"neptune.MoneyInput.Select.placeholder": "Seleziona un'opzione...",
|
|
9
|
-
"neptune.Pagination.ariaLabel": "Navigazione",
|
|
10
|
-
"neptune.PaginationLink.ariaLabel.active": "Via a pagina {pageNumber}",
|
|
11
|
-
"neptune.PaginationLink.ariaLabel.inactive": "Pagina corrente, pagina {pageNumber}",
|
|
12
20
|
"neptune.Select.searchPlaceholder": "Cerca...",
|
|
13
21
|
"neptune.Summary.statusDone": "Completato",
|
|
14
22
|
"neptune.Summary.statusNotDone": "Da completare",
|
package/build/i18n/ja.json
CHANGED
|
@@ -1,14 +1,22 @@
|
|
|
1
1
|
{
|
|
2
|
+
"neptune.Button.loadingAriaLabel": "読み込み中…",
|
|
2
3
|
"neptune.Chips.ariaLabel": "{choice} をクリア",
|
|
3
4
|
"neptune.ClearButton.ariaLabel": "消去",
|
|
4
5
|
"neptune.CloseButton.ariaLabel": "閉じる",
|
|
5
6
|
"neptune.DateInput.day.label": "日",
|
|
6
7
|
"neptune.DateInput.month.label": "月",
|
|
7
8
|
"neptune.DateInput.year.label": "年",
|
|
9
|
+
"neptune.DateLookup.day": "日",
|
|
10
|
+
"neptune.DateLookup.goTo20YearView": "20年表示に移動する",
|
|
11
|
+
"neptune.DateLookup.month": "月",
|
|
12
|
+
"neptune.DateLookup.next": "次",
|
|
13
|
+
"neptune.DateLookup.previous": "前",
|
|
14
|
+
"neptune.DateLookup.selected": "選択済み",
|
|
15
|
+
"neptune.DateLookup.twentyYears": "20年",
|
|
16
|
+
"neptune.DateLookup.year": "年",
|
|
17
|
+
"neptune.FlowNavigation.back": "前のステップに戻る",
|
|
18
|
+
"neptune.Link.opensInNewTab": "(新しいタブで開きます)",
|
|
8
19
|
"neptune.MoneyInput.Select.placeholder": "選択してください...",
|
|
9
|
-
"neptune.Pagination.ariaLabel": "ページネーションナビゲーション",
|
|
10
|
-
"neptune.PaginationLink.ariaLabel.active": "{pageNumber}のページへ移動します",
|
|
11
|
-
"neptune.PaginationLink.ariaLabel.inactive": "現在のページ、{pageNumber}ページ",
|
|
12
20
|
"neptune.Select.searchPlaceholder": "検索... ",
|
|
13
21
|
"neptune.Summary.statusDone": "完了",
|
|
14
22
|
"neptune.Summary.statusNotDone": "未対応",
|
package/build/i18n/pl.json
CHANGED
|
@@ -1,14 +1,22 @@
|
|
|
1
1
|
{
|
|
2
|
+
"neptune.Button.loadingAriaLabel": "ładowanie",
|
|
2
3
|
"neptune.Chips.ariaLabel": "Wyczyść {choice}",
|
|
3
4
|
"neptune.ClearButton.ariaLabel": "Wyczyść",
|
|
4
5
|
"neptune.CloseButton.ariaLabel": "Zamknij",
|
|
5
6
|
"neptune.DateInput.day.label": "Dzień",
|
|
6
7
|
"neptune.DateInput.month.label": "Miesiąc",
|
|
7
8
|
"neptune.DateInput.year.label": "Rok",
|
|
9
|
+
"neptune.DateLookup.day": "dzień",
|
|
10
|
+
"neptune.DateLookup.goTo20YearView": "Przejdź do widoku 20-letniego",
|
|
11
|
+
"neptune.DateLookup.month": "miesiąc",
|
|
12
|
+
"neptune.DateLookup.next": "następny",
|
|
13
|
+
"neptune.DateLookup.previous": "poprzedni",
|
|
14
|
+
"neptune.DateLookup.selected": "wybrano",
|
|
15
|
+
"neptune.DateLookup.twentyYears": "20 lat",
|
|
16
|
+
"neptune.DateLookup.year": "rok",
|
|
17
|
+
"neptune.FlowNavigation.back": "wróć do poprzedniego kroku",
|
|
18
|
+
"neptune.Link.opensInNewTab": "(otworzy się w nowej zakładce)",
|
|
8
19
|
"neptune.MoneyInput.Select.placeholder": "Wybierz opcję...",
|
|
9
|
-
"neptune.Pagination.ariaLabel": "Nawigacja w paginacji",
|
|
10
|
-
"neptune.PaginationLink.ariaLabel.active": "Przejdź do strony {pageNumber}",
|
|
11
|
-
"neptune.PaginationLink.ariaLabel.inactive": "Obecna strona, strona {pageNumber}",
|
|
12
20
|
"neptune.Select.searchPlaceholder": "Wyszukaj...",
|
|
13
21
|
"neptune.Summary.statusDone": "Czynność wykonana",
|
|
14
22
|
"neptune.Summary.statusNotDone": "Czynność do wykonania",
|
package/build/i18n/pt.json
CHANGED
|
@@ -1,14 +1,22 @@
|
|
|
1
1
|
{
|
|
2
|
+
"neptune.Button.loadingAriaLabel": "carregando",
|
|
2
3
|
"neptune.Chips.ariaLabel": "Remover {choice}",
|
|
3
4
|
"neptune.ClearButton.ariaLabel": "Remover",
|
|
4
5
|
"neptune.CloseButton.ariaLabel": "Fechar",
|
|
5
6
|
"neptune.DateInput.day.label": "Dia",
|
|
6
7
|
"neptune.DateInput.month.label": "Mês",
|
|
7
8
|
"neptune.DateInput.year.label": "Ano",
|
|
9
|
+
"neptune.DateLookup.day": "dia",
|
|
10
|
+
"neptune.DateLookup.goTo20YearView": "Go to 20 year view",
|
|
11
|
+
"neptune.DateLookup.month": "mês",
|
|
12
|
+
"neptune.DateLookup.next": "próximo",
|
|
13
|
+
"neptune.DateLookup.previous": "anterior",
|
|
14
|
+
"neptune.DateLookup.selected": "selecionada",
|
|
15
|
+
"neptune.DateLookup.twentyYears": "20 anos",
|
|
16
|
+
"neptune.DateLookup.year": "ano",
|
|
17
|
+
"neptune.FlowNavigation.back": "back to previous step",
|
|
18
|
+
"neptune.Link.opensInNewTab": "(abrir a página em uma nova aba)",
|
|
8
19
|
"neptune.MoneyInput.Select.placeholder": "Escolha uma opção...",
|
|
9
|
-
"neptune.Pagination.ariaLabel": "Navegação pelas páginas",
|
|
10
|
-
"neptune.PaginationLink.ariaLabel.active": "Ir para a página {pageNumber}",
|
|
11
|
-
"neptune.PaginationLink.ariaLabel.inactive": "Página atual, página {pageNumber}",
|
|
12
20
|
"neptune.Select.searchPlaceholder": "Buscar...",
|
|
13
21
|
"neptune.Summary.statusDone": "Pronto",
|
|
14
22
|
"neptune.Summary.statusNotDone": "Não iniciado",
|
package/build/i18n/ro.json
CHANGED
|
@@ -1,14 +1,22 @@
|
|
|
1
1
|
{
|
|
2
|
+
"neptune.Button.loadingAriaLabel": "se încarcă",
|
|
2
3
|
"neptune.Chips.ariaLabel": "Șterge {choice}",
|
|
3
4
|
"neptune.ClearButton.ariaLabel": "Elimină",
|
|
4
5
|
"neptune.CloseButton.ariaLabel": "Închide",
|
|
5
6
|
"neptune.DateInput.day.label": "Zi",
|
|
6
7
|
"neptune.DateInput.month.label": "Lună",
|
|
7
8
|
"neptune.DateInput.year.label": "An",
|
|
9
|
+
"neptune.DateLookup.day": "zi",
|
|
10
|
+
"neptune.DateLookup.goTo20YearView": "Accesează vizualizarea pe 20 de ani",
|
|
11
|
+
"neptune.DateLookup.month": "luna",
|
|
12
|
+
"neptune.DateLookup.next": "înainte",
|
|
13
|
+
"neptune.DateLookup.previous": "precedenta",
|
|
14
|
+
"neptune.DateLookup.selected": "selectată",
|
|
15
|
+
"neptune.DateLookup.twentyYears": "20 de ani",
|
|
16
|
+
"neptune.DateLookup.year": "anul",
|
|
17
|
+
"neptune.FlowNavigation.back": "înapoi la pasul anterior",
|
|
18
|
+
"neptune.Link.opensInNewTab": "(se deschide într-o filă nouă)",
|
|
8
19
|
"neptune.MoneyInput.Select.placeholder": "Selectează o opţiune...",
|
|
9
|
-
"neptune.Pagination.ariaLabel": "Navigare prin pagină",
|
|
10
|
-
"neptune.PaginationLink.ariaLabel.active": "Du-te la pagina {pageNumber}",
|
|
11
|
-
"neptune.PaginationLink.ariaLabel.inactive": "Pagina curentă, pagina {pageNumber}",
|
|
12
20
|
"neptune.Select.searchPlaceholder": "Caută...",
|
|
13
21
|
"neptune.Summary.statusDone": "Finalizat",
|
|
14
22
|
"neptune.Summary.statusNotDone": "De făcut",
|
package/build/i18n/ru.json
CHANGED
|
@@ -1,14 +1,22 @@
|
|
|
1
1
|
{
|
|
2
|
+
"neptune.Button.loadingAriaLabel": "загрузка",
|
|
2
3
|
"neptune.Chips.ariaLabel": "Очистить {choice}",
|
|
3
4
|
"neptune.ClearButton.ariaLabel": "Очистить",
|
|
4
5
|
"neptune.CloseButton.ariaLabel": "Закрыть",
|
|
5
6
|
"neptune.DateInput.day.label": "День",
|
|
6
7
|
"neptune.DateInput.month.label": "Месяц",
|
|
7
8
|
"neptune.DateInput.year.label": "Год",
|
|
9
|
+
"neptune.DateLookup.day": "день",
|
|
10
|
+
"neptune.DateLookup.goTo20YearView": "Перейти к обзору 20 лет",
|
|
11
|
+
"neptune.DateLookup.month": "месяц",
|
|
12
|
+
"neptune.DateLookup.next": "далее",
|
|
13
|
+
"neptune.DateLookup.previous": "предыдущий",
|
|
14
|
+
"neptune.DateLookup.selected": "выбрано",
|
|
15
|
+
"neptune.DateLookup.twentyYears": "20 лет",
|
|
16
|
+
"neptune.DateLookup.year": "год",
|
|
17
|
+
"neptune.FlowNavigation.back": "вернуться к предыдущему шагу",
|
|
18
|
+
"neptune.Link.opensInNewTab": "(откроется в новой вкладке)",
|
|
8
19
|
"neptune.MoneyInput.Select.placeholder": "Выберите вариант...",
|
|
9
|
-
"neptune.Pagination.ariaLabel": "Постраничная навигация",
|
|
10
|
-
"neptune.PaginationLink.ariaLabel.active": "Перейти на страницу {pageNumber}",
|
|
11
|
-
"neptune.PaginationLink.ariaLabel.inactive": "Текущая страница, страница {pageNumber}",
|
|
12
20
|
"neptune.Select.searchPlaceholder": "Поиск...",
|
|
13
21
|
"neptune.Summary.statusDone": "Этап завершен",
|
|
14
22
|
"neptune.Summary.statusNotDone": "Этап к выполнению",
|
package/build/i18n/th.json
CHANGED
|
@@ -1,14 +1,22 @@
|
|
|
1
1
|
{
|
|
2
|
+
"neptune.Button.loadingAriaLabel": "กำลังโหลด",
|
|
2
3
|
"neptune.Chips.ariaLabel": "เคลียร์ {choice}",
|
|
3
4
|
"neptune.ClearButton.ariaLabel": "ชัดเจน",
|
|
4
5
|
"neptune.CloseButton.ariaLabel": "ปิด",
|
|
5
6
|
"neptune.DateInput.day.label": "วัน",
|
|
6
7
|
"neptune.DateInput.month.label": "เดือน",
|
|
7
8
|
"neptune.DateInput.year.label": "ปี",
|
|
9
|
+
"neptune.DateLookup.day": "วัน",
|
|
10
|
+
"neptune.DateLookup.goTo20YearView": "Go to 20 year view",
|
|
11
|
+
"neptune.DateLookup.month": "เดือน",
|
|
12
|
+
"neptune.DateLookup.next": "ถัดไป",
|
|
13
|
+
"neptune.DateLookup.previous": "ก่อนหน้า",
|
|
14
|
+
"neptune.DateLookup.selected": "เลือกแล้ว",
|
|
15
|
+
"neptune.DateLookup.twentyYears": "20 ปี",
|
|
16
|
+
"neptune.DateLookup.year": "ปี",
|
|
17
|
+
"neptune.FlowNavigation.back": "back to previous step",
|
|
18
|
+
"neptune.Link.opensInNewTab": "(opens in new tab)",
|
|
8
19
|
"neptune.MoneyInput.Select.placeholder": "เลือกตัวเลือก...",
|
|
9
|
-
"neptune.Pagination.ariaLabel": "การนำทางเลขหน้า",
|
|
10
|
-
"neptune.PaginationLink.ariaLabel.active": "ไปที่หน้า {pageNumber}",
|
|
11
|
-
"neptune.PaginationLink.ariaLabel.inactive": "หน้าปัจจุบัน หน้า {pageNumber}",
|
|
12
20
|
"neptune.Select.searchPlaceholder": "ค้นหา...",
|
|
13
21
|
"neptune.Summary.statusDone": "รายการที่ทำแล้ว",
|
|
14
22
|
"neptune.Summary.statusNotDone": "รายการที่ต้องทำ",
|
package/build/i18n/tr.json
CHANGED
|
@@ -1,14 +1,22 @@
|
|
|
1
1
|
{
|
|
2
|
+
"neptune.Button.loadingAriaLabel": "yükleniyor",
|
|
2
3
|
"neptune.Chips.ariaLabel": "{choice} temizle",
|
|
3
4
|
"neptune.ClearButton.ariaLabel": "Sil",
|
|
4
5
|
"neptune.CloseButton.ariaLabel": "Kapat",
|
|
5
6
|
"neptune.DateInput.day.label": "Gün",
|
|
6
7
|
"neptune.DateInput.month.label": "Ay",
|
|
7
8
|
"neptune.DateInput.year.label": "Yıl",
|
|
9
|
+
"neptune.DateLookup.day": "gün",
|
|
10
|
+
"neptune.DateLookup.goTo20YearView": "20 yıl görünümüne git",
|
|
11
|
+
"neptune.DateLookup.month": "ay",
|
|
12
|
+
"neptune.DateLookup.next": "devam et",
|
|
13
|
+
"neptune.DateLookup.previous": "önceki",
|
|
14
|
+
"neptune.DateLookup.selected": "seçili",
|
|
15
|
+
"neptune.DateLookup.twentyYears": "20 yıl",
|
|
16
|
+
"neptune.DateLookup.year": "yıl",
|
|
17
|
+
"neptune.FlowNavigation.back": "önceki adıma dön",
|
|
18
|
+
"neptune.Link.opensInNewTab": "(yeni sekmede açılır)",
|
|
8
19
|
"neptune.MoneyInput.Select.placeholder": "Bir seçenek seçin...",
|
|
9
|
-
"neptune.Pagination.ariaLabel": "Sayfalandırma gezintisi",
|
|
10
|
-
"neptune.PaginationLink.ariaLabel.active": "{pageNumber} numaralı sayfaya git",
|
|
11
|
-
"neptune.PaginationLink.ariaLabel.inactive": "Mevcut sayfa, sayfa {pageNumber}",
|
|
12
20
|
"neptune.Select.searchPlaceholder": "Ara...",
|
|
13
21
|
"neptune.Summary.statusDone": "Tamamlanan aşama",
|
|
14
22
|
"neptune.Summary.statusNotDone": "Yapılacak",
|
package/build/i18n/uk.json
CHANGED
|
@@ -1,14 +1,22 @@
|
|
|
1
1
|
{
|
|
2
|
+
"neptune.Button.loadingAriaLabel": "завантаження",
|
|
2
3
|
"neptune.Chips.ariaLabel": "Очистити {choice}",
|
|
3
4
|
"neptune.ClearButton.ariaLabel": "Очистити",
|
|
4
5
|
"neptune.CloseButton.ariaLabel": "Закрити",
|
|
5
6
|
"neptune.DateInput.day.label": "День",
|
|
6
7
|
"neptune.DateInput.month.label": "Місяць",
|
|
7
8
|
"neptune.DateInput.year.label": "Рік",
|
|
9
|
+
"neptune.DateLookup.day": "дня",
|
|
10
|
+
"neptune.DateLookup.goTo20YearView": "Go to 20 year view",
|
|
11
|
+
"neptune.DateLookup.month": "місяць",
|
|
12
|
+
"neptune.DateLookup.next": "уперед",
|
|
13
|
+
"neptune.DateLookup.previous": "назад",
|
|
14
|
+
"neptune.DateLookup.selected": "вибрано",
|
|
15
|
+
"neptune.DateLookup.twentyYears": "20 років",
|
|
16
|
+
"neptune.DateLookup.year": "рік",
|
|
17
|
+
"neptune.FlowNavigation.back": "back to previous step",
|
|
18
|
+
"neptune.Link.opensInNewTab": "(opens in new tab)",
|
|
8
19
|
"neptune.MoneyInput.Select.placeholder": "Виберіть варіант…",
|
|
9
|
-
"neptune.Pagination.ariaLabel": "Перехід за сторінками",
|
|
10
|
-
"neptune.PaginationLink.ariaLabel.active": "Перейти на сторінку {pageNumber}",
|
|
11
|
-
"neptune.PaginationLink.ariaLabel.inactive": "Ця сторінка, сторінка {pageNumber}",
|
|
12
20
|
"neptune.Select.searchPlaceholder": "Пошук…",
|
|
13
21
|
"neptune.Summary.statusDone": "Виконано",
|
|
14
22
|
"neptune.Summary.statusNotDone": "Не виконано",
|
package/build/i18n/zh-CN.json
CHANGED
|
@@ -1,14 +1,22 @@
|
|
|
1
1
|
{
|
|
2
|
+
"neptune.Button.loadingAriaLabel": "正在加载",
|
|
2
3
|
"neptune.Chips.ariaLabel": "清除 {choice}",
|
|
3
4
|
"neptune.ClearButton.ariaLabel": "清晰",
|
|
4
5
|
"neptune.CloseButton.ariaLabel": "关闭",
|
|
5
6
|
"neptune.DateInput.day.label": "日",
|
|
6
7
|
"neptune.DateInput.month.label": "月",
|
|
7
8
|
"neptune.DateInput.year.label": "年",
|
|
9
|
+
"neptune.DateLookup.day": "日",
|
|
10
|
+
"neptune.DateLookup.goTo20YearView": "Go to 20 year view",
|
|
11
|
+
"neptune.DateLookup.month": "月",
|
|
12
|
+
"neptune.DateLookup.next": "下一页",
|
|
13
|
+
"neptune.DateLookup.previous": "上一页",
|
|
14
|
+
"neptune.DateLookup.selected": "已选",
|
|
15
|
+
"neptune.DateLookup.twentyYears": "20年",
|
|
16
|
+
"neptune.DateLookup.year": "年",
|
|
17
|
+
"neptune.FlowNavigation.back": "back to previous step",
|
|
18
|
+
"neptune.Link.opensInNewTab": "(opens in new tab)",
|
|
8
19
|
"neptune.MoneyInput.Select.placeholder": "请选择...",
|
|
9
|
-
"neptune.Pagination.ariaLabel": "分页导航",
|
|
10
|
-
"neptune.PaginationLink.ariaLabel.active": "转到第 {pageNumber} 页",
|
|
11
|
-
"neptune.PaginationLink.ariaLabel.inactive": "当前页面,第 {pageNumber} 页",
|
|
12
20
|
"neptune.Select.searchPlaceholder": "搜索",
|
|
13
21
|
"neptune.Summary.statusDone": "已完成",
|
|
14
22
|
"neptune.Summary.statusNotDone": "未完成",
|
|
@@ -1,14 +1,22 @@
|
|
|
1
1
|
{
|
|
2
|
+
"neptune.Button.loadingAriaLabel": "載入中",
|
|
2
3
|
"neptune.Chips.ariaLabel": "清除{choice}",
|
|
3
4
|
"neptune.ClearButton.ariaLabel": "清除",
|
|
4
5
|
"neptune.CloseButton.ariaLabel": "關閉",
|
|
5
6
|
"neptune.DateInput.day.label": "日",
|
|
6
7
|
"neptune.DateInput.month.label": "月",
|
|
7
8
|
"neptune.DateInput.year.label": "年",
|
|
9
|
+
"neptune.DateLookup.day": "日",
|
|
10
|
+
"neptune.DateLookup.goTo20YearView": "切換至20年視圖",
|
|
11
|
+
"neptune.DateLookup.month": "月",
|
|
12
|
+
"neptune.DateLookup.next": "下一個",
|
|
13
|
+
"neptune.DateLookup.previous": "上一個",
|
|
14
|
+
"neptune.DateLookup.selected": "已選",
|
|
15
|
+
"neptune.DateLookup.twentyYears": "20年",
|
|
16
|
+
"neptune.DateLookup.year": "年",
|
|
17
|
+
"neptune.FlowNavigation.back": "返回上一個步驟",
|
|
18
|
+
"neptune.Link.opensInNewTab": "(在新分頁中開啟)",
|
|
8
19
|
"neptune.MoneyInput.Select.placeholder": "選擇一個選項…",
|
|
9
|
-
"neptune.Pagination.ariaLabel": "分頁導航",
|
|
10
|
-
"neptune.PaginationLink.ariaLabel.active": "前往第{pageNumber}頁",
|
|
11
|
-
"neptune.PaginationLink.ariaLabel.inactive": "目前在第{pageNumber}頁",
|
|
12
20
|
"neptune.Select.searchPlaceholder": "搜尋…",
|
|
13
21
|
"neptune.Summary.statusDone": "已完成事項",
|
|
14
22
|
"neptune.Summary.statusNotDone": "未完成事項",
|