locale.py 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  1. from __future__ import annotations
  2. from pendulum.locales.ko.custom import translations as custom_translations
  3. """
  4. ko locale file.
  5. It has been generated automatically and must not be modified directly.
  6. """
  7. locale = {
  8. "plural": lambda n: "other",
  9. "ordinal": lambda n: "other",
  10. "translations": {
  11. "days": {
  12. "abbreviated": {0: "월", 1: "화", 2: "수", 3: "목", 4: "금", 5: "토", 6: "일"},
  13. "narrow": {0: "월", 1: "화", 2: "수", 3: "목", 4: "금", 5: "토", 6: "일"},
  14. "short": {0: "월", 1: "화", 2: "수", 3: "목", 4: "금", 5: "토", 6: "일"},
  15. "wide": {
  16. 0: "월요일",
  17. 1: "화요일",
  18. 2: "수요일",
  19. 3: "목요일",
  20. 4: "금요일",
  21. 5: "토요일",
  22. 6: "일요일",
  23. },
  24. },
  25. "months": {
  26. "abbreviated": {
  27. 1: "1월",
  28. 2: "2월",
  29. 3: "3월",
  30. 4: "4월",
  31. 5: "5월",
  32. 6: "6월",
  33. 7: "7월",
  34. 8: "8월",
  35. 9: "9월",
  36. 10: "10월",
  37. 11: "11월",
  38. 12: "12월",
  39. },
  40. "narrow": {
  41. 1: "1월",
  42. 2: "2월",
  43. 3: "3월",
  44. 4: "4월",
  45. 5: "5월",
  46. 6: "6월",
  47. 7: "7월",
  48. 8: "8월",
  49. 9: "9월",
  50. 10: "10월",
  51. 11: "11월",
  52. 12: "12월",
  53. },
  54. "wide": {
  55. 1: "1월",
  56. 2: "2월",
  57. 3: "3월",
  58. 4: "4월",
  59. 5: "5월",
  60. 6: "6월",
  61. 7: "7월",
  62. 8: "8월",
  63. 9: "9월",
  64. 10: "10월",
  65. 11: "11월",
  66. 12: "12월",
  67. },
  68. },
  69. "units": {
  70. "year": {"other": "{0}년"},
  71. "month": {"other": "{0}개월"},
  72. "week": {"other": "{0}주"},
  73. "day": {"other": "{0}일"},
  74. "hour": {"other": "{0}시간"},
  75. "minute": {"other": "{0}분"},
  76. "second": {"other": "{0}초"},
  77. "microsecond": {"other": "{0}마이크로초"},
  78. },
  79. "relative": {
  80. "year": {"future": {"other": "{0}년 후"}, "past": {"other": "{0}년 전"}},
  81. "month": {"future": {"other": "{0}개월 후"}, "past": {"other": "{0}개월 전"}},
  82. "week": {"future": {"other": "{0}주 후"}, "past": {"other": "{0}주 전"}},
  83. "day": {"future": {"other": "{0}일 후"}, "past": {"other": "{0}일 전"}},
  84. "hour": {"future": {"other": "{0}시간 후"}, "past": {"other": "{0}시간 전"}},
  85. "minute": {"future": {"other": "{0}분 후"}, "past": {"other": "{0}분 전"}},
  86. "second": {"future": {"other": "{0}초 후"}, "past": {"other": "{0}초 전"}},
  87. },
  88. "day_periods": {
  89. "midnight": "자정",
  90. "am": "오전",
  91. "noon": "정오",
  92. "pm": "오후",
  93. "morning1": "새벽",
  94. "morning2": "오전",
  95. "afternoon1": "오후",
  96. "evening1": "저녁",
  97. "night1": "밤",
  98. },
  99. "week_data": {
  100. "min_days": 1,
  101. "first_day": 0,
  102. "weekend_start": 5,
  103. "weekend_end": 6,
  104. },
  105. },
  106. "custom": custom_translations,
  107. }