$output='<p>Follow these steps to translate Drupal into your language:</p>';
$output.='<ol>';
$output.='<li>Download a translation from the <a href="http://localize.drupal.org/download">translation server</a>.</li>';
$output.='<li>Place it into the following directory:<pre>'.$directory.'</pre></li>';
$output.='</ol>';
$output.='<p>For more information on installing Drupal in different languages, visit the <a href="http://drupal.org/localize" target="_blank">drupal.org handbook page</a>.</p>';
$output.='<p>How should the installation continue?</p>';
$output.='<ul>';
$output.='<li><a href="'.check_url(drupal_current_script_url(array('translate'=>NULL))).'">Reload the language selection page after adding translations</a></li>';
$output.='<li><a href="'.check_url(drupal_current_script_url(array('langcode'=>'en','translate'=>NULL))).'">Continue installation in English</a></li>';
'#markup'=>'<p><a href="'.check_url(drupal_current_script_url(array('translate'=>'true'))).'">'.st('Learn how to install Drupal in other languages').'</a></p>',
'#markup'=>'<p>Translations will be downloaded from the <a href="http://localize.drupal.org">Drupal Translation website</a>. '.
'If you do not want this, select <em>English</em> and continue the installation. For more information, see the <a href="http://drupal.org/documentation/install">online handbook</a>.</p>',
);
}
$form['actions']=array('#type'=>'actions');
...
...
@@ -1442,6 +1415,112 @@ function install_select_language_form($form, &$form_state, $files) {
return$form;
}
/**
* Download a translation file for the selected langaguage.
*
* @param array $install_state
* An array of information about the current installation state.
*
* @return string
* A themed status report, or an exception if there are requirement errors.
* Upon successfull download the page is reloaded and no output is returned.
'value'=>st('The translations directory does not exist.'),
'severity'=>REQUIREMENT_ERROR,
'description'=>st('The installer requires that you create a translations directory as part of the installation process. Create the directory %translations_directory . More details about installing Drupal are available in <a href="@install_txt">INSTALL.txt</a>.',array('%translations_directory'=>$translations_directory,'@install_txt'=>base_path().'core/INSTALL.txt')),
'value'=>st('The translations directory is not readable.'),
'severity'=>REQUIREMENT_ERROR,
'description'=>st('The installer requires read permissions to %translations_directory at all times. If you are unsure how to grant file permissions, consult the <a href="@handbook_url">online handbook</a>.',array('%translations_directory'=>$translations_directory,'@handbook_url'=>'http://drupal.org/server-permissions')),
);
}
// If translations directory is not writable, throw an error.
'value'=>st('The translations directory is not writable.'),
'severity'=>REQUIREMENT_ERROR,
'description'=>st('The installer requires write permissions to %translations_directory during the installation process. If you are unsure how to grant file permissions, consult the <a href="@handbook_url">online handbook</a>.',array('%translations_directory'=>$translations_directory,'@handbook_url'=>'http://drupal.org/server-permissions')),
'value'=>st('The translations directory is not executable.'),
'severity'=>REQUIREMENT_ERROR,
'description'=>st('The installer requires execute permissions to %translations_directory during the installation process. If you are unsure how to grant file permissions, consult the <a href="@handbook_url">online handbook</a>.',array('%translations_directory'=>$translations_directory,'@handbook_url'=>'http://drupal.org/server-permissions')),
);
}
}
// If the translations server can not be contacted, throw an error.
if(!$online){
$requirements['online']=array(
'title'=>st('Internet'),
'value'=>st('The translation server is offline.'),
'severity'=>REQUIREMENT_ERROR,
'description'=>st('The installer requires to contact the translation server to download a translation file. Check your internet connection and verify that your website can reach the translation server at <a href="!server_url">!server_url</a>.',array('!server_url'=>$server_url)),
);
}
else{
$requirements['online']=array(
'title'=>st('Internet'),
'value'=>st('The translation server is online.'),
);
// If translation file is not found at the translation server, throw an
// error.
if(!$translation_available){
$requirements['translation available']=array(
'title'=>st('Translation'),
'value'=>st('The %language translation is not available.',array('%language'=>$language)),
'severity'=>REQUIREMENT_ERROR,
'description'=>st('The %language translation file is not available at the translation server. <a href="!url">Choose a different language</a> or select English and translate your website later.',array('%language'=>$language,'!url'=>check_url($_SERVER['SCRIPT_NAME']))),
);
}
else{
$requirements['translation available']=array(
'title'=>st('Translation'),
'value'=>st('The %language translation is available.',array('%language'=>$language)),
'value'=>st('The %language translation could not be downloaded.',array('%language'=>$language)),
'severity'=>REQUIREMENT_ERROR,
'description'=>st('The %language translation file could not be downloaded. <a href="!url">Choose a different language</a> or select English and translate your website later.',array('%language'=>$language,'!url'=>check_url($_SERVER['SCRIPT_NAME']))),
);
}
}
return$requirements;
}
/**
* Checks installation requirements and reports any errors.
*/
...
...
@@ -1858,6 +2125,56 @@ function install_check_requirements($install_state) {
return$requirements;
}
/**
* Displays installation requirements.
*
* @param array $install_state
* An array of information about the current installation state.
* @param array $requirements
* An array of requirements, in the same format as is returned by
* hook_requirements().
*
* @return
* A themed status report, or an exception if there are requirement errors.
* If there are only requirement warnings, a themed status report is shown
* initially, but the user is allowed to bypass it by providing 'continue=1'
* in the URL. Otherwise, no output is returned, so that the next task can be