diff options
author | adam j. sontag <ajpiano@ajpiano.com> | 2011-02-18 11:45:44 -0500 |
---|---|---|
committer | Scott González <scott.gonzalez@gmail.com> | 2011-02-21 21:19:46 +0100 |
commit | 971566d258af5ed5762e70ba7aa132f25121aed7 (patch) | |
tree | b7914ab9d47a6bb07326f8989266647be1d7c74f | |
parent | 9162679e1589e6883cee0ec462bce5e20ef47ec7 (diff) | |
download | jquery-ui-971566d258af5ed5762e70ba7aa132f25121aed7.tar.gz jquery-ui-971566d258af5ed5762e70ba7aa132f25121aed7.zip |
Datepicker: Display Year before Month in Hungarian i18n. Fixes #7019 - Hungarian Localisation has month-date in wrong order
(cherry picked from commit b4bcc1bf9dc8673089eb7cdcc3378a93d7f0a678)
-rw-r--r-- | ui/i18n/jquery.ui.datepicker-hu.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/i18n/jquery.ui.datepicker-hu.js b/ui/i18n/jquery.ui.datepicker-hu.js index 249e7b0ef..46e63f59b 100644 --- a/ui/i18n/jquery.ui.datepicker-hu.js +++ b/ui/i18n/jquery.ui.datepicker-hu.js @@ -17,7 +17,7 @@ jQuery(function($){ dateFormat: 'yy-mm-dd', firstDay: 1, isRTL: false, - showMonthAfterYear: false, + showMonthAfterYear: true, yearSuffix: ''}; $.datepicker.setDefaults($.datepicker.regional['hu']); }); |