Skip to content

Commit 658893d

Browse files
committed
Estonian translation
1 parent f41cfd0 commit 658893d

File tree

1 file changed

+28
-0
lines changed

1 file changed

+28
-0
lines changed

locales/jquery.timeago.et.js

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
// Estonian
2+
jQuery.timeago.settings.strings = {
3+
prefixAgo: null,
4+
prefixFromNow: null,
5+
suffixAgo: "tagasi",
6+
suffixFromNow: "tulevikus",
7+
seconds: "vähem kui minut",
8+
minute: "umbes minut",
9+
minutes: "%d minutit",
10+
hour: "umbes tund aega",
11+
hours: "%d tundi",
12+
day: "päev",
13+
days: "%d päeva",
14+
month: "kuu",
15+
months: "%d kuud",
16+
year: "umbes aasta",
17+
years: "%d aastat"
18+
};
19+
20+
// The above is not a great localization because one would usually
21+
// write "2 minutes ago" in Estonian as "2 minutit tagasi", however
22+
// one would write "2 minutes into the future" as "2 minuti pärast"
23+
// which cannot be achieved with localization support this simple.
24+
// This is because Estonian has case suffixes attached directly
25+
// to the end of the word). As a workaround, the above localizations
26+
// will say "2 minutit tulevikus" which is understandable but
27+
// not as fluent.
28+
// (Explanation borrowed from Finnish, with adaptations.)

0 commit comments

Comments
 (0)