summaryrefslogtreecommitdiff
path: root/locales/jquery.timeago.he.js
diff options
context:
space:
mode:
Diffstat (limited to 'locales/jquery.timeago.he.js')
-rw-r--r--locales/jquery.timeago.he.js26
1 files changed, 26 insertions, 0 deletions
diff --git a/locales/jquery.timeago.he.js b/locales/jquery.timeago.he.js
new file mode 100644
index 0000000..2cd31ab
--- /dev/null
+++ b/locales/jquery.timeago.he.js
@@ -0,0 +1,26 @@
+(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 שנים";}
+ };
+}));