@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.

Translate setup issues

Test Plan:
$ php -l PhabricatorBaseEnglishTranslation.php

Reviewers: epriestley

Reviewed By: epriestley

CC: aran, Korvin

Differential Revision: https://secure.phabricator.com/D4345

vrana 7fe5f218 3448781c

+49
+49
src/infrastructure/internationalization/PhabricatorBaseEnglishTranslation.php
··· 203 203 "Indexing %d object of type %s.", 204 204 ), 205 205 206 + 'Run these %d command(s):' => array( 207 + 'Run this %d command:', 208 + 'Run these %d commands:', 209 + ), 210 + 211 + 'Install these %d PHP extension(s):' => array( 212 + 'Install this %d PHP extension:', 213 + 'Install these %d PHP extensions:', 214 + ), 215 + 216 + 'The current Phabricator configuration has these %d value(s):' => array( 217 + 'The current Phabricator configuration has this %d value:', 218 + 'The current Phabricator configuration has these %d values:', 219 + ), 220 + 221 + 'To update these %d value(s), run these command(s) from the command line:' 222 + => array( 223 + 'To update this %d value, run this command from the command line:', 224 + 'To update these %d values, run these commands from the command line:', 225 + ), 226 + 227 + 'You can update these %d value(s) here:' => array( 228 + 'You can update this %d value here:', 229 + 'You can update these %d values here:', 230 + ), 231 + 232 + 'The current PHP configuration has these %d value(s):' => array( 233 + 'The current PHP configuration has this %d value:', 234 + 'The current PHP configuration has these %d values:', 235 + ), 236 + 237 + 'To update these %d value(s), edit your PHP configuration file.' => array( 238 + 'To update this %d value, edit your PHP configuration file.', 239 + 'To update these %d values, edit your PHP configuration file.', 240 + ), 241 + 242 + 'To update these %d value(s), edit your PHP configuration file, located '. 243 + 'here:' => array( 244 + 'To update this %d value, edit your PHP configuration file, located '. 245 + 'here:', 246 + 'To update these %d values, edit your PHP configuration file, located '. 247 + 'here:', 248 + ), 249 + 250 + 'PHP also loaded these configuration file(s):' => array( 251 + 'PHP also loaded this configuration file:', 252 + 'PHP also loaded these configuration files:', 253 + ), 254 + 206 255 ); 207 256 } 208 257