mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-25 16:22:43 +01:00
Remove product literal strings in "pht()", part 25
Summary: Ref T13658. Test Plan: Static checks only. Maniphest Tasks: T13658 Differential Revision: https://secure.phabricator.com/D21791
This commit is contained in:
parent
bc7f87591f
commit
27b512e284
7 changed files with 21 additions and 18 deletions
|
@ -47,9 +47,10 @@ final class PhabricatorStorageManagementDestroyWorkflow
|
|||
} else {
|
||||
$warning = pht(
|
||||
'Are you completely sure you really want to permanently destroy '.
|
||||
'all storage for Phabricator data on host "%s"? This operation '.
|
||||
'all storage for %s data on host "%s"? This operation '.
|
||||
'can not be undone and your data will not be recoverable if '.
|
||||
'you proceed.',
|
||||
PlatformSymbols::getPlatformServerName(),
|
||||
$host_display);
|
||||
|
||||
echo tsprintf(
|
||||
|
|
|
@ -161,7 +161,7 @@ final class PhabricatorStorageManagementDumpWorkflow
|
|||
throw new PhutilArgumentUsageException(
|
||||
pht(
|
||||
'Database "%s" is unknown. This script can only dump '.
|
||||
'databases known to the current version of Phabricator. '.
|
||||
'databases known to the current version of this software. '.
|
||||
'Valid databases are: %s.',
|
||||
$filter,
|
||||
implode(', ', array_keys($internal_names))));
|
||||
|
|
|
@ -10,7 +10,7 @@ final class PhabricatorStorageManagementQuickstartWorkflow
|
|||
->setSynopsis(
|
||||
pht(
|
||||
'Generate a new quickstart database dump. This command is mostly '.
|
||||
'useful when developing Phabricator.'))
|
||||
'useful for internal development.'))
|
||||
->setArguments(
|
||||
array(
|
||||
array(
|
||||
|
|
|
@ -46,8 +46,8 @@ final class PhabricatorStorageManagementUpgradeWorkflow
|
|||
phutil_console_wrap(
|
||||
pht(
|
||||
'Before running storage upgrades, you should take down the '.
|
||||
'Phabricator web interface and stop any running Phabricator '.
|
||||
'daemons (you can disable this warning with %s).',
|
||||
'web interface and stop any running daemons (you can disable '.
|
||||
'this warning with %s).',
|
||||
'--force')));
|
||||
|
||||
if (!phutil_console_confirm(pht('Are you ready to continue?'))) {
|
||||
|
|
|
@ -47,7 +47,7 @@ abstract class PhabricatorStorageManagementWorkflow
|
|||
|
||||
throw new PhutilArgumentUsageException(
|
||||
pht(
|
||||
'Phabricator is configured in cluster mode, with multiple database '.
|
||||
'This server is configured in cluster mode, with multiple database '.
|
||||
'hosts. Use "--host" to specify which host you want to operate on.'));
|
||||
}
|
||||
|
||||
|
@ -98,7 +98,7 @@ abstract class PhabricatorStorageManagementWorkflow
|
|||
} else {
|
||||
throw new PhutilArgumentUsageException(
|
||||
pht(
|
||||
'Phabricator is currently in read-only mode. Use --force to '.
|
||||
'This server is currently in read-only mode. Use --force to '.
|
||||
'override this mode.'));
|
||||
}
|
||||
}
|
||||
|
@ -189,7 +189,7 @@ abstract class PhabricatorStorageManagementWorkflow
|
|||
"You can exit this workflow, update MySQL now, and then run this ".
|
||||
"workflow again. This is recommended, but may cause a lot of downtime ".
|
||||
"right now.\n\n".
|
||||
"You can exit this workflow, continue using Phabricator without ".
|
||||
"You can exit this workflow, continue using this software without ".
|
||||
"applying adjustments, update MySQL at a later date, and then run ".
|
||||
"this workflow again. This is also a good approach, and will let you ".
|
||||
"delay downtime until later.\n\n".
|
||||
|
@ -826,8 +826,8 @@ abstract class PhabricatorStorageManagementWorkflow
|
|||
$message = array();
|
||||
if ($all_surplus) {
|
||||
$message[] = pht(
|
||||
'You have surplus schemata (extra tables or columns which Phabricator '.
|
||||
'does not expect). For information on resolving these '.
|
||||
'You have surplus schemata (extra tables or columns which this '.
|
||||
'software does not expect). For information on resolving these '.
|
||||
'issues, see the "Surplus Schemata" section in the "Managing Storage '.
|
||||
'Adjustments" article in the documentation.');
|
||||
} else if ($all_access) {
|
||||
|
@ -844,27 +844,29 @@ abstract class PhabricatorStorageManagementWorkflow
|
|||
$message[] = pht(
|
||||
'Some of these errors are caused by access control problems. '.
|
||||
'The user you are connecting with does not have permission to see '.
|
||||
'all of the database or tables that Phabricator uses. You need to '.
|
||||
'all of the database or tables that this software uses. You need to '.
|
||||
'GRANT the user more permission, or use a different user.');
|
||||
}
|
||||
|
||||
if ($any_surplus) {
|
||||
$message[] = pht(
|
||||
'Some of these errors are caused by surplus schemata (extra '.
|
||||
'tables or columns which Phabricator does not expect). These are '.
|
||||
'tables or columns which this software does not expect). These are '.
|
||||
'not serious. For information on resolving these issues, see the '.
|
||||
'"Surplus Schemata" section in the "Managing Storage Adjustments" '.
|
||||
'article in the documentation.');
|
||||
}
|
||||
|
||||
$message[] = pht(
|
||||
'If you are not developing Phabricator itself, report this issue to '.
|
||||
'the upstream.');
|
||||
'If you are not developing %s itself, report this issue to '.
|
||||
'the upstream.',
|
||||
PlatformSymbols::getPlatformServerName());
|
||||
|
||||
$message[] = pht(
|
||||
'If you are developing Phabricator, these errors usually indicate '.
|
||||
'If you are developing %s, these errors usually indicate '.
|
||||
'that your schema specifications do not agree with the schemata your '.
|
||||
'code actually builds.');
|
||||
'code actually builds.',
|
||||
PlatformSymbols::getPlatformServerName());
|
||||
}
|
||||
$message = implode("\n\n", $message);
|
||||
|
||||
|
|
|
@ -307,7 +307,7 @@ abstract class PhabricatorPasswordHasher extends Phobject {
|
|||
throw new PhabricatorPasswordHasherUnavailableException(
|
||||
pht(
|
||||
'Attempting to compare a password saved with the "%s" hash. No such '.
|
||||
'hasher is known to Phabricator.',
|
||||
'hasher is known.',
|
||||
$name));
|
||||
}
|
||||
|
||||
|
|
|
@ -276,7 +276,7 @@ final class PhabricatorStandardPageView extends PhabricatorBarePageView
|
|||
'doc_name' => pht('See Documentation'),
|
||||
'doc_href' => $doc_href,
|
||||
'message' => pht(
|
||||
'Phabricator thinks you are using %s, but your '.
|
||||
'This server thinks you are using %s, but your '.
|
||||
'client is convinced that it is using %s. This is a serious '.
|
||||
'misconfiguration with subtle, but significant, consequences.',
|
||||
$server_protocol, $client_protocol),
|
||||
|
|
Loading…
Reference in a new issue