@seafile/seafile-calendar 0.0.29-alpha.2 → 0.0.29-alpha.4
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/assets/index.css +1177 -0
- package/es/Calendar.js +440 -0
- package/es/FullCalendar.js +182 -0
- package/es/MonthCalendar.js +135 -0
- package/es/Picker.js +245 -0
- package/es/RangeCalendar.js +876 -0
- package/es/calendar/CalendarFooter.js +93 -0
- package/es/calendar/CalendarHeader.js +257 -0
- package/es/calendar/CalendarRightPanel.js +121 -0
- package/es/calendar/OkButton.js +22 -0
- package/es/calendar/TimePickerButton.js +28 -0
- package/es/calendar/TodayButton.js +28 -0
- package/es/date/DateConstants.js +19 -0
- package/es/date/DateInput.js +233 -0
- package/es/date/DateTBody.js +280 -0
- package/es/date/DateTHead.js +85 -0
- package/es/date/DateTable.js +32 -0
- package/es/decade/DecadePanel.js +181 -0
- package/es/full-calendar/CalendarHeader.js +180 -0
- package/es/index.js +3 -0
- package/es/locale/ar_EG.js +27 -0
- package/es/locale/bg_BG.js +27 -0
- package/es/locale/ca_ES.js +27 -0
- package/es/locale/cs_CZ.js +27 -0
- package/es/locale/da_DK.js +27 -0
- package/es/locale/de_DE.js +27 -0
- package/es/locale/el_GR.js +27 -0
- package/es/locale/en_GB.js +27 -0
- package/es/locale/en_US.js +28 -0
- package/es/locale/es_ES.js +27 -0
- package/es/locale/et_EE.js +27 -0
- package/es/locale/fa_IR.js +27 -0
- package/es/locale/fi_FI.js +27 -0
- package/es/locale/fr_BE.js +27 -0
- package/es/locale/fr_FR.js +27 -0
- package/es/locale/he_IL.js +28 -0
- package/es/locale/hi_IN.js +28 -0
- package/es/locale/hr_HR.js +28 -0
- package/es/locale/hu_HU.js +27 -0
- package/es/locale/id_ID.js +28 -0
- package/es/locale/is_IS.js +27 -0
- package/es/locale/it_IT.js +27 -0
- package/es/locale/ja_JP.js +26 -0
- package/es/locale/kn_IN.js +28 -0
- package/es/locale/ko_KR.js +27 -0
- package/es/locale/ku_IQ.js +27 -0
- package/es/locale/lv_LV.js +27 -0
- package/es/locale/mm_MM.js +28 -0
- package/es/locale/mn_MN.js +28 -0
- package/es/locale/ms_MY.js +27 -0
- package/es/locale/nb_NO.js +27 -0
- package/es/locale/nl_BE.js +27 -0
- package/es/locale/nl_NL.js +27 -0
- package/es/locale/pl_PL.js +27 -0
- package/es/locale/pt_BR.js +27 -0
- package/es/locale/pt_PT.js +27 -0
- package/es/locale/ro_RO.js +28 -0
- package/es/locale/ru_RU.js +27 -0
- package/es/locale/sk_SK.js +27 -0
- package/es/locale/sl_SI.js +27 -0
- package/es/locale/sr_RS.js +27 -0
- package/es/locale/sv_SE.js +27 -0
- package/es/locale/ta_IN.js +28 -0
- package/es/locale/th_TH.js +27 -0
- package/es/locale/tr_TR.js +27 -0
- package/es/locale/ug_CN.js +26 -0
- package/es/locale/uk_UA.js +27 -0
- package/es/locale/vi_VN.js +28 -0
- package/es/locale/zh_CN.js +27 -0
- package/es/locale/zh_TW.js +26 -0
- package/es/mixin/CalendarMixin.js +123 -0
- package/es/mixin/CommonMixin.js +85 -0
- package/es/month/MonthPanel.js +154 -0
- package/es/month/MonthTable.js +156 -0
- package/es/picker/placements.js +35 -0
- package/es/range-calendar/CalendarPart.js +151 -0
- package/es/util/dayjs.js +17 -0
- package/es/util/index.js +105 -0
- package/es/util/toTime.js +21 -0
- package/es/year/YearPanel.js +194 -0
- package/lib/Calendar.js +503 -0
- package/lib/FullCalendar.js +221 -0
- package/lib/MonthCalendar.js +172 -0
- package/lib/Picker.js +282 -0
- package/lib/RangeCalendar.js +925 -0
- package/lib/calendar/CalendarFooter.js +134 -0
- package/lib/calendar/CalendarHeader.js +290 -0
- package/lib/calendar/CalendarRightPanel.js +145 -0
- package/lib/calendar/OkButton.js +32 -0
- package/lib/calendar/TimePickerButton.js +41 -0
- package/lib/calendar/TodayButton.js +39 -0
- package/lib/date/DateConstants.js +23 -0
- package/lib/date/DateInput.js +265 -0
- package/lib/date/DateTBody.js +307 -0
- package/lib/date/DateTHead.js +105 -0
- package/lib/date/DateTable.js +54 -0
- package/lib/decade/DecadePanel.js +207 -0
- package/lib/full-calendar/CalendarHeader.js +201 -0
- package/lib/index.js +12 -0
- package/lib/locale/ar_EG.js +31 -0
- package/lib/locale/bg_BG.js +31 -0
- package/lib/locale/ca_ES.js +31 -0
- package/lib/locale/cs_CZ.js +31 -0
- package/lib/locale/da_DK.js +31 -0
- package/lib/locale/de_DE.js +31 -0
- package/lib/locale/el_GR.js +31 -0
- package/lib/locale/en_GB.js +31 -0
- package/lib/locale/en_US.js +32 -0
- package/lib/locale/es_ES.js +31 -0
- package/lib/locale/et_EE.js +31 -0
- package/lib/locale/fa_IR.js +31 -0
- package/lib/locale/fi_FI.js +31 -0
- package/lib/locale/fr_BE.js +31 -0
- package/lib/locale/fr_FR.js +31 -0
- package/lib/locale/he_IL.js +32 -0
- package/lib/locale/hi_IN.js +32 -0
- package/lib/locale/hr_HR.js +32 -0
- package/lib/locale/hu_HU.js +31 -0
- package/lib/locale/id_ID.js +32 -0
- package/lib/locale/is_IS.js +31 -0
- package/lib/locale/it_IT.js +31 -0
- package/lib/locale/ja_JP.js +30 -0
- package/lib/locale/kn_IN.js +32 -0
- package/lib/locale/ko_KR.js +31 -0
- package/lib/locale/ku_IQ.js +31 -0
- package/lib/locale/lv_LV.js +31 -0
- package/lib/locale/mm_MM.js +32 -0
- package/lib/locale/mn_MN.js +32 -0
- package/lib/locale/ms_MY.js +31 -0
- package/lib/locale/nb_NO.js +31 -0
- package/lib/locale/nl_BE.js +31 -0
- package/lib/locale/nl_NL.js +31 -0
- package/lib/locale/pl_PL.js +31 -0
- package/lib/locale/pt_BR.js +31 -0
- package/lib/locale/pt_PT.js +31 -0
- package/lib/locale/ro_RO.js +32 -0
- package/lib/locale/ru_RU.js +31 -0
- package/lib/locale/sk_SK.js +31 -0
- package/lib/locale/sl_SI.js +31 -0
- package/lib/locale/sr_RS.js +31 -0
- package/lib/locale/sv_SE.js +31 -0
- package/lib/locale/ta_IN.js +32 -0
- package/lib/locale/th_TH.js +31 -0
- package/lib/locale/tr_TR.js +31 -0
- package/lib/locale/ug_CN.js +30 -0
- package/lib/locale/uk_UA.js +31 -0
- package/lib/locale/vi_VN.js +32 -0
- package/lib/locale/zh_CN.js +31 -0
- package/lib/locale/zh_TW.js +30 -0
- package/lib/mixin/CalendarMixin.js +153 -0
- package/lib/mixin/CommonMixin.js +106 -0
- package/lib/month/MonthPanel.js +179 -0
- package/lib/month/MonthTable.js +181 -0
- package/lib/picker/placements.js +39 -0
- package/lib/range-calendar/CalendarPart.js +184 -0
- package/lib/util/dayjs.js +46 -0
- package/lib/util/index.js +130 -0
- package/lib/util/toTime.js +28 -0
- package/lib/year/YearPanel.js +219 -0
- package/package.json +1 -1
@@ -0,0 +1,31 @@
|
|
1
|
+
'use strict';
|
2
|
+
|
3
|
+
exports.__esModule = true;
|
4
|
+
exports['default'] = {
|
5
|
+
today: 'Σήμερα',
|
6
|
+
now: 'Τώρα',
|
7
|
+
backToToday: 'Πίσω στη σημερινή μέρα',
|
8
|
+
ok: 'Ok',
|
9
|
+
clear: 'Καθαρισμός',
|
10
|
+
month: 'Μήνας',
|
11
|
+
year: 'Έτος',
|
12
|
+
timeSelect: 'Επιλογή ώρας',
|
13
|
+
dateSelect: 'Επιλογή ημερομηνίας',
|
14
|
+
monthSelect: 'Επιλογή μήνα',
|
15
|
+
yearSelect: 'Επιλογή έτους',
|
16
|
+
decadeSelect: 'Επιλογή δεκαετίας',
|
17
|
+
yearFormat: 'YYYY',
|
18
|
+
dateFormat: 'D/M/YYYY',
|
19
|
+
dayFormat: 'D',
|
20
|
+
dateTimeFormat: 'D/M/YYYY HH:mm:ss',
|
21
|
+
monthBeforeYear: true,
|
22
|
+
previousMonth: 'Προηγούμενος μήνας (PageUp)',
|
23
|
+
nextMonth: 'Επόμενος μήνας (PageDown)',
|
24
|
+
previousYear: 'Προηγούμενο έτος (Control + αριστερά)',
|
25
|
+
nextYear: 'Επόμενο έτος (Control + δεξιά)',
|
26
|
+
previousDecade: 'Προηγούμενη δεκαετία',
|
27
|
+
nextDecade: 'Επόμενη δεκαετία',
|
28
|
+
previousCentury: 'Προηγούμενος αιώνας',
|
29
|
+
nextCentury: 'Επόμενος αιώνας'
|
30
|
+
};
|
31
|
+
module.exports = exports['default'];
|
@@ -0,0 +1,31 @@
|
|
1
|
+
'use strict';
|
2
|
+
|
3
|
+
exports.__esModule = true;
|
4
|
+
exports['default'] = {
|
5
|
+
today: 'Today',
|
6
|
+
now: 'Now',
|
7
|
+
backToToday: 'Back to today',
|
8
|
+
ok: 'Ok',
|
9
|
+
clear: 'Clear',
|
10
|
+
month: 'Month',
|
11
|
+
year: 'Year',
|
12
|
+
timeSelect: 'Select time',
|
13
|
+
dateSelect: 'Select date',
|
14
|
+
monthSelect: 'Choose a month',
|
15
|
+
yearSelect: 'Choose a year',
|
16
|
+
decadeSelect: 'Choose a decade',
|
17
|
+
yearFormat: 'YYYY',
|
18
|
+
dateFormat: 'D/M/YYYY',
|
19
|
+
dayFormat: 'D',
|
20
|
+
dateTimeFormat: 'D/M/YYYY HH:mm:ss',
|
21
|
+
monthBeforeYear: true,
|
22
|
+
previousMonth: 'Previous month (PageUp)',
|
23
|
+
nextMonth: 'Next month (PageDown)',
|
24
|
+
previousYear: 'Last year (Control + left)',
|
25
|
+
nextYear: 'Next year (Control + right)',
|
26
|
+
previousDecade: 'Last decade',
|
27
|
+
nextDecade: 'Next decade',
|
28
|
+
previousCentury: 'Last century',
|
29
|
+
nextCentury: 'Next century'
|
30
|
+
};
|
31
|
+
module.exports = exports['default'];
|
@@ -0,0 +1,32 @@
|
|
1
|
+
'use strict';
|
2
|
+
|
3
|
+
exports.__esModule = true;
|
4
|
+
exports['default'] = {
|
5
|
+
today: 'Today',
|
6
|
+
now: 'Now',
|
7
|
+
backToToday: 'Back to today',
|
8
|
+
ok: 'Ok',
|
9
|
+
clear: 'Clear',
|
10
|
+
month: 'Month',
|
11
|
+
year: 'Year',
|
12
|
+
timeSelect: 'select time',
|
13
|
+
dateSelect: 'select date',
|
14
|
+
weekSelect: 'Choose a week',
|
15
|
+
monthSelect: 'Choose a month',
|
16
|
+
yearSelect: 'Choose a year',
|
17
|
+
decadeSelect: 'Choose a decade',
|
18
|
+
yearFormat: 'YYYY',
|
19
|
+
dateFormat: 'M/D/YYYY',
|
20
|
+
dayFormat: 'D',
|
21
|
+
dateTimeFormat: 'M/D/YYYY HH:mm:ss',
|
22
|
+
monthBeforeYear: true,
|
23
|
+
previousMonth: 'Previous month (PageUp)',
|
24
|
+
nextMonth: 'Next month (PageDown)',
|
25
|
+
previousYear: 'Last year (Control + left)',
|
26
|
+
nextYear: 'Next year (Control + right)',
|
27
|
+
previousDecade: 'Last decade',
|
28
|
+
nextDecade: 'Next decade',
|
29
|
+
previousCentury: 'Last century',
|
30
|
+
nextCentury: 'Next century'
|
31
|
+
};
|
32
|
+
module.exports = exports['default'];
|
@@ -0,0 +1,31 @@
|
|
1
|
+
'use strict';
|
2
|
+
|
3
|
+
exports.__esModule = true;
|
4
|
+
exports['default'] = {
|
5
|
+
today: 'Hoy',
|
6
|
+
now: 'Ahora',
|
7
|
+
backToToday: 'Volver a hoy',
|
8
|
+
ok: 'Aceptar',
|
9
|
+
clear: 'Limpiar',
|
10
|
+
month: 'Mes',
|
11
|
+
year: 'Año',
|
12
|
+
timeSelect: 'Seleccionar hora',
|
13
|
+
dateSelect: 'Seleccionar fecha',
|
14
|
+
monthSelect: 'Elegir un mes',
|
15
|
+
yearSelect: 'Elegir un año',
|
16
|
+
decadeSelect: 'Elegir una década',
|
17
|
+
yearFormat: 'YYYY',
|
18
|
+
dateFormat: 'D/M/YYYY',
|
19
|
+
dayFormat: 'D',
|
20
|
+
dateTimeFormat: 'D/M/YYYY HH:mm:ss',
|
21
|
+
monthBeforeYear: true,
|
22
|
+
previousMonth: 'Mes anterior (PageUp)',
|
23
|
+
nextMonth: 'Mes siguiente (PageDown)',
|
24
|
+
previousYear: 'Año anterior (Control + left)',
|
25
|
+
nextYear: 'Año siguiente (Control + right)',
|
26
|
+
previousDecade: 'Década anterior',
|
27
|
+
nextDecade: 'Década siguiente',
|
28
|
+
previousCentury: 'Siglo anterior',
|
29
|
+
nextCentury: 'Siglo siguiente'
|
30
|
+
};
|
31
|
+
module.exports = exports['default'];
|
@@ -0,0 +1,31 @@
|
|
1
|
+
'use strict';
|
2
|
+
|
3
|
+
exports.__esModule = true;
|
4
|
+
exports['default'] = {
|
5
|
+
today: 'Täna',
|
6
|
+
now: 'Praegu',
|
7
|
+
backToToday: 'Tagasi tänase juurde',
|
8
|
+
ok: 'Ok',
|
9
|
+
clear: 'Tühista',
|
10
|
+
month: 'Kuu',
|
11
|
+
year: 'Aasta',
|
12
|
+
timeSelect: 'Vali aeg',
|
13
|
+
dateSelect: 'Vali kuupäev',
|
14
|
+
monthSelect: 'Vali kuu',
|
15
|
+
yearSelect: 'Vali aasta',
|
16
|
+
decadeSelect: 'Vali dekaad',
|
17
|
+
yearFormat: 'YYYY',
|
18
|
+
dateFormat: 'D.M.YYYY',
|
19
|
+
dayFormat: 'D',
|
20
|
+
dateTimeFormat: 'D.M.YYYY HH:mm:ss',
|
21
|
+
monthBeforeYear: true,
|
22
|
+
previousMonth: 'Eelmine kuu (PageUp)',
|
23
|
+
nextMonth: 'Järgmine kuu (PageDown)',
|
24
|
+
previousYear: 'Eelmine aasta (Control + left)',
|
25
|
+
nextYear: 'Järgmine aasta (Control + right)',
|
26
|
+
previousDecade: 'Eelmine dekaad',
|
27
|
+
nextDecade: 'Järgmine dekaad',
|
28
|
+
previousCentury: 'Eelmine sajand',
|
29
|
+
nextCentury: 'Järgmine sajand'
|
30
|
+
};
|
31
|
+
module.exports = exports['default'];
|
@@ -0,0 +1,31 @@
|
|
1
|
+
'use strict';
|
2
|
+
|
3
|
+
exports.__esModule = true;
|
4
|
+
exports['default'] = {
|
5
|
+
today: 'امروز',
|
6
|
+
now: 'اکنون',
|
7
|
+
backToToday: 'بازگشت به روز',
|
8
|
+
ok: 'باشه',
|
9
|
+
clear: 'پاک کردن',
|
10
|
+
month: 'ماه',
|
11
|
+
year: 'سال',
|
12
|
+
timeSelect: 'انتخاب زمان',
|
13
|
+
dateSelect: 'انتخاب تاریخ',
|
14
|
+
monthSelect: 'یک ماه را انتخاب کنید',
|
15
|
+
yearSelect: 'یک سال را انتخاب کنید',
|
16
|
+
decadeSelect: 'یک دهه را انتخاب کنید',
|
17
|
+
yearFormat: 'YYYY',
|
18
|
+
dateFormat: 'M/D/YYYY',
|
19
|
+
dayFormat: 'D',
|
20
|
+
dateTimeFormat: 'M/D/YYYY HH:mm:ss',
|
21
|
+
monthBeforeYear: true,
|
22
|
+
previousMonth: 'ماه قبل (PageUp)',
|
23
|
+
nextMonth: 'ماه بعد (PageDown)',
|
24
|
+
previousYear: 'سال قبل (Control + left)',
|
25
|
+
nextYear: 'سال بعد (Control + right)',
|
26
|
+
previousDecade: 'دهه قبل',
|
27
|
+
nextDecade: 'دهه بعد',
|
28
|
+
previousCentury: 'قرن قبل',
|
29
|
+
nextCentury: 'قرن بعد'
|
30
|
+
};
|
31
|
+
module.exports = exports['default'];
|
@@ -0,0 +1,31 @@
|
|
1
|
+
'use strict';
|
2
|
+
|
3
|
+
exports.__esModule = true;
|
4
|
+
exports['default'] = {
|
5
|
+
today: 'Tänään',
|
6
|
+
now: 'Nyt',
|
7
|
+
backToToday: 'Tämä päivä',
|
8
|
+
ok: 'Ok',
|
9
|
+
clear: 'Tyhjennä',
|
10
|
+
month: 'Kuukausi',
|
11
|
+
year: 'Vuosi',
|
12
|
+
timeSelect: 'Valise aika',
|
13
|
+
dateSelect: 'Valitse päivä',
|
14
|
+
monthSelect: 'Valitse kuukausi',
|
15
|
+
yearSelect: 'Valitse vuosi',
|
16
|
+
decadeSelect: 'Valitse vuosikymmen',
|
17
|
+
yearFormat: 'YYYY',
|
18
|
+
dateFormat: 'D.M.YYYY',
|
19
|
+
dayFormat: 'D',
|
20
|
+
dateTimeFormat: 'D.M.YYYY HH:mm:ss',
|
21
|
+
monthBeforeYear: true,
|
22
|
+
previousMonth: 'Edellinen kuukausi (PageUp)',
|
23
|
+
nextMonth: 'Seuraava kuukausi (PageDown)',
|
24
|
+
previousYear: 'Edellinen vuosi (Control + left)',
|
25
|
+
nextYear: 'Seuraava vuosi (Control + right)',
|
26
|
+
previousDecade: 'Edellinen vuosikymmen',
|
27
|
+
nextDecade: 'Seuraava vuosikymmen',
|
28
|
+
previousCentury: 'Edellinen vuosisata',
|
29
|
+
nextCentury: 'Seuraava vuosisata'
|
30
|
+
};
|
31
|
+
module.exports = exports['default'];
|
@@ -0,0 +1,31 @@
|
|
1
|
+
'use strict';
|
2
|
+
|
3
|
+
exports.__esModule = true;
|
4
|
+
exports['default'] = {
|
5
|
+
today: 'Aujourd\'hui',
|
6
|
+
now: 'Maintenant',
|
7
|
+
backToToday: 'Aujourd\'hui',
|
8
|
+
ok: 'Ok',
|
9
|
+
clear: 'Rétablir',
|
10
|
+
month: 'Mois',
|
11
|
+
year: 'Année',
|
12
|
+
timeSelect: 'Sélectionner l\'heure',
|
13
|
+
dateSelect: 'Sélectionner l\'heure',
|
14
|
+
monthSelect: 'Choisissez un mois',
|
15
|
+
yearSelect: 'Choisissez une année',
|
16
|
+
decadeSelect: 'Choisissez une décennie',
|
17
|
+
yearFormat: 'YYYY',
|
18
|
+
dateFormat: 'D/M/YYYY',
|
19
|
+
dayFormat: 'D',
|
20
|
+
dateTimeFormat: 'D/M/YYYY HH:mm:ss',
|
21
|
+
monthBeforeYear: true,
|
22
|
+
previousMonth: 'Mois précédent (PageUp)',
|
23
|
+
nextMonth: 'Mois suivant (PageDown)',
|
24
|
+
previousYear: 'Année précédente (Ctrl + gauche)',
|
25
|
+
nextYear: 'Année prochaine (Ctrl + droite)',
|
26
|
+
previousDecade: 'Décennie précédente',
|
27
|
+
nextDecade: 'Décennie suivante',
|
28
|
+
previousCentury: 'Siècle précédent',
|
29
|
+
nextCentury: 'Siècle suivant'
|
30
|
+
};
|
31
|
+
module.exports = exports['default'];
|
@@ -0,0 +1,31 @@
|
|
1
|
+
'use strict';
|
2
|
+
|
3
|
+
exports.__esModule = true;
|
4
|
+
exports['default'] = {
|
5
|
+
today: 'Aujourd\'hui',
|
6
|
+
now: 'Maintenant',
|
7
|
+
backToToday: 'Aujourd\'hui',
|
8
|
+
ok: 'Ok',
|
9
|
+
clear: 'Rétablir',
|
10
|
+
month: 'Mois',
|
11
|
+
year: 'Année',
|
12
|
+
timeSelect: 'Sélectionner l\'heure',
|
13
|
+
dateSelect: 'Sélectionner la date',
|
14
|
+
monthSelect: 'Choisissez un mois',
|
15
|
+
yearSelect: 'Choisissez une année',
|
16
|
+
decadeSelect: 'Choisissez une décennie',
|
17
|
+
yearFormat: 'YYYY',
|
18
|
+
dateFormat: 'DD/MM/YYYY',
|
19
|
+
dayFormat: 'DD',
|
20
|
+
dateTimeFormat: 'DD/MM/YYYY HH:mm:ss',
|
21
|
+
monthBeforeYear: true,
|
22
|
+
previousMonth: 'Mois précédent (PageUp)',
|
23
|
+
nextMonth: 'Mois suivant (PageDown)',
|
24
|
+
previousYear: 'Année précédente (Ctrl + gauche)',
|
25
|
+
nextYear: 'Année prochaine (Ctrl + droite)',
|
26
|
+
previousDecade: 'Décennie précédente',
|
27
|
+
nextDecade: 'Décennie suivante',
|
28
|
+
previousCentury: 'Siècle précédent',
|
29
|
+
nextCentury: 'Siècle suivant'
|
30
|
+
};
|
31
|
+
module.exports = exports['default'];
|
@@ -0,0 +1,32 @@
|
|
1
|
+
'use strict';
|
2
|
+
|
3
|
+
exports.__esModule = true;
|
4
|
+
exports['default'] = {
|
5
|
+
today: 'היום',
|
6
|
+
now: 'עכשיו',
|
7
|
+
backToToday: 'חזור להיום',
|
8
|
+
ok: 'אישור',
|
9
|
+
clear: 'איפוס',
|
10
|
+
month: 'חודש',
|
11
|
+
year: 'שנה',
|
12
|
+
timeSelect: 'בחר שעה',
|
13
|
+
dateSelect: 'בחר תאריך',
|
14
|
+
weekSelect: 'בחר שבוע',
|
15
|
+
monthSelect: 'בחר חודש',
|
16
|
+
yearSelect: 'בחר שנה',
|
17
|
+
decadeSelect: 'בחר עשור',
|
18
|
+
yearFormat: 'YYYY',
|
19
|
+
dateFormat: 'M/D/YYYY',
|
20
|
+
dayFormat: 'D',
|
21
|
+
dateTimeFormat: 'M/D/YYYY HH:mm:ss',
|
22
|
+
monthBeforeYear: true,
|
23
|
+
previousMonth: 'חודש קודם (PageUp)',
|
24
|
+
nextMonth: 'חודש הבא (PageDown)',
|
25
|
+
previousYear: 'שנה שעברה (Control + left)',
|
26
|
+
nextYear: 'שנה הבאה (Control + right)',
|
27
|
+
previousDecade: 'העשור הקודם',
|
28
|
+
nextDecade: 'העשור הבא',
|
29
|
+
previousCentury: 'המאה הקודמת',
|
30
|
+
nextCentury: 'המאה הבאה'
|
31
|
+
};
|
32
|
+
module.exports = exports['default'];
|
@@ -0,0 +1,32 @@
|
|
1
|
+
'use strict';
|
2
|
+
|
3
|
+
exports.__esModule = true;
|
4
|
+
exports['default'] = {
|
5
|
+
today: 'आज',
|
6
|
+
now: 'अभी',
|
7
|
+
backToToday: 'आज तक',
|
8
|
+
ok: 'ठीक',
|
9
|
+
clear: 'स्पष्ट',
|
10
|
+
month: 'महीना',
|
11
|
+
year: 'साल',
|
12
|
+
timeSelect: 'समय का चयन करें',
|
13
|
+
dateSelect: 'तारीख़ चुनें',
|
14
|
+
weekSelect: 'एक सप्ताह चुनें',
|
15
|
+
monthSelect: 'एक महीना चुनें',
|
16
|
+
yearSelect: 'एक वर्ष चुनें',
|
17
|
+
decadeSelect: 'एक दशक चुनें',
|
18
|
+
yearFormat: 'YYYY',
|
19
|
+
dateFormat: 'M/D/YYYY',
|
20
|
+
dayFormat: 'D',
|
21
|
+
dateTimeFormat: 'M/D/YYYY HH:mm:ss',
|
22
|
+
monthBeforeYear: true,
|
23
|
+
previousMonth: 'पिछला महीना (पेजअप)',
|
24
|
+
nextMonth: 'अगले महीने (पेजडाउन)',
|
25
|
+
previousYear: 'पिछले साल (Ctrl + बाएं)',
|
26
|
+
nextYear: 'अगले साल (Ctrl + दाहिना)',
|
27
|
+
previousDecade: 'पिछला दशक',
|
28
|
+
nextDecade: 'अगले दशक',
|
29
|
+
previousCentury: 'पीछ्ली शताब्दी',
|
30
|
+
nextCentury: 'अगली सदी'
|
31
|
+
};
|
32
|
+
module.exports = exports['default'];
|
@@ -0,0 +1,32 @@
|
|
1
|
+
'use strict';
|
2
|
+
|
3
|
+
exports.__esModule = true;
|
4
|
+
exports['default'] = {
|
5
|
+
today: 'Danas',
|
6
|
+
now: 'Sad',
|
7
|
+
backToToday: 'Natrag na danas',
|
8
|
+
ok: 'Ok',
|
9
|
+
clear: 'Očisti',
|
10
|
+
month: 'Mjesec',
|
11
|
+
year: 'Godina',
|
12
|
+
timeSelect: 'odaberite vrijeme',
|
13
|
+
dateSelect: 'odaberite datum',
|
14
|
+
weekSelect: 'Odaberite tjedan',
|
15
|
+
monthSelect: 'Odaberite mjesec',
|
16
|
+
yearSelect: 'Odaberite godinu',
|
17
|
+
decadeSelect: 'Odaberite desetljeće',
|
18
|
+
yearFormat: 'YYYY',
|
19
|
+
dateFormat: 'D.M.YYYY',
|
20
|
+
dayFormat: 'D',
|
21
|
+
dateTimeFormat: 'D.M.YYYY HH:mm:ss',
|
22
|
+
monthBeforeYear: true,
|
23
|
+
previousMonth: 'Prošli mjesec (PageUp)',
|
24
|
+
nextMonth: 'Sljedeći mjesec (PageDown)',
|
25
|
+
previousYear: 'Prošla godina (Control + left)',
|
26
|
+
nextYear: 'Sljedeća godina (Control + right)',
|
27
|
+
previousDecade: 'Prošlo desetljeće',
|
28
|
+
nextDecade: 'Sljedeće desetljeće',
|
29
|
+
previousCentury: 'Prošlo stoljeće',
|
30
|
+
nextCentury: 'Sljedeće stoljeće'
|
31
|
+
};
|
32
|
+
module.exports = exports['default'];
|
@@ -0,0 +1,31 @@
|
|
1
|
+
'use strict';
|
2
|
+
|
3
|
+
exports.__esModule = true;
|
4
|
+
exports['default'] = {
|
5
|
+
today: 'Ma', // 'Today',
|
6
|
+
now: 'Most', // 'Now',
|
7
|
+
backToToday: 'Vissza a mai napra', // 'Back to today',
|
8
|
+
ok: 'Ok',
|
9
|
+
clear: 'Törlés', // 'Clear',
|
10
|
+
month: 'Hónap', // 'Month',
|
11
|
+
year: 'Év', // 'Year',
|
12
|
+
timeSelect: 'Időpont kiválasztása', // 'Select time',
|
13
|
+
dateSelect: 'Dátum kiválasztása', // 'Select date',
|
14
|
+
monthSelect: 'Hónap kiválasztása', // 'Choose a month',
|
15
|
+
yearSelect: 'Év kiválasztása', // 'Choose a year',
|
16
|
+
decadeSelect: 'Évtized kiválasztása', // 'Choose a decade',
|
17
|
+
yearFormat: 'YYYY',
|
18
|
+
dateFormat: 'YYYY/MM/DD', // 'M/D/YYYY',
|
19
|
+
dayFormat: 'DD', // 'D',
|
20
|
+
dateTimeFormat: 'YYYY/MM/DD HH:mm:ss', // 'M/D/YYYY HH:mm:ss',
|
21
|
+
monthBeforeYear: true,
|
22
|
+
previousMonth: 'Előző hónap (PageUp)', // 'Previous month (PageUp)',
|
23
|
+
nextMonth: 'Következő hónap (PageDown)', // 'Next month (PageDown)',
|
24
|
+
previousYear: 'Múlt év (Control + left)', // 'Last year (Control + left)',
|
25
|
+
nextYear: 'Jövő év (Control + right)', // 'Next year (Control + right)',
|
26
|
+
previousDecade: 'Előző évtized', // 'Last decade',
|
27
|
+
nextDecade: 'Következő évtized', // 'Next decade',
|
28
|
+
previousCentury: 'Múlt évszázad', // 'Last century',
|
29
|
+
nextCentury: 'Jövő évszázad' // 'Next century',
|
30
|
+
};
|
31
|
+
module.exports = exports['default'];
|
@@ -0,0 +1,32 @@
|
|
1
|
+
'use strict';
|
2
|
+
|
3
|
+
exports.__esModule = true;
|
4
|
+
exports['default'] = {
|
5
|
+
today: 'Hari ini',
|
6
|
+
now: 'Sekarang',
|
7
|
+
backToToday: 'Kembali ke hari ini',
|
8
|
+
ok: 'Baik',
|
9
|
+
clear: 'Bersih',
|
10
|
+
month: 'Bulan',
|
11
|
+
year: 'Tahun',
|
12
|
+
timeSelect: 'pilih waktu',
|
13
|
+
dateSelect: 'pilih tanggal',
|
14
|
+
weekSelect: 'Pilih satu minggu',
|
15
|
+
monthSelect: 'Pilih satu bulan',
|
16
|
+
yearSelect: 'Pilih satu tahun',
|
17
|
+
decadeSelect: 'Pilih satu dekade',
|
18
|
+
yearFormat: 'YYYY',
|
19
|
+
dateFormat: 'M/D/YYYY',
|
20
|
+
dayFormat: 'D',
|
21
|
+
dateTimeFormat: 'M/D/YYYY HH:mm:ss',
|
22
|
+
monthBeforeYear: true,
|
23
|
+
previousMonth: 'Bulan sebelumnya (PageUp)',
|
24
|
+
nextMonth: 'Bulan depan (PageDown)',
|
25
|
+
previousYear: 'Tahun lalu (Control + kiri)',
|
26
|
+
nextYear: 'Tahun depan (Kontrol + kanan)',
|
27
|
+
previousDecade: 'Dekade terakhir',
|
28
|
+
nextDecade: 'Dekade berikutnya',
|
29
|
+
previousCentury: 'Abad terakhir',
|
30
|
+
nextCentury: 'Abad berikutnya'
|
31
|
+
};
|
32
|
+
module.exports = exports['default'];
|
@@ -0,0 +1,31 @@
|
|
1
|
+
'use strict';
|
2
|
+
|
3
|
+
exports.__esModule = true;
|
4
|
+
exports['default'] = {
|
5
|
+
today: 'Í dag',
|
6
|
+
now: 'Núna',
|
7
|
+
backToToday: 'Til baka til dagsins í dag',
|
8
|
+
ok: 'Í lagi',
|
9
|
+
clear: 'Hreinsa',
|
10
|
+
month: 'Mánuður',
|
11
|
+
year: 'Ár',
|
12
|
+
timeSelect: 'Velja tíma',
|
13
|
+
dateSelect: 'Velja dag',
|
14
|
+
monthSelect: 'Velja mánuð',
|
15
|
+
yearSelect: 'Velja ár',
|
16
|
+
decadeSelect: 'Velja áratug',
|
17
|
+
yearFormat: 'YYYY',
|
18
|
+
dateFormat: 'D/M/YYYY',
|
19
|
+
dayFormat: 'D',
|
20
|
+
dateTimeFormat: 'D/M/YYYY HH:mm:ss',
|
21
|
+
monthBeforeYear: true,
|
22
|
+
previousMonth: 'Fyrri mánuður (PageUp)',
|
23
|
+
nextMonth: 'Næsti mánuður (PageDown)',
|
24
|
+
previousYear: 'Fyrra ár (Control + left)',
|
25
|
+
nextYear: 'Næsta ár (Control + right)',
|
26
|
+
previousDecade: 'Fyrri áratugur',
|
27
|
+
nextDecade: 'Næsti áratugur',
|
28
|
+
previousCentury: 'Fyrri öld',
|
29
|
+
nextCentury: 'Næsta öld'
|
30
|
+
};
|
31
|
+
module.exports = exports['default'];
|
@@ -0,0 +1,31 @@
|
|
1
|
+
'use strict';
|
2
|
+
|
3
|
+
exports.__esModule = true;
|
4
|
+
exports['default'] = {
|
5
|
+
today: 'Oggi',
|
6
|
+
now: 'Adesso',
|
7
|
+
backToToday: 'Torna ad oggi',
|
8
|
+
ok: 'Ok',
|
9
|
+
clear: 'Cancella',
|
10
|
+
month: 'Mese',
|
11
|
+
year: 'Anno',
|
12
|
+
timeSelect: 'Seleziona l\'ora',
|
13
|
+
dateSelect: 'Seleziona la data',
|
14
|
+
monthSelect: 'Seleziona il mese',
|
15
|
+
yearSelect: 'Seleziona l\'anno',
|
16
|
+
decadeSelect: 'Seleziona il decennio',
|
17
|
+
yearFormat: 'YYYY',
|
18
|
+
dateFormat: 'D/M/YYYY',
|
19
|
+
dayFormat: 'D',
|
20
|
+
dateTimeFormat: 'D/M/YYYY HH:mm:ss',
|
21
|
+
monthBeforeYear: true,
|
22
|
+
previousMonth: 'Il mese scorso (PageUp)',
|
23
|
+
nextMonth: 'Il prossimo mese (PageDown)',
|
24
|
+
previousYear: 'L\'anno scorso (Control + sinistra)',
|
25
|
+
nextYear: 'L\'anno prossimo (Control + destra)',
|
26
|
+
previousDecade: 'Ultimo decennio',
|
27
|
+
nextDecade: 'Prossimo decennio',
|
28
|
+
previousCentury: 'Secolo precedente',
|
29
|
+
nextCentury: 'Prossimo secolo'
|
30
|
+
};
|
31
|
+
module.exports = exports['default'];
|
@@ -0,0 +1,30 @@
|
|
1
|
+
'use strict';
|
2
|
+
|
3
|
+
exports.__esModule = true;
|
4
|
+
exports['default'] = {
|
5
|
+
today: '今日',
|
6
|
+
now: '現在時刻',
|
7
|
+
backToToday: '今日に戻る',
|
8
|
+
ok: '決定',
|
9
|
+
timeSelect: '時間を選択',
|
10
|
+
dateSelect: '日時を選択',
|
11
|
+
clear: 'クリア',
|
12
|
+
month: '月',
|
13
|
+
year: '年',
|
14
|
+
previousMonth: '前月 (ページアップキー)',
|
15
|
+
nextMonth: '翌月 (ページダウンキー)',
|
16
|
+
monthSelect: '月を選択',
|
17
|
+
yearSelect: '年を選択',
|
18
|
+
decadeSelect: '年代を選択',
|
19
|
+
yearFormat: 'YYYY年',
|
20
|
+
dayFormat: 'D日',
|
21
|
+
dateFormat: 'YYYY年M月D日',
|
22
|
+
dateTimeFormat: 'YYYY年M月D日 HH時mm分ss秒',
|
23
|
+
previousYear: '前年 (Controlを押しながら左キー)',
|
24
|
+
nextYear: '翌年 (Controlを押しながら右キー)',
|
25
|
+
previousDecade: '前の年代',
|
26
|
+
nextDecade: '次の年代',
|
27
|
+
previousCentury: '前の世紀',
|
28
|
+
nextCentury: '次の世紀'
|
29
|
+
};
|
30
|
+
module.exports = exports['default'];
|
@@ -0,0 +1,32 @@
|
|
1
|
+
'use strict';
|
2
|
+
|
3
|
+
exports.__esModule = true;
|
4
|
+
exports['default'] = {
|
5
|
+
today: 'ಇಂದು',
|
6
|
+
now: 'ಈಗ',
|
7
|
+
backToToday: 'ಇಂದು ಹಿಂದಿರುಗಿ',
|
8
|
+
ok: 'ಸರಿ',
|
9
|
+
clear: 'ಸ್ಪಷ್ಟ',
|
10
|
+
month: 'ತಿಂಗಳು',
|
11
|
+
year: 'ವರ್ಷ',
|
12
|
+
timeSelect: 'ಸಮಯ ಆಯ್ಕೆಮಾಡಿ',
|
13
|
+
dateSelect: 'ದಿನಾಂಕವನ್ನು ಆಯ್ಕೆ ಮಾಡಿ',
|
14
|
+
weekSelect: 'ಒಂದು ವಾರದ ಆರಿಸಿ',
|
15
|
+
monthSelect: 'ಒಂದು ತಿಂಗಳು ಆಯ್ಕೆಮಾಡಿ',
|
16
|
+
yearSelect: 'ಒಂದು ವರ್ಷ ಆರಿಸಿ',
|
17
|
+
decadeSelect: 'ಒಂದು ದಶಕದ ಆಯ್ಕೆಮಾಡಿ',
|
18
|
+
yearFormat: 'YYYY',
|
19
|
+
dateFormat: 'M/D/YYYY',
|
20
|
+
dayFormat: 'D',
|
21
|
+
dateTimeFormat: 'M/D/YYYY HH:mm:ss',
|
22
|
+
monthBeforeYear: true,
|
23
|
+
previousMonth: 'ಹಿಂದಿನ ತಿಂಗಳು (ಪೇಜ್ಅಪ್)',
|
24
|
+
nextMonth: 'ಮುಂದಿನ ತಿಂಗಳು (ಪೇಜ್ಡೌನ್)',
|
25
|
+
previousYear: 'ಕಳೆದ ವರ್ಷ (Ctrl + ಎಡ)',
|
26
|
+
nextYear: 'ಮುಂದಿನ ವರ್ಷ (Ctrl + ಬಲ)',
|
27
|
+
previousDecade: 'ಕಳೆದ ದಶಕ',
|
28
|
+
nextDecade: 'ಮುಂದಿನ ದಶಕ',
|
29
|
+
previousCentury: 'ಕಳೆದ ಶತಮಾನ',
|
30
|
+
nextCentury: 'ಮುಂದಿನ ಶತಮಾನ'
|
31
|
+
};
|
32
|
+
module.exports = exports['default'];
|
@@ -0,0 +1,31 @@
|
|
1
|
+
'use strict';
|
2
|
+
|
3
|
+
exports.__esModule = true;
|
4
|
+
exports['default'] = {
|
5
|
+
today: '오늘',
|
6
|
+
now: '현재 시각',
|
7
|
+
backToToday: '오늘로 돌아가기',
|
8
|
+
ok: '확인',
|
9
|
+
clear: '지우기',
|
10
|
+
month: '월',
|
11
|
+
year: '년',
|
12
|
+
timeSelect: '시간 선택',
|
13
|
+
dateSelect: '날짜 선택',
|
14
|
+
monthSelect: '달 선택',
|
15
|
+
yearSelect: '연 선택',
|
16
|
+
decadeSelect: '연대 선택',
|
17
|
+
yearFormat: 'YYYY년',
|
18
|
+
dateFormat: 'YYYY-MM-DD',
|
19
|
+
dayFormat: 'Do',
|
20
|
+
dateTimeFormat: 'YYYY-MM-DD HH:mm:ss',
|
21
|
+
monthBeforeYear: false,
|
22
|
+
previousMonth: '이전 달 (PageUp)',
|
23
|
+
nextMonth: '다음 달 (PageDown)',
|
24
|
+
previousYear: '이전 해 (Control + left)',
|
25
|
+
nextYear: '다음 해 (Control + right)',
|
26
|
+
previousDecade: '이전 연대',
|
27
|
+
nextDecade: '다음 연대',
|
28
|
+
previousCentury: '이전 세기',
|
29
|
+
nextCentury: '다음 세기'
|
30
|
+
};
|
31
|
+
module.exports = exports['default'];
|
@@ -0,0 +1,31 @@
|
|
1
|
+
'use strict';
|
2
|
+
|
3
|
+
exports.__esModule = true;
|
4
|
+
exports['default'] = {
|
5
|
+
today: 'Îro',
|
6
|
+
now: 'Niha',
|
7
|
+
backToToday: 'Vegere îro',
|
8
|
+
ok: 'Temam',
|
9
|
+
clear: 'Paqij bike',
|
10
|
+
month: 'Meh',
|
11
|
+
year: 'Sal',
|
12
|
+
timeSelect: 'Demê hilbijêre',
|
13
|
+
dateSelect: 'Dîrok hilbijêre',
|
14
|
+
monthSelect: 'Meh hilbijêre',
|
15
|
+
yearSelect: 'Sal hilbijêre',
|
16
|
+
decadeSelect: 'Dehsal hilbijêre',
|
17
|
+
yearFormat: 'YYYY',
|
18
|
+
dateFormat: 'D/M/YYYY',
|
19
|
+
dayFormat: 'D',
|
20
|
+
dateTimeFormat: 'D/M/YYYY HH:mm:ss',
|
21
|
+
monthBeforeYear: true,
|
22
|
+
previousMonth: 'Meha peş (PageUp))',
|
23
|
+
nextMonth: 'Meha paş (PageDown)',
|
24
|
+
previousYear: 'Sala peş (Control + şep)',
|
25
|
+
nextYear: 'Sala paş (Control + rast)',
|
26
|
+
previousDecade: 'Dehsalen peş',
|
27
|
+
nextDecade: 'Dehsalen paş',
|
28
|
+
previousCentury: 'Sedsalen peş',
|
29
|
+
nextCentury: 'Sedsalen paş'
|
30
|
+
};
|
31
|
+
module.exports = exports['default'];
|