You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
769 B
27 lines
769 B
(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" |
|
}; |
|
}));
|
|
|