From c5327d85acfe54f58d7bb1949c3798ffa4f7b54c Mon Sep 17 00:00:00 2001 From: Laurent Peuch Date: Mon, 8 Jan 2018 04:11:01 +0100 Subject: [PATCH] [enh] display stable/testing/unstable in footer --- src/js/yunohost/events.js | 2 +- src/js/yunohost/main.js | 4 ++-- src/locales/en.json | 2 +- src/locales/fr.json | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/src/js/yunohost/events.js b/src/js/yunohost/events.js index 7a845d22..cde91e94 100644 --- a/src/js/yunohost/events.js +++ b/src/js/yunohost/events.js @@ -9,7 +9,7 @@ */ app.bind('login', function(e, data) { this.api('/version', function(versions) { - $('#yunohost-version').html(y18n.t('footer_version', [versions.yunohost])); + $('#yunohost-version').html(y18n.t('footer_version', [versions.yunohost.version, versions.yunohost.repo])); }); }); diff --git a/src/js/yunohost/main.js b/src/js/yunohost/main.js index 595c218b..2c6b1b70 100644 --- a/src/js/yunohost/main.js +++ b/src/js/yunohost/main.js @@ -77,7 +77,7 @@ // Get YunoHost version if (sam.store.get('connected')) { this.api('/version', function(versions) { - $('#yunohost-version').html(y18n.t('footer_version', [versions.yunohost])); + $('#yunohost-version').html(y18n.t('footer_version', [versions.yunohost.version, versions.yunohost.repo])); }); } @@ -133,4 +133,4 @@ app.run('#/'); }); -})(); \ No newline at end of file +})(); diff --git a/src/locales/en.json b/src/locales/en.json index 8c6fe9c3..4b0076ff 100644 --- a/src/locales/en.json +++ b/src/locales/en.json @@ -131,7 +131,7 @@ "everyone_has_access": "Everyone has access.", "filesystem": "Filesystem", "firewall": "Firewall", - "footer_version" : "Powered by YunoHost %s.", + "footer_version" : "Powered by YunoHost %s (%s).", "form_input_example" : "Example: %s", "free": "Free", "fs_type": "FS Type", diff --git a/src/locales/fr.json b/src/locales/fr.json index 5766673b..caeb33a0 100644 --- a/src/locales/fr.json +++ b/src/locales/fr.json @@ -296,7 +296,7 @@ "wrong_password": "Mot de passe incorrect", "yes": "Oui", "form_input_example": "Exemple : %s", - "footer_version": "Propulsé par YunoHost %s.", + "footer_version": "Propulsé par YunoHost %s (%s).", "certificate_alert_not_valid": "Critique : le certificat actuel est invalide ! Le HTTPS ne fonctionnera pas du tout !", "certificate_alert_selfsigned": "Attention : le certification actuel est auto-signé. Les navigateurs afficheront une alerte effrayante aux nouveaux visiteurs !", "certificate_alert_letsencrypt_about_to_expire": "Le certificat actuel est sur le point d’expirer. Il doit être renouvelé automatiquement prochainement.",