diff options
author | Amir E. Aharoni <amir.aharoni@mail.huji.ac.il> | 2012-06-01 12:56:50 +0300 |
---|---|---|
committer | Scott González <scott.gonzalez@gmail.com> | 2012-06-01 10:41:32 -0400 |
commit | 8f42ab013469865ae790089717a56b6ca774dc75 (patch) | |
tree | 8005087134d3b766df5439fce6b666bfc3aa14e7 | |
parent | 2da2ae5070e976c23ea4e19ff705dcba822838d8 (diff) | |
download | jquery-ui-8f42ab013469865ae790089717a56b6ca774dc75.tar.gz jquery-ui-8f42ab013469865ae790089717a56b6ca774dc75.zip |
Datepicker: Changed Arabic dayNamesMin to one-letter strings. Fixes #8375 - Datepicker: Incorrect dayNamesMin for Arabic locale.
Before this change the minimal names for days of week were the same
as the long names. This caused the datepicker to be too wide.
The one-letter strings come from the CLDR:
http://unicode.org/repos/cldr-tmp/trunk/diff/summary/ar.html
-rw-r--r-- | ui/i18n/jquery.ui.datepicker-ar.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/i18n/jquery.ui.datepicker-ar.js b/ui/i18n/jquery.ui.datepicker-ar.js index f24b3ff5a..f0d009667 100644 --- a/ui/i18n/jquery.ui.datepicker-ar.js +++ b/ui/i18n/jquery.ui.datepicker-ar.js @@ -12,7 +12,7 @@ jQuery(function($){ monthNamesShort: ['1', '2', '3', '4', '5', '6', '7', '8', '9', '10', '11', '12'], dayNames: ['الأحد', 'الاثنين', 'الثلاثاء', 'الأربعاء', 'الخميس', 'الجمعة', 'السبت'], dayNamesShort: ['الأحد', 'الاثنين', 'الثلاثاء', 'الأربعاء', 'الخميس', 'الجمعة', 'السبت'], - dayNamesMin: ['الأحد', 'الاثنين', 'الثلاثاء', 'الأربعاء', 'الخميس', 'الجمعة', 'السبت'], + dayNamesMin: ['ح', 'ن', 'ث', 'ر', 'خ', 'ج', 'س'], weekHeader: 'أسبوع', dateFormat: 'dd/mm/yy', firstDay: 6, |