From 0192d9c8e0cce9781f72aff9f57376b233d26400 Mon Sep 17 00:00:00 2001 From: karlchillmaid Date: Fri, 9 Aug 2024 14:14:03 +0100 Subject: [PATCH 1/4] =?UTF-8?q?Change=20=E2=80=98profile=E2=80=99=20to=20?= =?UTF-8?q?=E2=80=98account=E2=80=99?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/templates/views/user-profile.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/templates/views/user-profile.html b/app/templates/views/user-profile.html index b043751586..88deb94f3a 100644 --- a/app/templates/views/user-profile.html +++ b/app/templates/views/user-profile.html @@ -2,12 +2,12 @@ {% from "govuk_frontend_jinja/components/summary-list/macro.html" import govukSummaryList %} {% block per_page_title %} - Your profile + Your account {% endblock %} {% block maincolumn_content %} -

Your profile

+

Your account

{% if can_see_edit %} {% set email_address_row = From c26076dee8b00489d5e6158eb003948fa7864e5a Mon Sep 17 00:00:00 2001 From: karlchillmaid Date: Fri, 9 Aug 2024 14:17:02 +0100 Subject: [PATCH 2/4] =?UTF-8?q?Change=20=E2=80=98profile=E2=80=99=20to=20?= =?UTF-8?q?=E2=80=98account=E2=80=99?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/main/forms.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/main/forms.py b/app/main/forms.py index 94ed1f2c47..1cb72c6bdb 100644 --- a/app/main/forms.py +++ b/app/main/forms.py @@ -965,7 +965,7 @@ def __init__(self, all_template_folders=None, disable_sms_auth=False, *args, **k { "hint": { "text": "Not available because this team member has not added a " - "phone number to their profile" + "phone number to their account" }, "disabled": True, }, From 61a475368eaa6ba880439a751a26f4c1f3b81f38 Mon Sep 17 00:00:00 2001 From: karlchillmaid Date: Fri, 9 Aug 2024 14:19:24 +0100 Subject: [PATCH 3/4] =?UTF-8?q?Change=20=E2=80=98profile=E2=80=99=20to=20?= =?UTF-8?q?=E2=80=98account=E2=80=99?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/navigation.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/navigation.py b/app/navigation.py index 54bea79037..4488d1cfb3 100644 --- a/app/navigation.py +++ b/app/navigation.py @@ -175,7 +175,7 @@ def visible_header_nav(self): nav_items.append( { "href": url_for("main.user_profile"), - "text": "Your profile", + "text": "Your account", "active": self.is_selected("user-profile"), } ) From b1448bb6e5fb29a01bbb8c57510db463e97228ce Mon Sep 17 00:00:00 2001 From: karlchillmaid Date: Fri, 9 Aug 2024 14:20:16 +0100 Subject: [PATCH 4/4] =?UTF-8?q?Change=20=E2=80=98profile=E2=80=99=20to=20?= =?UTF-8?q?=E2=80=98account=E2=80=99?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- tests/app/main/views/test_header_navigation.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/app/main/views/test_header_navigation.py b/tests/app/main/views/test_header_navigation.py index 09c2276522..113f260617 100644 --- a/tests/app/main/views/test_header_navigation.py +++ b/tests/app/main/views/test_header_navigation.py @@ -26,7 +26,7 @@ ("Features", ".guidance_features"), ("Pricing", ".guidance_pricing"), ("Using Notify", ".guidance_using_notify"), - ("Your profile", ".user_profile"), + ("Your account", ".user_profile"), ), ), ( @@ -38,7 +38,7 @@ ("Pricing", ".guidance_pricing"), ("Using Notify", ".guidance_using_notify"), ("Platform admin", ".platform_admin_search"), - ("Your profile", ".user_profile"), + ("Your account", ".user_profile"), ), ), ),