~cyphermox/cordova-cli/flatten

« back to all changes in this revision

Viewing changes to node_modules/cordova/node_modules/ripple-emulator/node_modules/moment/lang/ko.js

  • Committer: Mathieu Trudel-Lapierre
  • Date: 2013-12-12 05:26:53 UTC
  • Revision ID: mathieu-tl@ubuntu.com-20131212052653-eatjt8zguqua5qmq
testing the flattenage, yo

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
// moment.js language configuration
2
 
// language : korean (ko)
3
 
// author : Kyungwook, Park : https://github.com/kyungw00k
4
 
(function () {
5
 
    var lang = {
6
 
            months : "1월_2월_3월_4월_5월_6월_7월_8월_9월_10월_11월_12월".split("_"),
7
 
            monthsShort : "1월_2월_3월_4월_5월_6월_7월_8월_9월_10월_11월_12월".split("_"),
8
 
            weekdays : "일요일_월요일_화요일_수요일_목요일_금요일_토요일".split("_"),
9
 
            weekdaysShort : "일_월_화_수_목_금_토".split("_"),
10
 
            weekdaysMin : "일_월_화_수_목_금_토".split("_"),
11
 
            longDateFormat : {
12
 
                LT : "A h시 mm분",
13
 
                L : "YYYY.MM.DD",
14
 
                LL : "YYYY년 MMMM D일",
15
 
                LLL : "YYYY년 MMMM D일 LT",
16
 
                LLLL : "YYYY년 MMMM D일 dddd LT"
17
 
            },
18
 
            meridiem : function (hour, minute, isUpper) {
19
 
                return hour < 12 ? '오전' : '오후';
20
 
            },
21
 
            calendar : {
22
 
                sameDay : '오늘 LT',
23
 
                nextDay : '내일 LT',
24
 
                nextWeek : 'dddd LT',
25
 
                lastDay : '어제 LT',
26
 
                lastWeek : '지난주 dddd LT',
27
 
                sameElse : 'L'
28
 
            },
29
 
            relativeTime : {
30
 
                future : "%s 후",
31
 
                past : "%s 전",
32
 
                s : "몇초",
33
 
                ss : "%d초",
34
 
                m : "일분",
35
 
                mm : "%d분",
36
 
                h : "한시간",
37
 
                hh : "%d시간",
38
 
                d : "하루",
39
 
                dd : "%d일",
40
 
                M : "한달",
41
 
                MM : "%d달",
42
 
                y : "일년",
43
 
                yy : "%d년"
44
 
            },
45
 
            ordinal : function (number) {
46
 
                return '일';
47
 
            }
48
 
        };
49
 
 
50
 
    // Node
51
 
    if (typeof module !== 'undefined' && module.exports) {
52
 
        module.exports = lang;
53
 
    }
54
 
    // Browser
55
 
    if (typeof window !== 'undefined' && this.moment && this.moment.lang) {
56
 
        this.moment.lang('ko', lang);
57
 
    }
58
 
}());