Merge pull request #178 from GSA/uk-copy-fixing

Uk copy fixing
This commit is contained in:
Ryan Ahearn
2022-11-04 13:23:28 -04:00
committed by GitHub
2 changed files with 5 additions and 6 deletions

View File

@@ -122,7 +122,7 @@
<div class="govuk-grid-column-one-half"> <div class="govuk-grid-column-one-half">
<span class="govuk-visually-hidden">There are</span> <span class="govuk-visually-hidden">There are</span>
<div class="product-page-big-number">{{ counts.organisations|format_thousands }}</div> <div class="product-page-big-number">{{ counts.organisations|format_thousands }}</div>
<span>organisations</span> <span>organizations</span>
</div> </div>
<div class="govuk-grid-column-one-half"> <div class="govuk-grid-column-one-half">
<span class="govuk-visually-hidden">and</span> <span class="govuk-visually-hidden">and</span>
@@ -133,7 +133,7 @@
</div> </div>
<p class="govuk-body"> <p class="govuk-body">
See the See the
<a class="govuk-link govuk-link--no-visited-state" href="{{ url_for('main.performance') }}">list of services and organisations</a>. <a class="govuk-link govuk-link--no-visited-state" href="{{ url_for('main.performance') }}">list of services and organizations</a>.
</p> </p>
</div> </div>
</div> </div>
@@ -174,8 +174,7 @@
The team The team
</h2> </h2>
<p class="govuk-body"> <p class="govuk-body">
US Notify is built by the Government Digital Service US Notify is built and maintained by the Public Benefits Studio, within the General Services Administration's Technology Transformation Services.
and is supported 24 hours a day, 7 days a week.
</p> </p>
<p class="govuk-body"> <p class="govuk-body">
<a class="govuk-link govuk-link--no-visited-state" href="{{ url_for('main.support') }}">Contact us</a> if you have a question or want <a class="govuk-link govuk-link--no-visited-state" href="{{ url_for('main.support') }}">Contact us</a> if you have a question or want

View File

@@ -31,8 +31,8 @@ def test_non_logged_in_user_can_see_homepage(
assert normalize_spaces(page.select_one('#whos-using-notify').text) == ( assert normalize_spaces(page.select_one('#whos-using-notify').text) == (
'Whos using US Notify ' 'Whos using US Notify '
'There are 111 organisations and 9,999 services using Notify. ' 'There are 111 organizations and 9,999 services using Notify. '
'See the list of services and organisations.' 'See the list of services and organizations.'
) )
assert page.select_one('#whos-using-notify a')['href'] == url_for( assert page.select_one('#whos-using-notify a')['href'] == url_for(
'main.performance' 'main.performance'