jquery.timeago.vi.js 841 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. // Vietnamese
  11. jQuery.timeago.settings.strings = {
  12. prefixAgo: 'cách đây',
  13. prefixFromNow: null,
  14. suffixAgo: "trước",
  15. suffixFromNow: "kể từ bây giờ",
  16. seconds: "chưa đến một phút",
  17. minute: "khoảng một phút",
  18. minutes: "%d phút",
  19. hour: "khoảng một tiếng",
  20. hours: "khoảng %d tiếng",
  21. day: "một ngày",
  22. days: "%d ngày",
  23. month: "khoảng một tháng",
  24. months: "%d tháng",
  25. year: "khoảng một năm",
  26. years: "%d năm",
  27. wordSeparator: " ",
  28. numbers: []
  29. };
  30. }));