Fix typos

This commit is contained in:
Derek Miller 2016-01-16 17:04:01 -06:00
commit d5516ed394
7 changed files with 8 additions and 8 deletions

View file

@ -32,7 +32,7 @@ angular.module('copayApp.services')
$log.debug("case 3");
} else {
// We're screwed, blob constructor unsupported entirely
$log.debug("Errore");
$log.debug("Error");
}
}
return out;

View file

@ -88,7 +88,7 @@ angular.module('copayApp.services')
body = gettextCatalog.getString('Server response could not be verified');
break;
case 'WALLET_DOES_NOT_EXIST':
body = gettextCatalog.getString('Wallet not registed at the Wallet Service. Recreate it from "Create Wallet" using "Advanced Options" to set your seed');
body = gettextCatalog.getString('Wallet not registered at the wallet service. Recreate it from "Create Wallet" using "Advanced Options" to set your seed');
break;
case 'INVALID_BACKUP':
body = gettextCatalog.getString('Wallet seed is invalid');

View file

@ -88,7 +88,7 @@ angular.module('copayApp.services').factory('go', function($window, $rootScope,
// Global go. This should be in a better place TODO
// We dont do a 'go' directive, to use the benefits of ng-touch with ng-click
// We don't do a 'go' directive, to use the benefits of ng-touch with ng-click
$rootScope.go = function(path) {
root.path(path);
};

View file

@ -4,7 +4,7 @@ angular.module('copayApp.services')
var root = {};
// File storage is not supported for writting according to
// File storage is not supported for writing according to
// https://github.com/apache/cordova-plugin-file/#supported-platforms
var shouldUseFileStorage = isCordova && !isMobile.Windows();
$log.debug('Using file storage:', shouldUseFileStorage);