Merge pull request #2333 from BlueWallet/editkeys

REF: Manage Keys screen
This commit is contained in:
GLaDOS 2020-12-12 18:31:29 +00:00 committed by GitHub
commit 5c958dc00b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 5 deletions

View file

@ -420,6 +420,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",
@ -456,7 +457,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.",
@ -465,7 +466,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.",

View file

@ -220,6 +220,7 @@ const ViewEditMultisigCosigners = () => {
)}
<BlueSpacing20 />
<BlueButton title={loc.send.success_done} onPress={() => setIsMnemonicsModalVisible(false)} />
<BlueSpacing40 />
</View>
</BottomModal>
);
@ -253,7 +254,7 @@ const ViewEditMultisigCosigners = () => {
button={{
buttonType: MultipleStepsListItemButtohType.partial,
leftText,
text: loc.multisig.share,
text: loc.multisig.view,
disabled: vaultKeyData.isLoading,
onPress: () => {
setVaultKeyData({
@ -291,7 +292,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 +599,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,
});