Diff

plugins/muc/request.lib.lua @ 9034:1c709e3d2e5e

MUC: Improve labels of all config form items
author Matthew Wild <mwild1@gmail.com>
date Fri, 13 Jul 2018 13:22:40 +0100
parent 8871:b67a861e883e
child 9081:ce57c69a20e2
line wrap: on
line diff
--- a/plugins/muc/request.lib.lua	Fri Jul 13 04:52:43 2018 +0200
+++ b/plugins/muc/request.lib.lua	Fri Jul 13 13:22:40 2018 +0100
@@ -25,16 +25,18 @@
 		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 @@
 		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;
 	}
 });