diff --git a/core/modules/locale/locale.module b/core/modules/locale/locale.module index 68a4d1d..fcdb71d 100644 --- a/core/modules/locale/locale.module +++ b/core/modules/locale/locale.module @@ -136,16 +136,19 @@ function locale_help($path, $arg) { case 'admin/help#locale': $output = ''; $output .= '

' . t('About') . '

'; - $output .= '

' . t('The Locale module allows your Drupal site to be presented in languages other than the default English, and to be multilingual. The Locale module works by maintaining a database of translations, and examining text as it is about to be displayed. When a translation of the text is available in the language to be displayed, the translation is displayed rather than the original text. When a translation is unavailable, the original text is displayed, and then stored for review by a translator. For more information, see the online handbook entry for Locale module.', array('@locale' => 'http://drupal.org/documentation/modules/locale/')) . '

'; + $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('Uses') . '

'; $output .= '
'; - $output .= '
' . t('Translating interface text') . '
'; - $output .= '
' . t('Translations of text in the Drupal interface may be provided by:'); - $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 .= '
'; return $output;