[ Index ]
 

Code source de Seagull 0.6.1

Accédez au Source d'autres logiciels libresSoutenez Angelica Josefina !

title

Body

[fermer]

/js/jscalendar/lang/ -> calendar-ko.js (source)

   1  // ** I18N
   2  
   3  // Calendar EN language
   4  // Author: Mihai Bazon, <mihai_bazon@yahoo.com>
   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  
  16  Calendar._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
  39  Calendar._SDN = new Array
  40  ("ÀÏ",
  41   "¿ù",
  42   "È­",
  43   "¼ö",
  44   "¸ñ",
  45   "±Ý",
  46   "Åä",
  47   "ÀÏ");
  48  
  49  // full month names
  50  Calendar._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
  65  Calendar._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
  80  Calendar._TT = {};
  81  Calendar._TT["INFO"] = "calendar ¿¡ ´ëÇØ¼­";
  82  
  83  Calendar._TT["ABOUT"] =
  84  "DHTML Date/Time Selector\n" +
  85  "(c) dynarch.com 2002-2005 / Author: Mihai Bazon\n" + // don't translate this this ;-)
  86  "\n"+
  87  "ÃֽйöÀüÀ» ¹ÞÀ¸½Ã·Á¸é http://www.dynarch.com/projects/calendar/ ¿¡ ¹æ¹®Çϼ¼¿ä\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  "- °è¼Ó ´©¸£°í ÀÖÀ¸¸é À§ °ªµéÀ» ºü¸£°Ô ¼±ÅÃÇÏ½Ç ¼ö ÀÖ½À´Ï´Ù.";
  96  Calendar._TT["ABOUT_TIME"] = "\n\n" +
  97  "½Ã°£ ¼±ÅÃ:\n" +
  98  "- ¸¶¿ì½º·Î ´©¸£¸é ½Ã°£ÀÌ Áõ°¡ÇÕ´Ï´Ù\n" +
  99  "- Shift Ű¿Í ÇÔ²² ´©¸£¸é °¨¼ÒÇÕ´Ï´Ù\n" +
 100  "- ´©¸¥ »óÅ¿¡¼­ ¸¶¿ì½º¸¦ ¿òÁ÷À̸é Á» ´õ ºü¸£°Ô °ªÀÌ º¯ÇÕ´Ï´Ù.\n";
 101  
 102  Calendar._TT["PREV_YEAR"] = "Áö³­ ÇØ (±æ°Ô ´©¸£¸é ¸ñ·Ï)";
 103  Calendar._TT["PREV_MONTH"] = "Áö³­ ´Þ (±æ°Ô ´©¸£¸é ¸ñ·Ï)";
 104  Calendar._TT["GO_TODAY"] = "¿À´Ã ³¯Â¥·Î";
 105  Calendar._TT["NEXT_MONTH"] = "´ÙÀ½ ´Þ (±æ°Ô ´©¸£¸é ¸ñ·Ï)";
 106  Calendar._TT["NEXT_YEAR"] = "´ÙÀ½ ÇØ (±æ°Ô ´©¸£¸é ¸ñ·Ï)";
 107  Calendar._TT["SEL_DATE"] = "³¯Â¥¸¦ ¼±ÅÃÇϼ¼¿ä";
 108  Calendar._TT["DRAG_TO_MOVE"] = "¸¶¿ì½º µå·¡±×·Î À̵¿ Çϼ¼¿ä";
 109  Calendar._TT["PART_TODAY"] = " (¿À´Ã)";
 110  Calendar._TT["MON_FIRST"] = "¿ù¿äÀÏÀ» ÇÑ ÁÖÀÇ ½ÃÀÛ ¿äÀÏ·Î";
 111  Calendar._TT["SUN_FIRST"] = "ÀÏ¿äÀÏÀ» ÇÑ ÁÖÀÇ ½ÃÀÛ ¿äÀÏ·Î";
 112  Calendar._TT["CLOSE"] = "´Ý±â";
 113  Calendar._TT["TODAY"] = "¿À´Ã";
 114  Calendar._TT["TIME_PART"] = "(Shift-)Ŭ¸¯ ¶Ç´Â µå·¡±× Çϼ¼¿ä";
 115  
 116  // date formats
 117  Calendar._TT["DEF_DATE_FORMAT"] = "%Y-%m-%d";
 118  Calendar._TT["TT_DATE_FORMAT"] = "%b/%e [%a]";
 119  
 120  Calendar._TT["WK"] = "ÁÖ";


Généré le : Fri Mar 30 01:27:52 2007 par Balluche grâce à PHPXref 0.7