mirror of
https://we.phorge.it/source/phorge.git
synced 2025-01-29 16:08:22 +01:00
19 lines
273 B
PHP
19 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();
|
||
|
}
|
||
|
|
||
|
}
|