Select the types of activity you want to include in your feed.
@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
···4747 } else {
4848 $warning = pht(
4949 'Are you completely sure you really want to permanently destroy '.
5050- 'all storage for Phabricator data on host "%s"? This operation '.
5050+ 'all storage for %s data on host "%s"? This operation '.
5151 'can not be undone and your data will not be recoverable if '.
5252 'you proceed.',
5353+ PlatformSymbols::getPlatformServerName(),
5354 $host_display);
54555556 echo tsprintf(
···161161 throw new PhutilArgumentUsageException(
162162 pht(
163163 'Database "%s" is unknown. This script can only dump '.
164164- 'databases known to the current version of Phabricator. '.
164164+ 'databases known to the current version of this software. '.
165165 'Valid databases are: %s.',
166166 $filter,
167167 implode(', ', array_keys($internal_names))));
···4646 phutil_console_wrap(
4747 pht(
4848 'Before running storage upgrades, you should take down the '.
4949- 'Phabricator web interface and stop any running Phabricator '.
5050- 'daemons (you can disable this warning with %s).',
4949+ 'web interface and stop any running daemons (you can disable '.
5050+ 'this warning with %s).',
5151 '--force')));
52525353 if (!phutil_console_confirm(pht('Are you ready to continue?'))) {
···47474848 throw new PhutilArgumentUsageException(
4949 pht(
5050- 'Phabricator is configured in cluster mode, with multiple database '.
5050+ 'This server is configured in cluster mode, with multiple database '.
5151 'hosts. Use "--host" to specify which host you want to operate on.'));
5252 }
5353···9898 } else {
9999 throw new PhutilArgumentUsageException(
100100 pht(
101101- 'Phabricator is currently in read-only mode. Use --force to '.
101101+ 'This server is currently in read-only mode. Use --force to '.
102102 'override this mode.'));
103103 }
104104 }
···189189 "You can exit this workflow, update MySQL now, and then run this ".
190190 "workflow again. This is recommended, but may cause a lot of downtime ".
191191 "right now.\n\n".
192192- "You can exit this workflow, continue using Phabricator without ".
192192+ "You can exit this workflow, continue using this software without ".
193193 "applying adjustments, update MySQL at a later date, and then run ".
194194 "this workflow again. This is also a good approach, and will let you ".
195195 "delay downtime until later.\n\n".
···826826 $message = array();
827827 if ($all_surplus) {
828828 $message[] = pht(
829829- 'You have surplus schemata (extra tables or columns which Phabricator '.
830830- 'does not expect). For information on resolving these '.
829829+ 'You have surplus schemata (extra tables or columns which this '.
830830+ 'software does not expect). For information on resolving these '.
831831 'issues, see the "Surplus Schemata" section in the "Managing Storage '.
832832 'Adjustments" article in the documentation.');
833833 } else if ($all_access) {
···844844 $message[] = pht(
845845 'Some of these errors are caused by access control problems. '.
846846 'The user you are connecting with does not have permission to see '.
847847- 'all of the database or tables that Phabricator uses. You need to '.
847847+ 'all of the database or tables that this software uses. You need to '.
848848 'GRANT the user more permission, or use a different user.');
849849 }
850850851851 if ($any_surplus) {
852852 $message[] = pht(
853853 'Some of these errors are caused by surplus schemata (extra '.
854854- 'tables or columns which Phabricator does not expect). These are '.
854854+ 'tables or columns which this software does not expect). These are '.
855855 'not serious. For information on resolving these issues, see the '.
856856 '"Surplus Schemata" section in the "Managing Storage Adjustments" '.
857857 'article in the documentation.');
858858 }
859859860860 $message[] = pht(
861861- 'If you are not developing Phabricator itself, report this issue to '.
862862- 'the upstream.');
861861+ 'If you are not developing %s itself, report this issue to '.
862862+ 'the upstream.',
863863+ PlatformSymbols::getPlatformServerName());
863864864865 $message[] = pht(
865865- 'If you are developing Phabricator, these errors usually indicate '.
866866+ 'If you are developing %s, these errors usually indicate '.
866867 'that your schema specifications do not agree with the schemata your '.
867867- 'code actually builds.');
868868+ 'code actually builds.',
869869+ PlatformSymbols::getPlatformServerName());
868870 }
869871 $message = implode("\n\n", $message);
870872
···307307 throw new PhabricatorPasswordHasherUnavailableException(
308308 pht(
309309 'Attempting to compare a password saved with the "%s" hash. No such '.
310310- 'hasher is known to Phabricator.',
310310+ 'hasher is known.',
311311 $name));
312312 }
313313
+1-1
src/view/page/PhabricatorStandardPageView.php
···276276 'doc_name' => pht('See Documentation'),
277277 'doc_href' => $doc_href,
278278 'message' => pht(
279279- 'Phabricator thinks you are using %s, but your '.
279279+ 'This server thinks you are using %s, but your '.
280280 'client is convinced that it is using %s. This is a serious '.
281281 'misconfiguration with subtle, but significant, consequences.',
282282 $server_protocol, $client_protocol),