mining-pool-alt/website/lang/timeago/jquery.timeago.si.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
939 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) {
// Sinhalese (SI)
jQuery.timeago.settings.strings = {
prefixAgo: null,
prefixFromNow: null,
suffixAgo: "පෙර",
suffixFromNow: "පසුව",
seconds: "තත්පර කිහිපයකට",
minute: "මිනිත්තුවකට පමණ",
minutes: "මිනිත්තු %d කට",
hour: "පැයක් පමණ ",
hours: "පැය %d කට පමණ",
day: "දවසක ට",
days: "දවස් %d කට ",
month: "මාසයක් පමණ",
months: "මාස %d කට",
year: "වසරක් පමණ",
years: "වසරක් %d කට පමණ"
};
}));