diff --git a/core/modules/translation_entity/translation_entity.module b/core/modules/translation_entity/translation_entity.module index 0e74893..f8f5b07 100644 --- a/core/modules/translation_entity/translation_entity.module +++ b/core/modules/translation_entity/translation_entity.module @@ -20,17 +20,18 @@ function translation_entity_help($path, $arg) { $output .= '

' . t('About') . '

'; $output .= '

' . t('The Entity Translation module allows you to create and manage translations for your Drupal site content. You can specify which elements need to be translated at the content-type level for content items and comments, at the vocabulary level for taxonomy terms, and at the site level for user accounts. Other modules may provide additional elements that can be translated. For more information, see the online handbook entry for Entity Translation.', array('!url' => 'http://drupal.org/documentation/modules/entity_translation')) . '

'; $output .= '

' . t('Uses') . '

'; - $output .= '

' . t('To be able to create and manage translations you need to enable at least two languages and enable translation for any element whose content you wish to translate.', array('!url' => url('admin/config/regional/language'))) . '

'; $output .= '
'; $output .= '
' . t('Enabling translation') . '
'; - $output .= '
' . t('To enable translation for a certain Content type go to the related administration page, locate the Language settings, uncheck Hide language selector and check Enable translation. To enable translation for Comments just switch to the Comment settings in the same page. You can configure Taxonomy terms the samy way by accessing the Vocabulary administration pages in the Taxonomy section. Similarly User accounts can be enabled for translations in the Account settings page.', array('!url' => 'admin/config/people/accounts')); - $output .= '

' . t('If you need to specify more precisely what should be translated, you can configure it at the field level by changing the Global field settings in the related administration pages.') . '

'; + $output .= '
' . '

' . t('Before you can translate content add another language so that at least two languages are enabled.', array('!url' => url('admin/config/regional/language'))) . '

'; + $output .= '

' . t('After adding languages, enable translation for any content you wish to translate. To enable translation for a certain Content type, edit the content type and in the Language settings, uncheck Hide language selector and check Enable translation. To enable translation for Comments switch to the Comment settings in the content type edit page and check Enable translation You enable translation of Taxonomy terms in a Vocabulary by editing the Vocabulary and checking Enable translation in the Terms settings. Similarly translation for User accounts can be enabled from the Account settings page, in the Language settings.', array('@content-type' => url('admin/structure/types'), '@vocabulary' => url('admin/structure/taxonomy'), '@account' => url('admin/config/people/accounts'))) . '

'; + $output .= '

' . t('If you need to specify more precisely what should be translated, you can configure it at the field level by editing each field and then enabling or disabling translation in each field\'s Global settings.') . '

'; $output .= '
' . t('Translating content') . '
'; - $output .= '
' . t('After enabling a site for translation you can create a new content of the configured type or edit an existing one and assign it a language. Once this is done you will see a Translations item that will give you access to an overview of the translation status for the current content. From here you can create new translations and editing or deleting existing ones. This process is similar for every translatable element on your site, such as taxonomy terms, comments or user accounts.') . '
'; - $output .= '
' . t('Source language') . '
'; - $output .= '
' . t('If you enable more than two languages and you create at least one content translation, when creating subsequent translations you will be able to choose which language translate from through the Source language selector. If you choose a different language from the default one, all the translation form elements will be populated with values in the specified language.') . '
'; + $output .= '
' . t('After enabling translation you can create a new content of the configured type or edit existing content and assign it a language. Once this is done you will see a Translations tab or link that will give you access to 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('The source language can be changed. If you enable more than two languages and you create at least one content translation, when creating subsequent translations you will be able to choose which language to translate from through the Source language selector. If you choose a different language from the default one, all the translation form elements will be repopulated with the values from the specified source.') . '

'; $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 other 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 .= '
' . t('If editing content in one language requires that translated versions also be updated to reflect the change, use the Flag other translations as outdated check box to mark the translations as outdated and in need of revision.') . '
'; + $output .= '
' . t('Translation permissions') . '
'; + $output .= '
' . t('Enabling the Entity Translation module makes a basic set of permissions available. Additional permissions are made available after translation is enabled for each type of content.', array('@permissions' => url('admin/people/permissions#module-translation_entity'))) . '
'; $output .= '
'; return $output; }