From cf8d7da292d2666997734625bd66248fff7dcd8a Mon Sep 17 00:00:00 2001 From: epriestley Date: Thu, 17 Oct 2013 10:48:44 -0700 Subject: [PATCH] Add some missing non-context translations Summary: We're missing some strings here. Test Plan: {F71857} Reviewers: btrahan Reviewed By: btrahan CC: aran Differential Revision: https://secure.phabricator.com/D7340 --- .../maniphest/storage/ManiphestTransaction.php | 2 +- .../PhabricatorBaseEnglishTranslation.php | 17 +++++++++++++++++ 2 files changed, 18 insertions(+), 1 deletion(-) diff --git a/src/applications/maniphest/storage/ManiphestTransaction.php b/src/applications/maniphest/storage/ManiphestTransaction.php index 76ecc2cc61..568b2903b8 100644 --- a/src/applications/maniphest/storage/ManiphestTransaction.php +++ b/src/applications/maniphest/storage/ManiphestTransaction.php @@ -528,7 +528,7 @@ final class ManiphestTransaction $this->renderHandleList($added)); } else if ($removed && !$added) { return pht( - '%s removed %d project(s) to %s: %s', + '%s removed %d project(s) from %s: %s', $this->renderHandleLink($author_phid), count($removed), $this->renderHandleLink($object_phid), diff --git a/src/infrastructure/internationalization/PhabricatorBaseEnglishTranslation.php b/src/infrastructure/internationalization/PhabricatorBaseEnglishTranslation.php index 749c159626..5164e7d923 100644 --- a/src/infrastructure/internationalization/PhabricatorBaseEnglishTranslation.php +++ b/src/infrastructure/internationalization/PhabricatorBaseEnglishTranslation.php @@ -300,6 +300,23 @@ abstract class PhabricatorBaseEnglishTranslation ), ), + '%s changed project(s) of %s, added %d: %s; removed %d: %s' => + '%s changed projects of %s, added: %4$s; removed: %6$s', + + '%s added %d project(s) to %s: %s' => array( + array( + '%s added a project to %3$s: %4$s', + '%s added projects to %3$s: %4$s', + ), + ), + + '%s removed %d project(s) from %s: %s' => array( + array( + '%s removed a project from %3$s: %4$s', + '%s removed projects from %3$s: %4$s', + ), + ), + '%s edited voting user(s), added %d: %s; removed %d: %s.' => '%s edited voting users, added: %3$s; removed: %5$s',