Active
Project:
LangsAtOnce Create node with translations
Version:
6.x-1.2-beta1
Component:
Code
Priority:
Critical
Category:
Feature request
Assigned:
Issue tags:
Reporter:
Created:
3 Mar 2009 at 21:27 UTC
Updated:
3 Mar 2009 at 21:27 UTC
While creating node,, if node being created is selected as natural language, other than listing, prevents adding other languages.
Workaround is
First one is hard to implement, thus the second workaround is to change modules/translations.module at line 78 there is
function _translation_tab_access($node) {
return !empty($node->language) && translation_supported_type($node->type) && node_access('view', $node) && user_access('translate content');
}
change remove the "!empty($node->language) && " condition. the final view should:
function _translation_tab_access($node) {
return translation_supported_type($node->type) && node_access('view', $node) && user_access('translate content');
}