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

Adds ALL CAPS language.

Summary: Adds an ALL CAPs language, requires changes from libphutil as well.

Test Plan: Turn on AC, get caps back. Turn it back to English, stuff went away.

Reviewers: epriestley, btrahan, vrana

Reviewed By: vrana

CC: aran, Korvin

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

+20
+2
src/__phutil_library_map__.php
··· 592 592 'PhabricatorActionListExample' => 'applications/uiexample/examples/PhabricatorActionListExample.php', 593 593 'PhabricatorActionListView' => 'view/layout/PhabricatorActionListView.php', 594 594 'PhabricatorActionView' => 'view/layout/PhabricatorActionView.php', 595 + 'PhabricatorAllCapsTranslation' => 'infrastructure/internationalization/PhabricatorAllCapsTranslation.php', 595 596 'PhabricatorAnchorView' => 'view/layout/PhabricatorAnchorView.php', 596 597 'PhabricatorApplication' => 'applications/base/PhabricatorApplication.php', 597 598 'PhabricatorApplicationApplications' => 'applications/meta/application/PhabricatorApplicationApplications.php', ··· 1988 1989 'PhabricatorActionListExample' => 'PhabricatorUIExample', 1989 1990 'PhabricatorActionListView' => 'AphrontView', 1990 1991 'PhabricatorActionView' => 'AphrontView', 1992 + 'PhabricatorAllCapsTranslation' => 'PhabricatorTranslation', 1991 1993 'PhabricatorAnchorView' => 'AphrontView', 1992 1994 'PhabricatorApplicationApplications' => 'PhabricatorApplication', 1993 1995 'PhabricatorApplicationAudit' => 'PhabricatorApplication',
+18
src/infrastructure/internationalization/PhabricatorAllCapsTranslation.php
··· 1 + <?php 2 + 3 + final class PhabricatorAllCapsTranslation 4 + extends PhabricatorTranslation { 5 + 6 + final public function getLanguage() { 7 + return 'en-ac'; 8 + } 9 + 10 + public function getName() { 11 + return 'All Caps'; 12 + } 13 + 14 + public function getTranslations() { 15 + return array(); 16 + } 17 + 18 + }