1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-09-20 09:18:48 +02: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:
Ricky Elrod 2013-01-09 08:33:54 -08:00 committed by epriestley
parent bc2db90f61
commit abee691bc1

View file

@ -16,8 +16,8 @@ final class PhabricatorDifferentialConfigOptions
$this->newOption('differential.show-host-field', 'bool', false)
->setBoolOptions(
array(
pht('Disable "Host" Fields'),
pht('Show "Host" Fields'),
pht('Disable "Host" Fields'),
))
->setSummary(pht('Show or hide the "Host" and "Path" fields.'))
->setDescription(
@ -32,8 +32,8 @@ final class PhabricatorDifferentialConfigOptions
$this->newOption('differential.show-test-plan-field', 'bool', true)
->setBoolOptions(
array(
pht('Hide "Test Plan" Field'),
pht('Show "Test Plan" Field'),
pht('Hide "Test Plan" Field'),
))
->setSummary(pht('Show or hide the "Test Plan" field.'))
->setDescription(
@ -47,8 +47,8 @@ final class PhabricatorDifferentialConfigOptions
$this->newOption('differential.enable-email-accept', 'bool', false)
->setBoolOptions(
array(
pht('Disable Email "!accept" Action'),
pht('Enable Email "!accept" Action'),
pht('Disable Email "!accept" Action'),
))
->setSummary(pht('Enable or disable "!accept" action via email.'))
->setDescription(