aboutsummaryrefslogtreecommitdiffstats
path: root/web/ajax.cgi
diff options
context:
space:
mode:
authormatthew <matthew>2009-05-27 13:53:52 +0000
committermatthew <matthew>2009-05-27 13:53:52 +0000
commite7c40bb211904b5e75d2c207f6cd0e3db28ce0f7 (patch)
treeac7dfa092811bb170e4ccddc8c5b1ec963bf4a7b /web/ajax.cgi
parent4146dc685577b9c3115df0a22b0663b2f0489211 (diff)
Various locale updates.
Diffstat (limited to 'web/ajax.cgi')
-rwxr-xr-xweb/ajax.cgi6
1 files changed, 3 insertions, 3 deletions
diff --git a/web/ajax.cgi b/web/ajax.cgi
index c55e4563c..600cf9567 100755
--- a/web/ajax.cgi
+++ b/web/ajax.cgi
@@ -6,7 +6,7 @@
# Copyright (c) 2008 UK Citizens Online Democracy. All rights reserved.
# Email: matthew@mysociety.org. WWW: http://www.mysociety.org
#
-# $Id: ajax.cgi,v 1.8 2008-12-03 18:21:22 matthew Exp $
+# $Id: ajax.cgi,v 1.9 2009-05-27 13:53:53 matthew Exp $
use strict;
use Standard;
@@ -42,7 +42,7 @@ sub main {
$list .= '<li><a href="/report/' . $_->{id} . '">';
$list .= $_->{title};
$list .= '</a>';
- $list .= ' <small>(fixed)</small>' if $_->{state} eq 'fixed';
+ $list .= ' <small>' . _('(fixed)') . '</small>' if $_->{state} eq 'fixed';
$list .= '</li>';
}
my $om_list = $list;
@@ -52,7 +52,7 @@ sub main {
$list .= '<li><a href="/report/' . $_->{id} . '">';
$list .= $_->{title} . ' <small>(' . int($_->{distance}/100+.5)/10 . 'km)</small>';
$list .= '</a>';
- $list .= ' <small>(fixed)</small>' if $_->{state} eq 'fixed';
+ $list .= ' <small>' . _('(fixed)') . '</small>' if $_->{state} eq 'fixed';
$list .= '</li>';
}
my $am_list = $list;