aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/muc/request.lib.lua
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/muc/request.lib.lua')
-rw-r--r--plugins/muc/request.lib.lua7
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;
}
});