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

jose reyero’s picture

Status: Needs review » Active
jose reyero’s picture

Status: Active » Postponed
jose reyero’s picture

Status: Postponed » Closed (fixed)

I think this doesn't apply anymore