"My [coin] Wallet" on new wallet creation
This commit is contained in:
parent
a54b30f6ae
commit
49962f0deb
2 changed files with 5 additions and 1 deletions
|
|
@ -2232,6 +2232,10 @@ msgstr ""
|
|||
msgid "Personal Wallet"
|
||||
msgstr ""
|
||||
|
||||
#: src/js/services/profileService.js:419
|
||||
msgid "My {{coin}} Wallet"
|
||||
msgstr ""
|
||||
|
||||
#: www/views/backup.html:25
|
||||
msgid "Please carefully write down this phrase."
|
||||
msgstr ""
|
||||
|
|
|
|||
|
|
@ -416,7 +416,7 @@ angular.module('copayApp.services')
|
|||
seedWallet(opts, function(err, walletClient) {
|
||||
if (err) return cb(err);
|
||||
|
||||
var name = opts.name || gettextCatalog.getString('Personal Wallet');
|
||||
var name = opts.name || gettextCatalog.getString('My {{coin}} Wallet', {coin: opts.coin.toUpperCase()});
|
||||
var myName = opts.myName || gettextCatalog.getString('me');
|
||||
|
||||
walletClient.createWallet(name, myName, opts.m, opts.n, {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue