Closed (fixed)
Project:
Taxonomy Menu
Version:
4.7.x-1.x-dev
Component:
User interface
Priority:
Minor
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
29 Aug 2006 at 09:09 UTC
Updated:
16 Jan 2008 at 03:15 UTC
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.
Comments
Comment #1
brmassa commentedGuys,
im a new maintainer and i just launched the new version of the module. it now has this feature.
regards,
massa