mirror of
https://github.com/scratchfoundation/jquery-timeago.git
synced 2024-11-23 07:47:54 -05:00
570327cf15
Chinese don't use blank to separate words.
20 lines
455 B
JavaScript
20 lines
455 B
JavaScript
// Traditional Chinese, zh-tw
|
|
jQuery.timeago.settings.strings = {
|
|
prefixAgo: null,
|
|
prefixFromNow: "從現在開始",
|
|
suffixAgo: "之前",
|
|
suffixFromNow: null,
|
|
seconds: "不到1分鐘",
|
|
minute: "大約1分鐘",
|
|
minutes: "%d分鐘",
|
|
hour: "大約1小時",
|
|
hours: "%d小時",
|
|
day: "大約1天",
|
|
days: "%d天",
|
|
month: "大約1個月",
|
|
months: "%d個月",
|
|
year: "大約1年",
|
|
years: "%d年",
|
|
numbers: [],
|
|
wordSeparator: ""
|
|
};
|