summaryrefslogtreecommitdiff
path: root/locales/jquery.timeago.id.js
blob: ca530ccf8bfed8e30ea25d07e143cdf41cc44a7e (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
(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) {
  // Indonesian
  jQuery.timeago.settings.strings = {
    prefixAgo: null,
    prefixFromNow: null,
    suffixAgo: "yang lalu",
    suffixFromNow: "dari sekarang",
    seconds: "kurang dari semenit",
    minute: "sekitar satu menit",
    minutes: "%d menit",
    hour: "sekitar sejam",
    hours: "sekitar %d jam",
    day: "sehari",
    days: "%d hari",
    month: "sekitar sebulan",
    months: "%d bulan",
    year: "sekitar setahun",
    years: "%d tahun"
  };
}));