mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-25 16:22:43 +01:00
Clean up remove participant language in Conpherence
Summary: Updates the language to use "Remove Participant" instead of "Banish User" Test Plan: Read through the various cases, test them by removing myself or others Reviewers: epriestley Reviewed By: epriestley Subscribers: Korvin Differential Revision: https://secure.phabricator.com/D17697
This commit is contained in:
parent
c1e8b394cc
commit
a56f9a1a55
1 changed files with 4 additions and 4 deletions
|
@ -360,9 +360,9 @@ final class ConpherenceUpdateController
|
|||
$body[] = pht(
|
||||
'Are you sure you want to leave this room?');
|
||||
} else {
|
||||
$title = pht('Banish User');
|
||||
$title = pht('Remove Participant');
|
||||
$body[] = pht(
|
||||
'Banish %s from the realm?',
|
||||
'Remove %s from this room?',
|
||||
phutil_tag('strong', array(), $removed_user->getUsername()));
|
||||
}
|
||||
|
||||
|
@ -372,7 +372,7 @@ final class ConpherenceUpdateController
|
|||
'You will be able to rejoin the room later.');
|
||||
} else {
|
||||
$body[] = pht(
|
||||
'This user will be able to rejoin the room later.');
|
||||
'They will be able to rejoin the room later.');
|
||||
}
|
||||
} else {
|
||||
if ($is_self) {
|
||||
|
@ -387,7 +387,7 @@ final class ConpherenceUpdateController
|
|||
}
|
||||
} else {
|
||||
$body[] = pht(
|
||||
'This user will not be able to rejoin the room unless invited '.
|
||||
'They will not be able to rejoin the room unless invited '.
|
||||
'again.');
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue