mirror of
https://github.com/trezor/trezor-firmware.git
synced 2024-12-21 22:08:08 +00:00
chore(core): rename "hidden wallet" -> "passphrase wallet"
[no changelog]
This commit is contained in:
parent
79feb690ad
commit
33f5d47330
@ -342,10 +342,9 @@ static void _librust_qstrs(void) {
|
||||
MP_QSTR_page_count;
|
||||
MP_QSTR_pages;
|
||||
MP_QSTR_paint;
|
||||
MP_QSTR_passphrase__access_hidden_wallet;
|
||||
MP_QSTR_passphrase__access_wallet;
|
||||
MP_QSTR_passphrase__always_on_device;
|
||||
MP_QSTR_passphrase__from_host_not_shown;
|
||||
MP_QSTR_passphrase__hidden_wallet;
|
||||
MP_QSTR_passphrase__hide;
|
||||
MP_QSTR_passphrase__next_screen_will_show_passphrase;
|
||||
MP_QSTR_passphrase__please_enter;
|
||||
@ -358,6 +357,7 @@ static void _librust_qstrs(void) {
|
||||
MP_QSTR_passphrase__title_source;
|
||||
MP_QSTR_passphrase__turn_off;
|
||||
MP_QSTR_passphrase__turn_on;
|
||||
MP_QSTR_passphrase__wallet;
|
||||
MP_QSTR_path;
|
||||
MP_QSTR_pin__cancel_description;
|
||||
MP_QSTR_pin__cancel_info;
|
||||
|
@ -717,10 +717,10 @@ pub enum TranslatedString {
|
||||
nem__unencrypted = 430, // "Unencrypted:"
|
||||
#[cfg(feature = "universal_fw")]
|
||||
nem__unknown_mosaic = 431, // "Unknown mosaic!"
|
||||
passphrase__access_hidden_wallet = 432, // "Access hidden wallet?"
|
||||
passphrase__access_wallet = 432, // "Access passphrase wallet?"
|
||||
passphrase__always_on_device = 433, // "Always enter your passphrase on Trezor?"
|
||||
passphrase__from_host_not_shown = 434, // "Passphrase provided by host will be used but will not be displayed due to the device settings."
|
||||
passphrase__hidden_wallet = 435, // "Hidden wallet"
|
||||
passphrase__wallet = 435, // "Passphrase wallet"
|
||||
passphrase__hide = 436, // "Hide passphrase coming from host?"
|
||||
passphrase__next_screen_will_show_passphrase = 437, // "The next screen shows your passphrase."
|
||||
passphrase__please_enter = 438, // "Please enter your passphrase."
|
||||
@ -2068,10 +2068,10 @@ impl TranslatedString {
|
||||
Self::nem__unencrypted => "Unencrypted:",
|
||||
#[cfg(feature = "universal_fw")]
|
||||
Self::nem__unknown_mosaic => "Unknown mosaic!",
|
||||
Self::passphrase__access_hidden_wallet => "Access hidden wallet?",
|
||||
Self::passphrase__access_wallet => "Access passphrase wallet?",
|
||||
Self::passphrase__always_on_device => "Always enter your passphrase on Trezor?",
|
||||
Self::passphrase__from_host_not_shown => "Passphrase provided by host will be used but will not be displayed due to the device settings.",
|
||||
Self::passphrase__hidden_wallet => "Hidden wallet",
|
||||
Self::passphrase__wallet => "Passphrase wallet",
|
||||
Self::passphrase__hide => "Hide passphrase coming from host?",
|
||||
Self::passphrase__next_screen_will_show_passphrase => "The next screen shows your passphrase.",
|
||||
Self::passphrase__please_enter => "Please enter your passphrase.",
|
||||
@ -3420,10 +3420,10 @@ impl TranslatedString {
|
||||
Qstr::MP_QSTR_nem__unencrypted => Some(Self::nem__unencrypted),
|
||||
#[cfg(feature = "universal_fw")]
|
||||
Qstr::MP_QSTR_nem__unknown_mosaic => Some(Self::nem__unknown_mosaic),
|
||||
Qstr::MP_QSTR_passphrase__access_hidden_wallet => Some(Self::passphrase__access_hidden_wallet),
|
||||
Qstr::MP_QSTR_passphrase__access_wallet => Some(Self::passphrase__access_wallet),
|
||||
Qstr::MP_QSTR_passphrase__always_on_device => Some(Self::passphrase__always_on_device),
|
||||
Qstr::MP_QSTR_passphrase__from_host_not_shown => Some(Self::passphrase__from_host_not_shown),
|
||||
Qstr::MP_QSTR_passphrase__hidden_wallet => Some(Self::passphrase__hidden_wallet),
|
||||
Qstr::MP_QSTR_passphrase__wallet => Some(Self::passphrase__wallet),
|
||||
Qstr::MP_QSTR_passphrase__hide => Some(Self::passphrase__hide),
|
||||
Qstr::MP_QSTR_passphrase__next_screen_will_show_passphrase => Some(Self::passphrase__next_screen_will_show_passphrase),
|
||||
Qstr::MP_QSTR_passphrase__please_enter => Some(Self::passphrase__please_enter),
|
||||
|
@ -485,10 +485,9 @@ class TR:
|
||||
nem__under_namespace: str = "under namespace"
|
||||
nem__unencrypted: str = "Unencrypted:"
|
||||
nem__unknown_mosaic: str = "Unknown mosaic!"
|
||||
passphrase__access_hidden_wallet: str = "Access hidden wallet?"
|
||||
passphrase__access_wallet: str = "Access passphrase wallet?"
|
||||
passphrase__always_on_device: str = "Always enter your passphrase on Trezor?"
|
||||
passphrase__from_host_not_shown: str = "Passphrase provided by host will be used but will not be displayed due to the device settings."
|
||||
passphrase__hidden_wallet: str = "Hidden wallet"
|
||||
passphrase__hide: str = "Hide passphrase coming from host?"
|
||||
passphrase__next_screen_will_show_passphrase: str = "The next screen shows your passphrase."
|
||||
passphrase__please_enter: str = "Please enter your passphrase."
|
||||
@ -501,6 +500,7 @@ class TR:
|
||||
passphrase__title_source: str = "Passphrase source"
|
||||
passphrase__turn_off: str = "Turn off passphrase protection?"
|
||||
passphrase__turn_on: str = "Turn on passphrase protection?"
|
||||
passphrase__wallet: str = "Passphrase wallet"
|
||||
pin__cancel_description: str = "Continue without PIN"
|
||||
pin__cancel_info: str = "Without a PIN, anyone can access this device."
|
||||
pin__cancel_setup: str = "Cancel PIN setup"
|
||||
|
@ -61,15 +61,15 @@ async def _request_on_host() -> str:
|
||||
if storage_device.get_hide_passphrase_from_host():
|
||||
await confirm_action(
|
||||
"passphrase_host1_hidden",
|
||||
TR.passphrase__hidden_wallet,
|
||||
TR.passphrase__wallet,
|
||||
description=TR.passphrase__from_host_not_shown,
|
||||
prompt_screen=True,
|
||||
prompt_title=TR.passphrase__access_hidden_wallet,
|
||||
prompt_title=TR.passphrase__access_wallet,
|
||||
)
|
||||
else:
|
||||
await confirm_action(
|
||||
"passphrase_host1",
|
||||
TR.passphrase__hidden_wallet,
|
||||
TR.passphrase__wallet,
|
||||
description=TR.passphrase__next_screen_will_show_passphrase,
|
||||
verb=TR.buttons__continue,
|
||||
)
|
||||
|
@ -433,10 +433,10 @@
|
||||
"nem__under_namespace": "text,1",
|
||||
"nem__unencrypted": "text,1",
|
||||
"nem__unknown_mosaic": "text,1",
|
||||
"passphrase__access_hidden_wallet": "text,1",
|
||||
"passphrase__access_wallet": "text,1",
|
||||
"passphrase__always_on_device": "text,4",
|
||||
"passphrase__from_host_not_shown": "text,5",
|
||||
"passphrase__hidden_wallet": "title,1",
|
||||
"passphrase__wallet": "title,1",
|
||||
"passphrase__hide": "text,3",
|
||||
"passphrase__next_screen_will_show_passphrase": "text,3",
|
||||
"passphrase__please_enter": "text,2",
|
||||
|
@ -516,10 +516,10 @@
|
||||
"nem__under_namespace": "v rámci oboru názvů",
|
||||
"nem__unencrypted": "Nezašifrováno:",
|
||||
"nem__unknown_mosaic": "Neznámá mozaika!",
|
||||
"passphrase__access_hidden_wallet": "Otev. passphrase pen.?",
|
||||
"passphrase__access_wallet": "Otev. passphrase pen.?",
|
||||
"passphrase__always_on_device": "Vždy zadávat passphrase na Trezoru?",
|
||||
"passphrase__from_host_not_shown": "Použije se passphrase zadaná hostitelem, ale vzhledem k nastavení zařízení se nezobrazí.",
|
||||
"passphrase__hidden_wallet": "Passphrase pen.",
|
||||
"passphrase__wallet": "Passphrase pen.",
|
||||
"passphrase__hide": "Skrýt passphrase od hostitele?",
|
||||
"passphrase__next_screen_will_show_passphrase": "Na další obrazovce se zobrazí vaše passphrase.",
|
||||
"passphrase__please_enter": "Zadejte passphrase.",
|
||||
|
@ -516,10 +516,10 @@
|
||||
"nem__under_namespace": "unter Namespace",
|
||||
"nem__unencrypted": "Unverschlüsselt:",
|
||||
"nem__unknown_mosaic": "Unbekanntes Mosaik.",
|
||||
"passphrase__access_hidden_wallet": "Passphr. Wall. öffnen?",
|
||||
"passphrase__access_wallet": "Passphr. Wall. öffnen?",
|
||||
"passphrase__always_on_device": "Deine Passphrase immer auf dem Trezor eingeben?",
|
||||
"passphrase__from_host_not_shown": "Passphrase vom Host wird verwendet, wegen Geräteeinstellungen aber nicht angezeigt.",
|
||||
"passphrase__hidden_wallet": "Passphrase Wallet",
|
||||
"passphrase__wallet": "Passphrase Wallet",
|
||||
"passphrase__hide": "Passphrase vom Host ausblenden?",
|
||||
"passphrase__next_screen_will_show_passphrase": "Der nächste Bildschirm zeigt deine Passphrase.",
|
||||
"passphrase__please_enter": "Gib deine Passphrase ein.",
|
||||
|
@ -487,10 +487,10 @@
|
||||
"nem__under_namespace": "under namespace",
|
||||
"nem__unencrypted": "Unencrypted:",
|
||||
"nem__unknown_mosaic": "Unknown mosaic!",
|
||||
"passphrase__access_hidden_wallet": "Access hidden wallet?",
|
||||
"passphrase__access_wallet": "Access passphrase wallet?",
|
||||
"passphrase__always_on_device": "Always enter your passphrase on Trezor?",
|
||||
"passphrase__from_host_not_shown": "Passphrase provided by host will be used but will not be displayed due to the device settings.",
|
||||
"passphrase__hidden_wallet": "Hidden wallet",
|
||||
"passphrase__wallet": "Passphrase wallet",
|
||||
"passphrase__hide": "Hide passphrase coming from host?",
|
||||
"passphrase__next_screen_will_show_passphrase": "The next screen shows your passphrase.",
|
||||
"passphrase__please_enter": "Please enter your passphrase.",
|
||||
|
@ -516,10 +516,10 @@
|
||||
"nem__under_namespace": "en el espacio de nombres",
|
||||
"nem__unencrypted": "Sin cifrar:",
|
||||
"nem__unknown_mosaic": "Mosaico desconocido.",
|
||||
"passphrase__access_hidden_wallet": "¿Ir al monedero oculto?",
|
||||
"passphrase__access_wallet": "¿Ir al monedero frase contr.?",
|
||||
"passphrase__always_on_device": "¿Introduces siempre la frase de contraseña en Trezor?",
|
||||
"passphrase__from_host_not_shown": "Se usará la frase de contraseña dada por el host, pero no se verá debido a la configuración.",
|
||||
"passphrase__hidden_wallet": "Monedero oculto",
|
||||
"passphrase__wallet": "Monedero frase contr.",
|
||||
"passphrase__hide": "¿Ocultar la frase de contraseña del host?",
|
||||
"passphrase__next_screen_will_show_passphrase": "La siguiente pantalla muestra la frase de contraseña.",
|
||||
"passphrase__please_enter": "Escribe la frase de contraseña.",
|
||||
|
@ -516,10 +516,10 @@
|
||||
"nem__under_namespace": "sous l'espace de noms",
|
||||
"nem__unencrypted": "Non chiffré :",
|
||||
"nem__unknown_mosaic": "Mosaïque inconnue !",
|
||||
"passphrase__access_hidden_wallet": "Accès portef. masqué ?",
|
||||
"passphrase__access_wallet": "Accès portef. phrase secr. ?",
|
||||
"passphrase__always_on_device": "Saisissez toujours votre phrase secrète sur Trezor ?",
|
||||
"passphrase__from_host_not_shown": "La phrase secrète fournie par l'hôte sera utilisée, mais pas affichée en raison des paramètres du disp.",
|
||||
"passphrase__hidden_wallet": "Portef. masqué",
|
||||
"passphrase__wallet": "Portef. phrase secr.",
|
||||
"passphrase__hide": "Masq. phrase secrète de l'hôte ?",
|
||||
"passphrase__next_screen_will_show_passphrase": "L’écran suivant affiche votre phrase secrète.",
|
||||
"passphrase__please_enter": "Saisissez votre phrase secrète.",
|
||||
|
@ -431,10 +431,10 @@
|
||||
"429": "nem__under_namespace",
|
||||
"430": "nem__unencrypted",
|
||||
"431": "nem__unknown_mosaic",
|
||||
"432": "passphrase__access_hidden_wallet",
|
||||
"432": "passphrase__access_wallet",
|
||||
"433": "passphrase__always_on_device",
|
||||
"434": "passphrase__from_host_not_shown",
|
||||
"435": "passphrase__hidden_wallet",
|
||||
"435": "passphrase__wallet",
|
||||
"436": "passphrase__hide",
|
||||
"437": "passphrase__next_screen_will_show_passphrase",
|
||||
"438": "passphrase__please_enter",
|
||||
|
@ -1,8 +1,8 @@
|
||||
{
|
||||
"current": {
|
||||
"merkle_root": "d97ec488f8faf5330f885500b710f6df32e28021f14ee7384e56d10629296cbf",
|
||||
"datetime": "2024-07-21T11:28:28.657421",
|
||||
"commit": "81f35c21a49b69f706f03232e5fdfcdaeca7498d"
|
||||
"merkle_root": "fc865bd371402af05db581b89e09dca57d90aa2b45cbdcd7cf5ae48ad949c6d2",
|
||||
"datetime": "2024-07-26T07:56:59.791936",
|
||||
"commit": "53799cdee8d88549de3eef071d58fb4a07eeb7db"
|
||||
},
|
||||
"history": [
|
||||
{
|
||||
|
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue
Block a user