diff --git a/_locales/en/messages.json b/_locales/en/messages.json
index 3f339e5b1..2d563d5ec 100644
--- a/_locales/en/messages.json
+++ b/_locales/en/messages.json
@@ -462,7 +462,6 @@
   "sessionRecoveryPassword": "Recovery Password",
   "set": "Set",
   "setAccountPasswordDescription": "Require password to unlock Session.",
-  "setAccountPasswordTitle": "Password",
   "setDisplayPicture": "Set Display Picture",
   "setPassword": "Set Password",
   "setPasswordFail": "Failed to set password",
diff --git a/ts/components/settings/section/CategoryPrivacy.tsx b/ts/components/settings/section/CategoryPrivacy.tsx
index 29c434a73..1e54cdea4 100644
--- a/ts/components/settings/section/CategoryPrivacy.tsx
+++ b/ts/components/settings/section/CategoryPrivacy.tsx
@@ -109,7 +109,7 @@ export const SettingsCategoryPrivacy = (props: {
 
       {!props.hasPassword ? (
         <SessionSettingButtonItem
-          title={window.i18n('setAccountPasswordTitle')}
+          title={window.i18n('lockApp')}
           description={window.i18n('setAccountPasswordDescription')}
           onClick={() => {
             displayPasswordModal('set', props.onPasswordUpdated);
diff --git a/ts/types/LocalizerKeys.ts b/ts/types/LocalizerKeys.ts
index 218b3e17b..6d428ce8e 100644
--- a/ts/types/LocalizerKeys.ts
+++ b/ts/types/LocalizerKeys.ts
@@ -462,7 +462,6 @@ export type LocalizerKeys =
   | 'sessionRecoveryPassword'
   | 'set'
   | 'setAccountPasswordDescription'
-  | 'setAccountPasswordTitle'
   | 'setDisplayPicture'
   | 'setPassword'
   | 'setPasswordFail'