From 325c2077ba56c2460f647d85477c37ea2e5193f2 Mon Sep 17 00:00:00 2001 From: vrana Date: Thu, 14 Jun 2012 19:01:57 -0700 Subject: [PATCH] Allow extending English translation Test Plan: Displayed home. Reviewers: epriestley Reviewed By: epriestley CC: aran, Korvin Maniphest Tasks: T1139 Differential Revision: https://secure.phabricator.com/D2759 --- src/__phutil_library_map__.php | 4 +- .../PhabricatorBaseEnglishTranslation.php | 54 +++++++++++++++++++ .../PhabricatorEnglishTranslation.php | 35 +----------- 3 files changed, 59 insertions(+), 34 deletions(-) create mode 100644 src/infrastructure/internationalization/PhabricatorBaseEnglishTranslation.php diff --git a/src/__phutil_library_map__.php b/src/__phutil_library_map__.php index 6e0c9ba95d..0999d500ea 100644 --- a/src/__phutil_library_map__.php +++ b/src/__phutil_library_map__.php @@ -550,6 +550,7 @@ phutil_register_library_map(array( 'PhabricatorAuditReplyHandler' => 'applications/audit/PhabricatorAuditReplyHandler.php', 'PhabricatorAuditStatusConstants' => 'applications/audit/constants/PhabricatorAuditStatusConstants.php', 'PhabricatorAuthController' => 'applications/auth/controller/PhabricatorAuthController.php', + 'PhabricatorBaseEnglishTranslation' => 'infrastructure/internationalization/PhabricatorBaseEnglishTranslation.php', 'PhabricatorBuiltinPatchList' => 'infrastructure/setup/sql/PhabricatorBuiltinPatchList.php', 'PhabricatorCalendarBrowseController' => 'applications/calendar/controller/PhabricatorCalendarBrowseController.php', 'PhabricatorCalendarController' => 'applications/calendar/controller/PhabricatorCalendarController.php', @@ -1550,6 +1551,7 @@ phutil_register_library_map(array( 'PhabricatorAuditPreviewController' => 'PhabricatorAuditController', 'PhabricatorAuditReplyHandler' => 'PhabricatorMailReplyHandler', 'PhabricatorAuthController' => 'PhabricatorController', + 'PhabricatorBaseEnglishTranslation' => 'PhabricatorTranslation', 'PhabricatorBuiltinPatchList' => 'PhabricatorSQLPatchList', 'PhabricatorCalendarBrowseController' => 'PhabricatorCalendarController', 'PhabricatorCalendarController' => 'PhabricatorController', @@ -1611,7 +1613,7 @@ phutil_register_library_map(array( 'PhabricatorEmailLoginController' => 'PhabricatorAuthController', 'PhabricatorEmailTokenController' => 'PhabricatorAuthController', 'PhabricatorEmailVerificationController' => 'PhabricatorPeopleController', - 'PhabricatorEnglishTranslation' => 'PhabricatorTranslation', + 'PhabricatorEnglishTranslation' => 'PhabricatorBaseEnglishTranslation', 'PhabricatorEnvTestCase' => 'PhabricatorTestCase', 'PhabricatorErrorExample' => 'PhabricatorUIExample', 'PhabricatorEvent' => 'PhutilEvent', diff --git a/src/infrastructure/internationalization/PhabricatorBaseEnglishTranslation.php b/src/infrastructure/internationalization/PhabricatorBaseEnglishTranslation.php new file mode 100644 index 0000000000..f9af4a953f --- /dev/null +++ b/src/infrastructure/internationalization/PhabricatorBaseEnglishTranslation.php @@ -0,0 +1,54 @@ + array( + 'Differential Revision', + 'Differential Revisions', + ), + 'file(s)' => array('file', 'files'), + 'Maniphest Task(s)' => array('Maniphest Task', 'Maniphest Tasks'), + + 'Please fix these errors and try again.' => array( + 'Please fix this error and try again.', + 'Please fix these errors and try again.', + ), + + '%d Error(s)' => array('%d Error', '%d Errors'), + '%d Warning(s)' => array('%d Warning', '%d Warnings'), + '%d Auto-Fix(es)' => array('%d Auto-Fix', '%d Auto-Fixes'), + '%d Advice(s)' => array('%d Advice', '%d Pieces of Advice'), + '%d Detail(s)' => array('%d Detail', '%d Details'), + + '(%d line(s))' => array('(%d line)', '(%d lines)'), + + 'COMMIT(S)' => array('COMMIT', 'COMMITS'), + + '%d line(s)' => array('%d line', '%d lines'), + ); + } + +} diff --git a/src/infrastructure/internationalization/PhabricatorEnglishTranslation.php b/src/infrastructure/internationalization/PhabricatorEnglishTranslation.php index bbfd2e078a..49ccf8ae48 100644 --- a/src/infrastructure/internationalization/PhabricatorEnglishTranslation.php +++ b/src/infrastructure/internationalization/PhabricatorEnglishTranslation.php @@ -16,42 +16,11 @@ * limitations under the License. */ -final class PhabricatorEnglishTranslation extends PhabricatorTranslation { - - public function getLanguage() { - return 'en'; - } +final class PhabricatorEnglishTranslation + extends PhabricatorBaseEnglishTranslation { public function getName() { return 'English'; } - public function getTranslations() { - return array( - 'Differential Revision(s)' => array( - 'Differential Revision', - 'Differential Revisions', - ), - 'file(s)' => array('file', 'files'), - 'Maniphest Task(s)' => array('Maniphest Task', 'Maniphest Tasks'), - - 'Please fix these errors and try again.' => array( - 'Please fix this error and try again.', - 'Please fix these errors and try again.', - ), - - '%d Error(s)' => array('%d Error', '%d Errors'), - '%d Warning(s)' => array('%d Warning', '%d Warnings'), - '%d Auto-Fix(es)' => array('%d Auto-Fix', '%d Auto-Fixes'), - '%d Advice(s)' => array('%d Advice', '%d Pieces of Advice'), - '%d Detail(s)' => array('%d Detail', '%d Details'), - - '(%d line(s))' => array('(%d line)', '(%d lines)'), - - 'COMMIT(S)' => array('COMMIT', 'COMMITS'), - - '%d line(s)' => array('%d line', '%d lines'), - ); - } - }