@transferwise/components 0.0.0-experimental-bb03a6a → 0.0.0-experimental-6d4124a

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 (72) hide show
  1. package/README.md +1 -1
  2. package/build/i18n/{cs.json → cs-CZ.json} +10 -3
  3. package/build/i18n/{de.json → de-DE.json} +10 -3
  4. package/{src/i18n/es.json → build/i18n/es-ES.json} +10 -3
  5. package/{src/i18n/fr.json → build/i18n/fr-FR.json} +10 -3
  6. package/{src/i18n/hu.json → build/i18n/hu-HU.json} +10 -3
  7. package/{src/i18n/id.json → build/i18n/id-ID.json} +10 -3
  8. package/build/i18n/{it.json → it-IT.json} +10 -3
  9. package/build/i18n/{ja.json → ja-JP.json} +10 -3
  10. package/build/i18n/{pl.json → pl-PL.json} +10 -3
  11. package/build/i18n/{pt.json → pt-BR.json} +10 -3
  12. package/{src/i18n/ro.json → build/i18n/ro-RO.json} +10 -3
  13. package/build/i18n/{ru.json → ru-RU.json} +10 -3
  14. package/build/i18n/{th.json → th-TH.json} +10 -3
  15. package/{src/i18n/tr.json → build/i18n/tr-TR.json} +10 -3
  16. package/{src/i18n/uk.json → build/i18n/uk-UA.json} +10 -3
  17. package/build/i18n/zh-CN.json +10 -3
  18. package/{src/i18n/zh.json → build/i18n/zh-HK.json} +10 -3
  19. package/build/index.esm.js +441 -169
  20. package/build/index.esm.js.map +1 -1
  21. package/build/index.js +439 -167
  22. package/build/index.js.map +1 -1
  23. package/build/types/common/locale/index.d.ts +40 -31
  24. package/build/types/common/locale/index.d.ts.map +1 -1
  25. package/build/types/dateLookup/tableLink/TableLink.d.ts +2 -16
  26. package/build/types/dateLookup/tableLink/TableLink.d.ts.map +1 -1
  27. package/build/types/dateLookup/tableLink/index.d.ts +1 -1
  28. package/build/types/dateLookup/tableLink/index.d.ts.map +1 -1
  29. package/build/types/i18n/index.d.ts.map +1 -1
  30. package/build/types/index.d.ts +1 -1
  31. package/build/types/index.d.ts.map +1 -1
  32. package/build/types/inputs/SelectInput.d.ts.map +1 -1
  33. package/package.json +2 -2
  34. package/src/button/Button.spec.js +12 -0
  35. package/src/button/Button.tsx +1 -1
  36. package/src/common/bottomSheet/__snapshots__/BottomSheet.spec.tsx.snap +8 -8
  37. package/src/common/focusBoundary/FocusBoundary.tsx +4 -4
  38. package/src/common/locale/index.spec.js +27 -37
  39. package/src/common/locale/index.ts +192 -0
  40. package/src/dateLookup/dayCalendar/table/DayCalendarTable.js +0 -26
  41. package/src/dateLookup/tableLink/TableLink.js +70 -0
  42. package/src/i18n/{cs.json → cs-CZ.json} +10 -3
  43. package/src/i18n/{de.json → de-DE.json} +10 -3
  44. package/{build/i18n/es.json → src/i18n/es-ES.json} +10 -3
  45. package/{build/i18n/fr.json → src/i18n/fr-FR.json} +10 -3
  46. package/{build/i18n/hu.json → src/i18n/hu-HU.json} +10 -3
  47. package/{build/i18n/id.json → src/i18n/id-ID.json} +10 -3
  48. package/src/i18n/index.ts +36 -32
  49. package/src/i18n/{it.json → it-IT.json} +10 -3
  50. package/src/i18n/{ja.json → ja-JP.json} +10 -3
  51. package/src/i18n/{pl.json → pl-PL.json} +10 -3
  52. package/src/i18n/{pt.json → pt-BR.json} +10 -3
  53. package/{build/i18n/ro.json → src/i18n/ro-RO.json} +10 -3
  54. package/src/i18n/{ru.json → ru-RU.json} +10 -3
  55. package/src/i18n/{th.json → th-TH.json} +10 -3
  56. package/{build/i18n/tr.json → src/i18n/tr-TR.json} +10 -3
  57. package/{build/i18n/uk.json → src/i18n/uk-UA.json} +10 -3
  58. package/src/i18n/zh-CN.json +10 -3
  59. package/{build/i18n/zh.json → src/i18n/zh-HK.json} +10 -3
  60. package/src/index.ts +1 -1
  61. package/src/inputs/SelectInput.tsx +8 -3
  62. package/src/provider/Provider.js +1 -1
  63. package/src/provider/Provider.spec.tsx +3 -3
  64. package/src/ssr.spec.js +2 -2
  65. package/src/test-utils/index.js +1 -1
  66. package/build/i18n/zh_CN.json +0 -44
  67. package/src/common/locale/index.js +0 -130
  68. package/src/dateLookup/tableLink/TableLink.tsx +0 -74
  69. package/src/i18n/zh_CN.json +0 -44
  70. /package/build/i18n/{en.json → en-GB.json} +0 -0
  71. /package/src/dateLookup/tableLink/{index.ts → index.js} +0 -0
  72. /package/src/i18n/{en.json → en-GB.json} +0 -0
package/build/index.js CHANGED
@@ -376,27 +376,90 @@ const Key = {
376
376
  };
377
377
 
378
378
  /**
379
- * Default language
380
- *
381
- * @type {string}
379
+ * Default language in xx-YY format compliant with IETF BCP 47.
382
380
  */
383
- const DEFAULT_LANG = 'en';
384
-
381
+ const DEFAULT_LANG = 'en-GB';
385
382
  /**
386
383
  * Default locale
387
- *
388
- * @type {string}
389
384
  */
390
385
  const DEFAULT_LOCALE = 'en-GB';
391
-
392
386
  /**
393
387
  * Array of languages that are written from the right to the left
394
- *
395
- * @type {string[]}
396
388
  */
397
389
  const RTL_LANGUAGES = ['ar', 'he'];
398
- const SUPPORTED_LANGUAGES = [DEFAULT_LANG, 'de', 'es', 'fr', 'hu', 'id', 'it', 'ja', 'pl', 'pt', 'ro', 'ru', 'th', 'tr', 'uk', 'zh'];
399
-
390
+ /**
391
+ * Supported languages and variants organised by ISO639-1 primary language.
392
+ * Language variants are in xx-YY format compliant with IETF BCP 47
393
+ * (xx is the ISO 639-1 primary language subtag, and YY is the ISO 3166-1 alpha-2 region subtag).
394
+ * Keys: primary language (eg. en)
395
+ * Values: LanguageVariants object containing default and supported variants (eg. en-GB) of primary lang.
396
+ */
397
+ const SUPPORTED_LANGUAGES = {
398
+ en: {
399
+ default: 'en-GB',
400
+ supported: ['en-GB']
401
+ },
402
+ de: {
403
+ default: 'de-DE',
404
+ supported: ['de-DE']
405
+ },
406
+ es: {
407
+ default: 'es-ES',
408
+ supported: ['es-ES']
409
+ },
410
+ fr: {
411
+ default: 'fr-FR',
412
+ supported: ['fr-FR']
413
+ },
414
+ hu: {
415
+ default: 'hu-HU',
416
+ supported: ['hu-HU']
417
+ },
418
+ id: {
419
+ default: 'id-ID',
420
+ supported: ['id-ID']
421
+ },
422
+ it: {
423
+ default: 'it-IT',
424
+ supported: ['it-IT']
425
+ },
426
+ ja: {
427
+ default: 'ja-JP',
428
+ supported: ['ja-JP']
429
+ },
430
+ pl: {
431
+ default: 'pl-PL',
432
+ supported: ['pl-PL']
433
+ },
434
+ pt: {
435
+ default: 'pt-BR',
436
+ supported: ['pt-BR']
437
+ },
438
+ ro: {
439
+ default: 'ro-RO',
440
+ supported: ['ro-RO']
441
+ },
442
+ ru: {
443
+ default: 'ru-RU',
444
+ supported: ['ru-RU']
445
+ },
446
+ th: {
447
+ default: 'th-TH',
448
+ supported: ['th-TH']
449
+ },
450
+ tr: {
451
+ default: 'tr-TR',
452
+ supported: ['tr-TR']
453
+ },
454
+ uk: {
455
+ default: 'uk-UA',
456
+ supported: ['uk-UA']
457
+ },
458
+ zh: {
459
+ default: 'zh-CN',
460
+ supported: ['zh-CN', 'zh-HK']
461
+ }
462
+ };
400
463
  /**
401
464
  * Verifies and adjusts locale (replace `_` with `-`)
402
465
  * Returns null if locale is unrecognized by {Intl.Locale}
@@ -419,40 +482,44 @@ function adjustLocale(locale) {
419
482
  return null;
420
483
  }
421
484
  }
422
-
423
485
  /**
424
- * Provides corresponding lang (iso2) for provided locale
425
- * if locale is invalid or language is unsupported returns null
486
+ * Resolves supported language (including variant) for a locale.
487
+ * Returned language is in xx-YY format compliant with IETF BCP 47. xx is the ISO 639-1 primary
488
+ * language subtag, and YY is the ISO 3166-1 alpha-2 region subtag.
426
489
  *
427
- * @param {string} locale (`es`, `es-ES`, `en-GB`, `en`, `ja`, `ja-JP` etc)
428
- * @returns {string|null}
490
+ * If locale regional language variant is unsupported, returns the default variant for the language.
491
+ * If primary language unsupported or locale is invalid, returns null.
492
+ *
493
+ * @param {string} locale in xx-YY or xx format (`es-ES`, 'es-MX' `en`, `zh-CN`, `zh-TW` etc)
494
+ * @returns {string|null} language in xx-YY format ('es-ES', 'es-ES', 'en-GB', 'zh-CN', 'zh-CN' etc)
429
495
  */
430
- function getLangFromLocale(locale) {
496
+ function getSupportedLangFromLocale(locale) {
431
497
  const adjustedLocale = adjustLocale(locale);
432
498
  if (adjustedLocale === null) {
433
499
  return null;
434
500
  }
435
501
  try {
436
502
  const {
437
- language
503
+ language: primaryLang
438
504
  } = new Intl.Locale(adjustedLocale);
439
- if (SUPPORTED_LANGUAGES.includes(language)) {
440
- return language;
505
+ if (primaryLang in SUPPORTED_LANGUAGES) {
506
+ if (SUPPORTED_LANGUAGES[primaryLang].supported.includes(adjustedLocale)) {
507
+ return adjustedLocale;
508
+ } else {
509
+ return SUPPORTED_LANGUAGES[primaryLang].default;
510
+ }
511
+ } else {
512
+ return null;
441
513
  }
442
- return null;
443
514
  } catch (error) {
444
515
  // eslint-disable-next-line no-console
445
516
  console.error(error);
446
517
  return null;
447
518
  }
448
519
  }
449
-
450
520
  /**
451
521
  * Provides corresponding country code (iso2) for locales code with explicit region value (`es-ES`, `en-GB`, `ja-JP` etc.)
452
522
  * if the value is invalid or missing region it returns null
453
- *
454
- * @param {string} locale
455
- * @returns {string|null}
456
523
  */
457
524
  function getCountryFromLocale(locale) {
458
525
  const adjustedLocale = adjustLocale(locale);
@@ -470,7 +537,6 @@ function getCountryFromLocale(locale) {
470
537
  return null;
471
538
  }
472
539
  }
473
-
474
540
  /**
475
541
  * Provides the layout direction for a given locale.
476
542
  * If locale is invalid or language is unsupported returns Direction.LTR
@@ -479,17 +545,19 @@ function getCountryFromLocale(locale) {
479
545
  * @returns {Direction} The layout direction based on the locale
480
546
  */
481
547
  function getDirectionFromLocale(locale) {
482
- try {
483
- const adjustedLocale = adjustLocale(locale);
484
- const {
485
- language
486
- } = new Intl.Locale(adjustedLocale);
487
- return RTL_LANGUAGES.includes(language) ? exports.Direction.RTL : exports.Direction.LTR;
488
- } catch (error) {
489
- // eslint-disable-next-line no-console
490
- console.error(error);
491
- return exports.Direction.LTR;
548
+ const adjustedLocale = adjustLocale(locale);
549
+ if (adjustedLocale) {
550
+ try {
551
+ const {
552
+ language
553
+ } = new Intl.Locale(adjustedLocale);
554
+ return RTL_LANGUAGES.includes(language) ? exports.Direction.RTL : exports.Direction.LTR;
555
+ } catch (error) {
556
+ // eslint-disable-next-line no-console
557
+ console.error(error);
558
+ }
492
559
  }
560
+ return exports.Direction.LTR;
493
561
  }
494
562
 
495
563
  /**
@@ -1530,12 +1598,12 @@ const FocusBoundary = ({
1530
1598
  preventScroll: true
1531
1599
  });
1532
1600
  }, []);
1533
- return /*#__PURE__*/jsxRuntime.jsx("div", {
1534
- ref: wrapperReference,
1535
- tabIndex: -1,
1536
- children: /*#__PURE__*/jsxRuntime.jsx(focus.FocusScope, {
1537
- contain: true,
1538
- restoreFocus: true,
1601
+ return /*#__PURE__*/jsxRuntime.jsx(focus.FocusScope, {
1602
+ contain: true,
1603
+ restoreFocus: true,
1604
+ children: /*#__PURE__*/jsxRuntime.jsx("div", {
1605
+ ref: wrapperReference,
1606
+ tabIndex: -1,
1539
1607
  children: children
1540
1608
  })
1541
1609
  });
@@ -2369,7 +2437,7 @@ const Button = /*#__PURE__*/React.forwardRef(({
2369
2437
  className: classes,
2370
2438
  ...props,
2371
2439
  "aria-live": loading ? 'polite' : 'off',
2372
- "aria-label": loading ? intl.formatMessage(messages$9.loadingAriaLabel) : undefined,
2440
+ "aria-label": loading ? intl.formatMessage(messages$9.loadingAriaLabel) : rest['aria-label'],
2373
2441
  children: [children, loading && /*#__PURE__*/jsxRuntime.jsx(ProcessIndicator$1, {
2374
2442
  size: processIndicatorSize(),
2375
2443
  className: "btn-loader"
@@ -3506,50 +3574,59 @@ function getStartOfDay(date) {
3506
3574
  return new Date(date.getFullYear(), date.getMonth(), date.getDate());
3507
3575
  }
3508
3576
 
3509
- const TableLink = ({
3510
- item,
3511
- type,
3512
- title,
3513
- longTitle,
3514
- active,
3515
- disabled,
3516
- today,
3517
- autofocus,
3518
- onClick,
3519
- intl: {
3520
- formatMessage
3521
- }
3522
- }) => {
3523
- const buttonRef = React.useRef(null);
3524
- React.useEffect(() => {
3525
- if (autofocus) {
3526
- buttonRef.current?.focus();
3527
- }
3528
- }, []);
3529
- const onCalendarClick = event => {
3577
+ class TableLink extends React.PureComponent {
3578
+ onClick = event => {
3530
3579
  event.preventDefault();
3531
- if (!disabled) {
3532
- onClick(item);
3580
+ if (!this.props.disabled) {
3581
+ this.props.onClick(this.props.item);
3533
3582
  }
3534
3583
  };
3535
- const calculateAriaLabel = () => {
3584
+ calculateAriaLabel = (longTitle, title, active, type, formatMessage) => {
3536
3585
  if (active) {
3537
- return `${longTitle || title || ''}, ${formatMessage(messages$5.selected)} ${formatMessage(messages$5[type])}`;
3586
+ return `${longTitle || title}, ${formatMessage(messages$5.selected)} ${formatMessage(messages$5[type])}`;
3538
3587
  }
3539
3588
  return longTitle || title;
3540
3589
  };
3541
- return /*#__PURE__*/jsxRuntime.jsx(jsxRuntime.Fragment, {
3542
- children: /*#__PURE__*/jsxRuntime.jsx("button", {
3543
- ref: buttonRef,
3544
- type: "button",
3545
- className: `tw-date-lookup-${type}-option ${active ? 'active' : ''} ${today ? 'today' : ''} np-text-body-default-bold`,
3546
- disabled: disabled,
3547
- "aria-label": calculateAriaLabel(),
3548
- "aria-pressed": active,
3549
- onClick: onCalendarClick,
3550
- children: title || item
3551
- })
3552
- });
3590
+ render() {
3591
+ const {
3592
+ item,
3593
+ type,
3594
+ title,
3595
+ longTitle,
3596
+ active,
3597
+ disabled,
3598
+ today,
3599
+ intl: {
3600
+ formatMessage
3601
+ }
3602
+ } = this.props;
3603
+ return /*#__PURE__*/jsxRuntime.jsx(jsxRuntime.Fragment, {
3604
+ children: /*#__PURE__*/jsxRuntime.jsx("button", {
3605
+ type: "button",
3606
+ className: `tw-date-lookup-${type}-option ${active ? 'active' : ''} ${today ? 'today' : ''} np-text-body-default-bold`,
3607
+ disabled: disabled,
3608
+ "aria-label": this.calculateAriaLabel(longTitle, title, active, type, formatMessage),
3609
+ "aria-pressed": active,
3610
+ onClick: this.onClick,
3611
+ children: title || item
3612
+ })
3613
+ });
3614
+ }
3615
+ }
3616
+ TableLink.propTypes = {
3617
+ item: PropTypes__default.default.number.isRequired,
3618
+ // day (1-31), month (0-11) or year (2018 etc)
3619
+ type: PropTypes__default.default.oneOf(['day', 'month', 'year']).isRequired,
3620
+ title: PropTypes__default.default.string,
3621
+ longTitle: PropTypes__default.default.string,
3622
+ active: PropTypes__default.default.bool.isRequired,
3623
+ disabled: PropTypes__default.default.bool.isRequired,
3624
+ today: PropTypes__default.default.bool.isRequired,
3625
+ onClick: PropTypes__default.default.func.isRequired
3626
+ };
3627
+ TableLink.defaultProps = {
3628
+ title: null,
3629
+ longTitle: null
3553
3630
  };
3554
3631
  var TableLink$1 = reactIntl.injectIntl(TableLink);
3555
3632
 
@@ -3622,25 +3699,6 @@ class DayCalendarTable extends React.PureComponent {
3622
3699
  } = this.props;
3623
3700
  return !!(selectedDate && +new Date(viewYear, viewMonth, day) === +selectedDate);
3624
3701
  };
3625
- getAutofocusDay = weeks => {
3626
- let activeDay = null;
3627
- let lowestNonDisabledDay = null;
3628
- for (const week of weeks) {
3629
- for (const day of week) {
3630
- if (this.isActive(day)) {
3631
- activeDay = day;
3632
- break;
3633
- }
3634
- if (!this.isDisabled(day) && lowestNonDisabledDay === null) {
3635
- lowestNonDisabledDay = day;
3636
- }
3637
- }
3638
- if (activeDay !== null) {
3639
- break;
3640
- }
3641
- }
3642
- return activeDay || lowestNonDisabledDay;
3643
- };
3644
3702
  render() {
3645
3703
  const {
3646
3704
  viewMonth,
@@ -3650,7 +3708,6 @@ class DayCalendarTable extends React.PureComponent {
3650
3708
  }
3651
3709
  } = this.props;
3652
3710
  const weeks = this.getTableStructure();
3653
- let autoFocusDay = this.getAutofocusDay(weeks);
3654
3711
  return /*#__PURE__*/jsxRuntime.jsxs("table", {
3655
3712
  className: "table table-condensed table-bordered tw-date-lookup-calendar m-b-0",
3656
3713
  children: [/*#__PURE__*/jsxRuntime.jsx("thead", {
@@ -3680,7 +3737,6 @@ class DayCalendarTable extends React.PureComponent {
3680
3737
  item: day,
3681
3738
  type: "day",
3682
3739
  title: formatting.formatDate(new Date(viewYear, viewMonth, day), locale, SHORT_DAY_FORMAT),
3683
- autofocus: day === autoFocusDay,
3684
3740
  longTitle: formatting.formatDate(new Date(viewYear, viewMonth, day), locale),
3685
3741
  active: this.isActive(day),
3686
3742
  disabled: this.isDisabled(day),
@@ -6879,7 +6935,12 @@ function SelectInputOptions({
6879
6935
  listboxRef
6880
6936
  }) {
6881
6937
  const [query, setQuery] = React.useState('');
6882
- const needle = React.useMemo(() => query ? searchableString(query) : null, [query]);
6938
+ const needle = React.useMemo(() => {
6939
+ if (filterable) {
6940
+ return query ? searchableString(query) : null;
6941
+ }
6942
+ return undefined;
6943
+ }, [filterable, query]);
6883
6944
  const listboxContainerRef = React.useRef(null);
6884
6945
  React.useEffect(() => {
6885
6946
  if (listboxContainerRef.current != null) {
@@ -6991,7 +7052,7 @@ function SelectInputGroupItemView({
6991
7052
  jsxRuntime.jsxs("section", {
6992
7053
  role: "group",
6993
7054
  "aria-labelledby": headerId,
6994
- className: classNames__default.default(needle == null && 'np-select-input-group-item--without-needle'),
7055
+ className: classNames__default.default(needle === null && 'np-select-input-group-item--without-needle'),
6995
7056
  children: [needle == null ? /*#__PURE__*/jsxRuntime.jsx("header", {
6996
7057
  id: headerId,
6997
7058
  role: "presentation",
@@ -14494,17 +14555,76 @@ function useSnackbar() {
14494
14555
  return createSnackbar;
14495
14556
  }
14496
14557
 
14558
+ var cs = {
14559
+ "neptune.Button.loadingAriaLabel": "načítání",
14560
+ "neptune.Chips.ariaLabel": "Vyčistit {choice}",
14561
+ "neptune.ClearButton.ariaLabel": "Vyčistit",
14562
+ "neptune.CloseButton.ariaLabel": "Zavřít",
14563
+ "neptune.DateInput.day.label": "Den",
14564
+ "neptune.DateInput.month.label": "Měsíc",
14565
+ "neptune.DateInput.year.label": "Rok",
14566
+ "neptune.DateLookup.day": "den",
14567
+ "neptune.DateLookup.goTo20YearView": "Go to 20 year view",
14568
+ "neptune.DateLookup.month": "měsíc",
14569
+ "neptune.DateLookup.next": "další",
14570
+ "neptune.DateLookup.previous": "předchozí",
14571
+ "neptune.DateLookup.selected": "vybráno",
14572
+ "neptune.DateLookup.twentyYears": "20 let",
14573
+ "neptune.DateLookup.year": "rok",
14574
+ "neptune.Link.opensInNewTab": "(opens in new tab)",
14575
+ "neptune.MoneyInput.Select.placeholder": "Vybrat možnost...",
14576
+ "neptune.Select.searchPlaceholder": "Hledat...",
14577
+ "neptune.Summary.statusDone": "Položka dokončena",
14578
+ "neptune.Summary.statusNotDone": "Položka k dokončení",
14579
+ "neptune.Summary.statusPending": "Čekající položka",
14580
+ "neptune.Upload.csButtonText": "Nahrát další soubor?",
14581
+ "neptune.Upload.csFailureText": "Nahrání se nezdařilo. Zkuste to prosím později",
14582
+ "neptune.Upload.csSuccessText": "Úspěšně nahráno!",
14583
+ "neptune.Upload.csTooLargeMessage": "Soubor musí být menší než 5MB",
14584
+ "neptune.Upload.csWrongTypeMessage": "Tento formát souboru není podporován. Zkuste to znovu s jiným souborem",
14585
+ "neptune.Upload.psButtonText": "Zrušit",
14586
+ "neptune.Upload.psProcessingText": "Načítání...",
14587
+ "neptune.Upload.usButtonText": "Nebo vyberte soubor",
14588
+ "neptune.Upload.usDropMessage": "Pusťte sem soubor pro jeho nahrání",
14589
+ "neptune.Upload.usPlaceholder": "Přetáhněte a pusťte sem soubor menší než 5MB",
14590
+ "neptune.UploadButton.allFileTypes": "Všechny typy souborů",
14591
+ "neptune.UploadButton.dropFiles": "Pusťte sem soubor pro jeho nahrání",
14592
+ "neptune.UploadButton.instructions": "{fileTypes}, menší než {size}MB",
14593
+ "neptune.UploadButton.uploadFile": "Nahrát soubor",
14594
+ "neptune.UploadButton.uploadFiles": "Nahrát soubory",
14595
+ "neptune.UploadInput.deleteModalBody": "Odstraněním tohoto souboru jej smažete z našeho systému.",
14596
+ "neptune.UploadInput.deleteModalCancelButtonText": "Zrušit",
14597
+ "neptune.UploadInput.deleteModalConfirmButtonText": "Odstranit",
14598
+ "neptune.UploadInput.deleteModalTitle": "Jistě chcete odstranit tento soubor?",
14599
+ "neptune.UploadInput.fileIsTooLarge": "Soubor je příliš velký",
14600
+ "neptune.UploadInput.fileTypeNotSupported": "Typ souboru není podporován",
14601
+ "neptune.UploadInput.maximumFilesAlreadyUploaded": "Je nám líto, ale toto nahrání se nezdařilo, protože můžeme přijmout pouze {maxFilesAllowed} souborů najednou.",
14602
+ "neptune.UploadItem.deleting": "Mažeme...",
14603
+ "neptune.UploadItem.removeFile": "Odstranit soubor {filename}",
14604
+ "neptune.UploadItem.uploaded": "Nahráno",
14605
+ "neptune.UploadItem.uploadedFile": "Nahraný soubor",
14606
+ "neptune.UploadItem.uploading": "Nahrávání...",
14607
+ "neptune.UploadItem.uploadingFailed": "Nahrání se nezdařilo"
14608
+ };
14609
+
14497
14610
  var de = {
14611
+ "neptune.Button.loadingAriaLabel": "wird geladen",
14498
14612
  "neptune.Chips.ariaLabel": "{choice} zurücksetzen",
14499
14613
  "neptune.ClearButton.ariaLabel": "Zurücksetzen",
14500
14614
  "neptune.CloseButton.ariaLabel": "Schließen",
14501
14615
  "neptune.DateInput.day.label": "Tag",
14502
14616
  "neptune.DateInput.month.label": "Monat",
14503
14617
  "neptune.DateInput.year.label": "Jahr",
14618
+ "neptune.DateLookup.day": "Tag",
14619
+ "neptune.DateLookup.goTo20YearView": "Zur 20-Jahres-Ansicht",
14620
+ "neptune.DateLookup.month": "Monat",
14621
+ "neptune.DateLookup.next": "weiter",
14622
+ "neptune.DateLookup.previous": "zurück",
14623
+ "neptune.DateLookup.selected": "ausgewählt",
14624
+ "neptune.DateLookup.twentyYears": "20 Jahre",
14625
+ "neptune.DateLookup.year": "Jahr",
14626
+ "neptune.Link.opensInNewTab": "(wird in einem neuen Tab geöffnet)",
14504
14627
  "neptune.MoneyInput.Select.placeholder": "Wähle eine der Möglichkeiten aus...",
14505
- "neptune.Pagination.ariaLabel": "Seitennummer-Navigation",
14506
- "neptune.PaginationLink.ariaLabel.active": "Weiter zur Seite {pageNumber}",
14507
- "neptune.PaginationLink.ariaLabel.inactive": "Aktuelle Seite – Seite {pageNumber}",
14508
14628
  "neptune.Select.searchPlaceholder": "Wird gesucht...",
14509
14629
  "neptune.Summary.statusDone": "Schritt erledigt",
14510
14630
  "neptune.Summary.statusNotDone": "Schritt noch zu erledigen",
@@ -14540,16 +14660,23 @@ var de = {
14540
14660
  };
14541
14661
 
14542
14662
  var es = {
14663
+ "neptune.Button.loadingAriaLabel": "cargando",
14543
14664
  "neptune.Chips.ariaLabel": "Descartar {choice}",
14544
14665
  "neptune.ClearButton.ariaLabel": "Borrar",
14545
14666
  "neptune.CloseButton.ariaLabel": "Cerrar",
14546
14667
  "neptune.DateInput.day.label": "Día",
14547
14668
  "neptune.DateInput.month.label": "Mes",
14548
14669
  "neptune.DateInput.year.label": "Año",
14670
+ "neptune.DateLookup.day": "día",
14671
+ "neptune.DateLookup.goTo20YearView": "Ir a vista de 20 años",
14672
+ "neptune.DateLookup.month": "mes",
14673
+ "neptune.DateLookup.next": "siguiente",
14674
+ "neptune.DateLookup.previous": "anterior",
14675
+ "neptune.DateLookup.selected": "seleccionado",
14676
+ "neptune.DateLookup.twentyYears": "20 años",
14677
+ "neptune.DateLookup.year": "año",
14678
+ "neptune.Link.opensInNewTab": "(se abre en una pestaña nueva)",
14549
14679
  "neptune.MoneyInput.Select.placeholder": "Selecciona una opción...",
14550
- "neptune.Pagination.ariaLabel": "Navegación por las páginas",
14551
- "neptune.PaginationLink.ariaLabel.active": "Ve a la página {pageNumber}",
14552
- "neptune.PaginationLink.ariaLabel.inactive": "Página actual, página {pageNumber}",
14553
14680
  "neptune.Select.searchPlaceholder": "Buscar...",
14554
14681
  "neptune.Summary.statusDone": "Apartado listo",
14555
14682
  "neptune.Summary.statusNotDone": "Apartado a completar",
@@ -14585,16 +14712,23 @@ var es = {
14585
14712
  };
14586
14713
 
14587
14714
  var fr = {
14715
+ "neptune.Button.loadingAriaLabel": "chargement",
14588
14716
  "neptune.Chips.ariaLabel": "Effacer {choice}",
14589
14717
  "neptune.ClearButton.ariaLabel": "Effacer",
14590
14718
  "neptune.CloseButton.ariaLabel": "Fermer",
14591
14719
  "neptune.DateInput.day.label": "Jour",
14592
14720
  "neptune.DateInput.month.label": "Mois",
14593
14721
  "neptune.DateInput.year.label": "Année",
14722
+ "neptune.DateLookup.day": "jour",
14723
+ "neptune.DateLookup.goTo20YearView": "Accéder à la vue sur 20 ans",
14724
+ "neptune.DateLookup.month": "mois",
14725
+ "neptune.DateLookup.next": "suivant",
14726
+ "neptune.DateLookup.previous": "précédent",
14727
+ "neptune.DateLookup.selected": "sélectionnée",
14728
+ "neptune.DateLookup.twentyYears": "20 ans",
14729
+ "neptune.DateLookup.year": "année",
14730
+ "neptune.Link.opensInNewTab": "(ouvre dans un nouvel onglet)",
14594
14731
  "neptune.MoneyInput.Select.placeholder": "Sélectionner une option...",
14595
- "neptune.Pagination.ariaLabel": "Navigation par pagination",
14596
- "neptune.PaginationLink.ariaLabel.active": "Aller à la page {pageNumber}",
14597
- "neptune.PaginationLink.ariaLabel.inactive": "Page actuelle, page {pageNumber}",
14598
14732
  "neptune.Select.searchPlaceholder": "Recherche...",
14599
14733
  "neptune.Summary.statusDone": "Validé",
14600
14734
  "neptune.Summary.statusNotDone": "À compléter",
@@ -14630,16 +14764,23 @@ var fr = {
14630
14764
  };
14631
14765
 
14632
14766
  var hu = {
14767
+ "neptune.Button.loadingAriaLabel": "betöltés",
14633
14768
  "neptune.Chips.ariaLabel": "{choice} törlése",
14634
14769
  "neptune.ClearButton.ariaLabel": "Törlés",
14635
14770
  "neptune.CloseButton.ariaLabel": "Bezárás",
14636
14771
  "neptune.DateInput.day.label": "Nap",
14637
14772
  "neptune.DateInput.month.label": "Hónap",
14638
14773
  "neptune.DateInput.year.label": "Év",
14774
+ "neptune.DateLookup.day": "nap",
14775
+ "neptune.DateLookup.goTo20YearView": "Ugrás a 20 éves nézetre",
14776
+ "neptune.DateLookup.month": "hónap",
14777
+ "neptune.DateLookup.next": "következő",
14778
+ "neptune.DateLookup.previous": "előző",
14779
+ "neptune.DateLookup.selected": "kiválasztva",
14780
+ "neptune.DateLookup.twentyYears": "20 év",
14781
+ "neptune.DateLookup.year": "év",
14782
+ "neptune.Link.opensInNewTab": "(új lapon nyílik meg)",
14639
14783
  "neptune.MoneyInput.Select.placeholder": "Válassz ki egy lehetőséget...",
14640
- "neptune.Pagination.ariaLabel": "Lapszámos navigáció",
14641
- "neptune.PaginationLink.ariaLabel.active": "Ugrás a(z) {pageNumber}. oldalra",
14642
- "neptune.PaginationLink.ariaLabel.inactive": "Jelenlegi oldal, {pageNumber}. oldal",
14643
14784
  "neptune.Select.searchPlaceholder": "Keresés...",
14644
14785
  "neptune.Summary.statusDone": "Kész",
14645
14786
  "neptune.Summary.statusNotDone": "Hátravan",
@@ -14675,16 +14816,23 @@ var hu = {
14675
14816
  };
14676
14817
 
14677
14818
  var id = {
14819
+ "neptune.Button.loadingAriaLabel": "memuat",
14678
14820
  "neptune.Chips.ariaLabel": "Hapus {choice}",
14679
14821
  "neptune.ClearButton.ariaLabel": "Hapus",
14680
14822
  "neptune.CloseButton.ariaLabel": "Tutup",
14681
14823
  "neptune.DateInput.day.label": "Hari",
14682
14824
  "neptune.DateInput.month.label": "Bulan",
14683
14825
  "neptune.DateInput.year.label": "Tahun",
14826
+ "neptune.DateLookup.day": "hari",
14827
+ "neptune.DateLookup.goTo20YearView": "Lihat tampilan 20 tahun",
14828
+ "neptune.DateLookup.month": "bulan",
14829
+ "neptune.DateLookup.next": "berikutnya",
14830
+ "neptune.DateLookup.previous": "sebelumnya",
14831
+ "neptune.DateLookup.selected": "terpilih",
14832
+ "neptune.DateLookup.twentyYears": "20 tahun",
14833
+ "neptune.DateLookup.year": "tahun",
14834
+ "neptune.Link.opensInNewTab": "(terbuka di tab baru)",
14684
14835
  "neptune.MoneyInput.Select.placeholder": "Pilih opsi...",
14685
- "neptune.Pagination.ariaLabel": "Halaman navigasi",
14686
- "neptune.PaginationLink.ariaLabel.active": "Lanjut ke halaman {pageNumber}",
14687
- "neptune.PaginationLink.ariaLabel.inactive": "Halaman saat ini, halaman {pageNumber}",
14688
14836
  "neptune.Select.searchPlaceholder": "Cari...",
14689
14837
  "neptune.Summary.statusDone": "Item selesai",
14690
14838
  "neptune.Summary.statusNotDone": "Item yang harus dilakukan",
@@ -14720,16 +14868,23 @@ var id = {
14720
14868
  };
14721
14869
 
14722
14870
  var it = {
14871
+ "neptune.Button.loadingAriaLabel": "caricamento",
14723
14872
  "neptune.Chips.ariaLabel": "Rimuovi {choice}",
14724
14873
  "neptune.ClearButton.ariaLabel": "Elimina",
14725
14874
  "neptune.CloseButton.ariaLabel": "Chiudi",
14726
14875
  "neptune.DateInput.day.label": "Giorno",
14727
14876
  "neptune.DateInput.month.label": "Mese",
14728
14877
  "neptune.DateInput.year.label": "Anno",
14878
+ "neptune.DateLookup.day": "giorno",
14879
+ "neptune.DateLookup.goTo20YearView": "Vai alla vista su 20 anni",
14880
+ "neptune.DateLookup.month": "mese",
14881
+ "neptune.DateLookup.next": "continua",
14882
+ "neptune.DateLookup.previous": "indietro",
14883
+ "neptune.DateLookup.selected": "selezionata",
14884
+ "neptune.DateLookup.twentyYears": "20 anni",
14885
+ "neptune.DateLookup.year": "anno",
14886
+ "neptune.Link.opensInNewTab": "(si apre in una nuova scheda)",
14729
14887
  "neptune.MoneyInput.Select.placeholder": "Seleziona un'opzione...",
14730
- "neptune.Pagination.ariaLabel": "Navigazione",
14731
- "neptune.PaginationLink.ariaLabel.active": "Via a pagina {pageNumber}",
14732
- "neptune.PaginationLink.ariaLabel.inactive": "Pagina corrente, pagina {pageNumber}",
14733
14888
  "neptune.Select.searchPlaceholder": "Cerca...",
14734
14889
  "neptune.Summary.statusDone": "Completato",
14735
14890
  "neptune.Summary.statusNotDone": "Da completare",
@@ -14765,16 +14920,23 @@ var it = {
14765
14920
  };
14766
14921
 
14767
14922
  var ja = {
14923
+ "neptune.Button.loadingAriaLabel": "読み込み中…",
14768
14924
  "neptune.Chips.ariaLabel": "{choice} をクリア",
14769
14925
  "neptune.ClearButton.ariaLabel": "消去",
14770
14926
  "neptune.CloseButton.ariaLabel": "閉じる",
14771
14927
  "neptune.DateInput.day.label": "日",
14772
14928
  "neptune.DateInput.month.label": "月",
14773
14929
  "neptune.DateInput.year.label": "年",
14930
+ "neptune.DateLookup.day": "日",
14931
+ "neptune.DateLookup.goTo20YearView": "20年表示に移動する",
14932
+ "neptune.DateLookup.month": "月",
14933
+ "neptune.DateLookup.next": "次",
14934
+ "neptune.DateLookup.previous": "前",
14935
+ "neptune.DateLookup.selected": "選択済み",
14936
+ "neptune.DateLookup.twentyYears": "20年",
14937
+ "neptune.DateLookup.year": "年",
14938
+ "neptune.Link.opensInNewTab": "(新しいタブで開きます)",
14774
14939
  "neptune.MoneyInput.Select.placeholder": "選択してください...",
14775
- "neptune.Pagination.ariaLabel": "ページネーションナビゲーション",
14776
- "neptune.PaginationLink.ariaLabel.active": "{pageNumber}のページへ移動します",
14777
- "neptune.PaginationLink.ariaLabel.inactive": "現在のページ、{pageNumber}ページ",
14778
14940
  "neptune.Select.searchPlaceholder": "検索... ",
14779
14941
  "neptune.Summary.statusDone": "完了",
14780
14942
  "neptune.Summary.statusNotDone": "未対応",
@@ -14810,16 +14972,23 @@ var ja = {
14810
14972
  };
14811
14973
 
14812
14974
  var pl = {
14975
+ "neptune.Button.loadingAriaLabel": "ładowanie",
14813
14976
  "neptune.Chips.ariaLabel": "Wyczyść {choice}",
14814
14977
  "neptune.ClearButton.ariaLabel": "Wyczyść",
14815
14978
  "neptune.CloseButton.ariaLabel": "Zamknij",
14816
14979
  "neptune.DateInput.day.label": "Dzień",
14817
14980
  "neptune.DateInput.month.label": "Miesiąc",
14818
14981
  "neptune.DateInput.year.label": "Rok",
14982
+ "neptune.DateLookup.day": "dzień",
14983
+ "neptune.DateLookup.goTo20YearView": "Przejdź do widoku 20-letniego",
14984
+ "neptune.DateLookup.month": "miesiąc",
14985
+ "neptune.DateLookup.next": "następny",
14986
+ "neptune.DateLookup.previous": "poprzedni",
14987
+ "neptune.DateLookup.selected": "wybrano",
14988
+ "neptune.DateLookup.twentyYears": "20 lat",
14989
+ "neptune.DateLookup.year": "rok",
14990
+ "neptune.Link.opensInNewTab": "(otworzy się w nowej zakładce)",
14819
14991
  "neptune.MoneyInput.Select.placeholder": "Wybierz opcję...",
14820
- "neptune.Pagination.ariaLabel": "Nawigacja w paginacji",
14821
- "neptune.PaginationLink.ariaLabel.active": "Przejdź do strony {pageNumber}",
14822
- "neptune.PaginationLink.ariaLabel.inactive": "Obecna strona, strona {pageNumber}",
14823
14992
  "neptune.Select.searchPlaceholder": "Wyszukaj...",
14824
14993
  "neptune.Summary.statusDone": "Czynność wykonana",
14825
14994
  "neptune.Summary.statusNotDone": "Czynność do wykonania",
@@ -14855,16 +15024,23 @@ var pl = {
14855
15024
  };
14856
15025
 
14857
15026
  var pt = {
15027
+ "neptune.Button.loadingAriaLabel": "carregando",
14858
15028
  "neptune.Chips.ariaLabel": "Remover {choice}",
14859
15029
  "neptune.ClearButton.ariaLabel": "Remover",
14860
15030
  "neptune.CloseButton.ariaLabel": "Fechar",
14861
15031
  "neptune.DateInput.day.label": "Dia",
14862
15032
  "neptune.DateInput.month.label": "Mês",
14863
15033
  "neptune.DateInput.year.label": "Ano",
15034
+ "neptune.DateLookup.day": "dia",
15035
+ "neptune.DateLookup.goTo20YearView": "Go to 20 year view",
15036
+ "neptune.DateLookup.month": "mês",
15037
+ "neptune.DateLookup.next": "próximo",
15038
+ "neptune.DateLookup.previous": "anterior",
15039
+ "neptune.DateLookup.selected": "selecionada",
15040
+ "neptune.DateLookup.twentyYears": "20 anos",
15041
+ "neptune.DateLookup.year": "ano",
15042
+ "neptune.Link.opensInNewTab": "(abrir a página em uma nova aba)",
14864
15043
  "neptune.MoneyInput.Select.placeholder": "Escolha uma opção...",
14865
- "neptune.Pagination.ariaLabel": "Navegação pelas páginas",
14866
- "neptune.PaginationLink.ariaLabel.active": "Ir para a página {pageNumber}",
14867
- "neptune.PaginationLink.ariaLabel.inactive": "Página atual, página {pageNumber}",
14868
15044
  "neptune.Select.searchPlaceholder": "Buscar...",
14869
15045
  "neptune.Summary.statusDone": "Pronto",
14870
15046
  "neptune.Summary.statusNotDone": "Não iniciado",
@@ -14900,16 +15076,23 @@ var pt = {
14900
15076
  };
14901
15077
 
14902
15078
  var ro = {
15079
+ "neptune.Button.loadingAriaLabel": "se încarcă",
14903
15080
  "neptune.Chips.ariaLabel": "Șterge {choice}",
14904
15081
  "neptune.ClearButton.ariaLabel": "Elimină",
14905
15082
  "neptune.CloseButton.ariaLabel": "Închide",
14906
15083
  "neptune.DateInput.day.label": "Zi",
14907
15084
  "neptune.DateInput.month.label": "Lună",
14908
15085
  "neptune.DateInput.year.label": "An",
15086
+ "neptune.DateLookup.day": "zi",
15087
+ "neptune.DateLookup.goTo20YearView": "Accesează vizualizarea pe 20 de ani",
15088
+ "neptune.DateLookup.month": "luna",
15089
+ "neptune.DateLookup.next": "înainte",
15090
+ "neptune.DateLookup.previous": "precedenta",
15091
+ "neptune.DateLookup.selected": "selectată",
15092
+ "neptune.DateLookup.twentyYears": "20 de ani",
15093
+ "neptune.DateLookup.year": "anul",
15094
+ "neptune.Link.opensInNewTab": "(se deschide într-o filă nouă)",
14909
15095
  "neptune.MoneyInput.Select.placeholder": "Selectează o opţiune...",
14910
- "neptune.Pagination.ariaLabel": "Navigare prin pagină",
14911
- "neptune.PaginationLink.ariaLabel.active": "Du-te la pagina {pageNumber}",
14912
- "neptune.PaginationLink.ariaLabel.inactive": "Pagina curentă, pagina {pageNumber}",
14913
15096
  "neptune.Select.searchPlaceholder": "Caută...",
14914
15097
  "neptune.Summary.statusDone": "Finalizat",
14915
15098
  "neptune.Summary.statusNotDone": "De făcut",
@@ -14945,16 +15128,23 @@ var ro = {
14945
15128
  };
14946
15129
 
14947
15130
  var ru = {
15131
+ "neptune.Button.loadingAriaLabel": "загрузка",
14948
15132
  "neptune.Chips.ariaLabel": "Очистить {choice}",
14949
15133
  "neptune.ClearButton.ariaLabel": "Очистить",
14950
15134
  "neptune.CloseButton.ariaLabel": "Закрыть",
14951
15135
  "neptune.DateInput.day.label": "День",
14952
15136
  "neptune.DateInput.month.label": "Месяц",
14953
15137
  "neptune.DateInput.year.label": "Год",
15138
+ "neptune.DateLookup.day": "день",
15139
+ "neptune.DateLookup.goTo20YearView": "Перейти к обзору 20 лет",
15140
+ "neptune.DateLookup.month": "месяц",
15141
+ "neptune.DateLookup.next": "далее",
15142
+ "neptune.DateLookup.previous": "предыдущий",
15143
+ "neptune.DateLookup.selected": "выбрано",
15144
+ "neptune.DateLookup.twentyYears": "20 лет",
15145
+ "neptune.DateLookup.year": "год",
15146
+ "neptune.Link.opensInNewTab": "(откроется в новой вкладке)",
14954
15147
  "neptune.MoneyInput.Select.placeholder": "Выберите вариант...",
14955
- "neptune.Pagination.ariaLabel": "Постраничная навигация",
14956
- "neptune.PaginationLink.ariaLabel.active": "Перейти на страницу {pageNumber}",
14957
- "neptune.PaginationLink.ariaLabel.inactive": "Текущая страница, страница {pageNumber}",
14958
15148
  "neptune.Select.searchPlaceholder": "Поиск...",
14959
15149
  "neptune.Summary.statusDone": "Этап завершен",
14960
15150
  "neptune.Summary.statusNotDone": "Этап к выполнению",
@@ -14990,16 +15180,23 @@ var ru = {
14990
15180
  };
14991
15181
 
14992
15182
  var th = {
15183
+ "neptune.Button.loadingAriaLabel": "กำลังโหลด",
14993
15184
  "neptune.Chips.ariaLabel": "เคลียร์ {choice}",
14994
15185
  "neptune.ClearButton.ariaLabel": "ชัดเจน",
14995
15186
  "neptune.CloseButton.ariaLabel": "ปิด",
14996
15187
  "neptune.DateInput.day.label": "วัน",
14997
15188
  "neptune.DateInput.month.label": "เดือน",
14998
15189
  "neptune.DateInput.year.label": "ปี",
15190
+ "neptune.DateLookup.day": "วัน",
15191
+ "neptune.DateLookup.goTo20YearView": "Go to 20 year view",
15192
+ "neptune.DateLookup.month": "เดือน",
15193
+ "neptune.DateLookup.next": "ถัดไป",
15194
+ "neptune.DateLookup.previous": "ก่อนหน้า",
15195
+ "neptune.DateLookup.selected": "เลือกแล้ว",
15196
+ "neptune.DateLookup.twentyYears": "20 ปี",
15197
+ "neptune.DateLookup.year": "ปี",
15198
+ "neptune.Link.opensInNewTab": "(opens in new tab)",
14999
15199
  "neptune.MoneyInput.Select.placeholder": "เลือกตัวเลือก...",
15000
- "neptune.Pagination.ariaLabel": "การนำทางเลขหน้า",
15001
- "neptune.PaginationLink.ariaLabel.active": "ไปที่หน้า {pageNumber}",
15002
- "neptune.PaginationLink.ariaLabel.inactive": "หน้าปัจจุบัน หน้า {pageNumber}",
15003
15200
  "neptune.Select.searchPlaceholder": "ค้นหา...",
15004
15201
  "neptune.Summary.statusDone": "รายการที่ทำแล้ว",
15005
15202
  "neptune.Summary.statusNotDone": "รายการที่ต้องทำ",
@@ -15035,16 +15232,23 @@ var th = {
15035
15232
  };
15036
15233
 
15037
15234
  var tr = {
15235
+ "neptune.Button.loadingAriaLabel": "yükleniyor",
15038
15236
  "neptune.Chips.ariaLabel": "{choice} temizle",
15039
15237
  "neptune.ClearButton.ariaLabel": "Sil",
15040
15238
  "neptune.CloseButton.ariaLabel": "Kapat",
15041
15239
  "neptune.DateInput.day.label": "Gün",
15042
15240
  "neptune.DateInput.month.label": "Ay",
15043
15241
  "neptune.DateInput.year.label": "Yıl",
15242
+ "neptune.DateLookup.day": "gün",
15243
+ "neptune.DateLookup.goTo20YearView": "Go to 20 year view",
15244
+ "neptune.DateLookup.month": "ay",
15245
+ "neptune.DateLookup.next": "devam et",
15246
+ "neptune.DateLookup.previous": "önceki",
15247
+ "neptune.DateLookup.selected": "seçili",
15248
+ "neptune.DateLookup.twentyYears": "20 yıl",
15249
+ "neptune.DateLookup.year": "yıl",
15250
+ "neptune.Link.opensInNewTab": "(opens in new tab)",
15044
15251
  "neptune.MoneyInput.Select.placeholder": "Bir seçenek seçin...",
15045
- "neptune.Pagination.ariaLabel": "Sayfalandırma gezintisi",
15046
- "neptune.PaginationLink.ariaLabel.active": "{pageNumber} numaralı sayfaya git",
15047
- "neptune.PaginationLink.ariaLabel.inactive": "Mevcut sayfa, sayfa {pageNumber}",
15048
15252
  "neptune.Select.searchPlaceholder": "Ara...",
15049
15253
  "neptune.Summary.statusDone": "Tamamlanan aşama",
15050
15254
  "neptune.Summary.statusNotDone": "Yapılacak",
@@ -15080,16 +15284,23 @@ var tr = {
15080
15284
  };
15081
15285
 
15082
15286
  var uk = {
15287
+ "neptune.Button.loadingAriaLabel": "завантаження",
15083
15288
  "neptune.Chips.ariaLabel": "Очистити {choice}",
15084
15289
  "neptune.ClearButton.ariaLabel": "Очистити",
15085
15290
  "neptune.CloseButton.ariaLabel": "Закрити",
15086
15291
  "neptune.DateInput.day.label": "День",
15087
15292
  "neptune.DateInput.month.label": "Місяць",
15088
15293
  "neptune.DateInput.year.label": "Рік",
15294
+ "neptune.DateLookup.day": "дня",
15295
+ "neptune.DateLookup.goTo20YearView": "Go to 20 year view",
15296
+ "neptune.DateLookup.month": "місяць",
15297
+ "neptune.DateLookup.next": "уперед",
15298
+ "neptune.DateLookup.previous": "назад",
15299
+ "neptune.DateLookup.selected": "вибрано",
15300
+ "neptune.DateLookup.twentyYears": "20 років",
15301
+ "neptune.DateLookup.year": "рік",
15302
+ "neptune.Link.opensInNewTab": "(opens in new tab)",
15089
15303
  "neptune.MoneyInput.Select.placeholder": "Виберіть варіант…",
15090
- "neptune.Pagination.ariaLabel": "Перехід за сторінками",
15091
- "neptune.PaginationLink.ariaLabel.active": "Перейти на сторінку {pageNumber}",
15092
- "neptune.PaginationLink.ariaLabel.inactive": "Ця сторінка, сторінка {pageNumber}",
15093
15304
  "neptune.Select.searchPlaceholder": "Пошук…",
15094
15305
  "neptune.Summary.statusDone": "Виконано",
15095
15306
  "neptune.Summary.statusNotDone": "Не виконано",
@@ -15124,17 +15335,76 @@ var uk = {
15124
15335
  "neptune.UploadItem.uploadingFailed": "Не вдалося завантажити"
15125
15336
  };
15126
15337
 
15127
- var zh = {
15338
+ var zhCN = {
15339
+ "neptune.Button.loadingAriaLabel": "正在加载",
15340
+ "neptune.Chips.ariaLabel": "清除 {choice}",
15341
+ "neptune.ClearButton.ariaLabel": "清晰",
15342
+ "neptune.CloseButton.ariaLabel": "关闭",
15343
+ "neptune.DateInput.day.label": "日",
15344
+ "neptune.DateInput.month.label": "月",
15345
+ "neptune.DateInput.year.label": "年",
15346
+ "neptune.DateLookup.day": "日",
15347
+ "neptune.DateLookup.goTo20YearView": "Go to 20 year view",
15348
+ "neptune.DateLookup.month": "月",
15349
+ "neptune.DateLookup.next": "下一页",
15350
+ "neptune.DateLookup.previous": "上一页",
15351
+ "neptune.DateLookup.selected": "已选",
15352
+ "neptune.DateLookup.twentyYears": "20年",
15353
+ "neptune.DateLookup.year": "年",
15354
+ "neptune.Link.opensInNewTab": "(opens in new tab)",
15355
+ "neptune.MoneyInput.Select.placeholder": "请选择...",
15356
+ "neptune.Select.searchPlaceholder": "搜索",
15357
+ "neptune.Summary.statusDone": "已完成",
15358
+ "neptune.Summary.statusNotDone": "未完成",
15359
+ "neptune.Summary.statusPending": "待处理",
15360
+ "neptune.Upload.csButtonText": "上传另一个文件?",
15361
+ "neptune.Upload.csFailureText": "上传失败。请重试",
15362
+ "neptune.Upload.csSuccessText": "上传完毕!",
15363
+ "neptune.Upload.csTooLargeMessage": "请提供小于 5MB 的文件",
15364
+ "neptune.Upload.csWrongTypeMessage": "不支持该文件类型,请试试其他文件",
15365
+ "neptune.Upload.psButtonText": "取消",
15366
+ "neptune.Upload.psProcessingText": "正在上传…",
15367
+ "neptune.Upload.usButtonText": "或选择文件",
15368
+ "neptune.Upload.usDropMessage": "拖放文件开始上传",
15369
+ "neptune.Upload.usPlaceholder": "拖放小于 5MB 的文件",
15370
+ "neptune.UploadButton.allFileTypes": "所有文件类型",
15371
+ "neptune.UploadButton.dropFiles": "拖放文件开始上传",
15372
+ "neptune.UploadButton.instructions": "{fileTypes},小于 {size}MB",
15373
+ "neptune.UploadButton.uploadFile": "上传文件",
15374
+ "neptune.UploadButton.uploadFiles": "上传文件",
15375
+ "neptune.UploadInput.deleteModalBody": "删除此文件会将其从我们的系统中删除",
15376
+ "neptune.UploadInput.deleteModalCancelButtonText": "取消",
15377
+ "neptune.UploadInput.deleteModalConfirmButtonText": "删除",
15378
+ "neptune.UploadInput.deleteModalTitle": "确定要删除此文件吗?",
15379
+ "neptune.UploadInput.fileIsTooLarge": "文件太大",
15380
+ "neptune.UploadInput.fileTypeNotSupported": "文件类型不受支持",
15381
+ "neptune.UploadInput.maximumFilesAlreadyUploaded": "抱歉,此上传失败,因为我们一次只能接受 {maxFilesAllowed} 个文件。",
15382
+ "neptune.UploadItem.deleting": "正在删除…",
15383
+ "neptune.UploadItem.removeFile": "删除文件 {filename}",
15384
+ "neptune.UploadItem.uploaded": "已上传",
15385
+ "neptune.UploadItem.uploadedFile": "上传的文件",
15386
+ "neptune.UploadItem.uploading": "正在上传…",
15387
+ "neptune.UploadItem.uploadingFailed": "上传失败"
15388
+ };
15389
+
15390
+ var zhHK = {
15391
+ "neptune.Button.loadingAriaLabel": "載入中",
15128
15392
  "neptune.Chips.ariaLabel": "清除{choice}",
15129
15393
  "neptune.ClearButton.ariaLabel": "清除",
15130
15394
  "neptune.CloseButton.ariaLabel": "關閉",
15131
15395
  "neptune.DateInput.day.label": "日",
15132
15396
  "neptune.DateInput.month.label": "月",
15133
15397
  "neptune.DateInput.year.label": "年",
15398
+ "neptune.DateLookup.day": "日",
15399
+ "neptune.DateLookup.goTo20YearView": "切換至20年視圖",
15400
+ "neptune.DateLookup.month": "月",
15401
+ "neptune.DateLookup.next": "下一個",
15402
+ "neptune.DateLookup.previous": "上一個",
15403
+ "neptune.DateLookup.selected": "已選",
15404
+ "neptune.DateLookup.twentyYears": "20年",
15405
+ "neptune.DateLookup.year": "年",
15406
+ "neptune.Link.opensInNewTab": "(在新分頁中開啟)",
15134
15407
  "neptune.MoneyInput.Select.placeholder": "選擇一個選項…",
15135
- "neptune.Pagination.ariaLabel": "分頁導航",
15136
- "neptune.PaginationLink.ariaLabel.active": "前往第{pageNumber}頁",
15137
- "neptune.PaginationLink.ariaLabel.inactive": "目前在第{pageNumber}頁",
15138
15408
  "neptune.Select.searchPlaceholder": "搜尋…",
15139
15409
  "neptune.Summary.statusDone": "已完成事項",
15140
15410
  "neptune.Summary.statusNotDone": "未完成事項",
@@ -15170,22 +15440,24 @@ var zh = {
15170
15440
  };
15171
15441
 
15172
15442
  const translations = {
15173
- de,
15174
- en,
15175
- es,
15176
- fr,
15177
- hu,
15178
- id,
15179
- it,
15180
- ja,
15181
- pl,
15182
- pt,
15183
- ro,
15184
- ru,
15185
- th,
15186
- tr,
15187
- uk,
15188
- zh
15443
+ 'cs-CZ': cs,
15444
+ 'de-DE': de,
15445
+ 'en-GB': en,
15446
+ 'es-ES': es,
15447
+ 'fr-FR': fr,
15448
+ 'hu-HU': hu,
15449
+ 'id-ID': id,
15450
+ 'it-IT': it,
15451
+ 'ja-JP': ja,
15452
+ 'pl-PL': pl,
15453
+ 'pt-BR': pt,
15454
+ 'ro-RO': ro,
15455
+ 'ru-RU': ru,
15456
+ 'th-TH': th,
15457
+ 'tr-TR': tr,
15458
+ 'uk-UA': uk,
15459
+ 'zh-CN': zhCN,
15460
+ 'zh-HK': zhHK
15189
15461
  };
15190
15462
 
15191
15463
  exports.Accordion = Accordion;
@@ -15285,7 +15557,7 @@ exports.UploadInput = UploadInput;
15285
15557
  exports.adjustLocale = adjustLocale;
15286
15558
  exports.getCountryFromLocale = getCountryFromLocale;
15287
15559
  exports.getDirectionFromLocale = getDirectionFromLocale;
15288
- exports.getLangFromLocale = getLangFromLocale;
15560
+ exports.getSupportedLangFromLocale = getSupportedLangFromLocale;
15289
15561
  exports.isBrowser = isBrowser;
15290
15562
  exports.isServerSide = isServerSide;
15291
15563
  exports.translations = translations;