diff options
author | Hakim Cassimally <hakim@mysociety.org> | 2014-02-27 16:21:51 +0000 |
---|---|---|
committer | Hakim Cassimally <hakim@mysociety.org> | 2014-03-05 09:48:38 +0000 |
commit | b13673535318ad30b3c32f28c3eda29f7a6727b0 (patch) | |
tree | c91599374e99763b71c7cf889536ee8c99cf30ed | |
parent | 87f9c00d4eab14d07f0f443a7daf1a1a9ed21a34 (diff) |
[Hart] avoid the word "problems" on front page
From https://github.com/mysociety/FixMyStreet-Commercial/issues/487
-rw-r--r-- | templates/web/fixmystreet/index.html | 8 | ||||
-rw-r--r-- | templates/web/hart/around/intro.html | 4 | ||||
-rw-r--r-- | templates/web/hart/index-steps.html | 8 |
3 files changed, 12 insertions, 8 deletions
diff --git a/templates/web/fixmystreet/index.html b/templates/web/fixmystreet/index.html index f45509891..4d674a17e 100644 --- a/templates/web/fixmystreet/index.html +++ b/templates/web/fixmystreet/index.html @@ -42,7 +42,13 @@ kinds of problems like missed bins use our [% IF recent_photos.size %] <div id="front-recently"> - <h2>[% loc('Recently reported problems') %]</h2> + <h2> + [% IF c.cobrand.moniker == 'hart' %] + Recently reported + [% ELSE %] + [% loc('Recently reported problems') %] + [% END %] + </h2> <section class="full-width"> <ul class="issue-list-a"> diff --git a/templates/web/hart/around/intro.html b/templates/web/hart/around/intro.html index 727876224..7cc971041 100644 --- a/templates/web/hart/around/intro.html +++ b/templates/web/hart/around/intro.html @@ -1,4 +1,4 @@ <div id="postcode-intro"> - <h1>Reporting a problem in Hart's streets or parks</h1> - <h2>[% loc('(like graffiti, fly tipping, broken paving slabs, or street lighting)') %]</h2> + <h1> Report something in Hart that needs to be fixed </h1> + <h2> (like graffiti, fly tipping, broken paving slabs, or street lighting) </h2> </div> diff --git a/templates/web/hart/index-steps.html b/templates/web/hart/index-steps.html index 8db031cf8..450a793c9 100644 --- a/templates/web/hart/index-steps.html +++ b/templates/web/hart/index-steps.html @@ -1,9 +1,9 @@ -<h2>[% loc('How to report a problem') %]</h2> +<h2> How to report </h2> <ol class="big-numbers"> <li>[% question %]</li> - <li>[% loc('Locate the problem on a map of the area') %]</li> - <li>[% loc('Enter details of the problem') %]</li> + <li> Locate it on a map of the area </li> + <li> Enter its details </li> <li>Confirm the report and [% c.cobrand.council_name %] will investigate</li> </ol> @@ -11,10 +11,8 @@ This site can also be used to report problems to Hampshire County Council via FixMyStreet. </div> -[% IF c.cobrand.moniker != 'emptyhomes' %] <section class="full-width"> [% INCLUDE "front/stats.html" %] [% TRY %][% INCLUDE "front/tips.html" %][% CATCH file %][% END %] </section> -[% END %] |