Changeset View
Changeset View
Standalone View
Standalone View
src/applications/settings/setting/PhabricatorPronounSetting.php
| <?php | <?php | ||||
| final class PhabricatorPronounSetting | final class PhabricatorPronounSetting | ||||
| extends PhabricatorSelectSetting { | extends PhabricatorSelectSetting { | ||||
| const SETTINGKEY = 'pronoun'; | const SETTINGKEY = 'pronoun'; | ||||
| public function getSettingName() { | public function getSettingName() { | ||||
| return pht('Pronoun'); | return pht('Pronoun'); | ||||
| } | } | ||||
| public function getSettingPanelKey() { | public function getSettingPanelKey() { | ||||
| return PhabricatorAccountSettingsPanel::PANELKEY; | return PhabricatorLanguageSettingsPanel::PANELKEY; | ||||
| } | } | ||||
| protected function getSettingOrder() { | protected function getSettingOrder() { | ||||
| return 200; | return 200; | ||||
| } | } | ||||
| protected function getControlInstructions() { | protected function getControlInstructions() { | ||||
| return pht('Choose the pronoun you prefer.'); | return pht('Choose the pronoun you prefer.'); | ||||
| Show All 25 Lines | |||||