Fix i18n for "Generate Caption" in wand menu

247a23bda93a0848df68bda5728a7e6e1a9cbd1c

ceruleandeep <cerulean@cerulean.foo>

4 files changed, +4 -1Showing whitespace changes
public/locales/ja-jp.json+1 -0
@@ -1275,6 +1275,7 @@
1275 "sd_Background": "背景",1275 "sd_Background": "背景",
1276 "Image Generation": "画像生成",1276 "Image Generation": "画像生成",
1277 "Stop Image Generation": "画像生成を停止",1277 "Stop Image Generation": "画像生成を停止",
1278 "Generate Caption": "画像説明を生成",
1278 "sd_refine_mode": "プロンプトを生成 API に送信する前に手動で編集できるようにする",1279 "sd_refine_mode": "プロンプトを生成 API に送信する前に手動で編集できるようにする",
1279 "sd_refine_mode_txt": "生成前にプロンプ​​トを編集する",1280 "sd_refine_mode_txt": "生成前にプロンプ​​トを編集する",
1280 "sd_interactive_mode": "「猫の写真を送ってください」のようなメッセージを送信するときに、画像を自動的に生成します。",1281 "sd_interactive_mode": "「猫の写真を送ってください」のようなメッセージを送信するときに、画像を自動的に生成します。",
public/locales/zh-cn.json+1 -0
@@ -1241,6 +1241,7 @@
1241 "Enter web URLs to scrape (one per line):": "输入要抓取的网址(每行一个):",1241 "Enter web URLs to scrape (one per line):": "输入要抓取的网址(每行一个):",
1242 "Enter a video URL to download its transcript.": "输入视频 URL 或 ID 即可下载其文本。",1242 "Enter a video URL to download its transcript.": "输入视频 URL 或 ID 即可下载其文本。",
1243 "Image Captioning": "图像描述",1243 "Image Captioning": "图像描述",
1244 "Generate Caption": "生成图片说明",
1244 "Source": "来源",1245 "Source": "来源",
1245 "Local": "本地",1246 "Local": "本地",
1246 "Multimodal (OpenAI / Anthropic / llama / Google)": "多模式(OpenAI / Anthropic / llama / Google)",1247 "Multimodal (OpenAI / Anthropic / llama / Google)": "多模式(OpenAI / Anthropic / llama / Google)",
public/locales/zh-tw.json+1 -0
@@ -1652,6 +1652,7 @@
1652 "Horde": "Horde",1652 "Horde": "Horde",
1653 "HuggingFace Token": "HuggingFace 符元",1653 "HuggingFace Token": "HuggingFace 符元",
1654 "Image Captioning": "圖片標註",1654 "Image Captioning": "圖片標註",
1655 "Generate Caption": "生成圖片說明",
1655 "Image Type - talkinghead (extras)": "圖片類型 - talkinghead(額外選項)",1656 "Image Type - talkinghead (extras)": "圖片類型 - talkinghead(額外選項)",
1656 "Injection Position": "插入位置",1657 "Injection Position": "插入位置",
1657 "Injection position. Relative (to other prompts in prompt manager) or In-chat @ Depth.": "插入位置(與提示詞管理器中的其他提示相比)或聊天中的深度位置。",1658 "Injection position. Relative (to other prompts in prompt manager) or In-chat @ Depth.": "插入位置(與提示詞管理器中的其他提示相比)或聊天中的深度位置。",
public/scripts/extensions/caption/index.js+1 -1
@@ -393,7 +393,7 @@ jQuery(async function () {
393 const sendButton = $(`393 const sendButton = $(`
394 <div id="send_picture" class="list-group-item flex-container flexGap5">394 <div id="send_picture" class="list-group-item flex-container flexGap5">
395 <div class="fa-solid fa-image extensionsMenuExtensionButton"></div>395 <div class="fa-solid fa-image extensionsMenuExtensionButton"></div>
396 Generate Caption396 <span data-i18n="Generate Caption">Generate Caption</span>
397 </div>`);397 </div>`);
398398
399 $('#caption_wand_container').append(sendButton);399 $('#caption_wand_container').append(sendButton);