diff --git a/app/main/forms.py b/app/main/forms.py index 4305d1626..0be785a5e 100644 --- a/app/main/forms.py +++ b/app/main/forms.py @@ -1980,7 +1980,7 @@ class TemplateAndFoldersSelectionForm(Form): None, [ # ('email', 'Email') if 'email' in available_template_types else None, - ("sms", "Text message") + ("sms", "Start with a blank template") if "sms" in available_template_types else None, ("copy-existing", "Copy an existing template") diff --git a/tests/app/main/views/test_templates.py b/tests/app/main/views/test_templates.py index 370d5b5f3..32b717460 100644 --- a/tests/app/main/views/test_templates.py +++ b/tests/app/main/views/test_templates.py @@ -310,7 +310,7 @@ def test_should_show_live_search_if_service_has_lots_of_folders( ], [ # 'Email', - "Text message", + "Start with a blank template", "Copy an existing template", ], ), @@ -323,7 +323,7 @@ def test_should_show_live_search_if_service_has_lots_of_folders( ], [ # 'Email', - "Text message", + "Start with a blank template", "Copy an existing template", ], ),