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

27 lines
769 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) {
// French
jQuery.timeago.settings.strings = {
// environ ~= about, it's optional
prefixAgo: "il y a",
prefixFromNow: "d'ici",
seconds: "moins d'une minute",
minute: "environ une minute",
minutes: "environ %d minutes",
hour: "environ une heure",
hours: "environ %d heures",
day: "environ un jour",
days: "environ %d jours",
month: "environ un mois",
months: "environ %d mois",
year: "un an",
years: "%d ans"
};
}));