Reinitialize repository... hacked by muscleman...

This commit is contained in:
Daniel Vandal
2020-02-10 15:49:40 -05:00
parent 7187ef64fa
commit ae9d287a70
187 changed files with 40054 additions and 20 deletions

View File

@@ -0,0 +1,34 @@
(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) {
// Hebrew
jQuery.timeago.settings.strings = {
prefixAgo: "לפני",
prefixFromNow: "עוד",
seconds: "פחות מדקה",
minute: "דקה",
minutes: "%d דקות",
hour: "שעה",
hours: function (number) {
return (number === 2) ? "שעתיים" : "%d שעות";
},
day: "יום",
days: function (number) {
return (number === 2) ? "יומיים" : "%d ימים";
},
month: "חודש",
months: function (number) {
return (number === 2) ? "חודשיים" : "%d חודשים";
},
year: "שנה",
years: function (number) {
return (number === 2) ? "שנתיים" : "%d שנים";
}
};
}));