@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.

Add CCs -> Add Subscribers

Summary: I think this is the direction the language has been moving? Maybe this will train me that "CCs" are called "Subscribers". (I actually don't love this wording change, but consistency is good?)

Test Plan: {F163255}

Reviewers: epriestley, #blessed_reviewers

Reviewed By: epriestley, #blessed_reviewers

Subscribers: epriestley, Korvin

Differential Revision: https://secure.phabricator.com/D9367

authored by

Ben Alpert and committed by
epriestley
09d306b5 2264c2b4

+2 -2
+1 -1
src/applications/differential/constants/DifferentialAction.php
··· 113 113 self::ACTION_RECLAIM => pht('Reclaim Revision'), 114 114 self::ACTION_RESIGN => pht('Resign as Reviewer'), 115 115 self::ACTION_ADDREVIEWERS => pht('Add Reviewers'), 116 - self::ACTION_ADDCCS => pht('Add CCs'), 116 + self::ACTION_ADDCCS => pht('Add Subscribers'), 117 117 self::ACTION_CLOSE => pht('Close Revision'), 118 118 self::ACTION_CLAIM => pht('Commandeer Revision'), 119 119 self::ACTION_REOPEN => pht('Reopen'),
+1 -1
src/applications/differential/view/DifferentialAddCommentView.php
··· 91 91 ->setDisableBehavior(true)) 92 92 ->appendChild( 93 93 id(new AphrontFormTokenizerControl()) 94 - ->setLabel(pht('Add CCs')) 94 + ->setLabel(pht('Add Subscribers')) 95 95 ->setName('ccs') 96 96 ->setControlID('add-ccs') 97 97 ->setControlStyle($enable_ccs ? null : 'display: none')