diff options
Diffstat (limited to 'web/questionnaire.cgi')
-rwxr-xr-x | web/questionnaire.cgi | 9 |
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 |