diff options
author | mccheung <mc_cheung@126.com> | 2017-01-21 11:40:38 +0800 |
---|---|---|
committer | Matthew Somerville <matthew-github@dracos.co.uk> | 2017-01-21 11:54:45 +0000 |
commit | 5277688f17d1f0a26ae186779bb9aa4e8c7dd391 (patch) | |
tree | 8dc0f05e98f8097315566071c91a8d5024247d5a | |
parent | 24fcbfb3705060845d16b6fbe4c3da1e5e12eea2 (diff) |
Mark two missing strings for translation.
Fixes #1604.
-rw-r--r-- | templates/web/base/report/new/form_report.html | 2 | ||||
-rw-r--r-- | templates/web/base/report/new/form_user.html | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/templates/web/base/report/new/form_report.html b/templates/web/base/report/new/form_report.html index 3c36bd0cc..e85d890c9 100644 --- a/templates/web/base/report/new/form_report.html +++ b/templates/web/base/report/new/form_report.html @@ -7,7 +7,7 @@ [% PROCESS "report/new/category_wrapper.html" %] [% TRY %][% PROCESS 'report/new/after_category.html' %][% CATCH file %][% END %] - <h2 class="form-section-heading">Public details</h2> + <h2 class="form-section-heading">[% loc( 'Public details' ) %]</h2> <div class="form-section-description" id="js-councils_text"> [% IF js %] [% PROCESS 'report/new/councils_text_all.html' list_of_names = [ loc('the local council') ] %] diff --git a/templates/web/base/report/new/form_user.html b/templates/web/base/report/new/form_user.html index 424660aa8..68a226693 100644 --- a/templates/web/base/report/new/form_user.html +++ b/templates/web/base/report/new/form_user.html @@ -1,4 +1,4 @@ -<h2 class="form-section-heading form-section-heading--private">Private details</h2> +<h2 class="form-section-heading form-section-heading--private">[% loc('Private details') %]</h2> <p class="form-section-description" id="js-councils_text_private"> [% IF js %] [% loc('These will be sent to the council, but will never be shown online.') %] |