diff --git a/core/modules/comment/comment.module b/core/modules/comment/comment.module index 7a1ac04103d739c9a0e1feadff45d7e8a14261e9..e309ec7f3eb2031c3ac57d940ebbcc0cf85c637c 100644 --- a/core/modules/comment/comment.module +++ b/core/modules/comment/comment.module @@ -956,7 +956,7 @@ function comment_links(Comment $comment, EntityInterface $node) { // Add translations link for translation-enabled comment bundles. if (module_exists('translation_entity') && translation_entity_translate_access($comment)) { $links['comment-translations'] = array( - 'title' => t('translations'), + 'title' => t('translate'), 'href' => 'comment/' . $comment->id() . '/translations', 'html' => TRUE, ); diff --git a/core/modules/translation/translation.module b/core/modules/translation/translation.module index 9fa4ac2151d360bcf737671fc152d812ec7af129..6d0c1ea13aace800684c96b6b72ffe33538b6a46 100644 --- a/core/modules/translation/translation.module +++ b/core/modules/translation/translation.module @@ -39,7 +39,7 @@ function translation_help($path, $arg) { $output .= '
' . t('Assigning a language to content') . '
'; $output .= '
' . t('Use the Language drop down to select the appropriate language when creating or editing content.') . '
'; $output .= '
' . t('Translating content') . '
'; - $output .= '
' . t('Users with the translate all content or translate own content permission can translate content, if the content type has been configured to allow translations. To translate content, select the Translations tab when viewing the content, select the language for which you wish to provide content, and then enter the content.') . '
'; + $output .= '
' . t('Users with the translate all content or translate own content permission can translate content, if the content type has been configured to allow translations. To translate content, select the Translate tab when viewing the content, select the language for which you wish to provide content, and then enter the content.') . '
'; $output .= '
' . t('Maintaining translations') . '
'; $output .= '
' . t('If editing content in one language requires that translated versions also be updated to reflect the change, use the Flag translations as outdated check box to mark the translations as outdated and in need of revision. Individual translations may also be marked for revision by selecting the This translation needs to be updated check box on the translation editing form.') . '
'; $output .= ''; @@ -56,7 +56,7 @@ function translation_help($path, $arg) { function translation_menu() { $items = array(); $items['node/%node/translate'] = array( - 'title' => 'Translations', + 'title' => 'Translate', 'page callback' => 'translation_node_overview', 'page arguments' => array(1), 'access callback' => '_translation_tab_access', diff --git a/core/modules/translation_entity/translation_entity.module b/core/modules/translation_entity/translation_entity.module index 78a489fb86502ebc6e304af7a213441200737e75..6f6c7405c689875d45d020fa36f977edab30ed0f 100644 --- a/core/modules/translation_entity/translation_entity.module +++ b/core/modules/translation_entity/translation_entity.module @@ -26,7 +26,7 @@ function translation_entity_help($path, $arg) { $output .= '

' . t('Before you can translate content, there must be at least two languages added on the languages administration page.', array('!url' => url('admin/config/regional/language'))) . '

'; $output .= '

' . t('After adding languages, configure translation.', array('!url' => url('admin/config/regional/content-language'))) . '

'; $output .= '
' . t('Translating content') . '
'; - $output .= '
' . t('After enabling translation you can create a new piece of content, or edit existing content and assign it a language. Then, you will see a Translations tab or link that will gives an overview of the translation status for the current content. From there, you can add translations and edit or delete existing translations. This process is similar for every translatable element on your site, such as taxonomy terms, comments or user accounts.') . '
'; + $output .= '
' . t('After enabling translation you can create a new piece of content, or edit existing content and assign it a language. Then, you will see a Translate tab or link that will gives an overview of the translation status for the current content. From there, you can add translations and edit or delete existing translations. This process is similar for every translatable element on your site, such as taxonomy terms, comments or user accounts.') . '
'; $output .= '
' . t('Changing source language') . '
'; $output .= '
' . t('When there are two or more possible source languages, selecting a Source language will repopulate the form using the specified source\'s values. For example, French is much closer to Spanish than to Chinese, so changing the French translation\'s source language to Spanish can assist translators.') . '
'; $output .= '
' . t('Maintaining translations') . '
'; @@ -147,7 +147,7 @@ function translation_entity_menu() { } $items["$path/translations"] = array( - 'title' => 'Translations', + 'title' => 'Translate', 'page callback' => 'translation_entity_overview', 'page arguments' => array($entity_position), 'type' => MENU_LOCAL_TASK,