summaryrefslogtreecommitdiffhomepage
path: root/applications/luci-pbx/luasrc/model/cbi/pbx-google.lua
diff options
context:
space:
mode:
authorIordan Iordanov <iiordanov@gmail.com>2011-11-27 22:49:13 +0000
committerIordan Iordanov <iiordanov@gmail.com>2011-11-27 22:49:13 +0000
commit1c2449394db9b0c93847a9f52b286163960d14cb (patch)
treea429f5381de73cd38105dfbcf3d86a07a0361358 /applications/luci-pbx/luasrc/model/cbi/pbx-google.lua
parent3c3e3128bb209401c3d0f20a52599aaf8e29a113 (diff)
1) Revised a lot of wording
2) Set default for SMTP authentication to off so the interface is cleaner to begin with (when not configured).
Diffstat (limited to 'applications/luci-pbx/luasrc/model/cbi/pbx-google.lua')
-rw-r--r--applications/luci-pbx/luasrc/model/cbi/pbx-google.lua8
1 files changed, 4 insertions, 4 deletions
diff --git a/applications/luci-pbx/luasrc/model/cbi/pbx-google.lua b/applications/luci-pbx/luasrc/model/cbi/pbx-google.lua
index 32b3442b6f..32e203e8c0 100644
--- a/applications/luci-pbx/luasrc/model/cbi/pbx-google.lua
+++ b/applications/luci-pbx/luasrc/model/cbi/pbx-google.lua
@@ -37,7 +37,7 @@ m = Map (modulename, translate("Google Accounts"),
-- Recreate the config, and restart services after changes are commited to the configuration.
function m.on_after_commit(self)
- -- Create a field "name" for each account which identifies the account in the backend.
+ -- Create a field "name" for each account that identifies the account in the backend.
commit = false
m.uci:foreach(modulename, "gtalk_jabber",
function(s1)
@@ -85,7 +85,7 @@ end
p = s:option(ListValue, "register",
- translate("Enable Incoming Calls (See Status, Message below)"),
+ translate("Enable Incoming Calls (set Status below)"),
translate("When somebody starts voice chat with your GTalk account or calls the GVoice, \
number (if you have Google Voice), the call will be forwarded to any users \
that are online (registered using a SIP device or softphone) and permitted to \
@@ -105,14 +105,14 @@ p:value("yes", translate("Yes"))
p:value("no", translate("No"))
p.default = "yes"
-st = s:option(ListValue, "status", translate("Account Status"))
+st = s:option(ListValue, "status", translate("Google Talk Status"))
st:depends("register", "yes")
st:value("dnd", translate("Do Not Disturb"))
st:value("away", translate("Away"))
st:value("available", translate("Available"))
st.default = defaultstatus
-stm = s:option(Value, "statusmessage", translate("Account Status Message"),
+stm = s:option(Value, "statusmessage", translate("Google Talk Status Message"),
translate("Avoid using anything but alpha-numeric characters, space, comma, and period."))
stm:depends("register", "yes")
stm.default = defaultstatusmessage