Add more translate attributes.

This commit is contained in:
Andy Phillipson 2016-12-13 12:49:23 -05:00
parent 0f351ddf77
commit 718741595e
2 changed files with 5 additions and 5 deletions

View File

@ -1,6 +1,6 @@
<ion-modal-view id="wallet-balance">
<ion-header-bar align-title="center" ng-style="{'background-color': wallet.color}">
<button class="button button-clear" ng-click="close()">
<button class="button button-clear" ng-click="close()" translate>
Close
</button>
<div class="title" translate>

View File

@ -140,7 +140,7 @@
</div>
</div> <!-- oh -->
<a class="wallet-not-backed-up-warning" ng-if="wallet.needsBackup" ui-sref="tabs.wallet.backupWarning({from: 'tabs.wallet'})">
<a class="wallet-not-backed-up-warning" ng-if="wallet.needsBackup" ui-sref="tabs.wallet.backupWarning({from: 'tabs.wallet'})" translate>
Wallet not backed up
</a>
@ -194,7 +194,7 @@
<div class="wallet-details__list" ng-show="txHistory[0]">
<div ng-repeat="btx in txHistory track by $index" ng-click="openTxModal(btx)">
<div class="wallet-details__group-label" ng-if="isFirstInGroup($index)">
<span ng-if="isDateInCurrentMonth(getDate(btx.time))">
<span ng-if="isDateInCurrentMonth(getDate(btx.time))" translate>
Recent
</span>
<span ng-if="!isDateInCurrentMonth(getDate(btx.time))">
@ -236,8 +236,8 @@
<div class="wallet-details__tx-title" ng-if="isUnconfirmed(btx)">
<div class="ellipsis" style="color: #B4B4B4;">
<span ng-if="btx.action == 'sent' || btx.action == 'moved'">Sending</span>
<span ng-if="btx.action == 'received'">Receiving</span>
<span ng-if="btx.action == 'sent' || btx.action == 'moved'" translate>Sending</span>
<span ng-if="btx.action == 'received'" translate>Receiving</span>
</div>
</div>