simplify error message

This commit is contained in:
Ivan Socolsky 2016-06-30 17:23:29 -03:00
commit 9bffcc7db8
No known key found for this signature in database
GPG key ID: FAECE6A05FAA4F56

View file

@ -40,7 +40,7 @@ angular.module('copayApp.controllers').controller('importController',
var parsedCode = code.split('|');
if (parsedCode.length != 5) {
$scope.error = gettext('Cannot read the code properly. Missing parameters');
$scope.error = gettext('Incorrect code format');
return;
}