mirror of
https://github.com/BlueWallet/BlueWallet.git
synced 2025-02-23 15:20:55 +01:00
ADD: helper text on ms-edit screen
This commit is contained in:
parent
e9c9b8a1de
commit
b20ddbd293
2 changed files with 7 additions and 1 deletions
|
@ -458,7 +458,9 @@
|
|||
"share": "Share",
|
||||
"view": "View",
|
||||
"manage_keys": "Manage Keys",
|
||||
"how_many_signatures_can_bluewallet_make": "How Many Signatures Can BlueWallet Make",
|
||||
"how_many_signatures_can_bluewallet_make": "how many signatures can bluewallet make",
|
||||
"signatures_required_to_spend": "Signatures required to spend: {number}",
|
||||
"signatures_we_can_make": "Signatures we can make: {number}",
|
||||
"scan_or_import_file": "Scan or import file",
|
||||
"export_coordination_setup": "Export Coordination Setup",
|
||||
"cosign_this_transaction": "Co-sign this transaction?",
|
||||
|
|
|
@ -465,6 +465,10 @@ const ViewEditMultisigCosigners = () => {
|
|||
keyboardVerticalOffset={62}
|
||||
style={[styles.mainBlock, styles.root]}
|
||||
>
|
||||
<BlueTextCentered>{loc.formatString(loc.multisig.signatures_required_to_spend, { number: wallet.getM() })}</BlueTextCentered>
|
||||
<BlueTextCentered>
|
||||
{loc.formatString(loc.multisig.signatures_we_can_make, { number: wallet.howManySignaturesCanWeMake() })}
|
||||
</BlueTextCentered>
|
||||
<FlatList data={data.current} extraData={vaultKeyData} renderItem={_renderKeyItem} keyExtractor={(_item, index) => `${index}`} />
|
||||
<BlueSpacing10 />
|
||||
{footer}
|
||||
|
|
Loading…
Add table
Reference in a new issue