diff options
author | matthew <matthew> | 2009-08-11 09:28:41 +0000 |
---|---|---|
committer | matthew <matthew> | 2009-08-11 09:28:41 +0000 |
commit | 85d32889c7ba68dd5b0689587ecb315a6c0b8202 (patch) | |
tree | 1c293e37ac6469372ab0b3ca4d0db426cceaa2ac /perllib/Page.pm | |
parent | 9d313393c01e6c90d593e2dccdc0323cf11ea95f (diff) |
Some category translation.
Diffstat (limited to 'perllib/Page.pm')
-rw-r--r-- | perllib/Page.pm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/perllib/Page.pm b/perllib/Page.pm index 28646fbf3..daaa67551 100644 --- a/perllib/Page.pm +++ b/perllib/Page.pm @@ -6,7 +6,7 @@ # Copyright (c) 2006 UK Citizens Online Democracy. All rights reserved. # Email: matthew@mysociety.org; WWW: http://www.mysociety.org/ # -# $Id: Page.pm,v 1.155 2009-08-10 12:24:05 matthew Exp $ +# $Id: Page.pm,v 1.156 2009-08-11 09:28:41 matthew Exp $ # package Page; @@ -631,9 +631,9 @@ sub display_problem_text { $out .= '<p><em>'; if ($q->{site} eq 'emptyhomes') { if ($problem->{anonymous}) { - $out .= sprintf(_('%s, reported anonymously at %s'), ent($problem->{category}), prettify_epoch($problem->{time})); + $out .= sprintf(_('%s, reported anonymously at %s'), ent(_($problem->{category})), prettify_epoch($problem->{time})); } else { - $out .= sprintf(_('%s, reported by %s at %s'), ent($problem->{category}), ent($problem->{name}), prettify_epoch($problem->{time})); + $out .= sprintf(_('%s, reported by %s at %s'), ent(_($problem->{category})), ent($problem->{name}), prettify_epoch($problem->{time})); } } else { if ($problem->{service} && $problem->{category} && $problem->{category} ne 'Other' && $problem->{anonymous}) { |