mining-pool-alt/website/lang/timeago/jquery.timeago.he.js
Claude 78d5fae87c
feat(pool): serve mining pool website from API server
Copy website_example to website/, add static file serving via Node fs
in the API default route handler, and remove website/ from .gitignore.
The API now serves index.html at / and all static assets by path.

Co-Authored-By: Virgil <virgil@lethean.io>
2026-04-02 13:47:34 +01:00

26 lines
901 B
JavaScript

(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 שנים";}
};
}));