@recaptime-dev's working patches + fork for Phorge, a community fork of Phabricator. (Upstream dev and stable branches are at upstream/main and upstream/stable respectively.) hq.recaptime.dev/wiki/Phorge
phorge phabricator
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

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

authored by

Chad Little and committed by
chad
a56f9a1a c1e8b394

+4 -4
+4 -4
src/applications/conpherence/controller/ConpherenceUpdateController.php
··· 360 360 $body[] = pht( 361 361 'Are you sure you want to leave this room?'); 362 362 } else { 363 - $title = pht('Banish User'); 363 + $title = pht('Remove Participant'); 364 364 $body[] = pht( 365 - 'Banish %s from the realm?', 365 + 'Remove %s from this room?', 366 366 phutil_tag('strong', array(), $removed_user->getUsername())); 367 367 } 368 368 ··· 372 372 'You will be able to rejoin the room later.'); 373 373 } else { 374 374 $body[] = pht( 375 - 'This user will be able to rejoin the room later.'); 375 + 'They will be able to rejoin the room later.'); 376 376 } 377 377 } else { 378 378 if ($is_self) { ··· 387 387 } 388 388 } else { 389 389 $body[] = pht( 390 - 'This user will not be able to rejoin the room unless invited '. 390 + 'They will not be able to rejoin the room unless invited '. 391 391 'again.'); 392 392 } 393 393 }