diff --git a/language/en.json b/language/en.json
index 9f75b7e96..c14b38758 100644
--- a/language/en.json
+++ b/language/en.json
@@ -26,7 +26,7 @@
"Upscale (1.5x)": "Upscale (1.5x)",
"Upscale (2x)": "Upscale (2x)",
"Upscale (Fast 2x)": "Upscale (Fast 2x)",
- "\ud83d\udcd4 Document": "\uD83D\uDCD4 Document",
+ "\ud83d\udcd4 Documentation": "\uD83D\uDCD4 Documentation",
"Image": "Image",
"Stop At": "Stop At",
"Weight": "Weight",
diff --git a/update_log.md b/update_log.md
index 787826185..54d42ab52 100644
--- a/update_log.md
+++ b/update_log.md
@@ -11,6 +11,7 @@
* Rename checkbox `Enable Mask Upload` to `Enable Advanced Masking Features` to better hint to mask auto-generation feature
* Get upscale model filepath by calling downloading_upscale_model() to ensure the model exists
* Rename tab titles and translations from singular to plural
+* Rename document to documentation
* Update default models to latest versions
* animaPencilXL_v400 => animaPencilXL_v500
* DreamShaperXL_Turbo_dpmppSdeKarras => DreamShaperXL_Turbo_v2_1
diff --git a/webui.py b/webui.py
index dee230539..2195f8cd0 100644
--- a/webui.py
+++ b/webui.py
@@ -189,7 +189,7 @@ def skip_clicked(currentTask):
uov_input_image = grh.Image(label='Image', source='upload', type='numpy', show_label=False)
with gr.Column():
uov_method = gr.Radio(label='Upscale or Variation:', choices=flags.uov_list, value=flags.disabled)
- gr.HTML('\U0001F4D4 Document')
+ gr.HTML('\U0001F4D4 Documentation')
with gr.TabItem(label='Image Prompt') as ip_tab:
with gr.Row():
ip_images = []
@@ -222,7 +222,7 @@ def skip_clicked(currentTask):
ip_type.change(lambda x: flags.default_parameters[x], inputs=[ip_type], outputs=[ip_stop, ip_weight], queue=False, show_progress=False)
ip_ad_cols.append(ad_col)
ip_advanced = gr.Checkbox(label='Advanced', value=False, container=False)
- gr.HTML('* \"Image Prompt\" is powered by Fooocus Image Mixture Engine (v1.0.1). \U0001F4D4 Document')
+ gr.HTML('* \"Image Prompt\" is powered by Fooocus Image Mixture Engine (v1.0.1). \U0001F4D4 Documentation')
def ip_advance_checked(x):
return [gr.update(visible=x)] * len(ip_ad_cols) + \
@@ -246,7 +246,7 @@ def ip_advance_checked(x):
label='Additional Prompt Quick List',
components=[inpaint_additional_prompt],
visible=False)
- gr.HTML('* Powered by Fooocus Inpaint Engine \U0001F4D4 Document')
+ gr.HTML('* Powered by Fooocus Inpaint Engine \U0001F4D4 Documentation')
example_inpaint_prompts.click(lambda x: x[0], inputs=example_inpaint_prompts, outputs=inpaint_additional_prompt, show_progress=False, queue=False)
with gr.Column(visible=False) as inpaint_mask_generation_col:
@@ -322,7 +322,7 @@ def generate_mask(image, mask_model, cloth_category, dino_prompt_text, sam_model
value=flags.desc_type_photo)
desc_btn = gr.Button(value='Describe this Image into Prompt')
desc_image_size = gr.Textbox(label='Image Size and Recommended Size', elem_id='desc_image_size', visible=False)
- gr.HTML('\U0001F4D4 Document')
+ gr.HTML('\U0001F4D4 Documentation')
def trigger_show_image_properties(image):
value = modules.util.get_image_size_info(image, modules.flags.sdxl_aspect_ratios)
@@ -335,7 +335,7 @@ def trigger_show_image_properties(image):
with gr.Row():
with gr.Column():
enhance_input_image = grh.Image(label='Use with Enhance, skips image generation', source='upload', type='numpy')
- gr.HTML('\U0001F4D4 Document')
+ gr.HTML('\U0001F4D4 Documentation')
with gr.TabItem(label='Metadata') as metadata_tab:
with gr.Column():
@@ -379,7 +379,7 @@ def trigger_metadata_preview(filepath):
inputs=enhance_uov_processing_order,
outputs=enhance_uov_prompt_type,
queue=False, show_progress=False)
- gr.HTML('\U0001F4D4 Document')
+ gr.HTML('\U0001F4D4 Documentation')
enhance_ctrls = []
enhance_inpaint_mode_ctrls = []
enhance_inpaint_engine_ctrls = []
@@ -471,7 +471,7 @@ def trigger_metadata_preview(filepath):
'(default is 0, always processed before any mask invert)')
enhance_mask_invert = gr.Checkbox(label='Invert Mask', value=False)
- gr.HTML('\U0001F4D4 Document')
+ gr.HTML('\U0001F4D4 Documentation')
enhance_ctrls += [
enhance_enabled,
@@ -670,7 +670,7 @@ def update_history_link():
sharpness = gr.Slider(label='Image Sharpness', minimum=0.0, maximum=30.0, step=0.001,
value=modules.config.default_sample_sharpness,
info='Higher value means image and texture are sharper.')
- gr.HTML('\U0001F4D4 Document')
+ gr.HTML('\U0001F4D4 Documentation')
dev_mode = gr.Checkbox(label='Developer Debug Mode', value=False, container=False)
with gr.Column(visible=False) as dev_tools: