Skip to content

Commit b0cc181

Browse files
authored
Merge pull request #358 from cdn/master
Add an online-translated Esperanto language file
2 parents d18f93c + 77972d1 commit b0cc181

File tree

1 file changed

+30
-0
lines changed

1 file changed

+30
-0
lines changed

locales/jquery.timeago.eo.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) -> Esperanto
11+
jQuery.timeago.settings.strings = {
12+
prefixAgo: "antaŭ",
13+
prefixFromNow: null,
14+
suffixAgo: null,
15+
suffixFromNow: "de nun",
16+
seconds: "malpli ol minuto",
17+
minute: "ĉirkaŭ uno minuto",
18+
minutes: "%d minutoj",
19+
hour: "ĉirkaŭ uno horo",
20+
hours: "ĉirkaŭ %d horojn",
21+
day: "ĉirkaŭ tago",
22+
days: "%d tagoj",
23+
month: "ĉirkaŭ unu monato",
24+
months: "%d monatoj",
25+
year: "ĉirkaŭ unu jaro",
26+
years: "%d jaroj",
27+
wordSeparator: " ",
28+
numbers: []
29+
};
30+
}));

0 commit comments

Comments
 (0)