summaryrefslogtreecommitdiffstatshomepage
path: root/core/includes
diff options
context:
space:
mode:
Diffstat (limited to 'core/includes')
-rw-r--r--core/includes/errors.inc2
-rw-r--r--core/includes/form.inc2
2 files changed, 2 insertions, 2 deletions
diff --git a/core/includes/errors.inc b/core/includes/errors.inc
index 4bf4fade14ca..b9d520252abe 100644
--- a/core/includes/errors.inc
+++ b/core/includes/errors.inc
@@ -260,7 +260,7 @@ function _drupal_log_error($error, $fatal = FALSE) {
// We fallback to a maintenance page at this point, because the page generation
// itself can generate errors.
// Should not translate the string to avoid errors producing more errors.
- $message = 'The website encountered an unexpected error. Please try again later.' . '<br />' . $message;
+ $message = 'The website encountered an unexpected error. Try again later.' . '<br />' . $message;
if ($is_installer) {
// install_display_output() prints the output and ends script execution.
diff --git a/core/includes/form.inc b/core/includes/form.inc
index 2aabd2f6dc73..d3aeb4577ec5 100644
--- a/core/includes/form.inc
+++ b/core/includes/form.inc
@@ -939,7 +939,7 @@ function batch_process($redirect = NULL, Url $url = NULL, $redirect_callback = N
$query_options['op'] = 'finished';
$error_url->setOption('query', $query_options);
- $batch['error_message'] = t('Please continue to <a href=":error_url">the error page</a>', [':error_url' => $error_url->toString(TRUE)->getGeneratedUrl()]);
+ $batch['error_message'] = t('Continue to <a href=":error_url">the error page</a>', [':error_url' => $error_url->toString(TRUE)->getGeneratedUrl()]);
// Clear the way for the redirection to the batch processing page, by
// saving and unsetting the 'destination', if there is any.