diff options
author | Andreas Gohr <gohr@cosmocode.de> | 2009-10-08 10:12:38 +0200 |
---|---|---|
committer | Andreas Gohr <gohr@cosmocode.de> | 2009-10-08 10:12:38 +0200 |
commit | 9c731366728e2b0513e726484426bf3be0a5a732 (patch) | |
tree | 4ff41beea8efb41dc29934d2dcf319f2b07e378e | |
parent | f22635779b10fe3735a11bc1af5c88653e580534 (diff) | |
download | rpg-9c731366728e2b0513e726484426bf3be0a5a732.tar.gz rpg-9c731366728e2b0513e726484426bf3be0a5a732.tar.bz2 |
added missing language string for fuzzy date features
Ignore-this: b60709ebd1a66d3262459d37abd29259
darcs-hash:20091008081238-6e07b-9d1a55fed634ca3139ae42f8adef6f4ef6c3dfc2.gz
-rw-r--r-- | inc/lang/de/lang.php | 1 | ||||
-rw-r--r-- | inc/lang/en/lang.php | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/inc/lang/de/lang.php b/inc/lang/de/lang.php index 1ab03e4c1..96352f8f0 100644 --- a/inc/lang/de/lang.php +++ b/inc/lang/de/lang.php @@ -253,4 +253,5 @@ $lang['months'] = 'vor %d Monaten'; $lang['weeks'] = 'vor %d Wochen'; $lang['days'] = 'vor %d Tagen'; $lang['hours'] = 'vor %d Stunden'; +$lang['minutes'] = 'vor %d Minuten'; $lang['seconds'] = 'vor %d Sekunden'; diff --git a/inc/lang/en/lang.php b/inc/lang/en/lang.php index dfe45bf83..cf5173d05 100644 --- a/inc/lang/en/lang.php +++ b/inc/lang/en/lang.php @@ -274,6 +274,7 @@ $lang['months'] = '%d months ago'; $lang['weeks'] = '%d weeks ago'; $lang['days'] = '%d days ago'; $lang['hours'] = '%d hours ago'; +$lang['minutes'] = '%d minutes ago'; $lang['seconds'] = '%d seconds ago'; //Setup VIM: ex: et ts=2 enc=utf-8 : |