1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-10-22 11:22:43 +02:00

Add AirGap Vault detail links (#13650)

This commit is contained in:
AndreasGassmann 2022-02-22 16:00:51 -03:00 committed by GitHub
parent 2bab7ada8f
commit 355e5ab399
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 32 additions and 1 deletions

View File

@ -89,6 +89,7 @@ body:
- Trezor - Trezor
- Keystone - Keystone
- GridPlus Lattice1 - GridPlus Lattice1
- AirGap Vault
- Other (please elaborate in the "Additional Context" section) - Other (please elaborate in the "Additional Context" section)
- type: textarea - type: textarea
id: additional id: additional

View File

@ -42,7 +42,7 @@
"message": "QR-based HW Wallet" "message": "QR-based HW Wallet"
}, },
"QRHardwareWalletSteps2Description": { "QRHardwareWalletSteps2Description": {
"message": "AirGap Vault & Ngrave (Coming Soon)" "message": "Ngrave (Coming Soon)"
}, },
"about": { "about": {
"message": "About" "message": "About"
@ -191,6 +191,12 @@
"aggregatorFeeCost": { "aggregatorFeeCost": {
"message": "Aggregator network fee" "message": "Aggregator network fee"
}, },
"airgapVault": {
"message": "AirGap Vault"
},
"airgapVaultTutorial": {
"message": " (Tutorials)"
},
"alertDisableTooltip": { "alertDisableTooltip": {
"message": "This can be changed in \"Settings > Alerts\"" "message": "This can be changed in \"Settings > Alerts\""
}, },

View File

@ -350,6 +350,30 @@ export default class SelectHardware extends Component {
</> </>
), ),
}, },
{
message: (
<>
<a
className="hw-connect__msg-link"
href="https://airgap.it/metamask"
rel="noopener noreferrer"
target="_blank"
key="airgap-vault-support-link"
>
{this.context.t('airgapVault')}
</a>
<a
className="hw-connect__msg-link"
href="https://support.airgap.it/guides/metamask"
rel="noopener noreferrer"
target="_blank"
key="airgap-vault-tutorial-link"
>
{this.context.t('airgapVaultTutorial')}
</a>
</>
),
},
{ {
message: this.context.t('QRHardwareWalletSteps2Description'), message: this.context.t('QRHardwareWalletSteps2Description'),
}, },