diff options
author | Iordan Iordanov <iiordanov@gmail.com> | 2011-11-05 19:29:55 +0000 |
---|---|---|
committer | Iordan Iordanov <iiordanov@gmail.com> | 2011-11-05 19:29:55 +0000 |
commit | 6e632b72258d82ce2938d273973842c8d69f7018 (patch) | |
tree | e29b3d35622c1ce0332eadc5f5ce6b3899252b55 /applications/luci-pbx/luasrc/model/cbi/pbx-voip.lua | |
parent | 5e86b77294fd1c64b4f56407d156737d7a147e37 (diff) |
1) Made spacing with \ syntax consistent across the board.
Diffstat (limited to 'applications/luci-pbx/luasrc/model/cbi/pbx-voip.lua')
-rw-r--r-- | applications/luci-pbx/luasrc/model/cbi/pbx-voip.lua | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/applications/luci-pbx/luasrc/model/cbi/pbx-voip.lua b/applications/luci-pbx/luasrc/model/cbi/pbx-voip.lua index c7d9de177b..41395ae86a 100644 --- a/applications/luci-pbx/luasrc/model/cbi/pbx-voip.lua +++ b/applications/luci-pbx/luasrc/model/cbi/pbx-voip.lua @@ -28,9 +28,9 @@ end modulename = "pbx-voip" m = Map (modulename, translate("SIP Accounts"), - translate("This is where you set up your SIP (VoIP) accounts ts like Sipgate, SipSorcery,\ + translate("This is where you set up your SIP (VoIP) accounts ts like Sipgate, SipSorcery, \ the popular Betamax providers, and any other providers with SIP settings in order to start \ - using them for dialing and receiving calls (SIP uri and real phone calls). Click \"Add\" to\ + using them for dialing and receiving calls (SIP uri and real phone calls). Click \"Add\" to \ add as many accounts as you wish.")) -- Recreate the config, and restart services after changes are commited to the configuration. @@ -60,8 +60,8 @@ s.addremove = true s:option(Value, "defaultuser", translate("User Name")) pwd = s:option(Value, "secret", translate("Password"), - translate("When your password is saved, it disappears from this field and is not displayed\ - for your protection. The previously saved password will be changed only when you\ + translate("When your password is saved, it disappears from this field and is not displayed \ + for your protection. The previously saved password will be changed only when you \ enter a value different from the saved one.")) @@ -87,8 +87,8 @@ h = s:option(Value, "host", translate("SIP Server/Registrar")) h.datatype = "host" p = s:option(ListValue, "register", translate("Enable Incoming Calls (Register via SIP)"), - translate("This option should be set to \"Yes\" if you have a DID \(real telephone number\)\ - associated with this SIP account or want to receive SIP uri calls through this\ + translate("This option should be set to \"Yes\" if you have a DID \(real telephone number\) \ + associated with this SIP account or want to receive SIP uri calls through this \ provider.")) p:value("yes", translate("Yes")) p:value("no", translate("No")) |