mirror of
https://github.com/Ysurac/openmptcprouter-feeds.git
synced 2025-02-12 10:31:51 +00:00
Little text changes for mail interface
This commit is contained in:
parent
b3cc953368
commit
fd8a335e85
2 changed files with 3 additions and 3 deletions
|
@ -1,6 +1,6 @@
|
|||
module("luci.controller.mail", package.seeall)
|
||||
|
||||
function index()
|
||||
entry({"admin", "services", "mail"}, alias("admin", "services", "mail", "index"), _("Mail"))
|
||||
entry({"admin", "services", "mail"}, alias("admin", "services", "mail", "index"), _("Mail settings"))
|
||||
entry({"admin", "services", "mail", "index"}, cbi("mail"))
|
||||
end
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
-- Copyright 2018 Ycarus (Yannick Chabanois) <ycarus@zugaina.org>
|
||||
-- Licensed to the public under the Apache License 2.0.
|
||||
|
||||
m = Map("mail", translate("Send mail"), translate("Set mail settings for services that need to send mails."))
|
||||
m = Map("mail", translate("Mail settings"), translate("Set mail settings for services that need to send mails."))
|
||||
|
||||
s = m:section(TypedSection, "smtp", translate("SMTP"))
|
||||
s.anonymous = true
|
||||
|
@ -24,7 +24,7 @@ tls.rmempty = false
|
|||
tls_starttls = s:option(Flag, "tls_starttls", translate("STARTTLS"))
|
||||
tls_starttls.rmempty = false
|
||||
|
||||
user = s:option(Value, "user", translate("User"))
|
||||
user = s:option(Value, "user", translate("Username"))
|
||||
user.rmempty = true
|
||||
|
||||
password = s:option(Value, "password", translate("Password"))
|
||||
|
|
Loading…
Reference in a new issue