aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAmir E. Aharoni <amir.aharoni@mail.huji.ac.il>2012-06-01 12:56:50 +0300
committerScott González <scott.gonzalez@gmail.com>2012-06-01 10:42:36 -0400
commitd0acccf3cc53a7759db4798c2998029586b032a3 (patch)
tree1420ff4041669b387d3446a96774bf50e32bb7e5
parentbc4cb273d1f574251ab5e6ecfc3dcd9af5d345ef (diff)
downloadjquery-ui-d0acccf3cc53a7759db4798c2998029586b032a3.tar.gz
jquery-ui-d0acccf3cc53a7759db4798c2998029586b032a3.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 (cherry picked from commit 8f42ab013469865ae790089717a56b6ca774dc75)
-rw-r--r--ui/i18n/jquery.ui.datepicker-ar.js2
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 743a15db0..8a9218d8b 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,