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