diff options
author | friendica <info@friendica.com> | 2012-02-23 17:37:03 -0800 |
---|---|---|
committer | friendica <info@friendica.com> | 2012-02-23 17:37:03 -0800 |
commit | 65ddefe9c5db4f5af9495377cd7e4463e8f68ef6 (patch) | |
tree | 21656d3021f88d2878e71c2f8ab7e46e9d813c3c /mod/notifications.php | |
parent | b4d38f6eed93b944b58f36c454a1f483d7db74ac (diff) | |
download | volse-hubzilla-65ddefe9c5db4f5af9495377cd7e4463e8f68ef6.tar.gz volse-hubzilla-65ddefe9c5db4f5af9495377cd7e4463e8f68ef6.tar.bz2 volse-hubzilla-65ddefe9c5db4f5af9495377cd7e4463e8f68ef6.zip |
system notifications to notify module, untranslated string in notifications.tpl
Diffstat (limited to 'mod/notifications.php')
-rwxr-xr-x | mod/notifications.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/mod/notifications.php b/mod/notifications.php index 5831c1b7a..99031a1d5 100755 --- a/mod/notifications.php +++ b/mod/notifications.php @@ -295,7 +295,7 @@ function notifications_content(&$a) { } $o .= replace_macros($notif_tpl,array( - '$notif_header' => t('Notifications'), + '$notif_header' => t('Network Notifications'), '$tabs' => $tabs, '$notif_content' => $notif_content, )); @@ -325,7 +325,7 @@ function notifications_content(&$a) { } $o .= replace_macros($notif_tpl,array( - '$notif_header' => t('System'), + '$notif_header' => t('System Notifications'), '$tabs' => $tabs, '$notif_content' => $notif_content, )); @@ -420,7 +420,7 @@ function notifications_content(&$a) { } $o .= replace_macros($notif_tpl,array( - '$notif_header' => t('Notifications'), + '$notif_header' => t('Personal Notifications'), '$tabs' => $tabs, '$notif_content' => $notif_content, )); @@ -501,7 +501,7 @@ function notifications_content(&$a) { } $o .= replace_macros($notif_tpl,array( - '$notif_header' => t('Notifications'), + '$notif_header' => t('Home Notifications'), '$tabs' => $tabs, '$notif_content' => $notif_content, )); |