@trackunit/react-date-and-time-components 1.4.13 → 1.4.15
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/index.cjs.js +2 -2
- package/index.esm.js +2 -2
- package/package.json +1 -1
- package/translation.cjs.js +9 -9
- package/translation.cjs10.js +8 -8
- package/translation.cjs15.js +8 -8
- package/translation.cjs2.js +3 -3
- package/translation.cjs4.js +7 -7
- package/translation.cjs5.js +1 -1
- package/translation.cjs6.js +8 -8
- package/translation.cjs7.js +8 -8
- package/translation.cjs8.js +6 -6
- package/translation.esm.js +9 -9
- package/translation.esm10.js +8 -8
- package/translation.esm15.js +8 -8
- package/translation.esm2.js +3 -3
- package/translation.esm4.js +7 -7
- package/translation.esm5.js +1 -1
- package/translation.esm6.js +8 -8
- package/translation.esm7.js +8 -8
- package/translation.esm8.js +6 -6
package/index.cjs.js
CHANGED
|
@@ -179,7 +179,7 @@ const DayRangePicker = ({ onRangeSelect, selectedDays, disabledDays, dataTestId,
|
|
|
179
179
|
onRangeSelect && onRangeSelect(newRange);
|
|
180
180
|
onClose && onClose();
|
|
181
181
|
}, [onRangeSelect, newRange, onClose]);
|
|
182
|
-
return (jsxRuntime.jsxs("div", { className: "flex w-min flex-col gap-4 p-2", "data-testid": dataTestId, children: [jsxRuntime.jsx(Calendar, {
|
|
182
|
+
return (jsxRuntime.jsxs("div", { className: "flex w-min flex-col gap-4 p-2", "data-testid": dataTestId, children: [jsxRuntime.jsx(Calendar, { allowPartialRange: true, className: tailwindMerge.twMerge("custom-day-picker", "range-picker", className, "p-0"), locale: language, onChange: value => {
|
|
183
183
|
if (Array.isArray(value) && value[0] && value[1]) {
|
|
184
184
|
handleOnRangeSelect({ start: value[0], end: value[1] });
|
|
185
185
|
}
|
|
@@ -213,7 +213,7 @@ const DayRangePicker = ({ onRangeSelect, selectedDays, disabledDays, dataTestId,
|
|
|
213
213
|
}, value:
|
|
214
214
|
// type is wrong here if we add array of 2 elements if end is undefined and set to null it will not highlight the start date
|
|
215
215
|
// eslint-disable-next-line local-rules/no-typescript-assertion, @typescript-eslint/no-explicit-any
|
|
216
|
-
newRange.end ? [newRange.start ?? null, newRange.end ?? null] : (newRange.start ?? null) }), jsxRuntime.jsxs("div", { className: "flex w-full gap-2", children: [jsxRuntime.jsx(reactComponents.Button, { className: "mr-auto", dataTestId: "range-popover-clear-button", onClick: clearSelectedDays, variant: "secondary", children: t("layout.actions.clear") }), jsxRuntime.jsx(reactComponents.Button, { dataTestId: "range-popover-cancel-button", onClick: () => handleCancel(), variant: "ghost-neutral", children: cancelButtonLabel ? cancelButtonLabel : t("layout.actions.cancel") }), jsxRuntime.jsx(reactComponents.Button, { dataTestId: "range-popover-apply-button", disabled: !newRange.start || !newRange.end, onClick: () => handleApply(), children: t("layout.actions.apply") })] })] }));
|
|
216
|
+
newRange.end ? [newRange.start ?? null, newRange.end ?? null] : (newRange.start ?? null) }), jsxRuntime.jsx("hr", {}), jsxRuntime.jsxs("div", { className: "flex w-full gap-2", children: [jsxRuntime.jsx(reactComponents.Button, { className: "mr-auto", dataTestId: "range-popover-clear-button", onClick: clearSelectedDays, variant: "secondary", children: t("layout.actions.clear") }), jsxRuntime.jsx(reactComponents.Button, { dataTestId: "range-popover-cancel-button", onClick: () => handleCancel(), variant: "ghost-neutral", children: cancelButtonLabel ? cancelButtonLabel : t("layout.actions.cancel") }), jsxRuntime.jsx(reactComponents.Button, { dataTestId: "range-popover-apply-button", disabled: !newRange.start || !newRange.end, onClick: () => handleApply(), children: t("layout.actions.apply") })] })] }));
|
|
217
217
|
};
|
|
218
218
|
|
|
219
219
|
const temporalArithmeticTypeMapping = {
|
package/index.esm.js
CHANGED
|
@@ -177,7 +177,7 @@ const DayRangePicker = ({ onRangeSelect, selectedDays, disabledDays, dataTestId,
|
|
|
177
177
|
onRangeSelect && onRangeSelect(newRange);
|
|
178
178
|
onClose && onClose();
|
|
179
179
|
}, [onRangeSelect, newRange, onClose]);
|
|
180
|
-
return (jsxs("div", { className: "flex w-min flex-col gap-4 p-2", "data-testid": dataTestId, children: [jsx(Calendar, {
|
|
180
|
+
return (jsxs("div", { className: "flex w-min flex-col gap-4 p-2", "data-testid": dataTestId, children: [jsx(Calendar, { allowPartialRange: true, className: twMerge("custom-day-picker", "range-picker", className, "p-0"), locale: language, onChange: value => {
|
|
181
181
|
if (Array.isArray(value) && value[0] && value[1]) {
|
|
182
182
|
handleOnRangeSelect({ start: value[0], end: value[1] });
|
|
183
183
|
}
|
|
@@ -211,7 +211,7 @@ const DayRangePicker = ({ onRangeSelect, selectedDays, disabledDays, dataTestId,
|
|
|
211
211
|
}, value:
|
|
212
212
|
// type is wrong here if we add array of 2 elements if end is undefined and set to null it will not highlight the start date
|
|
213
213
|
// eslint-disable-next-line local-rules/no-typescript-assertion, @typescript-eslint/no-explicit-any
|
|
214
|
-
newRange.end ? [newRange.start ?? null, newRange.end ?? null] : (newRange.start ?? null) }), jsxs("div", { className: "flex w-full gap-2", children: [jsx(Button, { className: "mr-auto", dataTestId: "range-popover-clear-button", onClick: clearSelectedDays, variant: "secondary", children: t("layout.actions.clear") }), jsx(Button, { dataTestId: "range-popover-cancel-button", onClick: () => handleCancel(), variant: "ghost-neutral", children: cancelButtonLabel ? cancelButtonLabel : t("layout.actions.cancel") }), jsx(Button, { dataTestId: "range-popover-apply-button", disabled: !newRange.start || !newRange.end, onClick: () => handleApply(), children: t("layout.actions.apply") })] })] }));
|
|
214
|
+
newRange.end ? [newRange.start ?? null, newRange.end ?? null] : (newRange.start ?? null) }), jsx("hr", {}), jsxs("div", { className: "flex w-full gap-2", children: [jsx(Button, { className: "mr-auto", dataTestId: "range-popover-clear-button", onClick: clearSelectedDays, variant: "secondary", children: t("layout.actions.clear") }), jsx(Button, { dataTestId: "range-popover-cancel-button", onClick: () => handleCancel(), variant: "ghost-neutral", children: cancelButtonLabel ? cancelButtonLabel : t("layout.actions.cancel") }), jsx(Button, { dataTestId: "range-popover-apply-button", disabled: !newRange.start || !newRange.end, onClick: () => handleApply(), children: t("layout.actions.apply") })] })] }));
|
|
215
215
|
};
|
|
216
216
|
|
|
217
217
|
const temporalArithmeticTypeMapping = {
|
package/package.json
CHANGED
package/translation.cjs.js
CHANGED
|
@@ -3,15 +3,15 @@
|
|
|
3
3
|
var translation = {
|
|
4
4
|
"dateTime.instant.now": "Now",
|
|
5
5
|
"input.combined": "{{direction}} {{count}} {{unit}}",
|
|
6
|
-
"input.direction.last": "
|
|
7
|
-
"input.direction.next": "
|
|
6
|
+
"input.direction.last": "Letzte/r/s",
|
|
7
|
+
"input.direction.next": "Nächste/r/s",
|
|
8
8
|
"input.icon.tooltip.calendar": "Kalender",
|
|
9
|
-
"input.noOptions": "
|
|
10
|
-
"input.placeholder.customRange.last": "
|
|
11
|
-
"input.placeholder.customRange.next": "
|
|
9
|
+
"input.noOptions": "Keine Optionen verfügbar",
|
|
10
|
+
"input.placeholder.customRange.last": "Geben Sie einen Datumsbereich ein (z. B. „Letzte 4 Tage“)",
|
|
11
|
+
"input.placeholder.customRange.next": "Geben Sie einen Datumsbereich ein (z. B. „Nächste 4 Tage“)",
|
|
12
12
|
"input.today": "Heute",
|
|
13
|
-
"input.unit.day": "
|
|
14
|
-
"input.unit.days": "
|
|
13
|
+
"input.unit.day": "Tag",
|
|
14
|
+
"input.unit.days": "Tage",
|
|
15
15
|
"input.unit.month": "monat",
|
|
16
16
|
"input.unit.months": "Monate",
|
|
17
17
|
"input.unit.week": "Woche",
|
|
@@ -31,8 +31,8 @@ var translation = {
|
|
|
31
31
|
"shared.timePeriods.weeks": "{{count}} Woche",
|
|
32
32
|
"shared.timePeriods.weeks_plural": "{{count}} Wochen",
|
|
33
33
|
"timeline.loadMore": "Click for more...",
|
|
34
|
-
"trigger.customRange": "
|
|
35
|
-
"trigger.selectDateRange": "
|
|
34
|
+
"trigger.customRange": "Benutzerdefinierter Datumsbereich",
|
|
35
|
+
"trigger.selectDateRange": "Datumsbereich auswählen"
|
|
36
36
|
};
|
|
37
37
|
|
|
38
38
|
exports.default = translation;
|
package/translation.cjs10.js
CHANGED
|
@@ -3,14 +3,14 @@
|
|
|
3
3
|
var translation = {
|
|
4
4
|
"dateTime.instant.now": "Now",
|
|
5
5
|
"input.combined": "{{direction}} {{count}} {{unit}}",
|
|
6
|
-
"input.direction.last": "
|
|
7
|
-
"input.direction.next": "
|
|
6
|
+
"input.direction.last": "Ostatni(e)",
|
|
7
|
+
"input.direction.next": "Dalej",
|
|
8
8
|
"input.icon.tooltip.calendar": "Kalendarz",
|
|
9
|
-
"input.noOptions": "
|
|
10
|
-
"input.placeholder.customRange.last": "
|
|
11
|
-
"input.placeholder.customRange.next": "
|
|
9
|
+
"input.noOptions": "Brak dostępnych opcji",
|
|
10
|
+
"input.placeholder.customRange.last": "Wpisz zakres dat (np. „Ostatnie 4 dni”)",
|
|
11
|
+
"input.placeholder.customRange.next": "Wpisz zakres dat (np. „Kolejne 4 dni”)",
|
|
12
12
|
"input.today": "Dziś",
|
|
13
|
-
"input.unit.day": "
|
|
13
|
+
"input.unit.day": "dzień",
|
|
14
14
|
"input.unit.days": "dni",
|
|
15
15
|
"input.unit.month": "miesiąc",
|
|
16
16
|
"input.unit.months": "miesiące",
|
|
@@ -31,8 +31,8 @@ var translation = {
|
|
|
31
31
|
"shared.timePeriods.weeks": "{{count}} tydzień",
|
|
32
32
|
"shared.timePeriods.weeks_plural": "{{count}} tygodni(e)",
|
|
33
33
|
"timeline.loadMore": "Click for more...",
|
|
34
|
-
"trigger.customRange": "
|
|
35
|
-
"trigger.selectDateRange": "
|
|
34
|
+
"trigger.customRange": "Własny zakres dat",
|
|
35
|
+
"trigger.selectDateRange": "Wybierz zakres dat"
|
|
36
36
|
};
|
|
37
37
|
|
|
38
38
|
exports.default = translation;
|
package/translation.cjs15.js
CHANGED
|
@@ -3,13 +3,13 @@
|
|
|
3
3
|
var translation = {
|
|
4
4
|
"dateTime.instant.now": "Now",
|
|
5
5
|
"input.combined": "{{direction}} {{count}} {{unit}}",
|
|
6
|
-
"input.direction.last": "
|
|
6
|
+
"input.direction.last": "Senaste",
|
|
7
7
|
"input.direction.next": "Nästa",
|
|
8
8
|
"input.icon.tooltip.calendar": "Kalender",
|
|
9
|
-
"input.noOptions": "
|
|
10
|
-
"input.placeholder.customRange.last": "
|
|
11
|
-
"input.placeholder.customRange.next": "
|
|
12
|
-
"input.today": "
|
|
9
|
+
"input.noOptions": "Inga tillgängliga alternativ",
|
|
10
|
+
"input.placeholder.customRange.last": "Skriv in ett datumintervall (t.ex., ”senaste 4 dagarna”)",
|
|
11
|
+
"input.placeholder.customRange.next": "Skriv in ett datumintervall (t.ex., ”kommande 4 dagar”)",
|
|
12
|
+
"input.today": "Idag",
|
|
13
13
|
"input.unit.day": "dag",
|
|
14
14
|
"input.unit.days": "dagar",
|
|
15
15
|
"input.unit.month": "månad",
|
|
@@ -20,7 +20,7 @@ var translation = {
|
|
|
20
20
|
"layout.actions.back": "Tillbaka",
|
|
21
21
|
"layout.actions.cancel": "Avbryt",
|
|
22
22
|
"layout.actions.clear": "Rensa",
|
|
23
|
-
"layout.actions.reset": "
|
|
23
|
+
"layout.actions.reset": "Återställ",
|
|
24
24
|
"shared.timePeriods.days": "{{count}} dag",
|
|
25
25
|
"shared.timePeriods.days_plural": "{{count}} dagar",
|
|
26
26
|
"shared.timePeriods.hours": "{{count}} timme",
|
|
@@ -31,8 +31,8 @@ var translation = {
|
|
|
31
31
|
"shared.timePeriods.weeks": "{{count}} vecka",
|
|
32
32
|
"shared.timePeriods.weeks_plural": "{{count}} veckor",
|
|
33
33
|
"timeline.loadMore": "Click for more...",
|
|
34
|
-
"trigger.customRange": "
|
|
35
|
-
"trigger.selectDateRange": "
|
|
34
|
+
"trigger.customRange": "Anpassat datumintervall",
|
|
35
|
+
"trigger.selectDateRange": "Välj datumintervall"
|
|
36
36
|
};
|
|
37
37
|
|
|
38
38
|
exports.default = translation;
|
package/translation.cjs2.js
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
var translation = {
|
|
4
4
|
"dateTime.instant.now": "Now",
|
|
5
5
|
"input.combined": "{{direction}} {{count}} {{unit}}",
|
|
6
|
-
"input.direction.last": "
|
|
6
|
+
"input.direction.last": "Seneste",
|
|
7
7
|
"input.direction.next": "Næste",
|
|
8
8
|
"input.icon.tooltip.calendar": "Kalender",
|
|
9
9
|
"input.noOptions": "Ingen valgmuligheder tilgængelige",
|
|
@@ -31,8 +31,8 @@ var translation = {
|
|
|
31
31
|
"shared.timePeriods.weeks": "{{count}} uge",
|
|
32
32
|
"shared.timePeriods.weeks_plural": "{{count}} uger",
|
|
33
33
|
"timeline.loadMore": "Click for more...",
|
|
34
|
-
"trigger.customRange": "
|
|
35
|
-
"trigger.selectDateRange": "
|
|
34
|
+
"trigger.customRange": "Brugerdefineret datointerval",
|
|
35
|
+
"trigger.selectDateRange": "Vælg datointerval"
|
|
36
36
|
};
|
|
37
37
|
|
|
38
38
|
exports.default = translation;
|
package/translation.cjs4.js
CHANGED
|
@@ -3,14 +3,14 @@
|
|
|
3
3
|
var translation = {
|
|
4
4
|
"dateTime.instant.now": "Now",
|
|
5
5
|
"input.combined": "{{direction}} {{count}} {{unit}}",
|
|
6
|
-
"input.direction.last": "
|
|
6
|
+
"input.direction.last": "Laatste",
|
|
7
7
|
"input.direction.next": "Volgende",
|
|
8
8
|
"input.icon.tooltip.calendar": "Kalender",
|
|
9
|
-
"input.noOptions": "
|
|
10
|
-
"input.placeholder.customRange.last": "
|
|
11
|
-
"input.placeholder.customRange.next": "
|
|
9
|
+
"input.noOptions": "Geen opties beschikbaar",
|
|
10
|
+
"input.placeholder.customRange.last": "Typ een datumbereik (bv. 'Laatste 4 dagen')",
|
|
11
|
+
"input.placeholder.customRange.next": "Typ een datumbereik (bv. 'Volgende 4 dagen')",
|
|
12
12
|
"input.today": "Vandaag",
|
|
13
|
-
"input.unit.day": "
|
|
13
|
+
"input.unit.day": "dag",
|
|
14
14
|
"input.unit.days": "dagen",
|
|
15
15
|
"input.unit.month": "maand",
|
|
16
16
|
"input.unit.months": "maanden",
|
|
@@ -31,8 +31,8 @@ var translation = {
|
|
|
31
31
|
"shared.timePeriods.weeks": "{{count}} week",
|
|
32
32
|
"shared.timePeriods.weeks_plural": "{{count}} weken",
|
|
33
33
|
"timeline.loadMore": "Click for more...",
|
|
34
|
-
"trigger.customRange": "
|
|
35
|
-
"trigger.selectDateRange": "
|
|
34
|
+
"trigger.customRange": "Aangepast datumbereik",
|
|
35
|
+
"trigger.selectDateRange": "Selecteer datumbereik"
|
|
36
36
|
};
|
|
37
37
|
|
|
38
38
|
exports.default = translation;
|
package/translation.cjs5.js
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
var translation = {
|
|
4
4
|
"dateTime.instant.now": "Now",
|
|
5
5
|
"input.combined": "{{direction}} {{count}} {{unit}}",
|
|
6
|
-
"input.direction.last": "
|
|
6
|
+
"input.direction.last": "Dernier·ère·s",
|
|
7
7
|
"input.direction.next": "Suivant",
|
|
8
8
|
"input.icon.tooltip.calendar": "Calendrier",
|
|
9
9
|
"input.noOptions": "Aucune option disponible",
|
package/translation.cjs6.js
CHANGED
|
@@ -3,15 +3,15 @@
|
|
|
3
3
|
var translation = {
|
|
4
4
|
"dateTime.instant.now": "Now",
|
|
5
5
|
"input.combined": "{{direction}} {{count}} {{unit}}",
|
|
6
|
-
"input.direction.last": "
|
|
6
|
+
"input.direction.last": "Viimeiset",
|
|
7
7
|
"input.direction.next": "Seuraava",
|
|
8
8
|
"input.icon.tooltip.calendar": "Kalenteri",
|
|
9
|
-
"input.noOptions": "
|
|
10
|
-
"input.placeholder.customRange.last": "
|
|
11
|
-
"input.placeholder.customRange.next": "
|
|
9
|
+
"input.noOptions": "Vaihtoehtoja ei saatavilla",
|
|
10
|
+
"input.placeholder.customRange.last": "Kirjoita aikaväli (esim. “Viimeiset 4 päivää”)",
|
|
11
|
+
"input.placeholder.customRange.next": "Kirjoita aikaväli (esim. “Seuraavat 4 päivää”)",
|
|
12
12
|
"input.today": "Tänään",
|
|
13
|
-
"input.unit.day": "
|
|
14
|
-
"input.unit.days": "
|
|
13
|
+
"input.unit.day": "päivä",
|
|
14
|
+
"input.unit.days": "päivää",
|
|
15
15
|
"input.unit.month": "kuukausi",
|
|
16
16
|
"input.unit.months": "kuukautta",
|
|
17
17
|
"input.unit.week": "viikko",
|
|
@@ -31,8 +31,8 @@ var translation = {
|
|
|
31
31
|
"shared.timePeriods.weeks": "{{count}} viikko",
|
|
32
32
|
"shared.timePeriods.weeks_plural": "{{count}} viikkoa",
|
|
33
33
|
"timeline.loadMore": "Click for more...",
|
|
34
|
-
"trigger.customRange": "
|
|
35
|
-
"trigger.selectDateRange": "
|
|
34
|
+
"trigger.customRange": "Mukautettu aikaväli",
|
|
35
|
+
"trigger.selectDateRange": "Valitse aikaväli"
|
|
36
36
|
};
|
|
37
37
|
|
|
38
38
|
exports.default = translation;
|
package/translation.cjs7.js
CHANGED
|
@@ -3,15 +3,15 @@
|
|
|
3
3
|
var translation = {
|
|
4
4
|
"dateTime.instant.now": "Now",
|
|
5
5
|
"input.combined": "{{direction}} {{count}} {{unit}}",
|
|
6
|
-
"input.direction.last": "
|
|
6
|
+
"input.direction.last": "Elmúlt",
|
|
7
7
|
"input.direction.next": "Következő",
|
|
8
8
|
"input.icon.tooltip.calendar": "Naptár",
|
|
9
|
-
"input.noOptions": "
|
|
10
|
-
"input.placeholder.customRange.last": "
|
|
11
|
-
"input.placeholder.customRange.next": "
|
|
9
|
+
"input.noOptions": "Nincs elérhető lehetőség",
|
|
10
|
+
"input.placeholder.customRange.last": "Írjon be egy dátumtartományt (pl. „Elmúlt 4 nap”)",
|
|
11
|
+
"input.placeholder.customRange.next": "Írjon be egy dátumtartományt (pl. „Következő 4 nap”)",
|
|
12
12
|
"input.today": "Ma",
|
|
13
|
-
"input.unit.day": "
|
|
14
|
-
"input.unit.days": "
|
|
13
|
+
"input.unit.day": "nap",
|
|
14
|
+
"input.unit.days": "nap",
|
|
15
15
|
"input.unit.month": "hónap",
|
|
16
16
|
"input.unit.months": "hónap",
|
|
17
17
|
"input.unit.week": "hét",
|
|
@@ -31,8 +31,8 @@ var translation = {
|
|
|
31
31
|
"shared.timePeriods.weeks": "{{count}} hét",
|
|
32
32
|
"shared.timePeriods.weeks_plural": "{{count}} hét",
|
|
33
33
|
"timeline.loadMore": "Click for more...",
|
|
34
|
-
"trigger.customRange": "
|
|
35
|
-
"trigger.selectDateRange": "
|
|
34
|
+
"trigger.customRange": "Egyéni dátumtartomány",
|
|
35
|
+
"trigger.selectDateRange": "Válasszon ki egy dátumtartományt"
|
|
36
36
|
};
|
|
37
37
|
|
|
38
38
|
exports.default = translation;
|
package/translation.cjs8.js
CHANGED
|
@@ -3,12 +3,12 @@
|
|
|
3
3
|
var translation = {
|
|
4
4
|
"dateTime.instant.now": "Now",
|
|
5
5
|
"input.combined": "{{direction}} {{count}} {{unit}}",
|
|
6
|
-
"input.direction.last": "
|
|
6
|
+
"input.direction.last": "Ultimo/i",
|
|
7
7
|
"input.direction.next": "Avanti",
|
|
8
8
|
"input.icon.tooltip.calendar": "Calendario",
|
|
9
|
-
"input.noOptions": "
|
|
10
|
-
"input.placeholder.customRange.last": "
|
|
11
|
-
"input.placeholder.customRange.next": "
|
|
9
|
+
"input.noOptions": "Nessuna opzione disponibile",
|
|
10
|
+
"input.placeholder.customRange.last": "Inserisci un intervallo di date (es. “Ultimi 4 giorni”)",
|
|
11
|
+
"input.placeholder.customRange.next": "Inserisci un intervallo di date (es. “Prossimi 4 giorni”)",
|
|
12
12
|
"input.today": "Oggi",
|
|
13
13
|
"input.unit.day": "giorno",
|
|
14
14
|
"input.unit.days": "giorni",
|
|
@@ -31,8 +31,8 @@ var translation = {
|
|
|
31
31
|
"shared.timePeriods.weeks": "{{count}} settimana",
|
|
32
32
|
"shared.timePeriods.weeks_plural": "{{count}} settimane",
|
|
33
33
|
"timeline.loadMore": "Click for more...",
|
|
34
|
-
"trigger.customRange": "
|
|
35
|
-
"trigger.selectDateRange": "
|
|
34
|
+
"trigger.customRange": "Intervallo di date personalizzato",
|
|
35
|
+
"trigger.selectDateRange": "Seleziona intervallo di date"
|
|
36
36
|
};
|
|
37
37
|
|
|
38
38
|
exports.default = translation;
|
package/translation.esm.js
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
var translation = {
|
|
2
2
|
"dateTime.instant.now": "Now",
|
|
3
3
|
"input.combined": "{{direction}} {{count}} {{unit}}",
|
|
4
|
-
"input.direction.last": "
|
|
5
|
-
"input.direction.next": "
|
|
4
|
+
"input.direction.last": "Letzte/r/s",
|
|
5
|
+
"input.direction.next": "Nächste/r/s",
|
|
6
6
|
"input.icon.tooltip.calendar": "Kalender",
|
|
7
|
-
"input.noOptions": "
|
|
8
|
-
"input.placeholder.customRange.last": "
|
|
9
|
-
"input.placeholder.customRange.next": "
|
|
7
|
+
"input.noOptions": "Keine Optionen verfügbar",
|
|
8
|
+
"input.placeholder.customRange.last": "Geben Sie einen Datumsbereich ein (z. B. „Letzte 4 Tage“)",
|
|
9
|
+
"input.placeholder.customRange.next": "Geben Sie einen Datumsbereich ein (z. B. „Nächste 4 Tage“)",
|
|
10
10
|
"input.today": "Heute",
|
|
11
|
-
"input.unit.day": "
|
|
12
|
-
"input.unit.days": "
|
|
11
|
+
"input.unit.day": "Tag",
|
|
12
|
+
"input.unit.days": "Tage",
|
|
13
13
|
"input.unit.month": "monat",
|
|
14
14
|
"input.unit.months": "Monate",
|
|
15
15
|
"input.unit.week": "Woche",
|
|
@@ -29,8 +29,8 @@ var translation = {
|
|
|
29
29
|
"shared.timePeriods.weeks": "{{count}} Woche",
|
|
30
30
|
"shared.timePeriods.weeks_plural": "{{count}} Wochen",
|
|
31
31
|
"timeline.loadMore": "Click for more...",
|
|
32
|
-
"trigger.customRange": "
|
|
33
|
-
"trigger.selectDateRange": "
|
|
32
|
+
"trigger.customRange": "Benutzerdefinierter Datumsbereich",
|
|
33
|
+
"trigger.selectDateRange": "Datumsbereich auswählen"
|
|
34
34
|
};
|
|
35
35
|
|
|
36
36
|
export { translation as default };
|
package/translation.esm10.js
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
var translation = {
|
|
2
2
|
"dateTime.instant.now": "Now",
|
|
3
3
|
"input.combined": "{{direction}} {{count}} {{unit}}",
|
|
4
|
-
"input.direction.last": "
|
|
5
|
-
"input.direction.next": "
|
|
4
|
+
"input.direction.last": "Ostatni(e)",
|
|
5
|
+
"input.direction.next": "Dalej",
|
|
6
6
|
"input.icon.tooltip.calendar": "Kalendarz",
|
|
7
|
-
"input.noOptions": "
|
|
8
|
-
"input.placeholder.customRange.last": "
|
|
9
|
-
"input.placeholder.customRange.next": "
|
|
7
|
+
"input.noOptions": "Brak dostępnych opcji",
|
|
8
|
+
"input.placeholder.customRange.last": "Wpisz zakres dat (np. „Ostatnie 4 dni”)",
|
|
9
|
+
"input.placeholder.customRange.next": "Wpisz zakres dat (np. „Kolejne 4 dni”)",
|
|
10
10
|
"input.today": "Dziś",
|
|
11
|
-
"input.unit.day": "
|
|
11
|
+
"input.unit.day": "dzień",
|
|
12
12
|
"input.unit.days": "dni",
|
|
13
13
|
"input.unit.month": "miesiąc",
|
|
14
14
|
"input.unit.months": "miesiące",
|
|
@@ -29,8 +29,8 @@ var translation = {
|
|
|
29
29
|
"shared.timePeriods.weeks": "{{count}} tydzień",
|
|
30
30
|
"shared.timePeriods.weeks_plural": "{{count}} tygodni(e)",
|
|
31
31
|
"timeline.loadMore": "Click for more...",
|
|
32
|
-
"trigger.customRange": "
|
|
33
|
-
"trigger.selectDateRange": "
|
|
32
|
+
"trigger.customRange": "Własny zakres dat",
|
|
33
|
+
"trigger.selectDateRange": "Wybierz zakres dat"
|
|
34
34
|
};
|
|
35
35
|
|
|
36
36
|
export { translation as default };
|
package/translation.esm15.js
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
var translation = {
|
|
2
2
|
"dateTime.instant.now": "Now",
|
|
3
3
|
"input.combined": "{{direction}} {{count}} {{unit}}",
|
|
4
|
-
"input.direction.last": "
|
|
4
|
+
"input.direction.last": "Senaste",
|
|
5
5
|
"input.direction.next": "Nästa",
|
|
6
6
|
"input.icon.tooltip.calendar": "Kalender",
|
|
7
|
-
"input.noOptions": "
|
|
8
|
-
"input.placeholder.customRange.last": "
|
|
9
|
-
"input.placeholder.customRange.next": "
|
|
10
|
-
"input.today": "
|
|
7
|
+
"input.noOptions": "Inga tillgängliga alternativ",
|
|
8
|
+
"input.placeholder.customRange.last": "Skriv in ett datumintervall (t.ex., ”senaste 4 dagarna”)",
|
|
9
|
+
"input.placeholder.customRange.next": "Skriv in ett datumintervall (t.ex., ”kommande 4 dagar”)",
|
|
10
|
+
"input.today": "Idag",
|
|
11
11
|
"input.unit.day": "dag",
|
|
12
12
|
"input.unit.days": "dagar",
|
|
13
13
|
"input.unit.month": "månad",
|
|
@@ -18,7 +18,7 @@ var translation = {
|
|
|
18
18
|
"layout.actions.back": "Tillbaka",
|
|
19
19
|
"layout.actions.cancel": "Avbryt",
|
|
20
20
|
"layout.actions.clear": "Rensa",
|
|
21
|
-
"layout.actions.reset": "
|
|
21
|
+
"layout.actions.reset": "Återställ",
|
|
22
22
|
"shared.timePeriods.days": "{{count}} dag",
|
|
23
23
|
"shared.timePeriods.days_plural": "{{count}} dagar",
|
|
24
24
|
"shared.timePeriods.hours": "{{count}} timme",
|
|
@@ -29,8 +29,8 @@ var translation = {
|
|
|
29
29
|
"shared.timePeriods.weeks": "{{count}} vecka",
|
|
30
30
|
"shared.timePeriods.weeks_plural": "{{count}} veckor",
|
|
31
31
|
"timeline.loadMore": "Click for more...",
|
|
32
|
-
"trigger.customRange": "
|
|
33
|
-
"trigger.selectDateRange": "
|
|
32
|
+
"trigger.customRange": "Anpassat datumintervall",
|
|
33
|
+
"trigger.selectDateRange": "Välj datumintervall"
|
|
34
34
|
};
|
|
35
35
|
|
|
36
36
|
export { translation as default };
|
package/translation.esm2.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
var translation = {
|
|
2
2
|
"dateTime.instant.now": "Now",
|
|
3
3
|
"input.combined": "{{direction}} {{count}} {{unit}}",
|
|
4
|
-
"input.direction.last": "
|
|
4
|
+
"input.direction.last": "Seneste",
|
|
5
5
|
"input.direction.next": "Næste",
|
|
6
6
|
"input.icon.tooltip.calendar": "Kalender",
|
|
7
7
|
"input.noOptions": "Ingen valgmuligheder tilgængelige",
|
|
@@ -29,8 +29,8 @@ var translation = {
|
|
|
29
29
|
"shared.timePeriods.weeks": "{{count}} uge",
|
|
30
30
|
"shared.timePeriods.weeks_plural": "{{count}} uger",
|
|
31
31
|
"timeline.loadMore": "Click for more...",
|
|
32
|
-
"trigger.customRange": "
|
|
33
|
-
"trigger.selectDateRange": "
|
|
32
|
+
"trigger.customRange": "Brugerdefineret datointerval",
|
|
33
|
+
"trigger.selectDateRange": "Vælg datointerval"
|
|
34
34
|
};
|
|
35
35
|
|
|
36
36
|
export { translation as default };
|
package/translation.esm4.js
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
var translation = {
|
|
2
2
|
"dateTime.instant.now": "Now",
|
|
3
3
|
"input.combined": "{{direction}} {{count}} {{unit}}",
|
|
4
|
-
"input.direction.last": "
|
|
4
|
+
"input.direction.last": "Laatste",
|
|
5
5
|
"input.direction.next": "Volgende",
|
|
6
6
|
"input.icon.tooltip.calendar": "Kalender",
|
|
7
|
-
"input.noOptions": "
|
|
8
|
-
"input.placeholder.customRange.last": "
|
|
9
|
-
"input.placeholder.customRange.next": "
|
|
7
|
+
"input.noOptions": "Geen opties beschikbaar",
|
|
8
|
+
"input.placeholder.customRange.last": "Typ een datumbereik (bv. 'Laatste 4 dagen')",
|
|
9
|
+
"input.placeholder.customRange.next": "Typ een datumbereik (bv. 'Volgende 4 dagen')",
|
|
10
10
|
"input.today": "Vandaag",
|
|
11
|
-
"input.unit.day": "
|
|
11
|
+
"input.unit.day": "dag",
|
|
12
12
|
"input.unit.days": "dagen",
|
|
13
13
|
"input.unit.month": "maand",
|
|
14
14
|
"input.unit.months": "maanden",
|
|
@@ -29,8 +29,8 @@ var translation = {
|
|
|
29
29
|
"shared.timePeriods.weeks": "{{count}} week",
|
|
30
30
|
"shared.timePeriods.weeks_plural": "{{count}} weken",
|
|
31
31
|
"timeline.loadMore": "Click for more...",
|
|
32
|
-
"trigger.customRange": "
|
|
33
|
-
"trigger.selectDateRange": "
|
|
32
|
+
"trigger.customRange": "Aangepast datumbereik",
|
|
33
|
+
"trigger.selectDateRange": "Selecteer datumbereik"
|
|
34
34
|
};
|
|
35
35
|
|
|
36
36
|
export { translation as default };
|
package/translation.esm5.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
var translation = {
|
|
2
2
|
"dateTime.instant.now": "Now",
|
|
3
3
|
"input.combined": "{{direction}} {{count}} {{unit}}",
|
|
4
|
-
"input.direction.last": "
|
|
4
|
+
"input.direction.last": "Dernier·ère·s",
|
|
5
5
|
"input.direction.next": "Suivant",
|
|
6
6
|
"input.icon.tooltip.calendar": "Calendrier",
|
|
7
7
|
"input.noOptions": "Aucune option disponible",
|
package/translation.esm6.js
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
var translation = {
|
|
2
2
|
"dateTime.instant.now": "Now",
|
|
3
3
|
"input.combined": "{{direction}} {{count}} {{unit}}",
|
|
4
|
-
"input.direction.last": "
|
|
4
|
+
"input.direction.last": "Viimeiset",
|
|
5
5
|
"input.direction.next": "Seuraava",
|
|
6
6
|
"input.icon.tooltip.calendar": "Kalenteri",
|
|
7
|
-
"input.noOptions": "
|
|
8
|
-
"input.placeholder.customRange.last": "
|
|
9
|
-
"input.placeholder.customRange.next": "
|
|
7
|
+
"input.noOptions": "Vaihtoehtoja ei saatavilla",
|
|
8
|
+
"input.placeholder.customRange.last": "Kirjoita aikaväli (esim. “Viimeiset 4 päivää”)",
|
|
9
|
+
"input.placeholder.customRange.next": "Kirjoita aikaväli (esim. “Seuraavat 4 päivää”)",
|
|
10
10
|
"input.today": "Tänään",
|
|
11
|
-
"input.unit.day": "
|
|
12
|
-
"input.unit.days": "
|
|
11
|
+
"input.unit.day": "päivä",
|
|
12
|
+
"input.unit.days": "päivää",
|
|
13
13
|
"input.unit.month": "kuukausi",
|
|
14
14
|
"input.unit.months": "kuukautta",
|
|
15
15
|
"input.unit.week": "viikko",
|
|
@@ -29,8 +29,8 @@ var translation = {
|
|
|
29
29
|
"shared.timePeriods.weeks": "{{count}} viikko",
|
|
30
30
|
"shared.timePeriods.weeks_plural": "{{count}} viikkoa",
|
|
31
31
|
"timeline.loadMore": "Click for more...",
|
|
32
|
-
"trigger.customRange": "
|
|
33
|
-
"trigger.selectDateRange": "
|
|
32
|
+
"trigger.customRange": "Mukautettu aikaväli",
|
|
33
|
+
"trigger.selectDateRange": "Valitse aikaväli"
|
|
34
34
|
};
|
|
35
35
|
|
|
36
36
|
export { translation as default };
|
package/translation.esm7.js
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
var translation = {
|
|
2
2
|
"dateTime.instant.now": "Now",
|
|
3
3
|
"input.combined": "{{direction}} {{count}} {{unit}}",
|
|
4
|
-
"input.direction.last": "
|
|
4
|
+
"input.direction.last": "Elmúlt",
|
|
5
5
|
"input.direction.next": "Következő",
|
|
6
6
|
"input.icon.tooltip.calendar": "Naptár",
|
|
7
|
-
"input.noOptions": "
|
|
8
|
-
"input.placeholder.customRange.last": "
|
|
9
|
-
"input.placeholder.customRange.next": "
|
|
7
|
+
"input.noOptions": "Nincs elérhető lehetőség",
|
|
8
|
+
"input.placeholder.customRange.last": "Írjon be egy dátumtartományt (pl. „Elmúlt 4 nap”)",
|
|
9
|
+
"input.placeholder.customRange.next": "Írjon be egy dátumtartományt (pl. „Következő 4 nap”)",
|
|
10
10
|
"input.today": "Ma",
|
|
11
|
-
"input.unit.day": "
|
|
12
|
-
"input.unit.days": "
|
|
11
|
+
"input.unit.day": "nap",
|
|
12
|
+
"input.unit.days": "nap",
|
|
13
13
|
"input.unit.month": "hónap",
|
|
14
14
|
"input.unit.months": "hónap",
|
|
15
15
|
"input.unit.week": "hét",
|
|
@@ -29,8 +29,8 @@ var translation = {
|
|
|
29
29
|
"shared.timePeriods.weeks": "{{count}} hét",
|
|
30
30
|
"shared.timePeriods.weeks_plural": "{{count}} hét",
|
|
31
31
|
"timeline.loadMore": "Click for more...",
|
|
32
|
-
"trigger.customRange": "
|
|
33
|
-
"trigger.selectDateRange": "
|
|
32
|
+
"trigger.customRange": "Egyéni dátumtartomány",
|
|
33
|
+
"trigger.selectDateRange": "Válasszon ki egy dátumtartományt"
|
|
34
34
|
};
|
|
35
35
|
|
|
36
36
|
export { translation as default };
|
package/translation.esm8.js
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
var translation = {
|
|
2
2
|
"dateTime.instant.now": "Now",
|
|
3
3
|
"input.combined": "{{direction}} {{count}} {{unit}}",
|
|
4
|
-
"input.direction.last": "
|
|
4
|
+
"input.direction.last": "Ultimo/i",
|
|
5
5
|
"input.direction.next": "Avanti",
|
|
6
6
|
"input.icon.tooltip.calendar": "Calendario",
|
|
7
|
-
"input.noOptions": "
|
|
8
|
-
"input.placeholder.customRange.last": "
|
|
9
|
-
"input.placeholder.customRange.next": "
|
|
7
|
+
"input.noOptions": "Nessuna opzione disponibile",
|
|
8
|
+
"input.placeholder.customRange.last": "Inserisci un intervallo di date (es. “Ultimi 4 giorni”)",
|
|
9
|
+
"input.placeholder.customRange.next": "Inserisci un intervallo di date (es. “Prossimi 4 giorni”)",
|
|
10
10
|
"input.today": "Oggi",
|
|
11
11
|
"input.unit.day": "giorno",
|
|
12
12
|
"input.unit.days": "giorni",
|
|
@@ -29,8 +29,8 @@ var translation = {
|
|
|
29
29
|
"shared.timePeriods.weeks": "{{count}} settimana",
|
|
30
30
|
"shared.timePeriods.weeks_plural": "{{count}} settimane",
|
|
31
31
|
"timeline.loadMore": "Click for more...",
|
|
32
|
-
"trigger.customRange": "
|
|
33
|
-
"trigger.selectDateRange": "
|
|
32
|
+
"trigger.customRange": "Intervallo di date personalizzato",
|
|
33
|
+
"trigger.selectDateRange": "Seleziona intervallo di date"
|
|
34
34
|
};
|
|
35
35
|
|
|
36
36
|
export { translation as default };
|