Active
Project:
Node2Node
Version:
6.x-1.2
Component:
Code
Priority:
Minor
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
1 Jan 2009 at 23:17 UTC
Updated:
1 Jan 2009 at 23:17 UTC
There's a minor typing error in the admin settings page.
At the bottom where you can set the names of Parent and Child links. Where there's supposed to be the phrase "child links" - the text reads "parent links".
Lines #94-98, the error is in line 96:
$form['terminology']['node2node_childlinks'] = array(
'#type' => 'textfield',
'#title' => 'Parent links', <-- this should read 'Child links'
'#default_value' => variable_get('node2node_childlinks', 'Child links'),
);
Us foreigners would also appreciate better usage of t() strings, for translations :)