Skip to content
Permalink
Browse files
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
  • Loading branch information
amire80 authored and scottgonzalez committed Jun 1, 2012
1 parent 2da2ae5 commit 8f42ab0
Showing 1 changed file with 1 addition and 1 deletion.
@@ -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,

2 comments on commit 8f42ab0

@Krinkle
Copy link
Member

@Krinkle Krinkle commented on 8f42ab0 Jun 2, 2012

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This added 1 failed test in IE6: http://swarm.jquery.org/job/206

Could be a race condition but worth checking out. All commits before this one didn't have the failure.

@scottgonzalez
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This change and the accordion failure are completely unrelated.

Please sign in to comment.