diff --git a/core/modules/locale/locale.module b/core/modules/locale/locale.module index a664c9b..380c7fb 100644 --- a/core/modules/locale/locale.module +++ b/core/modules/locale/locale.module @@ -137,19 +137,15 @@ function locale_help($path, $arg) { case 'admin/help#locale': $output = ''; $output .= '

' . t('About') . '

'; - $output .= '

' . t('The Interface Translation module allows you to translate interface text in different languages, and to switch between them for the display of interface text. For more information, see the online documentation for the Interface Translation module.', array('!doc-url' => 'http://drupal.org/documentation/modules/locale/')) . '

'; + $output .= '

' . t('The Interface Translation module allows you to translate interface text into different languages, and to switch between them for the display of interface text. The Interface Translation module uses functionalities provided by the Language module. For more information, see the online documentation for the Interface Translation module.', array('!doc-url' => 'https://drupal.org/documentation/modules/locale/', '!language' => \Drupal::url('help.page', array('name' => 'language')))) . '

'; $output .= '

' . t('Uses') . '

'; $output .= '
'; - $output .= '
' . t('Checking the translation status') . '
'; - $output .= '
' . t('You can check how much of the interface on your site is translated in which language on the Languages page.', array('!languages' => \Drupal::url('language.admin_overview'))) . '
'; $output .= '
' . t('Importing translation files') . '
'; - $output .= '
' . t('Translation files with translated interface text are imported automatically when languages are added on the Languages page, or when modules or themes are enabled. These translations are obtained from the Drupal translation server. Although modules and themes may not be fully translated in all languages, new translations become available frequently. You can specify whether and how often to check for translation file updates and whether to overwrite existing translations on the Settings page. You can also manually import a translation file on the Import page.', array('!import' => \Drupal::url('locale.translate_import'), '!locale-settings' => \Drupal::url('locale.settings'), '!languages' => \Drupal::url('language.admin_overview'), '!server' => 'http://localize.drupal.org')) . '
'; - $output .= '
' . t('Translating individual text elements') . '
'; - $output .= '
' . t('You can translate individual text elements (strings) directly on the User interface translation page, or download the currently used translation file for a specific language on the Export page. Once you have edited the translation file, you can then import it again on the Import page.', array('!translate' => \Drupal::url('locale.translate_page'), '!export' => \Drupal::url('locale.translate_export'), '!import' => \Drupal::url('locale.translate_import'))) . '
'; - $output .= '
' . t('Detecting and selecting the interface languages ') . '
'; - $output .= '
' . t('On the Detection and Selection page, you can set methods by which the site selects the interface language. For more information, see the help page of the Language module.', array('!detection' => \Drupal::url('language.negotiation'), '!language-help' => \Drupal::url('help.page', array('name' => 'language')))) . '
'; - $output .= '
' . t('Displaying the langugage switcher') . '
'; - $output .= '
' . t('You can place a block with a Language switcher on the Block layout page to allow users to switch between different interface languages.', array('!blocks' => \Drupal::url('block.admin_display'))) . '
'; + $output .= '
' . t('Translation files with translated interface text are imported automatically when languages are added on the Languages page, or when modules or themes are enabled. These translations are obtained from the Drupal translation server. Although modules and themes may not be fully translated in all languages, new translations become available frequently. You can specify whether and how often to check for translation file updates and whether to overwrite existing translations on the Settings page. You can also manually import a translation file on the Import page.', array('!import' => \Drupal::url('locale.translate_import'), '!locale-settings' => \Drupal::url('locale.settings'), '!languages' => \Drupal::url('language.admin_overview'), '!server' => 'https://localize.drupal.org')) . '
'; + $output .= '
' . t('Checking the translation status') . '
'; + $output .= '
' . t('You can check how much of the interface on your site is translated into which language on the Languages page. On the Available translation updates page, you can check whether interface translation updates are available on the Drupal translation server.', array('!languages' => \Drupal::url('language.admin_overview'), '!translation-updates' => \Drupal::url('locale.translate_status'), '!server' => 'https://localize.drupal.org')) . '
'; + $output .= '
' . t('Translating individual text elements') . '
'; + $output .= '
' . t('You can translate individual text elements (strings) directly on the User interface translation page, or download the currently-used translation file for a specific language on the Export page. Once you have edited the translation file, you can then import it again on the Import page.', array('!translate' => \Drupal::url('locale.translate_page'), '!export' => \Drupal::url('locale.translate_export'), '!import' => \Drupal::url('locale.translate_import'))) . '
'; $output .= '
'; return $output;