aboutsummaryrefslogtreecommitdiffstats
path: root/app/assets/javascripts/plugins/jquery.ui.datepicker-i18n.js
diff options
context:
space:
mode:
Diffstat (limited to 'app/assets/javascripts/plugins/jquery.ui.datepicker-i18n.js')
-rw-r--r--app/assets/javascripts/plugins/jquery.ui.datepicker-i18n.js78
1 files changed, 0 insertions, 78 deletions
diff --git a/app/assets/javascripts/plugins/jquery.ui.datepicker-i18n.js b/app/assets/javascripts/plugins/jquery.ui.datepicker-i18n.js
deleted file mode 100644
index ef2bfb631..000000000
--- a/app/assets/javascripts/plugins/jquery.ui.datepicker-i18n.js
+++ /dev/null
@@ -1,78 +0,0 @@
-/* French initialisation for the jQuery UI date picker plugin. */
-/* Written by Keith Wood (kbwood{at}iinet.com.au) and Stéphane Nahmani (sholby@sholby.net). */
-jQuery(function($){
-
- $.datepicker.regional['fr'] = {
- closeText: 'Fermer',
- prevText: '<Préc',
- nextText: 'Suiv>',
- currentText: 'Courant',
- monthNames: ['Janvier','Février','Mars','Avril','Mai','Juin',
- 'Juillet','Août','Septembre','Octobre','Novembre','Décembre'],
- monthNamesShort: ['Jan','Fév','Mar','Avr','Mai','Jun',
- 'Jul','Aoû','Sep','Oct','Nov','Déc'],
- dayNames: ['Dimanche','Lundi','Mardi','Mercredi','Jeudi','Vendredi','Samedi'],
- dayNamesShort: ['Dim','Lun','Mar','Mer','Jeu','Ven','Sam'],
- dayNamesMin: ['Di','Lu','Ma','Me','Je','Ve','Sa'],
- weekHeader: 'Sm',
- dateFormat: 'dd/mm/yy',
- firstDay: 1,
- isRTL: false,
- showMonthAfterYear: false,
- yearSuffix: ''};
-
- $.datepicker.regional['en'] = {
- closeText: 'Done',
- prevText: 'Prev',
- nextText: 'Next',
- currentText: 'Today',
- monthNames: ['January','February','March','April','May','June',
- 'July','August','September','October','November','December'],
- monthNamesShort: ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun',
- 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec'],
- dayNames: ['Sunday', 'Monday', 'Tuesday', 'Wednesday', 'Thursday', 'Friday', 'Saturday'],
- dayNamesShort: ['Sun', 'Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat'],
- dayNamesMin: ['Su','Mo','Tu','We','Th','Fr','Sa'],
- weekHeader: 'Wk',
- dateFormat: 'dd/mm/yy',
- firstDay: 1,
- isRTL: false,
- showMonthAfterYear: false,
- yearSuffix: ''};
-
- if(!(Modernizr.inputtypes && Modernizr.inputtypes.date))
- {
- $.datepicker.setDefaults($.datepicker.regional[ "" ]);
- $("input[type='date']").each( function(index, element)
- {
- $(element).datepicker(
- {
- dateFormat: "dd/mm/yy",
- dayNamesShort: $.datepicker.regional[ $('html').attr('lang') ].dayNamesShort,
- dayNames: $.datepicker.regional[ $('html').attr('lang') ].dayNames,
- monthNamesShort: $.datepicker.regional[ $('html').attr('lang') ].monthNamesShort,
- monthNames: $.datepicker.regional[ $('html').attr('lang') ].monthNames
- } );
- if ($(element).val().indexOf('/') >= 0)
- {
- $(element).datepicker("setDate", $.datepicker.parseDate('dd/mm/yy', $(element).val() ) );
- }
- else
- {
- $(element).datepicker("setDate", $.datepicker.parseDate('yy-mm-dd', $(element).val() ) );
- }
- });
-
- $("form").submit(function(event) {
- var $this = $(event.target);
- $this.find("input[type='date']").each(
- function(index, element)
- {
- var date = $.datepicker.formatDate('yy-mm-dd', $.datepicker.parseDate('dd/mm/yy', $(element).val() ) );
- $(element).val(date);
- }
- );
- });
- }
-
-});