diff options
author | Matthew Somerville <matthew-github@dracos.co.uk> | 2018-01-09 11:03:09 +0000 |
---|---|---|
committer | Matthew Somerville <matthew-github@dracos.co.uk> | 2018-01-09 11:05:13 +0000 |
commit | 4e4ede7e48fb30429c8d9c3e5eb95e3480e451d7 (patch) | |
tree | 533d7406f60ac2455e15a97c7d40d621e4a1eb4a | |
parent | 32be970f9519cda5ba3670e97ee6f243d159a54f (diff) |
Update string on /reports to match same string lower down.
-rw-r--r-- | CHANGELOG.md | 1 | ||||
-rwxr-xr-x | templates/web/base/reports/index.html | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 0ec5dddfa..b3ab53f24 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,6 +11,7 @@ - Prefetch translations in /reports list of bodies. - Ignore deleted/area-less bodies in dashboard list. - Add missing CSS class from final questionnaire question. + - Change text on /reports to match lower down (fix translation). - UK: - Lazy load images in the footer. diff --git a/templates/web/base/reports/index.html b/templates/web/base/reports/index.html index 70f4b3929..9fcf0b4c5 100755 --- a/templates/web/base/reports/index.html +++ b/templates/web/base/reports/index.html @@ -30,7 +30,7 @@ data-values-fixed="[[% problems_fixed_by_period.join(',') %]]" ></canvas> <span class="label" data-datasetindex="0"><strong style="color: #F4A140">[% tprintf(nget("%s problem reported", "%s problems reported", problems_reported_by_period.last), decode(problems_reported) _ '</strong>') %]</span> - <span class="label" data-datasetindex="1"><strong style="color: #62B356">[% tprintf(nget("%s report marked as fixed", "%s reports marked as fixed", problems_fixed_by_period.last), decode(problems_fixed) _ '</strong>') %]</span> + <span class="label" data-datasetindex="1"><strong style="color: #62B356">[% tprintf(nget("%s problem marked as fixed", "%s problems marked as fixed", problems_fixed_by_period.last), decode(problems_fixed) _ '</strong>') %]</span> </div> </div> </div> |