From a079a11f304e5b156e09cb6bf96e0044c4b0ba96 Mon Sep 17 00:00:00 2001 From: ncoelho Date: Fri, 11 Dec 2020 23:20:04 +0100 Subject: [PATCH 1/2] REF: Manage Keys screen add view instead of share. Fixes the title --- loc/en.json | 4 ++-- screen/wallets/viewEditMultisigCosigners.js | 8 +++++--- 2 files changed, 7 insertions(+), 5 deletions(-) diff --git a/loc/en.json b/loc/en.json index b6df5a7a0..3cfa24d6f 100644 --- a/loc/en.json +++ b/loc/en.json @@ -419,6 +419,7 @@ "confirm": "Confirm", "header": "Send", "share": "Share", + "view": "View", "manage_keys": "Manage Keys", "how_many_signatures_can_bluewallet_make": "How Many Signatures Can BlueWallet Make", "scan_or_import_file": "Scan or import file", @@ -455,7 +456,7 @@ "this_is_cosigners_xpub": "This is the cosigner's XPUB, ready to be imported into another wallet. It is safe to share it.", "wallet_key_created": "Your vault key was created. Take a moment to safely backup your mnemonic seed", "are_you_sure_seed_will_be_lost": "Are you sure? Your mnemonic seed will be lost if you dont have a backup", - "forget_this_seed": "Forget this seed and use XPUB instead", + "forget_this_seed": "Forget this seed and use XPUB", "invalid_fingerprint": "Fingerprint for this seed doesnt match this cosigners fingerprint", "view_edit_cosigners": "View/edit cosigners", "this_cosigner_is_already_imported": "This cosigner is already imported.", @@ -464,7 +465,6 @@ "input_fp_explain": "Skip to use the default one (00000000)", "input_path": "Input derivation path", "input_path_explain": "Skip to use the default one ({default})", - "view_edit_cosigners_title": "Edit Cosigners", "ms_help": "Help", "ms_help_title": "How Multisig Vaults work. Tips and tricks", "ms_help_text": "A wallet with multiple keys, to exponentially increase security or for shared custody.", diff --git a/screen/wallets/viewEditMultisigCosigners.js b/screen/wallets/viewEditMultisigCosigners.js index f6e8b5758..82bb26536 100644 --- a/screen/wallets/viewEditMultisigCosigners.js +++ b/screen/wallets/viewEditMultisigCosigners.js @@ -220,6 +220,8 @@ const ViewEditMultisigCosigners = () => { )} setIsMnemonicsModalVisible(false)} /> + + ); @@ -253,7 +255,7 @@ const ViewEditMultisigCosigners = () => { button={{ buttonType: MultipleStepsListItemButtohType.partial, leftText, - text: loc.multisig.share, + text: loc.multisig.view, disabled: vaultKeyData.isLoading, onPress: () => { setVaultKeyData({ @@ -291,7 +293,7 @@ const ViewEditMultisigCosigners = () => { showActivityIndicator={vaultKeyData.keyIndex === el.index + 1 && vaultKeyData.isLoading} button={{ leftText, - text: loc.multisig.share, + text: loc.multisig.view, disabled: vaultKeyData.isLoading, buttonType: MultipleStepsListItemButtohType.partial, onPress: () => { @@ -598,7 +600,7 @@ const styles = StyleSheet.create({ ViewEditMultisigCosigners.navigationOptions = ({ navigation }) => ({ ...BlueNavigationStyle(navigation, true), - title: loc.multisig.view_edit_cosigners_title, + title: loc.multisig.manage_keys, headerLeft: null, }); From f91e8676ca26d6bea93e86fff1fc3bc0d9343570 Mon Sep 17 00:00:00 2001 From: marcosrdz Date: Fri, 11 Dec 2020 19:29:17 -0500 Subject: [PATCH 2/2] Update viewEditMultisigCosigners.js --- screen/wallets/viewEditMultisigCosigners.js | 1 - 1 file changed, 1 deletion(-) diff --git a/screen/wallets/viewEditMultisigCosigners.js b/screen/wallets/viewEditMultisigCosigners.js index 5d87f3b6a..6e1467eab 100644 --- a/screen/wallets/viewEditMultisigCosigners.js +++ b/screen/wallets/viewEditMultisigCosigners.js @@ -221,7 +221,6 @@ const ViewEditMultisigCosigners = () => { setIsMnemonicsModalVisible(false)} /> - );