Diff

plugins/muc/whois.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 7401:e16b3fd0bd80
child 9035:173c0e16e704
line wrap: on
line diff
--- a/plugins/muc/whois.lib.lua	Fri Jul 13 04:52:43 2018 +0200
+++ b/plugins/muc/whois.lib.lua	Fri Jul 13 13:22:40 2018 +0100
@@ -32,9 +32,9 @@
 	table.insert(event.form, {
 		name = 'muc#roomconfig_whois',
 		type = 'list-single',
-		label = 'Who May Discover Real JIDs?',
+		label = 'Addresses (JIDs) of room occupants may be viewed by:',
 		value = {
-			{ value = 'moderators', label = 'Moderators Only', default = whois == 'moderators' },
+			{ value = 'moderators', label = 'Moderators only', default = whois == 'moderators' },
 			{ value = 'anyone',     label = 'Anyone',          default = whois == 'anyone' }
 		}
 	});