summaryrefslogtreecommitdiff
path: root/lib/VNDB/Handler/VNPage.pm
diff options
context:
space:
mode:
authorYorhel <git@yorhel.nl>2009-09-06 16:12:16 +0200
committerYorhel <git@yorhel.nl>2009-09-06 16:12:16 +0200
commit9fa6e9b3c112a1a5539b03f021e3826df43bbe4d (patch)
treebef827149f9cf8d502a140949ad7876dcb338dbf /lib/VNDB/Handler/VNPage.pm
parent5323a0c62ad471b1f2c4a77e6fc0e890792e9399 (diff)
L10N: Converted wishlist_status in global.pl
This is one of the last easy-to-extract unextracted texts... the rest is slightly harder to extract. Either because it's in JS, used in Multi, or used in some creative way that doesn't work well together with extraction... :/
Diffstat (limited to 'lib/VNDB/Handler/VNPage.pm')
-rw-r--r--lib/VNDB/Handler/VNPage.pm4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/VNDB/Handler/VNPage.pm b/lib/VNDB/Handler/VNPage.pm
index b6633247..510d2dfc 100644
--- a/lib/VNDB/Handler/VNPage.pm
+++ b/lib/VNDB/Handler/VNPage.pm
@@ -333,9 +333,9 @@ sub _useroptions {
}
if(!$vote || $wish) {
Select id => 'wishsel';
- option $wish ? mt '_vnpage_uopt_wishlisted', $self->{wishlist_status}[$wish->{wstat}] : mt '_vnpage_uopt_nowish';
+ option $wish ? mt '_vnpage_uopt_wishlisted', mt '_wish_'.$wish->{wstat} : mt '_vnpage_uopt_nowish';
optgroup label => $wish ? mt '_vnpage_uopt_changewish' : mt '_vnpage_uopt_addwish';
- option value => $_, $self->{wishlist_status}[$_] for (0..$#{$self->{wishlist_status}});
+ option value => $_, mt "_wish_$_" for (@{$self->{wishlist_status}});
end;
option value => -1, mt '_vnpage_uopt_delwish';
end;