diff options
author | daxijiu <127850313+daxijiu@users.noreply.github.com> | 2023-08-04 08:12:41 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-08-04 08:12:41 +0000 |
commit | 695300929a480ad177efbf9f772de80d86701df7 (patch) | |
tree | 819074c3727f3e0789035feeea1ce10428e63913 | |
parent | f0c1063a707a4a43823b0ed00e2a8eeb22a9ed0a (diff) | |
parent | 82b415c9c141d8616e1e9ccb55e47a1884d652ba (diff) | |
download | stable-diffusion-webui-gfx803-695300929a480ad177efbf9f772de80d86701df7.tar.gz stable-diffusion-webui-gfx803-695300929a480ad177efbf9f772de80d86701df7.tar.bz2 stable-diffusion-webui-gfx803-695300929a480ad177efbf9f772de80d86701df7.zip |
Merge pull request #1 from daxijiu/fix-some-content-are-ignore-by-localization
fix some content are ignore by localization
-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]+$/; |