This CodeLet redirects the user to translate the node in the specified lanaguge. This will reduce the efforts to click on the translation tab and can enhance to transalte the nodes in all the enabled langauges, one-by-one.

CodeLet
<?php//$Id$/** * @file *  * Redirect to translation form of a node *  * @author DrupalD <http://twitter.com/DrupalD> *//** * Implementaion of hook_nodeapi *  * @param unknown_type $node * @param unknown_type $op * @param unknown_type $a3 * @param unknown_type $a4 * @author DrupalD <http://twitter.com/DrupalD> */function autotranslate_node_nodeapi(&$node, $op, $a3 = NULL, $a4 = NULL) {  switch ($op) {    case 'insert':      drupal_goto("node/add/page", "translation=". $node->nid ."&language=en");      break;  } }?>
DrupalD
Enroll to Drupal 10 Training