1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-11-26 01:18:28 +00:00

src/apps/common: change PIN wording

This commit is contained in:
Pavol Rusnak 2018-02-26 19:02:09 +01:00
parent 54128b7568
commit f20febeef0
No known key found for this signature in database
GPG Key ID: 91F3B339B9A02A3D

View File

@ -58,7 +58,7 @@ def _get_label(code: int):
if code == PinMatrixRequestType.NewFirst:
label = 'Enter new PIN'
elif code == PinMatrixRequestType.NewSecond:
label = 'Enter PIN again'
label = 'Re-enter new PIN'
else: # PinMatrixRequestType.Current
label = 'Enter PIN'
label = 'Enter your PIN'
return label