Add strings to translate

This commit is contained in:
Gustavo Maximiliano Cortez 2017-06-15 19:42:00 -03:00
commit 7094401312
No known key found for this signature in database
GPG key ID: 15EDAD8D9F2EB1AF
3 changed files with 185 additions and 76 deletions

View file

@ -187,9 +187,9 @@ angular.module('copayApp.controllers').controller('topUpController', function($s
return;
}
title = gettextCatalog.getString('Sending {{amountStr}} from {{name}}', {
title = gettextCatalog.getString('Sending {{amountStr}} from {{walletName}}', {
amountStr: txFormatService.formatAmountStr(ctxp.amount, true),
name: $scope.wallet.name
walletName: $scope.wallet.name
});
message = gettextCatalog.getString("{{fee}} will be deducted for bitcoin networking fees.", {
fee: txFormatService.formatAmountStr(ctxp.fee)