From ff0ad2075246913f869d7410d5b9b0cd37f713f4 Mon Sep 17 00:00:00 2001 From: Ruben Barkow Date: Sun, 11 Dec 2016 03:13:28 +0100 Subject: [PATCH] gluon-config-mode-core: hand over more info to the reboot screen (#930) --- docs/site-example/i18n/de.po | 4 ++-- docs/site-example/i18n/en.po | 6 ++--- docs/site-example/i18n/fr.po | 6 ++--- .../config-mode/reboot/0900-msg-reboot.lua | 22 ++++++++++++++++++- 4 files changed, 29 insertions(+), 9 deletions(-) diff --git a/docs/site-example/i18n/de.po b/docs/site-example/i18n/de.po index 872d2d1c..6eb0e469 100644 --- a/docs/site-example/i18n/de.po +++ b/docs/site-example/i18n/de.po @@ -33,8 +33,8 @@ msgstr "" msgid "gluon-config-mode:reboot" msgstr "" -"

Dein Knoten startet gerade neu und wird anschließend versuchen, " -"sich mit anderen Freifunkknoten in seiner Nähe zu " +"

Dein Knoten <%= escape(hostname) %> startet gerade neu und wird " +"anschließend versuchen, sich mit anderen Freifunkknoten in seiner Nähe zu " "verbinden. Weitere Informationen zur " "Alpha Centauri Freifunk-Community findest du auf " "unserer Webseite.

" diff --git a/docs/site-example/i18n/en.po b/docs/site-example/i18n/en.po index e119818b..7df16365 100644 --- a/docs/site-example/i18n/en.po +++ b/docs/site-example/i18n/en.po @@ -30,9 +30,9 @@ msgstr "" msgid "gluon-config-mode:reboot" msgstr "" -"

The node is currently rebooting and will try to connect to other " -"nearby Freifunk nodes after that. " -"For more information on the Freifunk Alpha Centauri community, have a look at " +"

Your node <%= escape(hostname) %> is currently rebooting and will " +"try to connect to other nearby Freifunk nodes after that. For more " +"information about the Freifunk community on Alpha Centauri, have a look at " "our homepage.

" "

To get back to this configuration interface, press the reset button for " "3 seconds during normal operation. The device will then reboot into config " diff --git a/docs/site-example/i18n/fr.po b/docs/site-example/i18n/fr.po index e83ce0de..2e05db22 100644 --- a/docs/site-example/i18n/fr.po +++ b/docs/site-example/i18n/fr.po @@ -14,7 +14,7 @@ msgid "gluon-config-mode:welcome" msgstr "" "Bienvenue dans l'assistant de configuration pour votre nouveau nœud " "Freifunk. Remplissez le formulaire suivant en fonction de vos besoins " -"et enregistrez le" +"et enregistrez le" msgid "gluon-config-mode:pubkey" msgstr "" @@ -33,8 +33,8 @@ msgstr "" msgid "gluon-config-mode:reboot" msgstr "" -"

Votre nœud es en train de redémarrer et va ensuite éssayer de se connecter " -"avec les autres nœuds du réseau Freifunk " +"

Votre nœud <%= escape(hostname) %> es en train de redémarrer et " +"va ensuite éssayer de se connecter avec les autres nœuds du réseau Freifunk " "Vous pourrez trouver plus d'informations sur votre groupe Freifunk sur la page " " de ton groupe .

" "

Pour retrouver cette page de configuration veuillier appuyez pendant le " diff --git a/package/gluon-config-mode-core/luasrc/lib/gluon/config-mode/reboot/0900-msg-reboot.lua b/package/gluon-config-mode-core/luasrc/lib/gluon/config-mode/reboot/0900-msg-reboot.lua index bf27c07f..96557f41 100644 --- a/package/gluon-config-mode-core/luasrc/lib/gluon/config-mode/reboot/0900-msg-reboot.lua +++ b/package/gluon-config-mode-core/luasrc/lib/gluon/config-mode/reboot/0900-msg-reboot.lua @@ -1,3 +1,23 @@ local i18n = require 'luci.i18n' +local site = require 'gluon.site_config' +local gluon_luci = require 'gluon.luci' +local sysconfig = require 'gluon.sysconfig' +local pretty_hostname = require 'pretty_hostname' -return function () luci.template.render_string(i18n.translate('gluon-config-mode:reboot')) end +local uci = luci.model.uci.cursor() + +local hostname = pretty_hostname.get(uci) +local contact = uci:get_first('gluon-node-info', 'owner', 'contact') + +local msg = i18n.translate('gluon-config-mode:reboot') + +return function () + luci.template.render_string(msg, { + hostname = hostname, + site = site, + sysconfig = sysconfig, + contact = contact, + escape = gluon_luci.escape, + urlescape = gluon_luci.urlescape, + }) +end