diff --git a/core/modules/translation_entity/translation_entity.module b/core/modules/translation_entity/translation_entity.module index fca7c4a..1ca27c7 100644 --- a/core/modules/translation_entity/translation_entity.module +++ b/core/modules/translation_entity/translation_entity.module @@ -22,7 +22,7 @@ function translation_entity_help($path, $arg) { $output .= '

' . t('Uses') . '

'; $output .= '
'; $output .= '
' . t('Enabling translation') . '
'; - $output .= '

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

'; + $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.') . '
'; @@ -38,7 +38,7 @@ function translation_entity_help($path, $arg) { case 'admin/config/regional/content-language': $output = ''; if (!language_multilingual()) { - $output .= '
' . t('Before you can translate content, there must be at least two non-system languages added on the languages administration page.', array('!url' => url('admin/config/regional/language'))); + $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'))); } return $output; }