mining-pool-alt/website/lang/timeago/jquery.timeago.el.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

28 lines
856 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) {
// Greek
jQuery.timeago.settings.strings = {
prefixAgo: "πριν",
prefixFromNow: "σε",
suffixAgo: "",
suffixFromNow: "",
seconds: "λιγότερο από ένα λεπτό",
minute: "περίπου ένα λεπτό",
minutes: "%d λεπτά",
hour: "περίπου μία ώρα",
hours: "περίπου %d ώρες",
day: "μία μέρα",
days: "%d μέρες",
month: "περίπου ένα μήνα",
months: "%d μήνες",
year: "περίπου ένα χρόνο",
years: "%d χρόνια"
};
}));