Add pht() to two strings in Core settings.

Summary: See title.

Test Plan: Checked that the strings still rendered.

Reviewers: epriestley

Reviewed By: epriestley

CC: aran, Korvin

Maniphest Tasks: T2255

Differential Revision: https://secure.phabricator.com/D4327
This commit is contained in:
Ricky Elrod 2013-01-02 15:52:14 -08:00 committed by epriestley
parent 962b432bfb
commit cad546301d

View file

@ -21,7 +21,7 @@ final class PhabricatorCoreConfigOptions
"improves security by preventing cookies from being set on other ". "improves security by preventing cookies from being set on other ".
"domains, and allows daemons to send emails with links that have ". "domains, and allows daemons to send emails with links that have ".
"the correct domain.")) "the correct domain."))
->addExample('http://phabricator.example.com/', 'Valid Setting'), ->addExample('http://phabricator.example.com/', pht('Valid Setting')),
$this->newOption('phabricator.production-uri', 'string', null) $this->newOption('phabricator.production-uri', 'string', null)
->setSummary( ->setSummary(
pht("Primary install URI, for multi-environment installs.")) pht("Primary install URI, for multi-environment installs."))
@ -35,7 +35,7 @@ final class PhabricatorCoreConfigOptions
"production environment. If unset, defaults to ". "production environment. If unset, defaults to ".
"{{phabricator.base-uri}}. Most installs do not need to set ". "{{phabricator.base-uri}}. Most installs do not need to set ".
"this option.")) "this option."))
->addExample('http://phabricator.example.com/', 'Valid Setting'), ->addExample('http://phabricator.example.com/', pht('Valid Setting')),
$this->newOption('phabricator.timezone', 'string', null) $this->newOption('phabricator.timezone', 'string', null)
->setSummary( ->setSummary(
pht("The timezone Phabricator should use.")) pht("The timezone Phabricator should use."))