Active
Project:
Popups: Add and Reference
Version:
6.x-1.0
Component:
User interface
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
8 Jun 2009 at 12:25 UTC
Updated:
8 Jun 2009 at 12:25 UTC
User can not translate new node creation URL, because it is hard coded instead using t() function. String 97 of popups_reference.module:
$form[$key]['#suffix'] = '
';
It should be the following:
$form[$key]['#suffix'] = '
';
The same bug is in line 139:
- $links[] = l("Add $name", $path, $options);
+ $links[] = l(t('Add') ." $name", $path, $options);