From 42170ab151a9fcfc1d3f8333b4cbeb07c060b7e6 Mon Sep 17 00:00:00 2001 From: Eitan Adler Date: Tue, 16 Jun 2015 15:32:47 -0700 Subject: [PATCH] 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 --- .../audit/constants/PhabricatorAuditActionConstants.php | 2 +- src/applications/herald/adapter/HeraldAdapter.php | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/src/applications/audit/constants/PhabricatorAuditActionConstants.php b/src/applications/audit/constants/PhabricatorAuditActionConstants.php index ca2a497aff..d323540795 100644 --- a/src/applications/audit/constants/PhabricatorAuditActionConstants.php +++ b/src/applications/audit/constants/PhabricatorAuditActionConstants.php @@ -19,7 +19,7 @@ final class PhabricatorAuditActionConstants extends Phobject { self::ACCEPT => pht("Accept Commit \xE2\x9C\x94"), self::RESIGN => pht('Resign from Audit'), self::CLOSE => pht('Close Audit'), - self::ADD_CCS => pht('Add CCs'), + self::ADD_CCS => pht('Add Subscribers'), self::ADD_AUDITORS => pht('Add Auditors'), ); diff --git a/src/applications/herald/adapter/HeraldAdapter.php b/src/applications/herald/adapter/HeraldAdapter.php index 01014adedf..cfd026f518 100644 --- a/src/applications/herald/adapter/HeraldAdapter.php +++ b/src/applications/herald/adapter/HeraldAdapter.php @@ -850,8 +850,8 @@ abstract class HeraldAdapter extends Phobject { case HeraldRuleTypeConfig::RULE_TYPE_OBJECT: $standard = array( self::ACTION_NOTHING => pht('Do nothing'), - self::ACTION_ADD_CC => pht('Add emails to CC'), - self::ACTION_REMOVE_CC => pht('Remove emails from CC'), + self::ACTION_ADD_CC => pht('Add Subscribers'), + self::ACTION_REMOVE_CC => pht('Remove Subscribers'), self::ACTION_EMAIL => pht('Send an email to'), self::ACTION_AUDIT => pht('Trigger an Audit by'), self::ACTION_FLAG => pht('Mark with flag'), @@ -868,8 +868,8 @@ abstract class HeraldAdapter extends Phobject { case HeraldRuleTypeConfig::RULE_TYPE_PERSONAL: $standard = array( self::ACTION_NOTHING => pht('Do nothing'), - self::ACTION_ADD_CC => pht('Add me to CC'), - self::ACTION_REMOVE_CC => pht('Remove me from CC'), + self::ACTION_ADD_CC => pht('Add me as a subscriber'), + self::ACTION_REMOVE_CC => pht('Remove me as a subscriber'), self::ACTION_EMAIL => pht('Send me an email'), self::ACTION_AUDIT => pht('Trigger an Audit by me'), self::ACTION_FLAG => pht('Mark with flag'),