We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8090fc8 commit 2c4d945Copy full SHA for 2c4d945
core/src/apps/nostr/get_public_key.py
@@ -2,6 +2,7 @@
2
from ubinascii import hexlify
3
4
from trezor.crypto import bech32
5
+from trezor.lvglui.i18n import gettext as _, keys as i18n_keys
6
from trezor.lvglui.scrs import lv
7
from trezor.messages import NostrPublicKey
8
from trezor.ui.layouts import show_address
@@ -37,6 +38,7 @@ async def get_public_key(
37
38
address=npub,
39
address_n=path,
40
network="Nostr",
41
+ title=_(i18n_keys.TITLE__STR_PUBLIC_KEY).format("Nostr"),
42
)
43
44
return NostrPublicKey(publickey=pubkey, npub=npub)
0 commit comments