i18nsync_help($section, $arg)
contributions/i18n/i18nsync/i18nsync.module, line 21
Implementation of hook_help().
<?php
function i18nsync_help($section, $arg) {
switch ($section) {
case 'admin/help#i18nsync' :
$output = '<p>'.t('This module synchronizes content taxonomy and fields accross translations:').'</p>';
$output .= '<p>'.t('First you need to select which fields should be synchronized. Then, after a node has been updated, all enabled vocabularies and fields will be synchronized as follows:').'</p>';
$output .= '<ul>';
$output .= '<li>'.t('All the node fields selected for synchronization will be set to the same value for all translations').'</li>';
$output .= '<li>'.t('For multilingual vocabularies, the terms for all translations will be replaced by the translations of the original node terms.').'</li>';
$output .= '<li>'.t('For other vocabularies, the terms will be just copied over to all the translations.');
$output .= '</ul>';
$output .= '<p><strong>'.t('Note that permissions are not checked for each node so if someone can edit a node and it is set to synchronize, all the translations will be synchronized anyway.').'</strong></p>';
$output .= '<p>'.t('To enable synchronization check content type options to select which fields to synchronize for each node type').'</p>';
$output .= '<p>'.t('The list of available fields for synchronization will include some standard node fields and all CCK fields. You can add more fields to the list in a configuration variable. See README.txt for how to do it.').'</p>';
$output .= '<p>'. t('For more information please read the <a href="@i18n">on-line help pages</a>.', array('@i18n' =>'http://drupal.org/node/31631')) .'</p>';
return $output;
}
}
?>