Skip to content

Commit 7447f04

Browse files
authored
Change button text from 'Enter BIP-39 password' to 'Enter passphrase' (#327)
1 parent a239557 commit 7447f04

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/gui/async_gui.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -84,13 +84,13 @@ async def fn(scr):
8484

8585
async def get_input(
8686
self,
87-
title="Enter your BIP-39 password:",
88-
note="This password creates a completely different set of keys\n"
87+
title="Enter your passphrase:",
88+
note="This passphrase creates a completely different set of keys\n"
8989
"and it is never stored on the device. Don't forget it!",
9090
suggestion="",
9191
):
9292
"""
93-
Asks the user for a password
93+
Asks the user for a passphrase
9494
"""
9595
scr = InputScreen(title, note, suggestion)
9696
await self.load_screen(scr)

src/specter.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -340,7 +340,7 @@ async def settingsmenu(self):
340340
]
341341
if self.keystore.storage_button is not None:
342342
buttons.append((1, self.keystore.storage_button))
343-
buttons.append((2, "Enter BIP-39 password"))
343+
buttons.append((2, "Enter passphrase"))
344344
if hasattr(self.keystore, "show_mnemonic"):
345345
buttons.append((3, "Show recovery phrase"))
346346
buttons.extend([(None, "Security"), (4, "Device settings")]) # delimiter

0 commit comments

Comments
 (0)