mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 13:47:41 +03:00
MUC: Improve labels of all config form items
This commit is contained in:
parent
c80aae6dee
commit
1a0e7d5a10
11 changed files with 29 additions and 15 deletions
|
@ -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);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue