Say ‘missing’ rather than ‘doesn’t have’

Missing gives more of a suggestion that this is something to be fixed,
rather than just a statement of fact.
This commit is contained in:
Chris Hill-Scott
2017-05-11 11:23:58 +01:00
parent 30fe6db2e2
commit f836f206e6
2 changed files with 3 additions and 3 deletions
+2 -2
View File
@@ -81,8 +81,8 @@
your template your template
</h1> </h1>
<p> <p>
Your file doesnt have {{ recipients.missing_column_headers | formatted_list( Your file is missing {{ recipients.missing_column_headers | formatted_list(
conjunction='or', conjunction='and',
prefix='a column called ', prefix='a column called ',
prefix_plural='columns called ' prefix_plural='columns called '
) }}. ) }}.
+1 -1
View File
@@ -142,7 +142,7 @@ def test_upload_csvfile_with_errors_shows_check_page_with_errors(
""", """,
( (
'The columns in your file need to match the double brackets in your template ' 'The columns in your file need to match the double brackets in your template '
'Your file doesnt have a column called name. ' 'Your file is missing a column called name. '
'Skip to file contents' 'Skip to file contents'
) )
), ),