Skip to content

Commit 4aac430

Browse files
Daniel RufDanielRuf
Daniel Ruf
authored andcommitted
fix: change "My Dashboard" to "My Account"
1 parent d8a95c9 commit 4aac430

File tree

4 files changed

+3
-4
lines changed

4 files changed

+3
-4
lines changed

app/code/Magento/Customer/i18n/en_US.csv

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -534,7 +534,6 @@ Addresses,Addresses
534534
"Account Dashboard","Account Dashboard"
535535
"Edit Account Information","Edit Account Information"
536536
"Password forgotten","Password forgotten"
537-
"My Dashboard","My Dashboard"
538537
"You are signed out","You are signed out"
539538
"Associate to Website","Associate to Website"
540539
"Prefix","Prefix"

app/code/Magento/Customer/view/frontend/layout/customer_account_index.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
<body>
1111
<referenceBlock name="page.main.title">
1212
<action method="setPageTitle">
13-
<argument translate="true" name="title" xsi:type="string">My Dashboard</argument>
13+
<argument translate="true" name="title" xsi:type="string">My Account</argument>
1414
</action>
1515
</referenceBlock>
1616
<referenceContainer name="content">

dev/tests/functional/tests/app/Magento/Customer/Test/Constraint/AssertCustomerRedirectToDashboard.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ class AssertCustomerRedirectToDashboard extends AbstractConstraint
1717
/**
1818
* Dashboard Message on account index page.
1919
*/
20-
const DASHBOARD_MESSAGE = 'My Dashboard';
20+
const DASHBOARD_MESSAGE = 'My Account';
2121

2222
/**
2323
* Constraint severeness

dev/tests/functional/tests/app/Magento/Customer/Test/TestStep/LogoutCustomerOnFrontendStep.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ public function run()
4949
{
5050
$this->customerAccount->open();
5151
$this->cmsIndex->getCmsPageBlock()->waitPageInit();
52-
if ($this->cmsIndex->getTitleBlock()->getTitle() === 'My Dashboard') {
52+
if ($this->cmsIndex->getTitleBlock()->getTitle() === 'My Account') {
5353
$this->cmsIndex->getLinksBlock()->openLink('Sign Out');
5454
$this->cmsIndex->getCmsPageBlock()->waitUntilTextIsVisible('Home Page');
5555
$this->cmsIndex->getCmsPageBlock()->waitPageInit();

0 commit comments

Comments
 (0)