From f7c9c359cd3c1bc5b72993116db66ae281c915c6 Mon Sep 17 00:00:00 2001 From: more onion Date: Wed, 7 May 2014 11:09:05 +0200 Subject: [PATCH 1/2] Fix jquery.timeago.ro.js Adjust Romanian language file to fit the others. File was being ignored because '$' wasn't mapped to 'jQuery'. --- locales/jquery.timeago.ro.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/locales/jquery.timeago.ro.js b/locales/jquery.timeago.ro.js index 883b548..2cee429 100644 --- a/locales/jquery.timeago.ro.js +++ b/locales/jquery.timeago.ro.js @@ -1,5 +1,5 @@ // Romanian -$.timeago.settings.strings = { +jQuery.timeago.settings.strings = { prefixAgo: "acum", prefixFromNow: "in timp de", suffixAgo: "", @@ -15,4 +15,4 @@ $.timeago.settings.strings = { months: "%d luni", year: "un an", years: "%d ani" -}; \ No newline at end of file +}; From 4af2cf71358f62533655b31c567fe78a710df366 Mon Sep 17 00:00:00 2001 From: more onion Date: Wed, 7 May 2014 11:14:18 +0200 Subject: [PATCH 2/2] Fix jquery.timeago.tr.js Adjust Turkish language file to fit the others. File was being ignored because '$' wasn't mapped to 'jQuery'. --- locales/jquery.timeago.tr.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/locales/jquery.timeago.tr.js b/locales/jquery.timeago.tr.js index f3e3a67..160190d 100644 --- a/locales/jquery.timeago.tr.js +++ b/locales/jquery.timeago.tr.js @@ -1,5 +1,5 @@ // Turkish -jQuery.extend($.timeago.settings.strings, { +jQuery.timeago.settings.strings = { suffixAgo: 'önce', suffixFromNow: null, seconds: '1 dakikadan', @@ -13,4 +13,4 @@ jQuery.extend($.timeago.settings.strings, { months: '%d ay', year: '1 yıl', years: '%d yıl' -}); \ No newline at end of file +};