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
801 B
29 lines
801 B
2 years ago
|
(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) {
|
||
|
// Bulgarian
|
||
|
jQuery.timeago.settings.strings = {
|
||
|
prefixAgo: "преди",
|
||
|
prefixFromNow: "след",
|
||
|
suffixAgo: null,
|
||
|
suffixFromNow: null,
|
||
|
seconds: "по-малко от минута",
|
||
|
minute: "една минута",
|
||
|
minutes: "%d минути",
|
||
|
hour: "един час",
|
||
|
hours: "%d часа",
|
||
|
day: "един ден",
|
||
|
days: "%d дни",
|
||
|
month: "един месец",
|
||
|
months: "%d месеца",
|
||
|
year: "една година",
|
||
|
years: "%d години"
|
||
|
};
|
||
|
}));
|