summaryrefslogtreecommitdiff
path: root/locales/jquery.timeago.dv.js
blob: 0d70a493c27aa8e75b045d56a2dcfe24da429681 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
(function (factory) {
  if (typeof define === 'function' && define.amd) {
    define(['jquery'], factory);
  } else if (typeof module === 'object' && typeof module.exports === 'object') {
    factory(require('jquery'));
  } else {
    factory(jQuery);
  }
}(function (jQuery) {
  /** 
   * Dhivehi time in Thaana for timeago.js
   **/
  jQuery.timeago.settings.strings = {
    prefixAgo: null,
    prefixFromNow: null,
    suffixAgo: "ކުރިން",
    suffixFromNow: "ފަހުން",
    seconds: "ސިކުންތުކޮޅެއް",
    minute: "މިނިޓެއްވަރު",
    minutes: "%d މިނިޓު",
    hour: "ގަޑިއެއްވަރު",
    hours: "ގާތްގަނޑަކަށް %d ގަޑިއިރު",
    day: "އެއް ދުވަސް",
    days: "މީގެ %d ދުވަސް",
    month: "މަހެއްވަރު",
    months: "މީގެ %d މަސް",
    year: "އަހަރެއްވަރު",
    years: "މީގެ %d އަހަރު",
    wordSeparator: " ",
    numbers: []
  };
}));