diff --git a/core/modules/config_translation/config_translation.module b/core/modules/config_translation/config_translation.module index 6c5496c..c3bbee9 100644 --- a/core/modules/config_translation/config_translation.module +++ b/core/modules/config_translation/config_translation.module @@ -17,18 +17,18 @@ function config_translation_help($path) { case 'admin/help#config_translation': $output = ''; $output .= '

' . t('About') . '

'; - $output .= '

' . t('The Configuration Translation module allows you to translate configuration text, for example the site name, vocabularies, menus, blocks, or date formats. It complements the Content Translation and Interface Translation modules that allow you to translate content (such as nodes, taxonomy terms, menu items, or custom blocks) and built-in interface text (such as content creation forms or administration interface text). For more information, see the online documentation for the Configuration Translation module.', array('!doc_url' => 'https://drupal.org/documentation/modules/config_translation', '!config' => \Drupal::url('help.page', array('name' => 'config')), '!locale' => \Drupal::url('help.page', array('name' => 'locale')), '!content-translation' => (\Drupal::moduleHandler()->moduleExists('content_translation')) ? \Drupal::url('help.page', array('name' => 'content_translation')) : '#')) . '

'; + $output .= '

' . t('The Configuration Translation module allows you to translate configuration text, for example the site name, vocabularies, menus, or date formats. It complements the Content Translation and Interface Translation modules that allow you to translate content (such as nodes, taxonomy terms, menu items, or custom blocks) and built-in interface text (such as content creation forms or administration interface text). For more information, see the online documentation for the Configuration Translation module.', array('!doc_url' => 'https://drupal.org/documentation/modules/config_translation', '!config' => \Drupal::url('help.page', array('name' => 'config')), '!locale' => \Drupal::url('help.page', array('name' => 'locale')), '!content-translation' => (\Drupal::moduleHandler()->moduleExists('content_translation')) ? \Drupal::url('help.page', array('name' => 'content_translation')) : '#')) . '

'; $output .= '

' . t('Uses') . '

'; $output .= '
'; $output .= '
' . t('Translating configuration text') . '
'; - $output .= '
' . t('The Configuration translation page shows a list of all configuration text that can be translated, either as indidvidual items or as lists. After you click on Translate, you are provided with a list of all languages. You can add a translation for a specific language, but also edit the text in the site\'s default language. For some configuration text items (for example for the site information), the specific translation page can also be accessed directly from their configuration pages. The translated text can contain tokens, just as the original text.', array('!translation-page' => \Drupal::url('config_translation.mapper_list'))) . '
'; + $output .= '
' . t('The Configuration translation page shows a list of all configuration text that can be translated, either as indidvidual items or as lists. After you click on Translate, you are provided with a list of all languages. You can add a translation for a specific language, but also edit the text in the site\'s default language. For some configuration text items (for example for the site information), the specific translation page can also be accessed directly from their configuration pages. Like the original text, the translated text can contain tokens.', array('!translation-page' => \Drupal::url('config_translation.mapper_list'))) . '
'; $output .= '
' . t('Translating date formats') . '
'; $output .= '
' . t('You can choose to translate date formats on the Configuration translation page. This allows you not only to translate the label text, but also to set a language-specific PHP date format.', array('!translation-page' => \Drupal::url('config_translation.mapper_list'))) . '
'; $output .= '
'; return $output; case 'admin/config/regional/config-translation': - $output = '

' . t('This page lists all configuration items on your site which have translatable text, like your site name, role names, etc.') . '

'; + $output = '

' . t('This page lists all configuration items on your site that have translatable text, like your site name, role names, etc.') . '

'; return $output; } }