1
0
Fork 0
mirror of https://github.com/BlueWallet/BlueWallet.git synced 2025-03-26 08:55:56 +01:00

FIX: contradiction in Vaul introduction text (closes )

This commit is contained in:
Overtorment 2020-12-14 12:11:31 +00:00
parent 2185330e42
commit 85022029e3
2 changed files with 4 additions and 1 deletions
loc
screen/wallets

View file

@ -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",

View file

@ -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 && (