Fix translations. Updates POT

This commit is contained in:
Gustavo Maximiliano Cortez 2017-09-04 15:48:11 -03:00
commit 5373faf744
No known key found for this signature in database
GPG key ID: 15EDAD8D9F2EB1AF
6 changed files with 407 additions and 363 deletions

View file

@ -335,11 +335,23 @@ angular.module('copayApp.controllers').controller('confirmController', function(
$scope.buttonText = gettextCatalog.getString(isCordova && !isWindowsPhoneApp ? 'Slide' : 'Click') + ' ';
if (isPayPro) {
$scope.buttonText += gettextCatalog.getString('to pay');
if (isCordova && !isWindowsPhoneApp) {
$scope.buttonText = gettextCatalog.getString('Slide to pay');
} else {
$scope.buttonText = gettextCatalog.getString('Click to pay');
}
} else if (isMultisig) {
$scope.buttonText += gettextCatalog.getString('to accept');
if (isCordova && !isWindowsPhoneApp) {
$scope.buttonText = gettextCatalog.getString('Slide to accept');
} else {
$scope.buttonText = gettextCatalog.getString('Click to accept');
}
} else
$scope.buttonText += gettextCatalog.getString('to send');
if (isCordova && !isWindowsPhoneApp) {
$scope.buttonText = gettextCatalog.getString('Slide to send');
} else {
$scope.buttonText = gettextCatalog.getString('Click to send');
}
};