mirror of
https://github.com/scratchfoundation/jquery-timeago.git
synced 2024-11-27 01:35:40 -05:00
wrapper function removed, comments added
This commit is contained in:
parent
b26f00ebf5
commit
bc75505542
1 changed files with 19 additions and 21 deletions
|
@ -1,21 +1,19 @@
|
|||
(function() {
|
||||
|
||||
jQuery.timeago.settings.strings = {
|
||||
prefixAgo: null,
|
||||
prefixFromNow: "keyin",
|
||||
suffixAgo: "avval",
|
||||
suffixFromNow: null,
|
||||
seconds: "bir necha soniya",
|
||||
minute: "1 daqiqa",
|
||||
minutes: function(value) { return "%d daqiqa" },
|
||||
hour: "1 soat",
|
||||
hours: function(value) { return "%d soat" },
|
||||
day: "1 kun",
|
||||
days: function(value) { return "%d kun" },
|
||||
month: "1 oy",
|
||||
months: function(value) { return "%d oy" },
|
||||
year: "1 yil",
|
||||
years: function(value) { return "%d yil" },
|
||||
wordSeparator: " "
|
||||
};
|
||||
})();
|
||||
//Uzbek
|
||||
jQuery.timeago.settings.strings = {
|
||||
prefixAgo: null,
|
||||
prefixFromNow: "keyin",
|
||||
suffixAgo: "avval",
|
||||
suffixFromNow: null,
|
||||
seconds: "bir necha soniya",
|
||||
minute: "1 daqiqa",
|
||||
minutes: function(value) { return "%d daqiqa" },
|
||||
hour: "1 soat",
|
||||
hours: function(value) { return "%d soat" },
|
||||
day: "1 kun",
|
||||
days: function(value) { return "%d kun" },
|
||||
month: "1 oy",
|
||||
months: function(value) { return "%d oy" },
|
||||
year: "1 yil",
|
||||
years: function(value) { return "%d yil" },
|
||||
wordSeparator: " "
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue