1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-09-20 17:28:51 +02:00

Fix a typo in message and translate it

Test Plan: /config/issue/config.unknown.auth.password-auth-enabled/

Reviewers: epriestley

Reviewed By: epriestley

CC: aran, Korvin

Differential Revision: https://secure.phabricator.com/D6322
This commit is contained in:
Jakub Vrana 2013-06-28 09:40:40 -07:00
parent 0529acd05b
commit 9cc6e87172
2 changed files with 9 additions and 1 deletions

View file

@ -65,7 +65,7 @@ final class PhabricatorSetupCheckExtraConfig extends PhabricatorSetupCheck {
}
$message = $message."\n\n".pht(
"This configuration value is defined in in these %d ".
"This configuration value is defined in these %d ".
"configuration source(s): %s.",
count($found),
implode(', ', $found));

View file

@ -304,6 +304,14 @@ abstract class PhabricatorBaseEnglishTranslation
'%d rejection(s)' => array('%d rejection', '%d rejections'),
'%d update(s)' => array('%d update', '%d updates'),
'This configuration value is defined in these %d '.
'configuration source(s): %s.' => array(
'This configuration value is defined in this '.
'configuration source: %2$s.',
'This configuration value is defined in these %d '.
'configuration sources: %s.',
),
);
}