From 840a7337fe7e85ce713e8f2d1614e67fb9c5ff8e Mon Sep 17 00:00:00 2001 From: blavenie <benoit.lavenier@e-is.pro> Date: Mon, 27 Feb 2017 14:50:53 +0100 Subject: [PATCH] fix #357 --- www/i18n/locale-en-GB.json | 2 +- www/i18n/locale-en.json | 2 +- www/i18n/locale-fr-FR.json | 2 +- www/js/controllers/join-controllers.js | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/www/i18n/locale-en-GB.json b/www/i18n/locale-en-GB.json index 2a6bf237b..cc74d1823 100644 --- a/www/i18n/locale-en-GB.json +++ b/www/i18n/locale-en-GB.json @@ -438,7 +438,7 @@ "REFRESH_WALLET_DATA": "Could not refresh wallet.", "GET_CURRENCY_PARAMETER": "Could not get currency parameters.", "GET_CURRENCIES_FAILED": "Unable to load currencies. Please retry later.", - "GET_CURRENCY_FAILED": "Could not load currency.", + "GET_CURRENCY_FAILED": "Could not load currency. Please retry later.", "SEND_TX_FAILED": "Could not send transaction.", "ALL_SOURCES_USED": "Please wait the next block computation (All transaction sources has been used).", "NOT_ENOUGH_SOURCES": "Not enough changes to send this amount in one time.<br/>Maximum amount: {{amount}} {{unit}}<sub>{{subUnit}}</sub>.", diff --git a/www/i18n/locale-en.json b/www/i18n/locale-en.json index 2855fb467..eebb42a5f 100644 --- a/www/i18n/locale-en.json +++ b/www/i18n/locale-en.json @@ -438,7 +438,7 @@ "REFRESH_WALLET_DATA": "Could not refresh wallet.", "GET_CURRENCY_PARAMETER": "Could not get currency parameters.", "GET_CURRENCIES_FAILED": "Unable to load currencies. Please retry later.", - "GET_CURRENCY_FAILED": "Could not load currency.", + "GET_CURRENCY_FAILED": "Could not load currency. Please retry later.", "SEND_TX_FAILED": "Could not send transaction.", "ALL_SOURCES_USED": "Please wait the next block computation (All transaction sources has been used).", "NOT_ENOUGH_SOURCES": "Not enough changes to send this amount in one time.<br/>Maximum amount: {{amount}} {{unit}}<sub>{{subUnit}}</sub>.", diff --git a/www/i18n/locale-fr-FR.json b/www/i18n/locale-fr-FR.json index 9efb15573..b3fc73519 100644 --- a/www/i18n/locale-fr-FR.json +++ b/www/i18n/locale-fr-FR.json @@ -438,7 +438,7 @@ "REFRESH_WALLET_DATA": "Echec du rafraichissement du portefeuille.", "GET_CURRENCY_PARAMETER": "Echec de la récupération des règles de la monnaie.", "GET_CURRENCIES_FAILED": "Impossible de charger la liste des monnaies. Veuillez ressayer plus tard.", - "GET_CURRENCY_FAILED": "Chargement de la monnaie impossible.", + "GET_CURRENCY_FAILED": "Chargement de la monnaie impossible. Veuillez ressayer plus tard.", "SEND_TX_FAILED": "Echec du virement.", "ALL_SOURCES_USED": "Veuillez attendre le calcul du prochain bloc (Toutes vos sources de monnaie ont été utilisées).", "NOT_ENOUGH_SOURCES": "Pas assez de change pour envoyer ce montant en une seule transaction.<br/>Montant maximum : {{amount}} {{unit}}<sub>{{subUnit}}</sub>.", diff --git a/www/js/controllers/join-controllers.js b/www/js/controllers/join-controllers.js index 7f636a86b..46f5fc06e 100644 --- a/www/js/controllers/join-controllers.js +++ b/www/js/controllers/join-controllers.js @@ -66,7 +66,7 @@ function JoinModalController($scope, $state, UIUtils, CryptoUtils, Modals, csWa } $scope.search.looking = false; }) - .catch(UIUtils.onError('GET_CURRENCIES_FAILED')); + .catch(UIUtils.onError('ERROR.GET_CURRENCIES_FAILED')); $scope.slidePrev = function() { $scope.slides.slider.unlockSwipes(); -- GitLab