Merge pull request #3205 from tobiasd/20170226-issue3187
Bugfix issue 3187
This commit is contained in:
commit
9ccb6072b8
|
@ -194,10 +194,14 @@ 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 = sprintf(t('Accepting %s as a friend allows %s to subscribe to your posts, and you will also receive updates from them in your news feed.'), $it['name'], $it['name']);
|
||||
$helptext3 = sprintf(t('Accepting %s as a subscriber allows them to subscribe to your posts, but you will not receive updates from them in your news feed.'), $it['name']);
|
||||
} 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 = sprintf(t('Accepting %s as a friend allows %s to subscribe to your posts, and you will also receive updates from them in your news feed.'), $it['name'], $it['name']);
|
||||
$helptext3 = sprintf(t('Accepting %s as a sharer allows them to subscribe to your posts, but you will not receive updates from them in your news feed.'), $it['name']);
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -205,9 +209,11 @@ 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,
|
||||
'$approve_as3' => $helptext3,
|
||||
'$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"];
|
||||
|
|
11850
util/messages.po
11850
util/messages.po
File diff suppressed because it is too large
Load Diff
|
@ -1,5 +1,9 @@
|
|||
|
||||
<div class="intro-approve-as-friend-desc">{{$approve_as}}</div>
|
||||
<div class="intro-approve-as-friend-desc">
|
||||
<p>{{$approve_as1}}</p>
|
||||
<p>{{$approve_as2}}</p>
|
||||
<p>{{$approve_as3}}</p>
|
||||
</div>
|
||||
|
||||
<div class="intro-approve-as-friend-wrapper">
|
||||
<label class="intro-approve-as-friend-label" for="intro-approve-as-friend-{{$intro_id}}">{{$as_friend}}</label>
|
||||
|
|
Loading…
Reference in New Issue
Block a user