I had several issues generating the POT file.

Line 39 replace :

        $items[] = array('path' => $path, 'title' => t($vocabulary->name),

by :

        $items[] = array('path' => $path, 'title' => $vocabulary->name,

Line 57 replace :

          $items[] = array('path' => $path, 'title' => t($term->name),

by :

          $items[] = array('path' => $path, 'title' => $term->name,

Line 91 replace :

      '#title' => t('Show "%vocab" in menu', array('%vocab' => t($vocabulary->name))),

by :

      '#title' => t('Show "%vocab" in menu', array('%vocab' => $vocabulary->name)),

Line 165 replace :

                menu_set_location(array(array('path' => $path, 'title' => t($term->name)), array('path' => 'node/'. $node->nid, 'title' => $node->title)));

by :

                menu_set_location(array(array('path' => $path, 'title' => $term->name), array('path' => 'node/'. $node->nid, 'title' => $node->title)));

Finaly, the module file should be in UNIX format to avoid the end of line abusive \r character.

Attached is the fr.po file.
It is up to date with v1.17.2.1 dated 11-08-06.

CommentFileSizeAuthor
fr_41.po3.44 KBJérôme

Comments

brmassa’s picture

Status: Active » Closed (fixed)

Guys,

im a new maintainer and i just launched the new version of the module. it now has this feature.

regards,

massa