summaryrefslogtreecommitdiff
path: root/locales/jquery.timeago.lt.js
blob: 2079fccd3073f842ac16834e95d6d916c4e5460d (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) {
  //Lithuanian      
  jQuery.timeago.settings.strings = {
    prefixAgo: "prieš",
    prefixFromNow: null,
    suffixAgo: null,
    suffixFromNow: "nuo dabar",
    seconds: "%d sek.",
    minute: "min.",
    minutes: "%d min.",
    hour: "val.",
    hours: "%d val.",
    day: "1 d.",
    days: "%d d.",
    month: "mėn.",
    months: "%d mėn.",
    year: "metus",
    years: "%d metus",
    wordSeparator: " ",
    numbers: []
  };
}));