mirror of
https://github.com/SillyTavern/SillyTavern.git
synced 2024-12-12 17:36:22 +01:00
00fc40408a
* Update engine.js to allow char scpoed regex no ui because i'm not good at it, but works. * add typedef * update * little fix * Rework scoped scripts UI * Add locale attributes * Purge allowance on delete * add d&d for `saved_scoped_scripts` * better code * Save settings on regex scope toggle * Fix reordering logic * Fix scoped setter * Add unique ids for regex scripts * Wording * Reload chat after deleting scripts * Reload chat after toggling scoped regex --------- Co-authored-by: Cohee <18619528+Cohee1207@users.noreply.github.com>
20 lines
749 B
HTML
20 lines
749 B
HTML
<div>
|
|
<h3 data-i18n="ext_regex_import_target">
|
|
Import To:
|
|
</h3>
|
|
<div class="flex-container flexFlowColumn wide100p padding10 justifyLeft">
|
|
<label for="regex_import_target_global">
|
|
<input type="radio" name="regex_import_target" id="regex_import_target_global" value="global" checked />
|
|
<span data-i18n="ext_regex_global_scripts">
|
|
Global Scripts
|
|
</span>
|
|
</label>
|
|
<label for="regex_import_target_scoped">
|
|
<input type="radio" name="regex_import_target" id="regex_import_target_scoped" value="scoped" />
|
|
<span data-i18n="ext_regex_scoped_scripts">
|
|
Scoped Scripts
|
|
</span>
|
|
</label>
|
|
</div>
|
|
</div>
|