Fix strings

This commit is contained in:
Gustavo Maximiliano Cortez 2018-03-20 14:37:04 -03:00
parent 8a17c53327
commit 83271d3a4d
No known key found for this signature in database
GPG Key ID: 15EDAD8D9F2EB1AF
7 changed files with 13 additions and 14 deletions

View File

@ -22,7 +22,7 @@
<ul>
<li translate>The password of the recovery phrase (if set)</li>
<li translate>The derivation path</li>
<li translate>The wallet service URL</li>
<li translate>The Wallet Service URL</li>
</ul>
<small>
<span translate>NOTE: To import a wallet from a 3rd party software, please go to Add Wallet &gt; Create Wallet, and specify the Recovery Phrase there.</span>
@ -88,7 +88,7 @@
</div>
<ion-item>
<ion-label stacked>Wallet service URL</ion-label>
<ion-label stacked>Wallet Service URL</ion-label>
<ion-input type="text" formControlName="bwsURL"></ion-input>
</ion-item>
</div>

View File

@ -39,7 +39,7 @@
<div *ngIf="showAdvOpts">
<ion-item>
<ion-label stacked>{{'Wallet service URL' | translate}}</ion-label>
<ion-label stacked>Wallet Service URL</ion-label>
<ion-input type="text" formControlName="bwsURL"></ion-input>
</ion-item>

View File

@ -10,7 +10,7 @@
<ion-item>
<div class="sending-label">
<img src="assets/img/shapeshift/icon-shapeshift.svg" alt="shapeshift">
<span translate>Shift</span>
<span>Shift</span>
</div>
<div class="amount-label">
<div class="amount">{{amountStr}}</div>
@ -79,8 +79,7 @@
</ion-content>
<ion-footer>
<button ion-button full class="button-footer" (click)="confirmTx()" [disabled]="!fromWallet || !totalAmountStr || !toWallet"
translate>
Click to shift
<button ion-button full class="button-footer" (click)="confirmTx()" [disabled]="!fromWallet || !totalAmountStr || !toWallet" translate>
Click to confirm
</button>
</ion-footer>

View File

@ -28,7 +28,7 @@
<span *ngIf="!fromWallet.balanceHidden && !fromWallet.scanning"> {{fromWallet.status.totalBalanceStr ? fromWallet.status.totalBalanceStr : ( fromWallet.cachedBalance ? fromWallet.cachedBalance + (fromWallet.cachedBalanceUpdatedOn ? ' &middot; ' + ( fromWallet.cachedBalanceUpdatedOn * 1000 | amTimeAgo) : '') : '' ) }} </span>
<span *ngIf="fromWallet.scanning" translate>Scanning funds</span>...
<span *ngIf="fromWallet.balanceHidden && !fromWallet.scanning">[<span translate>Balance Hidden</span>]</span>
<span *ngIf="fromWallet.balanceHidden && !fromWallet.scanning" translate>[Balance Hidden]</span>
<span *ngIf="fromWallet.n > 1">
{{fromWallet.m}}-of-{{fromWallet.n}}
</span>
@ -61,7 +61,7 @@
<span *ngIf="!toWallet.balanceHidden && !toWallet.scanning"> {{toWallet.status.totalBalanceStr ? toWallet.status.totalBalanceStr : ( toWallet.cachedBalance ? toWallet.cachedBalance + (toWallet.cachedBalanceUpdatedOn ? ' &middot; ' + ( toWallet.cachedBalanceUpdatedOn * 1000 | amTimeAgo) : '') : '' ) }} </span>
<span *ngIf="toWallet.scanning" translate>Scanning funds</span>...
<span *ngIf="toWallet.balanceHidden && !toWallet.scanning">[<span translate>Balance Hidden</span>]</span>
<span *ngIf="toWallet.balanceHidden && !toWallet.scanning" translate>[Balance Hidden]</span>
<span class="tab-home__wallet__multisig-number" *ngIf="toWallet.n > 1">
{{toWallet.m}}-of-{{toWallet.n}}
</span>

View File

@ -13,7 +13,7 @@
<p translate>Trade any leading blockchain asset for any other. Protection by Design. No Account Needed.</p>
</div>
<button ion-button outline class="button-standard" color="light" no-low-fee (click)="goTo('Shift')" translate>Start</button>
<button ion-button clear small color="light" (click)="openExternalLink('https://shapeshift.io')" translate>Visit Shapeshift.io &rarr;</button>
<button ion-button clear small color="light" (click)="openExternalLink('https://shapeshift.io')" translate>Visit ShapeShift.io &rarr;</button>
</div>
</div>
@ -54,4 +54,4 @@
Contact the ShapeShift support team.
</a>
</div>
</ion-footer>
</ion-footer>

View File

@ -1,6 +1,6 @@
<ion-header>
<ion-navbar>
<ion-title>{{'Wallet Service URL' | translate}}</ion-title>
<ion-title>Wallet Service URL</ion-title>
</ion-navbar>
</ion-header>
<ion-content>
@ -8,7 +8,7 @@
<ion-list>
<form [formGroup]="walletServiceForm">
<ion-item>
<ion-label stacked>{{'Wallet Service URL' | translate}}</ion-label>
<ion-label stacked>Wallet Service URL</ion-label>
<ion-input type="text" formControlName="bwsurl" [value]="walletServiceForm.value.bwsurl" required></ion-input>
</ion-item>
<ion-item-divider text-wrap>

View File

@ -24,7 +24,7 @@ export class OnGoingProcessProvider {
'calculatingFee': this.translate.instant('Calculating fee...'),
'connectingCoinbase': this.translate.instant('Connecting to Coinbase...'),
'connectingGlidera': this.translate.instant('Connecting to Glidera...'),
'connectingShapeshift': this.translate.instant('Connecting to Shapeshift...'),
'connectingShapeshift': this.translate.instant('Connecting to ShapeShift...'),
'creatingTx': this.translate.instant('Creating transaction...'),
'creatingWallet': this.translate.instant('Creating Wallet...'),
'deletingWallet': this.translate.instant('Deleting Wallet...'),