diff options
Diffstat (limited to 'templates/web/base')
-rw-r--r-- | templates/web/base/questionnaire/index.html | 4 | ||||
-rw-r--r-- | templates/web/base/report/new/form_report.html | 6 | ||||
-rw-r--r-- | templates/web/base/report/update/form_update.html | 4 |
3 files changed, 10 insertions, 4 deletions
diff --git a/templates/web/base/questionnaire/index.html b/templates/web/base/questionnaire/index.html index b4595bbcd..52d5ed5b1 100644 --- a/templates/web/base/questionnaire/index.html +++ b/templates/web/base/questionnaire/index.html @@ -74,7 +74,9 @@ [% IF c.cobrand.allow_photo_upload %] <input type="hidden" name="upload_fileid" value="[% upload_fileid %]"> - <label for="form_photo">[% loc('Photo') %]</label> + <label for="form_photo"> + <span data-singular="[% loc('Photo') %]" data-plural="[% loc('Photos') %]">[% loc('Photo') %]</span> + </label> [% IF field_errors.photo %] <p class='form-error'>[% field_errors.photo %]</p> diff --git a/templates/web/base/report/new/form_report.html b/templates/web/base/report/new/form_report.html index 3fbf7c160..007d98b76 100644 --- a/templates/web/base/report/new/form_report.html +++ b/templates/web/base/report/new/form_report.html @@ -20,8 +20,10 @@ [% IF c.cobrand.allow_photo_upload %] <input type="hidden" name="upload_fileid" value="[% upload_fileid %]"> - <label for="form_photo">[% loc('Photo') %] - [% INCLUDE 'report/public_label.html' %]</label> + <label for="form_photo"> + <span data-singular="[% loc('Photo') %]" data-plural="[% loc('Photos') %]">[% loc('Photo') %]</span> + [% INCLUDE 'report/public_label.html' %] + </label> [% IF field_errors.photo %] <p class='form-error'>[% field_errors.photo %]</p> diff --git a/templates/web/base/report/update/form_update.html b/templates/web/base/report/update/form_update.html index 007bd68d8..0645cad41 100644 --- a/templates/web/base/report/update/form_update.html +++ b/templates/web/base/report/update/form_update.html @@ -3,7 +3,9 @@ [% IF c.cobrand.allow_photo_upload %] <input type="hidden" name="upload_fileid" value="[% upload_fileid %]"> - <label for="form_photo">[% loc('Photo') %]</label> + <label for="form_photo"> + <span data-singular="[% loc('Photo') %]" data-plural="[% loc('Photos') %]">[% loc('Photo') %]</span> + </label> [% IF field_errors.photo %] <p class='form-error'>[% field_errors.photo %]</p> |