diff --git a/core/modules/comment/comment.module b/core/modules/comment/comment.module index 9895b1f..c3be059 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 9fa4ac2..6d0c1ea 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 f51c2cb..0724650 100644 --- a/core/modules/translation_entity/translation_entity.module +++ b/core/modules/translation_entity/translation_entity.module @@ -25,7 +25,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') . '
'; @@ -146,7 +146,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,