Skip to content
Snippets Groups Projects
Commit 7e4ef325 authored by Gábor Hojtsy's avatar Gábor Hojtsy
Browse files

Reported at http://groups.drupal.org/node/7843 by kkaefer: t() was used in...

Reported at http://groups.drupal.org/node/7843 by kkaefer: t() was used in install.php in place of st()
parent 44413341
No related branches found
No related tags found
2 merge requests!7452Issue #1797438. HTML5 validation is preventing form submit and not fully...,!789Issue #3210310: Adjust Database API to remove deprecated Drupal 9 code in Drupal 10
...@@ -637,8 +637,8 @@ function install_tasks($profile, $task) { ...@@ -637,8 +637,8 @@ function install_tasks($profile, $task) {
$batch = array( $batch = array(
'operations' => $operations, 'operations' => $operations,
'finished' => '_install_profile_batch_finished', 'finished' => '_install_profile_batch_finished',
'title' => t('Installing @drupal', array('@drupal' => drupal_install_profile_name())), 'title' => st('Installing @drupal', array('@drupal' => drupal_install_profile_name())),
'error_message' => t('The installation has encountered an error.'), 'error_message' => st('The installation has encountered an error.'),
); );
// Start a batch, switch to 'profile-install-batch' task. We need to // Start a batch, switch to 'profile-install-batch' task. We need to
// set the variable here, because batch_process() redirects. // set the variable here, because batch_process() redirects.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment