Skip to content

Commit fe790cf

Browse files
committed
Added Georgian language translation
1 parent 13d9e4e commit fe790cf

File tree

1 file changed

+30
-0
lines changed

1 file changed

+30
-0
lines changed

locales/jquery.timeago.ka.js

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
(function (factory) {
2+
if (typeof define === 'function' && define.amd) {
3+
define(['jquery'], factory);
4+
} else if (typeof module === 'object' && typeof module.exports === 'object') {
5+
factory(require('jquery'));
6+
} else {
7+
factory(jQuery);
8+
}
9+
}(function (jQuery) {
10+
// English (Template)
11+
jQuery.timeago.settings.strings = {
12+
prefixAgo: null,
13+
prefixFromNow: null,
14+
suffixAgo: "ის წინ",
15+
suffixFromNow: null,
16+
seconds: "რამდენიმე წამ",
17+
minute: "1 წუთ",
18+
minutes: "%d წუთ",
19+
hour: "1 საათ",
20+
hours: "%d საათ",
21+
day: "1 დღ",
22+
days: "%d დღ",
23+
month: "1 თვ",
24+
months: "%d თვ",
25+
year: "1 წლ",
26+
years: "%d წლ",
27+
wordSeparator: "",
28+
};
29+
})
30+
);

0 commit comments

Comments
 (0)