fix(texts): add missing command descriptions

This commit is contained in:
simoleo89
2026-06-14 15:38:06 +02:00
parent 87e1ef94f7
commit 4359650621
6 changed files with 73 additions and 0 deletions
@@ -435,6 +435,16 @@ ON DUPLICATE KEY UPDATE
`triggers_talking_furniture` = VALUES(`triggers_talking_furniture`);
INSERT IGNORE INTO `emulator_texts` (`key`, `value`) VALUES
('commands.description.acc_modtool_room_info', 'Allows viewing room information in the moderation tool.'),
('commands.description.cmd_add_youtube_playlist', ':add_youtube <base_item_id> <youtube_playlist_id>'),
('commands.description.cmd_disablemassmentions', ':disablemassmentions'),
('commands.description.cmd_disablementions', ':disablementions'),
('commands.description.cmd_give_prefix', ':giveprefix <username> <text> <color> [icon] [effect]'),
('commands.description.cmd_hidewired', ':hidewired'),
('commands.description.cmd_list_prefixes', ':listprefixes <username>'),
('commands.description.cmd_remove_prefix', ':removeprefix <username> <id|all>'),
('commands.description.cmd_setroom_template', ':setroom_template'),
('commands.description.cmd_update_youtube_playlists', ':update_youtube'),
('commands.keys.cmd_setroom_template', 'setroom_template;set_room_template'),
('commands.succes.cmd_setroom_template.verify', 'Copy the current room "%roomname%" to room_templates? Type :setroom_template %generic.yes% to confirm.'),
('commands.succes.cmd_setroom_template', 'Room saved as template id %id% with %items% items (%skipped% skipped - item_id not in items_base).'),
@@ -37,6 +37,10 @@ VALUES
ON DUPLICATE KEY UPDATE
`comment` = VALUES(`comment`);
INSERT IGNORE INTO `emulator_texts` (`key`, `value`) VALUES
('commands.description.cmd_disablementions', ':disablementions'),
('commands.description.cmd_disablemassmentions', ':disablemassmentions');
-- ----------------------------------------------------------------------------
-- 3. Emulator settings: cooldowns, caps and alias lists
@@ -49,6 +49,7 @@ INSERT INTO `permission_definitions` (`permission_key`, `rank_7`, `comment`) VAL
ON DUPLICATE KEY UPDATE `rank_7` = VALUES(`rank_7`);
INSERT INTO `emulator_texts` (`key`, `value`) VALUES
('commands.description.cmd_setroom_template', ':setroom_template'),
('commands.keys.cmd_setroom_template', 'setroom_template;set_room_template'),
('commands.succes.cmd_setroom_template.verify', 'Copy the current room "%roomname%" to room_templates? Type :setroom_template %generic.yes% to confirm.'),
('commands.succes.cmd_setroom_template', 'Room saved as template id %id% with %items% items (%skipped% skipped - item_id not in items_base).'),
@@ -301,6 +301,7 @@ INSERT IGNORE INTO `custom_prefixes_catalog`
INSERT IGNORE INTO `emulator_texts` (`key`, `value`) VALUES
-- GivePrefix command
('commands.description.cmd_give_prefix', ':giveprefix <username> <text> <color> [icon] [effect]'),
('commands.keys.cmd_give_prefix', 'giveprefix'),
('commands.error.cmd_give_prefix.usage', 'Usage: :giveprefix <username> <text> <color> [icon] [effect]'),
('commands.error.cmd_give_prefix.invalid_color', 'Invalid color format. Use hex format (#FF0000).'),
@@ -308,12 +309,14 @@ INSERT IGNORE INTO `emulator_texts` (`key`, `value`) VALUES
('commands.error.cmd_give_prefix.user_not_found', 'User not found or not online.'),
('commands.succes.cmd_give_prefix', 'Prefix {%prefix%} successfully given to %user%!'),
-- ListPrefixes command
('commands.description.cmd_list_prefixes', ':listprefixes <username>'),
('commands.keys.cmd_list_prefixes', 'listprefixes'),
('commands.error.cmd_list_prefixes.usage', 'Usage: :listprefixes <username>'),
('commands.error.cmd_list_prefixes.user_not_found', 'User not found or not online.'),
('commands.succes.cmd_list_prefixes.header', 'Prefixes of %user%:'),
('commands.succes.cmd_list_prefixes.empty', '%user% has no prefixes.'),
-- RemovePrefix command
('commands.description.cmd_remove_prefix', ':removeprefix <username> <id|all>'),
('commands.keys.cmd_remove_prefix', 'removeprefix'),
('commands.error.cmd_remove_prefix.usage', 'Usage: :removeprefix <username> <id|all>'),
('commands.error.cmd_remove_prefix.user_not_found', 'User not found or not online.'),