generated from wharfkit/wallet-plugin-template
-
-
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.
* enhancement: using esr-anchor instead of esr scheme Closes issue #3 * chore: added localization * fix: got tests passing again * fix: importing translations in plugin * Add rollup json plugin --------- Co-authored-by: Aaron Cox <[email protected]>
- Loading branch information
Showing
10 changed files
with
96 additions
and
30 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
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,21 @@ | ||
{ | ||
"shared": { | ||
"preparing": "Preparing request for Anchor..." | ||
}, | ||
"login": { | ||
"title": "Login with Anchor", | ||
"body": "Scan the QR-code with Anchor on another device or use the button to open it here.", | ||
"link": "Open Anchor" | ||
}, | ||
"transact": { | ||
"title": "Sign transaction with Anchor", | ||
"body": "Please open the Anchor Wallet on \"{{channelName}}\" to review and sign the transaction.", | ||
"label": "Sign manually or with another device", | ||
"link": "Trigger Manually" | ||
}, | ||
"error": { | ||
"expired": "The request expired, please try again.", | ||
"invalid_response": "Invalid response from Anchor, must contain link_ch, link_key, link_name and cid flags.", | ||
"not_completed": "The request was not completed." | ||
} | ||
} |
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,11 @@ | ||
import en from './en.json' | ||
import ko from './ko.json' | ||
import zh_hans from './zh-hans.json' | ||
import zh_hant from './zh-hant.json' | ||
|
||
export default { | ||
en, | ||
ko, | ||
'zh-Hans': zh_hans, | ||
'zh-Hant': zh_hant, | ||
} |
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 @@ | ||
{} |
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 @@ | ||
{} |
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 @@ | ||
{} |
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