I am running a site with multilingual support.

Then I get a fieldset on the node edit form called "Translation Settings" where I can Flag translations as outdated.

However, this field set does not appear on the manage form page.

Can someone provide any guidelines how to write a support for this module?

Thanks

Comments

stefan81’s picture

this particular fieldset is defined in "translation.module" in the function "translation_form_alter(&$form, $form_state, $form_id)" and looks like this:

      $form['translation'] = array(
        '#type' => 'fieldset',
        '#title' => t('Translation settings'),
        '#access' => user_access('translate content'),
        '#collapsible' => TRUE,
        '#collapsed' => !$node->translate,
        '#tree' => TRUE,
        '#weight' => 30,
      );

Can I add the ['translation'] fieldset somewhere in the nodeformcols module so that it is recognized?

asherry’s picture

Issue summary: View changes
Status: Active » Closed (won't fix)

Updating all 6.x tickets as they are no longer supported. Feel free to re-open, I will commit any needed patches still.