##// END OF EJS Templates
recovery copyright statement in Arabic calendar JavaScript (#9943)...
Toshi MARUYAMA -
r8469:c22f60271f7c
parent child
Show More
@@ -1,122 +1,125
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 80 Calendar._TT["INFO"] = "حول التقويم";
81 81
82 82 Calendar._TT["ABOUT"] =
83 83 "اختيار الوقت والتاريخ\n" +
84 "(c) dynarch.com 2002-2005 / Author: Mihai Bazon\n" + // don't translate this this ;-)
85 "For latest version visit: http://www.dynarch.com/projects/calendar/\n" +
86 "Distributed under GNU LGPL. See http://gnu.org/licenses/lgpl.html for details." +
84 87 "\n\n" +
85 88 "اختيار التاريخ:\n" +
86 89 "- استخدم هذه الازرار \xab, \xbb لاختيار السنة\n" +
87 90 "- استخدم هذه الازرار " + String.fromCharCode(0x2039) + ", " + String.fromCharCode(0x203a) + " لاختيار الشهر\n" +
88 91 "- استمر في النقر فوق الازرار للتظليل السريع.";
89 92 Calendar._TT["ABOUT_TIME"] = "\n\n" +
90 93 "اختيار الوقت:\n" +
91 94 "- انقر على اي جزء من اجزاء الوقت لزيادته\n" +
92 95 "- لانقاصهShiftاو انقر مع الضغط على مفتاح \n" +
93 96 "- او انقر واسحب للتظليل السريع.";
94 97
95 98 Calendar._TT["PREV_YEAR"] = "السنة السابقة";
96 99 Calendar._TT["PREV_MONTH"] = "الشهر السابق";
97 100 Calendar._TT["GO_TODAY"] = "اذهب لليوم";
98 101 Calendar._TT["NEXT_MONTH"] = "الشهر القادم";
99 102 Calendar._TT["NEXT_YEAR"] = "السنة القادمة";
100 103 Calendar._TT["SEL_DATE"] = "اختر التاريخ";
101 104 Calendar._TT["DRAG_TO_MOVE"] = "اسحب للتتحرك";
102 105 Calendar._TT["PART_TODAY"] = "اليوم";
103 106
104 107 // the following is to inform that "%s" is to be the first day of week
105 108 // %s will be replaced with the day name.
106 109 Calendar._TT["DAY_FIRST"] = " اولا%sاعرض ";
107 110
108 111 // This may be locale-dependent. It specifies the week-end days, as an array
109 112 // of comma-separated numbers. The numbers are from 0 to 6: 0 means Sunday, 1
110 113 // means Monday, etc.
111 114 Calendar._TT["WEEKEND"] = "5,6";
112 115
113 116 Calendar._TT["CLOSE"] = "مغلق";
114 117 Calendar._TT["TODAY"] = "اليوم";
115 118 Calendar._TT["TIME_PART"] = "انقر او اسحب لتغير القيمة";
116 119
117 120 // date formats
118 121 Calendar._TT["DEF_DATE_FORMAT"] = "%Y-%m-%d";
119 122 Calendar._TT["TT_DATE_FORMAT"] = "%a, %b %e";
120 123
121 124 Calendar._TT["WK"] = "رقم الاسبوع";
122 125 Calendar._TT["TIME"] = "الوقت:";
General Comments 0
You need to be logged in to leave comments. Login now