From 7442ce3d6d9f09156b75fdfdb626f3f228ee01ee Mon Sep 17 00:00:00 2001 From: Tobias Diekershoff Date: Sun, 26 Feb 2017 16:47:11 +0100 Subject: [PATCH] change Fan/Admirer to Subscriber --- mod/notifications.php | 11 +++++++---- view/templates/netfriend.tpl | 2 +- 2 files changed, 8 insertions(+), 5 deletions(-) diff --git a/mod/notifications.php b/mod/notifications.php index 8cd1b29ea4..e9c04a0c93 100644 --- a/mod/notifications.php +++ b/mod/notifications.php @@ -194,10 +194,12 @@ function notifications_content(App $a) { if($it['network'] === NETWORK_DFRN) { $lbl_knowyou = t('Claims to be known to you: '); $knowyou = (($it['knowyou']) ? t('yes') : t('no')); - $helptext = t('Shall your connection be bidirectional or not? "Friend" implies that you allow to read and you subscribe to their posts. "Fan/Admirer" means that you allow to read but you do not want to read theirs. Approve as: '); + $helptext = t('Shall your connection be bidirectional or not?'); + $helptext2 = t('"Friend" implies that you allow to read and you subscribe to their posts. "Subscriber" means that you allow to read but you do not want to read theirs. Approve as: '); } else { $knowyou = ''; - $helptext = t('Shall your connection be bidirectional or not? "Friend" implies that you allow to read and you subscribe to their posts. "Sharer" means that you allow to read but you do not want to read theirs. Approve as: '); + $helptext = t('Shall your connection be bidirectional or not?'); + $helptext2 = t('"Friend" implies that you allow to read and you subscribe to their posts. "Sharer" means that you allow to read but you do not want to read theirs. Approve as: '); } } @@ -205,9 +207,10 @@ function notifications_content(App $a) { '$intro_id' => $it['intro_id'], '$friend_selected' => $friend_selected, '$fan_selected' => $fan_selected, - '$approve_as' => $helptext, + '$approve_as1' => $helptext, + '$approve_as2' => $helptext2, '$as_friend' => t('Friend'), - '$as_fan' => (($it['network'] == NETWORK_DIASPORA) ? t('Sharer') : t('Fan/Admirer')) + '$as_fan' => (($it['network'] == NETWORK_DIASPORA) ? t('Sharer') : t('Subscriber')) )); $header = $it["name"]; diff --git a/view/templates/netfriend.tpl b/view/templates/netfriend.tpl index 767cc0699f..169f4e51cd 100644 --- a/view/templates/netfriend.tpl +++ b/view/templates/netfriend.tpl @@ -1,5 +1,5 @@ -
{{$approve_as}}
+
{{$approve_as1}}

{{$approve_as2}}