diff --git a/core/includes/install.core.inc b/core/includes/install.core.inc
index 7291f47..a040cd9 100644
--- a/core/includes/install.core.inc
+++ b/core/includes/install.core.inc
@@ -2344,15 +2344,15 @@ function install_check_translations($install_state) {
if (!$online) {
$requirements['online'] = array(
'title' => t('Internet'),
- 'value' => t('The translation server is offline.'),
+ 'value' => t('The translation website is offline.'),
'severity' => REQUIREMENT_ERROR,
- 'description' => t('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 !server_url.', array('!server_url' => $server_url)),
+ 'description' => t('The installer requires to contact the translation website to download a translation file. Check your internet connection and verify that your website can reach the translation website at !server_url.', array('!server_url' => $server_url)),
);
}
else {
$requirements['online'] = array(
'title' => t('Internet'),
- 'value' => t('The translation server is online.'),
+ 'value' => t('The translation website is online.'),
);
// If translation file is not found at the translation server, throw an
// error.
@@ -2361,7 +2361,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 website. Choose a different language or select English and translate your website later.', array('%language' => $language, '!url' => check_url($_SERVER['SCRIPT_NAME']))),
);
}
else {
diff --git a/core/modules/locale/locale.install b/core/modules/locale/locale.install
index c55e203..ea79bd4 100644
--- a/core/modules/locale/locale.install
+++ b/core/modules/locale/locale.install
@@ -260,7 +260,7 @@ function locale_schema() {
'default' => '',
),
'server_pattern' => array(
- 'description' => 'Pattern of path and name of the gettext file at the translation server.',
+ 'description' => 'Pattern of path and name of the gettext file at the translation website.',
'type' => 'varchar',
'length' => 255,
'not null' => TRUE,
@@ -824,7 +824,7 @@ function locale_update_8011() {
'default' => '',
),
'server_pattern' => array(
- 'description' => 'Pattern of path and name of the gettext file at the translation server.',
+ 'description' => 'Pattern of path and name of the gettext file at the translation website.',
'type' => 'varchar',
'length' => 255,
'not null' => TRUE,