diff options
author | Joas Schilling <nickvergessen@gmx.de> | 2014-05-02 11:51:40 +0200 |
---|---|---|
committer | Joas Schilling <nickvergessen@gmx.de> | 2014-05-02 11:51:40 +0200 |
commit | 5c7199f3dd1e0dd99c173f90ada615c68d486f51 (patch) | |
tree | a7f88dda4d20dbba13d4b7ba5800112706f51b2d /phpBB | |
parent | 2bb12d0d6f326dcee6e6fe44a99ce3f0dcfd1c23 (diff) | |
download | forums-5c7199f3dd1e0dd99c173f90ada615c68d486f51.tar forums-5c7199f3dd1e0dd99c173f90ada615c68d486f51.tar.gz forums-5c7199f3dd1e0dd99c173f90ada615c68d486f51.tar.bz2 forums-5c7199f3dd1e0dd99c173f90ada615c68d486f51.tar.xz forums-5c7199f3dd1e0dd99c173f90ada615c68d486f51.zip |
[ticket/12371] Fix language string
PHPBB3-12371
Diffstat (limited to 'phpBB')
-rw-r--r-- | phpBB/language/en/common.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/language/en/common.php b/phpBB/language/en/common.php index 956b593476..356316f35f 100644 --- a/phpBB/language/en/common.php +++ b/phpBB/language/en/common.php @@ -431,7 +431,7 @@ $lang = array_merge($lang, array( // A and B replied... // A, B and C replied... // A, B, C and 2 others replied... - // A, B, C and many others replied... + // A, B, C and others replied... 'NOTIFICATION_BOOKMARK' => array( 1 => '%1$s replied to the topic ā%2$sā you have bookmarked.', ), @@ -457,7 +457,7 @@ $lang = array_merge($lang, array( 'NOTIFICATION_TYPE_NOT_EXIST' => 'The notification type "%s" is missing from the file system.', 'NOTIFICATION_ADMIN_ACTIVATE_USER' => 'The user ā%1$sā is newly registered and requires activation.', // Used in conjuction with NOTIFICATION_BOOKMARK and NOTIFICATION_POST. - 'NOTIFICATION_MANY_OTHERS' => 'many others', + 'NOTIFICATION_MANY_OTHERS' => 'others', 'NOTIFICATION_X_OTHERS' => array( 2 => '%d others', ), |