fix labels

This commit is contained in:
Matias Alejo Garcia 2016-08-10 15:03:08 -03:00
parent 4015e3f27b
commit c3429aca78
No known key found for this signature in database
GPG Key ID: 02470DB551277AB3
4 changed files with 6 additions and 6 deletions

View File

@ -77,7 +77,7 @@
</div>
<div>
<label><span translate>Wallet Recovery Phrase</span>
<label><span translate>Wallet Key</span>
<select class="m10t" ng-model="seedSource"
ng-options="seed as seed.label for seed in create.seedOptions"
ng-change="create.setSeedSource()">

View File

@ -63,7 +63,7 @@
</div>
<div>
<label><span translate>Wallet Recovery Phrase</span>
<label><span translate>Wallet Key </span>
<select class="m10t" ng-model="seedSource"
ng-options="seed as seed.label for seed in join.seedOptions"
ng-change="join.setSeedSource()">

View File

@ -48,7 +48,7 @@ angular.module('copayApp.controllers').controller('createController',
self.seedOptions = [{
id: 'new',
label: gettext('New Random Recovery Phrase'),
label: gettext('Random'),
}, {
id: 'set',
label: gettext('Specify Recovery Phrase...'),
@ -58,13 +58,13 @@ angular.module('copayApp.controllers').controller('createController',
if (n > 1 && isChromeApp)
self.seedOptions.push({
id: 'ledger',
label: 'Ledger',
label: 'Ledger Hardware Wallet',
});
if (isChromeApp || isDevel) {
self.seedOptions.push({
id: 'trezor',
label: 'Trezor',
label: 'Trezor Hardware Wallet',
});
}
};

View File

@ -21,7 +21,7 @@ angular.module('copayApp.controllers').controller('joinController',
var updateSeedSourceSelect = function() {
self.seedOptions = [{
id: 'new',
label: gettext('New Random Recovery Phrase'),
label: gettext('Random'),
}, {
id: 'set',
label: gettext('Specify Recovery Phrase...'),