@trackunit/react-date-and-time-components 2.4.10 → 2.4.12

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 CHANGED
@@ -29,22 +29,11 @@ var defaultTranslations = {
29
29
  "input.unit.hours": "hours",
30
30
  "input.unit.month": "month",
31
31
  "input.unit.months": "months",
32
- "input.unit.week": "week",
33
- "input.unit.weeks": "weeks",
34
32
  "layout.actions.apply": "Apply",
35
33
  "layout.actions.back": "Back",
36
34
  "layout.actions.cancel": "Cancel",
37
35
  "layout.actions.clear": "Clear",
38
36
  "layout.actions.reset": "Reset",
39
- "shared.timePeriods.days": "{{count}} day",
40
- "shared.timePeriods.days_plural": "{{count}} days",
41
- "shared.timePeriods.hours": "{{count}} hour",
42
- "shared.timePeriods.hours_plural": "{{count}} hours",
43
- "shared.timePeriods.months": "{{count}} month",
44
- "shared.timePeriods.months_plural": "{{count}} months",
45
- "shared.timePeriods.today": "Today",
46
- "shared.timePeriods.weeks": "{{count}} week",
47
- "shared.timePeriods.weeks_plural": "{{count}} weeks",
48
37
  "timeline.loadMore": "Click for more...",
49
38
  "trigger.customRange": "Custom date range",
50
39
  "trigger.selectDateRange": "Select date range"
@@ -635,9 +624,10 @@ const createTemporalPeriodCombinations = ({ direction, count, }) => {
635
624
  * formatCustomDateRangeLabel({ from: new Date("2025-06-16"), to: new Date("2025-06-17") }); // "June 16, 2025 - June 17, 2025"
636
625
  */
637
626
  const formatCustomDateRangeLabel = (dateRange) => {
638
- return (dateAndTimeUtils.formatDateUtil(dateRange.start ?? new Date(), { dateFormat: "medium", selectFormat: "dateOnly" }) +
639
- " - " +
640
- dateAndTimeUtils.formatDateUtil(dateRange.end ?? new Date(), { dateFormat: "medium", selectFormat: "dateOnly" }));
627
+ return `${dateAndTimeUtils.formatDateUtil(dateRange.start ?? new Date(), {
628
+ dateFormat: "medium",
629
+ selectFormat: "dateOnly",
630
+ })} - ${dateAndTimeUtils.formatDateUtil(dateRange.end ?? new Date(), { dateFormat: "medium", selectFormat: "dateOnly" })}`;
641
631
  };
642
632
 
643
633
  const TEMPORAL_UNITS = ["day", "days", "hour", "hours", "month", "months"];
package/index.esm.js CHANGED
@@ -27,22 +27,11 @@ var defaultTranslations = {
27
27
  "input.unit.hours": "hours",
28
28
  "input.unit.month": "month",
29
29
  "input.unit.months": "months",
30
- "input.unit.week": "week",
31
- "input.unit.weeks": "weeks",
32
30
  "layout.actions.apply": "Apply",
33
31
  "layout.actions.back": "Back",
34
32
  "layout.actions.cancel": "Cancel",
35
33
  "layout.actions.clear": "Clear",
36
34
  "layout.actions.reset": "Reset",
37
- "shared.timePeriods.days": "{{count}} day",
38
- "shared.timePeriods.days_plural": "{{count}} days",
39
- "shared.timePeriods.hours": "{{count}} hour",
40
- "shared.timePeriods.hours_plural": "{{count}} hours",
41
- "shared.timePeriods.months": "{{count}} month",
42
- "shared.timePeriods.months_plural": "{{count}} months",
43
- "shared.timePeriods.today": "Today",
44
- "shared.timePeriods.weeks": "{{count}} week",
45
- "shared.timePeriods.weeks_plural": "{{count}} weeks",
46
35
  "timeline.loadMore": "Click for more...",
47
36
  "trigger.customRange": "Custom date range",
48
37
  "trigger.selectDateRange": "Select date range"
@@ -633,9 +622,10 @@ const createTemporalPeriodCombinations = ({ direction, count, }) => {
633
622
  * formatCustomDateRangeLabel({ from: new Date("2025-06-16"), to: new Date("2025-06-17") }); // "June 16, 2025 - June 17, 2025"
634
623
  */
635
624
  const formatCustomDateRangeLabel = (dateRange) => {
636
- return (formatDateUtil(dateRange.start ?? new Date(), { dateFormat: "medium", selectFormat: "dateOnly" }) +
637
- " - " +
638
- formatDateUtil(dateRange.end ?? new Date(), { dateFormat: "medium", selectFormat: "dateOnly" }));
625
+ return `${formatDateUtil(dateRange.start ?? new Date(), {
626
+ dateFormat: "medium",
627
+ selectFormat: "dateOnly",
628
+ })} - ${formatDateUtil(dateRange.end ?? new Date(), { dateFormat: "medium", selectFormat: "dateOnly" })}`;
639
629
  };
640
630
 
641
631
  const TEMPORAL_UNITS = ["day", "days", "hour", "hours", "month", "months"];
package/package.json CHANGED
@@ -1,20 +1,20 @@
1
1
  {
2
2
  "name": "@trackunit/react-date-and-time-components",
3
- "version": "2.4.10",
3
+ "version": "2.4.12",
4
4
  "repository": "https://github.com/Trackunit/manager",
5
5
  "license": "SEE LICENSE IN LICENSE.txt",
6
6
  "engines": {
7
7
  "node": ">=24.x"
8
8
  },
9
9
  "dependencies": {
10
- "@trackunit/react-components": "2.6.5",
11
- "@trackunit/date-and-time-utils": "1.14.5",
12
- "@trackunit/react-date-and-time-hooks": "2.4.10",
13
- "@trackunit/css-class-variance-utilities": "1.14.4",
14
- "@trackunit/ui-icons": "1.14.4",
15
- "@trackunit/shared-utils": "1.16.4",
16
- "@trackunit/i18n-library-translation": "2.3.6",
17
- "@trackunit/react-form-components": "2.4.10",
10
+ "@trackunit/react-components": "2.7.0",
11
+ "@trackunit/date-and-time-utils": "1.14.6",
12
+ "@trackunit/react-date-and-time-hooks": "2.4.11",
13
+ "@trackunit/css-class-variance-utilities": "1.14.5",
14
+ "@trackunit/ui-icons": "1.14.5",
15
+ "@trackunit/shared-utils": "1.16.5",
16
+ "@trackunit/i18n-library-translation": "2.3.7",
17
+ "@trackunit/react-form-components": "2.4.11",
18
18
  "string-ts": "^2.0.0",
19
19
  "tailwind-merge": "^2.0.0",
20
20
  "react-calendar": "^6.0.0"
@@ -14,8 +14,8 @@ export declare const translations: TranslationResource<TranslationKeys>;
14
14
  /**
15
15
  * Local useTranslation for this specific library
16
16
  */
17
- export declare const useTranslation: () => [TransForLibs<"dateTime.instant.now" | "input.combined" | "input.direction.last" | "input.direction.next" | "input.icon.tooltip.calendar" | "input.noOptions" | "input.placeholder.customRange.last" | "input.placeholder.customRange.next" | "input.today" | "input.unit.day" | "input.unit.days" | "input.unit.hour" | "input.unit.hours" | "input.unit.month" | "input.unit.months" | "input.unit.week" | "input.unit.weeks" | "layout.actions.apply" | "layout.actions.back" | "layout.actions.cancel" | "layout.actions.clear" | "layout.actions.reset" | "shared.timePeriods.days" | "shared.timePeriods.days_plural" | "shared.timePeriods.hours" | "shared.timePeriods.hours_plural" | "shared.timePeriods.months" | "shared.timePeriods.months_plural" | "shared.timePeriods.today" | "shared.timePeriods.weeks" | "shared.timePeriods.weeks_plural" | "timeline.loadMore" | "trigger.customRange" | "trigger.selectDateRange">, import("i18next").i18n, boolean] & {
18
- t: TransForLibs<"dateTime.instant.now" | "input.combined" | "input.direction.last" | "input.direction.next" | "input.icon.tooltip.calendar" | "input.noOptions" | "input.placeholder.customRange.last" | "input.placeholder.customRange.next" | "input.today" | "input.unit.day" | "input.unit.days" | "input.unit.hour" | "input.unit.hours" | "input.unit.month" | "input.unit.months" | "input.unit.week" | "input.unit.weeks" | "layout.actions.apply" | "layout.actions.back" | "layout.actions.cancel" | "layout.actions.clear" | "layout.actions.reset" | "shared.timePeriods.days" | "shared.timePeriods.days_plural" | "shared.timePeriods.hours" | "shared.timePeriods.hours_plural" | "shared.timePeriods.months" | "shared.timePeriods.months_plural" | "shared.timePeriods.today" | "shared.timePeriods.weeks" | "shared.timePeriods.weeks_plural" | "timeline.loadMore" | "trigger.customRange" | "trigger.selectDateRange">;
17
+ export declare const useTranslation: () => [TransForLibs<"dateTime.instant.now" | "input.combined" | "input.direction.last" | "input.direction.next" | "input.icon.tooltip.calendar" | "input.noOptions" | "input.placeholder.customRange.last" | "input.placeholder.customRange.next" | "input.today" | "input.unit.day" | "input.unit.days" | "input.unit.hour" | "input.unit.hours" | "input.unit.month" | "input.unit.months" | "layout.actions.apply" | "layout.actions.back" | "layout.actions.cancel" | "layout.actions.clear" | "layout.actions.reset" | "timeline.loadMore" | "trigger.customRange" | "trigger.selectDateRange">, import("i18next").i18n, boolean] & {
18
+ t: TransForLibs<"dateTime.instant.now" | "input.combined" | "input.direction.last" | "input.direction.next" | "input.icon.tooltip.calendar" | "input.noOptions" | "input.placeholder.customRange.last" | "input.placeholder.customRange.next" | "input.today" | "input.unit.day" | "input.unit.days" | "input.unit.hour" | "input.unit.hours" | "input.unit.month" | "input.unit.months" | "layout.actions.apply" | "layout.actions.back" | "layout.actions.cancel" | "layout.actions.clear" | "layout.actions.reset" | "timeline.loadMore" | "trigger.customRange" | "trigger.selectDateRange">;
19
19
  i18n: import("i18next").i18n;
20
20
  ready: boolean;
21
21
  };
@@ -16,22 +16,11 @@ var translation = {
16
16
  "input.unit.hours": "Stunden",
17
17
  "input.unit.month": "Monat",
18
18
  "input.unit.months": "Monate",
19
- "input.unit.week": "Woche",
20
- "input.unit.weeks": "Wochen",
21
19
  "layout.actions.apply": "Anwenden",
22
20
  "layout.actions.back": "Zurück",
23
21
  "layout.actions.cancel": "Abbrechen",
24
22
  "layout.actions.clear": "Löschen",
25
23
  "layout.actions.reset": "Zurücksetzen",
26
- "shared.timePeriods.days": "{{count}} Tag",
27
- "shared.timePeriods.days_plural": "{{count}} Tage",
28
- "shared.timePeriods.hours": "{{count}} Stunde",
29
- "shared.timePeriods.hours_plural": "{{count}} Stunden",
30
- "shared.timePeriods.months": "{{count}} Monat",
31
- "shared.timePeriods.months_plural": "{{count}} Monate",
32
- "shared.timePeriods.today": "Heute",
33
- "shared.timePeriods.weeks": "{{count}} Woche",
34
- "shared.timePeriods.weeks_plural": "{{count}} Wochen",
35
24
  "timeline.loadMore": "Click for more...",
36
25
  "trigger.customRange": "Benutzerdefinierter Datumsbereich",
37
26
  "trigger.selectDateRange": "Datumsbereich auswählen"
@@ -14,22 +14,11 @@ var translation = {
14
14
  "input.unit.hours": "Stunden",
15
15
  "input.unit.month": "Monat",
16
16
  "input.unit.months": "Monate",
17
- "input.unit.week": "Woche",
18
- "input.unit.weeks": "Wochen",
19
17
  "layout.actions.apply": "Anwenden",
20
18
  "layout.actions.back": "Zurück",
21
19
  "layout.actions.cancel": "Abbrechen",
22
20
  "layout.actions.clear": "Löschen",
23
21
  "layout.actions.reset": "Zurücksetzen",
24
- "shared.timePeriods.days": "{{count}} Tag",
25
- "shared.timePeriods.days_plural": "{{count}} Tage",
26
- "shared.timePeriods.hours": "{{count}} Stunde",
27
- "shared.timePeriods.hours_plural": "{{count}} Stunden",
28
- "shared.timePeriods.months": "{{count}} Monat",
29
- "shared.timePeriods.months_plural": "{{count}} Monate",
30
- "shared.timePeriods.today": "Heute",
31
- "shared.timePeriods.weeks": "{{count}} Woche",
32
- "shared.timePeriods.weeks_plural": "{{count}} Wochen",
33
22
  "timeline.loadMore": "Click for more...",
34
23
  "trigger.customRange": "Benutzerdefinierter Datumsbereich",
35
24
  "trigger.selectDateRange": "Datumsbereich auswählen"
@@ -16,22 +16,11 @@ var translation = {
16
16
  "input.unit.hours": "godz.",
17
17
  "input.unit.month": "miesiąc",
18
18
  "input.unit.months": "miesiące",
19
- "input.unit.week": "tydzień",
20
- "input.unit.weeks": "tygodnie",
21
19
  "layout.actions.apply": "Zastosuj",
22
20
  "layout.actions.back": "Powrót",
23
21
  "layout.actions.cancel": "Anuluj",
24
22
  "layout.actions.clear": "Wyczyść",
25
23
  "layout.actions.reset": "Zresetuj",
26
- "shared.timePeriods.days": "{{count}} dzień",
27
- "shared.timePeriods.days_plural": "{{count}} dni",
28
- "shared.timePeriods.hours": "{{count}} godzina",
29
- "shared.timePeriods.hours_plural": "{{count}} godz.",
30
- "shared.timePeriods.months": "{{count}} miesiąc",
31
- "shared.timePeriods.months_plural": "{{count}} mies.",
32
- "shared.timePeriods.today": "Dziś",
33
- "shared.timePeriods.weeks": "{{count}} tydzień",
34
- "shared.timePeriods.weeks_plural": "{{count}} tygodni(e)",
35
24
  "timeline.loadMore": "Click for more...",
36
25
  "trigger.customRange": "Własny zakres dat",
37
26
  "trigger.selectDateRange": "Wybierz zakres dat"
@@ -14,22 +14,11 @@ var translation = {
14
14
  "input.unit.hours": "godz.",
15
15
  "input.unit.month": "miesiąc",
16
16
  "input.unit.months": "miesiące",
17
- "input.unit.week": "tydzień",
18
- "input.unit.weeks": "tygodnie",
19
17
  "layout.actions.apply": "Zastosuj",
20
18
  "layout.actions.back": "Powrót",
21
19
  "layout.actions.cancel": "Anuluj",
22
20
  "layout.actions.clear": "Wyczyść",
23
21
  "layout.actions.reset": "Zresetuj",
24
- "shared.timePeriods.days": "{{count}} dzień",
25
- "shared.timePeriods.days_plural": "{{count}} dni",
26
- "shared.timePeriods.hours": "{{count}} godzina",
27
- "shared.timePeriods.hours_plural": "{{count}} godz.",
28
- "shared.timePeriods.months": "{{count}} miesiąc",
29
- "shared.timePeriods.months_plural": "{{count}} mies.",
30
- "shared.timePeriods.today": "Dziś",
31
- "shared.timePeriods.weeks": "{{count}} tydzień",
32
- "shared.timePeriods.weeks_plural": "{{count}} tygodni(e)",
33
22
  "timeline.loadMore": "Click for more...",
34
23
  "trigger.customRange": "Własny zakres dat",
35
24
  "trigger.selectDateRange": "Wybierz zakres dat"
@@ -16,22 +16,11 @@ var translation = {
16
16
  "input.unit.hours": "horas",
17
17
  "input.unit.month": "mês",
18
18
  "input.unit.months": "meses",
19
- "input.unit.week": "semana",
20
- "input.unit.weeks": "semanas",
21
19
  "layout.actions.apply": "Aplicar",
22
20
  "layout.actions.back": "Voltar",
23
21
  "layout.actions.cancel": "Cancelar",
24
22
  "layout.actions.clear": "Apagar",
25
23
  "layout.actions.reset": "Redefinir",
26
- "shared.timePeriods.days": "{{count}} dia",
27
- "shared.timePeriods.days_plural": "{{count}} dias",
28
- "shared.timePeriods.hours": "{{count}} hora",
29
- "shared.timePeriods.hours_plural": "{{count}} horas",
30
- "shared.timePeriods.months": "{{count}} mês",
31
- "shared.timePeriods.months_plural": "{{count}} meses",
32
- "shared.timePeriods.today": "Hoje",
33
- "shared.timePeriods.weeks": "{{count}} semana",
34
- "shared.timePeriods.weeks_plural": "{{count}} semanas",
35
24
  "timeline.loadMore": "Click for more...",
36
25
  "trigger.customRange": "Intervalo de datas personalizado",
37
26
  "trigger.selectDateRange": "Selecione o intervalo de datas"
@@ -14,22 +14,11 @@ var translation = {
14
14
  "input.unit.hours": "horas",
15
15
  "input.unit.month": "mês",
16
16
  "input.unit.months": "meses",
17
- "input.unit.week": "semana",
18
- "input.unit.weeks": "semanas",
19
17
  "layout.actions.apply": "Aplicar",
20
18
  "layout.actions.back": "Voltar",
21
19
  "layout.actions.cancel": "Cancelar",
22
20
  "layout.actions.clear": "Apagar",
23
21
  "layout.actions.reset": "Redefinir",
24
- "shared.timePeriods.days": "{{count}} dia",
25
- "shared.timePeriods.days_plural": "{{count}} dias",
26
- "shared.timePeriods.hours": "{{count}} hora",
27
- "shared.timePeriods.hours_plural": "{{count}} horas",
28
- "shared.timePeriods.months": "{{count}} mês",
29
- "shared.timePeriods.months_plural": "{{count}} meses",
30
- "shared.timePeriods.today": "Hoje",
31
- "shared.timePeriods.weeks": "{{count}} semana",
32
- "shared.timePeriods.weeks_plural": "{{count}} semanas",
33
22
  "timeline.loadMore": "Click for more...",
34
23
  "trigger.customRange": "Intervalo de datas personalizado",
35
24
  "trigger.selectDateRange": "Selecione o intervalo de datas"
@@ -16,22 +16,11 @@ var translation = {
16
16
  "input.unit.hours": "часа",
17
17
  "input.unit.month": "месяц",
18
18
  "input.unit.months": "месяца",
19
- "input.unit.week": "неделя",
20
- "input.unit.weeks": "недель",
21
19
  "layout.actions.apply": "Применить",
22
20
  "layout.actions.back": "Назад",
23
21
  "layout.actions.cancel": "Отменить",
24
22
  "layout.actions.clear": "Очистить",
25
23
  "layout.actions.reset": "Сбросить",
26
- "shared.timePeriods.days": "{{count}} день",
27
- "shared.timePeriods.days_plural": "{{count}} дня (-ей)",
28
- "shared.timePeriods.hours": "{{count}} час",
29
- "shared.timePeriods.hours_plural": "{{count}} часа (-ов)",
30
- "shared.timePeriods.months": "{{count}} месяц",
31
- "shared.timePeriods.months_plural": "{{count}} месяца (-ев)",
32
- "shared.timePeriods.today": "Сегодня",
33
- "shared.timePeriods.weeks": "{{count}} неделя",
34
- "shared.timePeriods.weeks_plural": "{{count}} недель",
35
24
  "timeline.loadMore": "Click for more...",
36
25
  "trigger.customRange": "Пользовательский диапазон дат",
37
26
  "trigger.selectDateRange": "Выбрать диапазон дат"
@@ -14,22 +14,11 @@ var translation = {
14
14
  "input.unit.hours": "часа",
15
15
  "input.unit.month": "месяц",
16
16
  "input.unit.months": "месяца",
17
- "input.unit.week": "неделя",
18
- "input.unit.weeks": "недель",
19
17
  "layout.actions.apply": "Применить",
20
18
  "layout.actions.back": "Назад",
21
19
  "layout.actions.cancel": "Отменить",
22
20
  "layout.actions.clear": "Очистить",
23
21
  "layout.actions.reset": "Сбросить",
24
- "shared.timePeriods.days": "{{count}} день",
25
- "shared.timePeriods.days_plural": "{{count}} дня (-ей)",
26
- "shared.timePeriods.hours": "{{count}} час",
27
- "shared.timePeriods.hours_plural": "{{count}} часа (-ов)",
28
- "shared.timePeriods.months": "{{count}} месяц",
29
- "shared.timePeriods.months_plural": "{{count}} месяца (-ев)",
30
- "shared.timePeriods.today": "Сегодня",
31
- "shared.timePeriods.weeks": "{{count}} неделя",
32
- "shared.timePeriods.weeks_plural": "{{count}} недель",
33
22
  "timeline.loadMore": "Click for more...",
34
23
  "trigger.customRange": "Пользовательский диапазон дат",
35
24
  "trigger.selectDateRange": "Выбрать диапазон дат"
@@ -16,22 +16,11 @@ var translation = {
16
16
  "input.unit.hours": "ore",
17
17
  "input.unit.month": "lună",
18
18
  "input.unit.months": "luni",
19
- "input.unit.week": "săptămâna",
20
- "input.unit.weeks": "săptămâni",
21
19
  "layout.actions.apply": "Aplicare",
22
20
  "layout.actions.back": "Înapoi",
23
21
  "layout.actions.cancel": "Anulare",
24
22
  "layout.actions.clear": "Ștergere",
25
23
  "layout.actions.reset": "Resetare",
26
- "shared.timePeriods.days": "{{count}} zi",
27
- "shared.timePeriods.days_plural": "{{count}} zile",
28
- "shared.timePeriods.hours": "{{count}} oră",
29
- "shared.timePeriods.hours_plural": "{{count}} ore",
30
- "shared.timePeriods.months": "{{count}} lună",
31
- "shared.timePeriods.months_plural": "{{count}} luni",
32
- "shared.timePeriods.today": "Astăzi",
33
- "shared.timePeriods.weeks": "{{count}} săptămână",
34
- "shared.timePeriods.weeks_plural": "{{count}} (de) săptămâni",
35
24
  "timeline.loadMore": "Click for more...",
36
25
  "trigger.customRange": "Interval de date personalizat",
37
26
  "trigger.selectDateRange": "Selectați intervalul de date"
@@ -14,22 +14,11 @@ var translation = {
14
14
  "input.unit.hours": "ore",
15
15
  "input.unit.month": "lună",
16
16
  "input.unit.months": "luni",
17
- "input.unit.week": "săptămâna",
18
- "input.unit.weeks": "săptămâni",
19
17
  "layout.actions.apply": "Aplicare",
20
18
  "layout.actions.back": "Înapoi",
21
19
  "layout.actions.cancel": "Anulare",
22
20
  "layout.actions.clear": "Ștergere",
23
21
  "layout.actions.reset": "Resetare",
24
- "shared.timePeriods.days": "{{count}} zi",
25
- "shared.timePeriods.days_plural": "{{count}} zile",
26
- "shared.timePeriods.hours": "{{count}} oră",
27
- "shared.timePeriods.hours_plural": "{{count}} ore",
28
- "shared.timePeriods.months": "{{count}} lună",
29
- "shared.timePeriods.months_plural": "{{count}} luni",
30
- "shared.timePeriods.today": "Astăzi",
31
- "shared.timePeriods.weeks": "{{count}} săptămână",
32
- "shared.timePeriods.weeks_plural": "{{count}} (de) săptămâni",
33
22
  "timeline.loadMore": "Click for more...",
34
23
  "trigger.customRange": "Interval de date personalizat",
35
24
  "trigger.selectDateRange": "Selectați intervalul de date"
@@ -16,22 +16,11 @@ var translation = {
16
16
  "input.unit.hours": "horas",
17
17
  "input.unit.month": "mes",
18
18
  "input.unit.months": "meses",
19
- "input.unit.week": "semana",
20
- "input.unit.weeks": "semanas",
21
19
  "layout.actions.apply": "Aplicar",
22
20
  "layout.actions.back": "Atrás",
23
21
  "layout.actions.cancel": "1",
24
22
  "layout.actions.clear": "Restablecer",
25
23
  "layout.actions.reset": "Restablecer",
26
- "shared.timePeriods.days": "{{count}} día",
27
- "shared.timePeriods.days_plural": "{{count}} días",
28
- "shared.timePeriods.hours": "{{count}} hora",
29
- "shared.timePeriods.hours_plural": "{{count}} horas",
30
- "shared.timePeriods.months": "{{count}} mes",
31
- "shared.timePeriods.months_plural": "{{count}} meses",
32
- "shared.timePeriods.today": "Hoy",
33
- "shared.timePeriods.weeks": "{{count}} semana",
34
- "shared.timePeriods.weeks_plural": "{{count}} semanas",
35
24
  "timeline.loadMore": "Click for more...",
36
25
  "trigger.customRange": "Rango de fechas personalizado",
37
26
  "trigger.selectDateRange": "Seleccionar rango de fechas"
@@ -14,22 +14,11 @@ var translation = {
14
14
  "input.unit.hours": "horas",
15
15
  "input.unit.month": "mes",
16
16
  "input.unit.months": "meses",
17
- "input.unit.week": "semana",
18
- "input.unit.weeks": "semanas",
19
17
  "layout.actions.apply": "Aplicar",
20
18
  "layout.actions.back": "Atrás",
21
19
  "layout.actions.cancel": "1",
22
20
  "layout.actions.clear": "Restablecer",
23
21
  "layout.actions.reset": "Restablecer",
24
- "shared.timePeriods.days": "{{count}} día",
25
- "shared.timePeriods.days_plural": "{{count}} días",
26
- "shared.timePeriods.hours": "{{count}} hora",
27
- "shared.timePeriods.hours_plural": "{{count}} horas",
28
- "shared.timePeriods.months": "{{count}} mes",
29
- "shared.timePeriods.months_plural": "{{count}} meses",
30
- "shared.timePeriods.today": "Hoy",
31
- "shared.timePeriods.weeks": "{{count}} semana",
32
- "shared.timePeriods.weeks_plural": "{{count}} semanas",
33
22
  "timeline.loadMore": "Click for more...",
34
23
  "trigger.customRange": "Rango de fechas personalizado",
35
24
  "trigger.selectDateRange": "Seleccionar rango de fechas"
@@ -16,22 +16,11 @@ var translation = {
16
16
  "input.unit.hours": "timmar",
17
17
  "input.unit.month": "månad",
18
18
  "input.unit.months": "månader",
19
- "input.unit.week": "vecka",
20
- "input.unit.weeks": "veckor",
21
19
  "layout.actions.apply": "Lägg till",
22
20
  "layout.actions.back": "Tillbaka",
23
21
  "layout.actions.cancel": "Avbryt",
24
22
  "layout.actions.clear": "Rensa",
25
23
  "layout.actions.reset": "Återställ",
26
- "shared.timePeriods.days": "{{count}} dag",
27
- "shared.timePeriods.days_plural": "{{count}} dagar",
28
- "shared.timePeriods.hours": "{{count}} timme",
29
- "shared.timePeriods.hours_plural": "{{count}} timmar",
30
- "shared.timePeriods.months": "{{count}} månad",
31
- "shared.timePeriods.months_plural": "{{count}} månader",
32
- "shared.timePeriods.today": "I dag",
33
- "shared.timePeriods.weeks": "{{count}} vecka",
34
- "shared.timePeriods.weeks_plural": "{{count}} veckor",
35
24
  "timeline.loadMore": "Click for more...",
36
25
  "trigger.customRange": "Anpassat datumintervall",
37
26
  "trigger.selectDateRange": "Välj datumintervall"
@@ -14,22 +14,11 @@ var translation = {
14
14
  "input.unit.hours": "timmar",
15
15
  "input.unit.month": "månad",
16
16
  "input.unit.months": "månader",
17
- "input.unit.week": "vecka",
18
- "input.unit.weeks": "veckor",
19
17
  "layout.actions.apply": "Lägg till",
20
18
  "layout.actions.back": "Tillbaka",
21
19
  "layout.actions.cancel": "Avbryt",
22
20
  "layout.actions.clear": "Rensa",
23
21
  "layout.actions.reset": "Återställ",
24
- "shared.timePeriods.days": "{{count}} dag",
25
- "shared.timePeriods.days_plural": "{{count}} dagar",
26
- "shared.timePeriods.hours": "{{count}} timme",
27
- "shared.timePeriods.hours_plural": "{{count}} timmar",
28
- "shared.timePeriods.months": "{{count}} månad",
29
- "shared.timePeriods.months_plural": "{{count}} månader",
30
- "shared.timePeriods.today": "I dag",
31
- "shared.timePeriods.weeks": "{{count}} vecka",
32
- "shared.timePeriods.weeks_plural": "{{count}} veckor",
33
22
  "timeline.loadMore": "Click for more...",
34
23
  "trigger.customRange": "Anpassat datumintervall",
35
24
  "trigger.selectDateRange": "Välj datumintervall"
@@ -16,22 +16,11 @@ var translation = {
16
16
  "input.unit.hours": "時間",
17
17
  "input.unit.month": "ヶ月",
18
18
  "input.unit.months": "ヶ月",
19
- "input.unit.week": "週間",
20
- "input.unit.weeks": "週間",
21
19
  "layout.actions.apply": "適用",
22
20
  "layout.actions.back": "戻る",
23
21
  "layout.actions.cancel": "キャンセル",
24
22
  "layout.actions.clear": "クリア",
25
23
  "layout.actions.reset": "リセット",
26
- "shared.timePeriods.days": "{{count}}日",
27
- "shared.timePeriods.days_plural": "{{count}}日",
28
- "shared.timePeriods.hours": "{{count}}時間",
29
- "shared.timePeriods.hours_plural": "{{count}}時間",
30
- "shared.timePeriods.months": "{{count}}ヶ月",
31
- "shared.timePeriods.months_plural": "{{count}}ヶ月",
32
- "shared.timePeriods.today": "今日",
33
- "shared.timePeriods.weeks": "{{count}}週間",
34
- "shared.timePeriods.weeks_plural": "{{count}}週間",
35
24
  "timeline.loadMore": "Click for more...",
36
25
  "trigger.customRange": "カスタム日付範囲",
37
26
  "trigger.selectDateRange": "日付範囲を選択"
@@ -14,22 +14,11 @@ var translation = {
14
14
  "input.unit.hours": "時間",
15
15
  "input.unit.month": "ヶ月",
16
16
  "input.unit.months": "ヶ月",
17
- "input.unit.week": "週間",
18
- "input.unit.weeks": "週間",
19
17
  "layout.actions.apply": "適用",
20
18
  "layout.actions.back": "戻る",
21
19
  "layout.actions.cancel": "キャンセル",
22
20
  "layout.actions.clear": "クリア",
23
21
  "layout.actions.reset": "リセット",
24
- "shared.timePeriods.days": "{{count}}日",
25
- "shared.timePeriods.days_plural": "{{count}}日",
26
- "shared.timePeriods.hours": "{{count}}時間",
27
- "shared.timePeriods.hours_plural": "{{count}}時間",
28
- "shared.timePeriods.months": "{{count}}ヶ月",
29
- "shared.timePeriods.months_plural": "{{count}}ヶ月",
30
- "shared.timePeriods.today": "今日",
31
- "shared.timePeriods.weeks": "{{count}}週間",
32
- "shared.timePeriods.weeks_plural": "{{count}}週間",
33
22
  "timeline.loadMore": "Click for more...",
34
23
  "trigger.customRange": "カスタム日付範囲",
35
24
  "trigger.selectDateRange": "日付範囲を選択"
@@ -16,22 +16,11 @@ var translation = {
16
16
  "input.unit.hours": "ชั่วโมง",
17
17
  "input.unit.month": "เดือน",
18
18
  "input.unit.months": "เดือน",
19
- "input.unit.week": "สัปดาห์",
20
- "input.unit.weeks": "สัปดาห์",
21
19
  "layout.actions.apply": "ปรับใช้",
22
20
  "layout.actions.back": "ย้อนกลับ",
23
21
  "layout.actions.cancel": "ยกเลิก",
24
22
  "layout.actions.clear": "ล้าง",
25
23
  "layout.actions.reset": "รีเซ็ต",
26
- "shared.timePeriods.days": "{{count}} วัน",
27
- "shared.timePeriods.days_plural": "{{count}} วัน",
28
- "shared.timePeriods.hours": "{{count}} ชั่วโมง",
29
- "shared.timePeriods.hours_plural": "{{count}} ชั่วโมง",
30
- "shared.timePeriods.months": "{{count}} เดือน",
31
- "shared.timePeriods.months_plural": "{{count}} เดือน",
32
- "shared.timePeriods.today": "วันนี้",
33
- "shared.timePeriods.weeks": "{{count}} สัปดาห์",
34
- "shared.timePeriods.weeks_plural": "{{count}} สัปดาห์",
35
24
  "timeline.loadMore": "Click for more...",
36
25
  "trigger.customRange": "ช่วงวันที่แบบกำหนดเอง",
37
26
  "trigger.selectDateRange": "เลือกช่วงวันที่"
@@ -14,22 +14,11 @@ var translation = {
14
14
  "input.unit.hours": "ชั่วโมง",
15
15
  "input.unit.month": "เดือน",
16
16
  "input.unit.months": "เดือน",
17
- "input.unit.week": "สัปดาห์",
18
- "input.unit.weeks": "สัปดาห์",
19
17
  "layout.actions.apply": "ปรับใช้",
20
18
  "layout.actions.back": "ย้อนกลับ",
21
19
  "layout.actions.cancel": "ยกเลิก",
22
20
  "layout.actions.clear": "ล้าง",
23
21
  "layout.actions.reset": "รีเซ็ต",
24
- "shared.timePeriods.days": "{{count}} วัน",
25
- "shared.timePeriods.days_plural": "{{count}} วัน",
26
- "shared.timePeriods.hours": "{{count}} ชั่วโมง",
27
- "shared.timePeriods.hours_plural": "{{count}} ชั่วโมง",
28
- "shared.timePeriods.months": "{{count}} เดือน",
29
- "shared.timePeriods.months_plural": "{{count}} เดือน",
30
- "shared.timePeriods.today": "วันนี้",
31
- "shared.timePeriods.weeks": "{{count}} สัปดาห์",
32
- "shared.timePeriods.weeks_plural": "{{count}} สัปดาห์",
33
22
  "timeline.loadMore": "Click for more...",
34
23
  "trigger.customRange": "ช่วงวันที่แบบกำหนดเอง",
35
24
  "trigger.selectDateRange": "เลือกช่วงวันที่"
@@ -16,22 +16,11 @@ var translation = {
16
16
  "input.unit.hours": "timer",
17
17
  "input.unit.month": "måned",
18
18
  "input.unit.months": "måneder",
19
- "input.unit.week": "uge",
20
- "input.unit.weeks": "uger",
21
19
  "layout.actions.apply": "Anvend",
22
20
  "layout.actions.back": "Tilbage",
23
21
  "layout.actions.cancel": "Annuller",
24
22
  "layout.actions.clear": "Ryd",
25
23
  "layout.actions.reset": "Nulstil",
26
- "shared.timePeriods.days": "{{count}} dag",
27
- "shared.timePeriods.days_plural": "{{count}} dage",
28
- "shared.timePeriods.hours": "{{count}} time",
29
- "shared.timePeriods.hours_plural": "{{count}} timer",
30
- "shared.timePeriods.months": "{{count}} måned",
31
- "shared.timePeriods.months_plural": "{{count}} måneder",
32
- "shared.timePeriods.today": "I dag",
33
- "shared.timePeriods.weeks": "{{count}} uge",
34
- "shared.timePeriods.weeks_plural": "{{count}} uger",
35
24
  "timeline.loadMore": "Click for more...",
36
25
  "trigger.customRange": "Brugerdefineret datointerval",
37
26
  "trigger.selectDateRange": "Vælg datointerval"
@@ -14,22 +14,11 @@ var translation = {
14
14
  "input.unit.hours": "timer",
15
15
  "input.unit.month": "måned",
16
16
  "input.unit.months": "måneder",
17
- "input.unit.week": "uge",
18
- "input.unit.weeks": "uger",
19
17
  "layout.actions.apply": "Anvend",
20
18
  "layout.actions.back": "Tilbage",
21
19
  "layout.actions.cancel": "Annuller",
22
20
  "layout.actions.clear": "Ryd",
23
21
  "layout.actions.reset": "Nulstil",
24
- "shared.timePeriods.days": "{{count}} dag",
25
- "shared.timePeriods.days_plural": "{{count}} dage",
26
- "shared.timePeriods.hours": "{{count}} time",
27
- "shared.timePeriods.hours_plural": "{{count}} timer",
28
- "shared.timePeriods.months": "{{count}} måned",
29
- "shared.timePeriods.months_plural": "{{count}} måneder",
30
- "shared.timePeriods.today": "I dag",
31
- "shared.timePeriods.weeks": "{{count}} uge",
32
- "shared.timePeriods.weeks_plural": "{{count}} uger",
33
22
  "timeline.loadMore": "Click for more...",
34
23
  "trigger.customRange": "Brugerdefineret datointerval",
35
24
  "trigger.selectDateRange": "Vælg datointerval"
@@ -16,22 +16,11 @@ var translation = {
16
16
  "input.unit.hours": "hodiny",
17
17
  "input.unit.month": "měsíc",
18
18
  "input.unit.months": "měsíce",
19
- "input.unit.week": "týden",
20
- "input.unit.weeks": "týdny",
21
19
  "layout.actions.apply": "Použít",
22
20
  "layout.actions.back": "Zpět",
23
21
  "layout.actions.cancel": "Zrušit",
24
22
  "layout.actions.clear": "Vymazat",
25
23
  "layout.actions.reset": "Resetovat",
26
- "shared.timePeriods.days": "{{count}} den",
27
- "shared.timePeriods.days_plural": "{{count}} dní",
28
- "shared.timePeriods.hours": "{{count}} hodina",
29
- "shared.timePeriods.hours_plural": "{{count}} hodin",
30
- "shared.timePeriods.months": "{{count}} měsíc",
31
- "shared.timePeriods.months_plural": "{{count}} měsíců",
32
- "shared.timePeriods.today": "Dnes",
33
- "shared.timePeriods.weeks": "{{count}} týden",
34
- "shared.timePeriods.weeks_plural": "{{count}} týdny/týdnů",
35
24
  "timeline.loadMore": "Click for more...",
36
25
  "trigger.customRange": "Vlastní rozsah dat",
37
26
  "trigger.selectDateRange": "Vybrat rozsah dat"
@@ -14,22 +14,11 @@ var translation = {
14
14
  "input.unit.hours": "hodiny",
15
15
  "input.unit.month": "měsíc",
16
16
  "input.unit.months": "měsíce",
17
- "input.unit.week": "týden",
18
- "input.unit.weeks": "týdny",
19
17
  "layout.actions.apply": "Použít",
20
18
  "layout.actions.back": "Zpět",
21
19
  "layout.actions.cancel": "Zrušit",
22
20
  "layout.actions.clear": "Vymazat",
23
21
  "layout.actions.reset": "Resetovat",
24
- "shared.timePeriods.days": "{{count}} den",
25
- "shared.timePeriods.days_plural": "{{count}} dní",
26
- "shared.timePeriods.hours": "{{count}} hodina",
27
- "shared.timePeriods.hours_plural": "{{count}} hodin",
28
- "shared.timePeriods.months": "{{count}} měsíc",
29
- "shared.timePeriods.months_plural": "{{count}} měsíců",
30
- "shared.timePeriods.today": "Dnes",
31
- "shared.timePeriods.weeks": "{{count}} týden",
32
- "shared.timePeriods.weeks_plural": "{{count}} týdny/týdnů",
33
22
  "timeline.loadMore": "Click for more...",
34
23
  "trigger.customRange": "Vlastní rozsah dat",
35
24
  "trigger.selectDateRange": "Vybrat rozsah dat"
@@ -16,22 +16,11 @@ var translation = {
16
16
  "input.unit.hours": "uren",
17
17
  "input.unit.month": "maand",
18
18
  "input.unit.months": "maanden",
19
- "input.unit.week": "week",
20
- "input.unit.weeks": "weken",
21
19
  "layout.actions.apply": "Toepassen",
22
20
  "layout.actions.back": "Terug",
23
21
  "layout.actions.cancel": "Annuleren",
24
22
  "layout.actions.clear": "Wissen",
25
23
  "layout.actions.reset": "Resetten",
26
- "shared.timePeriods.days": "{{count}} dag",
27
- "shared.timePeriods.days_plural": "{{count}} dagen",
28
- "shared.timePeriods.hours": "{{count}} uur",
29
- "shared.timePeriods.hours_plural": "{{count}} uren",
30
- "shared.timePeriods.months": "{{count}} maand",
31
- "shared.timePeriods.months_plural": "{{count}} maanden",
32
- "shared.timePeriods.today": "Vandaag",
33
- "shared.timePeriods.weeks": "{{count}} week",
34
- "shared.timePeriods.weeks_plural": "{{count}} weken",
35
24
  "timeline.loadMore": "Click for more...",
36
25
  "trigger.customRange": "Aangepast datumbereik",
37
26
  "trigger.selectDateRange": "Selecteer datumbereik"
@@ -14,22 +14,11 @@ var translation = {
14
14
  "input.unit.hours": "uren",
15
15
  "input.unit.month": "maand",
16
16
  "input.unit.months": "maanden",
17
- "input.unit.week": "week",
18
- "input.unit.weeks": "weken",
19
17
  "layout.actions.apply": "Toepassen",
20
18
  "layout.actions.back": "Terug",
21
19
  "layout.actions.cancel": "Annuleren",
22
20
  "layout.actions.clear": "Wissen",
23
21
  "layout.actions.reset": "Resetten",
24
- "shared.timePeriods.days": "{{count}} dag",
25
- "shared.timePeriods.days_plural": "{{count}} dagen",
26
- "shared.timePeriods.hours": "{{count}} uur",
27
- "shared.timePeriods.hours_plural": "{{count}} uren",
28
- "shared.timePeriods.months": "{{count}} maand",
29
- "shared.timePeriods.months_plural": "{{count}} maanden",
30
- "shared.timePeriods.today": "Vandaag",
31
- "shared.timePeriods.weeks": "{{count}} week",
32
- "shared.timePeriods.weeks_plural": "{{count}} weken",
33
22
  "timeline.loadMore": "Click for more...",
34
23
  "trigger.customRange": "Aangepast datumbereik",
35
24
  "trigger.selectDateRange": "Selecteer datumbereik"
@@ -16,22 +16,11 @@ var translation = {
16
16
  "input.unit.hours": "heures",
17
17
  "input.unit.month": "mois",
18
18
  "input.unit.months": "mois",
19
- "input.unit.week": "semaine",
20
- "input.unit.weeks": "semaines",
21
19
  "layout.actions.apply": "Appliquer",
22
20
  "layout.actions.back": "Retour",
23
21
  "layout.actions.cancel": "Annuler",
24
22
  "layout.actions.clear": "Effacer",
25
23
  "layout.actions.reset": "Réinitialiser",
26
- "shared.timePeriods.days": "{{count}} jour",
27
- "shared.timePeriods.days_plural": "{{count}} jours",
28
- "shared.timePeriods.hours": "{{count}} heure",
29
- "shared.timePeriods.hours_plural": "{{count}} heures",
30
- "shared.timePeriods.months": "{{count}} mois",
31
- "shared.timePeriods.months_plural": "{{count}} mois",
32
- "shared.timePeriods.today": "Aujourd’hui",
33
- "shared.timePeriods.weeks": "{{count}} semaine",
34
- "shared.timePeriods.weeks_plural": "{{count}} semaines",
35
24
  "timeline.loadMore": "Click for more...",
36
25
  "trigger.customRange": "Choisir une plage de dates",
37
26
  "trigger.selectDateRange": "Sélectionner une plage de dates"
@@ -14,22 +14,11 @@ var translation = {
14
14
  "input.unit.hours": "heures",
15
15
  "input.unit.month": "mois",
16
16
  "input.unit.months": "mois",
17
- "input.unit.week": "semaine",
18
- "input.unit.weeks": "semaines",
19
17
  "layout.actions.apply": "Appliquer",
20
18
  "layout.actions.back": "Retour",
21
19
  "layout.actions.cancel": "Annuler",
22
20
  "layout.actions.clear": "Effacer",
23
21
  "layout.actions.reset": "Réinitialiser",
24
- "shared.timePeriods.days": "{{count}} jour",
25
- "shared.timePeriods.days_plural": "{{count}} jours",
26
- "shared.timePeriods.hours": "{{count}} heure",
27
- "shared.timePeriods.hours_plural": "{{count}} heures",
28
- "shared.timePeriods.months": "{{count}} mois",
29
- "shared.timePeriods.months_plural": "{{count}} mois",
30
- "shared.timePeriods.today": "Aujourd’hui",
31
- "shared.timePeriods.weeks": "{{count}} semaine",
32
- "shared.timePeriods.weeks_plural": "{{count}} semaines",
33
22
  "timeline.loadMore": "Click for more...",
34
23
  "trigger.customRange": "Choisir une plage de dates",
35
24
  "trigger.selectDateRange": "Sélectionner une plage de dates"
@@ -16,22 +16,11 @@ var translation = {
16
16
  "input.unit.hours": "tuntia",
17
17
  "input.unit.month": "kuukausi",
18
18
  "input.unit.months": "kuukautta",
19
- "input.unit.week": "viikko",
20
- "input.unit.weeks": "viikkoa",
21
19
  "layout.actions.apply": "Käytä",
22
20
  "layout.actions.back": "Takaisin",
23
21
  "layout.actions.cancel": "Peruuta",
24
22
  "layout.actions.clear": "Tyhjennä",
25
23
  "layout.actions.reset": "Nollaa",
26
- "shared.timePeriods.days": "{{count}} päivä",
27
- "shared.timePeriods.days_plural": "{{count}} päivää",
28
- "shared.timePeriods.hours": "{{count}} tunti",
29
- "shared.timePeriods.hours_plural": "{{count}} tuntia",
30
- "shared.timePeriods.months": "{{count}} kuukausi",
31
- "shared.timePeriods.months_plural": "{{count}} kuukautta",
32
- "shared.timePeriods.today": "Tänään",
33
- "shared.timePeriods.weeks": "{{count}} viikko",
34
- "shared.timePeriods.weeks_plural": "{{count}} viikkoa",
35
24
  "timeline.loadMore": "Click for more...",
36
25
  "trigger.customRange": "Mukautettu aikaväli",
37
26
  "trigger.selectDateRange": "Valitse aikaväli"
@@ -14,22 +14,11 @@ var translation = {
14
14
  "input.unit.hours": "tuntia",
15
15
  "input.unit.month": "kuukausi",
16
16
  "input.unit.months": "kuukautta",
17
- "input.unit.week": "viikko",
18
- "input.unit.weeks": "viikkoa",
19
17
  "layout.actions.apply": "Käytä",
20
18
  "layout.actions.back": "Takaisin",
21
19
  "layout.actions.cancel": "Peruuta",
22
20
  "layout.actions.clear": "Tyhjennä",
23
21
  "layout.actions.reset": "Nollaa",
24
- "shared.timePeriods.days": "{{count}} päivä",
25
- "shared.timePeriods.days_plural": "{{count}} päivää",
26
- "shared.timePeriods.hours": "{{count}} tunti",
27
- "shared.timePeriods.hours_plural": "{{count}} tuntia",
28
- "shared.timePeriods.months": "{{count}} kuukausi",
29
- "shared.timePeriods.months_plural": "{{count}} kuukautta",
30
- "shared.timePeriods.today": "Tänään",
31
- "shared.timePeriods.weeks": "{{count}} viikko",
32
- "shared.timePeriods.weeks_plural": "{{count}} viikkoa",
33
22
  "timeline.loadMore": "Click for more...",
34
23
  "trigger.customRange": "Mukautettu aikaväli",
35
24
  "trigger.selectDateRange": "Valitse aikaväli"
@@ -16,22 +16,11 @@ var translation = {
16
16
  "input.unit.hours": "óra",
17
17
  "input.unit.month": "hónap",
18
18
  "input.unit.months": "hónap",
19
- "input.unit.week": "hét",
20
- "input.unit.weeks": "hét",
21
19
  "layout.actions.apply": "Alkalmaz",
22
20
  "layout.actions.back": "Vissza",
23
21
  "layout.actions.cancel": "Mégse",
24
22
  "layout.actions.clear": "Törlés",
25
23
  "layout.actions.reset": "Visszaállítás",
26
- "shared.timePeriods.days": "{{count}} nap",
27
- "shared.timePeriods.days_plural": "{{count}} nap",
28
- "shared.timePeriods.hours": "{{count}} óra",
29
- "shared.timePeriods.hours_plural": "{{count}} óra",
30
- "shared.timePeriods.months": "{{count}} hónap",
31
- "shared.timePeriods.months_plural": "{{count}} hónap",
32
- "shared.timePeriods.today": "Ma",
33
- "shared.timePeriods.weeks": "{{count}} hét",
34
- "shared.timePeriods.weeks_plural": "{{count}} hét",
35
24
  "timeline.loadMore": "Click for more...",
36
25
  "trigger.customRange": "Egyéni dátumtartomány",
37
26
  "trigger.selectDateRange": "Válasszon ki egy dátumtartományt"
@@ -14,22 +14,11 @@ var translation = {
14
14
  "input.unit.hours": "óra",
15
15
  "input.unit.month": "hónap",
16
16
  "input.unit.months": "hónap",
17
- "input.unit.week": "hét",
18
- "input.unit.weeks": "hét",
19
17
  "layout.actions.apply": "Alkalmaz",
20
18
  "layout.actions.back": "Vissza",
21
19
  "layout.actions.cancel": "Mégse",
22
20
  "layout.actions.clear": "Törlés",
23
21
  "layout.actions.reset": "Visszaállítás",
24
- "shared.timePeriods.days": "{{count}} nap",
25
- "shared.timePeriods.days_plural": "{{count}} nap",
26
- "shared.timePeriods.hours": "{{count}} óra",
27
- "shared.timePeriods.hours_plural": "{{count}} óra",
28
- "shared.timePeriods.months": "{{count}} hónap",
29
- "shared.timePeriods.months_plural": "{{count}} hónap",
30
- "shared.timePeriods.today": "Ma",
31
- "shared.timePeriods.weeks": "{{count}} hét",
32
- "shared.timePeriods.weeks_plural": "{{count}} hét",
33
22
  "timeline.loadMore": "Click for more...",
34
23
  "trigger.customRange": "Egyéni dátumtartomány",
35
24
  "trigger.selectDateRange": "Válasszon ki egy dátumtartományt"
@@ -16,22 +16,11 @@ var translation = {
16
16
  "input.unit.hours": "ore",
17
17
  "input.unit.month": "mese",
18
18
  "input.unit.months": "mesi",
19
- "input.unit.week": "settimana",
20
- "input.unit.weeks": "settimane",
21
19
  "layout.actions.apply": "Applica",
22
20
  "layout.actions.back": "Indietro",
23
21
  "layout.actions.cancel": "Annulla",
24
22
  "layout.actions.clear": "Cancella",
25
23
  "layout.actions.reset": "Ripristina",
26
- "shared.timePeriods.days": "{{count}} giorno",
27
- "shared.timePeriods.days_plural": "{{count}} giorni",
28
- "shared.timePeriods.hours": "{{count}} ora",
29
- "shared.timePeriods.hours_plural": "{{count}} ore",
30
- "shared.timePeriods.months": "{{count}} mese",
31
- "shared.timePeriods.months_plural": "{{count}} mesi",
32
- "shared.timePeriods.today": "Oggi",
33
- "shared.timePeriods.weeks": "{{count}} settimana",
34
- "shared.timePeriods.weeks_plural": "{{count}} settimane",
35
24
  "timeline.loadMore": "Click for more...",
36
25
  "trigger.customRange": "Intervallo di date personalizzato",
37
26
  "trigger.selectDateRange": "Seleziona intervallo di date"
@@ -14,22 +14,11 @@ var translation = {
14
14
  "input.unit.hours": "ore",
15
15
  "input.unit.month": "mese",
16
16
  "input.unit.months": "mesi",
17
- "input.unit.week": "settimana",
18
- "input.unit.weeks": "settimane",
19
17
  "layout.actions.apply": "Applica",
20
18
  "layout.actions.back": "Indietro",
21
19
  "layout.actions.cancel": "Annulla",
22
20
  "layout.actions.clear": "Cancella",
23
21
  "layout.actions.reset": "Ripristina",
24
- "shared.timePeriods.days": "{{count}} giorno",
25
- "shared.timePeriods.days_plural": "{{count}} giorni",
26
- "shared.timePeriods.hours": "{{count}} ora",
27
- "shared.timePeriods.hours_plural": "{{count}} ore",
28
- "shared.timePeriods.months": "{{count}} mese",
29
- "shared.timePeriods.months_plural": "{{count}} mesi",
30
- "shared.timePeriods.today": "Oggi",
31
- "shared.timePeriods.weeks": "{{count}} settimana",
32
- "shared.timePeriods.weeks_plural": "{{count}} settimane",
33
22
  "timeline.loadMore": "Click for more...",
34
23
  "trigger.customRange": "Intervallo di date personalizzato",
35
24
  "trigger.selectDateRange": "Seleziona intervallo di date"
@@ -16,22 +16,11 @@ var translation = {
16
16
  "input.unit.hours": "timer",
17
17
  "input.unit.month": "måned",
18
18
  "input.unit.months": "måneder",
19
- "input.unit.week": "uke",
20
- "input.unit.weeks": "uker",
21
19
  "layout.actions.apply": "Bruk",
22
20
  "layout.actions.back": "Tilbake",
23
21
  "layout.actions.cancel": "Avbryt",
24
22
  "layout.actions.clear": "Tøm",
25
23
  "layout.actions.reset": "Tilbakestill",
26
- "shared.timePeriods.days": "{{count}} dag",
27
- "shared.timePeriods.days_plural": "{{count}} dager",
28
- "shared.timePeriods.hours": "{{count}} time",
29
- "shared.timePeriods.hours_plural": "{{count}} timer",
30
- "shared.timePeriods.months": "{{count}} måned",
31
- "shared.timePeriods.months_plural": "{{count}} måneder",
32
- "shared.timePeriods.today": "I dag",
33
- "shared.timePeriods.weeks": "{{count}} uke",
34
- "shared.timePeriods.weeks_plural": "{{count}} uker",
35
24
  "timeline.loadMore": "Click for more...",
36
25
  "trigger.customRange": "Egendefinert datointervall",
37
26
  "trigger.selectDateRange": "Velg datointervall"
@@ -14,22 +14,11 @@ var translation = {
14
14
  "input.unit.hours": "timer",
15
15
  "input.unit.month": "måned",
16
16
  "input.unit.months": "måneder",
17
- "input.unit.week": "uke",
18
- "input.unit.weeks": "uker",
19
17
  "layout.actions.apply": "Bruk",
20
18
  "layout.actions.back": "Tilbake",
21
19
  "layout.actions.cancel": "Avbryt",
22
20
  "layout.actions.clear": "Tøm",
23
21
  "layout.actions.reset": "Tilbakestill",
24
- "shared.timePeriods.days": "{{count}} dag",
25
- "shared.timePeriods.days_plural": "{{count}} dager",
26
- "shared.timePeriods.hours": "{{count}} time",
27
- "shared.timePeriods.hours_plural": "{{count}} timer",
28
- "shared.timePeriods.months": "{{count}} måned",
29
- "shared.timePeriods.months_plural": "{{count}} måneder",
30
- "shared.timePeriods.today": "I dag",
31
- "shared.timePeriods.weeks": "{{count}} uke",
32
- "shared.timePeriods.weeks_plural": "{{count}} uker",
33
22
  "timeline.loadMore": "Click for more...",
34
23
  "trigger.customRange": "Egendefinert datointervall",
35
24
  "trigger.selectDateRange": "Velg datointervall"
@@ -1 +0,0 @@
1
- {"version":3,"file":"entry.js","sourceRoot":"","sources":["../../../../../libs/react/date-and-time-components/migrations/entry.ts"],"names":[],"mappings":"","sourcesContent":["export {};\n"]}