diff options
author | Kim Alvefur <zash@zash.se> | 2017-03-21 04:41:40 +0100 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2017-03-21 04:41:40 +0100 |
commit | 2880ac5ebadc2b3eb7f4b05f80365c4847ee4b1d (patch) | |
tree | faca7e308a20d870d9e9a693c1d0c96934711453 | |
parent | 5b7128c9f1272e67e248355c1fb0d23890ac7081 (diff) | |
download | prosody-2880ac5ebadc2b3eb7f4b05f80365c4847ee4b1d.tar.gz prosody-2880ac5ebadc2b3eb7f4b05f80365c4847ee4b1d.zip |
MUC: Shorter label
-rw-r--r-- | plugins/muc/affiliation_notify.lib.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/muc/affiliation_notify.lib.lua b/plugins/muc/affiliation_notify.lib.lua index 7403a9ac..4343f3db 100644 --- a/plugins/muc/affiliation_notify.lib.lua +++ b/plugins/muc/affiliation_notify.lib.lua @@ -31,7 +31,7 @@ module:hook("muc-config-form", function(event) table.insert(event.form, { name = "muc#roomconfig_affiliationnotify"; type = "boolean"; - label = "Notify users when their affiliation changes when they are not in the room?"; + label = "Notify absent users when their affiliation changes?"; value = get_affiliation_notify(event.room); }); end, 100-11); |