From 1fca4f4a34ff976c91d1c00366014e70bf929a6d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michael=20Mur=C3=A9?= Date: Sun, 17 Aug 2014 15:46:19 +0200 Subject: [PATCH] Add a counter of supported currencies --- index.html | 7 +++++-- l10n/fr.js | 2 +- src/index.html | 2 +- src/ninja.onload.js | 3 +++ 4 files changed, 10 insertions(+), 4 deletions(-) diff --git a/index.html b/index.html index 3b8488f..1d257bf 100644 --- a/index.html +++ b/index.html @@ -9787,7 +9787,7 @@ h1 { margin: 0px; height: 91px; }
- Supported currencies : + supported currencies !
@@ -11064,7 +11064,7 @@ ninja.translator = { "securitystep6": "Faites un essai avec un montant faible avant de recevoir des paiements importants.", "securitychecktitle": "Liste de sécurité :", "securitychecklivecd": "Utilisez vous un système d'exploitation garanti sans malware ou virus, comme par exemple un live-CD Ubuntu ?", - "supportedcurrencylbl": "Monnaies supportées :", + "supportedcurrencylbl": "monnaies supportées !", "paperlabelencrypt": "Chiffrer en BIP38 ?", "paperlabelBIPpassphrase": "Phrase de passe:", "bulklabelstartindex": "Index de départ:", @@ -12306,13 +12306,16 @@ select.innerHTML = options; // populate supported currency list var supportedcurrencies = document.getElementById("supportedcurrencies"); var currencieslist = ""; +j = 0; for(i = 0; i < janin.currencies.length; i++) { if(janin.currencies[i].donate == null) continue; currencieslist += ""+janin.currencies[i].name+" "; + j++; } supportedcurrencies.innerHTML = currencieslist; +document.getElementById("supportedcurrenciescounter").innerHTML = j.toString() + " "; // populate donate list document.getElementById("donateqrcode").style.display = "none"; var donatelist = document.getElementById("donatelist"); diff --git a/l10n/fr.js b/l10n/fr.js index cf74be2..79bfd18 100644 --- a/l10n/fr.js +++ b/l10n/fr.js @@ -29,7 +29,7 @@ "securitystep6": "Faites un essai avec un montant faible avant de recevoir des paiements importants.", "securitychecktitle": "Liste de sécurité :", "securitychecklivecd": "Utilisez vous un système d'exploitation garanti sans malware ou virus, comme par exemple un live-CD Ubuntu ?", - "supportedcurrencylbl": "Monnaies supportées :", + "supportedcurrencylbl": "monnaies supportées !", "paperlabelencrypt": "Chiffrer en BIP38 ?", "paperlabelBIPpassphrase": "Phrase de passe:", "bulklabelstartindex": "Index de départ:", diff --git a/src/index.html b/src/index.html index 67c85bd..81a627f 100644 --- a/src/index.html +++ b/src/index.html @@ -254,7 +254,7 @@ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
- Supported currencies : + supported currencies !
diff --git a/src/ninja.onload.js b/src/ninja.onload.js index 558da72..2dd741c 100644 --- a/src/ninja.onload.js +++ b/src/ninja.onload.js @@ -32,13 +32,16 @@ select.innerHTML = options; // populate supported currency list var supportedcurrencies = document.getElementById("supportedcurrencies"); var currencieslist = ""; +j = 0; for(i = 0; i < janin.currencies.length; i++) { if(janin.currencies[i].donate == null) continue; currencieslist += ""+janin.currencies[i].name+" "; + j++; } supportedcurrencies.innerHTML = currencieslist; +document.getElementById("supportedcurrenciescounter").innerHTML = j.toString() + " "; // populate donate list document.getElementById("donateqrcode").style.display = "none"; var donatelist = document.getElementById("donatelist");