816 - Change "Prepare to send" button text

This commit is contained in:
Jonathan Bobel
2023-10-06 13:13:18 -04:00
parent 9e47062aa7
commit 57ec11d7c5
2 changed files with 2 additions and 2 deletions

View File

@@ -19,7 +19,7 @@
<div class="usa-button-group"> <div class="usa-button-group">
{% if current_user.has_permissions('send_messages', restrict_admin_usage=True) %} {% if current_user.has_permissions('send_messages', restrict_admin_usage=True) %}
<a href="{{ url_for(".set_sender", service_id=current_service.id, template_id=template.id) }}" class="usa-button usa-pill-separate-item"> <a href="{{ url_for(".set_sender", service_id=current_service.id, template_id=template.id) }}" class="usa-button usa-pill-separate-item">
Prepare to send<span class="usa-sr-only"> a message using this template</span> Use this template
</a> </a>
{% endif %} {% endif %}
{% if current_user.has_permissions('manage_templates') %} {% if current_user.has_permissions('manage_templates') %}

View File

@@ -545,7 +545,7 @@ def test_user_with_only_send_and_view_redirected_to_set_sender_for_one_off(
( (
["send_messages", "manage_templates"], ["send_messages", "manage_templates"],
[ [
(".set_sender", "Prepare to send a message using this template"), (".set_sender", "Use this template"),
(".edit_service_template", "Edit"), (".edit_service_template", "Edit"),
], ],
None, None,