Update translations

This commit is contained in:
Leendert de Borst
2026-05-29 00:50:34 +02:00
parent 6dbf42931d
commit 5a79c94ff6
2 changed files with 5 additions and 3 deletions

View File

@@ -814,7 +814,8 @@ export async function createAutofillPopup(input: HTMLInputElement, items: Item[]
const hideFor1HourText = await t('content.hideFor1Hour');
const hidePermanentlyText = await t('content.hidePermanently');
const noMatchesText = await t('content.noMatchesFound');
const creatingText = await t('content.creatingNewAlias');
const creatingAliasText = await t('content.creatingNewAlias');
const creatingCredentialText = await t('content.creatingNewCredential');
const failedText = await t('content.failedToCreateIdentity');
const popup = createBasePopup(input, rootContainer);
@@ -868,7 +869,7 @@ export async function createAutofillPopup(input: HTMLInputElement, items: Item[]
return;
}
const loadingPopup = createLoadingPopup(input, creatingText, rootContainer);
const loadingPopup = createLoadingPopup(input, `${result.isCustomCredential ? creatingCredentialText : creatingAliasText}...`, rootContainer);
try {
// Sync with api to ensure we have the latest vault.

View File

@@ -145,7 +145,8 @@
"or": "or",
"new": "New",
"vaultLocked": "AliasVault is locked.",
"creatingNewAlias": "Creating new alias...",
"creatingNewAlias": "Creating new alias",
"creatingNewCredential": "Creating new credential",
"noMatchesFound": "No matches found",
"searchVault": "Search vault...",
"enterServiceName": "Enter service name",