Fix Japanese and English

This commit is contained in:
dabura667 2015-07-18 14:52:36 +09:00
commit 937aecd8b4
3 changed files with 10 additions and 9 deletions

View file

@ -98,11 +98,11 @@ angular.module('copayApp.controllers').controller('walletHomeController', functi
if (err.message) {
// TODO : this is not used anymore?
if (err.message.indexOf('CORS') >= 0) {
err.message = gettext('Could not connect wallet service. Check your Internet connexion and your wallet service configuration.');
err.message = gettext('Could not connect wallet service. Check your Internet connection and your wallet service configuration.');
}
if (err.message.indexOf('TIMEDOUT') >= 0) {
err.message = gettext('Wallet service timed out. Check your Internet connexion and your wallet service configuration.');
err.message = gettext('Wallet service timed out. Check your Internet connection and your wallet service configuration.');
}
}
};