| 12345678910111213141516171819202122232425262728293031 |
- (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) {
- // Simplified Chinese
- jQuery.timeago.settings.strings = {
- prefixAgo: null,
- prefixFromNow: null,
- suffixAgo: "之前",
- suffixFromNow: "之后",
- seconds: "不到1分钟",
- minute: "大约1分钟",
- minutes: "%d分钟",
- hour: "大约1小时",
- hours: "大约%d小时",
- day: "1天",
- days: "%d天",
- month: "大约1个月",
- months: "%d月",
- year: "大约1年",
- years: "%d年",
- numbers: [],
- wordSeparator: ""
- };
- }));
|