Fix translation string. Complete some words in spanish
This commit is contained in:
parent
df698e9aa6
commit
e700634815
31 changed files with 1103 additions and 512 deletions
|
|
@ -1,7 +1,7 @@
|
|||
<div class="backup" ng-controller="MoreController">
|
||||
<div class="row show-for-large-up">
|
||||
<div class="large-12 medium-12 small-12 columns">
|
||||
<h1>{{$root.title}}</h1>
|
||||
<h1>{{$root.title|translate}}</h1>
|
||||
</div>
|
||||
</div>
|
||||
<form name="settingsForm">
|
||||
|
|
@ -24,32 +24,32 @@
|
|||
</form>
|
||||
<div class="row">
|
||||
<div class="large-8 columns" ng-init="isComplete = wallet.isComplete(); networkName = wallet.getNetworkName()">
|
||||
<h4>Wallet info</h4>
|
||||
<h4 translate>Wallet info</h4>
|
||||
<table>
|
||||
<tr>
|
||||
<td><strong>Name:</strong></td>
|
||||
<td><strong translate>Name:</strong></td>
|
||||
<td>{{wallet.name || wallet.id }}</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><strong>Status:</strong></td>
|
||||
<td><strong translate>Status:</strong></td>
|
||||
<td>{{isComplete ? 'Complete' : 'Waiting for copayers...'}}</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><strong>Type:</strong></td>
|
||||
<td><strong translate>Type:</strong></td>
|
||||
<td>{{wallet.requiredCopayers}} of {{wallet.totalCopayers}} - {{networkName}}</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><strong>Balance:</strong></td>
|
||||
<td><strong translate>Balance:</strong></td>
|
||||
<td><span ng-if="isComplete">{{wallet.balanceInfo.totalBalance || 0}} {{wallet.settings.unitName}}</span></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><strong>Aprox. size:</strong></td>
|
||||
<td><strong translate>Aprox. size:</strong></td>
|
||||
<td>{{wallet.kb}} kB <span ng-if="wallet.usage">({{wallet.usage}}%)</span></td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
<div class="large-4 columns" ng-if="$root.wallet.isShared()">
|
||||
<h4>Copayers</h4>
|
||||
<h4 translate>Copayers</h4>
|
||||
<div class="panel oh">
|
||||
<div ng-include="'views/includes/copayers.html'"></div>
|
||||
</div>
|
||||
|
|
@ -59,29 +59,33 @@
|
|||
<div class="row" ng-show="!backupWalletPlainText && !error">
|
||||
<div class="large-8 medium-12 small-12 columns">
|
||||
<button class="primary expand" ng-click="downloadWalletBackup()" ng-disabled="loading"
|
||||
ng-show="!isSafari && !isCordova"><i class="fi-download"></i> Download backup</button>
|
||||
ng-show="!isSafari && !isCordova"><i class="fi-download"></i>
|
||||
<span translate>Download backup</span></button>
|
||||
<button class="primary expand" ng-click="viewWalletBackup()" ng-disabled="loading"
|
||||
ng-show="isSafari && !isCordova"><i class="fi-eye"></i> View backup</button>
|
||||
ng-show="isSafari && !isCordova"><i class="fi-eye"></i>
|
||||
<span translate>View backup</span></button>
|
||||
<div ng-show="isCordova">
|
||||
<h4>Backup options</h4>
|
||||
<h4 translate>Backup options</h4>
|
||||
<button class="primary expand"
|
||||
ng-click="copyWalletBackup()"><i class="fi-clipboard-pencil"></i> Copy to clipboard</button>
|
||||
ng-click="copyWalletBackup()"><i class="fi-clipboard-pencil"></i>
|
||||
<span translate>Copy to clipboard</span></button>
|
||||
<button class="primary expand"
|
||||
ng-click="sendWalletBackup()"><i class="fi-mail"></i> Send by email</button>
|
||||
ng-click="sendWalletBackup()"><i class="fi-mail"></i>
|
||||
<span translate>Send by email</span></button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="row m20b" ng-show="backupWalletPlainText">
|
||||
<div class="large-12 columns">
|
||||
<h3>Copy backup in a safe place</h3>
|
||||
<h3 translate>Copy backup in a safe place</h3>
|
||||
<div class="input">
|
||||
<textarea class="show-for-large-up" readonly rows="7">{{backupWalletPlainText}}</textarea>
|
||||
<textarea class="hide-for-large-up" rows="12">{{backupWalletPlainText}}</textarea>
|
||||
</div>
|
||||
<div translate class="size-12 text-gray text-right">
|
||||
<div class="size-12 text-gray text-right">
|
||||
<i class="icon-compose"></i>
|
||||
Copy this text as it is in a safe place (notepad or email)
|
||||
<span translate>Copy this text as it is in a safe place (notepad or email)</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
@ -119,15 +123,15 @@
|
|||
</a>
|
||||
</div>
|
||||
<div class="text-center" ng-show="confirmDelete">
|
||||
<h2>Are you sure you want to delete this wallet?</h2>
|
||||
<h2 translate>Are you sure you want to delete this wallet?</h2>
|
||||
<div class="row">
|
||||
<div class="large-6 medium-6 small-6 columns">
|
||||
<button class="gray" ng-disabled="loading"
|
||||
ng-click="confirmDelete=!confirmDelete">Cancel</button>
|
||||
ng-click="confirmDelete=!confirmDelete" translate>Cancel</button>
|
||||
</div>
|
||||
<div class="large-6 medium-6 small-6 columns">
|
||||
<button class="warning" ng-disabled="loading" ng-click="deleteWallet()">
|
||||
<i class="fi-trash"></i> Delete
|
||||
<i class="fi-trash"></i> <span translate>Delete</span>
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
|
|
@ -149,7 +153,7 @@
|
|||
<textarea>{{priv}}</textarea>
|
||||
<span ng-if="isCordova" class="button outline dark-gray tiny"
|
||||
ng-click="copyText(priv)">
|
||||
<i class="fi-clipboard-pencil"></i> Copy to clipboard
|
||||
<i class="fi-clipboard-pencil"></i> <span translate>Copy to clipboard</span>
|
||||
</span>
|
||||
</div>
|
||||
</div>
|
||||
|
|
@ -203,7 +207,7 @@
|
|||
<textarea>{{secret}}</textarea>
|
||||
<span ng-if="isCordova" class="button outline dark-gray tiny"
|
||||
ng-click="copyText(secret)">
|
||||
<i class="fi-clipboard-pencil"></i> Copy to clipboard
|
||||
<i class="fi-clipboard-pencil"></i> <span translate>Copy to clipboard</span>
|
||||
</span>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue