date_time_picker 0.5.4 → 0.5.6

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 (59) hide show
  1. checksums.yaml +15 -0
  2. data/MIT-LICENSE +21 -21
  3. data/README.rdoc +72 -72
  4. data/lib/date_time_picker/date_time_picker_helpers.rb +78 -78
  5. data/lib/date_time_picker.rb +37 -37
  6. data/lib/generators/date_time_picker/USAGE +2 -2
  7. data/lib/generators/date_time_picker/date_time_picker_generator.rb +11 -11
  8. data/lib/generators/date_time_picker/templates/date_time_picker.rb +2 -2
  9. data/lib/simple_form/inputs/ui_date_input.rb +4 -4
  10. data/lib/simple_form/inputs/ui_date_time_input.rb +4 -4
  11. data/lib/simple_form/inputs/ui_time_input.rb +4 -4
  12. data/lib/simple_form/inputs_ext.rb +3 -3
  13. data/test/Rakefile +7 -7
  14. data/test/app/controllers/application_controller.rb +5 -5
  15. data/test/app/views/layouts/application.html.erb +12 -12
  16. data/test/config/application.rb +12 -12
  17. data/test/config/boot.rb +3 -3
  18. data/test/config/date_time_picker.yml +1 -1
  19. data/test/config/environment.rb +5 -5
  20. data/test/config/environments/test.rb +7 -7
  21. data/test/config/routes.rb +3 -3
  22. data/test/config.ru +4 -4
  23. data/test/script/rails +6 -6
  24. data/test/spec/application_spec.rb +13 -13
  25. data/test/spec/spec_helper.rb +4 -4
  26. data/vendor/assets/i18n/date_time_picker_ca.js +43 -43
  27. data/vendor/assets/i18n/date_time_picker_cs.js +43 -43
  28. data/vendor/assets/i18n/date_time_picker_de.js +43 -43
  29. data/vendor/assets/i18n/date_time_picker_el.js +42 -42
  30. data/vendor/assets/i18n/date_time_picker_es.js +42 -42
  31. data/vendor/assets/i18n/date_time_picker_et.js +42 -42
  32. data/vendor/assets/i18n/date_time_picker_fi.js +43 -43
  33. data/vendor/assets/i18n/date_time_picker_fr.js +45 -45
  34. data/vendor/assets/i18n/date_time_picker_gl.js +42 -42
  35. data/vendor/assets/i18n/date_time_picker_he.js +43 -43
  36. data/vendor/assets/i18n/date_time_picker_hu.js +43 -43
  37. data/vendor/assets/i18n/date_time_picker_id.js +42 -42
  38. data/vendor/assets/i18n/date_time_picker_it.js +43 -43
  39. data/vendor/assets/i18n/date_time_picker_ja.js +42 -42
  40. data/vendor/assets/i18n/date_time_picker_ko.js +42 -42
  41. data/vendor/assets/i18n/date_time_picker_lt.js +42 -42
  42. data/vendor/assets/i18n/date_time_picker_nl.js +42 -42
  43. data/vendor/assets/i18n/date_time_picker_no.js +43 -43
  44. data/vendor/assets/i18n/date_time_picker_pl.js +43 -43
  45. data/vendor/assets/i18n/date_time_picker_pt-BR.js +42 -42
  46. data/vendor/assets/i18n/date_time_picker_pt.js +41 -41
  47. data/vendor/assets/i18n/date_time_picker_ro.js +46 -46
  48. data/vendor/assets/i18n/date_time_picker_ru.js +42 -42
  49. data/vendor/assets/i18n/date_time_picker_sk.js +43 -43
  50. data/vendor/assets/i18n/date_time_picker_sv.js +43 -43
  51. data/vendor/assets/i18n/date_time_picker_tr.js +42 -42
  52. data/vendor/assets/i18n/date_time_picker_vi.js +43 -43
  53. data/vendor/assets/i18n/date_time_picker_zh-CN.js +43 -43
  54. data/vendor/assets/i18n/date_time_picker_zh-TW.js +43 -43
  55. data/vendor/assets/javascripts/date_time_picker.js +19 -19
  56. data/vendor/assets/javascripts/date_time_picker_all.js +1 -1
  57. data/vendor/assets/timepicker/jquery-ui-timepicker-addon.css +6 -6
  58. data/vendor/assets/timepicker/jquery-ui-timepicker-addon.js +1326 -1326
  59. metadata +35 -45
@@ -1,43 +1,43 @@
1
- /* Finnish initialisation for the jQuery UI date picker plugin. */
2
- /* Written by Harri Kilpi� (harrikilpio@gmail.com). */
3
- jQuery(function($){
4
- $.datepicker.regional['fi'] = {
5
- closeText: 'Sulje',
6
- prevText: '«Edellinen',
7
- nextText: 'Seuraava»',
8
- currentText: 'Tänään',
9
- monthNames: ['Tammikuu','Helmikuu','Maaliskuu','Huhtikuu','Toukokuu','Kesäkuu',
10
- 'Heinäkuu','Elokuu','Syyskuu','Lokakuu','Marraskuu','Joulukuu'],
11
- monthNamesShort: ['Tammi','Helmi','Maalis','Huhti','Touko','Kesä',
12
- 'Heinä','Elo','Syys','Loka','Marras','Joulu'],
13
- dayNamesShort: ['Su','Ma','Ti','Ke','To','Pe','Su'],
14
- dayNames: ['Sunnuntai','Maanantai','Tiistai','Keskiviikko','Torstai','Perjantai','Lauantai'],
15
- dayNamesMin: ['Su','Ma','Ti','Ke','To','Pe','La'],
16
- weekHeader: 'Vk',
17
- dateFormat: 'dd.mm.yy',
18
- firstDay: 1,
19
- isRTL: false,
20
- showMonthAfterYear: false,
21
- yearSuffix: ''};
22
-
23
- });
24
- /* Finnish translation for the jQuery Timepicker Addon */
25
- /* Written by Juga Paazmaya (http://github.com/paazmaya) */
26
- jQuery(function($) {
27
- $.timepicker.regional['fi'] = {
28
- timeOnlyTitle: 'Valitse aika',
29
- timeText: 'Aika',
30
- hourText: 'Tunti',
31
- minuteText: 'Minuutti',
32
- secondText: 'Sekunti',
33
- millisecText: 'Millisekunnin',
34
- timezoneText: 'Aikavyöhyke',
35
- currentText: 'Nyt',
36
- closeText: 'Sulje',
37
- timeFormat: 'hh:mm',
38
- amNames: ['ap.', 'AM', 'A'],
39
- pmNames: ['ip.', 'PM', 'P'],
40
- ampm: false
41
- };
42
-
43
- });
1
+ /* Finnish initialisation for the jQuery UI date picker plugin. */
2
+ /* Written by Harri Kilpi� (harrikilpio@gmail.com). */
3
+ jQuery(function($){
4
+ $.datepicker.regional['fi'] = {
5
+ closeText: 'Sulje',
6
+ prevText: '«Edellinen',
7
+ nextText: 'Seuraava»',
8
+ currentText: 'Tänään',
9
+ monthNames: ['Tammikuu','Helmikuu','Maaliskuu','Huhtikuu','Toukokuu','Kesäkuu',
10
+ 'Heinäkuu','Elokuu','Syyskuu','Lokakuu','Marraskuu','Joulukuu'],
11
+ monthNamesShort: ['Tammi','Helmi','Maalis','Huhti','Touko','Kesä',
12
+ 'Heinä','Elo','Syys','Loka','Marras','Joulu'],
13
+ dayNamesShort: ['Su','Ma','Ti','Ke','To','Pe','Su'],
14
+ dayNames: ['Sunnuntai','Maanantai','Tiistai','Keskiviikko','Torstai','Perjantai','Lauantai'],
15
+ dayNamesMin: ['Su','Ma','Ti','Ke','To','Pe','La'],
16
+ weekHeader: 'Vk',
17
+ dateFormat: 'dd.mm.yy',
18
+ firstDay: 1,
19
+ isRTL: false,
20
+ showMonthAfterYear: false,
21
+ yearSuffix: ''};
22
+
23
+ });
24
+ /* Finnish translation for the jQuery Timepicker Addon */
25
+ /* Written by Juga Paazmaya (http://github.com/paazmaya) */
26
+ jQuery(function($) {
27
+ $.timepicker.regional['fi'] = {
28
+ timeOnlyTitle: 'Valitse aika',
29
+ timeText: 'Aika',
30
+ hourText: 'Tunti',
31
+ minuteText: 'Minuutti',
32
+ secondText: 'Sekunti',
33
+ millisecText: 'Millisekunnin',
34
+ timezoneText: 'Aikavyöhyke',
35
+ currentText: 'Nyt',
36
+ closeText: 'Sulje',
37
+ timeFormat: 'hh:mm',
38
+ amNames: ['ap.', 'AM', 'A'],
39
+ pmNames: ['ip.', 'PM', 'P'],
40
+ ampm: false
41
+ };
42
+
43
+ });
@@ -1,45 +1,45 @@
1
- /* French initialisation for the jQuery UI date picker plugin. */
2
- /* Written by Keith Wood (kbwood{at}iinet.com.au),
3
- Stéphane Nahmani (sholby@sholby.net),
4
- Stéphane Raimbault <stephane.raimbault@gmail.com> */
5
- jQuery(function($){
6
- $.datepicker.regional['fr'] = {
7
- closeText: 'Fermer',
8
- prevText: 'Précédent',
9
- nextText: 'Suivant',
10
- currentText: 'Aujourd\'hui',
11
- monthNames: ['Janvier','Février','Mars','Avril','Mai','Juin',
12
- 'Juillet','Août','Septembre','Octobre','Novembre','Décembre'],
13
- monthNamesShort: ['Janv.','Févr.','Mars','Avril','Mai','Juin',
14
- 'Juil.','Août','Sept.','Oct.','Nov.','Déc.'],
15
- dayNames: ['Dimanche','Lundi','Mardi','Mercredi','Jeudi','Vendredi','Samedi'],
16
- dayNamesShort: ['Dim.','Lun.','Mar.','Mer.','Jeu.','Ven.','Sam.'],
17
- dayNamesMin: ['D','L','M','M','J','V','S'],
18
- weekHeader: 'Sem.',
19
- dateFormat: 'dd/mm/yy',
20
- firstDay: 1,
21
- isRTL: false,
22
- showMonthAfterYear: false,
23
- yearSuffix: ''};
24
-
25
- });
26
- /* French translation for the jQuery Timepicker Addon */
27
- /* Written by Thomas Lété */
28
- jQuery(function($) {
29
- $.timepicker.regional['fr'] = {
30
- timeOnlyTitle: 'Choisir une heure',
31
- timeText: 'Heure',
32
- hourText: 'Heures',
33
- minuteText: 'Minutes',
34
- secondText: 'Secondes',
35
- millisecText: 'Millisecondes',
36
- timezoneText: 'Fuseau horaire',
37
- currentText: 'Maintenant',
38
- closeText: 'Terminé',
39
- timeFormat: 'hh:mm',
40
- amNames: ['AM', 'A'],
41
- pmNames: ['PM', 'P'],
42
- ampm: false
43
- };
44
-
45
- });
1
+ /* French initialisation for the jQuery UI date picker plugin. */
2
+ /* Written by Keith Wood (kbwood{at}iinet.com.au),
3
+ Stéphane Nahmani (sholby@sholby.net),
4
+ Stéphane Raimbault <stephane.raimbault@gmail.com> */
5
+ jQuery(function($){
6
+ $.datepicker.regional['fr'] = {
7
+ closeText: 'Fermer',
8
+ prevText: 'Précédent',
9
+ nextText: 'Suivant',
10
+ currentText: 'Aujourd\'hui',
11
+ monthNames: ['Janvier','Février','Mars','Avril','Mai','Juin',
12
+ 'Juillet','Août','Septembre','Octobre','Novembre','Décembre'],
13
+ monthNamesShort: ['Janv.','Févr.','Mars','Avril','Mai','Juin',
14
+ 'Juil.','Août','Sept.','Oct.','Nov.','Déc.'],
15
+ dayNames: ['Dimanche','Lundi','Mardi','Mercredi','Jeudi','Vendredi','Samedi'],
16
+ dayNamesShort: ['Dim.','Lun.','Mar.','Mer.','Jeu.','Ven.','Sam.'],
17
+ dayNamesMin: ['D','L','M','M','J','V','S'],
18
+ weekHeader: 'Sem.',
19
+ dateFormat: 'dd/mm/yy',
20
+ firstDay: 1,
21
+ isRTL: false,
22
+ showMonthAfterYear: false,
23
+ yearSuffix: ''};
24
+
25
+ });
26
+ /* French translation for the jQuery Timepicker Addon */
27
+ /* Written by Thomas Lété */
28
+ jQuery(function($) {
29
+ $.timepicker.regional['fr'] = {
30
+ timeOnlyTitle: 'Choisir une heure',
31
+ timeText: 'Heure',
32
+ hourText: 'Heures',
33
+ minuteText: 'Minutes',
34
+ secondText: 'Secondes',
35
+ millisecText: 'Millisecondes',
36
+ timezoneText: 'Fuseau horaire',
37
+ currentText: 'Maintenant',
38
+ closeText: 'Terminé',
39
+ timeFormat: 'hh:mm',
40
+ amNames: ['AM', 'A'],
41
+ pmNames: ['PM', 'P'],
42
+ ampm: false
43
+ };
44
+
45
+ });
@@ -1,42 +1,42 @@
1
- /* Galician localization for 'UI date picker' jQuery extension. */
2
- /* Translated by Jorge Barreiro <yortx.barry@gmail.com>. */
3
- jQuery(function($){
4
- $.datepicker.regional['gl'] = {
5
- closeText: 'Pechar',
6
- prevText: '&#x3C;Ant',
7
- nextText: 'Seg&#x3E;',
8
- currentText: 'Hoxe',
9
- monthNames: ['Xaneiro','Febreiro','Marzo','Abril','Maio','Xuño',
10
- 'Xullo','Agosto','Setembro','Outubro','Novembro','Decembro'],
11
- monthNamesShort: ['Xan','Feb','Mar','Abr','Mai','Xuñ',
12
- 'Xul','Ago','Set','Out','Nov','Dec'],
13
- dayNames: ['Domingo','Luns','Martes','M&#xE9;rcores','Xoves','Venres','S&#xE1;bado'],
14
- dayNamesShort: ['Dom','Lun','Mar','M&#xE9;r','Xov','Ven','S&#xE1;b'],
15
- dayNamesMin: ['Do','Lu','Ma','M&#xE9;','Xo','Ve','S&#xE1;'],
16
- weekHeader: 'Sm',
17
- dateFormat: 'dd/mm/yy',
18
- firstDay: 1,
19
- isRTL: false,
20
- showMonthAfterYear: false,
21
- yearSuffix: ''};
22
-
23
- });/* Galician translation for the jQuery Timepicker Addon */
24
- /* Written by David Barral */
25
- jQuery(function($) {
26
- $.timepicker.regional['gl'] = {
27
- timeOnlyTitle: 'Elixir unha hora',
28
- timeText: 'Hora',
29
- hourText: 'Horas',
30
- minuteText: 'Minutos',
31
- secondText: 'Segundos',
32
- millisecText: 'Milisegundos',
33
- timezoneText: 'Fuso horario',
34
- currentText: 'Agora',
35
- closeText: 'Pechar',
36
- timeFormat: 'hh:mm',
37
- amNames: ['a.m.', 'AM', 'A'],
38
- pmNames: ['p.m.', 'PM', 'P'],
39
- ampm: false
40
- };
41
-
42
- });
1
+ /* Galician localization for 'UI date picker' jQuery extension. */
2
+ /* Translated by Jorge Barreiro <yortx.barry@gmail.com>. */
3
+ jQuery(function($){
4
+ $.datepicker.regional['gl'] = {
5
+ closeText: 'Pechar',
6
+ prevText: '&#x3C;Ant',
7
+ nextText: 'Seg&#x3E;',
8
+ currentText: 'Hoxe',
9
+ monthNames: ['Xaneiro','Febreiro','Marzo','Abril','Maio','Xuño',
10
+ 'Xullo','Agosto','Setembro','Outubro','Novembro','Decembro'],
11
+ monthNamesShort: ['Xan','Feb','Mar','Abr','Mai','Xuñ',
12
+ 'Xul','Ago','Set','Out','Nov','Dec'],
13
+ dayNames: ['Domingo','Luns','Martes','M&#xE9;rcores','Xoves','Venres','S&#xE1;bado'],
14
+ dayNamesShort: ['Dom','Lun','Mar','M&#xE9;r','Xov','Ven','S&#xE1;b'],
15
+ dayNamesMin: ['Do','Lu','Ma','M&#xE9;','Xo','Ve','S&#xE1;'],
16
+ weekHeader: 'Sm',
17
+ dateFormat: 'dd/mm/yy',
18
+ firstDay: 1,
19
+ isRTL: false,
20
+ showMonthAfterYear: false,
21
+ yearSuffix: ''};
22
+
23
+ });/* Galician translation for the jQuery Timepicker Addon */
24
+ /* Written by David Barral */
25
+ jQuery(function($) {
26
+ $.timepicker.regional['gl'] = {
27
+ timeOnlyTitle: 'Elixir unha hora',
28
+ timeText: 'Hora',
29
+ hourText: 'Horas',
30
+ minuteText: 'Minutos',
31
+ secondText: 'Segundos',
32
+ millisecText: 'Milisegundos',
33
+ timezoneText: 'Fuso horario',
34
+ currentText: 'Agora',
35
+ closeText: 'Pechar',
36
+ timeFormat: 'hh:mm',
37
+ amNames: ['a.m.', 'AM', 'A'],
38
+ pmNames: ['p.m.', 'PM', 'P'],
39
+ ampm: false
40
+ };
41
+
42
+ });
@@ -1,43 +1,43 @@
1
- /* Hebrew initialisation for the UI Datepicker extension. */
2
- /* Written by Amir Hardon (ahardon at gmail dot com). */
3
- jQuery(function($){
4
- $.datepicker.regional['he'] = {
5
- closeText: 'סגור',
6
- prevText: '&#x3C;הקודם',
7
- nextText: 'הבא&#x3E;',
8
- currentText: 'היום',
9
- monthNames: ['ינואר','פברואר','מרץ','אפריל','מאי','יוני',
10
- 'יולי','אוגוסט','ספטמבר','אוקטובר','נובמבר','דצמבר'],
11
- monthNamesShort: ['ינו','פבר','מרץ','אפר','מאי','יוני',
12
- 'יולי','אוג','ספט','אוק','נוב','דצמ'],
13
- dayNames: ['ראשון','שני','שלישי','רביעי','חמישי','שישי','שבת'],
14
- dayNamesShort: ['א\'','ב\'','ג\'','ד\'','ה\'','ו\'','שבת'],
15
- dayNamesMin: ['א\'','ב\'','ג\'','ד\'','ה\'','ו\'','שבת'],
16
- weekHeader: 'Wk',
17
- dateFormat: 'dd/mm/yy',
18
- firstDay: 0,
19
- isRTL: true,
20
- showMonthAfterYear: false,
21
- yearSuffix: ''};
22
-
23
- });
24
- /* Hebrew translation for the jQuery Timepicker Addon */
25
- /* Written by Lior Lapid */
26
- jQuery(function($) {
27
- $.timepicker.regional["he"] = {
28
- timeOnlyTitle: "בחירת זמן",
29
- timeText: "שעה",
30
- hourText: "שעות",
31
- minuteText: "דקות",
32
- secondText: "שניות",
33
- millisecText: "אלפית השנייה",
34
- timezoneText: "אזור זמן",
35
- currentText: "עכשיו",
36
- closeText:"סגור",
37
- timeFormat: "hh:mm tt",
38
- amNames: ['לפנה"צ', 'AM', 'A'],
39
- pmNames: ['אחה"צ', 'PM', 'P'],
40
- ampm: false
41
- };
42
-
43
- });
1
+ /* Hebrew initialisation for the UI Datepicker extension. */
2
+ /* Written by Amir Hardon (ahardon at gmail dot com). */
3
+ jQuery(function($){
4
+ $.datepicker.regional['he'] = {
5
+ closeText: 'סגור',
6
+ prevText: '&#x3C;הקודם',
7
+ nextText: 'הבא&#x3E;',
8
+ currentText: 'היום',
9
+ monthNames: ['ינואר','פברואר','מרץ','אפריל','מאי','יוני',
10
+ 'יולי','אוגוסט','ספטמבר','אוקטובר','נובמבר','דצמבר'],
11
+ monthNamesShort: ['ינו','פבר','מרץ','אפר','מאי','יוני',
12
+ 'יולי','אוג','ספט','אוק','נוב','דצמ'],
13
+ dayNames: ['ראשון','שני','שלישי','רביעי','חמישי','שישי','שבת'],
14
+ dayNamesShort: ['א\'','ב\'','ג\'','ד\'','ה\'','ו\'','שבת'],
15
+ dayNamesMin: ['א\'','ב\'','ג\'','ד\'','ה\'','ו\'','שבת'],
16
+ weekHeader: 'Wk',
17
+ dateFormat: 'dd/mm/yy',
18
+ firstDay: 0,
19
+ isRTL: true,
20
+ showMonthAfterYear: false,
21
+ yearSuffix: ''};
22
+
23
+ });
24
+ /* Hebrew translation for the jQuery Timepicker Addon */
25
+ /* Written by Lior Lapid */
26
+ jQuery(function($) {
27
+ $.timepicker.regional["he"] = {
28
+ timeOnlyTitle: "בחירת זמן",
29
+ timeText: "שעה",
30
+ hourText: "שעות",
31
+ minuteText: "דקות",
32
+ secondText: "שניות",
33
+ millisecText: "אלפית השנייה",
34
+ timezoneText: "אזור זמן",
35
+ currentText: "עכשיו",
36
+ closeText:"סגור",
37
+ timeFormat: "hh:mm tt",
38
+ amNames: ['לפנה"צ', 'AM', 'A'],
39
+ pmNames: ['אחה"צ', 'PM', 'P'],
40
+ ampm: false
41
+ };
42
+
43
+ });
@@ -1,43 +1,43 @@
1
- /* Hungarian initialisation for the jQuery UI date picker plugin. */
2
- /* Written by Istvan Karaszi (jquery@spam.raszi.hu). */
3
- jQuery(function($){
4
- $.datepicker.regional['hu'] = {
5
- closeText: 'bezár',
6
- prevText: 'vissza',
7
- nextText: 'előre',
8
- currentText: 'ma',
9
- monthNames: ['Január', 'Február', 'Március', 'Április', 'Május', 'Június',
10
- 'Július', 'Augusztus', 'Szeptember', 'Október', 'November', 'December'],
11
- monthNamesShort: ['Jan', 'Feb', 'Már', 'Ápr', 'Máj', 'Jún',
12
- 'Júl', 'Aug', 'Szep', 'Okt', 'Nov', 'Dec'],
13
- dayNames: ['Vasárnap', 'Hétfő', 'Kedd', 'Szerda', 'Csütörtök', 'Péntek', 'Szombat'],
14
- dayNamesShort: ['Vas', 'Hét', 'Ked', 'Sze', 'Csü', 'Pén', 'Szo'],
15
- dayNamesMin: ['V', 'H', 'K', 'Sze', 'Cs', 'P', 'Szo'],
16
- weekHeader: 'Hét',
17
- dateFormat: 'yy.mm.dd.',
18
- firstDay: 1,
19
- isRTL: false,
20
- showMonthAfterYear: true,
21
- yearSuffix: ''};
22
-
23
- });
24
- /* Hungarian translation for the jQuery Timepicker Addon */
25
- /* Written by Vas Gábor */
26
- jQuery(function($) {
27
- $.timepicker.regional['hu'] = {
28
- timeOnlyTitle: 'Válasszon időpontot',
29
- timeText: 'Idő',
30
- hourText: 'Óra',
31
- minuteText: 'Perc',
32
- secondText: 'Másodperc',
33
- millisecText: 'Milliszekundumos',
34
- timezoneText: 'Időzóna',
35
- currentText: 'Most',
36
- closeText: 'Kész',
37
- timeFormat: 'hh:mm tt',
38
- amNames: ['de.', 'AM', 'A'],
39
- pmNames: ['du.', 'PM', 'P'],
40
- ampm: false
41
- };
42
-
43
- });
1
+ /* Hungarian initialisation for the jQuery UI date picker plugin. */
2
+ /* Written by Istvan Karaszi (jquery@spam.raszi.hu). */
3
+ jQuery(function($){
4
+ $.datepicker.regional['hu'] = {
5
+ closeText: 'bezár',
6
+ prevText: 'vissza',
7
+ nextText: 'előre',
8
+ currentText: 'ma',
9
+ monthNames: ['Január', 'Február', 'Március', 'Április', 'Május', 'Június',
10
+ 'Július', 'Augusztus', 'Szeptember', 'Október', 'November', 'December'],
11
+ monthNamesShort: ['Jan', 'Feb', 'Már', 'Ápr', 'Máj', 'Jún',
12
+ 'Júl', 'Aug', 'Szep', 'Okt', 'Nov', 'Dec'],
13
+ dayNames: ['Vasárnap', 'Hétfő', 'Kedd', 'Szerda', 'Csütörtök', 'Péntek', 'Szombat'],
14
+ dayNamesShort: ['Vas', 'Hét', 'Ked', 'Sze', 'Csü', 'Pén', 'Szo'],
15
+ dayNamesMin: ['V', 'H', 'K', 'Sze', 'Cs', 'P', 'Szo'],
16
+ weekHeader: 'Hét',
17
+ dateFormat: 'yy.mm.dd.',
18
+ firstDay: 1,
19
+ isRTL: false,
20
+ showMonthAfterYear: true,
21
+ yearSuffix: ''};
22
+
23
+ });
24
+ /* Hungarian translation for the jQuery Timepicker Addon */
25
+ /* Written by Vas Gábor */
26
+ jQuery(function($) {
27
+ $.timepicker.regional['hu'] = {
28
+ timeOnlyTitle: 'Válasszon időpontot',
29
+ timeText: 'Idő',
30
+ hourText: 'Óra',
31
+ minuteText: 'Perc',
32
+ secondText: 'Másodperc',
33
+ millisecText: 'Milliszekundumos',
34
+ timezoneText: 'Időzóna',
35
+ currentText: 'Most',
36
+ closeText: 'Kész',
37
+ timeFormat: 'hh:mm tt',
38
+ amNames: ['de.', 'AM', 'A'],
39
+ pmNames: ['du.', 'PM', 'P'],
40
+ ampm: false
41
+ };
42
+
43
+ });
@@ -1,42 +1,42 @@
1
- /* Indonesian initialisation for the jQuery UI date picker plugin. */
2
- /* Written by Deden Fathurahman (dedenf@gmail.com). */
3
- jQuery(function($){
4
- $.datepicker.regional['id'] = {
5
- closeText: 'Tutup',
6
- prevText: '&#x3C;mundur',
7
- nextText: 'maju&#x3E;',
8
- currentText: 'hari ini',
9
- monthNames: ['Januari','Februari','Maret','April','Mei','Juni',
10
- 'Juli','Agustus','September','Oktober','Nopember','Desember'],
11
- monthNamesShort: ['Jan','Feb','Mar','Apr','Mei','Jun',
12
- 'Jul','Agus','Sep','Okt','Nop','Des'],
13
- dayNames: ['Minggu','Senin','Selasa','Rabu','Kamis','Jumat','Sabtu'],
14
- dayNamesShort: ['Min','Sen','Sel','Rab','kam','Jum','Sab'],
15
- dayNamesMin: ['Mg','Sn','Sl','Rb','Km','jm','Sb'],
16
- weekHeader: 'Mg',
17
- dateFormat: 'dd/mm/yy',
18
- firstDay: 0,
19
- isRTL: false,
20
- showMonthAfterYear: false,
21
- yearSuffix: ''};
22
-
23
- });/* Indonesian translation for the jQuery Timepicker Addon */
24
- /* Written by Nia */
25
- jQuery(function($) {
26
- $.timepicker.regional['id'] = {
27
- timeOnlyTitle: 'Pilih Waktu',
28
- timeText: 'Waktu',
29
- hourText: 'Pukul',
30
- minuteText: 'Menit',
31
- secondText: 'Detik',
32
- millisecText: 'Milidetik',
33
- timezoneText: 'Zona Waktu',
34
- currentText: 'Sekarang',
35
- closeText: 'OK',
36
- timeFormat: 'hh:mm tt',
37
- amNames: ['AM', 'A'],
38
- pmNames: ['PM', 'P'],
39
- ampm: false
40
- };
41
-
42
- });
1
+ /* Indonesian initialisation for the jQuery UI date picker plugin. */
2
+ /* Written by Deden Fathurahman (dedenf@gmail.com). */
3
+ jQuery(function($){
4
+ $.datepicker.regional['id'] = {
5
+ closeText: 'Tutup',
6
+ prevText: '&#x3C;mundur',
7
+ nextText: 'maju&#x3E;',
8
+ currentText: 'hari ini',
9
+ monthNames: ['Januari','Februari','Maret','April','Mei','Juni',
10
+ 'Juli','Agustus','September','Oktober','Nopember','Desember'],
11
+ monthNamesShort: ['Jan','Feb','Mar','Apr','Mei','Jun',
12
+ 'Jul','Agus','Sep','Okt','Nop','Des'],
13
+ dayNames: ['Minggu','Senin','Selasa','Rabu','Kamis','Jumat','Sabtu'],
14
+ dayNamesShort: ['Min','Sen','Sel','Rab','kam','Jum','Sab'],
15
+ dayNamesMin: ['Mg','Sn','Sl','Rb','Km','jm','Sb'],
16
+ weekHeader: 'Mg',
17
+ dateFormat: 'dd/mm/yy',
18
+ firstDay: 0,
19
+ isRTL: false,
20
+ showMonthAfterYear: false,
21
+ yearSuffix: ''};
22
+
23
+ });/* Indonesian translation for the jQuery Timepicker Addon */
24
+ /* Written by Nia */
25
+ jQuery(function($) {
26
+ $.timepicker.regional['id'] = {
27
+ timeOnlyTitle: 'Pilih Waktu',
28
+ timeText: 'Waktu',
29
+ hourText: 'Pukul',
30
+ minuteText: 'Menit',
31
+ secondText: 'Detik',
32
+ millisecText: 'Milidetik',
33
+ timezoneText: 'Zona Waktu',
34
+ currentText: 'Sekarang',
35
+ closeText: 'OK',
36
+ timeFormat: 'hh:mm tt',
37
+ amNames: ['AM', 'A'],
38
+ pmNames: ['PM', 'P'],
39
+ ampm: false
40
+ };
41
+
42
+ });
@@ -1,43 +1,43 @@
1
- /* Italian initialisation for the jQuery UI date picker plugin. */
2
- /* Written by Antonello Pasella (antonello.pasella@gmail.com). */
3
- jQuery(function($){
4
- $.datepicker.regional['it'] = {
5
- closeText: 'Chiudi',
6
- prevText: '&#x3C;Prec',
7
- nextText: 'Succ&#x3E;',
8
- currentText: 'Oggi',
9
- monthNames: ['Gennaio','Febbraio','Marzo','Aprile','Maggio','Giugno',
10
- 'Luglio','Agosto','Settembre','Ottobre','Novembre','Dicembre'],
11
- monthNamesShort: ['Gen','Feb','Mar','Apr','Mag','Giu',
12
- 'Lug','Ago','Set','Ott','Nov','Dic'],
13
- dayNames: ['Domenica','Luned&#xEC;','Marted&#xEC;','Mercoled&#xEC;','Gioved&#xEC;','Venerd&#xEC;','Sabato'],
14
- dayNamesShort: ['Dom','Lun','Mar','Mer','Gio','Ven','Sab'],
15
- dayNamesMin: ['Do','Lu','Ma','Me','Gi','Ve','Sa'],
16
- weekHeader: 'Sm',
17
- dateFormat: 'dd/mm/yy',
18
- firstDay: 1,
19
- isRTL: false,
20
- showMonthAfterYear: false,
21
- yearSuffix: ''};
22
-
23
- });
24
- /* Italian translation for the jQuery Timepicker Addon */
25
- /* Written by Marco "logicoder" Del Tongo */
26
- jQuery(function($) {
27
- $.timepicker.regional['it'] = {
28
- timeOnlyTitle: 'Scegli orario',
29
- timeText: 'Orario',
30
- hourText: 'Ora',
31
- minuteText: 'Minuto',
32
- secondText: 'Secondo',
33
- millisecText: 'Millisecondo',
34
- timezoneText: 'Fuso orario',
35
- currentText: 'Adesso',
36
- closeText: 'Chiudi',
37
- timeFormat: 'hh:mm',
38
- amNames: ['m.', 'AM', 'A'],
39
- pmNames: ['p.', 'PM', 'P'],
40
- ampm: false
41
- };
42
-
43
- });
1
+ /* Italian initialisation for the jQuery UI date picker plugin. */
2
+ /* Written by Antonello Pasella (antonello.pasella@gmail.com). */
3
+ jQuery(function($){
4
+ $.datepicker.regional['it'] = {
5
+ closeText: 'Chiudi',
6
+ prevText: '&#x3C;Prec',
7
+ nextText: 'Succ&#x3E;',
8
+ currentText: 'Oggi',
9
+ monthNames: ['Gennaio','Febbraio','Marzo','Aprile','Maggio','Giugno',
10
+ 'Luglio','Agosto','Settembre','Ottobre','Novembre','Dicembre'],
11
+ monthNamesShort: ['Gen','Feb','Mar','Apr','Mag','Giu',
12
+ 'Lug','Ago','Set','Ott','Nov','Dic'],
13
+ dayNames: ['Domenica','Luned&#xEC;','Marted&#xEC;','Mercoled&#xEC;','Gioved&#xEC;','Venerd&#xEC;','Sabato'],
14
+ dayNamesShort: ['Dom','Lun','Mar','Mer','Gio','Ven','Sab'],
15
+ dayNamesMin: ['Do','Lu','Ma','Me','Gi','Ve','Sa'],
16
+ weekHeader: 'Sm',
17
+ dateFormat: 'dd/mm/yy',
18
+ firstDay: 1,
19
+ isRTL: false,
20
+ showMonthAfterYear: false,
21
+ yearSuffix: ''};
22
+
23
+ });
24
+ /* Italian translation for the jQuery Timepicker Addon */
25
+ /* Written by Marco "logicoder" Del Tongo */
26
+ jQuery(function($) {
27
+ $.timepicker.regional['it'] = {
28
+ timeOnlyTitle: 'Scegli orario',
29
+ timeText: 'Orario',
30
+ hourText: 'Ora',
31
+ minuteText: 'Minuto',
32
+ secondText: 'Secondo',
33
+ millisecText: 'Millisecondo',
34
+ timezoneText: 'Fuso orario',
35
+ currentText: 'Adesso',
36
+ closeText: 'Chiudi',
37
+ timeFormat: 'hh:mm',
38
+ amNames: ['m.', 'AM', 'A'],
39
+ pmNames: ['p.', 'PM', 'P'],
40
+ ampm: false
41
+ };
42
+
43
+ });