diff options
author | Iordan Iordanov <iiordanov@gmail.com> | 2011-11-26 02:29:26 +0000 |
---|---|---|
committer | Iordan Iordanov <iiordanov@gmail.com> | 2011-11-26 02:29:26 +0000 |
commit | 60e46ff416448164fc8c65940b908d61c9e6e85d (patch) | |
tree | f17ebc098eeadf661f000fdd07b8a4c626ed272e /applications/luci-pbx/luasrc/model/cbi | |
parent | c0a776877858ee5354b7acd73d84dccfda0a9513 (diff) |
1) Fixed wording in a few places.
2) Fixed a bug in voicemail section of pbx-asterisk init script which was causing
the script to exit if no configuration for voicemail was found.
Diffstat (limited to 'applications/luci-pbx/luasrc/model/cbi')
-rw-r--r-- | applications/luci-pbx/luasrc/model/cbi/pbx-calls.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/applications/luci-pbx/luasrc/model/cbi/pbx-calls.lua b/applications/luci-pbx/luasrc/model/cbi/pbx-calls.lua index 68bfaca85..af18c6ff0 100644 --- a/applications/luci-pbx/luasrc/model/cbi/pbx-calls.lua +++ b/applications/luci-pbx/luasrc/model/cbi/pbx-calls.lua @@ -206,7 +206,7 @@ for k,v in pairs(validinaccounts) do value = self.map:get(section, self.option) if value == nil then - return {translate("Rings all users enabled for incoming calls")} + return {translate("All users enabled for incoming calls")} else return value end @@ -259,7 +259,7 @@ for k,v in pairs(validoutusers) do value = self.map:get(section, self.option) if value == nil then - return {translate("Uses all providers enabled for outgoing calls")} + return {translate("All providers enabled for outgoing calls")} else newvalue = {} -- Convert internal names to user@host values. |