Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
freebsd
GitHub Repository: freebsd/phabricator
Path: blob/master/src/infrastructure/internationalization/translation/PhabricatorPirateEnglishTranslation.php
12241 views
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
'Cap\'n %s be updatin\' ye task\'s splainin\'.',
59
'%s claimed this task.' =>
60
'Cap\'n %s be stakin\' a claim on this here task.',
61
'%s created this task.' =>
62
'Cap\'n %s be the one creatin\' this here task.',
63
);
64
}
65
}
66
67