File tree Expand file tree Collapse file tree 1 file changed +18
-0
lines changed Expand file tree Collapse file tree 1 file changed +18
-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 : "pärast" ,
7+ seconds : function ( n , d ) { return d < 0 ? "vähem kui minuti aja" : "vähem kui minut aega" } ,
8+ minute : function ( n , d ) { return d < 0 ? "umbes minuti aja" : "umbes minut aega" } ,
9+ minutes : function ( n , d ) { return d < 0 ? "%d minuti" : "%d minutit" } ,
10+ hour : function ( n , d ) { return d < 0 ? "umbes tunni aja" : "umbes tund aega" } ,
11+ hours : function ( n , d ) { return d < 0 ? "%d tunni" : "%d tundi" } ,
12+ day : function ( n , d ) { return d < 0 ? "umbes päeva" : "umbes päev" } ,
13+ days : function ( n , d ) { return d < 0 ? "%d päeva" : "%d päeva" } ,
14+ month : function ( n , d ) { return d < 0 ? "umbes kuu aja" : "umbes kuu aega" } ,
15+ months : function ( n , d ) { return d < 0 ? "%d kuu" : "%d kuud" } ,
16+ year : function ( n , d ) { return d < 0 ? "umbes aasta aja" : "umbes aasta aega" } ,
17+ years : function ( n , d ) { return d < 0 ? "%d aasta" : "%d aastat" }
18+ } ;
You can’t perform that action at this time.
0 commit comments