Improves wording

This commit is contained in:
Gustavo Maximiliano Cortez 2015-09-08 15:42:55 -03:00
parent 82f356a513
commit 5163e9617c
No known key found for this signature in database
GPG Key ID: 15EDAD8D9F2EB1AF
4 changed files with 16 additions and 18 deletions

View File

@ -57,7 +57,7 @@
<div ng-show="buy.show2faCodeInput && !buy.success">
<p class="text-gray" translate>
${{buy.buyPrice.price}} {{buy.buyPrice.currency}} will be immediately withdrawn from your
bank account. The total of {{buy.buyPrice.qty}} BTC will be purchased and deposited in your bitcoin wallet ({{index.walletName}}) in 2-4 business days.
bank account. The total of {{buy.buyPrice.qty}} BTC will be purchased and deposited to your bitcoin wallet ({{index.walletName}}) in 2-4 business days.
</p>
<p class="text-gray" translate>
A SMS containing a confirmation code was sent to your phone. Please, enter code below
@ -77,14 +77,14 @@
</span>
</div>
<div class="text-center" ng-show="buy.success">
<h1 translate>Purchase complete</h1>
<h1 translate>Purchase initiated</h1>
<p class="text-gray" translate>
A transfer has been initiated from your bank account. Your bitcoin should arrive in your wallet in 4-6 business days.
A transfer has been initiated from your bank account. Your bitcoins should arrive to your wallet in 4-6 business days.
</p>
<button class="outline dark-gray round expand"
ng-click="$root.go('glidera')" translate>
Finish
ng-click="$root.go('glidera')">
OK
</button>
</div>
</div>

View File

@ -88,18 +88,16 @@
<div ng-show="index.glideraPersonalInfo" class="size-12">
{{index.glideraPersonalInfo.firstName}} {{index.glideraPersonalInfo.lastName}}
<span ng-show="index.glideraStatus.personalInfoState != 'VERIFIED'">({{index.glideraStatus.personalInfoState}})</span>
</div>
<div class="text-warning size-12" ng-show="!index.glideraStatus.userPhoneIsSetup" translate>
You need to setup a phone number
</div>
<div class="text-warning size-12" ng-show="!index.glideraStatus.userBankAccountIsSetup" translate>
You need to setup a bank account
</div>
<div class="text-gray size-12"
ng-show="index.glideraStatus.userBankAccountIsSetup && index.glideraStatus.bankAccountState != 'VERIFIED'" translate>
Bank account state: {{index.glideraStatus.bankAccountState}}
<div class="text-warning size-12 m20t"
ng-show="!index.glideraStatus.userPhoneIsSetup || (!index.glideraStatus.userBankAccountIsSetup &&
index.glideraStatus.bankAccountState != 'VERIFIED')" translate>
Your Glidera account is not ready to transact. Please, verify it at
<a href
ng-init="glideraUrl = index.network == 'testnet' ? 'https://sandbox.glidera.io/login' :
'https://glidera.io/login'"
ng-click="$root.openExternalLink(glideraUrl)">Glidera.io</a>
</div>
</div>

View File

@ -77,13 +77,13 @@
</span>
</div>
<div class="text-center" ng-show="sell.success">
<h1 translate>Sale complete</h1>
<h1 translate>Sale initiated</h1>
<p class="text-gray" translate>
A transfer has been initiated to your bank account and should arrive in 4-6 business days.
</p>
<button class="outline dark-gray round expand"
ng-click="$root.go('glidera')" translate>Finish</button>
ng-click="$root.go('glidera')">OK</button>
</div>
</div>
</div>

View File

@ -72,7 +72,7 @@ angular.module('copayApp.controllers').controller('sellGlideraController',
fc.sendTxProposal({
toAddress: sellAddress,
amount: amount,
message: 'Glidera',
message: 'Glidera transaction',
customData: {'glideraToken': token},
payProUrl: null,
feePerKb: feePerKb,