diff --git a/core/includes/install.core.inc b/core/includes/install.core.inc index 9159f71..cd29ec2 100644 --- a/core/includes/install.core.inc +++ b/core/includes/install.core.inc @@ -1646,7 +1646,7 @@ function install_select_language_form($form, &$form_state, $files = array()) { ), ); $form['help']['text'] = array( - '#markup' => '

Translations will be downloaded from the Drupal Translation website. ' . + '#markup' => '

Translations will be downloaded from the Drupal translation website. ' . 'If you do not want this, select English.

', ); } diff --git a/core/modules/locale/lib/Drupal/locale/Form/LocaleSettingsForm.php b/core/modules/locale/lib/Drupal/locale/Form/LocaleSettingsForm.php index 7710f20..e745c39 100644 --- a/core/modules/locale/lib/Drupal/locale/Form/LocaleSettingsForm.php +++ b/core/modules/locale/lib/Drupal/locale/Form/LocaleSettingsForm.php @@ -56,7 +56,7 @@ public function buildForm(array $form, array &$form_state) { '#title' => t('Translation source'), '#default_value' => $config->get('translation.use_source'), '#options' => array( - LOCALE_TRANSLATION_USE_SOURCE_REMOTE_AND_LOCAL => t('Drupal translation server and local files'), + LOCALE_TRANSLATION_USE_SOURCE_REMOTE_AND_LOCAL => t('Drupal translation website and local files'), LOCALE_TRANSLATION_USE_SOURCE_LOCAL => t('Local files only'), ), '#description' => t('The source of translation files for automatic interface translation.') . ' ' . $description, diff --git a/core/modules/locale/locale.module b/core/modules/locale/locale.module index 30f134e..c8ae6d1 100644 --- a/core/modules/locale/locale.module +++ b/core/modules/locale/locale.module @@ -140,7 +140,7 @@ function locale_help($path, $arg) { $output .= '
' . t('Translating interface text') . '
'; $output .= '
' . t('Translations of text in the Drupal interface may be provided by:'); $output .= '
'; @@ -156,7 +156,7 @@ function locale_help($path, $arg) { case 'admin/config/regional/translate/import': $output = '

' . t('Translation files are automatically downloaded and imported when languages are added, or when modules or themes are enabled.', array('@language' => url('admin/config/regional/language'))). '

'; - $output .= '

' . t('This page allows translators to manually import translated strings contained in a Gettext Portable Object (.po) file. Manual import may be used for customized translations or for the translation of custom modules and themes. To customize translations you can download a translation file from the Drupal translation server or export translations from the site, customize the translations using a Gettext translation editor, and import the result using this page.', array('@url' => 'http://localize.drupal.org', '@export' => url('admin/config/regional/translate/export'))) . '

'; + $output .= '

' . t('This page allows translators to manually import translated strings contained in a Gettext Portable Object (.po) file. Manual import may be used for customized translations or for the translation of custom modules and themes. To customize translations you can download a translation file from the Drupal translation website or export translations from the site, customize the translations using a Gettext translation editor, and import the result using this page.', array('@url' => 'http://localize.drupal.org', '@export' => url('admin/config/regional/translate/export'))) . '

'; $output .= '

' . t('Note that importing large .po files may take several minutes.') . '

'; return $output;