Closed (fixed)
Project:
Internationalization
Version:
master
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
30 Aug 2005 at 16:55 UTC
Updated:
2 Feb 2007 at 22:30 UTC
I installed i18n and flexinode from cvs this week (drupal cvs as well). Created english and german pages, works fine.
After making 2 flexinode types, the i18n settings page showed 2 entries called "flexinode". Activating 1 of them aktivates both. The respective flexinode type dont show the translation tab.
After digging in DB and code I made following change in the admin section of i18n:
foreach (node_list() as $node => $type) {
/* ^^^^^^^^^ insert stuff above */
$subform.=form_checkbox(t($node), 'i18n_node_'.$node, 1, variable_get('i18n_node_'.$node, 0));
}
It now works fine, selectively allowing to activate translation per flexinode type.
Comments
Comment #1
jose reyero commentedComment #2
jose reyero commentedPlease see http://drupal.org/node/37855
Comment #3
jose reyero commentedI think this doesn't apply anymore