Revert fixes

This commit is contained in:
dabura667 2015-06-06 00:17:54 +09:00
parent 113070d906
commit 01bd4f7aa2
3 changed files with 3 additions and 12 deletions

View File

@ -334,10 +334,6 @@ msgstr ""
msgid "ENTER"
msgstr ""
#: public/views/importLegacy.html
msgid "Email"
msgstr ""
#: public/views/preferences.html
msgid "Email Notifications"
msgstr ""
@ -666,7 +662,6 @@ msgid "Permanently delete this wallet. THIS ACTION CANNOT BE REVERSED"
msgstr ""
#: public/views/create.html
#: src/js/services/profileService.js
msgid "Personal Wallet"
msgstr ""
@ -950,10 +945,6 @@ msgstr ""
msgid "Updating Wallet..."
msgstr ""
#: public/views/importLegacy.html
msgid "Username"
msgstr ""
#: public/views/preferencesAbout.html
msgid "Version"
msgstr ""

View File

@ -30,8 +30,8 @@
</label>
<label for="username">
{{importLegacy.fromCloud ? {{'Email'|translate}}: {{'Username'|translate}}}}
<input type="text" class="form-control" placeholder="{{importLegacy.fromCloud ? {{'Email'|translate}}: {{'Username'|translate}}}}"
{{importLegacy.fromCloud ? 'Email': 'Username'}}
<input type="text" class="form-control" placeholder="{{importLegacy.fromCloud ? 'Email': 'Username'}}"
name="username" ng-model="importLegacy.username" autocapitalize="off" required>
</label>

View File

@ -165,7 +165,7 @@ angular.module('copayApp.services')
}
var walletClient = bwcService.getClient();
walletClient.createWallet(gettext('Personal Wallet'), gettext('me'), 1, 1, {
walletClient.createWallet('Personal Wallet', 'me', 1, 1, {
network: 'livenet'
}, function(err) {
if (err) return cb(gettext('Error creating wallet. Check your internet connection'));