Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
freebsd
GitHub Repository: freebsd/phabricator
Path: blob/master/src/infrastructure/internationalization/translation/PhabricatorVeryWowEnglishTranslation.php
12241 views
1
<?php
2
3
final class PhabricatorVeryWowEnglishTranslation
4
extends PhutilTranslation {
5
6
public function getLocaleCode() {
7
return 'en_W*';
8
}
9
10
protected function getTranslations() {
11
return array(
12
'Search' => 'Search! Wow!',
13
'Review Code' => 'Wow! Code Review! Wow!',
14
'Tasks and Bugs' => 'Much Bug! Very Bad!',
15
'Cancel' => 'Nope!',
16
'Advanced Search' => 'Much Search!',
17
'No search results.' => 'No results! Wow!',
18
'Send' => 'Bark Bark!',
19
'Partial' => 'Pawtial',
20
'Partial Upload' => 'Pawtial Upload',
21
'Submit' => 'Such Send!',
22
'Create Task' => 'Very Create Task',
23
'Create' => 'Very Create',
24
'Host and Browse Repositories' => 'Many Repositories',
25
'Okay' => 'Wow!',
26
'Save Preferences' => 'Make Such Saves',
27
'Edit Query' => 'Play With Query',
28
'Hide Query' => 'Bury Query',
29
'Execute Query' => 'Throw the Query',
30
'Wiki' => 'Wow-ki',
31
'Get Organized' => 'Such Organized',
32
'Explore More Applications' => 'Browse For More Wow',
33
'Prototype' => 'Chew Toy',
34
'Continue' => 'Bark And Run',
35
'Countdown to Events' => 'To the Moon!',
36
'English (Very Wow)' => 'Such English',
37
);
38
}
39
}
40
41