mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-07-29 22:58:31 -04:00
us → u.s.
This commit is contained in:
@@ -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, I’m trying out US Notify. Today is ((day of week)) and my favourite colour is ((colour)).',
|
||||
'Hi, I’m trying out U.S. Notify. Today is ((day of week)) and my favourite colour is ((colour)).',
|
||||
service_id,
|
||||
)
|
||||
return example_sms_template
|
||||
|
||||
@@ -125,7 +125,7 @@ def revoke_api_key(service_id, key_id):
|
||||
if request.method == 'GET':
|
||||
flash([
|
||||
"Are you sure you want to revoke ‘{}’?".format(key_name),
|
||||
"You will not be able to use this API key to connect to US Notify."
|
||||
"You will not be able to use this API key to connect to U.S. Notify."
|
||||
], 'revoke this API key')
|
||||
return render_template(
|
||||
'views/api/keys.html',
|
||||
|
||||
@@ -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 US Notify support',
|
||||
GENERAL_TICKET_TYPE: 'Contact U.S. Notify 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 US Notify support',
|
||||
GENERAL_TICKET_TYPE: 'Contact U.S. Notify support',
|
||||
PROBLEM_TICKET_TYPE: 'Report a problem',
|
||||
QUESTION_TICKET_TYPE: 'Ask a question or give feedback',
|
||||
}.get(ticket_type),
|
||||
|
||||
@@ -133,7 +133,7 @@ def email_template():
|
||||
'\n'
|
||||
'10. Three'
|
||||
'\n\n'
|
||||
'This is an example of an email sent using US Notify.'
|
||||
'This is an example of an email sent using U.S. Notify.'
|
||||
'\n\n'
|
||||
'https://www.notifications.service.gov.uk'
|
||||
)
|
||||
|
||||
@@ -430,7 +430,7 @@ def send_one_off_step(service_id, template_id, step_index):
|
||||
if db_template['template_type'] == 'email':
|
||||
email_reply_to = get_email_reply_to_address_from_session()
|
||||
elif db_template['template_type'] == 'sms':
|
||||
sms_sender = get_sms_sender_from_session() # TODO: verify default sender is US Notify
|
||||
sms_sender = get_sms_sender_from_session() # TODO: verify default sender is U.S. Notify
|
||||
|
||||
template_values = get_recipient_and_placeholders_from_session(db_template['template_type'])
|
||||
|
||||
|
||||
Reference in New Issue
Block a user