summaryrefslogtreecommitdiff
path: root/locales/jquery.timeago.tr.js
diff options
context:
space:
mode:
Diffstat (limited to 'locales/jquery.timeago.tr.js')
-rw-r--r--locales/jquery.timeago.tr.js26
1 files changed, 26 insertions, 0 deletions
diff --git a/locales/jquery.timeago.tr.js b/locales/jquery.timeago.tr.js
new file mode 100644
index 0000000..8e0d2d4
--- /dev/null
+++ b/locales/jquery.timeago.tr.js
@@ -0,0 +1,26 @@
+(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) {
+ // Turkish
+ jQuery.timeago.settings.strings = {
+ suffixAgo: 'önce',
+ suffixFromNow: null,
+ seconds: 'birkaç saniye',
+ minute: '1 dakika',
+ minutes: '%d dakika',
+ hour: '1 saat',
+ hours: '%d saat',
+ day: '1 gün',
+ days: '%d gün',
+ month: '1 ay',
+ months: '%d ay',
+ year: '1 yıl',
+ years: '%d yıl'
+ };
+}));