@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.
Files changed (160) hide show
  1. package/assets/index.css +1177 -0
  2. package/es/Calendar.js +440 -0
  3. package/es/FullCalendar.js +182 -0
  4. package/es/MonthCalendar.js +135 -0
  5. package/es/Picker.js +245 -0
  6. package/es/RangeCalendar.js +876 -0
  7. package/es/calendar/CalendarFooter.js +93 -0
  8. package/es/calendar/CalendarHeader.js +257 -0
  9. package/es/calendar/CalendarRightPanel.js +121 -0
  10. package/es/calendar/OkButton.js +22 -0
  11. package/es/calendar/TimePickerButton.js +28 -0
  12. package/es/calendar/TodayButton.js +28 -0
  13. package/es/date/DateConstants.js +19 -0
  14. package/es/date/DateInput.js +233 -0
  15. package/es/date/DateTBody.js +280 -0
  16. package/es/date/DateTHead.js +85 -0
  17. package/es/date/DateTable.js +32 -0
  18. package/es/decade/DecadePanel.js +181 -0
  19. package/es/full-calendar/CalendarHeader.js +180 -0
  20. package/es/index.js +3 -0
  21. package/es/locale/ar_EG.js +27 -0
  22. package/es/locale/bg_BG.js +27 -0
  23. package/es/locale/ca_ES.js +27 -0
  24. package/es/locale/cs_CZ.js +27 -0
  25. package/es/locale/da_DK.js +27 -0
  26. package/es/locale/de_DE.js +27 -0
  27. package/es/locale/el_GR.js +27 -0
  28. package/es/locale/en_GB.js +27 -0
  29. package/es/locale/en_US.js +28 -0
  30. package/es/locale/es_ES.js +27 -0
  31. package/es/locale/et_EE.js +27 -0
  32. package/es/locale/fa_IR.js +27 -0
  33. package/es/locale/fi_FI.js +27 -0
  34. package/es/locale/fr_BE.js +27 -0
  35. package/es/locale/fr_FR.js +27 -0
  36. package/es/locale/he_IL.js +28 -0
  37. package/es/locale/hi_IN.js +28 -0
  38. package/es/locale/hr_HR.js +28 -0
  39. package/es/locale/hu_HU.js +27 -0
  40. package/es/locale/id_ID.js +28 -0
  41. package/es/locale/is_IS.js +27 -0
  42. package/es/locale/it_IT.js +27 -0
  43. package/es/locale/ja_JP.js +26 -0
  44. package/es/locale/kn_IN.js +28 -0
  45. package/es/locale/ko_KR.js +27 -0
  46. package/es/locale/ku_IQ.js +27 -0
  47. package/es/locale/lv_LV.js +27 -0
  48. package/es/locale/mm_MM.js +28 -0
  49. package/es/locale/mn_MN.js +28 -0
  50. package/es/locale/ms_MY.js +27 -0
  51. package/es/locale/nb_NO.js +27 -0
  52. package/es/locale/nl_BE.js +27 -0
  53. package/es/locale/nl_NL.js +27 -0
  54. package/es/locale/pl_PL.js +27 -0
  55. package/es/locale/pt_BR.js +27 -0
  56. package/es/locale/pt_PT.js +27 -0
  57. package/es/locale/ro_RO.js +28 -0
  58. package/es/locale/ru_RU.js +27 -0
  59. package/es/locale/sk_SK.js +27 -0
  60. package/es/locale/sl_SI.js +27 -0
  61. package/es/locale/sr_RS.js +27 -0
  62. package/es/locale/sv_SE.js +27 -0
  63. package/es/locale/ta_IN.js +28 -0
  64. package/es/locale/th_TH.js +27 -0
  65. package/es/locale/tr_TR.js +27 -0
  66. package/es/locale/ug_CN.js +26 -0
  67. package/es/locale/uk_UA.js +27 -0
  68. package/es/locale/vi_VN.js +28 -0
  69. package/es/locale/zh_CN.js +27 -0
  70. package/es/locale/zh_TW.js +26 -0
  71. package/es/mixin/CalendarMixin.js +123 -0
  72. package/es/mixin/CommonMixin.js +85 -0
  73. package/es/month/MonthPanel.js +154 -0
  74. package/es/month/MonthTable.js +156 -0
  75. package/es/picker/placements.js +35 -0
  76. package/es/range-calendar/CalendarPart.js +151 -0
  77. package/es/util/dayjs.js +17 -0
  78. package/es/util/index.js +105 -0
  79. package/es/util/toTime.js +21 -0
  80. package/es/year/YearPanel.js +194 -0
  81. package/lib/Calendar.js +503 -0
  82. package/lib/FullCalendar.js +221 -0
  83. package/lib/MonthCalendar.js +172 -0
  84. package/lib/Picker.js +282 -0
  85. package/lib/RangeCalendar.js +925 -0
  86. package/lib/calendar/CalendarFooter.js +134 -0
  87. package/lib/calendar/CalendarHeader.js +290 -0
  88. package/lib/calendar/CalendarRightPanel.js +145 -0
  89. package/lib/calendar/OkButton.js +32 -0
  90. package/lib/calendar/TimePickerButton.js +41 -0
  91. package/lib/calendar/TodayButton.js +39 -0
  92. package/lib/date/DateConstants.js +23 -0
  93. package/lib/date/DateInput.js +265 -0
  94. package/lib/date/DateTBody.js +307 -0
  95. package/lib/date/DateTHead.js +105 -0
  96. package/lib/date/DateTable.js +54 -0
  97. package/lib/decade/DecadePanel.js +207 -0
  98. package/lib/full-calendar/CalendarHeader.js +201 -0
  99. package/lib/index.js +12 -0
  100. package/lib/locale/ar_EG.js +31 -0
  101. package/lib/locale/bg_BG.js +31 -0
  102. package/lib/locale/ca_ES.js +31 -0
  103. package/lib/locale/cs_CZ.js +31 -0
  104. package/lib/locale/da_DK.js +31 -0
  105. package/lib/locale/de_DE.js +31 -0
  106. package/lib/locale/el_GR.js +31 -0
  107. package/lib/locale/en_GB.js +31 -0
  108. package/lib/locale/en_US.js +32 -0
  109. package/lib/locale/es_ES.js +31 -0
  110. package/lib/locale/et_EE.js +31 -0
  111. package/lib/locale/fa_IR.js +31 -0
  112. package/lib/locale/fi_FI.js +31 -0
  113. package/lib/locale/fr_BE.js +31 -0
  114. package/lib/locale/fr_FR.js +31 -0
  115. package/lib/locale/he_IL.js +32 -0
  116. package/lib/locale/hi_IN.js +32 -0
  117. package/lib/locale/hr_HR.js +32 -0
  118. package/lib/locale/hu_HU.js +31 -0
  119. package/lib/locale/id_ID.js +32 -0
  120. package/lib/locale/is_IS.js +31 -0
  121. package/lib/locale/it_IT.js +31 -0
  122. package/lib/locale/ja_JP.js +30 -0
  123. package/lib/locale/kn_IN.js +32 -0
  124. package/lib/locale/ko_KR.js +31 -0
  125. package/lib/locale/ku_IQ.js +31 -0
  126. package/lib/locale/lv_LV.js +31 -0
  127. package/lib/locale/mm_MM.js +32 -0
  128. package/lib/locale/mn_MN.js +32 -0
  129. package/lib/locale/ms_MY.js +31 -0
  130. package/lib/locale/nb_NO.js +31 -0
  131. package/lib/locale/nl_BE.js +31 -0
  132. package/lib/locale/nl_NL.js +31 -0
  133. package/lib/locale/pl_PL.js +31 -0
  134. package/lib/locale/pt_BR.js +31 -0
  135. package/lib/locale/pt_PT.js +31 -0
  136. package/lib/locale/ro_RO.js +32 -0
  137. package/lib/locale/ru_RU.js +31 -0
  138. package/lib/locale/sk_SK.js +31 -0
  139. package/lib/locale/sl_SI.js +31 -0
  140. package/lib/locale/sr_RS.js +31 -0
  141. package/lib/locale/sv_SE.js +31 -0
  142. package/lib/locale/ta_IN.js +32 -0
  143. package/lib/locale/th_TH.js +31 -0
  144. package/lib/locale/tr_TR.js +31 -0
  145. package/lib/locale/ug_CN.js +30 -0
  146. package/lib/locale/uk_UA.js +31 -0
  147. package/lib/locale/vi_VN.js +32 -0
  148. package/lib/locale/zh_CN.js +31 -0
  149. package/lib/locale/zh_TW.js +30 -0
  150. package/lib/mixin/CalendarMixin.js +153 -0
  151. package/lib/mixin/CommonMixin.js +106 -0
  152. package/lib/month/MonthPanel.js +179 -0
  153. package/lib/month/MonthTable.js +181 -0
  154. package/lib/picker/placements.js +39 -0
  155. package/lib/range-calendar/CalendarPart.js +184 -0
  156. package/lib/util/dayjs.js +46 -0
  157. package/lib/util/index.js +130 -0
  158. package/lib/util/toTime.js +28 -0
  159. package/lib/year/YearPanel.js +219 -0
  160. package/package.json +1 -1
@@ -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: 'M/D/YYYY',
16
+ dayFormat: 'D',
17
+ dateTimeFormat: 'M/D/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: 'Tänään',
3
+ now: 'Nyt',
4
+ backToToday: 'Tämä päivä',
5
+ ok: 'Ok',
6
+ clear: 'Tyhjennä',
7
+ month: 'Kuukausi',
8
+ year: 'Vuosi',
9
+ timeSelect: 'Valise aika',
10
+ dateSelect: 'Valitse päivä',
11
+ monthSelect: 'Valitse kuukausi',
12
+ yearSelect: 'Valitse vuosi',
13
+ decadeSelect: 'Valitse vuosikymmen',
14
+ yearFormat: 'YYYY',
15
+ dateFormat: 'D.M.YYYY',
16
+ dayFormat: 'D',
17
+ dateTimeFormat: 'D.M.YYYY HH:mm:ss',
18
+ monthBeforeYear: true,
19
+ previousMonth: 'Edellinen kuukausi (PageUp)',
20
+ nextMonth: 'Seuraava kuukausi (PageDown)',
21
+ previousYear: 'Edellinen vuosi (Control + left)',
22
+ nextYear: 'Seuraava vuosi (Control + right)',
23
+ previousDecade: 'Edellinen vuosikymmen',
24
+ nextDecade: 'Seuraava vuosikymmen',
25
+ previousCentury: 'Edellinen vuosisata',
26
+ nextCentury: 'Seuraava vuosisata'
27
+ };
@@ -0,0 +1,27 @@
1
+ export default {
2
+ today: 'Aujourd\'hui',
3
+ now: 'Maintenant',
4
+ backToToday: 'Aujourd\'hui',
5
+ ok: 'Ok',
6
+ clear: 'Rétablir',
7
+ month: 'Mois',
8
+ year: 'Année',
9
+ timeSelect: 'Sélectionner l\'heure',
10
+ dateSelect: 'Sélectionner l\'heure',
11
+ monthSelect: 'Choisissez un mois',
12
+ yearSelect: 'Choisissez une année',
13
+ decadeSelect: 'Choisissez une décennie',
14
+ yearFormat: 'YYYY',
15
+ dateFormat: 'D/M/YYYY',
16
+ dayFormat: 'D',
17
+ dateTimeFormat: 'D/M/YYYY HH:mm:ss',
18
+ monthBeforeYear: true,
19
+ previousMonth: 'Mois précédent (PageUp)',
20
+ nextMonth: 'Mois suivant (PageDown)',
21
+ previousYear: 'Année précédente (Ctrl + gauche)',
22
+ nextYear: 'Année prochaine (Ctrl + droite)',
23
+ previousDecade: 'Décennie précédente',
24
+ nextDecade: 'Décennie suivante',
25
+ previousCentury: 'Siècle précédent',
26
+ nextCentury: 'Siècle suivant'
27
+ };
@@ -0,0 +1,27 @@
1
+ export default {
2
+ today: 'Aujourd\'hui',
3
+ now: 'Maintenant',
4
+ backToToday: 'Aujourd\'hui',
5
+ ok: 'Ok',
6
+ clear: 'Rétablir',
7
+ month: 'Mois',
8
+ year: 'Année',
9
+ timeSelect: 'Sélectionner l\'heure',
10
+ dateSelect: 'Sélectionner la date',
11
+ monthSelect: 'Choisissez un mois',
12
+ yearSelect: 'Choisissez une année',
13
+ decadeSelect: 'Choisissez une décennie',
14
+ yearFormat: 'YYYY',
15
+ dateFormat: 'DD/MM/YYYY',
16
+ dayFormat: 'DD',
17
+ dateTimeFormat: 'DD/MM/YYYY HH:mm:ss',
18
+ monthBeforeYear: true,
19
+ previousMonth: 'Mois précédent (PageUp)',
20
+ nextMonth: 'Mois suivant (PageDown)',
21
+ previousYear: 'Année précédente (Ctrl + gauche)',
22
+ nextYear: 'Année prochaine (Ctrl + droite)',
23
+ previousDecade: 'Décennie précédente',
24
+ nextDecade: 'Décennie suivante',
25
+ previousCentury: 'Siècle précédent',
26
+ nextCentury: 'Siècle suivant'
27
+ };
@@ -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: 'חודש קודם (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: 'ठीक',
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,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
+ };