Merge pull request #5214 from cmgustavo/bug/translations-01

Adds missing translation. Removes translation for Amazon.com Gift Cards
This commit is contained in:
Gabriel Edgardo Bazán 2016-12-13 11:50:22 -03:00 committed by GitHub
commit 5d1969e7ca
2 changed files with 4 additions and 2 deletions

View file

@ -135,7 +135,7 @@
<i class="icon big-icon-svg"> <i class="icon big-icon-svg">
<div class="bg icon-amazon"></div> <div class="bg icon-amazon"></div>
</i> </i>
<span translate>Amazon.com Gift Cards</span> <span>Amazon.com Gift Cards</span>
<i class="icon bp-arrow-right"></i> <i class="icon bp-arrow-right"></i>
</a> </a>
</div> </div>

View file

@ -14,7 +14,9 @@
<img src="img/icon-tx-sent-outline.svg" ng-if="btx.action === 'sent'"> <img src="img/icon-tx-sent-outline.svg" ng-if="btx.action === 'sent'">
<img src="img/icon-tx-received-outline.svg" ng-if="btx.action === 'received'"> <img src="img/icon-tx-received-outline.svg" ng-if="btx.action === 'received'">
<img src="img/icon-tx-moved-outline.svg" ng-if="btx.action === 'moved'"> <img src="img/icon-tx-moved-outline.svg" ng-if="btx.action === 'moved'">
<span>{{btx.action | translate}}</span> <span ng-if="btx.action === 'sent'">{{'Sent' | translate}}</span>
<span ng-if="btx.action === 'received'">{{'Received' | translate}}</span>
<span ng-if="btx.action === 'moved'">{{'Moved' | translate}}</span>
</div> </div>
<div class="sending-label" ng-if="btx.confirmations === 0"> <div class="sending-label" ng-if="btx.confirmations === 0">
<img src="img/icon-confirming.svg"> <img src="img/icon-confirming.svg">