commit b41c14c8f1a4025c977e20435c1ecd4ddda639b7 Author: Erik Stielstra Date: Wed Jun 26 23:25:51 2013 +0100 #26 diff --git a/core/includes/install.core.inc b/core/includes/install.core.inc index 3dfd0e0..89259db 100644 --- a/core/includes/install.core.inc +++ b/core/includes/install.core.inc @@ -2171,7 +2171,7 @@ function install_check_translations($install_state) { 'title' => t('Internet'), 'value' => t('Failed to connect.'), 'severity' => REQUIREMENT_ERROR, - 'description' => t('The installer failed to connect to the translation server. Verify your internet connection and verify that your website can contact the translation server at !server_url.', array('!server_url' => $server_url)), + 'description' => t('The installer failed to connect to the translation server. Verify your internet connection and verify that your website can contact the translation server at !server_url. You can also install in English and get your language later.', array('!server_url' => $server_url, '!url' => check_url($_SERVER['SCRIPT_NAME']))), ); } else { @@ -2187,7 +2187,7 @@ function install_check_translations($install_state) { 'title' => t('Internet'), 'value' => t('Failed to contact the translation server.'), 'severity' => REQUIREMENT_ERROR, - 'description' => t('The installer failed to connect to the translation server. Verify that your website can contact the translation server at !server_url. This fault may be caused by firewall or proxy settings.', array('!server_url' => $server_url)), + 'description' => t('The installer failed to connect to the translation server. Verify that your website can contact the translation server at !server_url. This fault may be caused by firewall or proxy settings. You can also install in English and get your language later.', array('!server_url' => $server_url, '!url' => check_url($_SERVER['SCRIPT_NAME']))), ); } else { @@ -2202,7 +2202,7 @@ function install_check_translations($install_state) { 'title' => t('Translation'), 'value' => t('The %language translation is not available.', array('%language' => $language)), 'severity' => REQUIREMENT_ERROR, - 'description' => t('The %language translation file is not available at the translation server. Choose a different language or select English and translate your website later.', array('%language' => $language, '!url' => check_url($_SERVER['SCRIPT_NAME']))), + 'description' => t('The %language translation file is not available at the translation server. Choose a different language or select English and get your language later.', array('%language' => $language, '!url' => check_url($_SERVER['SCRIPT_NAME']))), ); } else {