Removes unnecessary translation. Fix javascript error

This commit is contained in:
Gustavo Maximiliano Cortez 2017-04-20 10:15:52 -03:00
commit 87aa0ea29b
No known key found for this signature in database
GPG key ID: 15EDAD8D9F2EB1AF
2 changed files with 2 additions and 2 deletions

View file

@ -184,7 +184,7 @@ angular.module('copayApp.controllers').controller('createController',
src = intelTEE;
break;
default:
this.error = gettextCatalog.getString('Invalid seed source id: ' + $scope.seedSource.id);
popupService.showAlert(gettextCatalog.getString('Error'), 'Invalid seed source id');
return;
}

View file

@ -160,7 +160,7 @@ angular.module('copayApp.controllers').controller('joinController',
src = intelTEE;
break;
default:
this.error = gettextCatalog.getString('Invalid seed source id: ' + self.seedSourceId);
popupService.showAlert(gettextCatalog.getString('Error'), 'Invalid seed source id');
return;
}