MUC: Improve labels of all config form items

This commit is contained in:
Matthew Wild 2018-07-13 13:22:40 +01:00
parent c80aae6dee
commit 1a0e7d5a10
11 changed files with 29 additions and 15 deletions

View file

@ -48,13 +48,15 @@ module:hook("muc-config-form", function(event)
table.insert(event.form, {
name = "muc#roomconfig_historylength";
type = "text-single";
label = "Maximum Number of History Messages Returned by Room";
label = "Maximum number of history messages returned by room";
desc = "Specify the maximum number of previous messages that should be sent to users when they join the room";
value = tostring(get_historylength(event.room));
});
table.insert(event.form, {
name = 'muc#roomconfig_defaulthistorymessages',
type = 'text-single',
label = 'Default Number of History Messages Returned by Room',
label = 'Default number of history messages returned by room',
desc = "Specify the number of previous messages sent to new users when they join the room";
value = tostring(get_defaulthistorymessages(event.room))
});
end, 100-10);