summaryrefslogtreecommitdiff
path: root/lib/VNDB/Handler/Tags.pm
diff options
context:
space:
mode:
authorQCyph <dev@lived.nl>2011-08-30 11:26:08 +0200
committerYorhel <git@yorhel.nl>2011-08-30 11:31:10 +0200
commit186d3caa8533707ed10c2e20880e41d4fff111a9 (patch)
tree8eddefb219971cd29df8e62a4adc600c4ccc4f74 /lib/VNDB/Handler/Tags.pm
parenta48becbf5eb4f77c670d19948559c815f095ed1c (diff)
Changed "remove"- and "add"-like words to a single lang.txt entry
Diffstat (limited to 'lib/VNDB/Handler/Tags.pm')
-rw-r--r--lib/VNDB/Handler/Tags.pm6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/VNDB/Handler/Tags.pm b/lib/VNDB/Handler/Tags.pm
index 3d698fc3..39388a30 100644
--- a/lib/VNDB/Handler/Tags.pm
+++ b/lib/VNDB/Handler/Tags.pm
@@ -390,7 +390,7 @@ sub taglinks {
if($f->{u}) {
my $o = $self->dbUserGet(uid => $f->{u})->[0];
li;
- txt '['; a href => $url->(u=>0), mt '_taglink_fil_remove'; txt '] ';
+ txt '['; a href => $url->(u=>0), mt '_js_remove'; txt '] ';
txt mt '_taglink_fil_user'; txt ' ';
a href => "/u$o->{id}", $o->{username};
end;
@@ -398,7 +398,7 @@ sub taglinks {
if($f->{t}) {
my $o = $self->dbTagGet(id => $f->{t})->[0];
li;
- txt '['; a href => $url->(t=>0), mt '_taglink_fil_remove'; txt '] ';
+ txt '['; a href => $url->(t=>0), mt '_js_remove'; txt '] ';
txt mt '_taglink_fil_tag'; txt ' ';
a href => "/g$o->{id}", $o->{name};
end;
@@ -406,7 +406,7 @@ sub taglinks {
if($f->{v}) {
my $o = $self->dbVNGet(id => $f->{v})->[0];
li;
- txt '['; a href => $url->(v=>0), mt '_taglink_fil_remove'; txt '] ';
+ txt '['; a href => $url->(v=>0), mt '_js_remove'; txt '] ';
txt mt '_taglink_fil_vn'; txt ' ';
a href => "/v$o->{id}", $o->{title};
end;