diff options
author | Nathaniel Guse <nathaniel.guse@gmail.com> | 2013-02-13 13:30:05 -0600 |
---|---|---|
committer | Nathaniel Guse <nathaniel.guse@gmail.com> | 2013-02-13 13:30:05 -0600 |
commit | dc9cfcd613a722e65ac8645cf8e2d0b60d5fa21f (patch) | |
tree | 4eacc55d5cc5920996cf88de10046c63b2c5b3a8 /phpBB/language/en/common.php | |
parent | 54e9f7b50ab8b25f63945c6ff09cc9ffa80c04af (diff) | |
download | forums-dc9cfcd613a722e65ac8645cf8e2d0b60d5fa21f.tar forums-dc9cfcd613a722e65ac8645cf8e2d0b60d5fa21f.tar.gz forums-dc9cfcd613a722e65ac8645cf8e2d0b60d5fa21f.tar.bz2 forums-dc9cfcd613a722e65ac8645cf8e2d0b60d5fa21f.tar.xz forums-dc9cfcd613a722e65ac8645cf8e2d0b60d5fa21f.zip |
[ticket/11103] Make the number of notifications strong if > 0
PHPBB3-11103
Diffstat (limited to 'phpBB/language/en/common.php')
-rw-r--r-- | phpBB/language/en/common.php | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/phpBB/language/en/common.php b/phpBB/language/en/common.php index 5954ec0501..b747310e5e 100644 --- a/phpBB/language/en/common.php +++ b/phpBB/language/en/common.php @@ -403,8 +403,9 @@ $lang = array_merge($lang, array( 'NOT_WATCHING_TOPIC' => 'You are no longer subscribed to this topic.', 'NOTIFICATIONS' => 'Notifications', 'NOTIFICATIONS_COUNT' => array( - 1 => '%d Notification', - 2 => '%d Notifications', + 0 => '%d Notifications', + 1 => '<strong>%d</strong> Notification', + 2 => '<strong>%d</strong> Notifications', ), 'NOTIFICATION_BOOKMARK' => '%1$s replied to the topic "%2$s" you have bookmarked.', 'NOTIFICATION_PM' => '%1$s sent you a Private Message "%2$s".', |