aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2023-10-15 14:43:11 +0200
committerKim Alvefur <zash@zash.se>2023-10-15 14:43:11 +0200
commit4d9916d1e545be30cac7310e8ee8167cd89dc5c2 (patch)
tree4abdd378db00804fe01cad0fbe076002f65445a0
parentd0e69c4e151321ac629f7bc672756ba69ae01325 (diff)
downloadprosody-4d9916d1e545be30cac7310e8ee8167cd89dc5c2.tar.gz
prosody-4d9916d1e545be30cac7310e8ee8167cd89dc5c2.zip
mod_muc_mam: Improve wording of enable setting
Suggested by jstein in the chat This option label is used by XMPP clients to explain what the option does. a) The user should know where the data is archived. b) The user needs a statement that can be enabled/disabled by the variable. A question would have the wrong logic here.
-rw-r--r--plugins/mod_muc_mam.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/mod_muc_mam.lua b/plugins/mod_muc_mam.lua
index 1c34b8af..0918b95d 100644
--- a/plugins/mod_muc_mam.lua
+++ b/plugins/mod_muc_mam.lua
@@ -90,7 +90,7 @@ if not log_all_rooms then
{
name = muc_form_enable,
type = "boolean",
- label = "Enable archiving?",
+ label = "Archive chat on server",
value = archiving_enabled(room),
}
);