diff options
author | Jon Kristensen <info@jonkri.se> | 2017-07-04 17:30:04 +0200 |
---|---|---|
committer | Matthew Somerville <matthew-github@dracos.co.uk> | 2017-07-07 21:58:01 +0100 |
commit | a16583df5416925b0da4ab158fc494671939e4fe (patch) | |
tree | 79f522622b560f0e3a477416d8ea4137b227341d | |
parent | b18385fa66e3a0f617872729ccc9bd4f7b2573a9 (diff) |
Make three strings translatable.
Fixes #1744.
-rw-r--r-- | templates/web/base/admin/stats.html | 2 | ||||
-rw-r--r-- | templates/web/base/questionnaire/index.html | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/templates/web/base/admin/stats.html b/templates/web/base/admin/stats.html index 535f04d18..150afd619 100644 --- a/templates/web/base/admin/stats.html +++ b/templates/web/base/admin/stats.html @@ -99,7 +99,7 @@ [% END %] <p> - <input type="submit" class="btn" name="getcounts" size="30" id="getcounts" value="Get Count" /> + <input type="submit" class="btn" name="getcounts" size="30" id="getcounts" value="[% loc('Get Count') %]" /> </p> </form> diff --git a/templates/web/base/questionnaire/index.html b/templates/web/base/questionnaire/index.html index 8639a436f..84a9d7efd 100644 --- a/templates/web/base/questionnaire/index.html +++ b/templates/web/base/questionnaire/index.html @@ -22,8 +22,8 @@ <p class="questionnaire-report-reminder__report-meta">[% problem.meta_line(c) | html %]</p> [% IF updates.size %] <p class="questionnaire-report-reminder__last-update-header"> - <strong>Last update</strong> - <a href="/report/[% problem.id %]">Show all updates</a> + <strong>[% loc('Last update') %]</strong> + <a href="/report/[% problem.id %]">[% loc('Show all updates') %]</a> </p> <p class="questionnaire-report-reminder__last-update">“[% updates.last.text | add_links %]”</p> [% END %] |