diff --git a/core/modules/locale/locale.module b/core/modules/locale/locale.module index 9cd1c755635bada732023094ee287c857b75a03f..387d0c3b7c2f1bb9499a0a82d5a6a020bf2047ae 100644 --- a/core/modules/locale/locale.module +++ b/core/modules/locale/locale.module @@ -158,6 +158,8 @@ function locale_help($route_name, RouteMatchInterface $route_match) { $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('entity.configurable_language.collection'), ':translation-updates' => \Drupal::url('locale.translate_status'), ':server' => 'https://localize.drupal.org')) . '
'; $output .= '
' . t('Translating individual strings') . '
'; $output .= '
' . t('You can translate individual strings directly on the User interface translation page, or download the currently-used translation file for a specific language on the Interface translation export page. Once you have edited the translation file, you can then import it again on the Interface translation import page.', array(':translate' => \Drupal::url('locale.translate_page'), ':export' => \Drupal::url('locale.translate_export'), ':import' => \Drupal::url('locale.translate_import'))) . '
'; + $output .= '
' . t('Overriding default English strings') . '
'; + $output .= '
' . t('If translation is enabled for English, you can override the default English interface text strings in your site with other English text strings on the User interface translation page. Translation is off by default for English, but you can turn it on by visiting the Edit language page for English from the Languages page.', array(':translate' => \Drupal::url('locale.translate_page'), ':languages' => \Drupal::url('entity.configurable_language.collection'))) . '
'; $output .= ''; return $output;