mirror of
https://github.com/YunoHost/yunohost-admin.git
synced 2024-09-03 20:06:15 +02:00
[enh] display stable/testing/unstable in footer
This commit is contained in:
parent
2d1678a468
commit
c5327d85ac
4 changed files with 5 additions and 5 deletions
|
@ -9,7 +9,7 @@
|
||||||
*/
|
*/
|
||||||
app.bind('login', function(e, data) {
|
app.bind('login', function(e, data) {
|
||||||
this.api('/version', function(versions) {
|
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]));
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
|
@ -77,7 +77,7 @@
|
||||||
// Get YunoHost version
|
// Get YunoHost version
|
||||||
if (sam.store.get('connected')) {
|
if (sam.store.get('connected')) {
|
||||||
this.api('/version', function(versions) {
|
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('#/');
|
app.run('#/');
|
||||||
});
|
});
|
||||||
|
|
||||||
})();
|
})();
|
||||||
|
|
|
@ -131,7 +131,7 @@
|
||||||
"everyone_has_access": "Everyone has access.",
|
"everyone_has_access": "Everyone has access.",
|
||||||
"filesystem": "Filesystem",
|
"filesystem": "Filesystem",
|
||||||
"firewall": "Firewall",
|
"firewall": "Firewall",
|
||||||
"footer_version" : "Powered by <a href='https://yunohost.org'>YunoHost</a> %s.",
|
"footer_version" : "Powered by <a href='https://yunohost.org'>YunoHost</a> %s (%s).",
|
||||||
"form_input_example" : "Example: %s",
|
"form_input_example" : "Example: %s",
|
||||||
"free": "Free",
|
"free": "Free",
|
||||||
"fs_type": "FS Type",
|
"fs_type": "FS Type",
|
||||||
|
|
|
@ -296,7 +296,7 @@
|
||||||
"wrong_password": "Mot de passe incorrect",
|
"wrong_password": "Mot de passe incorrect",
|
||||||
"yes": "Oui",
|
"yes": "Oui",
|
||||||
"form_input_example": "Exemple : %s",
|
"form_input_example": "Exemple : %s",
|
||||||
"footer_version": "Propulsé par <a href='https://yunohost.org'>YunoHost</a> %s.",
|
"footer_version": "Propulsé par <a href='https://yunohost.org'>YunoHost</a> %s (%s).",
|
||||||
"certificate_alert_not_valid": "Critique : le certificat actuel est invalide ! Le HTTPS ne fonctionnera pas du tout !",
|
"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_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.",
|
"certificate_alert_letsencrypt_about_to_expire": "Le certificat actuel est sur le point d’expirer. Il doit être renouvelé automatiquement prochainement.",
|
||||||
|
|
Loading…
Reference in a new issue