aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/muc/whois.lib.lua
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/muc/whois.lib.lua')
-rw-r--r--plugins/muc/whois.lib.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/muc/whois.lib.lua b/plugins/muc/whois.lib.lua
index 4acf288c..ec3114eb 100644
--- a/plugins/muc/whois.lib.lua
+++ b/plugins/muc/whois.lib.lua
@@ -32,9 +32,9 @@ module:hook("muc-config-form", function(event)
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' }
}
});