mirror of
https://we.phorge.it/source/phorge.git
synced 2024-12-03 04:02:43 +01:00
10 lines
177 B
PHP
10 lines
177 B
PHP
|
<?php
|
||
|
|
||
|
abstract class PhabricatorTranslation {
|
||
|
|
||
|
abstract public function getLanguage();
|
||
|
abstract public function getName();
|
||
|
abstract public function getTranslations();
|
||
|
|
||
|
}
|