diff options
author | AUTOMATIC1111 <16777216c@gmail.com> | 2023-08-04 08:33:34 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-08-04 08:33:34 +0000 |
commit | e81b4317011c1ecaa22dfbcf38181dbf01f2a05f (patch) | |
tree | 819074c3727f3e0789035feeea1ce10428e63913 /javascript | |
parent | f0c1063a707a4a43823b0ed00e2a8eeb22a9ed0a (diff) | |
parent | 695300929a480ad177efbf9f772de80d86701df7 (diff) | |
download | stable-diffusion-webui-gfx803-e81b4317011c1ecaa22dfbcf38181dbf01f2a05f.tar.gz stable-diffusion-webui-gfx803-e81b4317011c1ecaa22dfbcf38181dbf01f2a05f.tar.bz2 stable-diffusion-webui-gfx803-e81b4317011c1ecaa22dfbcf38181dbf01f2a05f.zip |
Merge pull request #12307 from daxijiu/dev
fix some content are ignore by localization
Diffstat (limited to 'javascript')
-rw-r--r-- | javascript/localization.js | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/javascript/localization.js b/javascript/localization.js index eb22b8a7..0c9032f9 100644 --- a/javascript/localization.js +++ b/javascript/localization.js @@ -11,11 +11,11 @@ var ignore_ids_for_localization = { train_hypernetwork: 'OPTION', txt2img_styles: 'OPTION', img2img_styles: 'OPTION', - setting_random_artist_categories: 'SPAN', - setting_face_restoration_model: 'SPAN', - setting_realesrgan_enabled_models: 'SPAN', - extras_upscaler_1: 'SPAN', - extras_upscaler_2: 'SPAN', + setting_random_artist_categories: 'OPTION', + setting_face_restoration_model: 'OPTION', + setting_realesrgan_enabled_models: 'OPTION', + extras_upscaler_1: 'OPTION', + extras_upscaler_2: 'OPTION', }; var re_num = /^[.\d]+$/; |