@recaptime-dev's working patches + fork for Phorge, a community fork of Phabricator. (Upstream dev and stable branches are at upstream/main and upstream/stable respectively.) hq.recaptime.dev/wiki/Phorge
phorge phabricator
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

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

+9 -1
+1 -1
src/applications/config/check/PhabricatorSetupCheckExtraConfig.php
··· 65 65 } 66 66 67 67 $message = $message."\n\n".pht( 68 - "This configuration value is defined in in these %d ". 68 + "This configuration value is defined in these %d ". 69 69 "configuration source(s): %s.", 70 70 count($found), 71 71 implode(', ', $found));
+8
src/infrastructure/internationalization/PhabricatorBaseEnglishTranslation.php
··· 304 304 '%d rejection(s)' => array('%d rejection', '%d rejections'), 305 305 '%d update(s)' => array('%d update', '%d updates'), 306 306 307 + 'This configuration value is defined in these %d '. 308 + 'configuration source(s): %s.' => array( 309 + 'This configuration value is defined in this '. 310 + 'configuration source: %2$s.', 311 + 'This configuration value is defined in these %d '. 312 + 'configuration sources: %s.', 313 + ), 314 + 307 315 ); 308 316 } 309 317