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.
28 lines
717 B
28 lines
717 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) {
|
|
// Brazilian Portuguese
|
|
jQuery.timeago.settings.strings = {
|
|
prefixAgo: "há",
|
|
prefixFromNow: "em",
|
|
suffixAgo: null,
|
|
suffixFromNow: null,
|
|
seconds: "alguns segundos",
|
|
minute: "um minuto",
|
|
minutes: "%d minutos",
|
|
hour: "uma hora",
|
|
hours: "%d horas",
|
|
day: "um dia",
|
|
days: "%d dias",
|
|
month: "um mês",
|
|
months: "%d meses",
|
|
year: "um ano",
|
|
years: "%d anos"
|
|
};
|
|
}));
|
|
|