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

View File

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

View File

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