2013-01-05 01:22:52 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
final class PhabricatorTranslationsConfigOptions
|
|
|
|
extends PhabricatorApplicationConfigOptions {
|
|
|
|
|
|
|
|
public function getName() {
|
2014-06-09 20:36:49 +02:00
|
|
|
return pht('Translations');
|
2013-01-05 01:22:52 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
public function getDescription() {
|
2014-06-09 20:36:49 +02:00
|
|
|
return pht('Options relating to translations.');
|
2013-01-05 01:22:52 +01:00
|
|
|
}
|
|
|
|
|
2015-02-02 19:17:25 +01:00
|
|
|
public function getFontIcon() {
|
|
|
|
return 'fa-globe';
|
|
|
|
}
|
|
|
|
|
2015-02-09 22:10:56 +01:00
|
|
|
public function getGroup() {
|
|
|
|
return 'core';
|
|
|
|
}
|
|
|
|
|
2013-01-05 01:22:52 +01:00
|
|
|
public function getOptions() {
|
|
|
|
return array(
|
|
|
|
$this->newOption('translation.override', 'wild', array())
|
2014-06-09 20:36:49 +02:00
|
|
|
->setSummary(pht('Override translations.'))
|
2013-01-05 01:22:52 +01:00
|
|
|
->setDescription(
|
|
|
|
pht(
|
2015-05-22 09:27:56 +02:00
|
|
|
"You can use '%s' if you don't want to create a full translation ".
|
|
|
|
"to give users an option for switching to it and you just want to ".
|
|
|
|
"override some strings in the default translation.",
|
|
|
|
'translation.override'))
|
2013-01-05 01:22:52 +01:00
|
|
|
->addExample(
|
|
|
|
'{"some string": "my alternative"}',
|
|
|
|
pht('Valid Setting')),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|