diff options
author | Matthew Somerville <matthew@mysociety.org> | 2015-09-24 15:35:39 +0100 |
---|---|---|
committer | Matthew Somerville <matthew@mysociety.org> | 2015-09-28 12:34:18 +0100 |
commit | b39b1034cdf7036f62be25dbf1cd829e800ea018 (patch) | |
tree | 3c988a6392e62771c512ab0eecdf9fbb91558d9b /templates/web/base/open311/index.html | |
parent | 99610f11646c3b8530dfdb19e08b11650569b9f6 (diff) |
Remove remaining hardcoded site name from strings.
Add a site_name template parameter available to all templates.
Diffstat (limited to 'templates/web/base/open311/index.html')
-rw-r--r-- | templates/web/base/open311/index.html | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/templates/web/base/open311/index.html b/templates/web/base/open311/index.html index 502b1a69a..d42cc2106 100644 --- a/templates/web/base/open311/index.html +++ b/templates/web/base/open311/index.html @@ -3,9 +3,9 @@ <div class="sticky-sidebar"> <aside> <ul class="plain-list"> - <li><a href="/faq">Frequently Asked Questions</a></li> - <li><a href="/privacy">Privacy and cookies</a></li> - <li><a href="/contact">Contact FixMyStreet</a></li> + <li><a href="/faq">[% loc('Frequently Asked Questions') %]</a></li> + <li><a href="/privacy">[% loc('Privacy and cookies') %]</a></li> + <li><a href="/contact">[% tprintf(loc("Contact %s", "%s is the site name"), site_name) %]</a></li> </ul> </aside> </div> |