From db42811033ded5457a129ba73e671b7ac51a2326 Mon Sep 17 00:00:00 2001 From: William Grant Date: Tue, 26 Mar 2024 10:57:53 +1100 Subject: [PATCH] feat: password to lock app --- _locales/en/messages.json | 2 +- ts/types/LocalizerKeys.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/_locales/en/messages.json b/_locales/en/messages.json index 196735472..5034640cd 100644 --- a/_locales/en/messages.json +++ b/_locales/en/messages.json @@ -376,7 +376,7 @@ "orJoinOneOfThese": "Or join one of these...", "otherPlural": "$number$ others", "otherSingular": "$number$ other", - "password": "Password", + "lockApp": "Lock App", "passwordCharacterError": "Password must only contain letters, numbers and symbols", "passwordLengthError": "Password must be between 6 and 64 characters long", "passwordsDoNotMatch": "Passwords do not match", diff --git a/ts/types/LocalizerKeys.ts b/ts/types/LocalizerKeys.ts index 7fde3d5a6..4daeec9ac 100644 --- a/ts/types/LocalizerKeys.ts +++ b/ts/types/LocalizerKeys.ts @@ -275,6 +275,7 @@ export type LocalizerKeys = | 'linkVisitWarningTitle' | 'loadAccountProgressMessage' | 'loading' + | 'lockApp' | 'mainMenuEdit' | 'mainMenuFile' | 'mainMenuHelp' @@ -378,7 +379,6 @@ export type LocalizerKeys = | 'originalMessageNotFound' | 'otherPlural' | 'otherSingular' - | 'password' | 'passwordCharacterError' | 'passwordCreate' | 'passwordLengthError'