@transferwise/components 0.0.0-experimental-a0e035a → 0.0.0-experimental-1f61198
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 +3 -11
- package/build/i18n/de.json +3 -11
- package/build/i18n/es.json +3 -11
- package/build/i18n/fr.json +3 -11
- package/build/i18n/hu.json +3 -11
- package/build/i18n/id.json +3 -11
- package/build/i18n/it.json +3 -11
- package/build/i18n/ja.json +3 -11
- package/build/i18n/pl.json +3 -11
- package/build/i18n/pt.json +3 -11
- package/build/i18n/ro.json +3 -11
- package/build/i18n/ru.json +3 -11
- package/build/i18n/th.json +3 -11
- package/build/i18n/tr.json +3 -11
- package/build/i18n/uk.json +3 -11
- package/build/i18n/zh-CN.json +3 -11
- package/build/i18n/zh-HK.json +3 -11
- package/build/index.esm.js +62 -188
- package/build/index.esm.js.map +1 -1
- package/build/index.js +62 -188
- package/build/index.js.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/package.json +1 -1
- package/src/common/locale/index.js +10 -1
- package/src/i18n/cs.json +3 -11
- package/src/i18n/de.json +3 -11
- package/src/i18n/es.json +3 -11
- package/src/i18n/fr.json +3 -11
- package/src/i18n/hu.json +3 -11
- package/src/i18n/id.json +3 -11
- package/src/i18n/it.json +3 -11
- package/src/i18n/ja.json +3 -11
- package/src/i18n/pl.json +3 -11
- package/src/i18n/pt.json +3 -11
- package/src/i18n/ro.json +3 -11
- package/src/i18n/ru.json +3 -11
- package/src/i18n/th.json +3 -11
- package/src/i18n/tr.json +3 -11
- package/src/i18n/uk.json +3 -11
- package/src/i18n/zh-CN.json +3 -11
- package/src/i18n/zh-HK.json +3 -11
package/build/index.js
CHANGED
|
@@ -395,6 +395,11 @@ const DEFAULT_LOCALE = 'en-GB';
|
|
|
395
395
|
* @type {string[]}
|
|
396
396
|
*/
|
|
397
397
|
const RTL_LANGUAGES = ['ar', 'he'];
|
|
398
|
+
|
|
399
|
+
/**
|
|
400
|
+
* @deprecated The source of truth for supported languages lives in Crab.
|
|
401
|
+
* @type {string[]}
|
|
402
|
+
*/
|
|
398
403
|
const SUPPORTED_LANGUAGES = [DEFAULT_LANG, 'de', 'es', 'fr', 'hu', 'id', 'it', 'ja', 'pl', 'pt', 'ro', 'ru', 'th', 'tr', 'uk', 'zh'];
|
|
399
404
|
|
|
400
405
|
/**
|
|
@@ -424,8 +429,13 @@ function adjustLocale(locale) {
|
|
|
424
429
|
* Provides corresponding lang (iso2) for provided locale
|
|
425
430
|
* if locale is invalid or language is unsupported returns null
|
|
426
431
|
*
|
|
432
|
+
* @deprecated The use of this function almost always breaks language variants
|
|
433
|
+
* e.g. Simplified and Traditional Chinese.
|
|
434
|
+
* There should be no use case for this function.
|
|
435
|
+
* To select the correct translations from a translations object, pass the
|
|
436
|
+
* locale directly into Crab's getLocalisedMessages.
|
|
427
437
|
* @param {string} locale (`es`, `es-ES`, `en-GB`, `en`, `ja`, `ja-JP` etc)
|
|
428
|
-
* @returns {string|null}
|
|
438
|
+
* @returns {string|null} two-letter ISO639-1 language
|
|
429
439
|
*/
|
|
430
440
|
function getLangFromLocale(locale) {
|
|
431
441
|
const adjustedLocale = adjustLocale(locale);
|
|
@@ -14493,24 +14503,16 @@ function useSnackbar() {
|
|
|
14493
14503
|
}
|
|
14494
14504
|
|
|
14495
14505
|
var cs = {
|
|
14496
|
-
"neptune.Button.loadingAriaLabel": "načítání",
|
|
14497
14506
|
"neptune.Chips.ariaLabel": "Vyčistit {choice}",
|
|
14498
14507
|
"neptune.ClearButton.ariaLabel": "Vyčistit",
|
|
14499
14508
|
"neptune.CloseButton.ariaLabel": "Zavřít",
|
|
14500
14509
|
"neptune.DateInput.day.label": "Den",
|
|
14501
14510
|
"neptune.DateInput.month.label": "Měsíc",
|
|
14502
14511
|
"neptune.DateInput.year.label": "Rok",
|
|
14503
|
-
"neptune.DateLookup.day": "den",
|
|
14504
|
-
"neptune.DateLookup.goTo20YearView": "Go to 20 year view",
|
|
14505
|
-
"neptune.DateLookup.month": "měsíc",
|
|
14506
|
-
"neptune.DateLookup.next": "další",
|
|
14507
|
-
"neptune.DateLookup.previous": "předchozí",
|
|
14508
|
-
"neptune.DateLookup.selected": "vybráno",
|
|
14509
|
-
"neptune.DateLookup.twentyYears": "20 let",
|
|
14510
|
-
"neptune.DateLookup.year": "rok",
|
|
14511
|
-
"neptune.FlowNavigation.back": "back to previous step",
|
|
14512
|
-
"neptune.Link.opensInNewTab": "(opens in new tab)",
|
|
14513
14512
|
"neptune.MoneyInput.Select.placeholder": "Vybrat možnost...",
|
|
14513
|
+
"neptune.Pagination.ariaLabel": "Navigace v Pagination",
|
|
14514
|
+
"neptune.PaginationLink.ariaLabel.active": "Přejít na stránku {pageNumber}",
|
|
14515
|
+
"neptune.PaginationLink.ariaLabel.inactive": "Současná stránka, stránka {pageNumber}",
|
|
14514
14516
|
"neptune.Select.searchPlaceholder": "Hledat...",
|
|
14515
14517
|
"neptune.Summary.statusDone": "Položka dokončena",
|
|
14516
14518
|
"neptune.Summary.statusNotDone": "Položka k dokončení",
|
|
@@ -14546,24 +14548,16 @@ var cs = {
|
|
|
14546
14548
|
};
|
|
14547
14549
|
|
|
14548
14550
|
var de = {
|
|
14549
|
-
"neptune.Button.loadingAriaLabel": "wird geladen",
|
|
14550
14551
|
"neptune.Chips.ariaLabel": "{choice} zurücksetzen",
|
|
14551
14552
|
"neptune.ClearButton.ariaLabel": "Zurücksetzen",
|
|
14552
14553
|
"neptune.CloseButton.ariaLabel": "Schließen",
|
|
14553
14554
|
"neptune.DateInput.day.label": "Tag",
|
|
14554
14555
|
"neptune.DateInput.month.label": "Monat",
|
|
14555
14556
|
"neptune.DateInput.year.label": "Jahr",
|
|
14556
|
-
"neptune.DateLookup.day": "Tag",
|
|
14557
|
-
"neptune.DateLookup.goTo20YearView": "Zur 20-Jahres-Ansicht",
|
|
14558
|
-
"neptune.DateLookup.month": "Monat",
|
|
14559
|
-
"neptune.DateLookup.next": "weiter",
|
|
14560
|
-
"neptune.DateLookup.previous": "zurück",
|
|
14561
|
-
"neptune.DateLookup.selected": "ausgewählt",
|
|
14562
|
-
"neptune.DateLookup.twentyYears": "20 Jahre",
|
|
14563
|
-
"neptune.DateLookup.year": "Jahr",
|
|
14564
|
-
"neptune.FlowNavigation.back": "zurück zum vorherigen Schritt",
|
|
14565
|
-
"neptune.Link.opensInNewTab": "(wird in einem neuen Tab geöffnet)",
|
|
14566
14557
|
"neptune.MoneyInput.Select.placeholder": "Wähle eine der Möglichkeiten aus...",
|
|
14558
|
+
"neptune.Pagination.ariaLabel": "Seitennummer-Navigation",
|
|
14559
|
+
"neptune.PaginationLink.ariaLabel.active": "Weiter zur Seite {pageNumber}",
|
|
14560
|
+
"neptune.PaginationLink.ariaLabel.inactive": "Aktuelle Seite – Seite {pageNumber}",
|
|
14567
14561
|
"neptune.Select.searchPlaceholder": "Wird gesucht...",
|
|
14568
14562
|
"neptune.Summary.statusDone": "Schritt erledigt",
|
|
14569
14563
|
"neptune.Summary.statusNotDone": "Schritt noch zu erledigen",
|
|
@@ -14599,24 +14593,16 @@ var de = {
|
|
|
14599
14593
|
};
|
|
14600
14594
|
|
|
14601
14595
|
var es = {
|
|
14602
|
-
"neptune.Button.loadingAriaLabel": "cargando",
|
|
14603
14596
|
"neptune.Chips.ariaLabel": "Descartar {choice}",
|
|
14604
14597
|
"neptune.ClearButton.ariaLabel": "Borrar",
|
|
14605
14598
|
"neptune.CloseButton.ariaLabel": "Cerrar",
|
|
14606
14599
|
"neptune.DateInput.day.label": "Día",
|
|
14607
14600
|
"neptune.DateInput.month.label": "Mes",
|
|
14608
14601
|
"neptune.DateInput.year.label": "Año",
|
|
14609
|
-
"neptune.DateLookup.day": "día",
|
|
14610
|
-
"neptune.DateLookup.goTo20YearView": "Ir a vista de 20 años",
|
|
14611
|
-
"neptune.DateLookup.month": "mes",
|
|
14612
|
-
"neptune.DateLookup.next": "siguiente",
|
|
14613
|
-
"neptune.DateLookup.previous": "anterior",
|
|
14614
|
-
"neptune.DateLookup.selected": "seleccionado",
|
|
14615
|
-
"neptune.DateLookup.twentyYears": "20 años",
|
|
14616
|
-
"neptune.DateLookup.year": "año",
|
|
14617
|
-
"neptune.FlowNavigation.back": "volver al paso anterior",
|
|
14618
|
-
"neptune.Link.opensInNewTab": "(se abre en una pestaña nueva)",
|
|
14619
14602
|
"neptune.MoneyInput.Select.placeholder": "Selecciona una opción...",
|
|
14603
|
+
"neptune.Pagination.ariaLabel": "Navegación por las páginas",
|
|
14604
|
+
"neptune.PaginationLink.ariaLabel.active": "Ve a la página {pageNumber}",
|
|
14605
|
+
"neptune.PaginationLink.ariaLabel.inactive": "Página actual, página {pageNumber}",
|
|
14620
14606
|
"neptune.Select.searchPlaceholder": "Buscar...",
|
|
14621
14607
|
"neptune.Summary.statusDone": "Apartado listo",
|
|
14622
14608
|
"neptune.Summary.statusNotDone": "Apartado a completar",
|
|
@@ -14652,24 +14638,16 @@ var es = {
|
|
|
14652
14638
|
};
|
|
14653
14639
|
|
|
14654
14640
|
var fr = {
|
|
14655
|
-
"neptune.Button.loadingAriaLabel": "chargement",
|
|
14656
14641
|
"neptune.Chips.ariaLabel": "Effacer {choice}",
|
|
14657
14642
|
"neptune.ClearButton.ariaLabel": "Effacer",
|
|
14658
14643
|
"neptune.CloseButton.ariaLabel": "Fermer",
|
|
14659
14644
|
"neptune.DateInput.day.label": "Jour",
|
|
14660
14645
|
"neptune.DateInput.month.label": "Mois",
|
|
14661
14646
|
"neptune.DateInput.year.label": "Année",
|
|
14662
|
-
"neptune.DateLookup.day": "jour",
|
|
14663
|
-
"neptune.DateLookup.goTo20YearView": "Accéder à la vue sur 20 ans",
|
|
14664
|
-
"neptune.DateLookup.month": "mois",
|
|
14665
|
-
"neptune.DateLookup.next": "suivant",
|
|
14666
|
-
"neptune.DateLookup.previous": "précédent",
|
|
14667
|
-
"neptune.DateLookup.selected": "sélectionnée",
|
|
14668
|
-
"neptune.DateLookup.twentyYears": "20 ans",
|
|
14669
|
-
"neptune.DateLookup.year": "année",
|
|
14670
|
-
"neptune.FlowNavigation.back": "revenir à l'étape précédente",
|
|
14671
|
-
"neptune.Link.opensInNewTab": "(ouvre dans un nouvel onglet)",
|
|
14672
14647
|
"neptune.MoneyInput.Select.placeholder": "Sélectionner une option...",
|
|
14648
|
+
"neptune.Pagination.ariaLabel": "Navigation par pagination",
|
|
14649
|
+
"neptune.PaginationLink.ariaLabel.active": "Aller à la page {pageNumber}",
|
|
14650
|
+
"neptune.PaginationLink.ariaLabel.inactive": "Page actuelle, page {pageNumber}",
|
|
14673
14651
|
"neptune.Select.searchPlaceholder": "Recherche...",
|
|
14674
14652
|
"neptune.Summary.statusDone": "Validé",
|
|
14675
14653
|
"neptune.Summary.statusNotDone": "À compléter",
|
|
@@ -14705,24 +14683,16 @@ var fr = {
|
|
|
14705
14683
|
};
|
|
14706
14684
|
|
|
14707
14685
|
var hu = {
|
|
14708
|
-
"neptune.Button.loadingAriaLabel": "betöltés",
|
|
14709
14686
|
"neptune.Chips.ariaLabel": "{choice} törlése",
|
|
14710
14687
|
"neptune.ClearButton.ariaLabel": "Törlés",
|
|
14711
14688
|
"neptune.CloseButton.ariaLabel": "Bezárás",
|
|
14712
14689
|
"neptune.DateInput.day.label": "Nap",
|
|
14713
14690
|
"neptune.DateInput.month.label": "Hónap",
|
|
14714
14691
|
"neptune.DateInput.year.label": "Év",
|
|
14715
|
-
"neptune.DateLookup.day": "nap",
|
|
14716
|
-
"neptune.DateLookup.goTo20YearView": "Ugrás a 20 éves nézetre",
|
|
14717
|
-
"neptune.DateLookup.month": "hónap",
|
|
14718
|
-
"neptune.DateLookup.next": "következő",
|
|
14719
|
-
"neptune.DateLookup.previous": "előző",
|
|
14720
|
-
"neptune.DateLookup.selected": "kiválasztva",
|
|
14721
|
-
"neptune.DateLookup.twentyYears": "20 év",
|
|
14722
|
-
"neptune.DateLookup.year": "év",
|
|
14723
|
-
"neptune.FlowNavigation.back": "vissza az előző lépéshez",
|
|
14724
|
-
"neptune.Link.opensInNewTab": "(új lapon nyílik meg)",
|
|
14725
14692
|
"neptune.MoneyInput.Select.placeholder": "Válassz ki egy lehetőséget...",
|
|
14693
|
+
"neptune.Pagination.ariaLabel": "Lapszámos navigáció",
|
|
14694
|
+
"neptune.PaginationLink.ariaLabel.active": "Ugrás a(z) {pageNumber}. oldalra",
|
|
14695
|
+
"neptune.PaginationLink.ariaLabel.inactive": "Jelenlegi oldal, {pageNumber}. oldal",
|
|
14726
14696
|
"neptune.Select.searchPlaceholder": "Keresés...",
|
|
14727
14697
|
"neptune.Summary.statusDone": "Kész",
|
|
14728
14698
|
"neptune.Summary.statusNotDone": "Hátravan",
|
|
@@ -14758,24 +14728,16 @@ var hu = {
|
|
|
14758
14728
|
};
|
|
14759
14729
|
|
|
14760
14730
|
var id = {
|
|
14761
|
-
"neptune.Button.loadingAriaLabel": "memuat",
|
|
14762
14731
|
"neptune.Chips.ariaLabel": "Hapus {choice}",
|
|
14763
14732
|
"neptune.ClearButton.ariaLabel": "Hapus",
|
|
14764
14733
|
"neptune.CloseButton.ariaLabel": "Tutup",
|
|
14765
14734
|
"neptune.DateInput.day.label": "Hari",
|
|
14766
14735
|
"neptune.DateInput.month.label": "Bulan",
|
|
14767
14736
|
"neptune.DateInput.year.label": "Tahun",
|
|
14768
|
-
"neptune.DateLookup.day": "hari",
|
|
14769
|
-
"neptune.DateLookup.goTo20YearView": "Lihat tampilan 20 tahun",
|
|
14770
|
-
"neptune.DateLookup.month": "bulan",
|
|
14771
|
-
"neptune.DateLookup.next": "berikutnya",
|
|
14772
|
-
"neptune.DateLookup.previous": "sebelumnya",
|
|
14773
|
-
"neptune.DateLookup.selected": "terpilih",
|
|
14774
|
-
"neptune.DateLookup.twentyYears": "20 tahun",
|
|
14775
|
-
"neptune.DateLookup.year": "tahun",
|
|
14776
|
-
"neptune.FlowNavigation.back": "kembali ke langkah sebelumnya",
|
|
14777
|
-
"neptune.Link.opensInNewTab": "(terbuka di tab baru)",
|
|
14778
14737
|
"neptune.MoneyInput.Select.placeholder": "Pilih opsi...",
|
|
14738
|
+
"neptune.Pagination.ariaLabel": "Halaman navigasi",
|
|
14739
|
+
"neptune.PaginationLink.ariaLabel.active": "Lanjut ke halaman {pageNumber}",
|
|
14740
|
+
"neptune.PaginationLink.ariaLabel.inactive": "Halaman saat ini, halaman {pageNumber}",
|
|
14779
14741
|
"neptune.Select.searchPlaceholder": "Cari...",
|
|
14780
14742
|
"neptune.Summary.statusDone": "Item selesai",
|
|
14781
14743
|
"neptune.Summary.statusNotDone": "Item yang harus dilakukan",
|
|
@@ -14811,24 +14773,16 @@ var id = {
|
|
|
14811
14773
|
};
|
|
14812
14774
|
|
|
14813
14775
|
var it = {
|
|
14814
|
-
"neptune.Button.loadingAriaLabel": "caricamento",
|
|
14815
14776
|
"neptune.Chips.ariaLabel": "Rimuovi {choice}",
|
|
14816
14777
|
"neptune.ClearButton.ariaLabel": "Elimina",
|
|
14817
14778
|
"neptune.CloseButton.ariaLabel": "Chiudi",
|
|
14818
14779
|
"neptune.DateInput.day.label": "Giorno",
|
|
14819
14780
|
"neptune.DateInput.month.label": "Mese",
|
|
14820
14781
|
"neptune.DateInput.year.label": "Anno",
|
|
14821
|
-
"neptune.DateLookup.day": "giorno",
|
|
14822
|
-
"neptune.DateLookup.goTo20YearView": "Vai alla vista su 20 anni",
|
|
14823
|
-
"neptune.DateLookup.month": "mese",
|
|
14824
|
-
"neptune.DateLookup.next": "continua",
|
|
14825
|
-
"neptune.DateLookup.previous": "indietro",
|
|
14826
|
-
"neptune.DateLookup.selected": "selezionata",
|
|
14827
|
-
"neptune.DateLookup.twentyYears": "20 anni",
|
|
14828
|
-
"neptune.DateLookup.year": "anno",
|
|
14829
|
-
"neptune.FlowNavigation.back": "torna al passaggio precedente",
|
|
14830
|
-
"neptune.Link.opensInNewTab": "(si apre in una nuova scheda)",
|
|
14831
14782
|
"neptune.MoneyInput.Select.placeholder": "Seleziona un'opzione...",
|
|
14783
|
+
"neptune.Pagination.ariaLabel": "Navigazione",
|
|
14784
|
+
"neptune.PaginationLink.ariaLabel.active": "Via a pagina {pageNumber}",
|
|
14785
|
+
"neptune.PaginationLink.ariaLabel.inactive": "Pagina corrente, pagina {pageNumber}",
|
|
14832
14786
|
"neptune.Select.searchPlaceholder": "Cerca...",
|
|
14833
14787
|
"neptune.Summary.statusDone": "Completato",
|
|
14834
14788
|
"neptune.Summary.statusNotDone": "Da completare",
|
|
@@ -14864,24 +14818,16 @@ var it = {
|
|
|
14864
14818
|
};
|
|
14865
14819
|
|
|
14866
14820
|
var ja = {
|
|
14867
|
-
"neptune.Button.loadingAriaLabel": "読み込み中…",
|
|
14868
14821
|
"neptune.Chips.ariaLabel": "{choice} をクリア",
|
|
14869
14822
|
"neptune.ClearButton.ariaLabel": "消去",
|
|
14870
14823
|
"neptune.CloseButton.ariaLabel": "閉じる",
|
|
14871
14824
|
"neptune.DateInput.day.label": "日",
|
|
14872
14825
|
"neptune.DateInput.month.label": "月",
|
|
14873
14826
|
"neptune.DateInput.year.label": "年",
|
|
14874
|
-
"neptune.DateLookup.day": "日",
|
|
14875
|
-
"neptune.DateLookup.goTo20YearView": "20年表示に移動する",
|
|
14876
|
-
"neptune.DateLookup.month": "月",
|
|
14877
|
-
"neptune.DateLookup.next": "次",
|
|
14878
|
-
"neptune.DateLookup.previous": "前",
|
|
14879
|
-
"neptune.DateLookup.selected": "選択済み",
|
|
14880
|
-
"neptune.DateLookup.twentyYears": "20年",
|
|
14881
|
-
"neptune.DateLookup.year": "年",
|
|
14882
|
-
"neptune.FlowNavigation.back": "前のステップに戻る",
|
|
14883
|
-
"neptune.Link.opensInNewTab": "(新しいタブで開きます)",
|
|
14884
14827
|
"neptune.MoneyInput.Select.placeholder": "選択してください...",
|
|
14828
|
+
"neptune.Pagination.ariaLabel": "ページネーションナビゲーション",
|
|
14829
|
+
"neptune.PaginationLink.ariaLabel.active": "{pageNumber}のページへ移動します",
|
|
14830
|
+
"neptune.PaginationLink.ariaLabel.inactive": "現在のページ、{pageNumber}ページ",
|
|
14885
14831
|
"neptune.Select.searchPlaceholder": "検索... ",
|
|
14886
14832
|
"neptune.Summary.statusDone": "完了",
|
|
14887
14833
|
"neptune.Summary.statusNotDone": "未対応",
|
|
@@ -14917,24 +14863,16 @@ var ja = {
|
|
|
14917
14863
|
};
|
|
14918
14864
|
|
|
14919
14865
|
var pl = {
|
|
14920
|
-
"neptune.Button.loadingAriaLabel": "ładowanie",
|
|
14921
14866
|
"neptune.Chips.ariaLabel": "Wyczyść {choice}",
|
|
14922
14867
|
"neptune.ClearButton.ariaLabel": "Wyczyść",
|
|
14923
14868
|
"neptune.CloseButton.ariaLabel": "Zamknij",
|
|
14924
14869
|
"neptune.DateInput.day.label": "Dzień",
|
|
14925
14870
|
"neptune.DateInput.month.label": "Miesiąc",
|
|
14926
14871
|
"neptune.DateInput.year.label": "Rok",
|
|
14927
|
-
"neptune.DateLookup.day": "dzień",
|
|
14928
|
-
"neptune.DateLookup.goTo20YearView": "Przejdź do widoku 20-letniego",
|
|
14929
|
-
"neptune.DateLookup.month": "miesiąc",
|
|
14930
|
-
"neptune.DateLookup.next": "następny",
|
|
14931
|
-
"neptune.DateLookup.previous": "poprzedni",
|
|
14932
|
-
"neptune.DateLookup.selected": "wybrano",
|
|
14933
|
-
"neptune.DateLookup.twentyYears": "20 lat",
|
|
14934
|
-
"neptune.DateLookup.year": "rok",
|
|
14935
|
-
"neptune.FlowNavigation.back": "wróć do poprzedniego kroku",
|
|
14936
|
-
"neptune.Link.opensInNewTab": "(otworzy się w nowej zakładce)",
|
|
14937
14872
|
"neptune.MoneyInput.Select.placeholder": "Wybierz opcję...",
|
|
14873
|
+
"neptune.Pagination.ariaLabel": "Nawigacja w paginacji",
|
|
14874
|
+
"neptune.PaginationLink.ariaLabel.active": "Przejdź do strony {pageNumber}",
|
|
14875
|
+
"neptune.PaginationLink.ariaLabel.inactive": "Obecna strona, strona {pageNumber}",
|
|
14938
14876
|
"neptune.Select.searchPlaceholder": "Wyszukaj...",
|
|
14939
14877
|
"neptune.Summary.statusDone": "Czynność wykonana",
|
|
14940
14878
|
"neptune.Summary.statusNotDone": "Czynność do wykonania",
|
|
@@ -14970,24 +14908,16 @@ var pl = {
|
|
|
14970
14908
|
};
|
|
14971
14909
|
|
|
14972
14910
|
var pt = {
|
|
14973
|
-
"neptune.Button.loadingAriaLabel": "carregando",
|
|
14974
14911
|
"neptune.Chips.ariaLabel": "Remover {choice}",
|
|
14975
14912
|
"neptune.ClearButton.ariaLabel": "Remover",
|
|
14976
14913
|
"neptune.CloseButton.ariaLabel": "Fechar",
|
|
14977
14914
|
"neptune.DateInput.day.label": "Dia",
|
|
14978
14915
|
"neptune.DateInput.month.label": "Mês",
|
|
14979
14916
|
"neptune.DateInput.year.label": "Ano",
|
|
14980
|
-
"neptune.DateLookup.day": "dia",
|
|
14981
|
-
"neptune.DateLookup.goTo20YearView": "Go to 20 year view",
|
|
14982
|
-
"neptune.DateLookup.month": "mês",
|
|
14983
|
-
"neptune.DateLookup.next": "próximo",
|
|
14984
|
-
"neptune.DateLookup.previous": "anterior",
|
|
14985
|
-
"neptune.DateLookup.selected": "selecionada",
|
|
14986
|
-
"neptune.DateLookup.twentyYears": "20 anos",
|
|
14987
|
-
"neptune.DateLookup.year": "ano",
|
|
14988
|
-
"neptune.FlowNavigation.back": "back to previous step",
|
|
14989
|
-
"neptune.Link.opensInNewTab": "(abrir a página em uma nova aba)",
|
|
14990
14917
|
"neptune.MoneyInput.Select.placeholder": "Escolha uma opção...",
|
|
14918
|
+
"neptune.Pagination.ariaLabel": "Navegação pelas páginas",
|
|
14919
|
+
"neptune.PaginationLink.ariaLabel.active": "Ir para a página {pageNumber}",
|
|
14920
|
+
"neptune.PaginationLink.ariaLabel.inactive": "Página atual, página {pageNumber}",
|
|
14991
14921
|
"neptune.Select.searchPlaceholder": "Buscar...",
|
|
14992
14922
|
"neptune.Summary.statusDone": "Pronto",
|
|
14993
14923
|
"neptune.Summary.statusNotDone": "Não iniciado",
|
|
@@ -15023,24 +14953,16 @@ var pt = {
|
|
|
15023
14953
|
};
|
|
15024
14954
|
|
|
15025
14955
|
var ro = {
|
|
15026
|
-
"neptune.Button.loadingAriaLabel": "se încarcă",
|
|
15027
14956
|
"neptune.Chips.ariaLabel": "Șterge {choice}",
|
|
15028
14957
|
"neptune.ClearButton.ariaLabel": "Elimină",
|
|
15029
14958
|
"neptune.CloseButton.ariaLabel": "Închide",
|
|
15030
14959
|
"neptune.DateInput.day.label": "Zi",
|
|
15031
14960
|
"neptune.DateInput.month.label": "Lună",
|
|
15032
14961
|
"neptune.DateInput.year.label": "An",
|
|
15033
|
-
"neptune.DateLookup.day": "zi",
|
|
15034
|
-
"neptune.DateLookup.goTo20YearView": "Accesează vizualizarea pe 20 de ani",
|
|
15035
|
-
"neptune.DateLookup.month": "luna",
|
|
15036
|
-
"neptune.DateLookup.next": "înainte",
|
|
15037
|
-
"neptune.DateLookup.previous": "precedenta",
|
|
15038
|
-
"neptune.DateLookup.selected": "selectată",
|
|
15039
|
-
"neptune.DateLookup.twentyYears": "20 de ani",
|
|
15040
|
-
"neptune.DateLookup.year": "anul",
|
|
15041
|
-
"neptune.FlowNavigation.back": "înapoi la pasul anterior",
|
|
15042
|
-
"neptune.Link.opensInNewTab": "(se deschide într-o filă nouă)",
|
|
15043
14962
|
"neptune.MoneyInput.Select.placeholder": "Selectează o opţiune...",
|
|
14963
|
+
"neptune.Pagination.ariaLabel": "Navigare prin pagină",
|
|
14964
|
+
"neptune.PaginationLink.ariaLabel.active": "Du-te la pagina {pageNumber}",
|
|
14965
|
+
"neptune.PaginationLink.ariaLabel.inactive": "Pagina curentă, pagina {pageNumber}",
|
|
15044
14966
|
"neptune.Select.searchPlaceholder": "Caută...",
|
|
15045
14967
|
"neptune.Summary.statusDone": "Finalizat",
|
|
15046
14968
|
"neptune.Summary.statusNotDone": "De făcut",
|
|
@@ -15076,24 +14998,16 @@ var ro = {
|
|
|
15076
14998
|
};
|
|
15077
14999
|
|
|
15078
15000
|
var ru = {
|
|
15079
|
-
"neptune.Button.loadingAriaLabel": "загрузка",
|
|
15080
15001
|
"neptune.Chips.ariaLabel": "Очистить {choice}",
|
|
15081
15002
|
"neptune.ClearButton.ariaLabel": "Очистить",
|
|
15082
15003
|
"neptune.CloseButton.ariaLabel": "Закрыть",
|
|
15083
15004
|
"neptune.DateInput.day.label": "День",
|
|
15084
15005
|
"neptune.DateInput.month.label": "Месяц",
|
|
15085
15006
|
"neptune.DateInput.year.label": "Год",
|
|
15086
|
-
"neptune.DateLookup.day": "день",
|
|
15087
|
-
"neptune.DateLookup.goTo20YearView": "Перейти к обзору 20 лет",
|
|
15088
|
-
"neptune.DateLookup.month": "месяц",
|
|
15089
|
-
"neptune.DateLookup.next": "далее",
|
|
15090
|
-
"neptune.DateLookup.previous": "предыдущий",
|
|
15091
|
-
"neptune.DateLookup.selected": "выбрано",
|
|
15092
|
-
"neptune.DateLookup.twentyYears": "20 лет",
|
|
15093
|
-
"neptune.DateLookup.year": "год",
|
|
15094
|
-
"neptune.FlowNavigation.back": "вернуться к предыдущему шагу",
|
|
15095
|
-
"neptune.Link.opensInNewTab": "(откроется в новой вкладке)",
|
|
15096
15007
|
"neptune.MoneyInput.Select.placeholder": "Выберите вариант...",
|
|
15008
|
+
"neptune.Pagination.ariaLabel": "Постраничная навигация",
|
|
15009
|
+
"neptune.PaginationLink.ariaLabel.active": "Перейти на страницу {pageNumber}",
|
|
15010
|
+
"neptune.PaginationLink.ariaLabel.inactive": "Текущая страница, страница {pageNumber}",
|
|
15097
15011
|
"neptune.Select.searchPlaceholder": "Поиск...",
|
|
15098
15012
|
"neptune.Summary.statusDone": "Этап завершен",
|
|
15099
15013
|
"neptune.Summary.statusNotDone": "Этап к выполнению",
|
|
@@ -15129,24 +15043,16 @@ var ru = {
|
|
|
15129
15043
|
};
|
|
15130
15044
|
|
|
15131
15045
|
var th = {
|
|
15132
|
-
"neptune.Button.loadingAriaLabel": "กำลังโหลด",
|
|
15133
15046
|
"neptune.Chips.ariaLabel": "เคลียร์ {choice}",
|
|
15134
15047
|
"neptune.ClearButton.ariaLabel": "ชัดเจน",
|
|
15135
15048
|
"neptune.CloseButton.ariaLabel": "ปิด",
|
|
15136
15049
|
"neptune.DateInput.day.label": "วัน",
|
|
15137
15050
|
"neptune.DateInput.month.label": "เดือน",
|
|
15138
15051
|
"neptune.DateInput.year.label": "ปี",
|
|
15139
|
-
"neptune.DateLookup.day": "วัน",
|
|
15140
|
-
"neptune.DateLookup.goTo20YearView": "Go to 20 year view",
|
|
15141
|
-
"neptune.DateLookup.month": "เดือน",
|
|
15142
|
-
"neptune.DateLookup.next": "ถัดไป",
|
|
15143
|
-
"neptune.DateLookup.previous": "ก่อนหน้า",
|
|
15144
|
-
"neptune.DateLookup.selected": "เลือกแล้ว",
|
|
15145
|
-
"neptune.DateLookup.twentyYears": "20 ปี",
|
|
15146
|
-
"neptune.DateLookup.year": "ปี",
|
|
15147
|
-
"neptune.FlowNavigation.back": "back to previous step",
|
|
15148
|
-
"neptune.Link.opensInNewTab": "(opens in new tab)",
|
|
15149
15052
|
"neptune.MoneyInput.Select.placeholder": "เลือกตัวเลือก...",
|
|
15053
|
+
"neptune.Pagination.ariaLabel": "การนำทางเลขหน้า",
|
|
15054
|
+
"neptune.PaginationLink.ariaLabel.active": "ไปที่หน้า {pageNumber}",
|
|
15055
|
+
"neptune.PaginationLink.ariaLabel.inactive": "หน้าปัจจุบัน หน้า {pageNumber}",
|
|
15150
15056
|
"neptune.Select.searchPlaceholder": "ค้นหา...",
|
|
15151
15057
|
"neptune.Summary.statusDone": "รายการที่ทำแล้ว",
|
|
15152
15058
|
"neptune.Summary.statusNotDone": "รายการที่ต้องทำ",
|
|
@@ -15182,24 +15088,16 @@ var th = {
|
|
|
15182
15088
|
};
|
|
15183
15089
|
|
|
15184
15090
|
var tr = {
|
|
15185
|
-
"neptune.Button.loadingAriaLabel": "yükleniyor",
|
|
15186
15091
|
"neptune.Chips.ariaLabel": "{choice} temizle",
|
|
15187
15092
|
"neptune.ClearButton.ariaLabel": "Sil",
|
|
15188
15093
|
"neptune.CloseButton.ariaLabel": "Kapat",
|
|
15189
15094
|
"neptune.DateInput.day.label": "Gün",
|
|
15190
15095
|
"neptune.DateInput.month.label": "Ay",
|
|
15191
15096
|
"neptune.DateInput.year.label": "Yıl",
|
|
15192
|
-
"neptune.DateLookup.day": "gün",
|
|
15193
|
-
"neptune.DateLookup.goTo20YearView": "20 yıl görünümüne git",
|
|
15194
|
-
"neptune.DateLookup.month": "ay",
|
|
15195
|
-
"neptune.DateLookup.next": "devam et",
|
|
15196
|
-
"neptune.DateLookup.previous": "önceki",
|
|
15197
|
-
"neptune.DateLookup.selected": "seçili",
|
|
15198
|
-
"neptune.DateLookup.twentyYears": "20 yıl",
|
|
15199
|
-
"neptune.DateLookup.year": "yıl",
|
|
15200
|
-
"neptune.FlowNavigation.back": "önceki adıma dön",
|
|
15201
|
-
"neptune.Link.opensInNewTab": "(yeni sekmede açılır)",
|
|
15202
15097
|
"neptune.MoneyInput.Select.placeholder": "Bir seçenek seçin...",
|
|
15098
|
+
"neptune.Pagination.ariaLabel": "Sayfalandırma gezintisi",
|
|
15099
|
+
"neptune.PaginationLink.ariaLabel.active": "{pageNumber} numaralı sayfaya git",
|
|
15100
|
+
"neptune.PaginationLink.ariaLabel.inactive": "Mevcut sayfa, sayfa {pageNumber}",
|
|
15203
15101
|
"neptune.Select.searchPlaceholder": "Ara...",
|
|
15204
15102
|
"neptune.Summary.statusDone": "Tamamlanan aşama",
|
|
15205
15103
|
"neptune.Summary.statusNotDone": "Yapılacak",
|
|
@@ -15235,24 +15133,16 @@ var tr = {
|
|
|
15235
15133
|
};
|
|
15236
15134
|
|
|
15237
15135
|
var uk = {
|
|
15238
|
-
"neptune.Button.loadingAriaLabel": "завантаження",
|
|
15239
15136
|
"neptune.Chips.ariaLabel": "Очистити {choice}",
|
|
15240
15137
|
"neptune.ClearButton.ariaLabel": "Очистити",
|
|
15241
15138
|
"neptune.CloseButton.ariaLabel": "Закрити",
|
|
15242
15139
|
"neptune.DateInput.day.label": "День",
|
|
15243
15140
|
"neptune.DateInput.month.label": "Місяць",
|
|
15244
15141
|
"neptune.DateInput.year.label": "Рік",
|
|
15245
|
-
"neptune.DateLookup.day": "дня",
|
|
15246
|
-
"neptune.DateLookup.goTo20YearView": "Go to 20 year view",
|
|
15247
|
-
"neptune.DateLookup.month": "місяць",
|
|
15248
|
-
"neptune.DateLookup.next": "уперед",
|
|
15249
|
-
"neptune.DateLookup.previous": "назад",
|
|
15250
|
-
"neptune.DateLookup.selected": "вибрано",
|
|
15251
|
-
"neptune.DateLookup.twentyYears": "20 років",
|
|
15252
|
-
"neptune.DateLookup.year": "рік",
|
|
15253
|
-
"neptune.FlowNavigation.back": "back to previous step",
|
|
15254
|
-
"neptune.Link.opensInNewTab": "(opens in new tab)",
|
|
15255
15142
|
"neptune.MoneyInput.Select.placeholder": "Виберіть варіант…",
|
|
15143
|
+
"neptune.Pagination.ariaLabel": "Перехід за сторінками",
|
|
15144
|
+
"neptune.PaginationLink.ariaLabel.active": "Перейти на сторінку {pageNumber}",
|
|
15145
|
+
"neptune.PaginationLink.ariaLabel.inactive": "Ця сторінка, сторінка {pageNumber}",
|
|
15256
15146
|
"neptune.Select.searchPlaceholder": "Пошук…",
|
|
15257
15147
|
"neptune.Summary.statusDone": "Виконано",
|
|
15258
15148
|
"neptune.Summary.statusNotDone": "Не виконано",
|
|
@@ -15288,24 +15178,16 @@ var uk = {
|
|
|
15288
15178
|
};
|
|
15289
15179
|
|
|
15290
15180
|
var zhCN = {
|
|
15291
|
-
"neptune.Button.loadingAriaLabel": "正在加载",
|
|
15292
15181
|
"neptune.Chips.ariaLabel": "清除 {choice}",
|
|
15293
15182
|
"neptune.ClearButton.ariaLabel": "清晰",
|
|
15294
15183
|
"neptune.CloseButton.ariaLabel": "关闭",
|
|
15295
15184
|
"neptune.DateInput.day.label": "日",
|
|
15296
15185
|
"neptune.DateInput.month.label": "月",
|
|
15297
15186
|
"neptune.DateInput.year.label": "年",
|
|
15298
|
-
"neptune.DateLookup.day": "日",
|
|
15299
|
-
"neptune.DateLookup.goTo20YearView": "Go to 20 year view",
|
|
15300
|
-
"neptune.DateLookup.month": "月",
|
|
15301
|
-
"neptune.DateLookup.next": "下一页",
|
|
15302
|
-
"neptune.DateLookup.previous": "上一页",
|
|
15303
|
-
"neptune.DateLookup.selected": "已选",
|
|
15304
|
-
"neptune.DateLookup.twentyYears": "20年",
|
|
15305
|
-
"neptune.DateLookup.year": "年",
|
|
15306
|
-
"neptune.FlowNavigation.back": "back to previous step",
|
|
15307
|
-
"neptune.Link.opensInNewTab": "(opens in new tab)",
|
|
15308
15187
|
"neptune.MoneyInput.Select.placeholder": "请选择...",
|
|
15188
|
+
"neptune.Pagination.ariaLabel": "分页导航",
|
|
15189
|
+
"neptune.PaginationLink.ariaLabel.active": "转到第 {pageNumber} 页",
|
|
15190
|
+
"neptune.PaginationLink.ariaLabel.inactive": "当前页面,第 {pageNumber} 页",
|
|
15309
15191
|
"neptune.Select.searchPlaceholder": "搜索",
|
|
15310
15192
|
"neptune.Summary.statusDone": "已完成",
|
|
15311
15193
|
"neptune.Summary.statusNotDone": "未完成",
|
|
@@ -15341,24 +15223,16 @@ var zhCN = {
|
|
|
15341
15223
|
};
|
|
15342
15224
|
|
|
15343
15225
|
var zhHK = {
|
|
15344
|
-
"neptune.Button.loadingAriaLabel": "載入中",
|
|
15345
15226
|
"neptune.Chips.ariaLabel": "清除{choice}",
|
|
15346
15227
|
"neptune.ClearButton.ariaLabel": "清除",
|
|
15347
15228
|
"neptune.CloseButton.ariaLabel": "關閉",
|
|
15348
15229
|
"neptune.DateInput.day.label": "日",
|
|
15349
15230
|
"neptune.DateInput.month.label": "月",
|
|
15350
15231
|
"neptune.DateInput.year.label": "年",
|
|
15351
|
-
"neptune.DateLookup.day": "日",
|
|
15352
|
-
"neptune.DateLookup.goTo20YearView": "切換至20年視圖",
|
|
15353
|
-
"neptune.DateLookup.month": "月",
|
|
15354
|
-
"neptune.DateLookup.next": "下一個",
|
|
15355
|
-
"neptune.DateLookup.previous": "上一個",
|
|
15356
|
-
"neptune.DateLookup.selected": "已選",
|
|
15357
|
-
"neptune.DateLookup.twentyYears": "20年",
|
|
15358
|
-
"neptune.DateLookup.year": "年",
|
|
15359
|
-
"neptune.FlowNavigation.back": "返回上一個步驟",
|
|
15360
|
-
"neptune.Link.opensInNewTab": "(在新分頁中開啟)",
|
|
15361
15232
|
"neptune.MoneyInput.Select.placeholder": "選擇一個選項…",
|
|
15233
|
+
"neptune.Pagination.ariaLabel": "分頁導航",
|
|
15234
|
+
"neptune.PaginationLink.ariaLabel.active": "前往第{pageNumber}頁",
|
|
15235
|
+
"neptune.PaginationLink.ariaLabel.inactive": "目前在第{pageNumber}頁",
|
|
15362
15236
|
"neptune.Select.searchPlaceholder": "搜尋…",
|
|
15363
15237
|
"neptune.Summary.statusDone": "已完成事項",
|
|
15364
15238
|
"neptune.Summary.statusNotDone": "未完成事項",
|