@seafile/seafile-calendar 0.0.30-beta.1 → 0.0.30-beta.3

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.
Files changed (167) hide show
  1. package/assets/index.css +1177 -0
  2. package/dist/rc-calendar.css +1179 -0
  3. package/dist/rc-calendar.css.map +1 -0
  4. package/dist/rc-calendar.js +7500 -0
  5. package/dist/rc-calendar.js.map +1 -0
  6. package/dist/rc-calendar.min.css +1179 -0
  7. package/dist/rc-calendar.min.css.map +1 -0
  8. package/dist/rc-calendar.min.js +1 -0
  9. package/es/Calendar.js +454 -0
  10. package/es/FullCalendar.js +182 -0
  11. package/es/MonthCalendar.js +135 -0
  12. package/es/Picker.js +245 -0
  13. package/es/RangeCalendar.js +876 -0
  14. package/es/calendar/CalendarFooter.js +93 -0
  15. package/es/calendar/CalendarHeader.js +257 -0
  16. package/es/calendar/CalendarRightPanel.js +135 -0
  17. package/es/calendar/OkButton.js +22 -0
  18. package/es/calendar/TimePickerButton.js +28 -0
  19. package/es/calendar/TodayButton.js +28 -0
  20. package/es/date/DateConstants.js +19 -0
  21. package/es/date/DateInput.js +444 -0
  22. package/es/date/DateTBody.js +280 -0
  23. package/es/date/DateTHead.js +86 -0
  24. package/es/date/DateTable.js +32 -0
  25. package/es/decade/DecadePanel.js +181 -0
  26. package/es/full-calendar/CalendarHeader.js +180 -0
  27. package/es/index.js +3 -0
  28. package/es/locale/ar_EG.js +27 -0
  29. package/es/locale/bg_BG.js +27 -0
  30. package/es/locale/ca_ES.js +27 -0
  31. package/es/locale/cs_CZ.js +27 -0
  32. package/es/locale/da_DK.js +27 -0
  33. package/es/locale/de_DE.js +27 -0
  34. package/es/locale/el_GR.js +27 -0
  35. package/es/locale/en_GB.js +27 -0
  36. package/es/locale/en_US.js +28 -0
  37. package/es/locale/es_ES.js +27 -0
  38. package/es/locale/et_EE.js +27 -0
  39. package/es/locale/fa_IR.js +27 -0
  40. package/es/locale/fi_FI.js +27 -0
  41. package/es/locale/fr_BE.js +27 -0
  42. package/es/locale/fr_FR.js +27 -0
  43. package/es/locale/he_IL.js +28 -0
  44. package/es/locale/hi_IN.js +28 -0
  45. package/es/locale/hr_HR.js +28 -0
  46. package/es/locale/hu_HU.js +27 -0
  47. package/es/locale/id_ID.js +28 -0
  48. package/es/locale/is_IS.js +27 -0
  49. package/es/locale/it_IT.js +27 -0
  50. package/es/locale/ja_JP.js +26 -0
  51. package/es/locale/kn_IN.js +28 -0
  52. package/es/locale/ko_KR.js +27 -0
  53. package/es/locale/ku_IQ.js +27 -0
  54. package/es/locale/lv_LV.js +27 -0
  55. package/es/locale/mm_MM.js +28 -0
  56. package/es/locale/mn_MN.js +28 -0
  57. package/es/locale/ms_MY.js +27 -0
  58. package/es/locale/nb_NO.js +27 -0
  59. package/es/locale/nl_BE.js +27 -0
  60. package/es/locale/nl_NL.js +27 -0
  61. package/es/locale/pl_PL.js +27 -0
  62. package/es/locale/pt_BR.js +27 -0
  63. package/es/locale/pt_PT.js +27 -0
  64. package/es/locale/ro_RO.js +28 -0
  65. package/es/locale/ru_RU.js +27 -0
  66. package/es/locale/sk_SK.js +27 -0
  67. package/es/locale/sl_SI.js +27 -0
  68. package/es/locale/sr_RS.js +27 -0
  69. package/es/locale/sv_SE.js +27 -0
  70. package/es/locale/ta_IN.js +28 -0
  71. package/es/locale/th_TH.js +27 -0
  72. package/es/locale/tr_TR.js +27 -0
  73. package/es/locale/ug_CN.js +26 -0
  74. package/es/locale/uk_UA.js +27 -0
  75. package/es/locale/vi_VN.js +28 -0
  76. package/es/locale/zh_CN.js +27 -0
  77. package/es/locale/zh_TW.js +26 -0
  78. package/es/mixin/CalendarMixin.js +123 -0
  79. package/es/mixin/CommonMixin.js +85 -0
  80. package/es/month/MonthPanel.js +154 -0
  81. package/es/month/MonthTable.js +156 -0
  82. package/es/picker/placements.js +35 -0
  83. package/es/range-calendar/CalendarPart.js +151 -0
  84. package/es/util/dayjs.js +17 -0
  85. package/es/util/index.js +272 -0
  86. package/es/util/toTime.js +21 -0
  87. package/es/year/YearPanel.js +194 -0
  88. package/lib/Calendar.js +517 -0
  89. package/lib/FullCalendar.js +221 -0
  90. package/lib/MonthCalendar.js +172 -0
  91. package/lib/Picker.js +282 -0
  92. package/lib/RangeCalendar.js +925 -0
  93. package/lib/calendar/CalendarFooter.js +134 -0
  94. package/lib/calendar/CalendarHeader.js +290 -0
  95. package/lib/calendar/CalendarRightPanel.js +160 -0
  96. package/lib/calendar/OkButton.js +32 -0
  97. package/lib/calendar/TimePickerButton.js +41 -0
  98. package/lib/calendar/TodayButton.js +39 -0
  99. package/lib/date/DateConstants.js +23 -0
  100. package/lib/date/DateInput.js +476 -0
  101. package/lib/date/DateTBody.js +307 -0
  102. package/lib/date/DateTHead.js +106 -0
  103. package/lib/date/DateTable.js +54 -0
  104. package/lib/decade/DecadePanel.js +207 -0
  105. package/lib/full-calendar/CalendarHeader.js +201 -0
  106. package/lib/index.js +12 -0
  107. package/lib/locale/ar_EG.js +31 -0
  108. package/lib/locale/bg_BG.js +31 -0
  109. package/lib/locale/ca_ES.js +31 -0
  110. package/lib/locale/cs_CZ.js +31 -0
  111. package/lib/locale/da_DK.js +31 -0
  112. package/lib/locale/de_DE.js +31 -0
  113. package/lib/locale/el_GR.js +31 -0
  114. package/lib/locale/en_GB.js +31 -0
  115. package/lib/locale/en_US.js +32 -0
  116. package/lib/locale/es_ES.js +31 -0
  117. package/lib/locale/et_EE.js +31 -0
  118. package/lib/locale/fa_IR.js +31 -0
  119. package/lib/locale/fi_FI.js +31 -0
  120. package/lib/locale/fr_BE.js +31 -0
  121. package/lib/locale/fr_FR.js +31 -0
  122. package/lib/locale/he_IL.js +32 -0
  123. package/lib/locale/hi_IN.js +32 -0
  124. package/lib/locale/hr_HR.js +32 -0
  125. package/lib/locale/hu_HU.js +31 -0
  126. package/lib/locale/id_ID.js +32 -0
  127. package/lib/locale/is_IS.js +31 -0
  128. package/lib/locale/it_IT.js +31 -0
  129. package/lib/locale/ja_JP.js +30 -0
  130. package/lib/locale/kn_IN.js +32 -0
  131. package/lib/locale/ko_KR.js +31 -0
  132. package/lib/locale/ku_IQ.js +31 -0
  133. package/lib/locale/lv_LV.js +31 -0
  134. package/lib/locale/mm_MM.js +32 -0
  135. package/lib/locale/mn_MN.js +32 -0
  136. package/lib/locale/ms_MY.js +31 -0
  137. package/lib/locale/nb_NO.js +31 -0
  138. package/lib/locale/nl_BE.js +31 -0
  139. package/lib/locale/nl_NL.js +31 -0
  140. package/lib/locale/pl_PL.js +31 -0
  141. package/lib/locale/pt_BR.js +31 -0
  142. package/lib/locale/pt_PT.js +31 -0
  143. package/lib/locale/ro_RO.js +32 -0
  144. package/lib/locale/ru_RU.js +31 -0
  145. package/lib/locale/sk_SK.js +31 -0
  146. package/lib/locale/sl_SI.js +31 -0
  147. package/lib/locale/sr_RS.js +31 -0
  148. package/lib/locale/sv_SE.js +31 -0
  149. package/lib/locale/ta_IN.js +32 -0
  150. package/lib/locale/th_TH.js +31 -0
  151. package/lib/locale/tr_TR.js +31 -0
  152. package/lib/locale/ug_CN.js +30 -0
  153. package/lib/locale/uk_UA.js +31 -0
  154. package/lib/locale/vi_VN.js +32 -0
  155. package/lib/locale/zh_CN.js +31 -0
  156. package/lib/locale/zh_TW.js +30 -0
  157. package/lib/mixin/CalendarMixin.js +153 -0
  158. package/lib/mixin/CommonMixin.js +106 -0
  159. package/lib/month/MonthPanel.js +179 -0
  160. package/lib/month/MonthTable.js +181 -0
  161. package/lib/picker/placements.js +39 -0
  162. package/lib/range-calendar/CalendarPart.js +184 -0
  163. package/lib/util/dayjs.js +46 -0
  164. package/lib/util/index.js +307 -0
  165. package/lib/util/toTime.js +28 -0
  166. package/lib/year/YearPanel.js +219 -0
  167. package/package.json +2 -1
@@ -0,0 +1,28 @@
1
+ export default {
2
+ today: 'Danas',
3
+ now: 'Sad',
4
+ backToToday: 'Natrag na danas',
5
+ ok: 'Ok',
6
+ clear: 'Očisti',
7
+ month: 'Mjesec',
8
+ year: 'Godina',
9
+ timeSelect: 'odaberite vrijeme',
10
+ dateSelect: 'odaberite datum',
11
+ weekSelect: 'Odaberite tjedan',
12
+ monthSelect: 'Odaberite mjesec',
13
+ yearSelect: 'Odaberite godinu',
14
+ decadeSelect: 'Odaberite desetljeće',
15
+ yearFormat: 'YYYY',
16
+ dateFormat: 'D.M.YYYY',
17
+ dayFormat: 'D',
18
+ dateTimeFormat: 'D.M.YYYY HH:mm:ss',
19
+ monthBeforeYear: true,
20
+ previousMonth: 'Prošli mjesec (PageUp)',
21
+ nextMonth: 'Sljedeći mjesec (PageDown)',
22
+ previousYear: 'Prošla godina (Control + left)',
23
+ nextYear: 'Sljedeća godina (Control + right)',
24
+ previousDecade: 'Prošlo desetljeće',
25
+ nextDecade: 'Sljedeće desetljeće',
26
+ previousCentury: 'Prošlo stoljeće',
27
+ nextCentury: 'Sljedeće stoljeće'
28
+ };
@@ -0,0 +1,27 @@
1
+ export default {
2
+ today: 'Ma', // 'Today',
3
+ now: 'Most', // 'Now',
4
+ backToToday: 'Vissza a mai napra', // 'Back to today',
5
+ ok: 'Ok',
6
+ clear: 'Törlés', // 'Clear',
7
+ month: 'Hónap', // 'Month',
8
+ year: 'Év', // 'Year',
9
+ timeSelect: 'Időpont kiválasztása', // 'Select time',
10
+ dateSelect: 'Dátum kiválasztása', // 'Select date',
11
+ monthSelect: 'Hónap kiválasztása', // 'Choose a month',
12
+ yearSelect: 'Év kiválasztása', // 'Choose a year',
13
+ decadeSelect: 'Évtized kiválasztása', // 'Choose a decade',
14
+ yearFormat: 'YYYY',
15
+ dateFormat: 'YYYY/MM/DD', // 'M/D/YYYY',
16
+ dayFormat: 'DD', // 'D',
17
+ dateTimeFormat: 'YYYY/MM/DD HH:mm:ss', // 'M/D/YYYY HH:mm:ss',
18
+ monthBeforeYear: true,
19
+ previousMonth: 'Előző hónap (PageUp)', // 'Previous month (PageUp)',
20
+ nextMonth: 'Következő hónap (PageDown)', // 'Next month (PageDown)',
21
+ previousYear: 'Múlt év (Control + left)', // 'Last year (Control + left)',
22
+ nextYear: 'Jövő év (Control + right)', // 'Next year (Control + right)',
23
+ previousDecade: 'Előző évtized', // 'Last decade',
24
+ nextDecade: 'Következő évtized', // 'Next decade',
25
+ previousCentury: 'Múlt évszázad', // 'Last century',
26
+ nextCentury: 'Jövő évszázad' // 'Next century',
27
+ };
@@ -0,0 +1,28 @@
1
+ export default {
2
+ today: 'Hari ini',
3
+ now: 'Sekarang',
4
+ backToToday: 'Kembali ke hari ini',
5
+ ok: 'Baik',
6
+ clear: 'Bersih',
7
+ month: 'Bulan',
8
+ year: 'Tahun',
9
+ timeSelect: 'pilih waktu',
10
+ dateSelect: 'pilih tanggal',
11
+ weekSelect: 'Pilih satu minggu',
12
+ monthSelect: 'Pilih satu bulan',
13
+ yearSelect: 'Pilih satu tahun',
14
+ decadeSelect: 'Pilih satu dekade',
15
+ yearFormat: 'YYYY',
16
+ dateFormat: 'M/D/YYYY',
17
+ dayFormat: 'D',
18
+ dateTimeFormat: 'M/D/YYYY HH:mm:ss',
19
+ monthBeforeYear: true,
20
+ previousMonth: 'Bulan sebelumnya (PageUp)',
21
+ nextMonth: 'Bulan depan (PageDown)',
22
+ previousYear: 'Tahun lalu (Control + kiri)',
23
+ nextYear: 'Tahun depan (Kontrol + kanan)',
24
+ previousDecade: 'Dekade terakhir',
25
+ nextDecade: 'Dekade berikutnya',
26
+ previousCentury: 'Abad terakhir',
27
+ nextCentury: 'Abad berikutnya'
28
+ };
@@ -0,0 +1,27 @@
1
+ export default {
2
+ today: 'Í dag',
3
+ now: 'Núna',
4
+ backToToday: 'Til baka til dagsins í dag',
5
+ ok: 'Í lagi',
6
+ clear: 'Hreinsa',
7
+ month: 'Mánuður',
8
+ year: 'Ár',
9
+ timeSelect: 'Velja tíma',
10
+ dateSelect: 'Velja dag',
11
+ monthSelect: 'Velja mánuð',
12
+ yearSelect: 'Velja ár',
13
+ decadeSelect: 'Velja áratug',
14
+ yearFormat: 'YYYY',
15
+ dateFormat: 'D/M/YYYY',
16
+ dayFormat: 'D',
17
+ dateTimeFormat: 'D/M/YYYY HH:mm:ss',
18
+ monthBeforeYear: true,
19
+ previousMonth: 'Fyrri mánuður (PageUp)',
20
+ nextMonth: 'Næsti mánuður (PageDown)',
21
+ previousYear: 'Fyrra ár (Control + left)',
22
+ nextYear: 'Næsta ár (Control + right)',
23
+ previousDecade: 'Fyrri áratugur',
24
+ nextDecade: 'Næsti áratugur',
25
+ previousCentury: 'Fyrri öld',
26
+ nextCentury: 'Næsta öld'
27
+ };
@@ -0,0 +1,27 @@
1
+ export default {
2
+ today: 'Oggi',
3
+ now: 'Adesso',
4
+ backToToday: 'Torna ad oggi',
5
+ ok: 'Ok',
6
+ clear: 'Cancella',
7
+ month: 'Mese',
8
+ year: 'Anno',
9
+ timeSelect: 'Seleziona l\'ora',
10
+ dateSelect: 'Seleziona la data',
11
+ monthSelect: 'Seleziona il mese',
12
+ yearSelect: 'Seleziona l\'anno',
13
+ decadeSelect: 'Seleziona il decennio',
14
+ yearFormat: 'YYYY',
15
+ dateFormat: 'D/M/YYYY',
16
+ dayFormat: 'D',
17
+ dateTimeFormat: 'D/M/YYYY HH:mm:ss',
18
+ monthBeforeYear: true,
19
+ previousMonth: 'Il mese scorso (PageUp)',
20
+ nextMonth: 'Il prossimo mese (PageDown)',
21
+ previousYear: 'L\'anno scorso (Control + sinistra)',
22
+ nextYear: 'L\'anno prossimo (Control + destra)',
23
+ previousDecade: 'Ultimo decennio',
24
+ nextDecade: 'Prossimo decennio',
25
+ previousCentury: 'Secolo precedente',
26
+ nextCentury: 'Prossimo secolo'
27
+ };
@@ -0,0 +1,26 @@
1
+ export default {
2
+ today: '今日',
3
+ now: '現在時刻',
4
+ backToToday: '今日に戻る',
5
+ ok: '決定',
6
+ timeSelect: '時間を選択',
7
+ dateSelect: '日時を選択',
8
+ clear: 'クリア',
9
+ month: '月',
10
+ year: '年',
11
+ previousMonth: '前月 (ページアップキー)',
12
+ nextMonth: '翌月 (ページダウンキー)',
13
+ monthSelect: '月を選択',
14
+ yearSelect: '年を選択',
15
+ decadeSelect: '年代を選択',
16
+ yearFormat: 'YYYY年',
17
+ dayFormat: 'D日',
18
+ dateFormat: 'YYYY年M月D日',
19
+ dateTimeFormat: 'YYYY年M月D日 HH時mm分ss秒',
20
+ previousYear: '前年 (Controlを押しながら左キー)',
21
+ nextYear: '翌年 (Controlを押しながら右キー)',
22
+ previousDecade: '前の年代',
23
+ nextDecade: '次の年代',
24
+ previousCentury: '前の世紀',
25
+ nextCentury: '次の世紀'
26
+ };
@@ -0,0 +1,28 @@
1
+ export default {
2
+ today: 'ಇಂದು',
3
+ now: 'ಈಗ',
4
+ backToToday: 'ಇಂದು ಹಿಂದಿರುಗಿ',
5
+ ok: 'ಸರಿ',
6
+ clear: 'ಸ್ಪಷ್ಟ',
7
+ month: 'ತಿಂಗಳು',
8
+ year: 'ವರ್ಷ',
9
+ timeSelect: 'ಸಮಯ ಆಯ್ಕೆಮಾಡಿ',
10
+ dateSelect: 'ದಿನಾಂಕವನ್ನು ಆಯ್ಕೆ ಮಾಡಿ',
11
+ weekSelect: 'ಒಂದು ವಾರದ ಆರಿಸಿ',
12
+ monthSelect: 'ಒಂದು ತಿಂಗಳು ಆಯ್ಕೆಮಾಡಿ',
13
+ yearSelect: 'ಒಂದು ವರ್ಷ ಆರಿಸಿ',
14
+ decadeSelect: 'ಒಂದು ದಶಕದ ಆಯ್ಕೆಮಾಡಿ',
15
+ yearFormat: 'YYYY',
16
+ dateFormat: 'M/D/YYYY',
17
+ dayFormat: 'D',
18
+ dateTimeFormat: 'M/D/YYYY HH:mm:ss',
19
+ monthBeforeYear: true,
20
+ previousMonth: 'ಹಿಂದಿನ ತಿಂಗಳು (ಪೇಜ್ಅಪ್)',
21
+ nextMonth: 'ಮುಂದಿನ ತಿಂಗಳು (ಪೇಜ್ಡೌನ್)',
22
+ previousYear: 'ಕಳೆದ ವರ್ಷ (Ctrl + ಎಡ)',
23
+ nextYear: 'ಮುಂದಿನ ವರ್ಷ (Ctrl + ಬಲ)',
24
+ previousDecade: 'ಕಳೆದ ದಶಕ',
25
+ nextDecade: 'ಮುಂದಿನ ದಶಕ',
26
+ previousCentury: 'ಕಳೆದ ಶತಮಾನ',
27
+ nextCentury: 'ಮುಂದಿನ ಶತಮಾನ'
28
+ };
@@ -0,0 +1,27 @@
1
+ export default {
2
+ today: '오늘',
3
+ now: '현재 시각',
4
+ backToToday: '오늘로 돌아가기',
5
+ ok: '확인',
6
+ clear: '지우기',
7
+ month: '월',
8
+ year: '년',
9
+ timeSelect: '시간 선택',
10
+ dateSelect: '날짜 선택',
11
+ monthSelect: '달 선택',
12
+ yearSelect: '연 선택',
13
+ decadeSelect: '연대 선택',
14
+ yearFormat: 'YYYY년',
15
+ dateFormat: 'YYYY-MM-DD',
16
+ dayFormat: 'Do',
17
+ dateTimeFormat: 'YYYY-MM-DD HH:mm:ss',
18
+ monthBeforeYear: false,
19
+ previousMonth: '이전 달 (PageUp)',
20
+ nextMonth: '다음 달 (PageDown)',
21
+ previousYear: '이전 해 (Control + left)',
22
+ nextYear: '다음 해 (Control + right)',
23
+ previousDecade: '이전 연대',
24
+ nextDecade: '다음 연대',
25
+ previousCentury: '이전 세기',
26
+ nextCentury: '다음 세기'
27
+ };
@@ -0,0 +1,27 @@
1
+ export default {
2
+ today: 'Îro',
3
+ now: 'Niha',
4
+ backToToday: 'Vegere îro',
5
+ ok: 'Temam',
6
+ clear: 'Paqij bike',
7
+ month: 'Meh',
8
+ year: 'Sal',
9
+ timeSelect: 'Demê hilbijêre',
10
+ dateSelect: 'Dîrok hilbijêre',
11
+ monthSelect: 'Meh hilbijêre',
12
+ yearSelect: 'Sal hilbijêre',
13
+ decadeSelect: 'Dehsal hilbijêre',
14
+ yearFormat: 'YYYY',
15
+ dateFormat: 'D/M/YYYY',
16
+ dayFormat: 'D',
17
+ dateTimeFormat: 'D/M/YYYY HH:mm:ss',
18
+ monthBeforeYear: true,
19
+ previousMonth: 'Meha peş (PageUp))',
20
+ nextMonth: 'Meha paş (PageDown)',
21
+ previousYear: 'Sala peş (Control + şep)',
22
+ nextYear: 'Sala paş (Control + rast)',
23
+ previousDecade: 'Dehsalen peş',
24
+ nextDecade: 'Dehsalen paş',
25
+ previousCentury: 'Sedsalen peş',
26
+ nextCentury: 'Sedsalen paş'
27
+ };
@@ -0,0 +1,27 @@
1
+ export default {
2
+ today: 'Šodien',
3
+ now: 'Tagad',
4
+ backToToday: 'Atpakaļ pie šodienas',
5
+ ok: 'Ok',
6
+ clear: 'Skaidrs',
7
+ month: 'Mēnesis',
8
+ year: 'Gads',
9
+ timeSelect: 'Izvēlieties laiku',
10
+ dateSelect: 'Izvēlieties datumu',
11
+ monthSelect: 'Izvēlieties mēnesi',
12
+ yearSelect: 'Izvēlieties gadu',
13
+ decadeSelect: 'Izvēlieties desmit gadus',
14
+ yearFormat: 'YYYY',
15
+ dateFormat: 'D.M.YYYY',
16
+ dayFormat: 'D',
17
+ dateTimeFormat: 'D.M.YYYY HH:mm:ss',
18
+ monthBeforeYear: true,
19
+ previousMonth: 'Iepriekšējais mēnesis (PageUp)',
20
+ nextMonth: 'Nākammēnes (PageDown)',
21
+ previousYear: 'Pagājušais gads (Control + left)',
22
+ nextYear: 'Nākamgad (Control + right)',
23
+ previousDecade: 'Pēdējā desmitgadē',
24
+ nextDecade: 'Nākamā desmitgade',
25
+ previousCentury: 'Pagājušajā gadsimtā',
26
+ nextCentury: 'Nākamajā gadsimtā'
27
+ };
@@ -0,0 +1,28 @@
1
+ export default {
2
+ today: 'ယနေ့',
3
+ now: 'ယခု',
4
+ backToToday: 'ယနေ့ မတိုင်ခင် သို့',
5
+ ok: 'Ok',
6
+ clear: 'ရှင်းမည်',
7
+ month: 'လ',
8
+ year: 'နှစ်',
9
+ timeSelect: 'အချိန်ကို ရွေး',
10
+ dateSelect: 'နေ့ကို ရွေး',
11
+ weekSelect: 'အပတ်ကို ရွေး',
12
+ monthSelect: 'လကို ရွေး',
13
+ yearSelect: 'နှစ်ကို ရွေး',
14
+ decadeSelect: 'ဆယ်စုနှစ်ကို ရွေး',
15
+ yearFormat: 'YYYY',
16
+ dateFormat: 'M/D/YYYY',
17
+ dayFormat: 'D',
18
+ dateTimeFormat: 'M/D/YYYY HH:mm:ss',
19
+ monthBeforeYear: true,
20
+ previousMonth: 'ယခင် လ (PageUp)',
21
+ nextMonth: 'နောက် လ (PageDown)',
22
+ previousYear: 'ယခင် နှစ် (Control + left)',
23
+ nextYear: 'နောက် နှစ် (Control + right)',
24
+ previousDecade: 'ယခင် ဆယ်စုနှစ်',
25
+ nextDecade: 'နောက် ဆယ်စုနှစ်',
26
+ previousCentury: 'ယခင် ရာစုနှစ်',
27
+ nextCentury: 'နောက် ရာစုနှစ်'
28
+ };
@@ -0,0 +1,28 @@
1
+ export default {
2
+ today: 'Өнөөдөр',
3
+ now: 'Одоо',
4
+ backToToday: 'Өнөөдөрлүү буцах',
5
+ ok: 'Ok',
6
+ clear: 'Цэвэрлэх',
7
+ month: 'Сар',
8
+ year: 'Жил',
9
+ timeSelect: 'Цаг сонгох',
10
+ dateSelect: 'Огноо сонгох',
11
+ weekSelect: '7 хоног сонгох',
12
+ monthSelect: 'Сар сонгох',
13
+ yearSelect: 'Жил сонгох',
14
+ decadeSelect: 'Арван сонгох',
15
+ yearFormat: 'YYYY',
16
+ dateFormat: 'YYYY/MM/DD',
17
+ dayFormat: 'DD',
18
+ dateTimeFormat: 'YYYY/MM/DD HH:mm:ss',
19
+ monthBeforeYear: true,
20
+ previousMonth: 'Өмнөх сар (PageUp)',
21
+ nextMonth: 'Дараа сар (PageDown)',
22
+ previousYear: 'Өмнөх жил (Control + left)',
23
+ nextYear: 'Дараа жил (Control + right)',
24
+ previousDecade: 'Өмнөх арван',
25
+ nextDecade: 'Дараа арван',
26
+ previousCentury: 'Өмнөх зуун',
27
+ nextCentury: 'Дараа зуун'
28
+ };
@@ -0,0 +1,27 @@
1
+ export default {
2
+ today: 'Hari ini',
3
+ now: 'Sekarang',
4
+ backToToday: 'Kembali ke hari ini',
5
+ ok: 'Ok',
6
+ timeSelect: 'Pilih masa',
7
+ dateSelect: 'Pilih tarikh',
8
+ weekSelect: 'Pilih minggu',
9
+ clear: 'Padam',
10
+ month: 'Bulan',
11
+ year: 'Tahun',
12
+ previousMonth: 'Bulan lepas',
13
+ nextMonth: 'Bulan depan',
14
+ monthSelect: 'Pilih bulan',
15
+ yearSelect: 'Pilih tahun',
16
+ decadeSelect: 'Pilih dekad',
17
+ yearFormat: 'YYYY',
18
+ dayFormat: 'D',
19
+ dateFormat: 'M/D/YYYY',
20
+ dateTimeFormat: 'M/D/YYYY HH:mm:ss',
21
+ previousYear: 'Tahun lepas (Ctrl+left)',
22
+ nextYear: 'Tahun depan (Ctrl+right)',
23
+ previousDecade: 'Dekad lepas',
24
+ nextDecade: 'Dekad depan',
25
+ previousCentury: 'Abad lepas',
26
+ nextCentury: 'Abad depan'
27
+ };
@@ -0,0 +1,27 @@
1
+ export default {
2
+ today: 'I dag',
3
+ now: 'Nå',
4
+ backToToday: 'Gå til i dag',
5
+ ok: 'Ok',
6
+ clear: 'Annuller',
7
+ month: 'Måned',
8
+ year: 'År',
9
+ timeSelect: 'Velg tidspunkt',
10
+ dateSelect: 'Velg dato',
11
+ monthSelect: 'Velg måned',
12
+ yearSelect: 'Velg år',
13
+ decadeSelect: 'Velg årti',
14
+ yearFormat: 'YYYY',
15
+ dateFormat: 'DD.MM.YYYY',
16
+ dayFormat: 'DD',
17
+ dateTimeFormat: 'DD.MM.YYYY HH:mm:ss',
18
+ monthBeforeYear: true,
19
+ previousMonth: 'Forrige måned(PageUp)',
20
+ nextMonth: 'Neste måned (PageDown)',
21
+ previousYear: 'Forrige år (Control + left)',
22
+ nextYear: 'Neste år (Control + right)',
23
+ previousDecade: 'Forrige tiår',
24
+ nextDecade: 'Neste tiår',
25
+ previousCentury: 'Forrige århundre',
26
+ nextCentury: 'Neste århundre'
27
+ };
@@ -0,0 +1,27 @@
1
+ export default {
2
+ today: 'Vandaag',
3
+ now: 'Nu',
4
+ backToToday: 'Terug naar vandaag',
5
+ ok: 'Ok',
6
+ clear: 'Reset',
7
+ month: 'Maand',
8
+ year: 'Jaar',
9
+ timeSelect: 'Selecteer tijd',
10
+ dateSelect: 'Selecteer datum',
11
+ monthSelect: 'Kies een maand',
12
+ yearSelect: 'Kies een jaar',
13
+ decadeSelect: 'Kies een decennium',
14
+ yearFormat: 'YYYY',
15
+ dateFormat: 'D-M-YYYY',
16
+ dayFormat: 'D',
17
+ dateTimeFormat: 'D-M-YYYY HH:mm:ss',
18
+ monthBeforeYear: true,
19
+ previousMonth: 'Vorige maand (PageUp)',
20
+ nextMonth: 'Volgende maand (PageDown)',
21
+ previousYear: 'Vorig jaar (Control + left)',
22
+ nextYear: 'Volgend jaar (Control + right)',
23
+ previousDecade: 'Vorig decennium',
24
+ nextDecade: 'Volgend decennium',
25
+ previousCentury: 'Vorige eeuw',
26
+ nextCentury: 'Volgende eeuw'
27
+ };
@@ -0,0 +1,27 @@
1
+ export default {
2
+ today: 'Vandaag',
3
+ now: 'Nu',
4
+ backToToday: 'Terug naar vandaag',
5
+ ok: 'Ok',
6
+ clear: 'Reset',
7
+ month: 'Maand',
8
+ year: 'Jaar',
9
+ timeSelect: 'Selecteer tijd',
10
+ dateSelect: 'Selecteer datum',
11
+ monthSelect: 'Kies een maand',
12
+ yearSelect: 'Kies een jaar',
13
+ decadeSelect: 'Kies een decennium',
14
+ yearFormat: 'YYYY',
15
+ dateFormat: 'D-M-YYYY',
16
+ dayFormat: 'D',
17
+ dateTimeFormat: 'D-M-YYYY HH:mm:ss',
18
+ monthBeforeYear: true,
19
+ previousMonth: 'Vorige maand (PageUp)',
20
+ nextMonth: 'Volgende maand (PageDown)',
21
+ previousYear: 'Vorig jaar (Control + left)',
22
+ nextYear: 'Volgend jaar (Control + right)',
23
+ previousDecade: 'Vorig decennium',
24
+ nextDecade: 'Volgend decennium',
25
+ previousCentury: 'Vorige eeuw',
26
+ nextCentury: 'Volgende eeuw'
27
+ };
@@ -0,0 +1,27 @@
1
+ export default {
2
+ today: 'Dzisiaj',
3
+ now: 'Teraz',
4
+ backToToday: 'Ustaw dzisiaj',
5
+ ok: 'Ok',
6
+ clear: 'Wyczyść',
7
+ month: 'Miesiąc',
8
+ year: 'Rok',
9
+ timeSelect: 'Ustaw czas',
10
+ dateSelect: 'Ustaw datę',
11
+ monthSelect: 'Wybierz miesiąc',
12
+ yearSelect: 'Wybierz rok',
13
+ decadeSelect: 'Wybierz dekadę',
14
+ yearFormat: 'YYYY',
15
+ dateFormat: 'D/M/YYYY',
16
+ dayFormat: 'D',
17
+ dateTimeFormat: 'D/M/YYYY HH:mm:ss',
18
+ monthBeforeYear: true,
19
+ previousMonth: 'Poprzedni miesiąc (PageUp)',
20
+ nextMonth: 'Następny miesiąc (PageDown)',
21
+ previousYear: 'Ostatni rok (Ctrl + left)',
22
+ nextYear: 'Następny rok (Ctrl + right)',
23
+ previousDecade: 'Ostatnia dekada',
24
+ nextDecade: 'Następna dekada',
25
+ previousCentury: 'Ostatni wiek',
26
+ nextCentury: 'Następny wiek'
27
+ };
@@ -0,0 +1,27 @@
1
+ export default {
2
+ today: 'Hoje',
3
+ now: 'Agora',
4
+ backToToday: 'Voltar para hoje',
5
+ ok: 'Ok',
6
+ clear: 'Limpar',
7
+ month: 'Mês',
8
+ year: 'Ano',
9
+ timeSelect: 'Selecionar tempo',
10
+ dateSelect: 'Selecionar data',
11
+ monthSelect: 'Escolher mês',
12
+ yearSelect: 'Escolher ano',
13
+ decadeSelect: 'Escolher década',
14
+ yearFormat: 'YYYY',
15
+ dateFormat: 'D/M/YYYY',
16
+ dayFormat: 'D',
17
+ dateTimeFormat: 'D/M/YYYY HH:mm:ss',
18
+ monthBeforeYear: false,
19
+ previousMonth: 'Mês anterior (PageUp)',
20
+ nextMonth: 'Próximo mês (PageDown)',
21
+ previousYear: 'Ano anterior (Control + esquerda)',
22
+ nextYear: 'Próximo ano (Control + direita)',
23
+ previousDecade: 'Década anterior',
24
+ nextDecade: 'Próxima década',
25
+ previousCentury: 'Século anterior',
26
+ nextCentury: 'Próximo século'
27
+ };
@@ -0,0 +1,27 @@
1
+ export default {
2
+ today: 'Hoje',
3
+ now: 'Agora',
4
+ backToToday: 'Hoje',
5
+ ok: 'Ok',
6
+ clear: 'Limpar',
7
+ month: 'Mês',
8
+ year: 'Ano',
9
+ timeSelect: 'Selecionar hora',
10
+ dateSelect: 'Selecionar data',
11
+ monthSelect: 'Selecionar mês',
12
+ yearSelect: 'Selecionar ano',
13
+ decadeSelect: 'Selecionar década',
14
+ yearFormat: 'YYYY',
15
+ dateFormat: 'D/M/YYYY',
16
+ dayFormat: 'D',
17
+ dateTimeFormat: 'D/M/YYYY HH:mm:ss',
18
+ monthBeforeYear: true,
19
+ previousMonth: 'Mês anterior (PageUp)',
20
+ nextMonth: 'Mês seguinte (PageDown)',
21
+ previousYear: 'Ano anterior (Control + left)',
22
+ nextYear: 'Ano seguinte (Control + right)',
23
+ previousDecade: 'Década anterior',
24
+ nextDecade: 'Década seguinte',
25
+ previousCentury: 'Século anterior',
26
+ nextCentury: 'Século seguinte'
27
+ };
@@ -0,0 +1,28 @@
1
+ export default {
2
+ today: 'Azi',
3
+ now: 'Acum',
4
+ backToToday: 'Înapoi la azi',
5
+ ok: 'Ok',
6
+ clear: 'Șterge',
7
+ month: 'Lună',
8
+ year: 'An',
9
+ timeSelect: 'selectează timpul',
10
+ dateSelect: 'selectează data',
11
+ weekSelect: 'Alege o săptămână',
12
+ monthSelect: 'Alege o lună',
13
+ yearSelect: 'Alege un an',
14
+ decadeSelect: 'Alege un deceniu',
15
+ yearFormat: 'YYYY',
16
+ dateFormat: 'D/M/YYYY',
17
+ dayFormat: 'D',
18
+ dateTimeFormat: 'D/M/YYYY HH:mm:ss',
19
+ monthBeforeYear: true,
20
+ previousMonth: 'Luna anterioară (PageUp)',
21
+ nextMonth: 'Luna următoare (PageDown)',
22
+ previousYear: 'Anul anterior (Control + stânga)',
23
+ nextYear: 'Anul următor (Control + dreapta)',
24
+ previousDecade: 'Deceniul anterior',
25
+ nextDecade: 'Deceniul următor',
26
+ previousCentury: 'Secolul anterior',
27
+ nextCentury: 'Secolul următor'
28
+ };
@@ -0,0 +1,27 @@
1
+ export default {
2
+ today: 'Сегодня',
3
+ now: 'Сейчас',
4
+ backToToday: 'Текущая дата',
5
+ ok: 'Ok',
6
+ clear: 'Очистить',
7
+ month: 'Месяц',
8
+ year: 'Год',
9
+ timeSelect: 'Выбрать время',
10
+ dateSelect: 'Выбрать дату',
11
+ monthSelect: 'Выбрать месяц',
12
+ yearSelect: 'Выбрать год',
13
+ decadeSelect: 'Выбрать десятилетие',
14
+ yearFormat: 'YYYY',
15
+ dateFormat: 'D-M-YYYY',
16
+ dayFormat: 'D',
17
+ dateTimeFormat: 'D-M-YYYY HH:mm:ss',
18
+ monthBeforeYear: true,
19
+ previousMonth: 'Предыдущий месяц (PageUp)',
20
+ nextMonth: 'Следующий месяц (PageDown)',
21
+ previousYear: 'Предыдущий год (Control + left)',
22
+ nextYear: 'Следующий год (Control + right)',
23
+ previousDecade: 'Предыдущее десятилетие',
24
+ nextDecade: 'Следущее десятилетие',
25
+ previousCentury: 'Предыдущий век',
26
+ nextCentury: 'Следующий век'
27
+ };
@@ -0,0 +1,27 @@
1
+ export default {
2
+ today: 'Dnes',
3
+ now: 'Teraz',
4
+ backToToday: 'Späť na dnes',
5
+ ok: 'Ok',
6
+ clear: 'Vymazať',
7
+ month: 'Mesiac',
8
+ year: 'Rok',
9
+ timeSelect: 'Vybrať čas',
10
+ dateSelect: 'Vybrať dátum',
11
+ monthSelect: 'Vybrať mesiac',
12
+ yearSelect: 'Vybrať rok',
13
+ decadeSelect: 'Vybrať dekádu',
14
+ yearFormat: 'YYYY',
15
+ dateFormat: 'D.M.YYYY',
16
+ dayFormat: 'D',
17
+ dateTimeFormat: 'D.M.YYYY HH:mm:ss',
18
+ monthBeforeYear: true,
19
+ previousMonth: 'Predchádzajúci mesiac (PageUp)',
20
+ nextMonth: 'Nasledujúci mesiac (PageDown)',
21
+ previousYear: 'Predchádzajúci rok (Control + left)',
22
+ nextYear: 'Nasledujúci rok (Control + right)',
23
+ previousDecade: 'Predchádzajúca dekáda',
24
+ nextDecade: 'Nasledujúca dekáda',
25
+ previousCentury: 'Predchádzajúce storočie',
26
+ nextCentury: 'Nasledujúce storočie'
27
+ };
@@ -0,0 +1,27 @@
1
+ export default {
2
+ today: 'Danes',
3
+ now: 'Trenutno',
4
+ backToToday: 'Nazaj na danes',
5
+ ok: 'V redu',
6
+ clear: 'Počisti',
7
+ month: 'Mesec',
8
+ year: 'Leto',
9
+ timeSelect: 'Izberite čas',
10
+ dateSelect: 'Izberite datum',
11
+ monthSelect: 'Izberite mesec',
12
+ yearSelect: 'Izberite leto',
13
+ decadeSelect: 'Izberite desetletje',
14
+ yearFormat: 'YYYY',
15
+ dateFormat: 'DD.MM.YYYY',
16
+ dayFormat: 'D',
17
+ dateTimeFormat: 'DD.MM.YYYY HH:mm:ss',
18
+ monthBeforeYear: true,
19
+ previousMonth: 'Prejšnji mesec (PageUp)',
20
+ nextMonth: 'Naslednji mesec (PageDown)',
21
+ previousYear: 'Prejšnje leto (Control + left)',
22
+ nextYear: 'Naslednje leto (Control + right)',
23
+ previousDecade: 'Prejšnje desetletje',
24
+ nextDecade: 'Naslednje desetletje',
25
+ previousCentury: 'Prejšnje stoletje',
26
+ nextCentury: 'Naslednje stoletje'
27
+ };