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.
29 lines
719 B
29 lines
719 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) { |
|
// Spanish |
|
jQuery.timeago.settings.strings = { |
|
prefixAgo: "hace", |
|
prefixFromNow: "dentro de", |
|
suffixAgo: "", |
|
suffixFromNow: "", |
|
seconds: "menos de un minuto", |
|
minute: "un minuto", |
|
minutes: "unos %d minutos", |
|
hour: "una hora", |
|
hours: "%d horas", |
|
day: "un día", |
|
days: "%d días", |
|
month: "un mes", |
|
months: "%d meses", |
|
year: "un año", |
|
years: "%d años" |
|
}; |
|
})); |
|
|
|
|