mirror of
https://we.phorge.it/source/phorge.git
synced 2025-01-28 07:28:20 +01:00
3f544ba3f5
Summary: Adds an ALL CAPs language, requires changes from libphutil as well. Test Plan: Turn on AC, get caps back. Turn it back to English, stuff went away. Reviewers: epriestley, btrahan, vrana Reviewed By: vrana CC: aran, Korvin Differential Revision: https://secure.phabricator.com/D4627
18 lines
273 B
PHP
18 lines
273 B
PHP
<?php
|
|
|
|
final class PhabricatorAllCapsTranslation
|
|
extends PhabricatorTranslation {
|
|
|
|
final public function getLanguage() {
|
|
return 'en-ac';
|
|
}
|
|
|
|
public function getName() {
|
|
return 'All Caps';
|
|
}
|
|
|
|
public function getTranslations() {
|
|
return array();
|
|
}
|
|
|
|
}
|