File tree Expand file tree Collapse file tree 1 file changed +28
-0
lines changed Expand file tree Collapse file tree 1 file changed +28
-0
lines changed Original file line number Diff line number Diff line change 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.)
You can’t perform that action at this time.
0 commit comments