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.
30 lines
731 B
30 lines
731 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) {
|
|
// Catalan
|
|
jQuery.timeago.settings.strings = {
|
|
prefixAgo: "fa",
|
|
prefixFromNow: "d'aquí",
|
|
suffixAgo: null,
|
|
suffixFromNow: null,
|
|
seconds: "menys d'un minut",
|
|
minute: "un minut",
|
|
minutes: "%d minuts",
|
|
hour: "una hora",
|
|
hours: "%d hores",
|
|
day: "un dia",
|
|
days: "%d dies",
|
|
month: "un mes",
|
|
months: "%d mesos",
|
|
year: "un any",
|
|
years: "%d anys",
|
|
wordSeparator: " ",
|
|
numbers: []
|
|
};
|
|
}));
|
|
|