add translation for translate prompts info text

This commit is contained in:
Manuel Schmid 2023-12-24 23:40:54 +01:00
parent 5cbf7f94e3
commit 8e605504d7
No known key found for this signature in database
GPG Key ID: 32C4F7569B40B84B
2 changed files with 2 additions and 1 deletions

View File

@ -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",

View File

@ -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