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.
31 lines
722 B
31 lines
722 B
(function (factory) { |
|
if (typeof define === 'function' && define.amd) { |
|
define(['jquery'], factory); |
|
} else if (typeof module === 'object' && typeof module.exports === 'object') { |
|
factory(require('jquery')); |
|
} else { |
|
factory(jQuery); |
|
} |
|
}(function (jQuery) { |
|
// Korean |
|
jQuery.timeago.settings.strings = { |
|
prefixAgo: null, |
|
prefixFromNow: null, |
|
suffixAgo: "전", |
|
suffixFromNow: "후", |
|
seconds: "1분", |
|
minute: "약 1분", |
|
minutes: "%d분", |
|
hour: "약 1시간", |
|
hours: "약 %d시간", |
|
day: "하루", |
|
days: "%d일", |
|
month: "약 1개월", |
|
months: "%d개월", |
|
year: "약 1년", |
|
years: "%d년", |
|
wordSeparator: " ", |
|
numbers: [] |
|
}; |
|
})); |
|
|
|
|