diff --git a/package/gluon-luci-admin/files/usr/lib/lua/luci/model/cbi/admin/remote.lua b/package/gluon-luci-admin/files/usr/lib/lua/luci/model/cbi/admin/remote.lua index ebbba3a3..4513d59c 100644 --- a/package/gluon-luci-admin/files/usr/lib/lua/luci/model/cbi/admin/remote.lua +++ b/package/gluon-luci-admin/files/usr/lib/lua/luci/model/cbi/admin/remote.lua @@ -26,7 +26,7 @@ m.template = "admin/expertmode" if fs.access("/etc/config/dropbear") then s = m:section(TypedSection, "_keys", nil, - "Here you can paste public SSH-Keys (one per line) for SSH public-key authentication.") + "Hier hast du die Möglichkeit SSH-Keys (einen pro Zeile) zu hinterlegen:") s.addremove = false s.anonymous = true @@ -54,15 +54,15 @@ if fs.access("/etc/config/dropbear") then end s = m:section(TypedSection, "_pass", nil, - "Changes the administrator password for accessing the device") + "Alternativ kannst du auch ein Passwort setzen. Wähle bitte ein sicheres Passwort, das du nirgendswo anders verwendest.") s.addremove = false s.anonymous = true -pw1 = s:option(Value, "pw1", "Password") +pw1 = s:option(Value, "pw1", "Passwort") pw1.password = true -pw2 = s:option(Value, "pw2", "Confirmation") +pw2 = s:option(Value, "pw2", "Wiederholung") pw2.password = true function s.cfgsections() @@ -76,12 +76,12 @@ function m.on_commit(map) if v1 and v2 and #v1 > 0 and #v2 > 0 then if v1 == v2 then if luci.sys.user.setpasswd(luci.dispatcher.context.authuser, v1) == 0 then - m.message = "Password successfully changed!" + m.message = "Passwort geändert." else - m.errmessage = "Unknown Error, password not changed!" + m.errmessage = "Das Passwort konnte nicht geändert werden." end else - m.errmessage = "Given password confirmation did not match, password not changed!" + m.errmessage = "Die beiden Passwörter stimmen nicht überein." end end end diff --git a/package/gluon-luci-admin/files/usr/lib/lua/luci/view/admin/expertmode.htm b/package/gluon-luci-admin/files/usr/lib/lua/luci/view/admin/expertmode.htm index 5fe211b8..2907ecb3 100644 --- a/package/gluon-luci-admin/files/usr/lib/lua/luci/view/admin/expertmode.htm +++ b/package/gluon-luci-admin/files/usr/lib/lua/luci/view/admin/expertmode.htm @@ -15,7 +15,6 @@ <% if self.title and #self.title > 0 then %>
Auf diesem Gerät kann kein Upgrade durchgeführt werden. + Bitte führe das Upgrade manuell durch.
<% end %> <% elseif step == 2 then %>
- The flash image was uploaded.
- Below is the checksum and file size listed,
- compare them with the original file to ensure data integrity.
- Click "Proceed" below to start the flash procedure.
+ Die Firmwaredatei wurde übermittelt. Bitte vergleiche MD5-Checksumme
+ und Dateigröße und klicke anschließend auf "Fortfahren".
+
Die Firmware passt nicht in den Speicher des Gerätes.
+ <% end %> -
<%=checksum%>
<%=checksum%>
The system is flashing now.
- DO NOT POWER OFF THE DEVICE!
- Wait a few minutes until you try to reconnect.
- It might be necessary to renew the address of your computer to reach the device
- again, depending on your settings.
+ Die Firmware wird jetzt aktualisiert. + UNTERBRECHE AUF KEINEN FALL DIE STROMVERSORGUNG! + Dieser Vorgang wird einige Minuten dauern. Anschließend startet + das Gerät automatisch neu. +
<% end %> <%+footer%>