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

Add a pirate translation

Summary: Basic Pirate, mostly Maniphest

Test Plan: Play lots with Maniphest

Reviewers: epriestley

Reviewed By: epriestley

Subscribers: Korvin

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

+67
+2
src/__phutil_library_map__.php
··· 2749 2749 'PhabricatorPhurlURLTransactionComment' => 'applications/phurl/storage/PhabricatorPhurlURLTransactionComment.php', 2750 2750 'PhabricatorPhurlURLTransactionQuery' => 'applications/phurl/query/PhabricatorPhurlURLTransactionQuery.php', 2751 2751 'PhabricatorPhurlURLViewController' => 'applications/phurl/controller/PhabricatorPhurlURLViewController.php', 2752 + 'PhabricatorPirateEnglishTranslation' => 'infrastructure/internationalization/translation/PhabricatorPirateEnglishTranslation.php', 2752 2753 'PhabricatorPlatformSite' => 'aphront/site/PhabricatorPlatformSite.php', 2753 2754 'PhabricatorPolicies' => 'applications/policy/constants/PhabricatorPolicies.php', 2754 2755 'PhabricatorPolicy' => 'applications/policy/storage/PhabricatorPolicy.php', ··· 7014 7015 'PhabricatorPhurlURLTransactionComment' => 'PhabricatorApplicationTransactionComment', 7015 7016 'PhabricatorPhurlURLTransactionQuery' => 'PhabricatorApplicationTransactionQuery', 7016 7017 'PhabricatorPhurlURLViewController' => 'PhabricatorPhurlController', 7018 + 'PhabricatorPirateEnglishTranslation' => 'PhutilTranslation', 7017 7019 'PhabricatorPlatformSite' => 'PhabricatorSite', 7018 7020 'PhabricatorPolicies' => 'PhabricatorPolicyConstants', 7019 7021 'PhabricatorPolicy' => array(
+65
src/infrastructure/internationalization/translation/PhabricatorPirateEnglishTranslation.php
··· 1 + <?php 2 + 3 + final class PhabricatorPirateEnglishTranslation 4 + extends PhutilTranslation { 5 + 6 + public function getLocaleCode() { 7 + return 'en_P*'; 8 + } 9 + 10 + protected function getTranslations() { 11 + return array( 12 + 'Search' => 'Scour', 13 + 'Review Code' => 'Inspect Riggins', 14 + 'Tasks and Bugs' => 'Bilge rats', 15 + 'Cancel' => 'Belay', 16 + 'Advanced Search' => 'Scour Hard', 17 + 'No search results.' => 'We be finding nothin.', 18 + 'Send' => 'Aye!', 19 + 'Partial' => 'Parrtial', 20 + 'Upload' => 'Hoist', 21 + 'Partial Upload' => 'Parrtial Hoist', 22 + 'Submit' => 'Aye!', 23 + 'Create' => 'Make Sail', 24 + 'Okay' => 'Ahoy!', 25 + 'Edit Query' => 'Overhaul Query', 26 + 'Hide Query' => 'Furl Query', 27 + 'Execute Query' => 'Quarter Query', 28 + 'Wiki' => 'Sea Log', 29 + 'Blog' => 'Capn\'s Tales', 30 + 'Add Action...' => 'Be Addin\' an Action...', 31 + 'Change Subscribers' => 'Change Spies', 32 + 'Change Projects' => 'Change Prrojects', 33 + 'Change Priority' => 'Change Priarrrity', 34 + 'Change Status' => 'Change Ye Status', 35 + 'Assign / Claim' => 'Arrsign / Stake Claim', 36 + 'Prototype' => 'Ramshackle', 37 + 'Continue' => 'Set Sail', 38 + 'Recent Activity' => 'Recent Plunderin\'s', 39 + 'Browse and Audit Commits' => 'Inspect ye Work of Yore', 40 + 'Upcoming Events' => 'Upcoming Pillages', 41 + 'Get Organized' => 'Straighten yer gig', 42 + 'Host and Browse Repositories' => 'Hide ye Treasures', 43 + 'Chat with Others' => 'Parley with yer Mates', 44 + 'Review Recent Activity' => 'Spy ye Freshest Bottles', 45 + 'Comment' => 'Scrawl', 46 + 'Actions' => 'Actions! Arrr!', 47 + 'Title' => 'Ye Olde Title', 48 + 'Assigned To' => 'Matey Assigned', 49 + 'Status' => 'Ye Status', 50 + 'Priority' => 'Priarrrity', 51 + 'Description' => 'Splainin\'', 52 + 'Visible To' => 'Bein\' Spied By', 53 + 'Editable By' => 'Plunderable By', 54 + 'Subscribers' => 'Spies', 55 + 'Projects' => 'Prrojects', 56 + '%s added a comment.' => '%s scrawled.', 57 + '%s edited the task description.' => 58 + 'Capn %s be stakin\' a claim on this here task.', 59 + '%s claimed this task.' => 60 + 'Capn %s be updatin\' ye task\'s splainin.', 61 + '%s created this task.' => 62 + 'Capn %s be the one creatin\' this here task.', 63 + ); 64 + } 65 + }