| 776 |
lars |
1 |
/* http://keith-wood.name/countdown.html
|
|
|
2 |
Arabic (عربي) initialisation for the jQuery countdown extension
|
|
|
3 |
Translated by Talal Al Asmari (talal@psdgroups.com), April 2009. */
|
|
|
4 |
(function($) {
|
|
|
5 |
$.countdown.regional['ar'] = {
|
|
|
6 |
labels: ['سنوات','أشهر','أسابيع','أيام','ساعات','دقائق','ثواني'],
|
|
|
7 |
labels1: ['سنة','شهر','أسبوع','يوم','ساعة','دقيقة','ثانية'],
|
|
|
8 |
compactLabels: ['س', 'ش', 'أ', 'ي'],
|
|
|
9 |
whichLabels: null,
|
|
|
10 |
digits: ['٠', '١', '٢', '٣', '٤', '٥', '٦', '٧', '٨', '٩'],
|
|
|
11 |
timeSeparator: ':', isRTL: true};
|
|
|
12 |
$.countdown.setDefaults($.countdown.regional['ar']);
|
|
|
13 |
})(jQuery);
|