From a56f9a1a5599bdc48ee5cde783d0da24bf332227 Mon Sep 17 00:00:00 2001 From: Chad Little Date: Sat, 15 Apr 2017 16:07:54 +0000 Subject: [PATCH] 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 --- .../controller/ConpherenceUpdateController.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/applications/conpherence/controller/ConpherenceUpdateController.php b/src/applications/conpherence/controller/ConpherenceUpdateController.php index 9cc666109c..ce6e64cd7f 100644 --- a/src/applications/conpherence/controller/ConpherenceUpdateController.php +++ b/src/applications/conpherence/controller/ConpherenceUpdateController.php @@ -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.'); } }