aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/muc/persistent.lib.lua
diff options
context:
space:
mode:
authorMatthew Wild <mwild1@gmail.com>2018-07-13 13:22:40 +0100
committerMatthew Wild <mwild1@gmail.com>2018-07-13 13:22:40 +0100
commit1a0e7d5a10f2140d05dd54531c4ba1f35768ab93 (patch)
tree65da4886c507b3bbc693521498c8520792e3ff80 /plugins/muc/persistent.lib.lua
parentc80aae6deea828a5178a9af5dc5981705ab46175 (diff)
downloadprosody-1a0e7d5a10f2140d05dd54531c4ba1f35768ab93.tar.gz
prosody-1a0e7d5a10f2140d05dd54531c4ba1f35768ab93.zip
MUC: Improve labels of all config form items
Diffstat (limited to 'plugins/muc/persistent.lib.lua')
-rw-r--r--plugins/muc/persistent.lib.lua3
1 files changed, 2 insertions, 1 deletions
diff --git a/plugins/muc/persistent.lib.lua b/plugins/muc/persistent.lib.lua
index 4bc61930..0f787759 100644
--- a/plugins/muc/persistent.lib.lua
+++ b/plugins/muc/persistent.lib.lua
@@ -22,7 +22,8 @@ module:hook("muc-config-form", function(event)
table.insert(event.form, {
name = "muc#roomconfig_persistentroom";
type = "boolean";
- label = "Make Room Persistent?";
+ label = "Persistent (room should remain even when it is empty)";
+ desc = "Rooms are automatically deleted when they are empty, unless this option is enabled";
value = get_persistent(event.room);
});
end, 100-3);