From b5bf8a8f476fe4214478fec9250e651164b0e76f Mon Sep 17 00:00:00 2001 From: Neil Drumm Date: Sun, 26 Nov 2006 02:20:01 +0000 Subject: #97824 by Gurpartap. Move enclosing elements outside of their t(). --- install.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'install.php') diff --git a/install.php b/install.php index 77b08c8b4..005cb5009 100644 --- a/install.php +++ b/install.php @@ -180,7 +180,7 @@ function install_settings_form($profile, $install_locale, $settings_file, $db_ur $form['basic_options'] = array( '#type' => 'fieldset', '#title' => st('Basic options'), - '#description' => st('

To set up your @drupal database, enter the following information.

', array('@drupal' => drupal_install_profile_name())), + '#description' => '

'. st('To set up your @drupal database, enter the following information.', array('@drupal' => drupal_install_profile_name())) .'

', ); if (count($db_types) > 1) { @@ -487,7 +487,7 @@ function install_select_locale_form($locales) { function install_no_profile_error() { drupal_maintenance_theme(); drupal_set_title(st('No profiles available')); - print theme('install_page', st('

We were unable to find any installer profiles. Installer profiles tell us what modules to enable and what schema to install in the database. A profile is necessary to continue with the installation process.

')); + print theme('install_page', '

'. st('We were unable to find any installer profiles. Installer profiles tell us what modules to enable and what schema to install in the database. A profile is necessary to continue with the installation process.') .'

'); exit; } @@ -532,7 +532,7 @@ function install_complete($profile) { // Build final page. drupal_maintenance_theme(); drupal_set_title(st('@drupal installation complete', array('@drupal' => drupal_install_profile_name()))); - $output .= st('

Congratulations, @drupal has been successfully installed.

', array('@drupal' => drupal_install_profile_name())); + $output .= '

'. st('Congratulations, @drupal has been successfully installed.', array('@drupal' => drupal_install_profile_name())) .'

'; // Show profile finalization info. $function = $profile .'_profile_final'; -- cgit v1.2.3