You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

calendar-ko-utf8.js 3.5KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120
  1. // ** I18N
  2. // Calendar EN language
  3. // Author: Mihai Bazon, <mihai_bazon@yahoo.com>
  4. // Translation: Yourim Yi <yyi@yourim.net>
  5. // Encoding: EUC-KR
  6. // lang : ko
  7. // Distributed under the same terms as the calendar itself.
  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. // full day names
  12. Calendar._DN = new Array
  13. ("일요일",
  14. "월요일",
  15. "화요일",
  16. "수요일",
  17. "목요일",
  18. "금요일",
  19. "토요일",
  20. "일요일");
  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
  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:
  25. //
  26. // Calendar._SDN_len = N; // short day name length
  27. // Calendar._SMN_len = N; // short month name length
  28. //
  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
  31. // this feature.
  32. // short day names
  33. Calendar._SDN = new Array
  34. ("일",
  35. "월",
  36. "화",
  37. "수",
  38. "목",
  39. "금",
  40. "토",
  41. "일");
  42. // full month names
  43. Calendar._MN = new Array
  44. ("1월",
  45. "2월",
  46. "3월",
  47. "4월",
  48. "5월",
  49. "6월",
  50. "7월",
  51. "8월",
  52. "9월",
  53. "10월",
  54. "11월",
  55. "12월");
  56. // short month names
  57. Calendar._SMN = new Array
  58. ("1",
  59. "2",
  60. "3",
  61. "4",
  62. "5",
  63. "6",
  64. "7",
  65. "8",
  66. "9",
  67. "10",
  68. "11",
  69. "12");
  70. // tooltips
  71. Calendar._TT = {};
  72. Calendar._TT["INFO"] = "calendar 에 대해서";
  73. Calendar._TT["ABOUT"] =
  74. "DHTML Date/Time Selector\n" +
  75. "(c) dynarch.com 2002-2005 / Author: Mihai Bazon\n" + // don't translate this this ;-)
  76. "\n"+
  77. "최신 버전을 받으시려면 http://www.dynarch.com/projects/calendar/ 에 방문하세요\n" +
  78. "\n"+
  79. "GNU LGPL 라이센스로 배포됩니다. \n"+
  80. "라이센스에 대한 자세한 내용은 http://gnu.org/licenses/lgpl.html 을 읽으세요." +
  81. "\n\n" +
  82. "날짜 선택:\n" +
  83. "- 연도를 선택하려면 \xab, \xbb 버튼을 사용합니다\n" +
  84. "- 달을 선택하려면 " + String.fromCharCode(0x2039) + ", " + String.fromCharCode(0x203a) + " 버튼을 누르세요\n" +
  85. "- 계속 누르고 있으면 위 값들을 빠르게 선택하실 수 있습니다.";
  86. Calendar._TT["ABOUT_TIME"] = "\n\n" +
  87. "시간 선택:\n" +
  88. "- 마우스로 누르면 시간이 증가합니다\n" +
  89. "- Shift 키와 함께 누르면 감소합니다\n" +
  90. "- 누른 상태에서 마우스를 움직이면 좀 더 빠르게 값이 변합니다.\n";
  91. Calendar._TT["PREV_YEAR"] = "지난 해 (길게 누르면 목록)";
  92. Calendar._TT["PREV_MONTH"] = "지난 달 (길게 누르면 목록)";
  93. Calendar._TT["GO_TODAY"] = "오늘 날짜로";
  94. Calendar._TT["NEXT_MONTH"] = "다음 달 (길게 누르면 목록)";
  95. Calendar._TT["NEXT_YEAR"] = "다음 해 (길게 누르면 목록)";
  96. Calendar._TT["SEL_DATE"] = "날짜를 선택하세요";
  97. Calendar._TT["DRAG_TO_MOVE"] = "마우스 드래그로 이동 하세요";
  98. Calendar._TT["PART_TODAY"] = " (오늘)";
  99. Calendar._TT["MON_FIRST"] = "월요일을 한 주의 시작 요일로";
  100. Calendar._TT["SUN_FIRST"] = "일요일을 한 주의 시작 요일로";
  101. Calendar._TT["CLOSE"] = "닫기";
  102. Calendar._TT["TODAY"] = "오늘";
  103. Calendar._TT["TIME_PART"] = "(Shift-)클릭 또는 드래그 하세요";
  104. // date formats
  105. Calendar._TT["DEF_DATE_FORMAT"] = "%Y-%m-%d";
  106. Calendar._TT["TT_DATE_FORMAT"] = "%b/%e [%a]";
  107. Calendar._TT["WK"] = "주";