Changing U.S. Notify to Notify.gov (#656)

This commit is contained in:
Jonathan Bobel
2023-07-28 11:12:46 -04:00
committed by GitHub
parent 817ebbe923
commit 242c7acd34
49 changed files with 125 additions and 139 deletions

View File

@@ -35,7 +35,7 @@ def _create_example_template(service_id):
example_sms_template = service_api_client.create_service_template(
'Example text message template',
'sms',
'Hi, Im trying out U.S. Notify. Today is ((day of week)) and my favorite color is ((color)).',
'Hi, Im trying out Notify.gov. Today is ((day of week)) and my favorite color is ((color)).',
service_id,
)
return example_sms_template

View File

@@ -76,7 +76,7 @@ def triage(ticket_type=PROBLEM_TICKET_TYPE):
form=form,
page_title={
PROBLEM_TICKET_TYPE: 'Report a problem',
GENERAL_TICKET_TYPE: 'Contact U.S. Notify support',
GENERAL_TICKET_TYPE: 'Contact Notify.gov support',
}.get(ticket_type)
)
@@ -151,7 +151,7 @@ def feedback(ticket_type):
),
show_status_page_banner=(ticket_type == PROBLEM_TICKET_TYPE),
page_title={
GENERAL_TICKET_TYPE: 'Contact U.S. Notify support',
GENERAL_TICKET_TYPE: 'Contact Notify.gov support',
PROBLEM_TICKET_TYPE: 'Report a problem',
QUESTION_TICKET_TYPE: 'Ask a question or give feedback',
}.get(ticket_type),