diff options
author | Matthew Wild <mwild1@gmail.com> | 2018-07-13 13:22:40 +0100 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2018-07-13 13:22:40 +0100 |
commit | 995815c6d323a41f44cc6bd2fa76fa9c248c105a (patch) | |
tree | 65da4886c507b3bbc693521498c8520792e3ff80 /plugins/muc/subject.lib.lua | |
parent | 7afeb9baf491f9f3013b9356b3686bfb8192095a (diff) | |
download | prosody-995815c6d323a41f44cc6bd2fa76fa9c248c105a.tar.gz prosody-995815c6d323a41f44cc6bd2fa76fa9c248c105a.zip |
MUC: Improve labels of all config form items
Diffstat (limited to 'plugins/muc/subject.lib.lua')
-rw-r--r-- | plugins/muc/subject.lib.lua | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/plugins/muc/subject.lib.lua b/plugins/muc/subject.lib.lua index 56d8d174..3b4efaf7 100644 --- a/plugins/muc/subject.lib.lua +++ b/plugins/muc/subject.lib.lua @@ -41,7 +41,8 @@ module:hook("muc-config-form", function(event) table.insert(event.form, { name = "muc#roomconfig_changesubject"; type = "boolean"; - label = "Allow Occupants to Change Subject?"; + label = "Allow anyone to set the room's subject"; + desc = "Choose whether anyone, or only moderators, may set the room's subject"; value = get_changesubject(event.room); }); end, 100-8); |