aboutsummaryrefslogtreecommitdiffstats
path: root/web
diff options
context:
space:
mode:
authorMatthew Somerville <matthew@fury.ukcod.org.uk>2011-02-23 13:09:40 +0000
committerMatthew Somerville <matthew@fury.ukcod.org.uk>2011-02-23 13:09:40 +0000
commit7f09cfd0f0254666e815ef87de0ce6f651a524b1 (patch)
tree9b637d0040348385786980e83ab6c69ef0c2aa93 /web
parent8811ccf13f29f411979b50e098f59e86066b8258 (diff)
Missing strings in questionnaire page.
Diffstat (limited to 'web')
-rwxr-xr-xweb/questionnaire.cgi9
1 files changed, 6 insertions, 3 deletions
diff --git a/web/questionnaire.cgi b/web/questionnaire.cgi
index 1eb62d03e..3e97af319 100755
--- a/web/questionnaire.cgi
+++ b/web/questionnaire.cgi
@@ -318,14 +318,17 @@ EOF
);
$vars{another_yes} = $another{yes};
$vars{another_no} = $another{no};
+ my $another_qn = _('Would you like to receive another questionnaire in 4 weeks, reminding you to check the status?');
+ my $yes = _('Yes');
+ my $no = _('No');
$vars{another_questionnaire} = <<EOF if $q->{site} ne 'emptyhomes';
<div id="another_qn">
-<p>Would you like to receive another questionnaire in 4 weeks, reminding you to check the status?</p>
+<p>$another_qn</p>
<p>
<input type="radio" name="another" id="another_yes" value="Yes"$another{yes}>
-<label for="another_yes">Yes</label>
+<label for="another_yes">$yes</label>
<input type="radio" name="another" id="another_no" value="No"$another{no}>
-<label for="another_no">No</label>
+<label for="another_no">$no</label>
</p>
</div>
EOF