| 123456789101112131415161718192021222324252627 |
- (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"
- };
- }));
|