jquery.timeago.dv.js 971 B

1234567891011121314151617181920212223242526272829303132
  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. /**
  11. * Dhivehi time in Thaana for timeago.js
  12. **/
  13. jQuery.timeago.settings.strings = {
  14. prefixAgo: null,
  15. prefixFromNow: null,
  16. suffixAgo: "ކުރިން",
  17. suffixFromNow: "ފަހުން",
  18. seconds: "ސިކުންތުކޮޅެއް",
  19. minute: "މިނިޓެއްވަރު",
  20. minutes: "%d މިނިޓު",
  21. hour: "ގަޑިއެއްވަރު",
  22. hours: "ގާތްގަނޑަކަށް %d ގަޑިއިރު",
  23. day: "އެއް ދުވަސް",
  24. days: "މީގެ %d ދުވަސް",
  25. month: "މަހެއްވަރު",
  26. months: "މީގެ %d މަސް",
  27. year: "އަހަރެއްވަރު",
  28. years: "މީގެ %d އަހަރު",
  29. wordSeparator: " ",
  30. numbers: []
  31. };
  32. }));