mirror of
https://github.com/ShaYmez/FreeSTAR-Status-Engine.git
synced 2024-11-10 06:24:45 -05:00
31 lines
778 B
JavaScript
31 lines
778 B
JavaScript
|
(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) {
|
||
|
// English (Template)
|
||
|
jQuery.timeago.settings.strings = {
|
||
|
prefixAgo: null,
|
||
|
prefixFromNow: null,
|
||
|
suffixAgo: "ago",
|
||
|
suffixFromNow: "from now",
|
||
|
seconds: "less than a minute",
|
||
|
minute: "about a minute",
|
||
|
minutes: "%d minutes",
|
||
|
hour: "about an hour",
|
||
|
hours: "about %d hours",
|
||
|
day: "a day",
|
||
|
days: "%d days",
|
||
|
month: "about a month",
|
||
|
months: "%d months",
|
||
|
year: "about a year",
|
||
|
years: "%d years",
|
||
|
wordSeparator: " ",
|
||
|
numbers: []
|
||
|
};
|
||
|
}));
|