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 | 1a0e7d5a10f2140d05dd54531c4ba1f35768ab93 (patch) | |
tree | 65da4886c507b3bbc693521498c8520792e3ff80 /plugins/muc/request.lib.lua | |
parent | c80aae6deea828a5178a9af5dc5981705ab46175 (diff) | |
download | prosody-1a0e7d5a10f2140d05dd54531c4ba1f35768ab93.tar.gz prosody-1a0e7d5a10f2140d05dd54531c4ba1f35768ab93.zip |
MUC: Improve labels of all config form items
Diffstat (limited to 'plugins/muc/request.lib.lua')
-rw-r--r-- | plugins/muc/request.lib.lua | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/plugins/muc/request.lib.lua b/plugins/muc/request.lib.lua index d7fa9426..1bf02e55 100644 --- a/plugins/muc/request.lib.lua +++ b/plugins/muc/request.lib.lua @@ -25,16 +25,18 @@ local voice_request_form = require "util.dataforms".new({ name = "muc#jid"; type = "jid-single"; label = "User ID"; + desc = "The user's JID (address)"; }, { name = "muc#roomnick"; type = "text-single"; - label = "Room Nickname"; + label = "Room nickname"; + desc = "The user's nickname within the room"; }, { name = "muc#role"; type = "list-single"; - label = "Requested Role"; + label = "Requested role"; value = "participant"; options = { "none", @@ -47,6 +49,7 @@ local voice_request_form = require "util.dataforms".new({ name = "muc#request_allow"; type = "boolean"; label = "Grant voice to this person?"; + desc = "Specify whether this person is able to speak in a moderated room"; value = false; } }); |