diff options
author | ben <ben@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2009-02-05 18:11:27 +0000 |
---|---|---|
committer | ben <ben@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2009-02-05 18:11:27 +0000 |
commit | 6d6591d8097661c5e64623972d18664913378ab4 (patch) | |
tree | 15034de154bc334749270967b37b4e5002e9bd56 | |
parent | c6567bb2bb5c3c6d6ab8e87755b8c57e57e51bdc (diff) | |
download | elgg-6d6591d8097661c5e64623972d18664913378ab4.tar.gz elgg-6d6591d8097661c5e64623972d18664913378ab4.tar.bz2 |
Collections titles
git-svn-id: https://code.elgg.org/elgg/trunk@2660 36083f99-b078-4883-b0ff-0f9b5a30f544
-rw-r--r-- | mod/notifications/languages/en.php | 3 | ||||
-rw-r--r-- | mod/notifications/views/default/notifications/subscriptions/collections.php | 6 |
2 files changed, 9 insertions, 0 deletions
diff --git a/mod/notifications/languages/en.php b/mod/notifications/languages/en.php index 71db65744..57fbdbff3 100644 --- a/mod/notifications/languages/en.php +++ b/mod/notifications/languages/en.php @@ -5,6 +5,9 @@ 'notifications:subscriptions:personal:description' => 'Receive notifications when actions are performed on your content',
'notifications:subscriptions:personal:title' => 'Personal notifications',
+ 'notifications:subscriptions:collections:title' => 'Friends collections',
+ 'notifications:subscriptions:collections:description' => 'To toggle settings for members of your friends collections, click the icons below.',
+
'notifications:subscriptions:changesettings' => 'Notifications',
'notification:method:email' => 'Email',
diff --git a/mod/notifications/views/default/notifications/subscriptions/collections.php b/mod/notifications/views/default/notifications/subscriptions/collections.php index fa33312ec..41ce4118f 100644 --- a/mod/notifications/views/default/notifications/subscriptions/collections.php +++ b/mod/notifications/views/default/notifications/subscriptions/collections.php @@ -3,7 +3,13 @@ if ($collections = get_user_access_collections($vars['user']->guid)) {
global $NOTIFICATION_HANDLERS;
?>
+<p>
+ <?php echo elgg_echo('notifications:subscriptions:collections:title'); ?>
+</p>
<div class="notification_personal">
+<p>
+ <?php echo elgg_echo('notifications:subscriptions:collections:description'); ?>
+</p>
<table id="notificationstable" cellspacing="0" cellpadding="4" border="1" width="100%">
<tr>
<td> </td>
|