diff --git a/package/gluon-web-admin/i18n/de.po b/package/gluon-web-admin/i18n/de.po
index 537593eefa4a0fe70f80bff5a54fd22f6ed089e9..31bc48a01cc98f25c3e25bf0ac2cf5c99cd47e99 100644
--- a/package/gluon-web-admin/i18n/de.po
+++ b/package/gluon-web-admin/i18n/de.po
@@ -136,6 +136,6 @@ msgstr "Datei hochladen"
 msgid "You can manually upgrade your firmware here."
 msgstr "Hier kannst du ein manuelles Firmwareupdate durchführen."
 
-msgid "You can provide your SSH keys here (one per line):"
+msgid "You can provide your SSH keys here. Currently only RSA-Keys are supported. Add one Key per line."
 msgstr ""
-"Hier hast du die Möglichkeit, SSH-Keys zu hinterlegen (einen pro Zeile):"
+"Hier hast du die Möglichkeit, SSH-Keys zu hinterlegen. Zur Zeit werden nur RSA-Keys unterstützt. Hinterlege keinen Key pro Zeile."
diff --git a/package/gluon-web-admin/luasrc/lib/gluon/config-mode/model/admin/remote.lua b/package/gluon-web-admin/luasrc/lib/gluon/config-mode/model/admin/remote.lua
index 226969c07c5aa384c403a287f3d22cd6dbdf9b62..1d268e25f1a38abb1a0ff8e0576f2a24af8d5449 100644
--- a/package/gluon-web-admin/luasrc/lib/gluon/config-mode/model/admin/remote.lua
+++ b/package/gluon-web-admin/luasrc/lib/gluon/config-mode/model/admin/remote.lua
@@ -17,7 +17,7 @@ local sp = util.subprocess
 local unistd = require 'posix.unistd'
 local wait = require 'posix.sys.wait'
 
-local f_keys = Form(translate("SSH keys"), translate("You can provide your SSH keys here (one per line):"), 'keys')
+local f_keys = Form(translate("SSH keys"), translate("You can provide your SSH keys here. Currently only RSA-Keys are supported. Add one Key per line."), 'keys')
 local s = f_keys:section(Section)
 local keys = s:option(TextValue, "keys")
 keys.wrap = "off"