summaryrefslogtreecommitdiffhomepage
path: root/applications/luci-pbx/luasrc/model/cbi/pbx-users.lua
diff options
context:
space:
mode:
authorIordan Iordanov <iiordanov@gmail.com>2011-11-05 19:29:55 +0000
committerIordan Iordanov <iiordanov@gmail.com>2011-11-05 19:29:55 +0000
commit6e632b72258d82ce2938d273973842c8d69f7018 (patch)
treee29b3d35622c1ce0332eadc5f5ce6b3899252b55 /applications/luci-pbx/luasrc/model/cbi/pbx-users.lua
parent5e86b77294fd1c64b4f56407d156737d7a147e37 (diff)
1) Made spacing with \ syntax consistent across the board.
Diffstat (limited to 'applications/luci-pbx/luasrc/model/cbi/pbx-users.lua')
-rw-r--r--applications/luci-pbx/luasrc/model/cbi/pbx-users.lua28
1 files changed, 14 insertions, 14 deletions
diff --git a/applications/luci-pbx/luasrc/model/cbi/pbx-users.lua b/applications/luci-pbx/luasrc/model/cbi/pbx-users.lua
index fba0d49dda..c388967a65 100644
--- a/applications/luci-pbx/luasrc/model/cbi/pbx-users.lua
+++ b/applications/luci-pbx/luasrc/model/cbi/pbx-users.lua
@@ -31,11 +31,11 @@ modulenameadvanced = "pbx-advanced"
m = Map (modulename, translate("User Accounts"),
- translate("Here you must configure at least one SIP account, which you\
- will use to register with this service. Use this account either in an analog telephony\
- adapter (ATA), or in a SIP softphone like CSipSimple, Linphone, or Sipdroid on your\
- Android smartphone, or X-lite or Ekiga on your computer. By default, all SIP accounts\
- will ring simultaneously if a call is made to one of your VoIP provider accounts or GV\
+ translate("Here you must configure at least one SIP account, which you \
+ will use to register with this service. Use this account either in an analog telephony \
+ adapter (ATA), or in a SIP softphone like CSipSimple, Linphone, or Sipdroid on your \
+ Android smartphone, or X-lite or Ekiga on your computer. By default, all SIP accounts \
+ will ring simultaneously if a call is made to one of your VoIP provider accounts or GV \
numbers."))
-- Recreate the config, and restart services after changes are commited to the configuration.
@@ -62,7 +62,7 @@ if bindport ~= nil then
end
s:option(DummyValue, "ipaddr", translate("Server Setting for Local SIP Devices"),
- translate("Enter this IP (or IP:port) in the Server/Registrar setting of SIP devices you will\
+ translate("Enter this IP (or IP:port) in the Server/Registrar setting of SIP devices you will \
use ONLY locally and never from a remote location.")).default = ipaddr
if externhost ~= nil then
@@ -71,18 +71,18 @@ if externhost ~= nil then
externhost = externhost .. ":" .. bindport
end
s:option(DummyValue, "externhost", translate("Server Setting for Remote SIP Devices"),
- translate("Enter this hostname (or hostname:port) in the Server/Registrar setting of SIP\
+ translate("Enter this hostname (or hostname:port) in the Server/Registrar setting of SIP \
devices you will use from a remote location (they will work locally too).")
).default = externhost
end
if bindport ~= nil then
s:option(DummyValue, "bindport", translate("Port Setting for SIP Devices"),
- translatef("If setting Server/Registrar to %s or %s does not work for you, try setting\
- it to %s or %s and entering this port number in a separate field which specifies the\
- Server/Registrar port number. Beware that some devices have a confusing\
- setting which sets the port where SIP requests originate from on the SIP\
- device itself (bind port). The port specified on this page is NOT this bind port\
+ translatef("If setting Server/Registrar to %s or %s does not work for you, try setting \
+ it to %s or %s and entering this port number in a separate field which specifies the \
+ Server/Registrar port number. Beware that some devices have a confusing \
+ setting which sets the port where SIP requests originate from on the SIP \
+ device itself (bind port). The port specified on this page is NOT this bind port \
but the this service listens on.",
ipaddr, externhost, just_ipaddr, just_externhost)).default = bindport
end
@@ -96,12 +96,12 @@ s:option(Value, "fullname", translate("Full Name"),
translate("You can specify a real name to show up in the Caller ID here."))
du = s:option(Value, "defaultuser", translate("User Name"),
- translate("Use (four to five digit) numeric user name if you are connecting normal telephones\
+ translate("Use (four to five digit) numeric user name if you are connecting normal telephones \
with ATAs to this system (so they can dial user names)."))
du.datatype = "uciname"
pwd = s:option(Value, "secret", translate("Password"),
- translate("Your password disappears when saved for your protection. It will be changed\
+ translate("Your password disappears when saved for your protection. It will be changed \
only when you enter a value different from the saved one."))
pwd.password = true
pwd.rmempty = false