Fix i18n tags for Generate Image/Stop Image Generation, add translations

0ea4494deae79b63b70c1d73ffd9e0a75f617649

ceruleandeep <cerulean@cerulean.foo>

4 files changed, +5 -2Ignore whitespace
public/locales/ja-jp.json+1 -0
@@ -1274,6 +1274,7 @@
1274 "sd_Raw_Last_Message": "生の最後のメッセージ",1274 "sd_Raw_Last_Message": "生の最後のメッセージ",
1275 "sd_Background": "背景",1275 "sd_Background": "背景",
1276 "Image Generation": "画像生成",1276 "Image Generation": "画像生成",
1277 "Stop Image Generation": "画像生成を停止",
1277 "sd_refine_mode": "プロンプトを生成 API に送信する前に手動で編集できるようにする",1278 "sd_refine_mode": "プロンプトを生成 API に送信する前に手動で編集できるようにする",
1278 "sd_refine_mode_txt": "生成前にプロンプ​​トを編集する",1279 "sd_refine_mode_txt": "生成前にプロンプ​​トを編集する",
1279 "sd_interactive_mode": "「猫の写真を送ってください」のようなメッセージを送信するときに、画像を自動的に生成します。",1280 "sd_interactive_mode": "「猫の写真を送ってください」のようなメッセージを送信するときに、画像を自動的に生成します。",
public/locales/zh-cn.json+1 -0
@@ -1430,6 +1430,7 @@
1430 "sd_Raw_Last_Message": "原始最后一条消息",1430 "sd_Raw_Last_Message": "原始最后一条消息",
1431 "sd_Background": "背景",1431 "sd_Background": "背景",
1432 "Image Generation": "图像生成",1432 "Image Generation": "图像生成",
1433 "Stop Image Generation": "中止图像生成",
1433 "sd_refine_mode": "允许在将提示词发送到生成 API 之前手动编辑提示词",1434 "sd_refine_mode": "允许在将提示词发送到生成 API 之前手动编辑提示词",
1434 "sd_refine_mode_txt": "生成之前编辑提示词",1435 "sd_refine_mode_txt": "生成之前编辑提示词",
1435 "sd_interactive_mode": "发送消息时自动生成图像,例如“给我发一张猫的照片”。",1436 "sd_interactive_mode": "发送消息时自动生成图像,例如“给我发一张猫的照片”。",
public/locales/zh-tw.json+1 -0
@@ -1026,6 +1026,7 @@
1026 "Message Actions": "訊息動作",1026 "Message Actions": "訊息動作",
1027 "Translate message": "翻譯訊息",1027 "Translate message": "翻譯訊息",
1028 "Generate Image": "生成圖片",1028 "Generate Image": "生成圖片",
1029 "Stop Image Generation": "終止圖片生成",
1029 "Narrate": "敘述",1030 "Narrate": "敘述",
1030 "Exclude message from prompts": "從提示詞中排除訊息",1031 "Exclude message from prompts": "從提示詞中排除訊息",
1031 "Include message in prompts": "在提示詞中包含訊息",1032 "Include message in prompts": "在提示詞中包含訊息",
public/scripts/extensions/stable-diffusion/button.html+2 -2
@@ -1,8 +1,8 @@
1<div id="sd_gen" class="list-group-item flex-container flexGap5">1<div id="sd_gen" class="list-group-item flex-container flexGap5">
2 <div class="fa-solid fa-paintbrush extensionsMenuExtensionButton" title="Trigger Stable Diffusion" data-i18n="[title]Trigger Stable Diffusion"></div>2 <div class="fa-solid fa-paintbrush extensionsMenuExtensionButton" title="Trigger Stable Diffusion" data-i18n="[title]Trigger Stable Diffusion"></div>
3 <span>Generate Image</span>3 <span data-i18n="Generate Image">Generate Image</span>
4</div>4</div>
5<div id="sd_stop_gen" class="list-group-item flex-container flexGap5">5<div id="sd_stop_gen" class="list-group-item flex-container flexGap5">
6 <div class="fa-solid fa-circle-stop extensionsMenuExtensionButton" title="Abort current image generation task" data-i18n="[title]Abort current image generation task"></div>6 <div class="fa-solid fa-circle-stop extensionsMenuExtensionButton" title="Abort current image generation task" data-i18n="[title]Abort current image generation task"></div>
7 <span>Stop Image Generation</span>7 <span data-i18n="Stop Image Generation">Stop Image Generation</span>
8</div>8</div>