Strings fixes

This commit is contained in:
Gustavo Maximiliano Cortez 2018-03-20 11:52:55 -03:00
parent 73b50dd48a
commit 678b94322d
No known key found for this signature in database
GPG Key ID: 15EDAD8D9F2EB1AF
4 changed files with 10 additions and 11 deletions

View File

@ -56,15 +56,15 @@ export class SendFeedbackPage {
switch (this.score) {
case 1:
this.reaction = this.translate.instant("Ouch!");
this.reaction = "Ouch!";
this.comment = this.translate.instant("There's obviously something we're doing wrong. How could we improve your experience?");
break;
case 2:
this.reaction = this.translate.instant("Oh no!");
this.reaction = "Oh no!";
this.comment = this.translate.instant("There's obviously something we're doing wrong. How could we improve your experience?");
break;
case 3:
this.reaction = this.translate.instant("Hmm...");
this.reaction = "Hmm...";
this.comment = this.translate.instant("We'd love to do better. How could we improve your experience?");
break;
case 4:

View File

@ -16,8 +16,7 @@
</ion-item>
<ion-item-divider text-wrap>
<div translate>
We are always looking for translation contributions! You can make corrections or help to make this app available in your native
language by joining our community on Crowdin.
We are always looking for translation contributions! You can make corrections or help to make this app available in your native language by joining our community on Crowdin.
</div>
<div translate>
Don't see your language on Crowdin? Contact the Owner on Crowdin! We'd love to support your language.

View File

@ -44,7 +44,7 @@
<form [formGroup]="emailForm">
<ion-item>
<ion-label stacked>{{ 'Email Address' | translate }}</ion-label>
<ion-label stacked>{{ 'Email' | translate }}</ion-label>
<ion-input formControlName="email" type="email"></ion-input>
</ion-item>
<div text-center>
@ -56,4 +56,4 @@
</div>
</ion-list>
</ion-content>
</ion-content>

View File

@ -7,7 +7,7 @@
<page-wallet-item *ngIf="wallet" [wallet]="wallet"></page-wallet-item>
<ion-list>
<ion-item (click)="saveBlack()">
<span translate>Wallet Name (at creation)</span>
<span translate>Name (at creation)</span>
<ion-note item-end>
{{walletName}}
</ion-note>
@ -19,7 +19,7 @@
</ion-note>
</ion-item>
<ion-item copy-to-clipboard="{{walletId}}">
<span translate>Wallet Id</span>
<span>Wallet Id</span>
<div padding-top>
<ion-note text-wrap>
{{walletId}}
@ -27,13 +27,13 @@
</div>
</ion-item>
<ion-item>
<span translate>Wallet Configuration (m-n)</span>
<span translate>Configuration (m-n)</span>
<ion-note item-end>
{{M}}-{{N}}
</ion-note>
</ion-item>
<ion-item>
<span translate>Wallet Network</span>
<span translate>Network</span>
<ion-note item-end>
{{network}}
</ion-note>