summaryrefslogtreecommitdiff
path: root/locales/jquery.timeago.lv.js
blob: 855d1a4ddf3f9a9c1f20f40a23015cdd06fde964 (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
(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) {
  //Latvian
  jQuery.timeago.settings.strings = {
    prefixAgo: "pirms",
    prefixFromNow: null,
    suffixAgo: null,
    suffixFromNow: "no šī brīža",
    seconds: "%d sek.",
    minute: "min.",
    minutes: "%d min.",
    hour: "st.",
    hours: "%d st.",
    day: "1 d.",
    days: "%d d.",
    month: "mēnesis.",
    months: "%d mēnesis.",
    year: "gads",
    years: "%d gads",
    wordSeparator: " ",
    numbers: []
  };
}));