오픈 소스 프로젝트 - 번역/ 지역화 포럼
글수 39
// ** I18N
// DyCalendar EN language
// Author: Mihai Bazon, <mihai_bazon@yahoo.com>
// Encoding: any
// Distributed under the same terms as the calendar itself.
// For translators: please use UTF-8 if possible. We strongly believe that
// Unicode is the answer to a real internationalized world. Also please
// include your contact information in the header, as can be seen above.
// full day names
DyCalendar._DN = new Array
("Воскресенье",
"Понедельник",
"Вторник",
"Среда",
"Четверг",
"Пятница",
"Суббота",
"Воскресенье");
// Please note that the following array of short day names (and the same goes
// for short month names, _SMN) isn't absolutely necessary. We give it here
// for exemplification on how one can customize the short day names, but if
// they are simply the first N letters of the full name you can simply say:
//
// DyCalendar._SDN_len = N; // short day name length
// DyCalendar._SMN_len = N; // short month name length
//
// If N = 3 then this is not needed either since we assume a value of 3 if not
// present, to be compatible with translation files that were written before
// this feature.
// short day names
DyCalendar._SDN = new Array
("Sun",
"ПН",
"ВТ",
"Wed",
"Thu",
"Пят",
"СБ",
"Солнце");
// First day of the week. "0" means display Sunday first, "1" means display
// Monday first, etc.
DyCalendar._FD = 0;
// full month names
DyCalendar._MN = new Array
("Январь",
"Февраль",
"Марта",
"Апрель",
"Мая",
"Июнь",
"Июль",
"Август",
"Сентябрь",
"Октябрь",
"Ноябрь",
"Декабрь");
// short month names
DyCalendar._SMN = new Array
("Январь",
"Февраль",
"Марта",
"Апрель",
"Мая",
"Июнь",
"Июль",
"Август",
"Сентябрь",
"Октябрь",
"Ноябрь",
"Декабрь");
// tooltips
DyCalendar._TT = {};
DyCalendar._TT["INFO"] = "О календаре";
DyCalendar._TT["ABOUT"] =
"DHTML Date/Time Selector\n" +
"(c) dynarch.com 2002-2005 / Author: Mihai Bazon\n" + // don't translate this this ;-)
"For latest version visit: http://www.dynarch.com/projects/calendar/\n" +
"Distributed under GNU LGPL. See http://gnu.org/licenses/lgpl.html for details." +
"\n\n" +
"Date selection:\n" +
"- Use the \xab, \xbb buttons to select year\n" +
"- Use the " + String.fromCharCode(0x2039) + ", " + String.fromCharCode(0x203a) + " buttons to select month\n" +
"- Hold mouse button on any of the above buttons for faster selection.";
DyCalendar._TT["ABOUT_TIME"] = "\n\n" +
"Time selection:\n" +
"- Click on any of the time parts to increase it\n" +
"- or Shift-click to decrease it\n" +
"- or click and drag for faster selection.";
DyCalendar._TT [ "PREV_YEAR"] = "Пред. Год (удерживать для меню)";
DyCalendar._TT [ "PREV_MONTH"] = "Пред. Месяце (удерживать для меню)";
DyCalendar._TT [ "GO_TODAY"] = "Перейти Сегодня";
DyCalendar._TT [ "NEXT_MONTH"] = "В следующем месяце (удерживать для меню)";
DyCalendar._TT [ "NEXT_YEAR"] = "В следующем году (удерживать для меню)";
DyCalendar._TT [ "SEL_DATE"] = "Выберите дату";
DyCalendar._TT [ "DRAG_TO_MOVE"] = "Перетаскивайте двигаться";
DyCalendar._TT [ "PART_TODAY"] = "(сегодня)";
// the following is to inform that "%s" is to be the first day of week
// %s will be replaced with the day name.
DyCalendar._TT [ "DAY_FIRST"] = "display% с первой";
// This may be locale-dependent. It specifies the week-end days, as an array
// of comma-separated numbers. The numbers are from 0 to 6: 0 means Sunday, 1
// means Monday, etc.
DyCalendar._TT [ "WEEKEND"] = "0,6";
DyCalendar._TT [ "CLOSE"] = "Закрыть";
DyCalendar._TT [ "Today"] = "Сегодня";
DyCalendar._TT [ "TIME_PART"] = "(Shift-) клик или перетащите для изменения стоимости";
// date formats
DyCalendar._TT [ "DEF_DATE_FORMAT"] = "% Y-% м-% г";
DyCalendar._TT [ "TT_DATE_FORMAT"] = "%,%% е б";
DyCalendar._TT [ "WK"] = "Нед";
DyCalendar._TT [ "TIME"] = "Время:";
위는 커밋전이고 밑은 커밋 후 입니다.
커밋 후
1
// ** I18N
2
3
// DyCalendar EN language
4
// Author: Mihai Bazon, <mihai_bazon@yahoo.com>
5
// Encoding: any
6
// Distributed under the same terms as the calendar itself.
7
8
// For translators: please use UTF-8 if possible. We strongly believe that
9
// Unicode is the answer to a real internationalized world. Also please
10
// include your contact information in the header, as can be seen above.
11
12
// full day names
13
DyCalendar._DN = new Array
14
("£ˆ‹†‰…‹…§”…",
15
"¬±¬à¬ß¬Ö¬Õ¬Ö¬Ý¬î¬ß¬Ú¬Ü",
16
"¬£¬ä¬à¬â¬ß¬Ú¬Ü",
17
"¬³¬â¬Ö¬Õ¬Ñ",
18
"¬¹¬Ö¬ä¬Ó¬Ö¬â¬Ô",
19
"¬±¬ñ¬ä¬ß¬Ú¬è¬Ñ",
20
"¬³¬å¬Ò¬Ò¬à¬ä¬Ñ",
21
"£ˆ‹†‰…‹…§”…");
22
23
// Please note that the following array of short day names (and the same goes
24
// for short month names, _SMN) isn't absolutely necessary. We give it here
25
// for exemplification on how one can customize the short day names, but if
26
// they are simply the first N letters of the full name you can simply say:
27
//
28
// DyCalendar._SDN_len = N; // short day name length
29
// DyCalendar._SMN_len = N; // short month name length
30
//
31
// If N = 3 then this is not needed either since we assume a value of 3 if not
32
// present, to be compatible with translation files that were written before
33
// this feature.
34
35
// short day names
36
DyCalendar._SDN = new Array
37
("Sun",
38
"¬±¬¯",
39
"¬£¬Ž",
40
"Wed",
41
"Thu",
42
"±–Š",
43
"¬³¬¢",
44
"¬³¬à¬Ý¬ß¬è¬Ö");
45
46
// First day of the week. "0" means display Sunday first, "1" means display
47
// Monday first, etc.
48
DyCalendar._FD = 0;
49
50
// full month names
51
DyCalendar._MN = new Array
52
("¬Á¬ß¬Ó¬Ñ¬â¬î",
53
"¬¶¬Ö¬Ó¬â¬Ñ¬Ý¬î",
54
"¨„‰Š„",
55
"¬¡¬á¬â¬Ö¬Ý¬î",
56
"¨„–",
57
"¬ª¬ð¬ß¬î",
58
"¬ª¬ð¬Ý¬î",
59
"¬¡¬Ó¬Ô¬å¬ã¬ä",
60
"¬³¬Ö¬ß¬ä¬ñ¬Ò¬â¬î",
61
"¬°¬Ü¬ä¬ñ¬Ò¬â¬î",
62
"¬¯¬à¬ñ¬Ò¬â¬î",
63
"¬¥¬Ö¬Ü¬Ñ¬Ò¬â¬î");
64
65
// short month names
66
DyCalendar._SMN = new Array
67
("¬Á¬ß¬Ó¬Ñ¬â¬î",
68
"¬¶¬Ö¬Ó¬â¬Ñ¬Ý¬î",
69
"¨„‰Š„",
70
"¬¡¬á¬â¬Ö¬Ý¬î",
71
"¨„–",
72
"¬ª¬ð¬ß¬î",
73
"¬ª¬ð¬Ý¬î",
74
"¬¡¬Ó¬Ô¬å¬ã¬ä",
75
"¬³¬Ö¬ß¬ä¬ñ¬Ò¬â¬î",
76
"¬°¬Ü¬ä¬ñ¬Ò¬â¬î",
77
"¬¯¬à¬ñ¬Ò¬â¬î",
78
"¬¥¬Ö¬Ü¬Ñ¬Ò¬â¬î");
79
80
// tooltips
81
DyCalendar._TT = {};
82
DyCalendar._TT["INFO"] = "¬° ¬Ü¬Ñ¬Ý¬Ö¬ß¬Õ¬Ñ¬â¬Ö";
83
84
DyCalendar._TT["ABOUT"] =
85
"DHTML Date/Time Selector\n" +
86
"(c) dynarch.com 2002-2005 / Author: Mihai Bazon\n" + // don't translate this this ;-)
87
"For latest version visit: http://www.dynarch.com/projects/calendar/\n" +
88
"Distributed under GNU LGPL. See http://gnu.org/licenses/lgpl.html for details." +
89
"\n\n" +
90
"Date selection:\n" +
91
"- Use the \xab, \xbb buttons to select year\n" +
92
"- Use the " + String.fromCharCode(0x2039) + ", " + String.fromCharCode(0x203a) + " buttons to select month\n" +
93
"- Hold mouse button on any of the above buttons for faster selection.";
94
DyCalendar._TT["ABOUT_TIME"] = "\n\n" +
95
"Time selection:\n" +
96
"- Click on any of the time parts to increase it\n" +
97
"- or Shift-click to decrease it\n" +
98
"- or click and drag for faster selection.";
99
100
DyCalendar._TT [ "PREV_YEAR"] = "¬±¬â¬Ö¬Õ. ¬€¬à¬Õ (¬å¬Õ¬Ö¬â¬Ø¬Ú¬Ó¬Ñ¬ä¬î ¬Õ¬Ý¬ñ ¬Þ¬Ö¬ß¬ð)";
101
DyCalendar._TT [ "PREV_MONTH"] = "¬±¬â¬Ö¬Õ. ¬®¬Ö¬ã¬ñ¬è¬Ö (¬å¬Õ¬Ö¬â¬Ø¬Ú¬Ó¬Ñ¬ä¬î ¬Õ¬Ý¬ñ ¬Þ¬Ö¬ß¬ð)";
102
DyCalendar._TT [ "GO_TODAY"] = "¬±¬Ö¬â¬Ö¬Û¬ä¬Ú ¬³¬Ö¬Ô¬à¬Õ¬ß¬ñ";
103
DyCalendar._TT [ "NEXT_MONTH"] = "¬£ ¬ã¬Ý¬Ö¬Õ¬å¬ð¬ë¬Ö¬Þ ¬Þ¬Ö¬ã¬ñ¬è¬Ö (¬å¬Õ¬Ö¬â¬Ø¬Ú¬Ó¬Ñ¬ä¬î ¬Õ¬Ý¬ñ ¬Þ¬Ö¬ß¬ð)";
104
DyCalendar._TT [ "NEXT_YEAR"] = "¬£ ¬ã¬Ý¬Ö¬Õ¬å¬ð¬ë¬Ö¬Þ ¬Ô¬à¬Õ¬å (¬å¬Õ¬Ö¬â¬Ø¬Ú¬Ó¬Ñ¬ä¬î ¬Õ¬Ý¬ñ ¬Þ¬Ö¬ß¬ð)";
105
DyCalendar._TT [ "SEL_DATE"] = "¬£¬í¬Ò¬Ö¬â¬Ú¬ä¬Ö ¬Õ¬Ñ¬ä¬å";
106
DyCalendar._TT [ "DRAG_TO_MOVE"] = "¬±¬Ö¬â¬Ö¬ä¬Ñ¬ã¬Ü¬Ú¬Ó¬Ñ¬Û¬ä¬Ö ¬Õ¬Ó¬Ú¬Ô¬Ñ¬ä¬î¬ã¬ñ";
107
DyCalendar._TT [ "PART_TODAY"] = "(¬ã¬Ö¬Ô¬à¬Õ¬ß¬ñ)";
108
109
// the following is to inform that "%s" is to be the first day of week
110
// %s will be replaced with the day name.
111
DyCalendar._TT [ "DAY_FIRST"] = "display% ¬ã ¬á¬Ö¬â¬Ó¬à¬Û";
112
113
// This may be locale-dependent. It specifies the week-end days, as an array
114
// of comma-separated numbers. The numbers are from 0 to 6: 0 means Sunday, 1
115
// means Monday, etc.
116
DyCalendar._TT [ "WEEKEND"] = "0,6";
117
118
DyCalendar._TT [ "CLOSE"] = "©„†‰’Š”";
119
DyCalendar._TT [ "Today"] = "¬³¬Ö¬Ô¬à¬Õ¬ß¬ñ";
120
DyCalendar._TT [ "TIME_PART"] = "(Shift-) ¬Ü¬Ý¬Ú¬Ü ¬Ú¬Ý¬Ú ¬á¬Ö¬â¬Ö¬ä¬Ñ¬ë¬Ú¬ä¬Ö ¬Õ¬Ý¬ñ ¬Ú¬Ù¬Þ¬Ö¬ß¬Ö¬ß¬Ú¬ñ ¬ã¬ä¬à¬Ú¬Þ¬à¬ã¬ä¬Ú";
121
122
// date formats
123
DyCalendar._TT [ "DEF_DATE_FORMAT"] = "% Y-% ¬Þ-% ¬Ô";
124
DyCalendar._TT [ "TT_DATE_FORMAT"] = "%,%% ¬Ö ¬Ò";
125
126
DyCalendar._TT [ "WK"] = "¬¯¬Ö¬Õ";
127
DyCalendar._TT [ "TIME"] = "¬£¬â¬Ö¬Þ¬ñ:";이게 무슨 현상인가요?>?
|
|
바른생활 NZEO |
글은 인터넷에서 자신을 나타내는 유일한 모습입니다.
상대에게 상처를 주기보다 같이 즐거워 할 수 있는 코멘트 부탁드려요.
테러만큼 더 잔인한 테러, 바로 당신의 악성댓글입니다. -공익광고협의회-
악성댓글은 영혼까지 파괴하는 인터넷 범죄행위입니다.


