„MediaWiki:Common.js” változatai közötti eltérés
fájlok utolsó módosítási idejének megjelenítése |
a bugfix |
||
| 991. sor: | 991. sor: | ||
return 'most'; | return 'most'; | ||
if ( sec / 60 < 60) | if ( sec / 60 < 60) | ||
return Math.round(sec | return Math.round(sec / 60).toString() + ' perce'; | ||
if ( sec / 3600 < 24 ) | if ( sec / 3600 < 24 ) | ||
return Math.round(sec / 3600).toString() + ' órája'; | return Math.round(sec / 3600).toString() + ' órája'; | ||