summaryrefslogtreecommitdiff
path: root/lib/VNDB/Handler/VNEdit.pm
diff options
context:
space:
mode:
authorYorhel <git@yorhel.nl>2009-10-07 14:52:59 +0200
committerYorhel <git@yorhel.nl>2009-10-07 14:54:20 +0200
commitb5d713427538b4f78d2527fb32dd58238a491025 (patch)
tree11855e78f46aae1169530ed7f747a1fa9b007d94 /lib/VNDB/Handler/VNEdit.pm
parentde09cecb62a56a9dc017876d32c07e1a51f6378d (diff)
L10N: Extracted VN relation editor
Diffstat (limited to 'lib/VNDB/Handler/VNEdit.pm')
-rw-r--r--lib/VNDB/Handler/VNEdit.pm7
1 files changed, 3 insertions, 4 deletions
diff --git a/lib/VNDB/Handler/VNEdit.pm b/lib/VNDB/Handler/VNEdit.pm
index 8430156d..75cc9002 100644
--- a/lib/VNDB/Handler/VNEdit.pm
+++ b/lib/VNDB/Handler/VNEdit.pm
@@ -193,23 +193,22 @@ sub _form {
end;
h2 mt '_vnedit_rel_add';
- # TODO: localize JS relartion selector
table;
Tr id => 'relation_new';
td class => 'tc_vn';
input type => 'text', class => 'text';
end;
td class => 'tc_rel';
- txt ' is a ';
+ txt mt('_vnedit_rel_isa').' ';
Select;
option value => $_, mt "_vnrel_$_"
for (sort { $self->{vn_relations}{$a}[0] <=> $self->{vn_relations}{$b}[0] } keys %{$self->{vn_relations}});
end;
- txt ' of';
+ txt ' '.mt '_vnedit_rel_of';
end;
td class => 'tc_title', $v ? $v->{title} : '';
td class => 'tc_add';
- a href => '#', 'add';
+ a href => '#', mt '_vnedit_rel_addbut';
end;
end;
end;