1
|
// Calendar AR language
|
2
|
// Author: SmartData.com.sa
|
3
|
// Encoding: any
|
4
|
// Distributed under the same terms as the calendar itself.
|
5
|
|
6
|
// For translators: please use UTF-8 if possible. We strongly believe that
|
7
|
// Unicode is the answer to a real internationalized world. Also please
|
8
|
// include your contact information in the header, as can be seen above.
|
9
|
|
10
|
// full day names
|
11
|
Calendar._DN = new Array
|
12
|
("الاحد",
|
13
|
"الاثنين",
|
14
|
"الثلاثاء",
|
15
|
"الاربعاء",
|
16
|
"الخميس",
|
17
|
"الجمعة",
|
18
|
"السبت",
|
19
|
"الاحد");
|
20
|
|
21
|
// Please note that the following array of short day names (and the same goes
|
22
|
// for short month names, _SMN) isn't absolutely necessary. We give it here
|
23
|
// for exemplification on how one can customize the short day names, but if
|
24
|
// they are simply the first N letters of the full name you can simply say:
|
25
|
//
|
26
|
// Calendar._SDN_len = N; // short day name length
|
27
|
// Calendar._SMN_len = N; // short month name length
|
28
|
//
|
29
|
// If N = 3 then this is not needed either since we assume a value of 3 if not
|
30
|
// present, to be compatible with translation files that were written before
|
31
|
// this feature.
|
32
|
|
33
|
// short day names
|
34
|
Calendar._SDN = new Array
|
35
|
("أح",
|
36
|
"إث",
|
37
|
"ث",
|
38
|
"أر",
|
39
|
"خ",
|
40
|
"ج",
|
41
|
"س",
|
42
|
"أح");
|
43
|
|
44
|
// First day of the week. "0" means display Sunday first, "1" means display
|
45
|
// Monday first, etc.
|
46
|
Calendar._FD = 0;
|
47
|
|
48
|
// full month names
|
49
|
Calendar._MN = new Array
|
50
|
("كانون الثاني",
|
51
|
"شباط",
|
52
|
"حزيران",
|
53
|
"آذار",
|
54
|
"أيار",
|
55
|
"نيسان",
|
56
|
"تموز",
|
57
|
"آب",
|
58
|
"أيلول",
|
59
|
"تشرين الاول",
|
60
|
"تشرين الثاني",
|
61
|
"كانون الاول");
|
62
|
|
63
|
// short month names
|
64
|
Calendar._SMN = new Array
|
65
|
("كانون الثاني",
|
66
|
"شباط",
|
67
|
"حزيران",
|
68
|
"آذار",
|
69
|
"أيار",
|
70
|
"نيسان",
|
71
|
"تموز",
|
72
|
"آب",
|
73
|
"أيلول",
|
74
|
"تشرين الاول",
|
75
|
"تشرين الثاني",
|
76
|
"كانون الاول");
|
77
|
|
78
|
// tooltips
|
79
|
Calendar._TT = {};
|
80
|
Calendar._TT["معلومات"] = "حول التقويم";
|
81
|
|
82
|
Calendar._TT["حول"] =
|
83
|
"اختيار الوقت والتاريخ\n" +
|
84
|
"\n\n" +
|
85
|
"اختيار التاريخ:\n" +
|
86
|
"- استخدم هذه الازرار \xab, \xbb لاختيار السنة\n" +
|
87
|
"- استخدم هذه الازرار " + String.fromCharCode(0x2039) + ", " + String.fromCharCode(0x203a) + " لاختيار الشهر\n" +
|
88
|
"- استمر في النقر فوق الازرار للتظليل السريع.";
|
89
|
Calendar._TT["حول_الوقت"] = "\n\n" +
|
90
|
"اختيار الوقت:\n" +
|
91
|
"- انقر على اي جزء من اجزاء الوقت لزيادته\n" +
|
92
|
"- لانقاصهShiftاو انقر مع الضغط على مفتاح \n" +
|
93
|
"- او انقر واسحب للتظليل السريع.";
|
94
|
|
95
|
Calendar._TT["السنة_السابقة"] = "السنة السابقة";
|
96
|
Calendar._TT["الشهر_السابق"] = "الشهر السابق";
|
97
|
Calendar._TT["اذهب_اليوم"] = "اذهب لليوم";
|
98
|
Calendar._TT["الشهر_القادم"] = "الشهر القادم";
|
99
|
Calendar._TT["السنة_القادمة"] = "السنة القادمة";
|
100
|
Calendar._TT["اختر_التاريخ"] = "اختر التاريخ";
|
101
|
Calendar._TT["اسحب_تظليل"] = "اسحب للتتحرك";
|
102
|
Calendar._TT["جزء_يوم"] = "اليوم";
|
103
|
|
104
|
// the following is to inform that "%s" is to be the first day of week
|
105
|
// %s will be replaced with the day name.
|
106
|
Calendar._TT["اول_يوم"] = " اولا%sاعرض ";
|
107
|
|
108
|
// This may be locale-dependent. It specifies the week-end days, as an array
|
109
|
// of comma-separated numbers. The numbers are from 0 to 6: 0 means Sunday, 1
|
110
|
// means Monday, etc.
|
111
|
Calendar._TT["نهاية الاسبوع"] = "5,6";
|
112
|
|
113
|
Calendar._TT["مغلق"] = "مغلق";
|
114
|
Calendar._TT["اليوم"] = "اليوم";
|
115
|
Calendar._TT["جزء_اليوم"] = "انقر او اسحب لتغير القيمة";
|
116
|
|
117
|
// date formats
|
118
|
Calendar._TT["تنسيق تاريخ"] = "%Y-%m-%d";
|
119
|
Calendar._TT["تنسيق وقت"] = "%a, %b %e";
|
120
|
|
121
|
Calendar._TT["رقم الاسبوع"] = "رقم الاسبوع";
|
122
|
Calendar._TT["الوقت"] = "الوقت:";
|