Skip to content

Commit f2f6bca

Browse files
committed
ADR 8 -> ADR 0008
1 parent 2213333 commit f2f6bca

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

src/app/pages/OpenWalletPage/Features/FromLedger/__tests__/__snapshots__/index.test.tsx.snap

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ Object {
105105
-webkit-flex-direction: column;
106106
-ms-flex-direction: column;
107107
flex-direction: column;
108-
width: 400px;
108+
width: 440px;
109109
}
110110
111111
.c12 {

src/app/pages/OpenWalletPage/Features/FromLedger/index.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ export function FromLedgerModal(props: FromLedgerModalProps) {
115115
value: DerivationPathTypeLegacy,
116116
},
117117
{
118-
label: t('ledger.derivationPathType.adr8', 'ADR 8 (recommended for new wallets)'),
118+
label: t('ledger.derivationPathType.adr8', 'ADR 0008 (recommended for new wallets)'),
119119
value: DerivationPathTypeAdr8,
120120
},
121121
]
@@ -153,7 +153,7 @@ export function FromLedgerModal(props: FromLedgerModalProps) {
153153
>
154154
{t('openWallet.ledger.derivationPath', 'Derivation path')}
155155
</Box>
156-
<Box width="400px">
156+
<Box width="440px">
157157
<Select
158158
id="DerivationPathSelect"
159159
labelKey="label"

src/app/state/ledger/saga.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import { OasisTransaction } from 'app/lib/transaction'
1212

1313
describe('Ledger Sagas', () => {
1414
describe('enumerateAccounts', () => {
15-
it('should list ADR8 accounts', async () => {
15+
it('should list ADR 0008 accounts', async () => {
1616
const validAccount = {
1717
publicKey: await addressToPublicKey('oasis1qz0k5q8vjqvu4s4nwxyj406ylnflkc4vrcjghuwk'),
1818
path: Ledger.mustGetPath(DerivationPathTypeAdr8, 0),

src/locales/en/translation.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -193,7 +193,7 @@
193193
},
194194
"derivationPathType": {
195195
"legacy": "Legacy (backward compatible)",
196-
"adr8": "ADR 8 (recommended for new wallets)"
196+
"adr8": "ADR 0008 (recommended for new wallets)"
197197
}
198198
},
199199
"transaction": {

src/locales/fr/translation.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -193,7 +193,7 @@
193193
},
194194
"derivationPathType": {
195195
"legacy": "Legacy (backward compatible)",
196-
"adr8": "ADR 8 (recommended for new wallets)"
196+
"adr8": "ADR 0008 (recommended for new wallets)"
197197
}
198198
},
199199
"transaction": {

0 commit comments

Comments
 (0)