@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.
- package/README.md +1 -1
- package/build/i18n/{cs.json → cs-CZ.json} +10 -3
- package/build/i18n/{de.json → de-DE.json} +10 -3
- package/{src/i18n/es.json → build/i18n/es-ES.json} +10 -3
- package/{src/i18n/fr.json → build/i18n/fr-FR.json} +10 -3
- package/{src/i18n/hu.json → build/i18n/hu-HU.json} +10 -3
- package/{src/i18n/id.json → build/i18n/id-ID.json} +10 -3
- package/build/i18n/{it.json → it-IT.json} +10 -3
- package/build/i18n/{ja.json → ja-JP.json} +10 -3
- package/build/i18n/{pl.json → pl-PL.json} +10 -3
- package/build/i18n/{pt.json → pt-BR.json} +10 -3
- package/{src/i18n/ro.json → build/i18n/ro-RO.json} +10 -3
- package/build/i18n/{ru.json → ru-RU.json} +10 -3
- package/build/i18n/{th.json → th-TH.json} +10 -3
- package/{src/i18n/tr.json → build/i18n/tr-TR.json} +10 -3
- package/{src/i18n/uk.json → build/i18n/uk-UA.json} +10 -3
- package/build/i18n/zh-CN.json +10 -3
- package/{src/i18n/zh.json → build/i18n/zh-HK.json} +10 -3
- package/build/index.esm.js +441 -169
- package/build/index.esm.js.map +1 -1
- package/build/index.js +439 -167
- package/build/index.js.map +1 -1
- package/build/types/common/locale/index.d.ts +40 -31
- package/build/types/common/locale/index.d.ts.map +1 -1
- package/build/types/dateLookup/tableLink/TableLink.d.ts +2 -16
- package/build/types/dateLookup/tableLink/TableLink.d.ts.map +1 -1
- package/build/types/dateLookup/tableLink/index.d.ts +1 -1
- package/build/types/dateLookup/tableLink/index.d.ts.map +1 -1
- package/build/types/i18n/index.d.ts.map +1 -1
- package/build/types/index.d.ts +1 -1
- package/build/types/index.d.ts.map +1 -1
- package/build/types/inputs/SelectInput.d.ts.map +1 -1
- package/package.json +2 -2
- package/src/button/Button.spec.js +12 -0
- package/src/button/Button.tsx +1 -1
- package/src/common/bottomSheet/__snapshots__/BottomSheet.spec.tsx.snap +8 -8
- package/src/common/focusBoundary/FocusBoundary.tsx +4 -4
- package/src/common/locale/index.spec.js +27 -37
- package/src/common/locale/index.ts +192 -0
- package/src/dateLookup/dayCalendar/table/DayCalendarTable.js +0 -26
- package/src/dateLookup/tableLink/TableLink.js +70 -0
- package/src/i18n/{cs.json → cs-CZ.json} +10 -3
- package/src/i18n/{de.json → de-DE.json} +10 -3
- package/{build/i18n/es.json → src/i18n/es-ES.json} +10 -3
- package/{build/i18n/fr.json → src/i18n/fr-FR.json} +10 -3
- package/{build/i18n/hu.json → src/i18n/hu-HU.json} +10 -3
- package/{build/i18n/id.json → src/i18n/id-ID.json} +10 -3
- package/src/i18n/index.ts +36 -32
- package/src/i18n/{it.json → it-IT.json} +10 -3
- package/src/i18n/{ja.json → ja-JP.json} +10 -3
- package/src/i18n/{pl.json → pl-PL.json} +10 -3
- package/src/i18n/{pt.json → pt-BR.json} +10 -3
- package/{build/i18n/ro.json → src/i18n/ro-RO.json} +10 -3
- package/src/i18n/{ru.json → ru-RU.json} +10 -3
- package/src/i18n/{th.json → th-TH.json} +10 -3
- package/{build/i18n/tr.json → src/i18n/tr-TR.json} +10 -3
- package/{build/i18n/uk.json → src/i18n/uk-UA.json} +10 -3
- package/src/i18n/zh-CN.json +10 -3
- package/{build/i18n/zh.json → src/i18n/zh-HK.json} +10 -3
- package/src/index.ts +1 -1
- package/src/inputs/SelectInput.tsx +8 -3
- package/src/provider/Provider.js +1 -1
- package/src/provider/Provider.spec.tsx +3 -3
- package/src/ssr.spec.js +2 -2
- package/src/test-utils/index.js +1 -1
- package/build/i18n/zh_CN.json +0 -44
- package/src/common/locale/index.js +0 -130
- package/src/dateLookup/tableLink/TableLink.tsx +0 -74
- package/src/i18n/zh_CN.json +0 -44
- /package/build/i18n/{en.json → en-GB.json} +0 -0
- /package/src/dateLookup/tableLink/{index.ts → index.js} +0 -0
- /package/src/i18n/{en.json → en-GB.json} +0 -0
package/build/index.esm.js
CHANGED
|
@@ -342,27 +342,90 @@ const Key = {
|
|
|
342
342
|
};
|
|
343
343
|
|
|
344
344
|
/**
|
|
345
|
-
* Default language
|
|
346
|
-
*
|
|
347
|
-
* @type {string}
|
|
345
|
+
* Default language in xx-YY format compliant with IETF BCP 47.
|
|
348
346
|
*/
|
|
349
|
-
const DEFAULT_LANG = 'en';
|
|
350
|
-
|
|
347
|
+
const DEFAULT_LANG = 'en-GB';
|
|
351
348
|
/**
|
|
352
349
|
* Default locale
|
|
353
|
-
*
|
|
354
|
-
* @type {string}
|
|
355
350
|
*/
|
|
356
351
|
const DEFAULT_LOCALE = 'en-GB';
|
|
357
|
-
|
|
358
352
|
/**
|
|
359
353
|
* Array of languages that are written from the right to the left
|
|
360
|
-
*
|
|
361
|
-
* @type {string[]}
|
|
362
354
|
*/
|
|
363
355
|
const RTL_LANGUAGES = ['ar', 'he'];
|
|
364
|
-
|
|
365
|
-
|
|
356
|
+
/**
|
|
357
|
+
* Supported languages and variants organised by ISO639-1 primary language.
|
|
358
|
+
* Language variants are in xx-YY format compliant with IETF BCP 47
|
|
359
|
+
* (xx is the ISO 639-1 primary language subtag, and YY is the ISO 3166-1 alpha-2 region subtag).
|
|
360
|
+
* Keys: primary language (eg. en)
|
|
361
|
+
* Values: LanguageVariants object containing default and supported variants (eg. en-GB) of primary lang.
|
|
362
|
+
*/
|
|
363
|
+
const SUPPORTED_LANGUAGES = {
|
|
364
|
+
en: {
|
|
365
|
+
default: 'en-GB',
|
|
366
|
+
supported: ['en-GB']
|
|
367
|
+
},
|
|
368
|
+
de: {
|
|
369
|
+
default: 'de-DE',
|
|
370
|
+
supported: ['de-DE']
|
|
371
|
+
},
|
|
372
|
+
es: {
|
|
373
|
+
default: 'es-ES',
|
|
374
|
+
supported: ['es-ES']
|
|
375
|
+
},
|
|
376
|
+
fr: {
|
|
377
|
+
default: 'fr-FR',
|
|
378
|
+
supported: ['fr-FR']
|
|
379
|
+
},
|
|
380
|
+
hu: {
|
|
381
|
+
default: 'hu-HU',
|
|
382
|
+
supported: ['hu-HU']
|
|
383
|
+
},
|
|
384
|
+
id: {
|
|
385
|
+
default: 'id-ID',
|
|
386
|
+
supported: ['id-ID']
|
|
387
|
+
},
|
|
388
|
+
it: {
|
|
389
|
+
default: 'it-IT',
|
|
390
|
+
supported: ['it-IT']
|
|
391
|
+
},
|
|
392
|
+
ja: {
|
|
393
|
+
default: 'ja-JP',
|
|
394
|
+
supported: ['ja-JP']
|
|
395
|
+
},
|
|
396
|
+
pl: {
|
|
397
|
+
default: 'pl-PL',
|
|
398
|
+
supported: ['pl-PL']
|
|
399
|
+
},
|
|
400
|
+
pt: {
|
|
401
|
+
default: 'pt-BR',
|
|
402
|
+
supported: ['pt-BR']
|
|
403
|
+
},
|
|
404
|
+
ro: {
|
|
405
|
+
default: 'ro-RO',
|
|
406
|
+
supported: ['ro-RO']
|
|
407
|
+
},
|
|
408
|
+
ru: {
|
|
409
|
+
default: 'ru-RU',
|
|
410
|
+
supported: ['ru-RU']
|
|
411
|
+
},
|
|
412
|
+
th: {
|
|
413
|
+
default: 'th-TH',
|
|
414
|
+
supported: ['th-TH']
|
|
415
|
+
},
|
|
416
|
+
tr: {
|
|
417
|
+
default: 'tr-TR',
|
|
418
|
+
supported: ['tr-TR']
|
|
419
|
+
},
|
|
420
|
+
uk: {
|
|
421
|
+
default: 'uk-UA',
|
|
422
|
+
supported: ['uk-UA']
|
|
423
|
+
},
|
|
424
|
+
zh: {
|
|
425
|
+
default: 'zh-CN',
|
|
426
|
+
supported: ['zh-CN', 'zh-HK']
|
|
427
|
+
}
|
|
428
|
+
};
|
|
366
429
|
/**
|
|
367
430
|
* Verifies and adjusts locale (replace `_` with `-`)
|
|
368
431
|
* Returns null if locale is unrecognized by {Intl.Locale}
|
|
@@ -385,40 +448,44 @@ function adjustLocale(locale) {
|
|
|
385
448
|
return null;
|
|
386
449
|
}
|
|
387
450
|
}
|
|
388
|
-
|
|
389
451
|
/**
|
|
390
|
-
*
|
|
391
|
-
*
|
|
452
|
+
* Resolves supported language (including variant) for a locale.
|
|
453
|
+
* Returned language is in xx-YY format compliant with IETF BCP 47. xx is the ISO 639-1 primary
|
|
454
|
+
* language subtag, and YY is the ISO 3166-1 alpha-2 region subtag.
|
|
392
455
|
*
|
|
393
|
-
*
|
|
394
|
-
*
|
|
456
|
+
* If locale regional language variant is unsupported, returns the default variant for the language.
|
|
457
|
+
* If primary language unsupported or locale is invalid, returns null.
|
|
458
|
+
*
|
|
459
|
+
* @param {string} locale in xx-YY or xx format (`es-ES`, 'es-MX' `en`, `zh-CN`, `zh-TW` etc)
|
|
460
|
+
* @returns {string|null} language in xx-YY format ('es-ES', 'es-ES', 'en-GB', 'zh-CN', 'zh-CN' etc)
|
|
395
461
|
*/
|
|
396
|
-
function
|
|
462
|
+
function getSupportedLangFromLocale(locale) {
|
|
397
463
|
const adjustedLocale = adjustLocale(locale);
|
|
398
464
|
if (adjustedLocale === null) {
|
|
399
465
|
return null;
|
|
400
466
|
}
|
|
401
467
|
try {
|
|
402
468
|
const {
|
|
403
|
-
language
|
|
469
|
+
language: primaryLang
|
|
404
470
|
} = new Intl.Locale(adjustedLocale);
|
|
405
|
-
if (SUPPORTED_LANGUAGES
|
|
406
|
-
|
|
471
|
+
if (primaryLang in SUPPORTED_LANGUAGES) {
|
|
472
|
+
if (SUPPORTED_LANGUAGES[primaryLang].supported.includes(adjustedLocale)) {
|
|
473
|
+
return adjustedLocale;
|
|
474
|
+
} else {
|
|
475
|
+
return SUPPORTED_LANGUAGES[primaryLang].default;
|
|
476
|
+
}
|
|
477
|
+
} else {
|
|
478
|
+
return null;
|
|
407
479
|
}
|
|
408
|
-
return null;
|
|
409
480
|
} catch (error) {
|
|
410
481
|
// eslint-disable-next-line no-console
|
|
411
482
|
console.error(error);
|
|
412
483
|
return null;
|
|
413
484
|
}
|
|
414
485
|
}
|
|
415
|
-
|
|
416
486
|
/**
|
|
417
487
|
* Provides corresponding country code (iso2) for locales code with explicit region value (`es-ES`, `en-GB`, `ja-JP` etc.)
|
|
418
488
|
* if the value is invalid or missing region it returns null
|
|
419
|
-
*
|
|
420
|
-
* @param {string} locale
|
|
421
|
-
* @returns {string|null}
|
|
422
489
|
*/
|
|
423
490
|
function getCountryFromLocale(locale) {
|
|
424
491
|
const adjustedLocale = adjustLocale(locale);
|
|
@@ -436,7 +503,6 @@ function getCountryFromLocale(locale) {
|
|
|
436
503
|
return null;
|
|
437
504
|
}
|
|
438
505
|
}
|
|
439
|
-
|
|
440
506
|
/**
|
|
441
507
|
* Provides the layout direction for a given locale.
|
|
442
508
|
* If locale is invalid or language is unsupported returns Direction.LTR
|
|
@@ -445,17 +511,19 @@ function getCountryFromLocale(locale) {
|
|
|
445
511
|
* @returns {Direction} The layout direction based on the locale
|
|
446
512
|
*/
|
|
447
513
|
function getDirectionFromLocale(locale) {
|
|
448
|
-
|
|
449
|
-
|
|
450
|
-
|
|
451
|
-
|
|
452
|
-
|
|
453
|
-
|
|
454
|
-
|
|
455
|
-
|
|
456
|
-
|
|
457
|
-
|
|
514
|
+
const adjustedLocale = adjustLocale(locale);
|
|
515
|
+
if (adjustedLocale) {
|
|
516
|
+
try {
|
|
517
|
+
const {
|
|
518
|
+
language
|
|
519
|
+
} = new Intl.Locale(adjustedLocale);
|
|
520
|
+
return RTL_LANGUAGES.includes(language) ? Direction.RTL : Direction.LTR;
|
|
521
|
+
} catch (error) {
|
|
522
|
+
// eslint-disable-next-line no-console
|
|
523
|
+
console.error(error);
|
|
524
|
+
}
|
|
458
525
|
}
|
|
526
|
+
return Direction.LTR;
|
|
459
527
|
}
|
|
460
528
|
|
|
461
529
|
/**
|
|
@@ -1496,12 +1564,12 @@ const FocusBoundary = ({
|
|
|
1496
1564
|
preventScroll: true
|
|
1497
1565
|
});
|
|
1498
1566
|
}, []);
|
|
1499
|
-
return /*#__PURE__*/jsx(
|
|
1500
|
-
|
|
1501
|
-
|
|
1502
|
-
children: /*#__PURE__*/jsx(
|
|
1503
|
-
|
|
1504
|
-
|
|
1567
|
+
return /*#__PURE__*/jsx(FocusScope, {
|
|
1568
|
+
contain: true,
|
|
1569
|
+
restoreFocus: true,
|
|
1570
|
+
children: /*#__PURE__*/jsx("div", {
|
|
1571
|
+
ref: wrapperReference,
|
|
1572
|
+
tabIndex: -1,
|
|
1505
1573
|
children: children
|
|
1506
1574
|
})
|
|
1507
1575
|
});
|
|
@@ -2335,7 +2403,7 @@ const Button = /*#__PURE__*/forwardRef(({
|
|
|
2335
2403
|
className: classes,
|
|
2336
2404
|
...props,
|
|
2337
2405
|
"aria-live": loading ? 'polite' : 'off',
|
|
2338
|
-
"aria-label": loading ? intl.formatMessage(messages$9.loadingAriaLabel) :
|
|
2406
|
+
"aria-label": loading ? intl.formatMessage(messages$9.loadingAriaLabel) : rest['aria-label'],
|
|
2339
2407
|
children: [children, loading && /*#__PURE__*/jsx(ProcessIndicator$1, {
|
|
2340
2408
|
size: processIndicatorSize(),
|
|
2341
2409
|
className: "btn-loader"
|
|
@@ -3472,50 +3540,59 @@ function getStartOfDay(date) {
|
|
|
3472
3540
|
return new Date(date.getFullYear(), date.getMonth(), date.getDate());
|
|
3473
3541
|
}
|
|
3474
3542
|
|
|
3475
|
-
|
|
3476
|
-
|
|
3477
|
-
type,
|
|
3478
|
-
title,
|
|
3479
|
-
longTitle,
|
|
3480
|
-
active,
|
|
3481
|
-
disabled,
|
|
3482
|
-
today,
|
|
3483
|
-
autofocus,
|
|
3484
|
-
onClick,
|
|
3485
|
-
intl: {
|
|
3486
|
-
formatMessage
|
|
3487
|
-
}
|
|
3488
|
-
}) => {
|
|
3489
|
-
const buttonRef = useRef(null);
|
|
3490
|
-
useEffect(() => {
|
|
3491
|
-
if (autofocus) {
|
|
3492
|
-
buttonRef.current?.focus();
|
|
3493
|
-
}
|
|
3494
|
-
}, []);
|
|
3495
|
-
const onCalendarClick = event => {
|
|
3543
|
+
class TableLink extends PureComponent {
|
|
3544
|
+
onClick = event => {
|
|
3496
3545
|
event.preventDefault();
|
|
3497
|
-
if (!disabled) {
|
|
3498
|
-
onClick(item);
|
|
3546
|
+
if (!this.props.disabled) {
|
|
3547
|
+
this.props.onClick(this.props.item);
|
|
3499
3548
|
}
|
|
3500
3549
|
};
|
|
3501
|
-
|
|
3550
|
+
calculateAriaLabel = (longTitle, title, active, type, formatMessage) => {
|
|
3502
3551
|
if (active) {
|
|
3503
|
-
return `${longTitle || title
|
|
3552
|
+
return `${longTitle || title}, ${formatMessage(messages$5.selected)} ${formatMessage(messages$5[type])}`;
|
|
3504
3553
|
}
|
|
3505
3554
|
return longTitle || title;
|
|
3506
3555
|
};
|
|
3507
|
-
|
|
3508
|
-
|
|
3509
|
-
|
|
3510
|
-
type
|
|
3511
|
-
|
|
3512
|
-
|
|
3513
|
-
|
|
3514
|
-
|
|
3515
|
-
|
|
3516
|
-
|
|
3517
|
-
|
|
3518
|
-
|
|
3556
|
+
render() {
|
|
3557
|
+
const {
|
|
3558
|
+
item,
|
|
3559
|
+
type,
|
|
3560
|
+
title,
|
|
3561
|
+
longTitle,
|
|
3562
|
+
active,
|
|
3563
|
+
disabled,
|
|
3564
|
+
today,
|
|
3565
|
+
intl: {
|
|
3566
|
+
formatMessage
|
|
3567
|
+
}
|
|
3568
|
+
} = this.props;
|
|
3569
|
+
return /*#__PURE__*/jsx(Fragment, {
|
|
3570
|
+
children: /*#__PURE__*/jsx("button", {
|
|
3571
|
+
type: "button",
|
|
3572
|
+
className: `tw-date-lookup-${type}-option ${active ? 'active' : ''} ${today ? 'today' : ''} np-text-body-default-bold`,
|
|
3573
|
+
disabled: disabled,
|
|
3574
|
+
"aria-label": this.calculateAriaLabel(longTitle, title, active, type, formatMessage),
|
|
3575
|
+
"aria-pressed": active,
|
|
3576
|
+
onClick: this.onClick,
|
|
3577
|
+
children: title || item
|
|
3578
|
+
})
|
|
3579
|
+
});
|
|
3580
|
+
}
|
|
3581
|
+
}
|
|
3582
|
+
TableLink.propTypes = {
|
|
3583
|
+
item: PropTypes.number.isRequired,
|
|
3584
|
+
// day (1-31), month (0-11) or year (2018 etc)
|
|
3585
|
+
type: PropTypes.oneOf(['day', 'month', 'year']).isRequired,
|
|
3586
|
+
title: PropTypes.string,
|
|
3587
|
+
longTitle: PropTypes.string,
|
|
3588
|
+
active: PropTypes.bool.isRequired,
|
|
3589
|
+
disabled: PropTypes.bool.isRequired,
|
|
3590
|
+
today: PropTypes.bool.isRequired,
|
|
3591
|
+
onClick: PropTypes.func.isRequired
|
|
3592
|
+
};
|
|
3593
|
+
TableLink.defaultProps = {
|
|
3594
|
+
title: null,
|
|
3595
|
+
longTitle: null
|
|
3519
3596
|
};
|
|
3520
3597
|
var TableLink$1 = injectIntl(TableLink);
|
|
3521
3598
|
|
|
@@ -3588,25 +3665,6 @@ class DayCalendarTable extends PureComponent {
|
|
|
3588
3665
|
} = this.props;
|
|
3589
3666
|
return !!(selectedDate && +new Date(viewYear, viewMonth, day) === +selectedDate);
|
|
3590
3667
|
};
|
|
3591
|
-
getAutofocusDay = weeks => {
|
|
3592
|
-
let activeDay = null;
|
|
3593
|
-
let lowestNonDisabledDay = null;
|
|
3594
|
-
for (const week of weeks) {
|
|
3595
|
-
for (const day of week) {
|
|
3596
|
-
if (this.isActive(day)) {
|
|
3597
|
-
activeDay = day;
|
|
3598
|
-
break;
|
|
3599
|
-
}
|
|
3600
|
-
if (!this.isDisabled(day) && lowestNonDisabledDay === null) {
|
|
3601
|
-
lowestNonDisabledDay = day;
|
|
3602
|
-
}
|
|
3603
|
-
}
|
|
3604
|
-
if (activeDay !== null) {
|
|
3605
|
-
break;
|
|
3606
|
-
}
|
|
3607
|
-
}
|
|
3608
|
-
return activeDay || lowestNonDisabledDay;
|
|
3609
|
-
};
|
|
3610
3668
|
render() {
|
|
3611
3669
|
const {
|
|
3612
3670
|
viewMonth,
|
|
@@ -3616,7 +3674,6 @@ class DayCalendarTable extends PureComponent {
|
|
|
3616
3674
|
}
|
|
3617
3675
|
} = this.props;
|
|
3618
3676
|
const weeks = this.getTableStructure();
|
|
3619
|
-
let autoFocusDay = this.getAutofocusDay(weeks);
|
|
3620
3677
|
return /*#__PURE__*/jsxs("table", {
|
|
3621
3678
|
className: "table table-condensed table-bordered tw-date-lookup-calendar m-b-0",
|
|
3622
3679
|
children: [/*#__PURE__*/jsx("thead", {
|
|
@@ -3646,7 +3703,6 @@ class DayCalendarTable extends PureComponent {
|
|
|
3646
3703
|
item: day,
|
|
3647
3704
|
type: "day",
|
|
3648
3705
|
title: formatDate(new Date(viewYear, viewMonth, day), locale, SHORT_DAY_FORMAT),
|
|
3649
|
-
autofocus: day === autoFocusDay,
|
|
3650
3706
|
longTitle: formatDate(new Date(viewYear, viewMonth, day), locale),
|
|
3651
3707
|
active: this.isActive(day),
|
|
3652
3708
|
disabled: this.isDisabled(day),
|
|
@@ -6845,7 +6901,12 @@ function SelectInputOptions({
|
|
|
6845
6901
|
listboxRef
|
|
6846
6902
|
}) {
|
|
6847
6903
|
const [query, setQuery] = useState('');
|
|
6848
|
-
const needle = useMemo(() =>
|
|
6904
|
+
const needle = useMemo(() => {
|
|
6905
|
+
if (filterable) {
|
|
6906
|
+
return query ? searchableString(query) : null;
|
|
6907
|
+
}
|
|
6908
|
+
return undefined;
|
|
6909
|
+
}, [filterable, query]);
|
|
6849
6910
|
const listboxContainerRef = useRef(null);
|
|
6850
6911
|
useEffect(() => {
|
|
6851
6912
|
if (listboxContainerRef.current != null) {
|
|
@@ -6957,7 +7018,7 @@ function SelectInputGroupItemView({
|
|
|
6957
7018
|
jsxs("section", {
|
|
6958
7019
|
role: "group",
|
|
6959
7020
|
"aria-labelledby": headerId,
|
|
6960
|
-
className: classNames(needle
|
|
7021
|
+
className: classNames(needle === null && 'np-select-input-group-item--without-needle'),
|
|
6961
7022
|
children: [needle == null ? /*#__PURE__*/jsx("header", {
|
|
6962
7023
|
id: headerId,
|
|
6963
7024
|
role: "presentation",
|
|
@@ -14460,17 +14521,76 @@ function useSnackbar() {
|
|
|
14460
14521
|
return createSnackbar;
|
|
14461
14522
|
}
|
|
14462
14523
|
|
|
14524
|
+
var cs = {
|
|
14525
|
+
"neptune.Button.loadingAriaLabel": "načítání",
|
|
14526
|
+
"neptune.Chips.ariaLabel": "Vyčistit {choice}",
|
|
14527
|
+
"neptune.ClearButton.ariaLabel": "Vyčistit",
|
|
14528
|
+
"neptune.CloseButton.ariaLabel": "Zavřít",
|
|
14529
|
+
"neptune.DateInput.day.label": "Den",
|
|
14530
|
+
"neptune.DateInput.month.label": "Měsíc",
|
|
14531
|
+
"neptune.DateInput.year.label": "Rok",
|
|
14532
|
+
"neptune.DateLookup.day": "den",
|
|
14533
|
+
"neptune.DateLookup.goTo20YearView": "Go to 20 year view",
|
|
14534
|
+
"neptune.DateLookup.month": "měsíc",
|
|
14535
|
+
"neptune.DateLookup.next": "další",
|
|
14536
|
+
"neptune.DateLookup.previous": "předchozí",
|
|
14537
|
+
"neptune.DateLookup.selected": "vybráno",
|
|
14538
|
+
"neptune.DateLookup.twentyYears": "20 let",
|
|
14539
|
+
"neptune.DateLookup.year": "rok",
|
|
14540
|
+
"neptune.Link.opensInNewTab": "(opens in new tab)",
|
|
14541
|
+
"neptune.MoneyInput.Select.placeholder": "Vybrat možnost...",
|
|
14542
|
+
"neptune.Select.searchPlaceholder": "Hledat...",
|
|
14543
|
+
"neptune.Summary.statusDone": "Položka dokončena",
|
|
14544
|
+
"neptune.Summary.statusNotDone": "Položka k dokončení",
|
|
14545
|
+
"neptune.Summary.statusPending": "Čekající položka",
|
|
14546
|
+
"neptune.Upload.csButtonText": "Nahrát další soubor?",
|
|
14547
|
+
"neptune.Upload.csFailureText": "Nahrání se nezdařilo. Zkuste to prosím později",
|
|
14548
|
+
"neptune.Upload.csSuccessText": "Úspěšně nahráno!",
|
|
14549
|
+
"neptune.Upload.csTooLargeMessage": "Soubor musí být menší než 5MB",
|
|
14550
|
+
"neptune.Upload.csWrongTypeMessage": "Tento formát souboru není podporován. Zkuste to znovu s jiným souborem",
|
|
14551
|
+
"neptune.Upload.psButtonText": "Zrušit",
|
|
14552
|
+
"neptune.Upload.psProcessingText": "Načítání...",
|
|
14553
|
+
"neptune.Upload.usButtonText": "Nebo vyberte soubor",
|
|
14554
|
+
"neptune.Upload.usDropMessage": "Pusťte sem soubor pro jeho nahrání",
|
|
14555
|
+
"neptune.Upload.usPlaceholder": "Přetáhněte a pusťte sem soubor menší než 5MB",
|
|
14556
|
+
"neptune.UploadButton.allFileTypes": "Všechny typy souborů",
|
|
14557
|
+
"neptune.UploadButton.dropFiles": "Pusťte sem soubor pro jeho nahrání",
|
|
14558
|
+
"neptune.UploadButton.instructions": "{fileTypes}, menší než {size}MB",
|
|
14559
|
+
"neptune.UploadButton.uploadFile": "Nahrát soubor",
|
|
14560
|
+
"neptune.UploadButton.uploadFiles": "Nahrát soubory",
|
|
14561
|
+
"neptune.UploadInput.deleteModalBody": "Odstraněním tohoto souboru jej smažete z našeho systému.",
|
|
14562
|
+
"neptune.UploadInput.deleteModalCancelButtonText": "Zrušit",
|
|
14563
|
+
"neptune.UploadInput.deleteModalConfirmButtonText": "Odstranit",
|
|
14564
|
+
"neptune.UploadInput.deleteModalTitle": "Jistě chcete odstranit tento soubor?",
|
|
14565
|
+
"neptune.UploadInput.fileIsTooLarge": "Soubor je příliš velký",
|
|
14566
|
+
"neptune.UploadInput.fileTypeNotSupported": "Typ souboru není podporován",
|
|
14567
|
+
"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.",
|
|
14568
|
+
"neptune.UploadItem.deleting": "Mažeme...",
|
|
14569
|
+
"neptune.UploadItem.removeFile": "Odstranit soubor {filename}",
|
|
14570
|
+
"neptune.UploadItem.uploaded": "Nahráno",
|
|
14571
|
+
"neptune.UploadItem.uploadedFile": "Nahraný soubor",
|
|
14572
|
+
"neptune.UploadItem.uploading": "Nahrávání...",
|
|
14573
|
+
"neptune.UploadItem.uploadingFailed": "Nahrání se nezdařilo"
|
|
14574
|
+
};
|
|
14575
|
+
|
|
14463
14576
|
var de = {
|
|
14577
|
+
"neptune.Button.loadingAriaLabel": "wird geladen",
|
|
14464
14578
|
"neptune.Chips.ariaLabel": "{choice} zurücksetzen",
|
|
14465
14579
|
"neptune.ClearButton.ariaLabel": "Zurücksetzen",
|
|
14466
14580
|
"neptune.CloseButton.ariaLabel": "Schließen",
|
|
14467
14581
|
"neptune.DateInput.day.label": "Tag",
|
|
14468
14582
|
"neptune.DateInput.month.label": "Monat",
|
|
14469
14583
|
"neptune.DateInput.year.label": "Jahr",
|
|
14584
|
+
"neptune.DateLookup.day": "Tag",
|
|
14585
|
+
"neptune.DateLookup.goTo20YearView": "Zur 20-Jahres-Ansicht",
|
|
14586
|
+
"neptune.DateLookup.month": "Monat",
|
|
14587
|
+
"neptune.DateLookup.next": "weiter",
|
|
14588
|
+
"neptune.DateLookup.previous": "zurück",
|
|
14589
|
+
"neptune.DateLookup.selected": "ausgewählt",
|
|
14590
|
+
"neptune.DateLookup.twentyYears": "20 Jahre",
|
|
14591
|
+
"neptune.DateLookup.year": "Jahr",
|
|
14592
|
+
"neptune.Link.opensInNewTab": "(wird in einem neuen Tab geöffnet)",
|
|
14470
14593
|
"neptune.MoneyInput.Select.placeholder": "Wähle eine der Möglichkeiten aus...",
|
|
14471
|
-
"neptune.Pagination.ariaLabel": "Seitennummer-Navigation",
|
|
14472
|
-
"neptune.PaginationLink.ariaLabel.active": "Weiter zur Seite {pageNumber}",
|
|
14473
|
-
"neptune.PaginationLink.ariaLabel.inactive": "Aktuelle Seite – Seite {pageNumber}",
|
|
14474
14594
|
"neptune.Select.searchPlaceholder": "Wird gesucht...",
|
|
14475
14595
|
"neptune.Summary.statusDone": "Schritt erledigt",
|
|
14476
14596
|
"neptune.Summary.statusNotDone": "Schritt noch zu erledigen",
|
|
@@ -14506,16 +14626,23 @@ var de = {
|
|
|
14506
14626
|
};
|
|
14507
14627
|
|
|
14508
14628
|
var es = {
|
|
14629
|
+
"neptune.Button.loadingAriaLabel": "cargando",
|
|
14509
14630
|
"neptune.Chips.ariaLabel": "Descartar {choice}",
|
|
14510
14631
|
"neptune.ClearButton.ariaLabel": "Borrar",
|
|
14511
14632
|
"neptune.CloseButton.ariaLabel": "Cerrar",
|
|
14512
14633
|
"neptune.DateInput.day.label": "Día",
|
|
14513
14634
|
"neptune.DateInput.month.label": "Mes",
|
|
14514
14635
|
"neptune.DateInput.year.label": "Año",
|
|
14636
|
+
"neptune.DateLookup.day": "día",
|
|
14637
|
+
"neptune.DateLookup.goTo20YearView": "Ir a vista de 20 años",
|
|
14638
|
+
"neptune.DateLookup.month": "mes",
|
|
14639
|
+
"neptune.DateLookup.next": "siguiente",
|
|
14640
|
+
"neptune.DateLookup.previous": "anterior",
|
|
14641
|
+
"neptune.DateLookup.selected": "seleccionado",
|
|
14642
|
+
"neptune.DateLookup.twentyYears": "20 años",
|
|
14643
|
+
"neptune.DateLookup.year": "año",
|
|
14644
|
+
"neptune.Link.opensInNewTab": "(se abre en una pestaña nueva)",
|
|
14515
14645
|
"neptune.MoneyInput.Select.placeholder": "Selecciona una opción...",
|
|
14516
|
-
"neptune.Pagination.ariaLabel": "Navegación por las páginas",
|
|
14517
|
-
"neptune.PaginationLink.ariaLabel.active": "Ve a la página {pageNumber}",
|
|
14518
|
-
"neptune.PaginationLink.ariaLabel.inactive": "Página actual, página {pageNumber}",
|
|
14519
14646
|
"neptune.Select.searchPlaceholder": "Buscar...",
|
|
14520
14647
|
"neptune.Summary.statusDone": "Apartado listo",
|
|
14521
14648
|
"neptune.Summary.statusNotDone": "Apartado a completar",
|
|
@@ -14551,16 +14678,23 @@ var es = {
|
|
|
14551
14678
|
};
|
|
14552
14679
|
|
|
14553
14680
|
var fr = {
|
|
14681
|
+
"neptune.Button.loadingAriaLabel": "chargement",
|
|
14554
14682
|
"neptune.Chips.ariaLabel": "Effacer {choice}",
|
|
14555
14683
|
"neptune.ClearButton.ariaLabel": "Effacer",
|
|
14556
14684
|
"neptune.CloseButton.ariaLabel": "Fermer",
|
|
14557
14685
|
"neptune.DateInput.day.label": "Jour",
|
|
14558
14686
|
"neptune.DateInput.month.label": "Mois",
|
|
14559
14687
|
"neptune.DateInput.year.label": "Année",
|
|
14688
|
+
"neptune.DateLookup.day": "jour",
|
|
14689
|
+
"neptune.DateLookup.goTo20YearView": "Accéder à la vue sur 20 ans",
|
|
14690
|
+
"neptune.DateLookup.month": "mois",
|
|
14691
|
+
"neptune.DateLookup.next": "suivant",
|
|
14692
|
+
"neptune.DateLookup.previous": "précédent",
|
|
14693
|
+
"neptune.DateLookup.selected": "sélectionnée",
|
|
14694
|
+
"neptune.DateLookup.twentyYears": "20 ans",
|
|
14695
|
+
"neptune.DateLookup.year": "année",
|
|
14696
|
+
"neptune.Link.opensInNewTab": "(ouvre dans un nouvel onglet)",
|
|
14560
14697
|
"neptune.MoneyInput.Select.placeholder": "Sélectionner une option...",
|
|
14561
|
-
"neptune.Pagination.ariaLabel": "Navigation par pagination",
|
|
14562
|
-
"neptune.PaginationLink.ariaLabel.active": "Aller à la page {pageNumber}",
|
|
14563
|
-
"neptune.PaginationLink.ariaLabel.inactive": "Page actuelle, page {pageNumber}",
|
|
14564
14698
|
"neptune.Select.searchPlaceholder": "Recherche...",
|
|
14565
14699
|
"neptune.Summary.statusDone": "Validé",
|
|
14566
14700
|
"neptune.Summary.statusNotDone": "À compléter",
|
|
@@ -14596,16 +14730,23 @@ var fr = {
|
|
|
14596
14730
|
};
|
|
14597
14731
|
|
|
14598
14732
|
var hu = {
|
|
14733
|
+
"neptune.Button.loadingAriaLabel": "betöltés",
|
|
14599
14734
|
"neptune.Chips.ariaLabel": "{choice} törlése",
|
|
14600
14735
|
"neptune.ClearButton.ariaLabel": "Törlés",
|
|
14601
14736
|
"neptune.CloseButton.ariaLabel": "Bezárás",
|
|
14602
14737
|
"neptune.DateInput.day.label": "Nap",
|
|
14603
14738
|
"neptune.DateInput.month.label": "Hónap",
|
|
14604
14739
|
"neptune.DateInput.year.label": "Év",
|
|
14740
|
+
"neptune.DateLookup.day": "nap",
|
|
14741
|
+
"neptune.DateLookup.goTo20YearView": "Ugrás a 20 éves nézetre",
|
|
14742
|
+
"neptune.DateLookup.month": "hónap",
|
|
14743
|
+
"neptune.DateLookup.next": "következő",
|
|
14744
|
+
"neptune.DateLookup.previous": "előző",
|
|
14745
|
+
"neptune.DateLookup.selected": "kiválasztva",
|
|
14746
|
+
"neptune.DateLookup.twentyYears": "20 év",
|
|
14747
|
+
"neptune.DateLookup.year": "év",
|
|
14748
|
+
"neptune.Link.opensInNewTab": "(új lapon nyílik meg)",
|
|
14605
14749
|
"neptune.MoneyInput.Select.placeholder": "Válassz ki egy lehetőséget...",
|
|
14606
|
-
"neptune.Pagination.ariaLabel": "Lapszámos navigáció",
|
|
14607
|
-
"neptune.PaginationLink.ariaLabel.active": "Ugrás a(z) {pageNumber}. oldalra",
|
|
14608
|
-
"neptune.PaginationLink.ariaLabel.inactive": "Jelenlegi oldal, {pageNumber}. oldal",
|
|
14609
14750
|
"neptune.Select.searchPlaceholder": "Keresés...",
|
|
14610
14751
|
"neptune.Summary.statusDone": "Kész",
|
|
14611
14752
|
"neptune.Summary.statusNotDone": "Hátravan",
|
|
@@ -14641,16 +14782,23 @@ var hu = {
|
|
|
14641
14782
|
};
|
|
14642
14783
|
|
|
14643
14784
|
var id = {
|
|
14785
|
+
"neptune.Button.loadingAriaLabel": "memuat",
|
|
14644
14786
|
"neptune.Chips.ariaLabel": "Hapus {choice}",
|
|
14645
14787
|
"neptune.ClearButton.ariaLabel": "Hapus",
|
|
14646
14788
|
"neptune.CloseButton.ariaLabel": "Tutup",
|
|
14647
14789
|
"neptune.DateInput.day.label": "Hari",
|
|
14648
14790
|
"neptune.DateInput.month.label": "Bulan",
|
|
14649
14791
|
"neptune.DateInput.year.label": "Tahun",
|
|
14792
|
+
"neptune.DateLookup.day": "hari",
|
|
14793
|
+
"neptune.DateLookup.goTo20YearView": "Lihat tampilan 20 tahun",
|
|
14794
|
+
"neptune.DateLookup.month": "bulan",
|
|
14795
|
+
"neptune.DateLookup.next": "berikutnya",
|
|
14796
|
+
"neptune.DateLookup.previous": "sebelumnya",
|
|
14797
|
+
"neptune.DateLookup.selected": "terpilih",
|
|
14798
|
+
"neptune.DateLookup.twentyYears": "20 tahun",
|
|
14799
|
+
"neptune.DateLookup.year": "tahun",
|
|
14800
|
+
"neptune.Link.opensInNewTab": "(terbuka di tab baru)",
|
|
14650
14801
|
"neptune.MoneyInput.Select.placeholder": "Pilih opsi...",
|
|
14651
|
-
"neptune.Pagination.ariaLabel": "Halaman navigasi",
|
|
14652
|
-
"neptune.PaginationLink.ariaLabel.active": "Lanjut ke halaman {pageNumber}",
|
|
14653
|
-
"neptune.PaginationLink.ariaLabel.inactive": "Halaman saat ini, halaman {pageNumber}",
|
|
14654
14802
|
"neptune.Select.searchPlaceholder": "Cari...",
|
|
14655
14803
|
"neptune.Summary.statusDone": "Item selesai",
|
|
14656
14804
|
"neptune.Summary.statusNotDone": "Item yang harus dilakukan",
|
|
@@ -14686,16 +14834,23 @@ var id = {
|
|
|
14686
14834
|
};
|
|
14687
14835
|
|
|
14688
14836
|
var it = {
|
|
14837
|
+
"neptune.Button.loadingAriaLabel": "caricamento",
|
|
14689
14838
|
"neptune.Chips.ariaLabel": "Rimuovi {choice}",
|
|
14690
14839
|
"neptune.ClearButton.ariaLabel": "Elimina",
|
|
14691
14840
|
"neptune.CloseButton.ariaLabel": "Chiudi",
|
|
14692
14841
|
"neptune.DateInput.day.label": "Giorno",
|
|
14693
14842
|
"neptune.DateInput.month.label": "Mese",
|
|
14694
14843
|
"neptune.DateInput.year.label": "Anno",
|
|
14844
|
+
"neptune.DateLookup.day": "giorno",
|
|
14845
|
+
"neptune.DateLookup.goTo20YearView": "Vai alla vista su 20 anni",
|
|
14846
|
+
"neptune.DateLookup.month": "mese",
|
|
14847
|
+
"neptune.DateLookup.next": "continua",
|
|
14848
|
+
"neptune.DateLookup.previous": "indietro",
|
|
14849
|
+
"neptune.DateLookup.selected": "selezionata",
|
|
14850
|
+
"neptune.DateLookup.twentyYears": "20 anni",
|
|
14851
|
+
"neptune.DateLookup.year": "anno",
|
|
14852
|
+
"neptune.Link.opensInNewTab": "(si apre in una nuova scheda)",
|
|
14695
14853
|
"neptune.MoneyInput.Select.placeholder": "Seleziona un'opzione...",
|
|
14696
|
-
"neptune.Pagination.ariaLabel": "Navigazione",
|
|
14697
|
-
"neptune.PaginationLink.ariaLabel.active": "Via a pagina {pageNumber}",
|
|
14698
|
-
"neptune.PaginationLink.ariaLabel.inactive": "Pagina corrente, pagina {pageNumber}",
|
|
14699
14854
|
"neptune.Select.searchPlaceholder": "Cerca...",
|
|
14700
14855
|
"neptune.Summary.statusDone": "Completato",
|
|
14701
14856
|
"neptune.Summary.statusNotDone": "Da completare",
|
|
@@ -14731,16 +14886,23 @@ var it = {
|
|
|
14731
14886
|
};
|
|
14732
14887
|
|
|
14733
14888
|
var ja = {
|
|
14889
|
+
"neptune.Button.loadingAriaLabel": "読み込み中…",
|
|
14734
14890
|
"neptune.Chips.ariaLabel": "{choice} をクリア",
|
|
14735
14891
|
"neptune.ClearButton.ariaLabel": "消去",
|
|
14736
14892
|
"neptune.CloseButton.ariaLabel": "閉じる",
|
|
14737
14893
|
"neptune.DateInput.day.label": "日",
|
|
14738
14894
|
"neptune.DateInput.month.label": "月",
|
|
14739
14895
|
"neptune.DateInput.year.label": "年",
|
|
14896
|
+
"neptune.DateLookup.day": "日",
|
|
14897
|
+
"neptune.DateLookup.goTo20YearView": "20年表示に移動する",
|
|
14898
|
+
"neptune.DateLookup.month": "月",
|
|
14899
|
+
"neptune.DateLookup.next": "次",
|
|
14900
|
+
"neptune.DateLookup.previous": "前",
|
|
14901
|
+
"neptune.DateLookup.selected": "選択済み",
|
|
14902
|
+
"neptune.DateLookup.twentyYears": "20年",
|
|
14903
|
+
"neptune.DateLookup.year": "年",
|
|
14904
|
+
"neptune.Link.opensInNewTab": "(新しいタブで開きます)",
|
|
14740
14905
|
"neptune.MoneyInput.Select.placeholder": "選択してください...",
|
|
14741
|
-
"neptune.Pagination.ariaLabel": "ページネーションナビゲーション",
|
|
14742
|
-
"neptune.PaginationLink.ariaLabel.active": "{pageNumber}のページへ移動します",
|
|
14743
|
-
"neptune.PaginationLink.ariaLabel.inactive": "現在のページ、{pageNumber}ページ",
|
|
14744
14906
|
"neptune.Select.searchPlaceholder": "検索... ",
|
|
14745
14907
|
"neptune.Summary.statusDone": "完了",
|
|
14746
14908
|
"neptune.Summary.statusNotDone": "未対応",
|
|
@@ -14776,16 +14938,23 @@ var ja = {
|
|
|
14776
14938
|
};
|
|
14777
14939
|
|
|
14778
14940
|
var pl = {
|
|
14941
|
+
"neptune.Button.loadingAriaLabel": "ładowanie",
|
|
14779
14942
|
"neptune.Chips.ariaLabel": "Wyczyść {choice}",
|
|
14780
14943
|
"neptune.ClearButton.ariaLabel": "Wyczyść",
|
|
14781
14944
|
"neptune.CloseButton.ariaLabel": "Zamknij",
|
|
14782
14945
|
"neptune.DateInput.day.label": "Dzień",
|
|
14783
14946
|
"neptune.DateInput.month.label": "Miesiąc",
|
|
14784
14947
|
"neptune.DateInput.year.label": "Rok",
|
|
14948
|
+
"neptune.DateLookup.day": "dzień",
|
|
14949
|
+
"neptune.DateLookup.goTo20YearView": "Przejdź do widoku 20-letniego",
|
|
14950
|
+
"neptune.DateLookup.month": "miesiąc",
|
|
14951
|
+
"neptune.DateLookup.next": "następny",
|
|
14952
|
+
"neptune.DateLookup.previous": "poprzedni",
|
|
14953
|
+
"neptune.DateLookup.selected": "wybrano",
|
|
14954
|
+
"neptune.DateLookup.twentyYears": "20 lat",
|
|
14955
|
+
"neptune.DateLookup.year": "rok",
|
|
14956
|
+
"neptune.Link.opensInNewTab": "(otworzy się w nowej zakładce)",
|
|
14785
14957
|
"neptune.MoneyInput.Select.placeholder": "Wybierz opcję...",
|
|
14786
|
-
"neptune.Pagination.ariaLabel": "Nawigacja w paginacji",
|
|
14787
|
-
"neptune.PaginationLink.ariaLabel.active": "Przejdź do strony {pageNumber}",
|
|
14788
|
-
"neptune.PaginationLink.ariaLabel.inactive": "Obecna strona, strona {pageNumber}",
|
|
14789
14958
|
"neptune.Select.searchPlaceholder": "Wyszukaj...",
|
|
14790
14959
|
"neptune.Summary.statusDone": "Czynność wykonana",
|
|
14791
14960
|
"neptune.Summary.statusNotDone": "Czynność do wykonania",
|
|
@@ -14821,16 +14990,23 @@ var pl = {
|
|
|
14821
14990
|
};
|
|
14822
14991
|
|
|
14823
14992
|
var pt = {
|
|
14993
|
+
"neptune.Button.loadingAriaLabel": "carregando",
|
|
14824
14994
|
"neptune.Chips.ariaLabel": "Remover {choice}",
|
|
14825
14995
|
"neptune.ClearButton.ariaLabel": "Remover",
|
|
14826
14996
|
"neptune.CloseButton.ariaLabel": "Fechar",
|
|
14827
14997
|
"neptune.DateInput.day.label": "Dia",
|
|
14828
14998
|
"neptune.DateInput.month.label": "Mês",
|
|
14829
14999
|
"neptune.DateInput.year.label": "Ano",
|
|
15000
|
+
"neptune.DateLookup.day": "dia",
|
|
15001
|
+
"neptune.DateLookup.goTo20YearView": "Go to 20 year view",
|
|
15002
|
+
"neptune.DateLookup.month": "mês",
|
|
15003
|
+
"neptune.DateLookup.next": "próximo",
|
|
15004
|
+
"neptune.DateLookup.previous": "anterior",
|
|
15005
|
+
"neptune.DateLookup.selected": "selecionada",
|
|
15006
|
+
"neptune.DateLookup.twentyYears": "20 anos",
|
|
15007
|
+
"neptune.DateLookup.year": "ano",
|
|
15008
|
+
"neptune.Link.opensInNewTab": "(abrir a página em uma nova aba)",
|
|
14830
15009
|
"neptune.MoneyInput.Select.placeholder": "Escolha uma opção...",
|
|
14831
|
-
"neptune.Pagination.ariaLabel": "Navegação pelas páginas",
|
|
14832
|
-
"neptune.PaginationLink.ariaLabel.active": "Ir para a página {pageNumber}",
|
|
14833
|
-
"neptune.PaginationLink.ariaLabel.inactive": "Página atual, página {pageNumber}",
|
|
14834
15010
|
"neptune.Select.searchPlaceholder": "Buscar...",
|
|
14835
15011
|
"neptune.Summary.statusDone": "Pronto",
|
|
14836
15012
|
"neptune.Summary.statusNotDone": "Não iniciado",
|
|
@@ -14866,16 +15042,23 @@ var pt = {
|
|
|
14866
15042
|
};
|
|
14867
15043
|
|
|
14868
15044
|
var ro = {
|
|
15045
|
+
"neptune.Button.loadingAriaLabel": "se încarcă",
|
|
14869
15046
|
"neptune.Chips.ariaLabel": "Șterge {choice}",
|
|
14870
15047
|
"neptune.ClearButton.ariaLabel": "Elimină",
|
|
14871
15048
|
"neptune.CloseButton.ariaLabel": "Închide",
|
|
14872
15049
|
"neptune.DateInput.day.label": "Zi",
|
|
14873
15050
|
"neptune.DateInput.month.label": "Lună",
|
|
14874
15051
|
"neptune.DateInput.year.label": "An",
|
|
15052
|
+
"neptune.DateLookup.day": "zi",
|
|
15053
|
+
"neptune.DateLookup.goTo20YearView": "Accesează vizualizarea pe 20 de ani",
|
|
15054
|
+
"neptune.DateLookup.month": "luna",
|
|
15055
|
+
"neptune.DateLookup.next": "înainte",
|
|
15056
|
+
"neptune.DateLookup.previous": "precedenta",
|
|
15057
|
+
"neptune.DateLookup.selected": "selectată",
|
|
15058
|
+
"neptune.DateLookup.twentyYears": "20 de ani",
|
|
15059
|
+
"neptune.DateLookup.year": "anul",
|
|
15060
|
+
"neptune.Link.opensInNewTab": "(se deschide într-o filă nouă)",
|
|
14875
15061
|
"neptune.MoneyInput.Select.placeholder": "Selectează o opţiune...",
|
|
14876
|
-
"neptune.Pagination.ariaLabel": "Navigare prin pagină",
|
|
14877
|
-
"neptune.PaginationLink.ariaLabel.active": "Du-te la pagina {pageNumber}",
|
|
14878
|
-
"neptune.PaginationLink.ariaLabel.inactive": "Pagina curentă, pagina {pageNumber}",
|
|
14879
15062
|
"neptune.Select.searchPlaceholder": "Caută...",
|
|
14880
15063
|
"neptune.Summary.statusDone": "Finalizat",
|
|
14881
15064
|
"neptune.Summary.statusNotDone": "De făcut",
|
|
@@ -14911,16 +15094,23 @@ var ro = {
|
|
|
14911
15094
|
};
|
|
14912
15095
|
|
|
14913
15096
|
var ru = {
|
|
15097
|
+
"neptune.Button.loadingAriaLabel": "загрузка",
|
|
14914
15098
|
"neptune.Chips.ariaLabel": "Очистить {choice}",
|
|
14915
15099
|
"neptune.ClearButton.ariaLabel": "Очистить",
|
|
14916
15100
|
"neptune.CloseButton.ariaLabel": "Закрыть",
|
|
14917
15101
|
"neptune.DateInput.day.label": "День",
|
|
14918
15102
|
"neptune.DateInput.month.label": "Месяц",
|
|
14919
15103
|
"neptune.DateInput.year.label": "Год",
|
|
15104
|
+
"neptune.DateLookup.day": "день",
|
|
15105
|
+
"neptune.DateLookup.goTo20YearView": "Перейти к обзору 20 лет",
|
|
15106
|
+
"neptune.DateLookup.month": "месяц",
|
|
15107
|
+
"neptune.DateLookup.next": "далее",
|
|
15108
|
+
"neptune.DateLookup.previous": "предыдущий",
|
|
15109
|
+
"neptune.DateLookup.selected": "выбрано",
|
|
15110
|
+
"neptune.DateLookup.twentyYears": "20 лет",
|
|
15111
|
+
"neptune.DateLookup.year": "год",
|
|
15112
|
+
"neptune.Link.opensInNewTab": "(откроется в новой вкладке)",
|
|
14920
15113
|
"neptune.MoneyInput.Select.placeholder": "Выберите вариант...",
|
|
14921
|
-
"neptune.Pagination.ariaLabel": "Постраничная навигация",
|
|
14922
|
-
"neptune.PaginationLink.ariaLabel.active": "Перейти на страницу {pageNumber}",
|
|
14923
|
-
"neptune.PaginationLink.ariaLabel.inactive": "Текущая страница, страница {pageNumber}",
|
|
14924
15114
|
"neptune.Select.searchPlaceholder": "Поиск...",
|
|
14925
15115
|
"neptune.Summary.statusDone": "Этап завершен",
|
|
14926
15116
|
"neptune.Summary.statusNotDone": "Этап к выполнению",
|
|
@@ -14956,16 +15146,23 @@ var ru = {
|
|
|
14956
15146
|
};
|
|
14957
15147
|
|
|
14958
15148
|
var th = {
|
|
15149
|
+
"neptune.Button.loadingAriaLabel": "กำลังโหลด",
|
|
14959
15150
|
"neptune.Chips.ariaLabel": "เคลียร์ {choice}",
|
|
14960
15151
|
"neptune.ClearButton.ariaLabel": "ชัดเจน",
|
|
14961
15152
|
"neptune.CloseButton.ariaLabel": "ปิด",
|
|
14962
15153
|
"neptune.DateInput.day.label": "วัน",
|
|
14963
15154
|
"neptune.DateInput.month.label": "เดือน",
|
|
14964
15155
|
"neptune.DateInput.year.label": "ปี",
|
|
15156
|
+
"neptune.DateLookup.day": "วัน",
|
|
15157
|
+
"neptune.DateLookup.goTo20YearView": "Go to 20 year view",
|
|
15158
|
+
"neptune.DateLookup.month": "เดือน",
|
|
15159
|
+
"neptune.DateLookup.next": "ถัดไป",
|
|
15160
|
+
"neptune.DateLookup.previous": "ก่อนหน้า",
|
|
15161
|
+
"neptune.DateLookup.selected": "เลือกแล้ว",
|
|
15162
|
+
"neptune.DateLookup.twentyYears": "20 ปี",
|
|
15163
|
+
"neptune.DateLookup.year": "ปี",
|
|
15164
|
+
"neptune.Link.opensInNewTab": "(opens in new tab)",
|
|
14965
15165
|
"neptune.MoneyInput.Select.placeholder": "เลือกตัวเลือก...",
|
|
14966
|
-
"neptune.Pagination.ariaLabel": "การนำทางเลขหน้า",
|
|
14967
|
-
"neptune.PaginationLink.ariaLabel.active": "ไปที่หน้า {pageNumber}",
|
|
14968
|
-
"neptune.PaginationLink.ariaLabel.inactive": "หน้าปัจจุบัน หน้า {pageNumber}",
|
|
14969
15166
|
"neptune.Select.searchPlaceholder": "ค้นหา...",
|
|
14970
15167
|
"neptune.Summary.statusDone": "รายการที่ทำแล้ว",
|
|
14971
15168
|
"neptune.Summary.statusNotDone": "รายการที่ต้องทำ",
|
|
@@ -15001,16 +15198,23 @@ var th = {
|
|
|
15001
15198
|
};
|
|
15002
15199
|
|
|
15003
15200
|
var tr = {
|
|
15201
|
+
"neptune.Button.loadingAriaLabel": "yükleniyor",
|
|
15004
15202
|
"neptune.Chips.ariaLabel": "{choice} temizle",
|
|
15005
15203
|
"neptune.ClearButton.ariaLabel": "Sil",
|
|
15006
15204
|
"neptune.CloseButton.ariaLabel": "Kapat",
|
|
15007
15205
|
"neptune.DateInput.day.label": "Gün",
|
|
15008
15206
|
"neptune.DateInput.month.label": "Ay",
|
|
15009
15207
|
"neptune.DateInput.year.label": "Yıl",
|
|
15208
|
+
"neptune.DateLookup.day": "gün",
|
|
15209
|
+
"neptune.DateLookup.goTo20YearView": "Go to 20 year view",
|
|
15210
|
+
"neptune.DateLookup.month": "ay",
|
|
15211
|
+
"neptune.DateLookup.next": "devam et",
|
|
15212
|
+
"neptune.DateLookup.previous": "önceki",
|
|
15213
|
+
"neptune.DateLookup.selected": "seçili",
|
|
15214
|
+
"neptune.DateLookup.twentyYears": "20 yıl",
|
|
15215
|
+
"neptune.DateLookup.year": "yıl",
|
|
15216
|
+
"neptune.Link.opensInNewTab": "(opens in new tab)",
|
|
15010
15217
|
"neptune.MoneyInput.Select.placeholder": "Bir seçenek seçin...",
|
|
15011
|
-
"neptune.Pagination.ariaLabel": "Sayfalandırma gezintisi",
|
|
15012
|
-
"neptune.PaginationLink.ariaLabel.active": "{pageNumber} numaralı sayfaya git",
|
|
15013
|
-
"neptune.PaginationLink.ariaLabel.inactive": "Mevcut sayfa, sayfa {pageNumber}",
|
|
15014
15218
|
"neptune.Select.searchPlaceholder": "Ara...",
|
|
15015
15219
|
"neptune.Summary.statusDone": "Tamamlanan aşama",
|
|
15016
15220
|
"neptune.Summary.statusNotDone": "Yapılacak",
|
|
@@ -15046,16 +15250,23 @@ var tr = {
|
|
|
15046
15250
|
};
|
|
15047
15251
|
|
|
15048
15252
|
var uk = {
|
|
15253
|
+
"neptune.Button.loadingAriaLabel": "завантаження",
|
|
15049
15254
|
"neptune.Chips.ariaLabel": "Очистити {choice}",
|
|
15050
15255
|
"neptune.ClearButton.ariaLabel": "Очистити",
|
|
15051
15256
|
"neptune.CloseButton.ariaLabel": "Закрити",
|
|
15052
15257
|
"neptune.DateInput.day.label": "День",
|
|
15053
15258
|
"neptune.DateInput.month.label": "Місяць",
|
|
15054
15259
|
"neptune.DateInput.year.label": "Рік",
|
|
15260
|
+
"neptune.DateLookup.day": "дня",
|
|
15261
|
+
"neptune.DateLookup.goTo20YearView": "Go to 20 year view",
|
|
15262
|
+
"neptune.DateLookup.month": "місяць",
|
|
15263
|
+
"neptune.DateLookup.next": "уперед",
|
|
15264
|
+
"neptune.DateLookup.previous": "назад",
|
|
15265
|
+
"neptune.DateLookup.selected": "вибрано",
|
|
15266
|
+
"neptune.DateLookup.twentyYears": "20 років",
|
|
15267
|
+
"neptune.DateLookup.year": "рік",
|
|
15268
|
+
"neptune.Link.opensInNewTab": "(opens in new tab)",
|
|
15055
15269
|
"neptune.MoneyInput.Select.placeholder": "Виберіть варіант…",
|
|
15056
|
-
"neptune.Pagination.ariaLabel": "Перехід за сторінками",
|
|
15057
|
-
"neptune.PaginationLink.ariaLabel.active": "Перейти на сторінку {pageNumber}",
|
|
15058
|
-
"neptune.PaginationLink.ariaLabel.inactive": "Ця сторінка, сторінка {pageNumber}",
|
|
15059
15270
|
"neptune.Select.searchPlaceholder": "Пошук…",
|
|
15060
15271
|
"neptune.Summary.statusDone": "Виконано",
|
|
15061
15272
|
"neptune.Summary.statusNotDone": "Не виконано",
|
|
@@ -15090,17 +15301,76 @@ var uk = {
|
|
|
15090
15301
|
"neptune.UploadItem.uploadingFailed": "Не вдалося завантажити"
|
|
15091
15302
|
};
|
|
15092
15303
|
|
|
15093
|
-
var
|
|
15304
|
+
var zhCN = {
|
|
15305
|
+
"neptune.Button.loadingAriaLabel": "正在加载",
|
|
15306
|
+
"neptune.Chips.ariaLabel": "清除 {choice}",
|
|
15307
|
+
"neptune.ClearButton.ariaLabel": "清晰",
|
|
15308
|
+
"neptune.CloseButton.ariaLabel": "关闭",
|
|
15309
|
+
"neptune.DateInput.day.label": "日",
|
|
15310
|
+
"neptune.DateInput.month.label": "月",
|
|
15311
|
+
"neptune.DateInput.year.label": "年",
|
|
15312
|
+
"neptune.DateLookup.day": "日",
|
|
15313
|
+
"neptune.DateLookup.goTo20YearView": "Go to 20 year view",
|
|
15314
|
+
"neptune.DateLookup.month": "月",
|
|
15315
|
+
"neptune.DateLookup.next": "下一页",
|
|
15316
|
+
"neptune.DateLookup.previous": "上一页",
|
|
15317
|
+
"neptune.DateLookup.selected": "已选",
|
|
15318
|
+
"neptune.DateLookup.twentyYears": "20年",
|
|
15319
|
+
"neptune.DateLookup.year": "年",
|
|
15320
|
+
"neptune.Link.opensInNewTab": "(opens in new tab)",
|
|
15321
|
+
"neptune.MoneyInput.Select.placeholder": "请选择...",
|
|
15322
|
+
"neptune.Select.searchPlaceholder": "搜索",
|
|
15323
|
+
"neptune.Summary.statusDone": "已完成",
|
|
15324
|
+
"neptune.Summary.statusNotDone": "未完成",
|
|
15325
|
+
"neptune.Summary.statusPending": "待处理",
|
|
15326
|
+
"neptune.Upload.csButtonText": "上传另一个文件?",
|
|
15327
|
+
"neptune.Upload.csFailureText": "上传失败。请重试",
|
|
15328
|
+
"neptune.Upload.csSuccessText": "上传完毕!",
|
|
15329
|
+
"neptune.Upload.csTooLargeMessage": "请提供小于 5MB 的文件",
|
|
15330
|
+
"neptune.Upload.csWrongTypeMessage": "不支持该文件类型,请试试其他文件",
|
|
15331
|
+
"neptune.Upload.psButtonText": "取消",
|
|
15332
|
+
"neptune.Upload.psProcessingText": "正在上传…",
|
|
15333
|
+
"neptune.Upload.usButtonText": "或选择文件",
|
|
15334
|
+
"neptune.Upload.usDropMessage": "拖放文件开始上传",
|
|
15335
|
+
"neptune.Upload.usPlaceholder": "拖放小于 5MB 的文件",
|
|
15336
|
+
"neptune.UploadButton.allFileTypes": "所有文件类型",
|
|
15337
|
+
"neptune.UploadButton.dropFiles": "拖放文件开始上传",
|
|
15338
|
+
"neptune.UploadButton.instructions": "{fileTypes},小于 {size}MB",
|
|
15339
|
+
"neptune.UploadButton.uploadFile": "上传文件",
|
|
15340
|
+
"neptune.UploadButton.uploadFiles": "上传文件",
|
|
15341
|
+
"neptune.UploadInput.deleteModalBody": "删除此文件会将其从我们的系统中删除",
|
|
15342
|
+
"neptune.UploadInput.deleteModalCancelButtonText": "取消",
|
|
15343
|
+
"neptune.UploadInput.deleteModalConfirmButtonText": "删除",
|
|
15344
|
+
"neptune.UploadInput.deleteModalTitle": "确定要删除此文件吗?",
|
|
15345
|
+
"neptune.UploadInput.fileIsTooLarge": "文件太大",
|
|
15346
|
+
"neptune.UploadInput.fileTypeNotSupported": "文件类型不受支持",
|
|
15347
|
+
"neptune.UploadInput.maximumFilesAlreadyUploaded": "抱歉,此上传失败,因为我们一次只能接受 {maxFilesAllowed} 个文件。",
|
|
15348
|
+
"neptune.UploadItem.deleting": "正在删除…",
|
|
15349
|
+
"neptune.UploadItem.removeFile": "删除文件 {filename}",
|
|
15350
|
+
"neptune.UploadItem.uploaded": "已上传",
|
|
15351
|
+
"neptune.UploadItem.uploadedFile": "上传的文件",
|
|
15352
|
+
"neptune.UploadItem.uploading": "正在上传…",
|
|
15353
|
+
"neptune.UploadItem.uploadingFailed": "上传失败"
|
|
15354
|
+
};
|
|
15355
|
+
|
|
15356
|
+
var zhHK = {
|
|
15357
|
+
"neptune.Button.loadingAriaLabel": "載入中",
|
|
15094
15358
|
"neptune.Chips.ariaLabel": "清除{choice}",
|
|
15095
15359
|
"neptune.ClearButton.ariaLabel": "清除",
|
|
15096
15360
|
"neptune.CloseButton.ariaLabel": "關閉",
|
|
15097
15361
|
"neptune.DateInput.day.label": "日",
|
|
15098
15362
|
"neptune.DateInput.month.label": "月",
|
|
15099
15363
|
"neptune.DateInput.year.label": "年",
|
|
15364
|
+
"neptune.DateLookup.day": "日",
|
|
15365
|
+
"neptune.DateLookup.goTo20YearView": "切換至20年視圖",
|
|
15366
|
+
"neptune.DateLookup.month": "月",
|
|
15367
|
+
"neptune.DateLookup.next": "下一個",
|
|
15368
|
+
"neptune.DateLookup.previous": "上一個",
|
|
15369
|
+
"neptune.DateLookup.selected": "已選",
|
|
15370
|
+
"neptune.DateLookup.twentyYears": "20年",
|
|
15371
|
+
"neptune.DateLookup.year": "年",
|
|
15372
|
+
"neptune.Link.opensInNewTab": "(在新分頁中開啟)",
|
|
15100
15373
|
"neptune.MoneyInput.Select.placeholder": "選擇一個選項…",
|
|
15101
|
-
"neptune.Pagination.ariaLabel": "分頁導航",
|
|
15102
|
-
"neptune.PaginationLink.ariaLabel.active": "前往第{pageNumber}頁",
|
|
15103
|
-
"neptune.PaginationLink.ariaLabel.inactive": "目前在第{pageNumber}頁",
|
|
15104
15374
|
"neptune.Select.searchPlaceholder": "搜尋…",
|
|
15105
15375
|
"neptune.Summary.statusDone": "已完成事項",
|
|
15106
15376
|
"neptune.Summary.statusNotDone": "未完成事項",
|
|
@@ -15136,23 +15406,25 @@ var zh = {
|
|
|
15136
15406
|
};
|
|
15137
15407
|
|
|
15138
15408
|
const translations = {
|
|
15139
|
-
|
|
15140
|
-
|
|
15141
|
-
|
|
15142
|
-
|
|
15143
|
-
|
|
15144
|
-
|
|
15145
|
-
|
|
15146
|
-
|
|
15147
|
-
|
|
15148
|
-
|
|
15149
|
-
|
|
15150
|
-
|
|
15151
|
-
|
|
15152
|
-
|
|
15153
|
-
|
|
15154
|
-
|
|
15155
|
-
|
|
15156
|
-
|
|
15157
|
-
|
|
15409
|
+
'cs-CZ': cs,
|
|
15410
|
+
'de-DE': de,
|
|
15411
|
+
'en-GB': en,
|
|
15412
|
+
'es-ES': es,
|
|
15413
|
+
'fr-FR': fr,
|
|
15414
|
+
'hu-HU': hu,
|
|
15415
|
+
'id-ID': id,
|
|
15416
|
+
'it-IT': it,
|
|
15417
|
+
'ja-JP': ja,
|
|
15418
|
+
'pl-PL': pl,
|
|
15419
|
+
'pt-BR': pt,
|
|
15420
|
+
'ro-RO': ro,
|
|
15421
|
+
'ru-RU': ru,
|
|
15422
|
+
'th-TH': th,
|
|
15423
|
+
'tr-TR': tr,
|
|
15424
|
+
'uk-UA': uk,
|
|
15425
|
+
'zh-CN': zhCN,
|
|
15426
|
+
'zh-HK': zhHK
|
|
15427
|
+
};
|
|
15428
|
+
|
|
15429
|
+
export { Accordion, ActionButton, ActionOption, Alert$1 as Alert, ArrowPosition as AlertArrowPosition, Avatar, AvatarType, AvatarWrapper, Badge, Card as BaseCard, Body, BottomSheet$2 as BottomSheet, Breakpoint, Button, Card$2 as Card, Checkbox$1 as Checkbox, CheckboxButton$1 as CheckboxButton, CheckboxOption, Chevron$1 as Chevron, Chip, Chips, CircularButton$1 as CircularButton, ControlType, CriticalCommsBanner, DEFAULT_LANG, DEFAULT_LOCALE, DateInput$1 as DateInput, DateLookup$1 as DateLookup, DateMode, Decision$1 as Decision, Presentation as DecisionPresentation, Type as DecisionType, DefinitionList$1 as DefinitionList, Dimmer$1 as Dimmer, Direction, DirectionProvider, Display, Drawer$1 as Drawer, DropFade, DynamicFieldDefinitionList$1 as DynamicFieldDefinitionList, Emphasis, FileType, FlowNavigation, Header, Image, Info, InfoPresentation, InlineAlert, Input, InputGroup, InputWithDisplayFormat$1 as InputWithDisplayFormat, InstructionsList$1 as InstructionsList, LanguageProvider, Layout$1 as Layout, Link, ListItem$1 as ListItem, Loader$1 as Loader, Logo$1 as Logo, LogoType, Markdown$1 as Markdown, MarkdownNodeType, Modal, Money$1 as Money, MoneyInput$1 as MoneyInput, MonthFormat, NavigationOption, NavigationOptionList$1 as NavigationOptionsList, Nudge, Option$2 as Option, OverlayHeader$1 as OverlayHeader, PhoneNumberInput$1 as PhoneNumberInput, Popover$2 as Popover, Position, Priority, ProcessIndicator$1 as ProcessIndicator, ProfileType, Progress, ProgressBar, PromoCard$1 as PromoCard, PromoCard$1 as PromoCardGroup, Provider$1 as Provider, RTL_LANGUAGES, Radio$1 as Radio, RadioGroup$1 as RadioGroup, RadioOption$1 as RadioOption, SUPPORTED_LANGUAGES, Scroll, SearchInput, Section, Select, SelectInput, SelectInputOptionContent, SelectInputTriggerButton, Sentiment, Size, SlidingPanel$1 as SlidingPanel, SnackbarConsumer, SnackbarContext, SnackbarPortal, SnackbarProvider$1 as SnackbarProvider, Status, StatusIcon, Stepper, Sticky$1 as Sticky, Summary, Switch, SwitchOption, Tabs$1 as Tabs, TextArea, TextareaWithDisplayFormat$1 as TextareaWithDisplayFormat, Theme, Title, Tooltip$1 as Tooltip, Type$1 as Type, Typeahead, Typography, Upload$1 as Upload, UploadInput, UploadStep, Variant, Width, adjustLocale, getCountryFromLocale, getDirectionFromLocale, getSupportedLangFromLocale, isBrowser, isServerSide, translations, useDirection, useLayout, useSnackbar };
|
|
15158
15430
|
//# sourceMappingURL=index.esm.js.map
|