Index: translatable.module =================================================================== RCS file: /cvs/drupal-contrib/contributions/modules/translatable/translatable.module,v retrieving revision 1.1.2.4 diff -u -p -r1.1.2.4 translatable.module --- translatable.module 22 Feb 2008 20:09:38 -0000 1.1.2.4 +++ translatable.module 9 Apr 2008 19:06:21 -0000 @@ -35,7 +35,7 @@ if (module_exists('category')) { * Implementation of hook_perm(). */ function translatable_perm() { - return array('access translatable', 'administer translatable'); + return array('access translatable'); } /** @@ -57,7 +57,7 @@ function translatable_menu($may_cache) { 'description' => t('Configure multilingual support'), 'callback' => 'drupal_get_form', 'callback arguments' => 'translatable_settings_form', - 'access' => user_access('administer translatable'), + 'access' => user_access('administer site configuration'), 'type' => MENU_NORMAL_ITEM, ); $items = array_merge($items, translatable_node_menu($may_cache)); Index: translatable.node.inc =================================================================== RCS file: /cvs/drupal-contrib/contributions/modules/translatable/translatable.node.inc,v retrieving revision 1.1.2.2 diff -u -p -r1.1.2.2 translatable.node.inc --- translatable.node.inc 20 Feb 2008 22:33:01 -0000 1.1.2.2 +++ translatable.node.inc 9 Apr 2008 19:06:36 -0000 @@ -21,7 +21,7 @@ function translatable_node_menu($may_cac 'path' => 'node/'. arg(1) .'/translations', 'title' => t('Translations'), 'callback' => 'translatable_node_node_page', - 'access' => user_access('administer translatable'), + 'access' => user_access('access translatable'), 'type' => MENU_LOCAL_TASK, 'weight' => 3, ); @@ -34,7 +34,7 @@ function translatable_node_menu($may_cac 'title' => t('Edit translation'), 'callback' => 'translatable_node_edit_translation', 'callback arguments' => array($node->type .'_node_form', $node, arg(4)), - 'access' => user_access('administer translatable') && node_access('update', $node), + 'access' => user_access('access translatable') && node_access('update', $node), 'weight' => 1, 'type' => MENU_LOCAL_TASK); } Index: translatable.object.inc =================================================================== RCS file: /cvs/drupal-contrib/contributions/modules/translatable/translatable.object.inc,v retrieving revision 1.1.2.2 diff -u -p -r1.1.2.2 translatable.object.inc --- translatable.object.inc 22 Feb 2008 20:19:38 -0000 1.1.2.2 +++ translatable.object.inc 9 Apr 2008 19:06:58 -0000 @@ -50,7 +50,7 @@ function translatable_object_menu($may_c 'path' => 'admin/content/taxonomy/edit/term/'. arg(5) .'/translations', 'title' => t('Translations'), 'callback' => 'translatable_node_node_page', - 'access' => user_access('administer translatable'), + 'access' => user_access('access translatable'), 'type' => MENU_LOCAL_TASK, 'weight' => 3, );