@seafile/seafile-calendar 0.0.29-alpha.2 → 0.0.29-alpha10
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/dist/rc-calendar.css +1179 -0
- package/dist/rc-calendar.css.map +1 -0
- package/dist/rc-calendar.js +7588 -0
- package/dist/rc-calendar.js.map +1 -0
- package/dist/rc-calendar.min.css +1179 -0
- package/dist/rc-calendar.min.css.map +1 -0
- package/dist/rc-calendar.min.js +1 -0
- package/es/Calendar.js +444 -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 +135 -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 +249 -0
- package/es/date/DateTBody.js +280 -0
- package/es/date/DateTHead.js +86 -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 +564 -0
- package/es/util/toTime.js +21 -0
- package/es/year/YearPanel.js +194 -0
- package/lib/Calendar.js +507 -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 +160 -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 +281 -0
- package/lib/date/DateTBody.js +307 -0
- package/lib/date/DateTHead.js +106 -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 +601 -0
- package/lib/util/toTime.js +28 -0
- package/lib/year/YearPanel.js +219 -0
- package/package.json +1 -1
@@ -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'];
|
@@ -0,0 +1,31 @@
|
|
1
|
+
'use strict';
|
2
|
+
|
3
|
+
exports.__esModule = true;
|
4
|
+
exports['default'] = {
|
5
|
+
today: 'Šodien',
|
6
|
+
now: 'Tagad',
|
7
|
+
backToToday: 'Atpakaļ pie šodienas',
|
8
|
+
ok: 'Ok',
|
9
|
+
clear: 'Skaidrs',
|
10
|
+
month: 'Mēnesis',
|
11
|
+
year: 'Gads',
|
12
|
+
timeSelect: 'Izvēlieties laiku',
|
13
|
+
dateSelect: 'Izvēlieties datumu',
|
14
|
+
monthSelect: 'Izvēlieties mēnesi',
|
15
|
+
yearSelect: 'Izvēlieties gadu',
|
16
|
+
decadeSelect: 'Izvēlieties desmit gadus',
|
17
|
+
yearFormat: 'YYYY',
|
18
|
+
dateFormat: 'D.M.YYYY',
|
19
|
+
dayFormat: 'D',
|
20
|
+
dateTimeFormat: 'D.M.YYYY HH:mm:ss',
|
21
|
+
monthBeforeYear: true,
|
22
|
+
previousMonth: 'Iepriekšējais mēnesis (PageUp)',
|
23
|
+
nextMonth: 'Nākammēnes (PageDown)',
|
24
|
+
previousYear: 'Pagājušais gads (Control + left)',
|
25
|
+
nextYear: 'Nākamgad (Control + right)',
|
26
|
+
previousDecade: 'Pēdējā desmitgadē',
|
27
|
+
nextDecade: 'Nākamā desmitgade',
|
28
|
+
previousCentury: 'Pagājušajā gadsimtā',
|
29
|
+
nextCentury: 'Nākamajā gadsimtā'
|
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: '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: 'Ok',
|
9
|
+
clear: 'Цэвэрлэх',
|
10
|
+
month: 'Сар',
|
11
|
+
year: 'Жил',
|
12
|
+
timeSelect: 'Цаг сонгох',
|
13
|
+
dateSelect: 'Огноо сонгох',
|
14
|
+
weekSelect: '7 хоног сонгох',
|
15
|
+
monthSelect: 'Сар сонгох',
|
16
|
+
yearSelect: 'Жил сонгох',
|
17
|
+
decadeSelect: 'Арван сонгох',
|
18
|
+
yearFormat: 'YYYY',
|
19
|
+
dateFormat: 'YYYY/MM/DD',
|
20
|
+
dayFormat: 'DD',
|
21
|
+
dateTimeFormat: 'YYYY/MM/DD 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,31 @@
|
|
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: 'Ok',
|
9
|
+
timeSelect: 'Pilih masa',
|
10
|
+
dateSelect: 'Pilih tarikh',
|
11
|
+
weekSelect: 'Pilih minggu',
|
12
|
+
clear: 'Padam',
|
13
|
+
month: 'Bulan',
|
14
|
+
year: 'Tahun',
|
15
|
+
previousMonth: 'Bulan lepas',
|
16
|
+
nextMonth: 'Bulan depan',
|
17
|
+
monthSelect: 'Pilih bulan',
|
18
|
+
yearSelect: 'Pilih tahun',
|
19
|
+
decadeSelect: 'Pilih dekad',
|
20
|
+
yearFormat: 'YYYY',
|
21
|
+
dayFormat: 'D',
|
22
|
+
dateFormat: 'M/D/YYYY',
|
23
|
+
dateTimeFormat: 'M/D/YYYY HH:mm:ss',
|
24
|
+
previousYear: 'Tahun lepas (Ctrl+left)',
|
25
|
+
nextYear: 'Tahun depan (Ctrl+right)',
|
26
|
+
previousDecade: 'Dekad lepas',
|
27
|
+
nextDecade: 'Dekad depan',
|
28
|
+
previousCentury: 'Abad lepas',
|
29
|
+
nextCentury: 'Abad depan'
|
30
|
+
};
|
31
|
+
module.exports = exports['default'];
|
@@ -0,0 +1,31 @@
|
|
1
|
+
'use strict';
|
2
|
+
|
3
|
+
exports.__esModule = true;
|
4
|
+
exports['default'] = {
|
5
|
+
today: 'I dag',
|
6
|
+
now: 'Nå',
|
7
|
+
backToToday: 'Gå til i dag',
|
8
|
+
ok: 'Ok',
|
9
|
+
clear: 'Annuller',
|
10
|
+
month: 'Måned',
|
11
|
+
year: 'År',
|
12
|
+
timeSelect: 'Velg tidspunkt',
|
13
|
+
dateSelect: 'Velg dato',
|
14
|
+
monthSelect: 'Velg måned',
|
15
|
+
yearSelect: 'Velg år',
|
16
|
+
decadeSelect: 'Velg årti',
|
17
|
+
yearFormat: 'YYYY',
|
18
|
+
dateFormat: 'DD.MM.YYYY',
|
19
|
+
dayFormat: 'DD',
|
20
|
+
dateTimeFormat: 'DD.MM.YYYY HH:mm:ss',
|
21
|
+
monthBeforeYear: true,
|
22
|
+
previousMonth: 'Forrige måned(PageUp)',
|
23
|
+
nextMonth: 'Neste måned (PageDown)',
|
24
|
+
previousYear: 'Forrige år (Control + left)',
|
25
|
+
nextYear: 'Neste år (Control + right)',
|
26
|
+
previousDecade: 'Forrige tiår',
|
27
|
+
nextDecade: 'Neste tiår',
|
28
|
+
previousCentury: 'Forrige århundre',
|
29
|
+
nextCentury: 'Neste århundre'
|
30
|
+
};
|
31
|
+
module.exports = exports['default'];
|
@@ -0,0 +1,31 @@
|
|
1
|
+
'use strict';
|
2
|
+
|
3
|
+
exports.__esModule = true;
|
4
|
+
exports['default'] = {
|
5
|
+
today: 'Vandaag',
|
6
|
+
now: 'Nu',
|
7
|
+
backToToday: 'Terug naar vandaag',
|
8
|
+
ok: 'Ok',
|
9
|
+
clear: 'Reset',
|
10
|
+
month: 'Maand',
|
11
|
+
year: 'Jaar',
|
12
|
+
timeSelect: 'Selecteer tijd',
|
13
|
+
dateSelect: 'Selecteer datum',
|
14
|
+
monthSelect: 'Kies een maand',
|
15
|
+
yearSelect: 'Kies een jaar',
|
16
|
+
decadeSelect: 'Kies een decennium',
|
17
|
+
yearFormat: 'YYYY',
|
18
|
+
dateFormat: 'D-M-YYYY',
|
19
|
+
dayFormat: 'D',
|
20
|
+
dateTimeFormat: 'D-M-YYYY HH:mm:ss',
|
21
|
+
monthBeforeYear: true,
|
22
|
+
previousMonth: 'Vorige maand (PageUp)',
|
23
|
+
nextMonth: 'Volgende maand (PageDown)',
|
24
|
+
previousYear: 'Vorig jaar (Control + left)',
|
25
|
+
nextYear: 'Volgend jaar (Control + right)',
|
26
|
+
previousDecade: 'Vorig decennium',
|
27
|
+
nextDecade: 'Volgend decennium',
|
28
|
+
previousCentury: 'Vorige eeuw',
|
29
|
+
nextCentury: 'Volgende eeuw'
|
30
|
+
};
|
31
|
+
module.exports = exports['default'];
|
@@ -0,0 +1,31 @@
|
|
1
|
+
'use strict';
|
2
|
+
|
3
|
+
exports.__esModule = true;
|
4
|
+
exports['default'] = {
|
5
|
+
today: 'Vandaag',
|
6
|
+
now: 'Nu',
|
7
|
+
backToToday: 'Terug naar vandaag',
|
8
|
+
ok: 'Ok',
|
9
|
+
clear: 'Reset',
|
10
|
+
month: 'Maand',
|
11
|
+
year: 'Jaar',
|
12
|
+
timeSelect: 'Selecteer tijd',
|
13
|
+
dateSelect: 'Selecteer datum',
|
14
|
+
monthSelect: 'Kies een maand',
|
15
|
+
yearSelect: 'Kies een jaar',
|
16
|
+
decadeSelect: 'Kies een decennium',
|
17
|
+
yearFormat: 'YYYY',
|
18
|
+
dateFormat: 'D-M-YYYY',
|
19
|
+
dayFormat: 'D',
|
20
|
+
dateTimeFormat: 'D-M-YYYY HH:mm:ss',
|
21
|
+
monthBeforeYear: true,
|
22
|
+
previousMonth: 'Vorige maand (PageUp)',
|
23
|
+
nextMonth: 'Volgende maand (PageDown)',
|
24
|
+
previousYear: 'Vorig jaar (Control + left)',
|
25
|
+
nextYear: 'Volgend jaar (Control + right)',
|
26
|
+
previousDecade: 'Vorig decennium',
|
27
|
+
nextDecade: 'Volgend decennium',
|
28
|
+
previousCentury: 'Vorige eeuw',
|
29
|
+
nextCentury: 'Volgende eeuw'
|
30
|
+
};
|
31
|
+
module.exports = exports['default'];
|
@@ -0,0 +1,31 @@
|
|
1
|
+
'use strict';
|
2
|
+
|
3
|
+
exports.__esModule = true;
|
4
|
+
exports['default'] = {
|
5
|
+
today: 'Dzisiaj',
|
6
|
+
now: 'Teraz',
|
7
|
+
backToToday: 'Ustaw dzisiaj',
|
8
|
+
ok: 'Ok',
|
9
|
+
clear: 'Wyczyść',
|
10
|
+
month: 'Miesiąc',
|
11
|
+
year: 'Rok',
|
12
|
+
timeSelect: 'Ustaw czas',
|
13
|
+
dateSelect: 'Ustaw datę',
|
14
|
+
monthSelect: 'Wybierz miesiąc',
|
15
|
+
yearSelect: 'Wybierz rok',
|
16
|
+
decadeSelect: 'Wybierz dekadę',
|
17
|
+
yearFormat: 'YYYY',
|
18
|
+
dateFormat: 'D/M/YYYY',
|
19
|
+
dayFormat: 'D',
|
20
|
+
dateTimeFormat: 'D/M/YYYY HH:mm:ss',
|
21
|
+
monthBeforeYear: true,
|
22
|
+
previousMonth: 'Poprzedni miesiąc (PageUp)',
|
23
|
+
nextMonth: 'Następny miesiąc (PageDown)',
|
24
|
+
previousYear: 'Ostatni rok (Ctrl + left)',
|
25
|
+
nextYear: 'Następny rok (Ctrl + right)',
|
26
|
+
previousDecade: 'Ostatnia dekada',
|
27
|
+
nextDecade: 'Następna dekada',
|
28
|
+
previousCentury: 'Ostatni wiek',
|
29
|
+
nextCentury: 'Następny wiek'
|
30
|
+
};
|
31
|
+
module.exports = exports['default'];
|
@@ -0,0 +1,31 @@
|
|
1
|
+
'use strict';
|
2
|
+
|
3
|
+
exports.__esModule = true;
|
4
|
+
exports['default'] = {
|
5
|
+
today: 'Hoje',
|
6
|
+
now: 'Agora',
|
7
|
+
backToToday: 'Voltar para hoje',
|
8
|
+
ok: 'Ok',
|
9
|
+
clear: 'Limpar',
|
10
|
+
month: 'Mês',
|
11
|
+
year: 'Ano',
|
12
|
+
timeSelect: 'Selecionar tempo',
|
13
|
+
dateSelect: 'Selecionar data',
|
14
|
+
monthSelect: 'Escolher mês',
|
15
|
+
yearSelect: 'Escolher ano',
|
16
|
+
decadeSelect: 'Escolher década',
|
17
|
+
yearFormat: 'YYYY',
|
18
|
+
dateFormat: 'D/M/YYYY',
|
19
|
+
dayFormat: 'D',
|
20
|
+
dateTimeFormat: 'D/M/YYYY HH:mm:ss',
|
21
|
+
monthBeforeYear: false,
|
22
|
+
previousMonth: 'Mês anterior (PageUp)',
|
23
|
+
nextMonth: 'Próximo mês (PageDown)',
|
24
|
+
previousYear: 'Ano anterior (Control + esquerda)',
|
25
|
+
nextYear: 'Próximo ano (Control + direita)',
|
26
|
+
previousDecade: 'Década anterior',
|
27
|
+
nextDecade: 'Próxima década',
|
28
|
+
previousCentury: 'Século anterior',
|
29
|
+
nextCentury: 'Próximo século'
|
30
|
+
};
|
31
|
+
module.exports = exports['default'];
|
@@ -0,0 +1,31 @@
|
|
1
|
+
'use strict';
|
2
|
+
|
3
|
+
exports.__esModule = true;
|
4
|
+
exports['default'] = {
|
5
|
+
today: 'Hoje',
|
6
|
+
now: 'Agora',
|
7
|
+
backToToday: 'Hoje',
|
8
|
+
ok: 'Ok',
|
9
|
+
clear: 'Limpar',
|
10
|
+
month: 'Mês',
|
11
|
+
year: 'Ano',
|
12
|
+
timeSelect: 'Selecionar hora',
|
13
|
+
dateSelect: 'Selecionar data',
|
14
|
+
monthSelect: 'Selecionar mês',
|
15
|
+
yearSelect: 'Selecionar ano',
|
16
|
+
decadeSelect: 'Selecionar 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: 'Mês anterior (PageUp)',
|
23
|
+
nextMonth: 'Mês seguinte (PageDown)',
|
24
|
+
previousYear: 'Ano anterior (Control + left)',
|
25
|
+
nextYear: 'Ano seguinte (Control + right)',
|
26
|
+
previousDecade: 'Década anterior',
|
27
|
+
nextDecade: 'Década seguinte',
|
28
|
+
previousCentury: 'Século anterior',
|
29
|
+
nextCentury: 'Século seguinte'
|
30
|
+
};
|
31
|
+
module.exports = exports['default'];
|
@@ -0,0 +1,32 @@
|
|
1
|
+
'use strict';
|
2
|
+
|
3
|
+
exports.__esModule = true;
|
4
|
+
exports['default'] = {
|
5
|
+
today: 'Azi',
|
6
|
+
now: 'Acum',
|
7
|
+
backToToday: 'Înapoi la azi',
|
8
|
+
ok: 'Ok',
|
9
|
+
clear: 'Șterge',
|
10
|
+
month: 'Lună',
|
11
|
+
year: 'An',
|
12
|
+
timeSelect: 'selectează timpul',
|
13
|
+
dateSelect: 'selectează data',
|
14
|
+
weekSelect: 'Alege o săptămână',
|
15
|
+
monthSelect: 'Alege o lună',
|
16
|
+
yearSelect: 'Alege un an',
|
17
|
+
decadeSelect: 'Alege un deceniu',
|
18
|
+
yearFormat: 'YYYY',
|
19
|
+
dateFormat: 'D/M/YYYY',
|
20
|
+
dayFormat: 'D',
|
21
|
+
dateTimeFormat: 'D/M/YYYY HH:mm:ss',
|
22
|
+
monthBeforeYear: true,
|
23
|
+
previousMonth: 'Luna anterioară (PageUp)',
|
24
|
+
nextMonth: 'Luna următoare (PageDown)',
|
25
|
+
previousYear: 'Anul anterior (Control + stânga)',
|
26
|
+
nextYear: 'Anul următor (Control + dreapta)',
|
27
|
+
previousDecade: 'Deceniul anterior',
|
28
|
+
nextDecade: 'Deceniul următor',
|
29
|
+
previousCentury: 'Secolul anterior',
|
30
|
+
nextCentury: 'Secolul următor'
|
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: '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 + 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: 'Dnes',
|
6
|
+
now: 'Teraz',
|
7
|
+
backToToday: 'Späť na dnes',
|
8
|
+
ok: 'Ok',
|
9
|
+
clear: 'Vymazať',
|
10
|
+
month: 'Mesiac',
|
11
|
+
year: 'Rok',
|
12
|
+
timeSelect: 'Vybrať čas',
|
13
|
+
dateSelect: 'Vybrať dátum',
|
14
|
+
monthSelect: 'Vybrať mesiac',
|
15
|
+
yearSelect: 'Vybrať rok',
|
16
|
+
decadeSelect: 'Vybrať dekádu',
|
17
|
+
yearFormat: 'YYYY',
|
18
|
+
dateFormat: 'D.M.YYYY',
|
19
|
+
dayFormat: 'D',
|
20
|
+
dateTimeFormat: 'D.M.YYYY HH:mm:ss',
|
21
|
+
monthBeforeYear: true,
|
22
|
+
previousMonth: 'Predchádzajúci mesiac (PageUp)',
|
23
|
+
nextMonth: 'Nasledujúci mesiac (PageDown)',
|
24
|
+
previousYear: 'Predchádzajúci rok (Control + left)',
|
25
|
+
nextYear: 'Nasledujúci rok (Control + right)',
|
26
|
+
previousDecade: 'Predchádzajúca dekáda',
|
27
|
+
nextDecade: 'Nasledujúca dekáda',
|
28
|
+
previousCentury: 'Predchádzajúce storočie',
|
29
|
+
nextCentury: 'Nasledujúce storočie'
|
30
|
+
};
|
31
|
+
module.exports = exports['default'];
|
@@ -0,0 +1,31 @@
|
|
1
|
+
'use strict';
|
2
|
+
|
3
|
+
exports.__esModule = true;
|
4
|
+
exports['default'] = {
|
5
|
+
today: 'Danes',
|
6
|
+
now: 'Trenutno',
|
7
|
+
backToToday: 'Nazaj na danes',
|
8
|
+
ok: 'V redu',
|
9
|
+
clear: 'Počisti',
|
10
|
+
month: 'Mesec',
|
11
|
+
year: 'Leto',
|
12
|
+
timeSelect: 'Izberite čas',
|
13
|
+
dateSelect: 'Izberite datum',
|
14
|
+
monthSelect: 'Izberite mesec',
|
15
|
+
yearSelect: 'Izberite leto',
|
16
|
+
decadeSelect: 'Izberite desetletje',
|
17
|
+
yearFormat: 'YYYY',
|
18
|
+
dateFormat: 'DD.MM.YYYY',
|
19
|
+
dayFormat: 'D',
|
20
|
+
dateTimeFormat: 'DD.MM.YYYY HH:mm:ss',
|
21
|
+
monthBeforeYear: true,
|
22
|
+
previousMonth: 'Prejšnji mesec (PageUp)',
|
23
|
+
nextMonth: 'Naslednji mesec (PageDown)',
|
24
|
+
previousYear: 'Prejšnje leto (Control + left)',
|
25
|
+
nextYear: 'Naslednje leto (Control + right)',
|
26
|
+
previousDecade: 'Prejšnje desetletje',
|
27
|
+
nextDecade: 'Naslednje desetletje',
|
28
|
+
previousCentury: 'Prejšnje stoletje',
|
29
|
+
nextCentury: 'Naslednje stoletje'
|
30
|
+
};
|
31
|
+
module.exports = exports['default'];
|
@@ -0,0 +1,31 @@
|
|
1
|
+
'use strict';
|
2
|
+
|
3
|
+
exports.__esModule = true;
|
4
|
+
exports['default'] = {
|
5
|
+
today: 'Danas',
|
6
|
+
now: 'Sada',
|
7
|
+
backToToday: 'Vrati se na danas',
|
8
|
+
ok: 'U redu',
|
9
|
+
clear: 'Obriši',
|
10
|
+
month: 'Mesec',
|
11
|
+
year: 'Godina',
|
12
|
+
timeSelect: 'Izaberi vreme',
|
13
|
+
dateSelect: 'Izaberi datum',
|
14
|
+
monthSelect: 'Izaberi mesec',
|
15
|
+
yearSelect: 'Izaberi godinu',
|
16
|
+
decadeSelect: 'Izaberi deceniju',
|
17
|
+
yearFormat: 'YYYY',
|
18
|
+
dateFormat: 'DD.MM.YYYY',
|
19
|
+
dayFormat: 'D',
|
20
|
+
dateTimeFormat: 'DD.MM.YYYY HH:mm:ss',
|
21
|
+
monthBeforeYear: true,
|
22
|
+
previousMonth: 'Prethodni mesec (PageUp)',
|
23
|
+
nextMonth: 'Sledeći mesec (PageDown)',
|
24
|
+
previousYear: 'Prethodna godina (Control + left)',
|
25
|
+
nextYear: 'Sledeća godina (Control + right)',
|
26
|
+
previousDecade: 'Prethodna decenija',
|
27
|
+
nextDecade: 'Sledeća decenija',
|
28
|
+
previousCentury: 'Prethodni vek',
|
29
|
+
nextCentury: 'Sledeći vek'
|
30
|
+
};
|
31
|
+
module.exports = exports['default'];
|
@@ -0,0 +1,31 @@
|
|
1
|
+
'use strict';
|
2
|
+
|
3
|
+
exports.__esModule = true;
|
4
|
+
exports['default'] = {
|
5
|
+
today: 'I dag',
|
6
|
+
now: 'Nu',
|
7
|
+
backToToday: 'Till idag',
|
8
|
+
ok: 'Ok',
|
9
|
+
clear: 'Avbryt',
|
10
|
+
month: 'Månad',
|
11
|
+
year: 'År',
|
12
|
+
timeSelect: 'Välj tidpunkt',
|
13
|
+
dateSelect: 'Välj datum',
|
14
|
+
monthSelect: 'Välj månad',
|
15
|
+
yearSelect: 'Välj år',
|
16
|
+
decadeSelect: 'Välj årtionde',
|
17
|
+
yearFormat: 'YYYY',
|
18
|
+
dateFormat: 'YYYY-MM-DD',
|
19
|
+
dayFormat: 'D',
|
20
|
+
dateTimeFormat: 'YYYY-MM-DD H:mm:ss',
|
21
|
+
monthBeforeYear: true,
|
22
|
+
previousMonth: 'Förra månaden (PageUp)',
|
23
|
+
nextMonth: 'Nästa månad (PageDown)',
|
24
|
+
previousYear: 'Föreg år (Control + left)',
|
25
|
+
nextYear: 'Nästa år (Control + right)',
|
26
|
+
previousDecade: 'Föreg årtionde',
|
27
|
+
nextDecade: 'Nästa årtionde',
|
28
|
+
previousCentury: 'Föreg århundrade',
|
29
|
+
nextCentury: 'Nästa århundrade'
|
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'];
|