1
|
// ** I18N
|
2
|
|
3
|
// Calendar BG language
|
4
|
// Author: Mihai Bazon, <mihai_bazon@yahoo.com>
|
5
|
// Translator: Valentin Sheiretsky, <valio@valio.eu.org>
|
6
|
// Encoding: Windows-1251
|
7
|
// Distributed under the same terms as the calendar itself.
|
8
|
|
9
|
// For translators: please use UTF-8 if possible. We strongly believe that
|
10
|
// Unicode is the answer to a real internationalized world. Also please
|
11
|
// include your contact information in the header, as can be seen above.
|
12
|
|
13
|
// full day names
|
14
|
Calendar._DN = new Array
|
15
|
("\u041d\u0435\u0434\u0435\u043b\u044f",
|
16
|
"\u041f\u043e\u043d\u0435\u0434\u0435\u043b\u043d\u0438\u043a",
|
17
|
"\u0412\u0442\u043e\u0440\u043d\u0438\u043a",
|
18
|
"\u0421\u0440\u044f\u0434\u0430",
|
19
|
"\u0427\u0435\u0442\u0432\u044a\u0440\u0442\u044a\u043a",
|
20
|
"\u041f\u0435\u0442\u044a\u043a",
|
21
|
"\u0421\u044a\u0431\u043e\u0442\u0430",
|
22
|
"\u041d\u0435\u0434\u0435\u043b\u044f");
|
23
|
|
24
|
// Please note that the following array of short day names (and the same goes
|
25
|
// for short month names, _SMN) isn't absolutely necessary. We give it here
|
26
|
// for exemplification on how one can customize the short day names, but if
|
27
|
// they are simply the first N letters of the full name you can simply say:
|
28
|
//
|
29
|
// Calendar._SDN_len = N; // short day name length
|
30
|
// Calendar._SMN_len = N; // short month name length
|
31
|
//
|
32
|
// If N = 3 then this is not needed either since we assume a value of 3 if not
|
33
|
// present, to be compatible with translation files that were written before
|
34
|
// this feature.
|
35
|
|
36
|
// short day names
|
37
|
Calendar._SDN = new Array
|
38
|
("\u041d\u0435\u0434",
|
39
|
"\u041f\u043e\u043d",
|
40
|
"\u0412\u0442\u043e",
|
41
|
"\u0421\u0440\u044f",
|
42
|
"\u0427\u0435\u0442",
|
43
|
"\u041f\u0435\u0442",
|
44
|
"\u0421\u044a\u0431",
|
45
|
"\u041d\u0435\u0434");
|
46
|
|
47
|
// full month names
|
48
|
Calendar._MN = new Array
|
49
|
("\u042f\u043d\u0443\u0430\u0440\u0438",
|
50
|
"\u0424\u0435\u0432\u0440\u0443\u0430\u0440\u0438",
|
51
|
"\u041c\u0430\u0440\u0442",
|
52
|
"\u0410\u043f\u0440\u0438\u043b",
|
53
|
"\u041c\u0430\u0439",
|
54
|
"\u042e\u043d\u0438",
|
55
|
"\u042e\u043b\u0438",
|
56
|
"\u0410\u0432\u0433\u0443\u0441\u0442",
|
57
|
"\u0421\u0435\u043f\u0442\u0435\u043c\u0432\u0440\u0438",
|
58
|
"\u041e\u043a\u0442\u043e\u043c\u0432\u0440\u0438",
|
59
|
"\u041d\u043e\u0435\u043c\u0432\u0440\u0438",
|
60
|
"\u0414\u0435\u043a\u0435\u043c\u0432\u0440\u0438");
|
61
|
|
62
|
// short month names
|
63
|
Calendar._SMN = new Array
|
64
|
("\u042f\u043d\u0443",
|
65
|
"\u0424\u0435\u0432",
|
66
|
"\u041c\u0430\u0440",
|
67
|
"\u0410\u043f\u0440",
|
68
|
"\u041c\u0430\u0439",
|
69
|
"\u042e\u043d\u0438",
|
70
|
"\u042e\u043b\u0438",
|
71
|
"\u0410\u0432\u0433",
|
72
|
"\u0421\u0435\u043f",
|
73
|
"\u041e\u043a\u0442",
|
74
|
"\u041d\u043e\u0435",
|
75
|
"\u0414\u0435\u043a");
|
76
|
|
77
|
// tooltips
|
78
|
Calendar._TT = {};
|
79
|
Calendar._TT["INFO"] = "\u0418\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044f \u0437\u0430 \u043a\u0430\u043b\u0435\u043d\u0434\u0430\u0440\u0430";
|
80
|
|
81
|
Calendar._TT["ABOUT"] =
|
82
|
"DHTML Date/Time Selector\n" +
|
83
|
"(c) dynarch.com 2002-2005 / Author: Mihai Bazon\n" + // don't translate this this ;-)
|
84
|
"For latest version visit: http://www.dynarch.com/projects/calendar/\n" +
|
85
|
"Distributed under GNU LGPL. See http://gnu.org/licenses/lgpl.html for details." +
|
86
|
"\n\n" +
|
87
|
"Date selection:\n" +
|
88
|
"- Use the \xab, \xbb buttons to select year\n" +
|
89
|
"- Use the " + String.fromCharCode(0x2039) + ", " + String.fromCharCode(0x203a) + " buttons to select month\n" +
|
90
|
"- Hold mouse button on any of the above buttons for faster selection.";
|
91
|
Calendar._TT["ABOUT_TIME"] = "\n\n" +
|
92
|
"Time selection:\n" +
|
93
|
"- Click on any of the time parts to increase it\n" +
|
94
|
"- or Shift-click to decrease it\n" +
|
95
|
"- or click and drag for faster selection.";
|
96
|
|
97
|
Calendar._TT["PREV_YEAR"] = "\u041f\u0440\u0435\u0434\u043d\u0430 \u0433\u043e\u0434\u0438\u043d\u0430 (\u0437\u0430\u0434\u0440\u044a\u0436\u0442\u0435 \u0437\u0430 \u043c\u0435\u043d\u044e)";
|
98
|
Calendar._TT["PREV_MONTH"] = "\u041f\u0440\u0435\u0434\u0435\u043d \u043c\u0435\u0441\u0435\u0446 (\u0437\u0430\u0434\u0440\u044a\u0436\u0442\u0435 \u0437\u0430 \u043c\u0435\u043d\u044e)";
|
99
|
Calendar._TT["GO_TODAY"] = "\u0418\u0437\u0431\u0435\u0440\u0435\u0442\u0435 \u0434\u043d\u0435\u0441";
|
100
|
Calendar._TT["NEXT_MONTH"] = "\u0421\u043b\u0435\u0434\u0432\u0430\u0449 \u043c\u0435\u0441\u0435\u0446 (\u0437\u0430\u0434\u0440\u044a\u0436\u0442\u0435 \u0437\u0430 \u043c\u0435\u043d\u044e)";
|
101
|
Calendar._TT["NEXT_YEAR"] = "\u0421\u043b\u0435\u0434\u0432\u0430\u0449\u0430 \u0433\u043e\u0434\u0438\u043d\u0430 (\u0437\u0430\u0434\u0440\u044a\u0436\u0442\u0435 \u0437\u0430 \u043c\u0435\u043d\u044e)";
|
102
|
Calendar._TT["SEL_DATE"] = "\u0418\u0437\u0431\u0435\u0440\u0435\u0442\u0435 \u0434\u0430\u0442\u0430";
|
103
|
Calendar._TT["DRAG_TO_MOVE"] = "\u041f\u0440\u0435\u043c\u0435\u0441\u0442\u0432\u0430\u043d\u0435";
|
104
|
Calendar._TT["PART_TODAY"] = " (\u0434\u043d\u0435\u0441)";
|
105
|
|
106
|
// the following is to inform that "%s" is to be the first day of week
|
107
|
// %s will be replaced with the day name.
|
108
|
Calendar._TT["DAY_FIRST"] = "%s \u043a\u0430\u0442\u043e \u043f\u044a\u0440\u0432\u0438 \u0434\u0435\u043d";
|
109
|
|
110
|
// This may be locale-dependent. It specifies the week-end days, as an array
|
111
|
// of comma-separated numbers. The numbers are from 0 to 6: 0 means Sunday, 1
|
112
|
// means Monday, etc.
|
113
|
Calendar._TT["WEEKEND"] = "0,6";
|
114
|
|
115
|
Calendar._TT["CLOSE"] = "\u0417\u0430\u0442\u0432\u043e\u0440\u0435\u0442\u0435";
|
116
|
Calendar._TT["TODAY"] = "\u0414\u043d\u0435\u0441";
|
117
|
Calendar._TT["TIME_PART"] = "(Shift-)Click \u0438\u043b\u0438 drag \u0437\u0430 \u0434\u0430 \u043f\u0440\u043e\u043c\u0435\u043d\u0438\u0442\u0435 \u0441\u0442\u043e\u0439\u043d\u043e\u0441\u0442\u0442\u0430";
|
118
|
|
119
|
// date formats
|
120
|
Calendar._TT["DEF_DATE_FORMAT"] = "%Y-%m-%d";
|
121
|
Calendar._TT["TT_DATE_FORMAT"] = "%A - %e %B %Y";
|
122
|
|
123
|
Calendar._TT["WK"] = "\u0421\u0435\u0434\u043c";
|
124
|
Calendar._TT["TIME"] = "\u0427\u0430\u0441:";
|
125
|
|