diff options
Diffstat (limited to 'inc/lang')
-rw-r--r-- | inc/lang/de/lang.php | 7 | ||||
-rw-r--r-- | inc/lang/en/lang.php | 12 |
2 files changed, 13 insertions, 6 deletions
diff --git a/inc/lang/de/lang.php b/inc/lang/de/lang.php index 530b0bc24..1ab03e4c1 100644 --- a/inc/lang/de/lang.php +++ b/inc/lang/de/lang.php @@ -247,3 +247,10 @@ $lang['mu_filetypes'] = 'Erlaubte Dateitypen'; $lang['mu_info'] = 'Dateien hochgeladen!'; $lang['mu_lasterr'] = 'Letzter Fehler:'; $lang['recent_global'] = 'Im Moment sehen Sie die Änderungen im Namensraum <b>%s</b>. Sie können auch <a href="%s">die Änderungen im gesamten Wiki sehen</a>.'; + +$lang['years'] = 'vor %d Jahren'; +$lang['months'] = 'vor %d Monaten'; +$lang['weeks'] = 'vor %d Wochen'; +$lang['days'] = 'vor %d Tagen'; +$lang['hours'] = 'vor %d Stunden'; +$lang['seconds'] = 'vor %d Sekunden'; diff --git a/inc/lang/en/lang.php b/inc/lang/en/lang.php index fbde8cab0..dfe45bf83 100644 --- a/inc/lang/en/lang.php +++ b/inc/lang/en/lang.php @@ -269,11 +269,11 @@ $lang['mu_lasterr'] = 'Last error:'; $lang['recent_global'] = 'You\'re currently watching the changes inside the <b>%s</b> namespace. You can also <a href="%s">view the recent changes of the whole wiki</a>.'; -$lang['years'] = '%d years'; -$lang['months'] = '%d months'; -$lang['weeks'] = '%d weeks'; -$lang['days'] = '%d days'; -$lang['hours'] = '%d hours'; -$lang['seconds'] = '%d seconds'; +$lang['years'] = '%d years ago'; +$lang['months'] = '%d months ago'; +$lang['weeks'] = '%d weeks ago'; +$lang['days'] = '%d days ago'; +$lang['hours'] = '%d hours ago'; +$lang['seconds'] = '%d seconds ago'; //Setup VIM: ex: et ts=2 enc=utf-8 : |