add translation for translate prompts info text
This commit is contained in:
parent
5cbf7f94e3
commit
8e605504d7
|
|
@ -46,6 +46,7 @@
|
|||
"Image Number": "Image Number",
|
||||
"Negative Prompt": "Negative Prompt",
|
||||
"Describing what you do not want to see.": "Describing what you do not want to see.",
|
||||
"Uses the internet to translate prompts to English.": "Uses the internet to translate prompts to English.",
|
||||
"Random": "Random",
|
||||
"Seed": "Seed",
|
||||
"\ud83d\udcda History Log": "\uD83D\uDCDA History Log",
|
||||
|
|
|
|||
2
webui.py
2
webui.py
|
|
@ -228,7 +228,7 @@ with shared.gradio_root:
|
|||
elem_id='negative_prompt',
|
||||
value=modules.config.default_prompt_negative)
|
||||
translate_prompts = gr.Checkbox(label='Translate Prompts',
|
||||
info='Uses the internet to translate prompts to English',
|
||||
info='Uses the internet to translate prompts to English.',
|
||||
value=False)
|
||||
seed_random = gr.Checkbox(label='Random', value=True)
|
||||
image_seed = gr.Textbox(label='Seed', value=0, max_lines=1, visible=False) # workaround for https://github.com/gradio-app/gradio/issues/5354
|
||||
|
|
|
|||
Loading…
Reference in New Issue