-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #27 from vergecurrency/create-tor-control-panel
Create tor control panel
- Loading branch information
Showing
23 changed files
with
421 additions
and
48 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,5 @@ | ||
const ar = {} | ||
import { LocaleDefinition } from '@/locale/locale' | ||
|
||
// @ts-ignore | ||
const ar: LocaleDefinition = {} | ||
export default ar |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,5 @@ | ||
const bn = {} | ||
import { LocaleDefinition } from '@/locale/locale' | ||
|
||
// @ts-ignore | ||
const bn: LocaleDefinition = {} | ||
export default bn |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,5 @@ | ||
const de = {} | ||
import { LocaleDefinition } from '@/locale/locale' | ||
|
||
// @ts-ignore | ||
const de: LocaleDefinition = {} | ||
export default de |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,5 @@ | ||
const es = {} | ||
import { LocaleDefinition } from '@/locale/locale' | ||
|
||
// @ts-ignore | ||
const es: LocaleDefinition = {} | ||
export default es |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,5 @@ | ||
const fr = {} | ||
import { LocaleDefinition } from '@/locale/locale' | ||
|
||
// @ts-ignore | ||
const fr: LocaleDefinition = {} | ||
export default fr |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,5 @@ | ||
const hi = {} | ||
import { LocaleDefinition } from '@/locale/locale' | ||
|
||
// @ts-ignore | ||
const hi: LocaleDefinition = {} | ||
export default hi |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,5 @@ | ||
const it = {} | ||
import { LocaleDefinition } from '@/locale/locale' | ||
|
||
// @ts-ignore | ||
const it: LocaleDefinition = {} | ||
export default it |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,5 @@ | ||
const ja = {} | ||
import { LocaleDefinition } from '@/locale/locale' | ||
|
||
// @ts-ignore | ||
const ja: LocaleDefinition = {} | ||
export default ja |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,5 @@ | ||
const pt = {} | ||
import { LocaleDefinition } from '@/locale/locale' | ||
|
||
// @ts-ignore | ||
const pt: LocaleDefinition = {} | ||
export default pt |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,5 @@ | ||
const ru = {} | ||
import { LocaleDefinition } from '@/locale/locale' | ||
|
||
// @ts-ignore | ||
const ru: LocaleDefinition = {} | ||
export default ru |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,5 @@ | ||
const zh = {} | ||
import { LocaleDefinition } from '@/locale/locale' | ||
|
||
// @ts-ignore | ||
const zh: LocaleDefinition = {} | ||
export default zh |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,3 +15,9 @@ | |
/> | ||
</svg> | ||
</template> | ||
|
||
<script> | ||
export default { | ||
name: 'tor-connected' | ||
} | ||
</script> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,3 +15,9 @@ | |
/> | ||
</svg> | ||
</template> | ||
|
||
<script> | ||
export default { | ||
name: 'tor-disconnected' | ||
} | ||
</script> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -19,3 +19,9 @@ | |
/> | ||
</svg> | ||
</template> | ||
|
||
<script> | ||
export default { | ||
name: 'tor-error' | ||
} | ||
</script> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,153 @@ | ||
export interface LocaleDefinition { | ||
main: { | ||
menu: { | ||
wallets: string, | ||
add: string, | ||
explorer: string, | ||
contacts: string | ||
} | ||
}, | ||
tor: { | ||
status: { | ||
title: string, | ||
region: string, | ||
ip: string, | ||
unableToConnect: string, | ||
loading: string, | ||
connected: string, | ||
disconnected: string | ||
}, | ||
toggle: string | ||
}, | ||
unlock: { | ||
unlockYourWallet: string, | ||
password: string, | ||
forgotPassword: string | ||
}, | ||
wallet: { | ||
send: string, | ||
receive: string | ||
}, | ||
transaction: { | ||
transaction: string, | ||
sent: string, | ||
sending: string, | ||
received: string, | ||
receiving: string, | ||
moved: string, | ||
pending: string, | ||
amount: string, | ||
date: string, | ||
details: string, | ||
address: string, | ||
confirmations: string, | ||
txid: string | ||
}, | ||
send: { | ||
formDescription: string, | ||
confirmDescription: string, | ||
sendingDescription: string, | ||
send: string, | ||
fillForm: string, | ||
confirm: string, | ||
sending: string, | ||
sent: string, | ||
recipient: string, | ||
recipientDetails: string, | ||
amount: string, | ||
amountDetails: string, | ||
internalMemo: string, | ||
internalMemoDetails: string, | ||
sendMax: string, | ||
reset: string, | ||
confirmTransaction: string, | ||
cancel: string, | ||
transactionFee: string, | ||
total: string, | ||
transactionWarning: string, | ||
signing: string, | ||
publishing: string, | ||
broadcasting: string, | ||
transactionSent: string, | ||
transactionSentSubtitle: string, | ||
done: string | ||
}, | ||
createWallet: { | ||
createNewWallet: string, | ||
restoreExistingWallet: string, | ||
addYourFirstWallet: string, | ||
itsReallyEasy: string, | ||
aWalletName: string, | ||
aWalletNameDescription: string, | ||
walletName: string, | ||
enterYourWalletName: string, | ||
walletColor: string, | ||
advanced: string, | ||
singleAddress: string, | ||
serviceURL: string, | ||
writeDownPaperKey: string, | ||
preferences: string, | ||
paperKey: string, | ||
aPaperKey: string, | ||
aPaperKeyDescription: string, | ||
fillInYourPaperKey: string, | ||
fillInYourPaperKeyDesc: string, | ||
confirmPaperKey: string, | ||
invalidPaperkeySelected: string, | ||
passPhrase: string, | ||
passPhraseDescription: string, | ||
setupPassphraseReq1: string, | ||
setupPassphraseReq2: string, | ||
setupPassphraseReq3: string, | ||
setupPassphrasePassPlaceholder: string, | ||
confirmPassphrase: string, | ||
passphraseInvalid: string, | ||
confirm: string, | ||
back: string, | ||
proceed: string, | ||
almostReady: string, | ||
almostReadyDesc: string, | ||
awesomeYouveDoneIt: string, | ||
createTerm1: string, | ||
createTerm2: string, | ||
createTerm3: string, | ||
termsOfUse: string, | ||
openTermsOfUseConfirm: string, | ||
createWallet: string, | ||
creatingWallet: string, | ||
walletCreated: string, | ||
whatToDoNext: string, | ||
exportYourWallet: string, | ||
exportYourWalletDesc: string, | ||
exportWallet: string, | ||
sendXvgToYourWallet: string, | ||
sendXvgToYourWalletDesc: string, | ||
receiveXvg: string, | ||
orGoToWallet: string, | ||
orGoToWalletDesc: string, | ||
goToWallet: string | ||
}, | ||
walletSettings: { | ||
walletSettings: string, | ||
dangerZone: string, | ||
delete: string, | ||
deleteWallet: string, | ||
deleteWalletDesc: string, | ||
deleteWalletConfirm: string, | ||
walletDeleted: string | ||
}, | ||
settings: { | ||
settings: string, | ||
security: string, | ||
language: string, | ||
currency: string, | ||
currencyDetails: string, | ||
password: string, | ||
changePassword: string, | ||
lockAfter: string, | ||
lockAfterDetails: string, | ||
connection: string, | ||
torConnection: string, | ||
manageTorConnection: string | ||
} | ||
} |
Oops, something went wrong.