mirror of
https://github.com/SillyTavern/SillyTavern.git
synced 2025-06-05 21:59:27 +02:00
fixes
This commit is contained in:
@ -1,4 +0,0 @@
|
||||
<!-- I18n data for tools used to auto generate translations -->
|
||||
<div data-i18n="Show Gallery">Show Gallery</div>
|
||||
<div data-i18n="Shows the gallery.">Shows the gallery.</div>
|
||||
<div data-i18n="List images in the gallery of the current char / group or a specified char / group.">List images in the gallery of the current char / group or a specified char / group.</div>
|
2
public/scripts/extensions/gallery/index.i18n.html
Normal file
2
public/scripts/extensions/gallery/index.i18n.html
Normal file
@ -0,0 +1,2 @@
|
||||
<!-- I18n data for tools used to auto generate translations -->
|
||||
<div data-i18n="Show Gallery">Show Gallery</div>
|
@ -407,7 +407,7 @@ SlashCommandParser.addCommandObject(SlashCommand.fromProps({ name: 'show-gallery
|
||||
showCharGallery();
|
||||
return '';
|
||||
},
|
||||
helpString: translate('Shows the gallery.'),
|
||||
helpString: 'Shows the gallery.',
|
||||
}));
|
||||
SlashCommandParser.addCommandObject(SlashCommand.fromProps({ name: 'list-gallery',
|
||||
aliases: ['lg'],
|
||||
@ -427,7 +427,7 @@ SlashCommandParser.addCommandObject(SlashCommand.fromProps({ name: 'list-gallery
|
||||
enumProvider: commonEnumProviders.characters('group'),
|
||||
}),
|
||||
],
|
||||
helpString: translate('List images in the gallery of the current char / group or a specified char / group.'),
|
||||
helpString: 'List images in the gallery of the current char / group or a specified char / group.',
|
||||
}));
|
||||
|
||||
async function listGalleryCommand(args) {
|
||||
|
Reference in New Issue
Block a user