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
- Keystone
- GridPlus Lattice1
- AirGap Vault
- Other (please elaborate in the "Additional Context" section)
- type: textarea
id: additional

View File

@ -42,7 +42,7 @@
"message": "QR-based HW Wallet"
},
"QRHardwareWalletSteps2Description": {
"message": "AirGap Vault & Ngrave (Coming Soon)"
"message": "Ngrave (Coming Soon)"
},
"about": {
"message": "About"
@ -191,6 +191,12 @@
"aggregatorFeeCost": {
"message": "Aggregator network fee"
},
"airgapVault": {
"message": "AirGap Vault"
},
"airgapVaultTutorial": {
"message": " (Tutorials)"
},
"alertDisableTooltip": {
"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'),
},