diff --git a/src/AliasVault.Client/Main/Components/Widgets/CreateNewIdentityWidget.razor b/src/AliasVault.Client/Main/Components/Widgets/CreateNewIdentityWidget.razor index 83268dda4..0eaa59288 100644 --- a/src/AliasVault.Client/Main/Components/Widgets/CreateNewIdentityWidget.razor +++ b/src/AliasVault.Client/Main/Components/Widgets/CreateNewIdentityWidget.razor @@ -5,7 +5,7 @@ @implements IAsyncDisposable @if (IsPopupVisible) @@ -13,7 +13,7 @@
-

Create New Identity

+

Create New Alias

diff --git a/src/AliasVault.Client/Main/Layout/Footer.razor b/src/AliasVault.Client/Main/Layout/Footer.razor index 2afbbeb5d..9dd9de3d1 100644 --- a/src/AliasVault.Client/Main/Layout/Footer.razor +++ b/src/AliasVault.Client/Main/Layout/Footer.razor @@ -23,7 +23,7 @@ @code { private static readonly string[] Quotes = [ - "Tip: Use the g+c (go create) keyboard shortcut to quickly create a new identity.", + "Tip: Use the g+c (go create) keyboard shortcut to quickly create a new alias.", "Tip: Use the g+f (go find) keyboard shortcut to focus the search field.", "Tip: Use the g+h (go home) keyboard shortcut to go to the homepage.", "Tip: Use the g+l (go lock) keyboard shortcut to lock the vault.", diff --git a/src/AliasVault.Client/Main/Pages/Credentials/AddEdit.razor b/src/AliasVault.Client/Main/Pages/Credentials/AddEdit.razor index ba6b7f4c9..efcb2592c 100644 --- a/src/AliasVault.Client/Main/Pages/Credentials/AddEdit.razor +++ b/src/AliasVault.Client/Main/Pages/Credentials/AddEdit.razor @@ -228,7 +228,7 @@ else if (!EditMode) { - // When creating a new identity: start with focus on the service name input. + // When creating a new alias: start with focus on the service name input. await JsInteropService.FocusElementById("service-name"); } } diff --git a/src/AliasVault.Client/Main/Pages/Emails/Home.razor b/src/AliasVault.Client/Main/Pages/Emails/Home.razor index 6d8b7bdfa..84819127f 100644 --- a/src/AliasVault.Client/Main/Pages/Emails/Home.razor +++ b/src/AliasVault.Client/Main/Pages/Emails/Home.razor @@ -34,7 +34,7 @@ else if (NoEmailClaims) {
-

You are not using any private email addresses (yet). Create a new identity and use a private email address supported by AliasVault. All emails received by these private email addresses will show up here.

+

You are not using any private email addresses (yet). Create a new alias and use a private email address supported by AliasVault. All emails received by these private email addresses will show up here.

} diff --git a/src/AliasVault.Client/Main/Pages/Welcome.razor b/src/AliasVault.Client/Main/Pages/Welcome.razor index 327f58ae6..05eee94e8 100644 --- a/src/AliasVault.Client/Main/Pages/Welcome.razor +++ b/src/AliasVault.Client/Main/Pages/Welcome.razor @@ -11,7 +11,7 @@

How do I use AliasVault?

-

Create a random identity with an associated email address. To get started, simply click the "+ New Identity" button in the top right corner.

+

Create a random identity with an associated email address. To get started, simply click the "+ New Alias" button in the top right corner.

What is the purpose of AliasVault?

@@ -28,7 +28,7 @@

Get Started Now

- Go ahead and create a new login by clicking "+ New Identity" in the top right. Or explore these options: + Go ahead and create a new login by clicking "+ New Alias" in the top right. Or explore these options:

diff --git a/src/Tests/AliasVault.E2ETests/Tests/Client/Shard1/CredentialTests.cs b/src/Tests/AliasVault.E2ETests/Tests/Client/Shard1/CredentialTests.cs index 0c16a2122..dd5ea367a 100644 --- a/src/Tests/AliasVault.E2ETests/Tests/Client/Shard1/CredentialTests.cs +++ b/src/Tests/AliasVault.E2ETests/Tests/Client/Shard1/CredentialTests.cs @@ -100,7 +100,7 @@ public class CredentialTests : ClientPlaywrightTest Assert.That(pageContent, Does.Contain(serviceNameBefore), "Created credential service name does not appear on login page."); // Click the edit button. - var editButton = Page.Locator("text=Edit credentials entry").First; + var editButton = Page.Locator("text=Edit").First; await editButton.ClickAsync(); await WaitForUrlAsync("edit", "Save Credentials"); @@ -113,7 +113,7 @@ public class CredentialTests : ClientPlaywrightTest var submitButton = Page.Locator("text=Save Credentials").First; await submitButton.ClickAsync(); - await WaitForUrlAsync("credentials/**", "Delete credentials entry"); + await WaitForUrlAsync("credentials/**", "Delete"); pageContent = await Page.TextContentAsync("body"); Assert.That(pageContent, Does.Contain("Credentials updated"), "Credential update confirmation message not shown."); diff --git a/src/Tests/AliasVault.E2ETests/Tests/Client/Shard1/JwtTokenTests.cs b/src/Tests/AliasVault.E2ETests/Tests/Client/Shard1/JwtTokenTests.cs index 381205530..48db7736f 100644 --- a/src/Tests/AliasVault.E2ETests/Tests/Client/Shard1/JwtTokenTests.cs +++ b/src/Tests/AliasVault.E2ETests/Tests/Client/Shard1/JwtTokenTests.cs @@ -36,7 +36,7 @@ public class JwtTokenTests : ClientPlaywrightTest await WaitForUrlAsync("test/2", "Test 2 OK"); var pageContent = await Page.TextContentAsync("body"); - Assert.That(pageContent, Does.Contain("Test webapi call 2."), "No page content after refreshing access token."); + Assert.That(pageContent, Does.Contain("Test webapi call 2"), "No page content after refreshing access token."); } /// @@ -74,7 +74,7 @@ public class JwtTokenTests : ClientPlaywrightTest await WaitForUrlAsync(startUrl, "Test 1 OK"); var pageContent = await Page.TextContentAsync("body"); - Assert.That(pageContent, Does.Contain("Test webapi call 1."), "No index content after unlocking database with a expired JWT token."); + Assert.That(pageContent, Does.Contain("Test webapi call 1"), "No index content after unlocking database with a expired JWT token."); } /// diff --git a/src/Tests/AliasVault.E2ETests/Tests/Client/Shard5/UnlockTests.cs b/src/Tests/AliasVault.E2ETests/Tests/Client/Shard5/UnlockTests.cs index e8c300368..dedad1ec7 100644 --- a/src/Tests/AliasVault.E2ETests/Tests/Client/Shard5/UnlockTests.cs +++ b/src/Tests/AliasVault.E2ETests/Tests/Client/Shard5/UnlockTests.cs @@ -30,10 +30,10 @@ public class UnlockTests : ClientPlaywrightTest await RefreshPageAndUnlockVault(); // Check if we get redirected back to the page we were trying to access. - await WaitForUrlAsync(startUrl, "Test webapi call 1."); + await WaitForUrlAsync(startUrl, "Test webapi call 1"); var pageContent = await Page.TextContentAsync("body"); - Assert.That(pageContent, Does.Contain("Test webapi call 1."), "No index content after unlocking database."); + Assert.That(pageContent, Does.Contain("Test 1 OK."), "No index content after unlocking database."); } /// @@ -69,9 +69,9 @@ public class UnlockTests : ClientPlaywrightTest await submitButton.ClickAsync(); // Check if we get redirected back to the page we were trying to access. - await WaitForUrlAsync(startUrl, "Test webapi call 1."); + await WaitForUrlAsync(startUrl, "Test webapi call 1"); var pageContent = await Page.TextContentAsync("body"); - Assert.That(pageContent, Does.Contain("Test webapi call 1."), "No index content after unlocking database."); + Assert.That(pageContent, Does.Contain("Test 1 OK."), "No index content after unlocking database."); } }