Skip to content

Commit c4c94d6

Browse files
authored
Merge pull request rmm5t#327 from teksteshqip/patch-1
Create jquery.timeago.sq.js
2 parents c71e8eb + fe43c90 commit c4c94d6

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
lines changed

locales/jquery.timeago.sq.js

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
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+
// Albanian SQ
11+
jQuery.timeago.settings.strings = {
12+
suffixAgo: "më parë",
13+
suffixFromNow: "tani",
14+
seconds: "më pak se një minutë",
15+
minute: "rreth një minutë",
16+
minutes: "%d minuta",
17+
hour: "rreth një orë",
18+
hours: "rreth %d orë",
19+
day: "një ditë",
20+
days: "%d ditë",
21+
month: "rreth një muaj",
22+
months: "%d muaj",
23+
year: "rreth një vit",
24+
years: "%d vjet"
25+
};
26+
}));

0 commit comments

Comments
 (0)