Fixes translations

This commit is contained in:
Gustavo Maximiliano Cortez 2015-09-09 17:53:05 -03:00 committed by Matias Alejo Garcia
commit 783b9207bf
3 changed files with 640 additions and 123 deletions

File diff suppressed because it is too large Load diff

View file

@ -10,7 +10,7 @@
<div ng-show="wordsC.mnemonicWords"> <div ng-show="wordsC.mnemonicWords">
<div class="row" ng-show="index.n==1"> <div class="row" ng-show="index.n==1">
<div class="m10t columns size-14 text-gray" translate> <div class="m10t columns size-14 text-gray">
<span translate> <span translate>
You need the wallet seed to restore this personal wallet. You need the wallet seed to restore this personal wallet.
</span> </span>
@ -20,26 +20,26 @@
</div> </div>
</div> </div>
<div class="row" ng-show="(index.n>1 && index.m != index.n )"> <div class="row" ng-show="(index.n>1 && index.m != index.n )">
<div class="m10t columns size-14 text-gray" translate> <div class="m10t columns size-14 text-gray">
<span translate> <span translate>
To restore this {{index.m}}-{{index.n}} shared wallet you will need: To restore this {{index.m}}-{{index.n}} shared wallet you will need
</span>: </span>:
<ol class="m10t columns size-14 text-gray"> <ol class="m10t columns size-14 text-gray">
<li> Your wallet seed and access to the wallet service where your wallet is registered <li translate>Your wallet seed and access to the wallet service where your wallet is registered</li>
<li> <b>OR</b> the wallet seed of <b>all</b> copayers in the wallet <li translate><b>OR</b> the wallet seed of <b>all</b> copayers in the wallet</li>
<li> <b>OR</b> 1 wallet export file and the remaining quorum of wallet seeds (e.g. in a 3-5 wallet: 1 wallet export file + 2 wallet seeds of any of the other copayers). <li translate><b>OR</b> 1 wallet export file and the remaining quorum of wallet seeds (e.g. in a 3-5 wallet: 1 wallet export file + 2 wallet seeds of any of the other copayers).</li>
</ol> </ol>
</span> </span>
</div> </div>
</div> </div>
<div class="row" ng-show="(index.n>1 && index.m == index.n )"> <div class="row" ng-show="(index.n>1 && index.m == index.n )">
<div class="m10t columns size-14 text-gray" translate> <div class="m10t columns size-14 text-gray">
<span translate> <span translate>
To restore this {{index.m}}-{{index.n}} <b>shared</b> wallet you will need To restore this {{index.m}}-{{index.n}} <b>shared</b> wallet you will need
</span>: </span>:
<ol class="m10t columns size-14 text-gray"> <ol class="m10t columns size-14 text-gray">
<li> Your wallet seed and access to the wallet service where wallet is registered <li translate> Your wallet seed and access to the wallet service where wallet is registered</li>
<li> <b>OR</b> the wallet seeds of <b>all</b> copayers in the wallet <li translate><b>OR</b> the wallet seeds of <b>all</b> copayers in the wallet</li>
</ol> </ol>
</span> </span>
</div> </div>
@ -48,7 +48,7 @@
<div class="row m20t" ng-show="!wordsC.mnemonicWords"> <div class="row m20t" ng-show="!wordsC.mnemonicWords">
<div class="columns size-14 text-gray text-center" translate> <div class="columns size-14 text-gray text-center" translate>
Wallet seed not available. You can still export it from Advanced &gt; Export . Wallet seed not available. You can still export it from Advanced &gt; Export.
</div> </div>
</div> </div>
@ -87,7 +87,7 @@
<div class="m10 text-center columns"> <div class="m10 text-center columns">
<div class="m10 size-14 text-gray" translate> <div class="m10 size-14 text-gray">
<span translate> <span translate>
Once you have copy your wallet seed, it is recommended to delete it from this device. Once you have copy your wallet seed, it is recommended to delete it from this device.
</span> </span>
@ -103,11 +103,11 @@
<!-- hide this in multisig just to show less text --> <!-- hide this in multisig just to show less text -->
<div class="row m20t" ng-show="index.n==1"> <div class="row m20t" ng-show="index.n==1">
<div class="columns size-14 text-gray" translate> <div class="columns size-14 text-gray">
You can safely install your wallet on another device and use it from multiple devices at the same time. <a href="#" ng-click="$root.openExternalLink('https://github.com/bitpay/copay#backups')"> <span translate>You can safely install your wallet on another device and use it from multiple devices at the same time.</span>
<span translate>Learn more about Copay backups</span> <a href="#" ng-click="$root.openExternalLink('https://github.com/bitpay/copay#backups')" translate>
Learn more about Copay backups
</a> </a>
</div> </div>
</div> </div>

View file

@ -3,7 +3,7 @@
angular.module('copayApp.controllers').controller('wordsController', angular.module('copayApp.controllers').controller('wordsController',
function($rootScope, $scope, $timeout, profileService, go, gettext, confirmDialog, notification) { function($rootScope, $scope, $timeout, profileService, go, gettext, confirmDialog, notification) {
var msg = gettext('Are you to delete the backup words?'); var msg = gettext('Are you sure you want to delete the backup words?');
var successMsg = gettext('Backup words deleted'); var successMsg = gettext('Backup words deleted');
this.done = function() { this.done = function() {