summaryrefslogtreecommitdiffstats
path: root/pendulum/locales/ko/locale.py
blob: 3c81b0e6085e8dc1e3e18f39054f1c143284594e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
# -*- coding: utf-8 -*-
from __future__ import unicode_literals

from .custom import translations as custom_translations


"""
ko locale file.

It has been generated automatically and must not be modified directly.
"""


locale = {
    "plural": lambda n: "other",
    "ordinal": lambda n: "other",
    "translations": {
        "days": {
            "abbreviated": {0: "일", 1: "월", 2: "화", 3: "수", 4: "목", 5: "금", 6: "토"},
            "narrow": {0: "일", 1: "월", 2: "화", 3: "수", 4: "목", 5: "금", 6: "토"},
            "short": {0: "일", 1: "월", 2: "화", 3: "수", 4: "목", 5: "금", 6: "토"},
            "wide": {
                0: "일요일",
                1: "월요일",
                2: "화요일",
                3: "수요일",
                4: "목요일",
                5: "금요일",
                6: "토요일",
            },
        },
        "months": {
            "abbreviated": {
                1: "1월",
                2: "2월",
                3: "3월",
                4: "4월",
                5: "5월",
                6: "6월",
                7: "7월",
                8: "8월",
                9: "9월",
                10: "10월",
                11: "11월",
                12: "12월",
            },
            "narrow": {
                1: "1월",
                2: "2월",
                3: "3월",
                4: "4월",
                5: "5월",
                6: "6월",
                7: "7월",
                8: "8월",
                9: "9월",
                10: "10월",
                11: "11월",
                12: "12월",
            },
            "wide": {
                1: "1월",
                2: "2월",
                3: "3월",
                4: "4월",
                5: "5월",
                6: "6월",
                7: "7월",
                8: "8월",
                9: "9월",
                10: "10월",
                11: "11월",
                12: "12월",
            },
        },
        "units": {
            "year": {"other": "{0}년"},
            "month": {"other": "{0}개월"},
            "week": {"other": "{0}주"},
            "day": {"other": "{0}일"},
            "hour": {"other": "{0}시간"},
            "minute": {"other": "{0}분"},
            "second": {"other": "{0}초"},
            "microsecond": {"other": "{0}마이크로초"},
        },
        "relative": {
            "year": {"future": {"other": "{0}년 후"}, "past": {"other": "{0}년 전"}},
            "month": {"future": {"other": "{0}개월 후"}, "past": {"other": "{0}개월 전"}},
            "week": {"future": {"other": "{0}주 후"}, "past": {"other": "{0}주 전"}},
            "day": {"future": {"other": "{0}일 후"}, "past": {"other": "{0}일 전"}},
            "hour": {"future": {"other": "{0}시간 후"}, "past": {"other": "{0}시간 전"}},
            "minute": {"future": {"other": "{0}분 후"}, "past": {"other": "{0}분 전"}},
            "second": {"future": {"other": "{0}초 후"}, "past": {"other": "{0}초 전"}},
        },
        "day_periods": {
            "midnight": "자정",
            "am": "오전",
            "noon": "정오",
            "pm": "오후",
            "morning1": "새벽",
            "morning2": "오전",
            "afternoon1": "오후",
            "evening1": "저녁",
            "night1": "밤",
        },
    },
    "custom": custom_translations,
}