Adds strings to translate. Fix layouts

This commit is contained in:
Gustavo Maximiliano Cortez 2015-10-02 15:23:44 -03:00
commit 36e9734ea4
No known key found for this signature in database
GPG key ID: 15EDAD8D9F2EB1AF
2 changed files with 23 additions and 23 deletions

View file

@ -1,9 +1,9 @@
angular.module('copayApp.controllers').controller('paperWalletController',
function($scope, $http, $timeout, profileService, go, addressService) {
function($scope, $http, $timeout, profileService, go, addressService, isCordova) {
self = this;
var fc = profileService.focusedClient;
var rawTx;
if (isCordova) self.message = "Decrypting a paper wallet could take around 5 minutes on this device. please be patient and keep the app open."
self.isCordova = !isCordova;
self.onQrCodeScanned = function(data) {
$scope.privateKey = data;
@ -82,4 +82,4 @@ angular.module('copayApp.controllers').controller('paperWalletController',
rawtx: rawTx
});
};
});
});