mirror of
https://we.phorge.it/source/phorge.git
synced 2025-03-29 04:28:12 +01:00
Summary: Ref T7149. hue hue hue hue Test Plan: hue hue Reviewers: chad Reviewed By: chad Subscribers: epriestley Maniphest Tasks: T7149 Differential Revision: https://secure.phabricator.com/D12080
24 lines
577 B
PHP
24 lines
577 B
PHP
<?php
|
|
|
|
final class PhabricatorVeryWowEnglishTranslation
|
|
extends PhutilTranslation {
|
|
|
|
public function getLocaleCode() {
|
|
return 'en_W*';
|
|
}
|
|
|
|
protected function getTranslations() {
|
|
return array(
|
|
'Search' => 'Search! Wow!',
|
|
'Review Code' => 'Wow! Code Review! Wow!',
|
|
'Tasks and Bugs' => 'Much Bug! Very Bad!',
|
|
'Cancel' => 'Nope!',
|
|
'Advanced Search' => 'Much Search!',
|
|
'No search results.' => 'No results! Wow!',
|
|
'Send' => 'Bark Bark!',
|
|
'Partial' => 'Pawtial',
|
|
'Partial Upload' => 'Pawtial Upload',
|
|
);
|
|
}
|
|
|
|
}
|