jquery.timeago.fr-short.js 675 B

1234567891011121314151617181920212223242526
  1. (function (factory) {
  2. if (typeof define === 'function' && define.amd) {
  3. define(['jquery'], factory);
  4. } else if (typeof module === 'object' && typeof module.exports === 'object') {
  5. factory(require('jquery'));
  6. } else {
  7. factory(jQuery);
  8. }
  9. }(function (jQuery) {
  10. // French shortened
  11. jQuery.timeago.settings.strings = {
  12. prefixAgo: "il y a",
  13. prefixFromNow: "d'ici",
  14. seconds: "moins d'une minute",
  15. minute: "une minute",
  16. minutes: "%d minutes",
  17. hour: "une heure",
  18. hours: "%d heures",
  19. day: "un jour",
  20. days: "%d jours",
  21. month: "un mois",
  22. months: "%d mois",
  23. year: "un an",
  24. years: "%d ans"
  25. };
  26. }));