mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-15 19:32:40 +01:00
ae7dc8b9d2
Summary: Adds core and apps grouping to configuration options, makes it somewhat easier to browse config options. Test Plan: Set each option, review list. Breakdown is nearly 50/50 apps/core. Reviewers: btrahan, epriestley Reviewed By: epriestley Subscribers: Korvin, epriestley Differential Revision: https://secure.phabricator.com/D11722
51 lines
1.5 KiB
PHP
51 lines
1.5 KiB
PHP
<?php
|
|
|
|
final class PhabricatorTranslationsConfigOptions
|
|
extends PhabricatorApplicationConfigOptions {
|
|
|
|
public function getName() {
|
|
return pht('Translations');
|
|
}
|
|
|
|
public function getDescription() {
|
|
return pht('Options relating to translations.');
|
|
}
|
|
|
|
public function getFontIcon() {
|
|
return 'fa-globe';
|
|
}
|
|
|
|
public function getGroup() {
|
|
return 'core';
|
|
}
|
|
|
|
public function getOptions() {
|
|
return array(
|
|
$this->newOption(
|
|
'translation.provider',
|
|
'class',
|
|
'PhabricatorEnglishTranslation')
|
|
->setBaseClass('PhabricatorTranslation')
|
|
->setSummary(pht('Translation class that should be used for strings.'))
|
|
->setDescription(
|
|
pht(
|
|
'This allows customizing texts used in Phabricator. The class '.
|
|
'must extend PhabricatorTranslation.'))
|
|
->addExample('PhabricatorEnglishTranslation', pht('Valid Setting')),
|
|
// TODO: This should be dict<string,string> I think, but that doesn't
|
|
// exist yet.
|
|
$this->newOption('translation.override', 'wild', array())
|
|
->setSummary(pht('Override translations.'))
|
|
->setDescription(
|
|
pht(
|
|
"You can use 'translation.override' 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."))
|
|
->addExample(
|
|
'{"some string": "my alternative"}',
|
|
pht('Valid Setting')),
|
|
);
|
|
}
|
|
|
|
}
|