mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 08:52:39 +01:00
Fix more boolean reversals.
Summary: Missed these in D4357. Test Plan: Meh. Reviewers: epriestley, chad Reviewed By: chad CC: aran, Korvin Maniphest Tasks: T2255 Differential Revision: https://secure.phabricator.com/D4371
This commit is contained in:
parent
bc2db90f61
commit
abee691bc1
1 changed files with 3 additions and 3 deletions
|
@ -16,8 +16,8 @@ final class PhabricatorDifferentialConfigOptions
|
||||||
$this->newOption('differential.show-host-field', 'bool', false)
|
$this->newOption('differential.show-host-field', 'bool', false)
|
||||||
->setBoolOptions(
|
->setBoolOptions(
|
||||||
array(
|
array(
|
||||||
pht('Disable "Host" Fields'),
|
|
||||||
pht('Show "Host" Fields'),
|
pht('Show "Host" Fields'),
|
||||||
|
pht('Disable "Host" Fields'),
|
||||||
))
|
))
|
||||||
->setSummary(pht('Show or hide the "Host" and "Path" fields.'))
|
->setSummary(pht('Show or hide the "Host" and "Path" fields.'))
|
||||||
->setDescription(
|
->setDescription(
|
||||||
|
@ -32,8 +32,8 @@ final class PhabricatorDifferentialConfigOptions
|
||||||
$this->newOption('differential.show-test-plan-field', 'bool', true)
|
$this->newOption('differential.show-test-plan-field', 'bool', true)
|
||||||
->setBoolOptions(
|
->setBoolOptions(
|
||||||
array(
|
array(
|
||||||
pht('Hide "Test Plan" Field'),
|
|
||||||
pht('Show "Test Plan" Field'),
|
pht('Show "Test Plan" Field'),
|
||||||
|
pht('Hide "Test Plan" Field'),
|
||||||
))
|
))
|
||||||
->setSummary(pht('Show or hide the "Test Plan" field.'))
|
->setSummary(pht('Show or hide the "Test Plan" field.'))
|
||||||
->setDescription(
|
->setDescription(
|
||||||
|
@ -47,8 +47,8 @@ final class PhabricatorDifferentialConfigOptions
|
||||||
$this->newOption('differential.enable-email-accept', 'bool', false)
|
$this->newOption('differential.enable-email-accept', 'bool', false)
|
||||||
->setBoolOptions(
|
->setBoolOptions(
|
||||||
array(
|
array(
|
||||||
pht('Disable Email "!accept" Action'),
|
|
||||||
pht('Enable Email "!accept" Action'),
|
pht('Enable Email "!accept" Action'),
|
||||||
|
pht('Disable Email "!accept" Action'),
|
||||||
))
|
))
|
||||||
->setSummary(pht('Enable or disable "!accept" action via email.'))
|
->setSummary(pht('Enable or disable "!accept" action via email.'))
|
||||||
->setDescription(
|
->setDescription(
|
||||||
|
|
Loading…
Reference in a new issue