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

Change text ADD_CC and REMOVE_CC actions

Summary: Fixes T8559

Test Plan: ran phab locally, saw text changes

Reviewers: lpriestley, #blessed_reviewers, epriestley

Reviewed By: #blessed_reviewers, epriestley

Subscribers: epriestley

Maniphest Tasks: T8559

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

authored by

Eitan Adler and committed by
epriestley
42170ab1 db9fc369

+5 -5
+1 -1
src/applications/audit/constants/PhabricatorAuditActionConstants.php
··· 19 19 self::ACCEPT => pht("Accept Commit \xE2\x9C\x94"), 20 20 self::RESIGN => pht('Resign from Audit'), 21 21 self::CLOSE => pht('Close Audit'), 22 - self::ADD_CCS => pht('Add CCs'), 22 + self::ADD_CCS => pht('Add Subscribers'), 23 23 self::ADD_AUDITORS => pht('Add Auditors'), 24 24 ); 25 25
+4 -4
src/applications/herald/adapter/HeraldAdapter.php
··· 850 850 case HeraldRuleTypeConfig::RULE_TYPE_OBJECT: 851 851 $standard = array( 852 852 self::ACTION_NOTHING => pht('Do nothing'), 853 - self::ACTION_ADD_CC => pht('Add emails to CC'), 854 - self::ACTION_REMOVE_CC => pht('Remove emails from CC'), 853 + self::ACTION_ADD_CC => pht('Add Subscribers'), 854 + self::ACTION_REMOVE_CC => pht('Remove Subscribers'), 855 855 self::ACTION_EMAIL => pht('Send an email to'), 856 856 self::ACTION_AUDIT => pht('Trigger an Audit by'), 857 857 self::ACTION_FLAG => pht('Mark with flag'), ··· 868 868 case HeraldRuleTypeConfig::RULE_TYPE_PERSONAL: 869 869 $standard = array( 870 870 self::ACTION_NOTHING => pht('Do nothing'), 871 - self::ACTION_ADD_CC => pht('Add me to CC'), 872 - self::ACTION_REMOVE_CC => pht('Remove me from CC'), 871 + self::ACTION_ADD_CC => pht('Add me as a subscriber'), 872 + self::ACTION_REMOVE_CC => pht('Remove me as a subscriber'), 873 873 self::ACTION_EMAIL => pht('Send me an email'), 874 874 self::ACTION_AUDIT => pht('Trigger an Audit by me'), 875 875 self::ACTION_FLAG => pht('Mark with flag'),