##// 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 // Calendar AR language
1 // Calendar AR language
2 // Author: SmartData.com.sa
2 // Author: SmartData.com.sa
3 // Encoding: any
3 // Encoding: any
4 // Distributed under the same terms as the calendar itself.
4 // Distributed under the same terms as the calendar itself.
5
5
6 // For translators: please use UTF-8 if possible. We strongly believe that
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
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.
8 // include your contact information in the header, as can be seen above.
9
9
10 // full day names
10 // full day names
11 Calendar._DN = new Array
11 Calendar._DN = new Array
12 ("الاحد",
12 ("الاحد",
13 "الاثنين",
13 "الاثنين",
14 "الثلاثاء",
14 "الثلاثاء",
15 "الاربعاء",
15 "الاربعاء",
16 "الخميس",
16 "الخميس",
17 "الجمعة",
17 "الجمعة",
18 "السبت",
18 "السبت",
19 "الاحد");
19 "الاحد");
20
20
21 // Please note that the following array of short day names (and the same goes
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
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
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:
24 // they are simply the first N letters of the full name you can simply say:
25 //
25 //
26 // Calendar._SDN_len = N; // short day name length
26 // Calendar._SDN_len = N; // short day name length
27 // Calendar._SMN_len = N; // short month name length
27 // Calendar._SMN_len = N; // short month name length
28 //
28 //
29 // If N = 3 then this is not needed either since we assume a value of 3 if not
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
30 // present, to be compatible with translation files that were written before
31 // this feature.
31 // this feature.
32
32
33 // short day names
33 // short day names
34 Calendar._SDN = new Array
34 Calendar._SDN = new Array
35 ("أح",
35 ("أح",
36 "إث",
36 "إث",
37 "ث",
37 "ث",
38 "أر",
38 "أر",
39 "خ",
39 "خ",
40 "ج",
40 "ج",
41 "س",
41 "س",
42 "أح");
42 "أح");
43
43
44 // First day of the week. "0" means display Sunday first, "1" means display
44 // First day of the week. "0" means display Sunday first, "1" means display
45 // Monday first, etc.
45 // Monday first, etc.
46 Calendar._FD = 0;
46 Calendar._FD = 0;
47
47
48 // full month names
48 // full month names
49 Calendar._MN = new Array
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 // short month names
63 // short month names
64 Calendar._SMN = new Array
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 // tooltips
78 // tooltips
79 Calendar._TT = {};
79 Calendar._TT = {};
80 Calendar._TT["INFO"] = "حول التقويم";
80 Calendar._TT["INFO"] = "حول التقويم";
81
81
82 Calendar._TT["ABOUT"] =
82 Calendar._TT["ABOUT"] =
83 "اختيار الوقت والتاريخ\n" +
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 "\n\n" +
87 "\n\n" +
85 "اختيار التاريخ:\n" +
88 "اختيار التاريخ:\n" +
86 "- استخدم هذه الازرار \xab, \xbb لاختيار السنة\n" +
89 "- استخدم هذه الازرار \xab, \xbb لاختيار السنة\n" +
87 "- استخدم هذه الازرار " + String.fromCharCode(0x2039) + ", " + String.fromCharCode(0x203a) + " لاختيار الشهر\n" +
90 "- استخدم هذه الازرار " + String.fromCharCode(0x2039) + ", " + String.fromCharCode(0x203a) + " لاختيار الشهر\n" +
88 "- استمر في النقر فوق الازرار للتظليل السريع.";
91 "- استمر في النقر فوق الازرار للتظليل السريع.";
89 Calendar._TT["ABOUT_TIME"] = "\n\n" +
92 Calendar._TT["ABOUT_TIME"] = "\n\n" +
90 "اختيار الوقت:\n" +
93 "اختيار الوقت:\n" +
91 "- انقر على اي جزء من اجزاء الوقت لزيادته\n" +
94 "- انقر على اي جزء من اجزاء الوقت لزيادته\n" +
92 "- لانقاصهShiftاو انقر مع الضغط على مفتاح \n" +
95 "- لانقاصهShiftاو انقر مع الضغط على مفتاح \n" +
93 "- او انقر واسحب للتظليل السريع.";
96 "- او انقر واسحب للتظليل السريع.";
94
97
95 Calendar._TT["PREV_YEAR"] = "السنة السابقة";
98 Calendar._TT["PREV_YEAR"] = "السنة السابقة";
96 Calendar._TT["PREV_MONTH"] = "الشهر السابق";
99 Calendar._TT["PREV_MONTH"] = "الشهر السابق";
97 Calendar._TT["GO_TODAY"] = "اذهب لليوم";
100 Calendar._TT["GO_TODAY"] = "اذهب لليوم";
98 Calendar._TT["NEXT_MONTH"] = "الشهر القادم";
101 Calendar._TT["NEXT_MONTH"] = "الشهر القادم";
99 Calendar._TT["NEXT_YEAR"] = "السنة القادمة";
102 Calendar._TT["NEXT_YEAR"] = "السنة القادمة";
100 Calendar._TT["SEL_DATE"] = "اختر التاريخ";
103 Calendar._TT["SEL_DATE"] = "اختر التاريخ";
101 Calendar._TT["DRAG_TO_MOVE"] = "اسحب للتتحرك";
104 Calendar._TT["DRAG_TO_MOVE"] = "اسحب للتتحرك";
102 Calendar._TT["PART_TODAY"] = "اليوم";
105 Calendar._TT["PART_TODAY"] = "اليوم";
103
106
104 // the following is to inform that "%s" is to be the first day of week
107 // the following is to inform that "%s" is to be the first day of week
105 // %s will be replaced with the day name.
108 // %s will be replaced with the day name.
106 Calendar._TT["DAY_FIRST"] = " اولا%sاعرض ";
109 Calendar._TT["DAY_FIRST"] = " اولا%sاعرض ";
107
110
108 // This may be locale-dependent. It specifies the week-end days, as an array
111 // 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
112 // of comma-separated numbers. The numbers are from 0 to 6: 0 means Sunday, 1
110 // means Monday, etc.
113 // means Monday, etc.
111 Calendar._TT["WEEKEND"] = "5,6";
114 Calendar._TT["WEEKEND"] = "5,6";
112
115
113 Calendar._TT["CLOSE"] = "مغلق";
116 Calendar._TT["CLOSE"] = "مغلق";
114 Calendar._TT["TODAY"] = "اليوم";
117 Calendar._TT["TODAY"] = "اليوم";
115 Calendar._TT["TIME_PART"] = "انقر او اسحب لتغير القيمة";
118 Calendar._TT["TIME_PART"] = "انقر او اسحب لتغير القيمة";
116
119
117 // date formats
120 // date formats
118 Calendar._TT["DEF_DATE_FORMAT"] = "%Y-%m-%d";
121 Calendar._TT["DEF_DATE_FORMAT"] = "%Y-%m-%d";
119 Calendar._TT["TT_DATE_FORMAT"] = "%a, %b %e";
122 Calendar._TT["TT_DATE_FORMAT"] = "%a, %b %e";
120
123
121 Calendar._TT["WK"] = "رقم الاسبوع";
124 Calendar._TT["WK"] = "رقم الاسبوع";
122 Calendar._TT["TIME"] = "الوقت:";
125 Calendar._TT["TIME"] = "الوقت:";
General Comments 0
You need to be logged in to leave comments. Login now