Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
freebsd
GitHub Repository: freebsd/phabricator
Path: blob/master/src/infrastructure/internationalization/translation/PhabricatorBritishEnglishTranslation.php
12241 views
1
<?php
2
3
final class PhabricatorBritishEnglishTranslation
4
extends PhutilTranslation {
5
6
public function getLocaleCode() {
7
return 'en_GB';
8
}
9
10
protected function getTranslations() {
11
return array(
12
"%s set this project's color to %s." =>
13
"%s set this project's colour to %s.",
14
'Basic Colors' =>
15
'Basic Colours',
16
'Choose Icon and Color...' =>
17
'Choose Icon and Colour...',
18
'Choose Background Color' =>
19
'Choose Background Colour',
20
'Color' => 'Colour',
21
'Colors' => 'Colours',
22
'Colors and Transforms' => 'Colours and Transforms',
23
'Configure the Phabricator UI, including colors.' =>
24
'Configure the Phabricator UI, including colours.',
25
'Flag Color' => 'Flag Colour',
26
'Sets the color of the main header.' =>
27
'Sets the colour of the main header.',
28
);
29
}
30
31
}
32
33