@transferwise/components 46.10.0 → 46.11.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +14 -1
- package/build/i18n/de.json +1 -0
- package/build/i18n/en.json +1 -0
- package/build/i18n/es.json +1 -0
- package/build/i18n/fr.json +1 -0
- package/build/i18n/hu.json +1 -0
- package/build/i18n/id.json +1 -0
- package/build/i18n/it.json +1 -0
- package/build/i18n/ja.json +1 -0
- package/build/i18n/pl.json +1 -0
- package/build/i18n/pt.json +1 -0
- package/build/i18n/ro.json +1 -0
- package/build/i18n/ru.json +1 -0
- package/build/i18n/th.json +1 -0
- package/build/i18n/tr.json +1 -0
- package/build/i18n/zh-CN.json +1 -0
- package/build/i18n/zh-HK.json +1 -0
- package/build/index.esm.js +56 -33
- package/build/index.esm.js.map +1 -1
- package/build/index.js +56 -33
- package/build/index.js.map +1 -1
- package/build/main.css +6 -0
- package/build/mocks.esm.js +40 -0
- package/build/mocks.esm.js.map +1 -0
- package/build/mocks.js +43 -0
- package/build/mocks.js.map +1 -0
- package/build/styles/drawer/Drawer.css +3 -0
- package/build/styles/main.css +6 -0
- package/build/styles/modal/Modal.css +3 -0
- package/build/types/mocks.d.ts +9 -0
- package/build/types/mocks.d.ts.map +1 -0
- package/build/types/phoneNumberInput/PhoneNumberInput.d.ts.map +1 -1
- package/build/types/phoneNumberInput/PhoneNumberInput.messages.d.ts +8 -0
- package/build/types/phoneNumberInput/PhoneNumberInput.messages.d.ts.map +1 -0
- package/build/types/test-utils/window-mock.d.ts.map +1 -1
- package/package.json +22 -6
- package/src/dimmer/Dimmer.spec.js +0 -4
- package/src/drawer/Drawer.css +3 -0
- package/src/drawer/Drawer.less +4 -0
- package/src/i18n/de.json +1 -0
- package/src/i18n/en.json +1 -0
- package/src/i18n/es.json +1 -0
- package/src/i18n/fr.json +1 -0
- package/src/i18n/hu.json +1 -0
- package/src/i18n/id.json +1 -0
- package/src/i18n/it.json +1 -0
- package/src/i18n/ja.json +1 -0
- package/src/i18n/pl.json +1 -0
- package/src/i18n/pt.json +1 -0
- package/src/i18n/ro.json +1 -0
- package/src/i18n/ru.json +1 -0
- package/src/i18n/th.json +1 -0
- package/src/i18n/tr.json +1 -0
- package/src/i18n/zh-CN.json +1 -0
- package/src/i18n/zh-HK.json +1 -0
- package/src/inputs/SelectInput.story.tsx +221 -315
- package/src/main.css +6 -0
- package/src/mocks.ts +48 -0
- package/src/modal/Modal.css +3 -0
- package/src/modal/Modal.less +4 -0
- package/src/modal/Modal.story.tsx +55 -21
- package/src/phoneNumberInput/PhoneNumberInput.messages.ts +8 -0
- package/src/phoneNumberInput/PhoneNumberInput.spec.js +12 -7
- package/src/phoneNumberInput/PhoneNumberInput.tsx +3 -2
- package/src/snackbar/Snackbar.spec.js +0 -4
- package/src/test-utils/window-mock.ts +7 -23
- package/src/withNextPortal/withNextPortal.spec.js +0 -4
package/build/index.js
CHANGED
|
@@ -756,7 +756,7 @@ const ActionOption = ({
|
|
|
756
756
|
});
|
|
757
757
|
};
|
|
758
758
|
|
|
759
|
-
var messages$
|
|
759
|
+
var messages$d = reactIntl.defineMessages({
|
|
760
760
|
ariaLabel: {
|
|
761
761
|
id: "neptune.CloseButton.ariaLabel"
|
|
762
762
|
}
|
|
@@ -772,7 +772,7 @@ const CloseButton = /*#__PURE__*/React.forwardRef(function CloseButton({
|
|
|
772
772
|
testId
|
|
773
773
|
}, reference) {
|
|
774
774
|
const intl = reactIntl.useIntl();
|
|
775
|
-
ariaLabel ??= intl.formatMessage(messages$
|
|
775
|
+
ariaLabel ??= intl.formatMessage(messages$d.ariaLabel);
|
|
776
776
|
const Icon = filled ? icons.CrossCircleFill : icons.Cross;
|
|
777
777
|
return /*#__PURE__*/jsxRuntime.jsx("button", {
|
|
778
778
|
ref: reference,
|
|
@@ -792,7 +792,7 @@ const CloseButton = /*#__PURE__*/React.forwardRef(function CloseButton({
|
|
|
792
792
|
});
|
|
793
793
|
});
|
|
794
794
|
|
|
795
|
-
var messages$
|
|
795
|
+
var messages$c = reactIntl.defineMessages({
|
|
796
796
|
opensInNewTab: {
|
|
797
797
|
id: "neptune.Link.opensInNewTab"
|
|
798
798
|
}
|
|
@@ -821,7 +821,7 @@ const Link = ({
|
|
|
821
821
|
onClick: onClick,
|
|
822
822
|
...props,
|
|
823
823
|
children: [children, " ", isBlank && /*#__PURE__*/jsxRuntime.jsx(icons.NavigateAway, {
|
|
824
|
-
title: formatMessage(messages$
|
|
824
|
+
title: formatMessage(messages$c.opensInNewTab)
|
|
825
825
|
})]
|
|
826
826
|
});
|
|
827
827
|
};
|
|
@@ -2251,7 +2251,7 @@ ProcessIndicator.defaultProps = {
|
|
|
2251
2251
|
};
|
|
2252
2252
|
var ProcessIndicator$1 = ProcessIndicator;
|
|
2253
2253
|
|
|
2254
|
-
var messages$
|
|
2254
|
+
var messages$b = reactIntl.defineMessages({
|
|
2255
2255
|
loadingAriaLabel: {
|
|
2256
2256
|
id: "neptune.Button.loadingAriaLabel"
|
|
2257
2257
|
}
|
|
@@ -2370,7 +2370,7 @@ const Button = /*#__PURE__*/React.forwardRef(({
|
|
|
2370
2370
|
className: classes,
|
|
2371
2371
|
...props,
|
|
2372
2372
|
"aria-live": loading ? 'polite' : 'off',
|
|
2373
|
-
"aria-label": loading ? intl.formatMessage(messages$
|
|
2373
|
+
"aria-label": loading ? intl.formatMessage(messages$b.loadingAriaLabel) : rest['aria-label'],
|
|
2374
2374
|
children: [children, loading && /*#__PURE__*/jsxRuntime.jsx(ProcessIndicator$1, {
|
|
2375
2375
|
size: processIndicatorSize(),
|
|
2376
2376
|
className: "btn-loader"
|
|
@@ -2663,7 +2663,7 @@ const Chip = ({
|
|
|
2663
2663
|
}, value);
|
|
2664
2664
|
};
|
|
2665
2665
|
|
|
2666
|
-
var messages$
|
|
2666
|
+
var messages$a = reactIntl.defineMessages({
|
|
2667
2667
|
ariaLabel: {
|
|
2668
2668
|
id: "neptune.Chips.ariaLabel"
|
|
2669
2669
|
}
|
|
@@ -2695,7 +2695,7 @@ const Chips = ({
|
|
|
2695
2695
|
value: chip.value,
|
|
2696
2696
|
label: chip.label,
|
|
2697
2697
|
closeButton: {
|
|
2698
|
-
'aria-label': intl.formatMessage(messages$
|
|
2698
|
+
'aria-label': intl.formatMessage(messages$a.ariaLabel, {
|
|
2699
2699
|
choice: chip.label
|
|
2700
2700
|
})
|
|
2701
2701
|
},
|
|
@@ -2803,7 +2803,7 @@ const validDateObject = dateObject => dateObject instanceof Date && !isNaN(dateO
|
|
|
2803
2803
|
|
|
2804
2804
|
const isMonthAndYearFormat = dateString => validDateString(dateString) && dateString.split('-').length < 3;
|
|
2805
2805
|
|
|
2806
|
-
var messages$
|
|
2806
|
+
var messages$9 = reactIntl.defineMessages({
|
|
2807
2807
|
monthLabel: {
|
|
2808
2808
|
id: "neptune.DateInput.month.label"
|
|
2809
2809
|
},
|
|
@@ -2889,13 +2889,13 @@ const DateInput = ({
|
|
|
2889
2889
|
const [month, setMonth] = React.useState(() => getExplodedDate('month'));
|
|
2890
2890
|
const [year, setYear] = React.useState(() => getExplodedDate('year'));
|
|
2891
2891
|
const [lastBroadcastedValue, setLastBroadcastedValue] = React.useState(getDateObject);
|
|
2892
|
-
dayLabel = dayLabel || formatMessage(messages$
|
|
2893
|
-
monthLabel = monthLabel || formatMessage(messages$
|
|
2894
|
-
yearLabel = yearLabel || formatMessage(messages$
|
|
2892
|
+
dayLabel = dayLabel || formatMessage(messages$9.dayLabel);
|
|
2893
|
+
monthLabel = monthLabel || formatMessage(messages$9.monthLabel);
|
|
2894
|
+
yearLabel = yearLabel || formatMessage(messages$9.yearLabel);
|
|
2895
2895
|
placeholders = {
|
|
2896
|
-
day: placeholders?.day || formatMessage(messages$
|
|
2897
|
-
month: placeholders?.month || formatMessage(messages$
|
|
2898
|
-
year: placeholders?.year || formatMessage(messages$
|
|
2896
|
+
day: placeholders?.day || formatMessage(messages$9.dayPlaceholder),
|
|
2897
|
+
month: placeholders?.month || formatMessage(messages$9.monthLabel),
|
|
2898
|
+
year: placeholders?.year || formatMessage(messages$9.yearPlaceholder)
|
|
2899
2899
|
};
|
|
2900
2900
|
const getDateAsString = date => {
|
|
2901
2901
|
if (!isDateValid(date)) {
|
|
@@ -3404,7 +3404,7 @@ DateTrigger.defaultProps = {
|
|
|
3404
3404
|
};
|
|
3405
3405
|
var DateTrigger$1 = DateTrigger;
|
|
3406
3406
|
|
|
3407
|
-
var messages$
|
|
3407
|
+
var messages$8 = reactIntl.defineMessages({
|
|
3408
3408
|
next: {
|
|
3409
3409
|
id: "neptune.DateLookup.next"
|
|
3410
3410
|
},
|
|
@@ -3450,7 +3450,7 @@ const DateHeader = ({
|
|
|
3450
3450
|
children: /*#__PURE__*/jsxRuntime.jsx("button", {
|
|
3451
3451
|
type: "button",
|
|
3452
3452
|
className: `d-inline-flex ${buttonClasses}`,
|
|
3453
|
-
"aria-label": `${intl.formatMessage(messages$
|
|
3453
|
+
"aria-label": `${intl.formatMessage(messages$8.previous)} ${dateMode}`,
|
|
3454
3454
|
onClick: onPreviousClick,
|
|
3455
3455
|
children: /*#__PURE__*/jsxRuntime.jsx(Chevron, {
|
|
3456
3456
|
orientation: exports.Position.LEFT,
|
|
@@ -3464,7 +3464,7 @@ const DateHeader = ({
|
|
|
3464
3464
|
children: /*#__PURE__*/jsxRuntime.jsx("button", {
|
|
3465
3465
|
type: "button",
|
|
3466
3466
|
className: `tw-date-lookup-header-current ${buttonClasses}`,
|
|
3467
|
-
"aria-label": intl.formatMessage(messages$
|
|
3467
|
+
"aria-label": intl.formatMessage(messages$8.goTo20YearView),
|
|
3468
3468
|
onClick: onLabelClick,
|
|
3469
3469
|
children: label
|
|
3470
3470
|
})
|
|
@@ -3473,7 +3473,7 @@ const DateHeader = ({
|
|
|
3473
3473
|
children: /*#__PURE__*/jsxRuntime.jsx("button", {
|
|
3474
3474
|
type: "button",
|
|
3475
3475
|
className: `d-inline-flex ${buttonClasses}`,
|
|
3476
|
-
"aria-label": `${reactIntl.useIntl().formatMessage(messages$
|
|
3476
|
+
"aria-label": `${reactIntl.useIntl().formatMessage(messages$8.next)} ${dateMode}`,
|
|
3477
3477
|
onClick: onNextClick,
|
|
3478
3478
|
children: /*#__PURE__*/jsxRuntime.jsx(Chevron, {
|
|
3479
3479
|
orientation: exports.Position.RIGHT,
|
|
@@ -3540,7 +3540,7 @@ const TableLink = ({
|
|
|
3540
3540
|
};
|
|
3541
3541
|
const calculateAriaLabel = () => {
|
|
3542
3542
|
if (active) {
|
|
3543
|
-
return `${longTitle || title || ''}, ${intl.formatMessage(messages$
|
|
3543
|
+
return `${longTitle || title || ''}, ${intl.formatMessage(messages$8.selected)} ${intl.formatMessage(messages$8[type])}`;
|
|
3544
3544
|
}
|
|
3545
3545
|
return longTitle || title;
|
|
3546
3546
|
};
|
|
@@ -3757,7 +3757,7 @@ class DayCalendar extends React.PureComponent {
|
|
|
3757
3757
|
month: monthFormat,
|
|
3758
3758
|
year: 'numeric'
|
|
3759
3759
|
}),
|
|
3760
|
-
dateMode: formatMessage(messages$
|
|
3760
|
+
dateMode: formatMessage(messages$8.month),
|
|
3761
3761
|
onLabelClick: onLabelClick,
|
|
3762
3762
|
onPreviousClick: this.selectPreviousMonth,
|
|
3763
3763
|
onNextClick: this.selectNextMonth
|
|
@@ -3903,7 +3903,7 @@ class MonthCalendar extends React.PureComponent {
|
|
|
3903
3903
|
} = this.props;
|
|
3904
3904
|
return /*#__PURE__*/jsxRuntime.jsxs(jsxRuntime.Fragment, {
|
|
3905
3905
|
children: [/*#__PURE__*/jsxRuntime.jsx(DateHeader$1, {
|
|
3906
|
-
dateMode: formatMessage(messages$
|
|
3906
|
+
dateMode: formatMessage(messages$8.year),
|
|
3907
3907
|
label: formatting.formatDate(new Date(viewYear, 0), locale, {
|
|
3908
3908
|
year: 'numeric'
|
|
3909
3909
|
}),
|
|
@@ -4049,7 +4049,7 @@ class YearCalendar extends React.PureComponent {
|
|
|
4049
4049
|
} = this.props;
|
|
4050
4050
|
return /*#__PURE__*/jsxRuntime.jsxs(jsxRuntime.Fragment, {
|
|
4051
4051
|
children: [/*#__PURE__*/jsxRuntime.jsx(DateHeader$1, {
|
|
4052
|
-
dateMode: formatMessage(messages$
|
|
4052
|
+
dateMode: formatMessage(messages$8.twentyYears),
|
|
4053
4053
|
onPreviousClick: this.selectPreviousYears,
|
|
4054
4054
|
onNextClick: this.selectNextYears
|
|
4055
4055
|
}), /*#__PURE__*/jsxRuntime.jsx(YearCalendarTable$1, {
|
|
@@ -5700,7 +5700,7 @@ const Stepper = ({
|
|
|
5700
5700
|
});
|
|
5701
5701
|
};
|
|
5702
5702
|
|
|
5703
|
-
var messages$
|
|
5703
|
+
var messages$7 = reactIntl.defineMessages({
|
|
5704
5704
|
back: {
|
|
5705
5705
|
id: "neptune.FlowNavigation.back"
|
|
5706
5706
|
}
|
|
@@ -5792,7 +5792,7 @@ const FlowNavigation = ({
|
|
|
5792
5792
|
}),
|
|
5793
5793
|
leftContent: /*#__PURE__*/jsxRuntime.jsxs(jsxRuntime.Fragment, {
|
|
5794
5794
|
children: [isSmall && displayGoBack ? /*#__PURE__*/jsxRuntime.jsx(BackButton$1, {
|
|
5795
|
-
"aria-label": intl.formatMessage(messages$
|
|
5795
|
+
"aria-label": intl.formatMessage(messages$7.back),
|
|
5796
5796
|
onClick: onGoBack
|
|
5797
5797
|
}) : /*#__PURE__*/jsxRuntime.jsx("div", {
|
|
5798
5798
|
className: "np-flow-header__left",
|
|
@@ -6100,7 +6100,7 @@ const deprecatedPlacements = {
|
|
|
6100
6100
|
};
|
|
6101
6101
|
var Popover$2 = Popover$1;
|
|
6102
6102
|
|
|
6103
|
-
var messages$
|
|
6103
|
+
var messages$6 = reactIntl.defineMessages({
|
|
6104
6104
|
ariaLabel: {
|
|
6105
6105
|
id: "neptune.Info.ariaLabel"
|
|
6106
6106
|
}
|
|
@@ -6118,7 +6118,7 @@ const Info = ({
|
|
|
6118
6118
|
}) => {
|
|
6119
6119
|
const intl = reactIntl.useIntl();
|
|
6120
6120
|
const [open, setOpen] = React.useState(false);
|
|
6121
|
-
ariaLabel ??= intl.formatMessage(messages$
|
|
6121
|
+
ariaLabel ??= intl.formatMessage(messages$6.ariaLabel);
|
|
6122
6122
|
const isModal = presentation === exports.InfoPresentation.MODAL;
|
|
6123
6123
|
const isSmall = size === exports.Size.SMALL;
|
|
6124
6124
|
const buttonProps = {
|
|
@@ -6404,7 +6404,7 @@ const PolymorphicWithOverrides = /*#__PURE__*/React.forwardRef(function Polymorp
|
|
|
6404
6404
|
});
|
|
6405
6405
|
});
|
|
6406
6406
|
|
|
6407
|
-
var messages$
|
|
6407
|
+
var messages$5 = reactIntl.defineMessages({
|
|
6408
6408
|
noResultsFound: {
|
|
6409
6409
|
id: "neptune.SelectInput.noResultsFound"
|
|
6410
6410
|
}
|
|
@@ -7024,7 +7024,7 @@ function SelectInputOptions({
|
|
|
7024
7024
|
children: [/*#__PURE__*/jsxRuntime.jsx(icons.CrossCircle, {
|
|
7025
7025
|
size: 16,
|
|
7026
7026
|
className: "np-select-input-options-status-icon"
|
|
7027
|
-
}), intl.formatMessage(messages$
|
|
7027
|
+
}), intl.formatMessage(messages$5.noResultsFound)]
|
|
7028
7028
|
}) : null, /*#__PURE__*/jsxRuntime.jsx("div", {
|
|
7029
7029
|
ref: listboxRef,
|
|
7030
7030
|
id: listboxId,
|
|
@@ -7690,7 +7690,7 @@ Money.propTypes = {
|
|
|
7690
7690
|
};
|
|
7691
7691
|
var Money$1 = Money;
|
|
7692
7692
|
|
|
7693
|
-
var messages$
|
|
7693
|
+
var messages$4 = reactIntl.defineMessages({
|
|
7694
7694
|
selectPlaceholder: {
|
|
7695
7695
|
id: "neptune.MoneyInput.Select.placeholder"
|
|
7696
7696
|
}
|
|
@@ -8034,7 +8034,7 @@ class MoneyInput extends React.Component {
|
|
|
8034
8034
|
onClick: this.handleCustomAction,
|
|
8035
8035
|
children: this.props.customActionLabel
|
|
8036
8036
|
}) : undefined,
|
|
8037
|
-
placeholder: this.props.intl.formatMessage(messages$
|
|
8037
|
+
placeholder: this.props.intl.formatMessage(messages$4.selectPlaceholder),
|
|
8038
8038
|
filterable: true,
|
|
8039
8039
|
filterPlaceholder: this.props.searchPlaceholder,
|
|
8040
8040
|
disabled: disabled,
|
|
@@ -8245,6 +8245,12 @@ OverlayHeader.propTypes = {
|
|
|
8245
8245
|
};
|
|
8246
8246
|
var OverlayHeader$1 = OverlayHeader;
|
|
8247
8247
|
|
|
8248
|
+
var messages$3 = reactIntl.defineMessages({
|
|
8249
|
+
selectInputPlaceholder: {
|
|
8250
|
+
id: "neptune.PhoneNumberInput.SelectInput.placeholder"
|
|
8251
|
+
}
|
|
8252
|
+
});
|
|
8253
|
+
|
|
8248
8254
|
const countries = [{
|
|
8249
8255
|
name: 'Afghanistan',
|
|
8250
8256
|
iso2: 'AF',
|
|
@@ -9627,7 +9633,8 @@ const PhoneNumberInput = ({
|
|
|
9627
9633
|
disabledCountries = defaultDisabledCountries
|
|
9628
9634
|
}) => {
|
|
9629
9635
|
const {
|
|
9630
|
-
locale
|
|
9636
|
+
locale,
|
|
9637
|
+
formatMessage
|
|
9631
9638
|
} = reactIntl.useIntl();
|
|
9632
9639
|
const [internalValue, setInternalValue] = React.useState(() => {
|
|
9633
9640
|
const cleanValue = initialValue ? cleanNumber(initialValue) : null;
|
|
@@ -9678,7 +9685,7 @@ const PhoneNumberInput = ({
|
|
|
9678
9685
|
children: [/*#__PURE__*/jsxRuntime.jsx("div", {
|
|
9679
9686
|
className: "tw-telephone__country-select",
|
|
9680
9687
|
children: /*#__PURE__*/jsxRuntime.jsx(SelectInput, {
|
|
9681
|
-
placeholder:
|
|
9688
|
+
placeholder: formatMessage(messages$3.selectInputPlaceholder),
|
|
9682
9689
|
items: [...countriesByPrefix].map(([prefix, countries]) => ({
|
|
9683
9690
|
type: 'option',
|
|
9684
9691
|
value: prefix,
|
|
@@ -10034,6 +10041,7 @@ var en = {
|
|
|
10034
10041
|
"neptune.Info.ariaLabel": "More information",
|
|
10035
10042
|
"neptune.Link.opensInNewTab": "(opens in new tab)",
|
|
10036
10043
|
"neptune.MoneyInput.Select.placeholder": "Select an option...",
|
|
10044
|
+
"neptune.PhoneNumberInput.SelectInput.placeholder": "Select an option...",
|
|
10037
10045
|
"neptune.Select.searchPlaceholder": "Search...",
|
|
10038
10046
|
"neptune.SelectInput.noResultsFound": "No results found",
|
|
10039
10047
|
"neptune.Summary.statusDone": "Item done",
|
|
@@ -14613,6 +14621,7 @@ var de = {
|
|
|
14613
14621
|
"neptune.Info.ariaLabel": "Weitere Informationen",
|
|
14614
14622
|
"neptune.Link.opensInNewTab": "(wird in einem neuen Tab geöffnet)",
|
|
14615
14623
|
"neptune.MoneyInput.Select.placeholder": "Wähle eine der Möglichkeiten aus...",
|
|
14624
|
+
"neptune.PhoneNumberInput.SelectInput.placeholder": "Wähle eine der Möglichkeiten aus...",
|
|
14616
14625
|
"neptune.Select.searchPlaceholder": "Wird gesucht...",
|
|
14617
14626
|
"neptune.SelectInput.noResultsFound": "Keine Ergebnisse gefunden",
|
|
14618
14627
|
"neptune.Summary.statusDone": "Schritt erledigt",
|
|
@@ -14670,6 +14679,7 @@ var es = {
|
|
|
14670
14679
|
"neptune.Info.ariaLabel": "Más información",
|
|
14671
14680
|
"neptune.Link.opensInNewTab": "(se abre en una pestaña nueva)",
|
|
14672
14681
|
"neptune.MoneyInput.Select.placeholder": "Selecciona una opción...",
|
|
14682
|
+
"neptune.PhoneNumberInput.SelectInput.placeholder": "Selecciona una opción...",
|
|
14673
14683
|
"neptune.Select.searchPlaceholder": "Buscar...",
|
|
14674
14684
|
"neptune.SelectInput.noResultsFound": "No se han encontrado resultados",
|
|
14675
14685
|
"neptune.Summary.statusDone": "Apartado listo",
|
|
@@ -14727,6 +14737,7 @@ var fr = {
|
|
|
14727
14737
|
"neptune.Info.ariaLabel": "Plus d'informations",
|
|
14728
14738
|
"neptune.Link.opensInNewTab": "(ouvre dans un nouvel onglet)",
|
|
14729
14739
|
"neptune.MoneyInput.Select.placeholder": "Sélectionner une option...",
|
|
14740
|
+
"neptune.PhoneNumberInput.SelectInput.placeholder": "Sélectionnez une option…",
|
|
14730
14741
|
"neptune.Select.searchPlaceholder": "Recherche...",
|
|
14731
14742
|
"neptune.SelectInput.noResultsFound": "Aucun résultat trouvé",
|
|
14732
14743
|
"neptune.Summary.statusDone": "Validé",
|
|
@@ -14784,6 +14795,7 @@ var hu = {
|
|
|
14784
14795
|
"neptune.Info.ariaLabel": "További információ",
|
|
14785
14796
|
"neptune.Link.opensInNewTab": "(új lapon nyílik meg)",
|
|
14786
14797
|
"neptune.MoneyInput.Select.placeholder": "Válassz ki egy lehetőséget...",
|
|
14798
|
+
"neptune.PhoneNumberInput.SelectInput.placeholder": "Válassz ki egy lehetőséget...",
|
|
14787
14799
|
"neptune.Select.searchPlaceholder": "Keresés...",
|
|
14788
14800
|
"neptune.SelectInput.noResultsFound": "Nincs találat",
|
|
14789
14801
|
"neptune.Summary.statusDone": "Kész",
|
|
@@ -14841,6 +14853,7 @@ var id = {
|
|
|
14841
14853
|
"neptune.Info.ariaLabel": "Informasi lebih lanjut",
|
|
14842
14854
|
"neptune.Link.opensInNewTab": "(terbuka di tab baru)",
|
|
14843
14855
|
"neptune.MoneyInput.Select.placeholder": "Pilih opsi...",
|
|
14856
|
+
"neptune.PhoneNumberInput.SelectInput.placeholder": "Pilih opsi...",
|
|
14844
14857
|
"neptune.Select.searchPlaceholder": "Cari...",
|
|
14845
14858
|
"neptune.SelectInput.noResultsFound": "Hasil tidak ditemukan",
|
|
14846
14859
|
"neptune.Summary.statusDone": "Item selesai",
|
|
@@ -14898,6 +14911,7 @@ var it = {
|
|
|
14898
14911
|
"neptune.Info.ariaLabel": "Maggiori informazioni",
|
|
14899
14912
|
"neptune.Link.opensInNewTab": "(si apre in una nuova scheda)",
|
|
14900
14913
|
"neptune.MoneyInput.Select.placeholder": "Seleziona un'opzione...",
|
|
14914
|
+
"neptune.PhoneNumberInput.SelectInput.placeholder": "Seleziona un'opzione...",
|
|
14901
14915
|
"neptune.Select.searchPlaceholder": "Cerca...",
|
|
14902
14916
|
"neptune.SelectInput.noResultsFound": "Nessun risultato trovato",
|
|
14903
14917
|
"neptune.Summary.statusDone": "Completato",
|
|
@@ -14955,6 +14969,7 @@ var ja = {
|
|
|
14955
14969
|
"neptune.Info.ariaLabel": "詳細",
|
|
14956
14970
|
"neptune.Link.opensInNewTab": "(新しいタブで開きます)",
|
|
14957
14971
|
"neptune.MoneyInput.Select.placeholder": "選択してください...",
|
|
14972
|
+
"neptune.PhoneNumberInput.SelectInput.placeholder": "選択してください…",
|
|
14958
14973
|
"neptune.Select.searchPlaceholder": "検索... ",
|
|
14959
14974
|
"neptune.SelectInput.noResultsFound": "結果が見つかりませんでした",
|
|
14960
14975
|
"neptune.Summary.statusDone": "完了",
|
|
@@ -15012,6 +15027,7 @@ var pl = {
|
|
|
15012
15027
|
"neptune.Info.ariaLabel": "Więcej informacji",
|
|
15013
15028
|
"neptune.Link.opensInNewTab": "(otworzy się w nowej zakładce)",
|
|
15014
15029
|
"neptune.MoneyInput.Select.placeholder": "Wybierz opcję...",
|
|
15030
|
+
"neptune.PhoneNumberInput.SelectInput.placeholder": "Wybierz opcję...",
|
|
15015
15031
|
"neptune.Select.searchPlaceholder": "Wyszukaj...",
|
|
15016
15032
|
"neptune.SelectInput.noResultsFound": "Nie znaleziono wyników",
|
|
15017
15033
|
"neptune.Summary.statusDone": "Czynność wykonana",
|
|
@@ -15069,6 +15085,7 @@ var pt = {
|
|
|
15069
15085
|
"neptune.Info.ariaLabel": "Mais informações",
|
|
15070
15086
|
"neptune.Link.opensInNewTab": "(abre em uma nova aba)",
|
|
15071
15087
|
"neptune.MoneyInput.Select.placeholder": "Escolha uma opção...",
|
|
15088
|
+
"neptune.PhoneNumberInput.SelectInput.placeholder": "Escolha uma opção...",
|
|
15072
15089
|
"neptune.Select.searchPlaceholder": "Buscar...",
|
|
15073
15090
|
"neptune.SelectInput.noResultsFound": "Nenhum resultado encontrado",
|
|
15074
15091
|
"neptune.Summary.statusDone": "Pronto",
|
|
@@ -15126,6 +15143,7 @@ var ro = {
|
|
|
15126
15143
|
"neptune.Info.ariaLabel": "Mai multe informații",
|
|
15127
15144
|
"neptune.Link.opensInNewTab": "(se deschide într-o filă nouă)",
|
|
15128
15145
|
"neptune.MoneyInput.Select.placeholder": "Selectează o opţiune...",
|
|
15146
|
+
"neptune.PhoneNumberInput.SelectInput.placeholder": "Selectează o opțiune...",
|
|
15129
15147
|
"neptune.Select.searchPlaceholder": "Caută...",
|
|
15130
15148
|
"neptune.SelectInput.noResultsFound": "Nu s-a găsit niciun rezultat",
|
|
15131
15149
|
"neptune.Summary.statusDone": "Finalizat",
|
|
@@ -15183,6 +15201,7 @@ var ru = {
|
|
|
15183
15201
|
"neptune.Info.ariaLabel": "Подробнее",
|
|
15184
15202
|
"neptune.Link.opensInNewTab": "(откроется в новой вкладке)",
|
|
15185
15203
|
"neptune.MoneyInput.Select.placeholder": "Выберите вариант...",
|
|
15204
|
+
"neptune.PhoneNumberInput.SelectInput.placeholder": "Выберите вариант...",
|
|
15186
15205
|
"neptune.Select.searchPlaceholder": "Поиск...",
|
|
15187
15206
|
"neptune.SelectInput.noResultsFound": "Ничего не найдено",
|
|
15188
15207
|
"neptune.Summary.statusDone": "Этап завершен",
|
|
@@ -15240,6 +15259,7 @@ var th = {
|
|
|
15240
15259
|
"neptune.Info.ariaLabel": "ข้อมูลเพิ่มเติม",
|
|
15241
15260
|
"neptune.Link.opensInNewTab": "(เปิดในแท็บใหม่)",
|
|
15242
15261
|
"neptune.MoneyInput.Select.placeholder": "เลือกตัวเลือก...",
|
|
15262
|
+
"neptune.PhoneNumberInput.SelectInput.placeholder": "เลือกตัวเลือก...",
|
|
15243
15263
|
"neptune.Select.searchPlaceholder": "ค้นหา...",
|
|
15244
15264
|
"neptune.SelectInput.noResultsFound": "ไม่พบผลลัพธ์",
|
|
15245
15265
|
"neptune.Summary.statusDone": "รายการที่ทำแล้ว",
|
|
@@ -15297,6 +15317,7 @@ var tr = {
|
|
|
15297
15317
|
"neptune.Info.ariaLabel": "Daha fazla bilgi",
|
|
15298
15318
|
"neptune.Link.opensInNewTab": "(yeni sekmede açılır)",
|
|
15299
15319
|
"neptune.MoneyInput.Select.placeholder": "Bir seçenek seçin...",
|
|
15320
|
+
"neptune.PhoneNumberInput.SelectInput.placeholder": "Bir seçenek seçin...",
|
|
15300
15321
|
"neptune.Select.searchPlaceholder": "Ara...",
|
|
15301
15322
|
"neptune.SelectInput.noResultsFound": "Sonuç bulunamadı",
|
|
15302
15323
|
"neptune.Summary.statusDone": "Tamamlanan aşama",
|
|
@@ -15411,6 +15432,7 @@ var zhCN = {
|
|
|
15411
15432
|
"neptune.Info.ariaLabel": "更多信息",
|
|
15412
15433
|
"neptune.Link.opensInNewTab": "(在新标签页中打开)",
|
|
15413
15434
|
"neptune.MoneyInput.Select.placeholder": "请选择...",
|
|
15435
|
+
"neptune.PhoneNumberInput.SelectInput.placeholder": "选择一个选项...",
|
|
15414
15436
|
"neptune.Select.searchPlaceholder": "搜索",
|
|
15415
15437
|
"neptune.SelectInput.noResultsFound": "找不到结果",
|
|
15416
15438
|
"neptune.Summary.statusDone": "已完成",
|
|
@@ -15468,6 +15490,7 @@ var zhHK = {
|
|
|
15468
15490
|
"neptune.Info.ariaLabel": "更多資訊",
|
|
15469
15491
|
"neptune.Link.opensInNewTab": "(在新分頁中開啟)",
|
|
15470
15492
|
"neptune.MoneyInput.Select.placeholder": "選擇一個選項…",
|
|
15493
|
+
"neptune.PhoneNumberInput.SelectInput.placeholder": "選擇其中一項…",
|
|
15471
15494
|
"neptune.Select.searchPlaceholder": "搜尋…",
|
|
15472
15495
|
"neptune.SelectInput.noResultsFound": "找不到任何結果",
|
|
15473
15496
|
"neptune.Summary.statusDone": "已完成事項",
|