source: trunk/phpgwapi/js/jscalendar/lang/calendar-ko.js @ 2

Revision 2, 3.2 KB checked in by niltonneto, 17 years ago (diff)

Removida todas as tags usadas pelo CVS ($Id, $Source).
Primeira versão no CVS externo.

  • Property svn:eol-style set to native
  • Property svn:executable set to *
Line 
1// ** I18N
2
3// Calendar EN language
4// Author: Mihai Bazon, <mishoo@infoiasi.ro>
5// Translation: Yourim Yi <yyi@yourim.net>
6// Encoding: EUC-KR
7// lang : ko
8// Distributed under the same terms as the calendar itself.
9
10// For translators: please use UTF-8 if possible.  We strongly believe that
11// Unicode is the answer to a real internationalized world.  Also please
12// include your contact information in the header, as can be seen above.
13
14// full day names
15
16Calendar._DN = new Array
17("ÀÏ¿äÀÏ",
18 "¿ù¿äÀÏ",
19 "È­¿äÀÏ",
20 "Œö¿äÀÏ",
21 "žñ¿äÀÏ",
22 "±Ý¿äÀÏ",
23 "Åä¿äÀÏ",
24 "ÀÏ¿äÀÏ");
25
26// Please note that the following array of short day names (and the same goes
27// for short month names, _SMN) isn't absolutely necessary.  We give it here
28// for exemplification on how one can customize the short day names, but if
29// they are simply the first N letters of the full name you can simply say:
30//
31//   Calendar._SDN_len = N; // short day name length
32//   Calendar._SMN_len = N; // short month name length
33//
34// If N = 3 then this is not needed either since we assume a value of 3 if not
35// present, to be compatible with translation files that were written before
36// this feature.
37
38// short day names
39Calendar._SDN = new Array
40("ÀÏ",
41 "¿ù",
42 "È­",
43 "Œö",
44 "žñ",
45 "±Ý",
46 "Åä",
47 "ÀÏ");
48
49// full month names
50Calendar._MN = new Array
51("1¿ù",
52 "2¿ù",
53 "3¿ù",
54 "4¿ù",
55 "5¿ù",
56 "6¿ù",
57 "7¿ù",
58 "8¿ù",
59 "9¿ù",
60 "10¿ù",
61 "11¿ù",
62 "12¿ù");
63
64// short month names
65Calendar._SMN = new Array
66("1",
67 "2",
68 "3",
69 "4",
70 "5",
71 "6",
72 "7",
73 "8",
74 "9",
75 "10",
76 "11",
77 "12");
78
79// tooltips
80Calendar._TT = {};
81Calendar._TT["INFO"] = "calendar ¿¡ ŽëÇØŒ­";
82
83Calendar._TT["ABOUT"] =
84"DHTML Date/Time Selector\n" +
85"(c) dynarch.com 2002-2003\n" + // don't translate this this ;-)
86"\n"+
87"Ã֜Š¹öÀüÀ» ¹ÞÀžœÃ·Ážé http://dynarch.com/mishoo/calendar.epl ¿¡ ¹æ¹®ÇÏŒŒ¿ä\n" +
88"\n"+
89"GNU LGPL ¶óÀÌŒŸœº·Î ¹èÆ÷µËŽÏŽÙ. \n"+
90"¶óÀÌŒŸœº¿¡ ŽëÇÑ ÀÚŒŒÇÑ ³»¿ëÀº http://gnu.org/licenses/lgpl.html À» ÀÐÀžŒŒ¿ä." +
91"\n\n" +
92"³¯Â¥ Œ±ÅÃ:\n" +
93"- ¿¬µµžŠ Œ±ÅÃÇÏ·Ážé \xab, \xbb ¹öÆ°À» »ç¿ëÇÕŽÏŽÙ\n" +
94"- ŽÞÀ» Œ±ÅÃÇÏ·Ážé " + String.fromCharCode(0x2039) + ", " + String.fromCharCode(0x203a) + " ¹öÆ°À» Ž©ž£ŒŒ¿ä\n" +
95"- °èŒÓ Ž©ž£°í ÀÖÀžžé À§ °ªµéÀ» ºüž£°Ô Œ±ÅÃÇÏœÇ Œö ÀÖœÀŽÏŽÙ.";
96Calendar._TT["ABOUT_TIME"] = "\n\n" +
97"œÃ°£ Œ±ÅÃ:\n" +
98"- ž¶¿ìœº·Î Ž©ž£žé œÃ°£ÀÌ Áõ°¡ÇÕŽÏŽÙ\n" +
99"- Shift Å°¿Í ÇÔ²² Ž©ž£žé °šŒÒÇÕŽÏŽÙ\n" +
100"- Ž©ž¥ »óÅ¿¡Œ­ ž¶¿ìœºžŠ ¿òÁ÷ÀÌžé Á» Žõ ºüž£°Ô °ªÀÌ º¯ÇÕŽÏŽÙ.\n";
101
102Calendar._TT["PREV_YEAR"] = "Áö³­ ÇØ (±æ°Ô Ž©ž£žé žñ·Ï)";
103Calendar._TT["PREV_MONTH"] = "Áö³­ ŽÞ (±æ°Ô Ž©ž£žé žñ·Ï)";
104Calendar._TT["GO_TODAY"] = "¿ÀŽÃ ³¯Â¥·Î";
105Calendar._TT["NEXT_MONTH"] = "ŽÙÀœ ŽÞ (±æ°Ô Ž©ž£žé žñ·Ï)";
106Calendar._TT["NEXT_YEAR"] = "ŽÙÀœ ÇØ (±æ°Ô Ž©ž£žé žñ·Ï)";
107Calendar._TT["SEL_DATE"] = "³¯Â¥žŠ Œ±ÅÃÇÏŒŒ¿ä";
108Calendar._TT["DRAG_TO_MOVE"] = "ž¶¿ìœº µå·¡±×·Î À̵¿ ÇÏŒŒ¿ä";
109Calendar._TT["PART_TODAY"] = " (¿ÀŽÃ)";
110Calendar._TT["MON_FIRST"] = "¿ù¿äÀÏÀ» ÇÑ ÁÖÀÇ œÃÀÛ ¿äÀÏ·Î";
111Calendar._TT["SUN_FIRST"] = "ÀÏ¿äÀÏÀ» ÇÑ ÁÖÀÇ œÃÀÛ ¿äÀÏ·Î";
112Calendar._TT["CLOSE"] = "ŽÝ±â";
113Calendar._TT["TODAY"] = "¿ÀŽÃ";
114Calendar._TT["TIME_PART"] = "(Shift-)Ŭž¯ ¶ÇŽÂ µå·¡±× ÇÏŒŒ¿ä";
115
116// date formats
117Calendar._TT["DEF_DATE_FORMAT"] = "%Y-%m-%d";
118Calendar._TT["TT_DATE_FORMAT"] = "%b/%e [%a]";
119
120Calendar._TT["WK"] = "ÁÖ";
Note: See TracBrowser for help on using the repository browser.