jquery.timeago.en.js 778 B

123456789101112131415161718192021222324252627282930
  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. // English (Template)
  11. jQuery.timeago.settings.strings = {
  12. prefixAgo: null,
  13. prefixFromNow: null,
  14. suffixAgo: "ago",
  15. suffixFromNow: "from now",
  16. seconds: "less than a minute",
  17. minute: "about a minute",
  18. minutes: "%d minutes",
  19. hour: "about an hour",
  20. hours: "about %d hours",
  21. day: "a day",
  22. days: "%d days",
  23. month: "about a month",
  24. months: "%d months",
  25. year: "about a year",
  26. years: "%d years",
  27. wordSeparator: " ",
  28. numbers: []
  29. };
  30. }));