diff options
| author | Cesar G <prototech91@gmail.com> | 2013-12-01 12:28:37 -0800 |
|---|---|---|
| committer | Cesar G <prototech91@gmail.com> | 2014-03-19 03:08:33 -0700 |
| commit | 7cc1a8d224b8c53530bba89fbb756a0518b04a91 (patch) | |
| tree | 15ad870dca6a829c2b556a49cfeec6e94f3a7ed9 /phpBB | |
| parent | b32a66ca78b6170c0d90b7776dabdf8f343c557a (diff) | |
| download | forums-7cc1a8d224b8c53530bba89fbb756a0518b04a91.tar forums-7cc1a8d224b8c53530bba89fbb756a0518b04a91.tar.gz forums-7cc1a8d224b8c53530bba89fbb756a0518b04a91.tar.bz2 forums-7cc1a8d224b8c53530bba89fbb756a0518b04a91.tar.xz forums-7cc1a8d224b8c53530bba89fbb756a0518b04a91.zip | |
[ticket/11959] Add samples for the untrimmed strings.
PHPBB3-11959
Diffstat (limited to 'phpBB')
| -rw-r--r-- | phpBB/language/en/common.php | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/phpBB/language/en/common.php b/phpBB/language/en/common.php index 42965c460f..e84033f1b7 100644 --- a/phpBB/language/en/common.php +++ b/phpBB/language/en/common.php @@ -427,6 +427,7 @@ $lang = array_merge($lang, array( // This is used for a list of up to 4 users. 5 users or more uses _TRIMMED. 'NOTIFICATION_BOOKMARK' => array( 1 => '%1$s replied to the topic “%3$s” you have bookmarked.', + // X, Y, and Z replied to the topic “Test” you have bookmarked. 2 => '%1$s and %2$s replied to the topic “%3$s” you have bookmarked.', ), // X, Y, Z and 2 others replied to the topic “Test” you have bookmarked. @@ -439,6 +440,7 @@ $lang = array_merge($lang, array( // This is used for a list of up to 4 users. 5 users or more uses _TRIMMED. 'NOTIFICATION_POST' => array( 1 => '%1$s replied to the topic “%3$s”.', + // X, Y, and Z replied to the topic “Test”. 2 => '%1$s and %2$s replied to the topic “%3$s”.', ), // X, Y, Z and 2 others replied to the topic “Test”. @@ -451,6 +453,7 @@ $lang = array_merge($lang, array( // This is used for a list of up to 4 users. 5 users or more uses _TRIMMED. 'NOTIFICATION_QUOTE' => array( 1 => '%1$s quoted you in the post “%3$s”.', + // X, Y, and Z quoted you in the post “Re: Test”. 2 => '%1$s and %2$s quoted you in the post “%3$s”.', ), // X, Y, Z and 2 others quoted you in the post “Re: Test”. |
