summaryrefslogtreecommitdiff
path: root/lib/VNDB/Handler
diff options
context:
space:
mode:
authorYorhel <git@yorhel.nl>2010-02-06 12:47:24 +0100
committerYorhel <git@yorhel.nl>2010-02-06 12:47:24 +0100
commitb547e7cd099e36d667abceac8cb61bcd725afbcf (patch)
tree50ebf4aa188004dffc359692b2d2f296d28ded7e /lib/VNDB/Handler
parent6684f559ede54899697fa54d25e2347d6c31bf7a (diff)
Handler::ULists: Fixed L10N bug with the char browser on /u+/list
Diffstat (limited to 'lib/VNDB/Handler')
-rw-r--r--lib/VNDB/Handler/ULists.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/VNDB/Handler/ULists.pm b/lib/VNDB/Handler/ULists.pm
index 9d6885ad..5abebf37 100644
--- a/lib/VNDB/Handler/ULists.pm
+++ b/lib/VNDB/Handler/ULists.pm
@@ -256,7 +256,7 @@ sub vnlist {
h1 $title;
p class => 'browseopts';
for ('all', 'a'..'z', 0) {
- a href => $url->(c => $_), $_ eq $f->{c} ? (class => 'optselected') : (), $_ ? uc $_ : '#';
+ a href => $url->(c => $_), $_ eq $f->{c} ? (class => 'optselected') : (), $_ eq 'all' ? mt('_char_all') : $_ ? uc $_ : '#';
}
end;
p class => 'browseopts';