mirror of
https://github.com/BlueWallet/BlueWallet.git
synced 2025-03-26 08:55:56 +01:00
FIX: contradiction in Vaul introduction text (closes #2327)
This commit is contained in:
parent
2185330e42
commit
85022029e3
2 changed files with 4 additions and 1 deletions
|
@ -443,6 +443,7 @@
|
|||
"needs": "It needs",
|
||||
"what_is_vault_description_number_of_vault_keys": " {m} vault keys ",
|
||||
"what_is_vault_description_to_spend": "to spend and a third one you \ncan use as backup.",
|
||||
"what_is_vault_description_to_spend_other": "to spend.",
|
||||
"quorum": "{m} of {n} quorum",
|
||||
"quorum_header": "Quorum",
|
||||
"of": "of",
|
||||
|
|
|
@ -205,7 +205,9 @@ const WalletsAddMultisig = () => {
|
|||
<Text style={[styles.textdescBold, stylesHook.textdesc]}>
|
||||
{loc.formatString(loc.multisig.what_is_vault_description_number_of_vault_keys, { m })}
|
||||
</Text>
|
||||
<Text style={[styles.textdesc, stylesHook.textdesc]}>{loc.multisig.what_is_vault_description_to_spend}</Text>
|
||||
<Text style={[styles.textdesc, stylesHook.textdesc]}>
|
||||
{m === 2 && n === 3 ? loc.multisig.what_is_vault_description_to_spend : loc.multisig.what_is_vault_description_to_spend_other}
|
||||
</Text>
|
||||
</Text>
|
||||
</View>
|
||||
{isAdvancedModeEnabledRender && (
|
||||
|
|
Loading…
Add table
Reference in a new issue