]> source.dussan.org Git - jquery-ui.git/commitdiff
Datepicker: Replicate fr-locale changes to the demo copy. Adjust unit tests to match...
authorJörn Zaefferer <joern.zaefferer@gmail.com>
Fri, 31 May 2013 08:35:44 +0000 (10:35 +0200)
committerScott González <scott.gonzalez@gmail.com>
Tue, 26 Nov 2013 15:25:24 +0000 (10:25 -0500)
(cherry picked from commit aaf75767fa98a6acdf00b1414bee622d3a3747cc)

demos/datepicker/jquery.ui.datepicker-fr.js
tests/unit/datepicker/datepicker_options.js

index 934afd1d023b1b81bfd8f2ae32c03fefbfbbdd70..2d06743a66121bc35ecb665db5d50079bf376db4 100644 (file)
@@ -8,12 +8,12 @@ jQuery(function($){
                prevText: 'Précédent',
                nextText: 'Suivant',
                currentText: 'Aujourd\'hui',
-               monthNames: ['Janvier','Février','Mars','Avril','Mai','Juin',
-               'Juillet','Août','Septembre','Octobre','Novembre','Décembre'],
-               monthNamesShort: ['Janv.','Févr.','Mars','Avril','Mai','Juin',
-               'Juil.','Août','Sept.','Oct.','Nov.','Déc.'],
-               dayNames: ['Dimanche','Lundi','Mardi','Mercredi','Jeudi','Vendredi','Samedi'],
-               dayNamesShort: ['Dim.','Lun.','Mar.','Mer.','Jeu.','Ven.','Sam.'],
+               monthNames: ['janvier', 'février', 'mars', 'avril', 'mai', 'juin',
+                       'juillet', 'août', 'septembre', 'octobre', 'novembre', 'décembre'],
+               monthNamesShort: ['janv.', 'févr.', 'mars', 'avril', 'mai', 'juin',
+                       'juil.', 'août', 'sept.', 'oct.', 'nov.', 'déc.'],
+               dayNames: ['dimanche', 'lundi', 'mardi', 'mercredi', 'jeudi', 'vendredi', 'samedi'],
+               dayNamesShort: ['dim.', 'lun.', 'mar.', 'mer.', 'jeu.', 'ven.', 'sam.'],
                dayNamesMin: ['D','L','M','M','J','V','S'],
                weekHeader: 'Sem.',
                dateFormat: 'dd/mm/yy',
index a775a53020a218992900f7b2fc9749ed71b968f6..25257e99faf2591bd797397dcaf2492e9f7f5e36 100644 (file)
@@ -1057,13 +1057,13 @@ test("formatDate", function() {
        settings = {dayNamesShort: fr.dayNamesShort, dayNames: fr.dayNames,
                monthNamesShort: fr.monthNamesShort, monthNames: fr.monthNames};
        equal($.datepicker.formatDate("D M y", new Date(2001, 4 - 1, 9), settings),
-               "Lun. Avril 01", "Format date D M y with settings");
+               "lun. avril 01", "Format date D M y with settings");
        equal($.datepicker.formatDate("DD MM yy", new Date(2001, 4 - 1, 9), settings),
-               "Lundi Avril 2001", "Format date DD MM yy with settings");
+               "lundi avril 2001", "Format date DD MM yy with settings");
        equal($.datepicker.formatDate("DD, MM d, yy", new Date(2001, 4 - 1, 9), settings),
-               "Lundi, Avril 9, 2001", "Format date DD, MM d, yy with settings");
+               "lundi, avril 9, 2001", "Format date DD, MM d, yy with settings");
        equal($.datepicker.formatDate("'jour' d 'de' MM (''DD''), yy",
-               new Date(2001, 4 - 1, 9), settings), "jour 9 de Avril ('Lundi'), 2001",
+               new Date(2001, 4 - 1, 9), settings), "jour 9 de avril ('lundi'), 2001",
                "Format date 'jour' d 'de' MM (''DD''), yy with settings");
 });