mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-15 11:22:40 +01:00
fe5cd4ca2c
Summary: Normalizes all `setFontIcon` calls to `setIcon`. Test Plan: UIExamples, Almanac, Apps list, etc. Reviewers: epriestley Reviewed By: epriestley Subscribers: Korvin, hach-que, yelirekim Differential Revision: https://secure.phabricator.com/D15129
38 lines
967 B
PHP
38 lines
967 B
PHP
<?php
|
|
|
|
final class PhabricatorTranslationsConfigOptions
|
|
extends PhabricatorApplicationConfigOptions {
|
|
|
|
public function getName() {
|
|
return pht('Translations');
|
|
}
|
|
|
|
public function getDescription() {
|
|
return pht('Options relating to translations.');
|
|
}
|
|
|
|
public function getIcon() {
|
|
return 'fa-globe';
|
|
}
|
|
|
|
public function getGroup() {
|
|
return 'core';
|
|
}
|
|
|
|
public function getOptions() {
|
|
return array(
|
|
$this->newOption('translation.override', 'wild', array())
|
|
->setSummary(pht('Override translations.'))
|
|
->setDescription(
|
|
pht(
|
|
"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'))
|
|
->addExample(
|
|
'{"some string": "my alternative"}',
|
|
pht('Valid Setting')),
|
|
);
|
|
}
|
|
|
|
}
|