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
746 B
29 lines
746 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) {
|
|
jQuery.timeago.settings.strings = {
|
|
prefixAgo: "fyrir",
|
|
prefixFromNow: "eftir",
|
|
suffixAgo: "síðan",
|
|
suffixFromNow: null,
|
|
seconds: "minna en mínútu",
|
|
minute: "mínútu",
|
|
minutes: "%d mínútum",
|
|
hour: "klukkutíma",
|
|
hours: "um %d klukkutímum",
|
|
day: "degi",
|
|
days: "%d dögum",
|
|
month: "mánuði",
|
|
months: "%d mánuðum",
|
|
year: "ári",
|
|
years: "%d árum",
|
|
wordSeparator: " ",
|
|
numbers: []
|
|
};
|
|
}));
|
|
|