jquery.timeago.th.js 1.0 KB

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. // Thai
  11. jQuery.timeago.settings.strings = {
  12. prefixAgo: null,
  13. prefixFromNow: null,
  14. suffixAgo: "ที่แล้ว",
  15. suffixFromNow: "จากตอนนี้",
  16. seconds: "น้อยกว่าหนึ่งนาที",
  17. minute: "ประมาณหนึ่งนาที",
  18. minutes: "%d นาที",
  19. hour: "ประมาณหนึ่งชั่วโมง",
  20. hours: "ประมาณ %d ชั่วโมง",
  21. day: "หนึ่งวัน",
  22. days: "%d วัน",
  23. month: "ประมาณหนึ่งเดือน",
  24. months: "%d เดือน",
  25. year: "ประมาณหนึ่งปี",
  26. years: "%d ปี",
  27. wordSeparator: "",
  28. numbers: []
  29. };
  30. }));