summaryrefslogtreecommitdiff
path: root/locales/jquery.timeago.uz.js
diff options
context:
space:
mode:
Diffstat (limited to 'locales/jquery.timeago.uz.js')
-rwxr-xr-xlocales/jquery.timeago.uz.js29
1 files changed, 29 insertions, 0 deletions
diff --git a/locales/jquery.timeago.uz.js b/locales/jquery.timeago.uz.js
new file mode 100755
index 0000000..f4ce8b3
--- /dev/null
+++ b/locales/jquery.timeago.uz.js
@@ -0,0 +1,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) {
+ //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: " "
+ };
+}));