Removing obsolete references to readme files in source code
This commit is contained in:
parent
3bcd36d5ab
commit
37c335e3cc
31 changed files with 52 additions and 94 deletions
|
@ -30,7 +30,7 @@ function i18nsync_help($path, $arg) {
|
|||
$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('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.') .'</p>';
|
||||
$output .= '<p>'. t('For more information, see the online handbook entry for <a href="@i18n">Internationalization module</a>.', array('@i18n' => 'http://drupal.org/node/133977')) .'</p>';
|
||||
return $output;
|
||||
}
|
||||
|
@ -196,7 +196,7 @@ function i18nsync_nodeapi(&$node, $op, $a3 = NULL, $a4 = NULL) {
|
|||
}
|
||||
}
|
||||
// Intentional no break.
|
||||
case 'update':
|
||||
case 'update':
|
||||
// Let's go with field synchronization.
|
||||
if (!empty($node->tnid) && ($fields = i18nsync_node_fields($node->type)) && ($translations = _i18nsync_node_translations($node, TRUE))) {
|
||||
$i18nsync = TRUE;
|
||||
|
|
Reference in a new issue