forked from Physton/sd-webui-prompt-all-in-one
-
Notifications
You must be signed in to change notification settings - Fork 0
/
i18n.json
2873 lines (2873 loc) · 246 KB
/
i18n.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"default": "zh_CN",
"languages": [
{
"code": "zh_CN",
"name": "简体中文 (中国)",
"lang": {
"need_api_key": "需要API Key",
"dont_need_api_key": "不需要API Key(不稳定)",
"prompt": "提示词",
"negative_prompt": "反向词",
"txt2img": "文生图",
"img2img": "图生图",
"please_enter_new_keyword": "请输入新关键词",
"local_language": "本地语言",
"increase_weight_add_parentheses": "增加关键词权重:叠加()",
"increase_weight_subtract_parentheses": "增加关键词权重:减少()",
"decrease_weight_add_brackets": "减弱关键词权重:叠加[]",
"decrease_weight_subtract_brackets": "减弱关键词权重:减少[]",
"translate_keyword_to_local_language": "翻译关键词到本地语言",
"copy_to_clipboard": "复制到剪贴板",
"disable_keyword": "禁用关键词",
"enable_keyword": "启用关键词",
"copy_keywords_to_clipboard": "复制所有关键词到剪贴板",
"translate_keywords_to_local_language": "翻译所有关键词到本地语言",
"translate_keyword_to_english": "翻译为英文",
"translate_all_keywords_to_english": "翻译所有非英文的关键词到英文",
"auto_translate_to_english": "输入新关键词后自动翻译到英文",
"auto_translate_to_local_language": "输入新关键词后自动翻译到本地语言",
"translate_api": "翻译接口",
"history": "历史记录",
"clear_history": "清除历史记录",
"clear_history_confirm": "确定要清除历史记录吗?",
"clear_history_success": "历史记录已清除",
"max_history_count": "最大历史记录数",
"favorite": "收藏列表",
"add_to_favorite": "添加到收藏",
"remove_from_favorite": "从收藏中移除",
"use": "使用",
"click_to_edit": "鼠标左键点击进行编辑",
"drop_to_order": "鼠标左键按住拖动进行排序",
"enter_to_save": "按回车键保存关键词",
"enter_to_add": "按回车键添加关键词",
"translate_api_not_found": "翻译API未找到",
"translate_language_not_support": "翻译语言不支持",
"translate_api_not_support": "翻译API不支持",
"unset_name": "未设置名称",
"no_history": "暂无历史记录",
"get_history_error": "获取历史记录失败",
"no_favorite": "暂无收藏",
"get_favorite_error": "获取收藏失败",
"hide_default_input_box": "隐藏默认输入框",
"show_default_input_box": "显示默认输入框",
"translate_test": "翻译测试",
"close": "关闭",
"save": "保存",
"delete_all_keywords": "删除所有关键词",
"delete_all_keywords_confirm": "确定要删除所有关键词吗?",
"whether_to_enable_tooltip": "是否启用每个功能的提示框,如果你已经熟练掌握本扩展的所有功能,可以取消勾选",
"delete_all_history": "删除所有历史记录",
"delete_all_history_confirm": "确定要删除所有历史记录吗?",
"please_enter_the_content_here": "请输入内容",
"not_api_key_desc": "免费的翻译接口不稳定,并不是每个接口都能在你的电脑中使用,请尽量申请api key使用稳定的官方接口",
"setting_desc": "设置:翻译API、自动翻译、显示/隐藏...",
"line_break_character": "换行符号",
"tagcomplete_translate_desc": "<p>使用 {{nameTagComplete}} 扩展中的 danbooru.csv 增强翻译功能,以达到节省网络请求、精准翻译的目的。</p><p>点击刷新按钮后,将扫描以下路径的csv文件: <p>extensions\\{{shortNameTagComplete}}\\tags</p><p>extensions\\{{shortName}}\\tags</p></p><p>你可以前往git仓库 <a target='_blank' href='{{githubAssets}}/tree/main/tags'>{{nameAssets}}/tags</a> 下载csv文件。</p>",
"test": "测试",
"refresh": "刷新",
"not_enable": "不启用",
"translate_result": "{0} 的翻译结果是:{1}",
"not_found_csv_file": "没有找到csv文件",
"theme_extension": "主题:扩展插件样式",
"is_remove_space": "是否去除每个关键词逗号后的空格。<br/>勾选后将自动去除空格(不便阅读)。<br/>取消勾选则保留1个空格(影响TOKEN计数)。",
"theme": "主题",
"enhance": "增强",
"only_csv_on_auto": "自动翻译只使用CSV翻译(不使用网络翻译),手动点击翻译按钮才使用CSV加网络翻译。",
"one_translate_all_keywords": "一键翻译所有关键词",
"auto_translate": "输入新关键词后自动翻译",
"is_remove_last_comma": "是否去除Prompt最后的一个逗号。<br/>勾选后Prompt输出为“aaa,bbb,ccc”。<br/>取消勾选Prompt输出为“aaa,bbb,ccc,”。",
"is_keep_weight_zero": "是否保留关键词权重为0的格式。<br/>勾选后关键词保留格式为“(text:0)”。<br/>取消勾选将不保留格式为“test”。",
"is_keep_weight_one": "是否保留关键词权重为1的格式。<br/>勾选后关键词保留格式为“(text:1)”。<br/>取消勾选将不保留格式为“test”。",
"prompt_format": "Prompt格式",
"tagcomplete_translate_desc2": "选择了错误的CSV文件,将导致翻译结果为空,或者为“0”。更换文件后,请点击下方的测试按钮,然后检查翻译的结果是否正确的显示了你的本地语言。",
"dblclick_to_disable": "鼠标双击禁用/启用关键词",
"batch_operation": "批量操作",
"success": "成功!",
"failed": "失败!",
"packages_desc": "检测到部分python包没有安装或者未安装成功,你需要点击尝试重新安装。所有包安装成功后,所有功能才能够正常使用。<br/>如果点击安装按钮后,还是无法成功安装。你需要手动复制命令并在终端执行。",
"installed": "已安装",
"not_install": "未安装",
"install": "安装",
"packages_installing": "开始安装......如需查询详细安装日志,请前往WebUI控制台查看。安装完成后,本窗口将自动关闭!",
"today_not_show": "今日不再显示本窗口",
"free": "免费",
"apply_for_free": "申请后免费使用",
"chatgpt_prompts_preset": "StableDiffusion是一款利用深度学习的文生图模型,支持通过使用提示词来产生新的图像,描述要包含或省略的元素。\n我在这里引入StableDiffusion算法中的Prompt概念,又被称为提示符。\n下面的prompt是用来指导AI绘画模型创作图像的。它们包含了图像的各种细节,如人物的外观、背景、颜色和光线效果,以及图像的主题和风格。这些prompt的格式经常包含括号内的加权数字,用于指定某些细节的重要性或强调。例如,\"(masterpiece:1.5)\"表示作品质量是非常重要的,多个括号也有类似作用。此外,如果使用中括号,如\"{blue hair:white hair:0.3}\",这代表将蓝发和白发加以融合,蓝发占比为0.3。\n以下是用prompt帮助AI模型生成图像的例子:masterpiece,(bestquality),highlydetailed,ultra-detailed,cold,solo,(1girl),(detailedeyes),(shinegoldeneyes),(longliverhair),expressionless,(long sleeves),(puffy sleeves),(white wings),shinehalo,(heavymetal:1.2),(metaljewelry),cross-lacedfootwear (chain),(Whitedoves:1.2)\n\n仿照例子,给出一套详细描述以下内容的prompt。直接开始给出prompt不需要用自然语言描述:",
"use_chatgpt_gen_prompts": "使用ChatGPT生成Prompt",
"input_image_desc": "请输入图片描述,例如:一只猫坐在建筑物顶部,非常高清、非常真实的照片。",
"api_config": "API配置",
"image_desc": "图片描述",
"preset": "预设",
"ai_one": "发给AI的第一句话",
"ai_two": "发给AI的第二句话",
"restore_to_default": "恢复到系统默认",
"generate": "生成",
"generate_result": "生成结果",
"is_required": "{0} 必须输入!",
"is_not_dict": "{0} 必须是字典!",
"no_response_from": "没有从 {0} 收到返回内容!",
"request_error": "{0} 请求错误!",
"response_is_empty": "{0} 返回内容为空!",
"response_error": "{0} 返回内容错误!",
"install_success": "{0} 安装成功!",
"install_failed": "Error: {0} 安装失败!",
"translate_text_is_empty": "翻译文本为空!",
"about_desc": "关于、更新、帮助、文档",
"version": "版本",
"unknown_version": "未知版本",
"has_new_version": "有新的版本,请及时更新",
"wiki_desc": "安装教程、功能详解、使用方法、常见问题等等,详见:",
"switch_to_light_theme": "切换到浅色主题",
"switch_to_dark_theme": "切换到深色主题",
"offline_api": "离线翻译",
"initialize": "初始化",
"initialize_finished": "初始化完成!",
"initialize_failed": "初始化失败!",
"model_not_initialized": "模型未初始化",
"model_is_loading": "模型正在加载中...",
"download_model_desc": "<p>如果以前未下载过模型,程序将从 Hugging Face 自动下载模型。</p><p>模型有几G大小,对网络环境要求较高。</p><p>下载时间较长,请耐心等待,如果下载失败,请重新初始化。</p><p>你可以前往控制台查看详细日志和进度。</p><p>模型文件将下载到目录:extensions\\{{shortName}}\\models</p>",
"download_model_desc2": "<p class='common-red'>如果你没有较好的网络环境,或者需要离线下载,请查看:</p><p><a href='{{docs}}/OfflineTranslation.html' target='_blank'>{{docs}}/OfflineTranslation.html</a></p>",
"auto_input_prompt": "当网页加载后自动填充提示词",
"disabled": "禁止",
"last_input_prompt": "最后输入的提示词",
"is_break_before_wrap": "是否在 “BREAK” 关键词前面加换行符。<br/>勾选后自动添加换行符。<br/>取消勾选将不做任何处理。",
"is_break_after_wrap": "是否在 “BREAK” 关键词后面加换行符。<br/>勾选后自动添加换行符。<br/>取消勾选将不做任何处理。",
"show_panel": "显示面板",
"hide_panel": "隐藏面板",
"show_group_tags": "显示分组标签",
"hide_group_tags": "隐藏分组标签",
"tags-copyright": "提示词整合来源 路过银河(知乎)、未知作者(Google Drive)、互联网等等,感谢这些作者的无私奉献!",
"reset_default_color": "重置为默认颜色",
"clear_color": "清除颜色",
"tags_color": "标签颜色",
"keywords_blacklist": "关键词黑名单",
"blacklist_desc": "设置为黑名单的关键词,将被插件自动过滤!",
"prompt_blacklist_list": "提示词 黑名单列表",
"negative_prompt_blacklist_list": "反向提示词 黑名单列表",
"lora_blacklist_list": "Lora 黑名单列表",
"lycoris_blacklist_list": "Lycoris 黑名单列表",
"embedding_blacklist_list": "Embedding 黑名单列表",
"one_keyword_per_line": "每行一个关键词",
"Keyword_group": "关键词组",
"enhance_translation_use_keyword_group": "使用关键词组增强翻译功能",
"enhance_translation_use_Keyword_group_desc": "<p>关键词组文件位于 group_tags 目录中。</p><p>启用该功能后,优先使用 yaml 文件中的内容进行翻译匹配。如果没有匹配到,再使用翻译接口进行翻译。</p><p>你可以前往 <a href='https://aiodoc.physton.com/GroupTags.html' target='_blank'>https://aiodoc.physton.com/GroupTags.html</a> 查看 group_tags 中文件的具体说明。</p>",
"hotkey_setting": "快捷键设置",
"left_click_keyword_tag": "左键点击关键词标签",
"right_click_keyword_tag": "右键点击关键词标签",
"dblclick_keyword_tag": "双击点击关键词标签",
"hover_keyword_tag": "鼠标悬停关键词标签",
"edit_keyword": "编辑关键词",
"disable_enable_keyword": "禁用/启用关键词",
"show_keyword_extend_panel": "显示关键词扩展面板",
"none": "无",
"add_blacklist": "添加到黑名单",
"confirm_add_blacklist": "是否将关键词“{0}”加入黑名单?",
"cancel_confirm_add_blacklist": "从关键词列表扩展面板中加入黑名单时,取消《确认提示窗口》。",
"model_name": "模型名称 (name)",
"output_name": "输出名称 (output name)",
"filename": "文件名 (filename)",
"filepath": "文件路径",
"trained_words": "触发关键词",
"description": "描述",
"open_civitai": "打开Civitai",
"use_keywords": "使用关键词",
"translate_blacklist_desc": "设为禁止翻译的词,插件将不会翻译它们!",
"disable_translate_prompt_blacklist_list": "禁止翻译的提示词列表",
"width": "宽度",
"height": "高度",
"move_up": "上移",
"move_down": "下移",
"is_remove_lora_before_comma": "是否去除Lora前面的逗号。<br/>勾选后Lora输出为“aaa <lora:bbb:0.1> <lora:ccc:0.1>, ddd”。<br/>取消勾选Lora输出为“aaa, <lora:bbb:0.1>, <lora:ccc:0.1>, ddd”。",
"is_remove_lora_after_comma": "是否去除Lora后面的逗号。<br/>勾选后Lora输出为“aaa, <lora:bbb:0.1> <lora:ccc:0.1> ddd”。<br/>取消勾选Lora输出为“aaa, <lora:bbb:0.1>, <lora:ccc:0.1>, ddd”。",
"is_use_novel_ai_weight_symbol": "是否使用NovelAI的权重符号。<br/>勾选后权重符号 () 将变为 {}",
"is_remove_before_line_comma": "是否去除换行前面的逗号。<br/>勾选后输出为“aaa, bbb<br/>ccc”。<br/>取消勾选输出为“aaa, bbb,<br/>ccc”。",
"auto_load_webui_prompt": "自动加载WebUI提示词变动。<br/>勾选后,当WebUI中提示词输入框的内容变动时,插件会自动加载关键词解析并格式化。<br/>未勾选,当WebUI中提示词输入框的内容变动时,需要手动点击加载提示词按钮。",
"load_webui_prompt": "加载WebUI提示词"
}
},
{
"code": "zh_HK",
"name": "繁體中文 (中國香港)",
"lang": {
"need_api_key": "需要API Key",
"dont_need_api_key": "唔使API Key(唔太可靠)",
"prompt": "提示詞",
"negative_prompt": "反向詞",
"txt2img": "文生圖",
"img2img": "圖生圖",
"please_enter_new_keyword": "請輸入新關鍵詞",
"local_language": "本地語言",
"increase_weight_add_parentheses": "增加關鍵詞權重:疊加()",
"increase_weight_subtract_parentheses": "增加關鍵詞權重:減少()",
"decrease_weight_add_brackets": "減弱關鍵詞權重:疊加[]",
"decrease_weight_subtract_brackets": "減弱關鍵詞權重:減少[]",
"translate_keyword_to_local_language": "翻譯關鍵詞到本地語言",
"copy_to_clipboard": "複製到剪貼板",
"disable_keyword": "禁用關鍵詞",
"enable_keyword": "啟用關鍵詞",
"copy_keywords_to_clipboard": "複製所有關鍵詞到剪貼板",
"translate_keywords_to_local_language": "翻譯所有關鍵詞到本地語言",
"translate_keyword_to_english": "翻譯為英文",
"translate_all_keywords_to_english": "翻譯所有非英文的關鍵詞到英文",
"auto_translate_to_english": "輸入新關鍵詞後自動翻譯到英文",
"auto_translate_to_local_language": "輸入新關鍵詞後自動翻譯到本地語言",
"translate_api": "翻譯接口",
"history": "歷史記錄",
"clear_history": "清除歷史記錄",
"clear_history_confirm": "確定要清除歷史記錄嗎?",
"clear_history_success": "歷史記錄已清除",
"max_history_count": "最大歷史記錄數",
"favorite": "收藏列表",
"add_to_favorite": "添加到收藏",
"remove_from_favorite": "從收藏中移除",
"use": "使用",
"click_to_edit": "滑鼠左鍵點擊進行編輯",
"drop_to_order": "滑鼠左鍵按住拖動進行排序",
"enter_to_save": "按回車鍵保存關鍵詞",
"enter_to_add": "按回車鍵添加關鍵詞",
"translate_api_not_found": "翻譯API未找到",
"translate_language_not_support": "翻譯語言唔支援",
"translate_api_not_support": "翻譯API唔支援",
"unset_name": "未設置名稱",
"no_history": "暫無歷史記錄",
"get_history_error": "獲取歷史記錄失敗",
"no_favorite": "暫無收藏",
"get_favorite_error": "獲取收藏失敗",
"hide_default_input_box": "隱藏預設輸入框",
"show_default_input_box": "顯示預設輸入框",
"translate_test": "翻譯測試",
"close": "關閉",
"save": "保存",
"delete_all_keywords": "刪除所有關鍵詞",
"delete_all_keywords_confirm": "確定要刪除所有關鍵詞嗎?",
"whether_to_enable_tooltip": "是否啟用每個功能的提示框,如果你已經熟悉使用本擴展的所有功能,可以取消勾選",
"delete_all_history": "刪除所有歷史記錄",
"delete_all_history_confirm": "確定要刪除所有歷史記錄嗎?",
"please_enter_the_content_here": "請輸入內容",
"not_api_key_desc": "免費嘅翻譯接口唔太可靠,唔係每個接口都可以喺你嘅電腦中使用,請盡量申請api key使用穩定嘅官方接口",
"setting_desc": "設置:翻譯API、自動翻譯、顯示/隱藏...",
"line_break_character": "換行符號",
"tagcomplete_translate_desc": "<p>使用 {{nameTagComplete}} 擴展中的 danbooru.csv 增強翻譯功能,以達到節省網絡請求、精確翻譯的目的。</p><p>點擊刷新按鈕後,將掃描以下路徑的csv文件:<p>extensions\\{{shortNameTagComplete}}\\tags</p><p>extensions\\{{shortName}}\\tags</p></p><p>你可以前往git倉庫 <a target='_blank' href='{{githubAssets}}/tree/main/tags'>{{nameAssets}}/tags</a> 下載csv文件。</p>",
"test": "測試",
"refresh": "刷新",
"not_enable": "不啟用",
"translate_result": "{0} 的翻譯結果是:{1}",
"not_found_csv_file": "沒有找到csv文件",
"theme_extension": "主題:擴展插件樣式",
"is_remove_space": "是否去除每個關鍵詞逗號後的空格。<br/>勾選後將自動去除空格(不便閱讀)。<br/>取消勾選則保留1個空格(影響TOKEN計數)。",
"theme": "主題",
"enhance": "增強",
"only_csv_on_auto": "自動翻譯僅使用CSV翻譯(不使用網路翻譯),需手動點擊翻譯按鈕才會使用CSV加網路翻譯。",
"one_translate_all_keywords": "一鍵翻譯所有關鍵詞",
"auto_translate": "輸入新關鍵詞後自動翻譯",
"is_remove_last_comma": "是否去除Prompt最後的一個逗號。<br/>勾選後Prompt輸出為“aaa,bbb,ccc”。<br/>取消勾選Prompt輸出為“aaa,bbb,ccc,”。",
"is_keep_weight_zero": "是否保留關鍵詞權重為0的格式。<br/>勾選後關鍵詞保留格式為“(text:0)”。<br/>取消勾選將不保留格式為“test”。",
"is_keep_weight_one": "是否保留關鍵詞權重為1的格式。<br/>勾選後關鍵詞保留格式為“(text:1)”。<br/>取消勾選將不保留格式為“test”。",
"prompt_format": "Prompt格式",
"tagcomplete_translate_desc2": "選擇了錯誤的CSV文件,將導致翻譯結果為空或為“0”。更換文件後,請點擊下方的測試按鈕,然後檢查翻譯的結果是否正確地顯示了您的本地語言。",
"dblclick_to_disable": "滑鼠雙擊禁用/啟用關鍵字",
"batch_operation": "批量操作",
"success": "成功!",
"failed": "失敗!",
"packages_desc": "檢測到部分python包沒有安裝或者未安裝成功,你需要點擊嘗試重新安裝。所有包安裝成功後,所有功能才能夠正常使用。<br/>如果點擊安裝按鈕後,還是無法成功安裝。你需要手動複製命令並在終端執行。",
"installed": "已安裝",
"not_install": "未安裝",
"install": "安裝",
"packages_installing": "開始安裝......如需查詢詳細安裝日誌,請前往WebUI控制台查看。安裝完成後,本窗口將自動關閉!",
"today_not_show": "今日不再顯示本窗口",
"free": "免費",
"apply_for_free": "申請後免費使用",
"chatgpt_prompts_preset": "StableDiffusion是一款利用深度學習的文生圖模型,支持通過使用提示詞來產生新的圖像,描述要包含或省略的元素。\n我在這裡引入StableDiffusion算法中的Prompt概念,又被稱為提示符。\n下面的prompt是用來指導AI繪畫模型創作圖像的。它們包含了圖像的各種細節,如人物的外觀、背景、顏色和光線效果,以及圖像的主題和風格。這些prompt的格式經常包含括號內的加權數字,用於指定某些細節的重要性或強調。例如,\"(masterpiece:1.5)\"表示作品質量是非常重要的,多個括號也有類似作用。此外,如果使用中括號,如\"{blue hair:white hair:0.3}\",這代表將藍髮和白髮加以融合,藍髮佔比為0.3。\n以下是用prompt幫助AI模型生成圖像的例子:masterpiece,(bestquality),highlydetailed,ultra-detailed,cold,solo,(1girl),(detailedeyes),(shinegoldeneyes),(longliverhair),expressionless,(long sleeves),(puffy sleeves),(white wings),shinehalo,(heavymetal:1.2),(metaljewelry),cross-lacedfootwear (chain),(Whitedoves:1.2)\n仿照例子,給出一套詳細描述以下內容的prompt。直接開始給出prompt不需要用自然語言描述:",
"use_chatgpt_gen_prompts": "使用ChatGPT生成Prompt",
"input_image_desc": "請輸入圖片描述,例如:一隻貓坐在建築物頂部,非常高清、非常真實的照片。",
"api_config": "API配置",
"image_desc": "圖片描述",
"preset": "預設",
"ai_one": "發給AI的第一句話",
"ai_two": "發給AI的第二句話",
"restore_to_default": "恢復到系統默認",
"generate": "生成",
"generate_result": "生成結果",
"is_required": "{0} 必須輸入!",
"is_not_dict": "{0} 必須是字典!",
"no_response_from": "沒有從 {0} 收到返回內容!",
"request_error": "{0} 請求錯誤!",
"response_is_empty": "{0} 返回內容為空!",
"response_error": "{0} 返回內容錯誤!",
"install_success": "{0} 安裝成功!",
"install_failed": "Error: {0} 安裝失敗!",
"translate_text_is_empty": "翻譯文本為空!",
"about_desc": "關於、更新、幫助、文件",
"version": "版本",
"unknown_version": "未知版本",
"has_new_version": "有新的版本,請及時更新",
"wiki_desc": "安裝教程、功能詳解、使用方法、常見問題等等,詳見:",
"switch_to_light_theme": "切換到淺色主題",
"switch_to_dark_theme": "切換到深色主題",
"offline_api": "離線翻譯",
"initialize": "初始化",
"initialize_finished": "初始化完成!",
"initialize_failed": "初始化失敗!",
"model_not_initialized": "模型未初始化",
"model_is_loading": "模型正在載入中...",
"download_model_desc": "<p>如果以前未下載過模型,程式將從 Hugging Face 自動下載模型。</p><p>模型有幾G大小,對網絡環境要求較高。</p><p>下載時間較長,請耐心等待,如果下載失敗,請重新初始化。</p><p>你可以前往控制台查看詳細日誌和進度。</p><p>模型文件將下載到目錄:extensions\\{{shortName}}\\models</p>",
"download_model_desc2": "<p class='common-red'>如果你沒有較好的網絡環境,或者需要離線下載,請查看:</p><p><a href='{{docs}}/OfflineTranslation.html' target='_blank'>{{docs}}/OfflineTranslation.html</a></p>",
"auto_input_prompt": "當網頁載入後自動填充提示詞",
"disabled": "禁止",
"last_input_prompt": "最後輸入的提示詞",
"is_break_before_wrap": "是否在“BREAK”關鍵詞前面加換行符。<br/>勾選後自動添加換行符。<br/>取消勾選將不做任何處理。",
"is_break_after_wrap": "是否在“BREAK”關鍵詞後面加換行符。<br/>勾選後自動添加換行符。<br/>取消勾選將不做任何處理。",
"show_panel": "顯示面板",
"hide_panel": "隱藏面板",
"show_group_tags": "顯示分組標籤",
"hide_group_tags": "隱藏分組標籤",
"tags-copyright": "提示詞整合來源 路过银河(知乎)、未知作者(Google Drive)、互聯網等等,感謝這些作者的無私奉獻!",
"reset_default_color": "重置為預設顏色",
"clear_color": "清除顏色",
"tags_color": "標籤顏色",
"keywords_blacklist": "關鍵詞黑名單",
"blacklist_desc": "設置為黑名單的關鍵詞,將被插件自動過濾!",
"prompt_blacklist_list": "提示詞 黑名單列表",
"negative_prompt_blacklist_list": "反向提示詞 黑名單列表",
"lora_blacklist_list": "Lora 黑名單列表",
"lycoris_blacklist_list": "Lycoris 黑名單列表",
"embedding_blacklist_list": "Embedding 黑名單列表",
"one_keyword_per_line": "每行一個關鍵詞",
"Keyword_group": "關鍵詞組",
"enhance_translation_use_keyword_group": "使用關鍵詞組增強翻譯功能",
"enhance_translation_use_Keyword_group_desc": "<p>關鍵詞組文件位於 group_tags 目錄中。</p><p>啟用該功能後,優先使用 yaml 文件中的內容進行翻譯匹配。如果沒有匹配到,再使用翻譯接口進行翻譯。</p><p>你可以前往 <a href='https://aiodoc.physton.com/GroupTags.html' target='_blank'>https://aiodoc.physton.com/GroupTags.html</a> 查看 group_tags 中文件的具體說明。</p>",
"hotkey_setting": "快捷鍵設定",
"left_click_keyword_tag": "左鍵點擊關鍵詞標籤",
"right_click_keyword_tag": "右鍵點擊關鍵詞標籤",
"dblclick_keyword_tag": "雙擊點擊關鍵詞標籤",
"hover_keyword_tag": "滑鼠懸停關鍵詞標籤",
"edit_keyword": "編輯關鍵詞",
"disable_enable_keyword": "禁用/啟用關鍵詞",
"show_keyword_extend_panel": "顯示關鍵詞擴展面板",
"none": "無",
"add_blacklist": "加入黑名單",
"confirm_add_blacklist": "是否將關鍵詞“{0}”加入黑名單?",
"cancel_confirm_add_blacklist": "從關鍵詞列表擴展面板中加入黑名單時,取消《確認提示窗口》。",
"model_name": "模型名稱 (name)",
"output_name": "輸出名稱 (output name)",
"filename": "文件名稱 (filename)",
"filepath": "文件路徑",
"trained_words": "觸發關鍵詞",
"description": "描述",
"open_civitai": "打開Civitai",
"use_keywords": "使用關鍵詞",
"translate_blacklist_desc": "設為禁止翻譯的詞,插件將不會翻譯它們!",
"disable_translate_prompt_blacklist_list": "禁止翻譯的提示詞列表",
"width": "寬度",
"height": "高度",
"move_up": "上移",
"move_down": "下移",
"is_remove_lora_before_comma": "是否去除Lora前面的逗號。<br/>勾選後Lora輸出為「aaa <lora:bbb:0.1> <lora:ccc:0.1>, ddd」。<br/>取消勾選Lora輸出為「aaa, <lora:bbb:0.1>, <lora:ccc:0.1>, ddd」。",
"is_remove_lora_after_comma": "是否去除Lora後面的逗號。<br/>勾選後Lora輸出為「aaa, <lora:bbb:0.1> <lora:ccc:0.1> ddd」。<br/>取消勾選Lora輸出為「aaa, <lora:bbb:0.1>, <lora:ccc:0.1>, ddd」。",
"is_use_novel_ai_weight_symbol": "是否使用NovelAI的權重符號。<br/>勾選後權重符號 () 將變為 {}",
"is_remove_before_line_comma": "是否去除換行前面的逗號。<br/>勾選後輸出為「aaa, bbb<br/>ccc」。<br/>取消勾選輸出為「aaa, bbb,<br/>ccc」。",
"auto_load_webui_prompt": "自動加載WebUI提示詞變動。<br/>勾選後,當WebUI中提示詞輸入框的內容變動時,插件會自動加載關鍵詞解析並格式化。<br/>未勾選,當WebUI中提示詞輸入框的內容變動時,需要手動點擊加載提示詞按鈕。",
"load_webui_prompt": "加載WebUI提示詞"
}
},
{
"code": "zh_TW",
"name": "繁体中文 (中國台灣)",
"lang": {
"need_api_key": "需要API Key",
"dont_need_api_key": "不需要API Key(不穩定)",
"prompt": "提示詞",
"negative_prompt": "反向詞",
"txt2img": "文生圖",
"img2img": "圖生圖",
"please_enter_new_keyword": "請輸入新關鍵詞",
"local_language": "本地語言",
"increase_weight_add_parentheses": "增加關鍵詞權重:疊加()",
"increase_weight_subtract_parentheses": "增加關鍵詞權重:減少()",
"decrease_weight_add_brackets": "減弱關鍵詞權重:疊加[]",
"decrease_weight_subtract_brackets": "減弱關鍵詞權重:減少[]",
"translate_keyword_to_local_language": "翻譯關鍵詞到本地語言",
"copy_to_clipboard": "複製到剪貼板",
"disable_keyword": "禁用關鍵詞",
"enable_keyword": "啟用關鍵詞",
"copy_keywords_to_clipboard": "複製所有關鍵詞到剪貼板",
"translate_keywords_to_local_language": "翻譯所有關鍵詞到本地語言",
"translate_keyword_to_english": "翻譯為英文",
"translate_all_keywords_to_english": "翻譯所有非英文的關鍵詞到英文",
"auto_translate_to_english": "輸入新關鍵詞後自動翻譯到英文",
"auto_translate_to_local_language": "輸入新關鍵詞後自動翻譯到本地語言",
"translate_api": "翻譯接口",
"history": "歷史記錄",
"clear_history": "清除歷史記錄",
"clear_history_confirm": "確定要清除歷史記錄嗎?",
"clear_history_success": "歷史記錄已清除",
"max_history_count": "最大歷史記錄數",
"favorite": "收藏列表",
"add_to_favorite": "添加到收藏",
"remove_from_favorite": "從收藏中移除",
"use": "使用",
"click_to_edit": "滑鼠左鍵點擊進行編輯",
"drop_to_order": "滑鼠左鍵按住拖動進行排序",
"enter_to_save": "按回車鍵保存關鍵詞",
"enter_to_add": "按回車鍵添加關鍵詞",
"translate_api_not_found": "翻譯API未找到",
"translate_language_not_support": "翻譯語言不支持",
"translate_api_not_support": "翻譯API不支持",
"unset_name": "未設置名稱",
"no_history": "暫無歷史記錄",
"get_history_error": "獲取歷史記錄失敗",
"no_favorite": "暫無收藏",
"get_favorite_error": "獲取收藏失敗",
"hide_default_input_box": "隱藏默認輸入框",
"show_default_input_box": "顯示默認輸入框",
"translate_test": "翻譯測試",
"close": "關閉",
"save": "保存",
"delete_all_keywords": "刪除所有關鍵詞",
"delete_all_keywords_confirm": "確定要刪除所有關鍵詞嗎?",
"whether_to_enable_tooltip": "是否啟用每個功能的提示框,如果你已經熟練掌握本擴展的所有功能,可以取消勾選",
"delete_all_history": "删除所有歷史記錄",
"delete_all_history_confirm": "確定要删除所有歷史記錄嗎?",
"please_enter_the_content_here": "請輸入內容",
"not_api_key_desc": "免費的翻譯介面不穩定,不是每一個介面都能在你的電腦上使用,建議申請API Key以使用穩定的官方介面。",
"setting_desc": "設置:翻譯API、自動翻譯、顯示/隱藏...",
"line_break_character": "換行字元",
"tagcomplete_translate_desc": "<p>使用 {{nameTagComplete}} 擴展中的 danbooru.csv 增強翻譯功能,以達到節省網路請求、精確翻譯的目的。</p><p>點擊重新整理按鈕後,將掃描以下路徑的csv檔案:<p>extensions\\{{shortNameTagComplete}}\\tags</p><p>extensions\\{{shortName}}\\tags</p></p><p>你可以前往git儲存庫 <a target='_blank' href='{{githubAssets}}/tree/main/tags'>{{nameAssets}}/tags</a> 下載csv檔案。</p>",
"test": "測試",
"refresh": "重新整理",
"not_enable": "不啟用",
"translate_result": "{0} 的翻譯結果是:{1}",
"not_found_csv_file": "找不到csv檔案",
"theme_extension": "主題:擴充套件樣式",
"is_remove_space": "是否移除每個關鍵字逗號後的空格。<br/>勾選後會自動移除空格(不易閱讀)。<br/>取消勾選則保留 1 個空格(會影響 TOKEN 計數)。",
"theme": "主題",
"enhance": "增強",
"only_csv_on_auto": "自動翻譯僅使用CSV翻譯(不使用網路翻譯),需手動點擊翻譯按鈕才會使用CSV加網路翻譯。",
"one_translate_all_keywords": "一鍵翻譯所有關鍵詞",
"auto_translate": "輸入新關鍵詞後自動翻譯",
"is_remove_last_comma": "是否移除Prompt結尾的逗號。<br/>勾選後Prompt輸出為“aaa,bbb,ccc”。<br/>取消勾選Prompt輸出為“aaa,bbb,ccc,”。",
"is_keep_weight_zero": "是否保留關鍵詞權重為0的格式。<br/>勾選後關鍵詞保留格式為“(text:0)”。<br/>取消勾選將不保留格式為“test”。",
"is_keep_weight_one": "是否保留關鍵詞權重為1的格式。<br/>勾選後關鍵詞保留格式為“(text:1)”。<br/>取消勾選將不保留格式為“test”。",
"prompt_format": "Prompt格式",
"tagcomplete_translate_desc2": "選擇了錯誤的CSV檔案,會導致翻譯結果為空或“0”。更改檔案後,請點擊下方的測試按鈕,檢查是否正確顯示本地語言的翻譯結果。",
"dblclick_to_disable": "滑鼠雙擊禁用/啟用關鍵字",
"batch_operation": "批次操作",
"success": "成功!",
"failed": "失敗!",
"packages_desc": "偵測到部分python包沒有安裝或者未安裝成功,你需要點擊嘗試重新安裝。所有包安裝成功後,所有功能才能夠正常使用。<br/>如果點擊安裝按鈕後,還是無法成功安裝。你需要手動複製命令並在終端執行。",
"installed": "已安裝",
"not_install": "未安裝",
"install": "安裝",
"packages_installing": "開始安裝......如需查詢詳細安裝日誌,請前往WebUI控制台查看。安裝完成後,本視窗將自動關閉!",
"today_not_show": "今日不再顯示本視窗",
"free": "免費",
"apply_for_free": "申請後免費使用",
"chatgpt_prompts_preset": "StableDiffusion是一款利用深度學習的文生圖模型,支持通過使用提示詞來產生新的圖像,描述要包含或省略的元素。\n我在這裡引入StableDiffusion算法中的Prompt概念,又被稱為提示符。\n下面的prompt是用來指導AI繪畫模型創作圖像的。它們包含了圖像的各種細節,如人物的外觀、背景、顏色和光線效果,以及圖像的主題和風格。這些prompt的格式經常包含括號內的加權數字,用於指定某些細節的重要性或強調。例如,\"(masterpiece:1.5)\"表示作品質量是非常重要的,多個括號也有類似作用。此外,如果使用中括號,如\"{blue hair:white hair:0.3}\",這代表將藍髮和白髮加以融合,藍髮佔比為0.3。\n以下是用prompt幫助AI模型生成圖像的例子:masterpiece,(bestquality),highlydetailed,ultra-detailed,cold,solo,(1girl),(detailedeyes),(shinegoldeneyes),(longliverhair),expressionless,(long sleeves),(puffy sleeves),(white wings),shinehalo,(heavymetal:1.2),(metaljewelry),cross-lacedfootwear (chain),(Whitedoves:1.2)\n仿照例子,給出一套詳細描述以下內容的prompt。直接開始給出prompt不需要用自然語言描述:",
"use_chatgpt_gen_prompts": "使用ChatGPT生成Prompt",
"input_image_desc": "請輸入圖片描述,例如:一隻貓坐在建築物頂部,非常高清、非常真實的照片。",
"api_config": "API配置",
"image_desc": "圖片描述",
"preset": "預設",
"ai_one": "發給AI的第一句話",
"ai_two": "發給AI的第二句話",
"restore_to_default": "恢復到系統預設",
"generate": "生成",
"generate_result": "生成結果",
"is_required": "{0} 必須輸入!",
"is_not_dict": "{0} 必須是字典!",
"no_response_from": "沒有從 {0} 收到返回內容!",
"request_error": "{0} 請求錯誤!",
"response_is_empty": "{0} 返回內容為空!",
"response_error": "{0} 返回內容錯誤!",
"install_success": "{0} 安裝成功!",
"install_failed": "Error: {0} 安裝失敗!",
"translate_text_is_empty": "翻譯文本為空!",
"about_desc": "關於、更新、幫助、文件",
"version": "版本",
"unknown_version": "未知版本",
"has_new_version": "有新的版本,請及時更新",
"wiki_desc": "安裝教程、功能詳解、使用方法、常見問題等等,詳見:",
"switch_to_light_theme": "切換到淺色主題",
"switch_to_dark_theme": "切換到深色主題",
"offline_api": "離線翻譯",
"initialize": "初始化",
"initialize_finished": "初始化完成!",
"initialize_failed": "初始化失敗!",
"model_not_initialized": "模型未初始化",
"model_is_loading": "模型正在載入中...",
"download_model_desc": "<p>如果以前未下載過模型,程式將從 Hugging Face 自動下載模型。</p><p>模型有幾G大小,對網絡環境要求較高。</p><p>下載時間較長,請耐心等待,如果下載失敗,請重新初始化。</p><p>你可以前往控制台查看詳細日誌和進度。</p><p>模型檔案將下載到目錄:extensions\\{{shortName}}\\models</p>",
"download_model_desc2": "<p class='common-red'>如果你沒有較好的網絡環境,或者需要離線下載,請查看:</p><p><a href='{{docs}}/OfflineTranslation.html' target='_blank'>{{docs}}/OfflineTranslation.html</a></p>",
"auto_input_prompt": "當網頁載入後自動填充提示詞",
"disabled": "禁止",
"last_input_prompt": "最後輸入的提示詞",
"is_break_before_wrap": "是否在「BREAK」關鍵詞前面加換行符。<br/>勾選後自動添加換行符。<br/>取消勾選將不做任何處理。",
"is_break_after_wrap": "是否在「BREAK」關鍵詞後面加換行符。<br/>勾選後自動添加換行符。<br/>取消勾選將不做任何處理。",
"show_panel": "顯示面板",
"hide_panel": "隱藏面板",
"show_group_tags": "顯示分組標籤",
"hide_group_tags": "隱藏分組標籤",
"tags-copyright": "提示詞整合來源 路过银河(知乎)、未知作者(Google Drive)、互聯網等等,感謝這些作者的無私奉獻!",
"reset_default_color": "重置為預設顏色",
"clear_color": "清除顏色",
"tags_color": "標籤顏色",
"keywords_blacklist": "關鍵字黑名單",
"blacklist_desc": "設定為黑名單的關鍵字將被插件自動過濾!",
"prompt_blacklist_list": "提示詞 黑名單清單",
"negative_prompt_blacklist_list": "反向提示詞 黑名單清單",
"lora_blacklist_list": "Lora 黑名單清單",
"lycoris_blacklist_list": "Lycoris 黑名單清單",
"embedding_blacklist_list": "Embedding 黑名單清單",
"one_keyword_per_line": "每行一個關鍵字",
"Keyword_group": "關鍵詞組",
"enhance_translation_use_keyword_group": "使用關鍵詞組增強翻譯功能",
"enhance_translation_use_Keyword_group_desc": "<p>關鍵詞組文件位於 group_tags 目錄中。</p><p>啟用該功能後,優先使用 yaml 文件中的內容進行翻譯匹配。如果沒有匹配到,再使用翻譯接口進行翻譯。</p><p>你可以前往 <a href='https://aiodoc.physton.com/GroupTags.html' target='_blank'>https://aiodoc.physton.com/GroupTags.html</a> 查看 group_tags 中文件的具體說明。</p>",
"hotkey_setting": "快捷鍵設定",
"left_click_keyword_tag": "左鍵點擊關鍵字標籤",
"right_click_keyword_tag": "右鍵點擊關鍵字標籤",
"dblclick_keyword_tag": "雙擊點擊關鍵字標籤",
"hover_keyword_tag": "滑鼠懸停關鍵字標籤",
"edit_keyword": "編輯關鍵字",
"disable_enable_keyword": "禁用/啟用關鍵字",
"show_keyword_extend_panel": "顯示關鍵字擴展面板",
"none": "無",
"add_blacklist": "加入黑名單",
"confirm_add_blacklist": "是否將關鍵詞“{0}”加入黑名單?",
"cancel_confirm_add_blacklist": "從關鍵詞列表擴展面板中加入黑名單時,取消《確認提示視窗》。",
"model_name": "模型名稱 (name)",
"output_name": "輸出名稱 (output name)",
"filename": "檔案名稱 (filename)",
"filepath": "檔案路徑",
"trained_words": "觸發關鍵詞",
"description": "描述",
"open_civitai": "開啟Civitai",
"use_keywords": "使用關鍵詞",
"translate_blacklist_desc": "設為禁止翻譯的詞,插件將不會翻譯它們!",
"disable_translate_prompt_blacklist_list": "禁止翻譯的提示詞列表",
"width": "寬度",
"height": "高度",
"move_up": "上移",
"move_down": "下移",
"is_remove_lora_before_comma": "是否移除Lora前面的逗號。<br/>勾選後Lora輸出為「aaa <lora:bbb:0.1> <lora:ccc:0.1>, ddd」。<br/>取消勾選Lora輸出為「aaa, <lora:bbb:0.1>, <lora:ccc:0.1>, ddd」。",
"is_remove_lora_after_comma": "是否移除Lora後面的逗號。<br/>勾選後Lora輸出為「aaa, <lora:bbb:0.1> <lora:ccc:0.1> ddd」。<br/>取消勾選Lora輸出為「aaa, <lora:bbb:0.1>, <lora:ccc:0.1>, ddd」。",
"is_use_novel_ai_weight_symbol": "是否使用NovelAI的權重符號。<br/>勾選後權重符號 () 將變為 {}",
"is_remove_before_line_comma": "是否移除換行前面的逗號。<br/>勾選後輸出為「aaa, bbb<br/>ccc」。<br/>取消勾選輸出為「aaa, bbb,<br/>ccc」。",
"auto_load_webui_prompt": "自動載入WebUI提示詞變動。<br/>勾選後,當WebUI中提示詞輸入框的內容變動時,插件會自動載入關鍵詞解析並格式化。<br/>未勾選,當WebUI中提示詞輸入框的內容變動時,需要手動點擊載入提示詞按鈕。",
"load_webui_prompt": "載入WebUI提示詞"
}
},
{
"code": "en_US",
"name": "English (US)",
"lang": {
"need_api_key": "API Key Required",
"dont_need_api_key": "API Key Not Required (Unstable)",
"prompt": "Prompt",
"negative_prompt": "Negative Prompt",
"txt2img": "Text to Image",
"img2img": "Image to Image",
"please_enter_new_keyword": "Please Enter New Keyword",
"local_language": "Local Language",
"increase_weight_add_parentheses": "Increase Keyword Weight: Add ()",
"increase_weight_subtract_parentheses": "Increase Keyword Weight: Subtract ()",
"decrease_weight_add_brackets": "Decrease Keyword Weight: Add []",
"decrease_weight_subtract_brackets": "Decrease Keyword Weight: Subtract []",
"translate_keyword_to_local_language": "Translate Keyword to Local Language",
"copy_to_clipboard": "Copy to Clipboard",
"disable_keyword": "Disable Keyword",
"enable_keyword": "Enable Keyword",
"copy_keywords_to_clipboard": "Copy All Keywords to Clipboard",
"translate_keywords_to_local_language": "Translate All Keywords to Local Language",
"translate_keyword_to_english": "Translate to English",
"translate_all_keywords_to_english": "Translate All Non-English Keywords to English",
"auto_translate_to_english": "Automatically Translate to English After Entering New Keyword",
"auto_translate_to_local_language": "Automatically Translate to Local Language After Entering New Keyword",
"translate_api": "Translation API",
"history": "History",
"clear_history": "Clear History",
"clear_history_confirm": "Are you sure you want to clear the history?",
"clear_history_success": "History cleared",
"max_history_count": "Maximum History Count",
"favorite": "Favorites",
"add_to_favorite": "Add to Favorites",
"remove_from_favorite": "Remove from Favorites",
"use": "Use",
"click_to_edit": "Click Left Mouse Button to Edit",
"drop_to_order": "Hold Down Left Mouse Button to Drag and Sort",
"enter_to_save": "Press Enter to Save Keyword",
"enter_to_add": "Press Enter to Add Keyword",
"translate_api_not_found": "Translation API Not Found",
"translate_language_not_support": "Translation Language Not Supported",
"translate_api_not_support": "Translation API Not Supported",
"unset_name": "Name Not Set",
"no_history": "No History",
"get_history_error": "Failed to Get History",
"no_favorite": "No Favorites",
"get_favorite_error": "Failed to Get Favorites",
"hide_default_input_box": "Hide Default Input Box",
"show_default_input_box": "Show Default Input Box",
"translate_test": "Translate Test",
"close": "Close",
"save": "Save",
"delete_all_keywords": "Delete All Keywords",
"delete_all_keywords_confirm": "Are you sure you want to delete all keywords?",
"whether_to_enable_tooltip": "Enable Tooltips for Each Function. If You Are Familiar with All the Functions of This Extension, You Can Uncheck This Option.",
"delete_all_history": "Delete All History",
"delete_all_history_confirm": "Are you sure you want to delete all history?",
"please_enter_the_content_here": "Please enter content",
"not_api_key_desc": "Free translation interfaces are unstable, and not every interface can be used on your computer. Please apply for an API Key to use the stable official interface.",
"setting_desc": "Settings: Translation API, automatic translation, show/hide...",
"line_break_character": "Line break character",
"tagcomplete_translate_desc": "<p>Enhance translation function using danbooru.csv in {{nameTagComplete}} extension to achieve the purpose of saving network requests and accurate translation.</p><p>After clicking the refresh button, csv files from the following paths will be scanned: <p>extensions\\{{shortNameTagComplete}}\\tags</p><p>extensions\\{{shortName}}\\tags</p></p><p>You can download csv files from git repository <a target='_blank' href='{{githubAssets}}/tree/main/tags'>{{nameAssets}}/tags</a>.</p>",
"test": "Test",
"refresh": "Refresh",
"not_enable": "Not enable",
"translate_result": "The translation result of {0} is: {1}",
"not_found_csv_file": "Csv file not found",
"theme_extension": "Theme: Extension Plugin Style",
"is_remove_space": "Whether to remove the spaces after each comma in the keyword.<br/>Checking will automatically remove the spaces (difficult to read).<br/>Unchecking will keep one space (affecting TOKEN count).",
"theme": "Theme",
"enhance": "Enhance",
"only_csv_on_auto": "Automatic translation uses only CSV translation (not network translation). To use both CSV and network translation, click the translate button manually.",
"one_translate_all_keywords": "Translate all keywords in one click",
"auto_translate": "Automatically translate after entering new keywords",
"is_remove_last_comma": "Remove the last comma in Prompt or not.<br/>When selected, Prompt output is \"aaa,bbb,ccc\".<br/>When unselected, Prompt output is \"aaa,bbb,ccc,\".",
"is_keep_weight_zero": "Keep the format of keywords with a weight of 0 or not.<br/>When selected, the keyword format is kept as \"(text:0)\".<br/>When unselected, the format is not kept as \"test\".",
"is_keep_weight_one": "Keep the format of keywords with a weight of 1 or not.<br/>When selected, the keyword format is kept as \"(text:1)\".<br/>When unselected, the format is not kept as \"test\".",
"prompt_format": "Prompt Format",
"tagcomplete_translate_desc2": "Selecting the wrong CSV file will result in an empty or '0' translation. After changing the file, please click the test button below and check if the translated result is correctly displayed in your local language.",
"dblclick_to_disable": "Double-click to disable/enable keyword",
"batch_operation": "Batch operation",
"success": "Success!",
"failed": "Failed!",
"packages_desc": "Some packages of python are detected to have not been installed or installed unsuccessfully. You need to click to try reinstalling them. After all the packages are successfully installed, all the functions can work normally.<br/>If you still cannot install them successfully after clicking the install button, you need to manually copy the command and execute it in the terminal.",
"installed": "Installed",
"not_install": "Not installed",
"install": "Install",
"packages_installing": "Starting to install......If you need to check the detailed installation log, please go to the WebUI console to view it. After the installation is completed, this window will close automatically!",
"today_not_show": "Do not show this window today",
"free": "Free",
"apply_for_free": "Apply for free use",
"chatgpt_prompts_preset": "StableDiffusion is a deep learning text-to-image model that generates images based on prompts. These prompts can specify the desired elements of the image, such as the appearance of characters, background, color and lighting effects, as well as the theme and style of the image. The prompts often contain weighted numbers in parentheses to indicate the importance or emphasis of certain details. For example, \"(masterpiece:1.5)\" indicates that the quality of the work is very important. Multiple parentheses also have similar effects. In addition, if square brackets are used, such as \"{blue hair:white hair:0.3}\", this represents the fusion of blue and white hair, with blue hair accounting for 0.3.\nHere is an example of using prompts to help an AI model generate an image: masterpiece,(bestquality),highlydetailed,ultra-detailed,cold,solo,(1girl),(detailedeyes),(shinegoldeneyes),(longliverhair),expressionless,(long sleeves),(puffy sleeves),(white wings),shinehalo,(heavymetal:1.2),(metaljewelry),cross-lacedfootwear (chain),(Whitedoves:1.2)\n\nFollowing the example, provide a set of prompts that detail the following content. Start the prompts directly without using natural language to describe them: ",
"use_chatgpt_gen_prompts": "Use ChatGPT to Generate Prompts",
"input_image_desc": "Please enter the image description, for example: a cat sitting on top of a building, a very high-definition, very authentic photo.",
"api_config": "API Configuration",
"image_desc": "Image Description",
"preset": "Preset",
"ai_one": "First Sentence Sent to AI",
"ai_two": "Second Sentence Sent to AI",
"restore_to_default": "Restore to System Default",
"generate": "Generate",
"generate_result": "Generate Result",
"is_required": "{0} is required!",
"is_not_dict": "{0} must be a dictionary!",
"no_response_from": "No response from {0}!",
"request_error": "{0} request error!",
"response_is_empty": "{0} response is empty!",
"response_error": "{0} response error!",
"install_success": "{0} installed successfully!",
"install_failed": "Error: {0} installation failed!",
"translate_text_is_empty": "Translation text is empty!",
"about_desc": "About, Updates, Help, Documentation",
"version": "Version",
"unknown_version": "Unknown Version",
"has_new_version": "There is a new version available, please update",
"wiki_desc": "Installation tutorial, detailed features, usage instructions, frequently asked questions, etc. See:",
"switch_to_light_theme": "Switch to Light Theme",
"switch_to_dark_theme": "Switch to Dark Theme",
"offline_api": "Offline Translation",
"initialize": "Initialize",
"initialize_finished": "Initialization Finished!",
"initialize_failed": "Initialization Failed!",
"model_not_initialized": "Model Not Initialized",
"model_is_loading": "Model is Loading...",
"download_model_desc": "<p>If the model has not been downloaded before, the program will automatically download the model from Hugging Face.</p><p>The model is several gigabytes in size and requires a high-speed internet connection.</p><p>The download may take a while, please be patient. If the download fails, please reinitialize.</p><p>You can check detailed logs and progress in the console.</p><p>The model files will be downloaded to the directory: extensions\\{{shortName}}\\models</p>",
"download_model_desc2": "<p class='common-red'>If you do not have a good network environment or need to download offline, please view:</p><p><a href='{{docs}}/OfflineTranslation.html' target='_blank'>{{docs}}/OfflineTranslation.html</a></p>",
"auto_input_prompt": "Auto-fill prompt when the webpage loads",
"disabled": "Disabled",
"last_input_prompt": "Last input prompt",
"is_break_before_wrap": "Whether to add a line break before the \"BREAK\" keyword.<br/>When selected, a line break will be automatically added.<br/>Deselecting will not perform any action.",
"is_break_after_wrap": "Whether to add a line break after the \"BREAK\" keyword.<br/>When selected, a line break will be automatically added.<br/>Deselecting will not perform any action.",
"show_panel": "Show Panel",
"hide_panel": "Hide Panel",
"show_group_tags": "Show Group Tags",
"hide_group_tags": "Hide Group Tags",
"tags-copyright": "Prompt words integration source from 路过银河(Zhihu)、unknown author(Google Drive)、internet, etc. Thanks to these selfless contributors!",
"reset_default_color": "Reset to Default Color",
"clear_color": "Clear Color",
"tags_color": "Tags Color",
"keywords_blacklist": "Keywords Blacklist",
"blacklist_desc": "Keywords set as blacklist will be automatically filtered by the plugin!",
"prompt_blacklist_list": "Prompt Blacklist List",
"negative_prompt_blacklist_list": "Negative Prompt Blacklist List",
"lora_blacklist_list": "Lora Blacklist",
"lycoris_blacklist_list": "Lycoris Blacklist",
"embedding_blacklist_list": "Embedding Blacklist",
"one_keyword_per_line": "One keyword per line",
"Keyword_group": "Keyword Group",
"enhance_translation_use_keyword_group": "Enhance Translation with Keyword Group",
"enhance_translation_use_Keyword_group_desc": "<p>The keyword group file is located in the group_tags directory.</p><p>When this feature is enabled, the contents in the YAML file are prioritized for translation matching. If no match is found, the translation interface is used.</p><p>You can visit <a href='https://aiodoc.physton.com/GroupTags.html' target='_blank'>https://aiodoc.physton.com/GroupTags.html</a> for specific instructions on the files in the group_tags directory.</p>",
"hotkey_setting": "Hotkey Setting",
"left_click_keyword_tag": "Left Click Keyword Tag",
"right_click_keyword_tag": "Right Click Keyword Tag",
"dblclick_keyword_tag": "Double Click Keyword Tag",
"hover_keyword_tag": "Hover Keyword Tag",
"edit_keyword": "Edit Keyword",
"disable_enable_keyword": "Disable/Enable Keyword",
"show_keyword_extend_panel": "Show Keyword Extend Panel",
"none": "None",
"add_blacklist": "Add to blacklist",
"confirm_add_blacklist": "Do you want to add the keyword \"{0}\" to the blacklist?",
"cancel_confirm_add_blacklist": "Cancel the confirmation dialog when adding to the blacklist from the keyword list expansion panel.",
"model_name": "Model Name",
"output_name": "Output Name",
"filename": "File Name",
"filepath": "File Path",
"trained_words": "Trigger Keywords",
"description": "Description",
"open_civitai": "Open Civitai",
"use_keywords": "Use Keywords",
"translate_blacklist_desc": "Set as forbidden words for translation, the plugin will not translate them!",
"disable_translate_prompt_blacklist_list": "List of prompt words for translation disable",
"width": "Width",
"height": "Height",
"move_up": "Move Up",
"move_down": "Move Down",
"is_remove_lora_before_comma": "Remove the comma before Lora or not.<br/>If selected, the Lora output will be 'aaa <lora:bbb:0.1> <lora:ccc:0.1>, ddd'.<br/>If unselected, the Lora output will be 'aaa, <lora:bbb:0.1>, <lora:ccc:0.1>, ddd'.",
"is_remove_lora_after_comma": "Remove the comma after Lora or not.<br/>If selected, the Lora output will be 'aaa, <lora:bbb:0.1> <lora:ccc:0.1> ddd'.<br/>If unselected, the Lora output will be 'aaa, <lora:bbb:0.1>, <lora:ccc:0.1>, ddd'.",
"is_use_novel_ai_weight_symbol": "Whether to use NovelAI's weight symbol.<br/>Checking this will change the weight symbol () to {}",
"is_remove_before_line_comma": "Whether to remove the comma before a line break.<br/>If checked, the output will be \"aaa, bbb<br/>ccc\".<br/>If unchecked, the output will be \"aaa, bbb,<br/>ccc\".",
"auto_load_webui_prompt": "Auto-load WebUI prompt changes.<br/>When checked, the plugin will automatically load and format keyword parsing when the content of the prompt input box in WebUI changes.<br/>When unchecked, you need to manually click the load prompt button when the content of the prompt input box in WebUI changes.",
"load_webui_prompt": "Load WebUI prompt"
}
},
{
"code": "af_ZA",
"name": "Afrikaans (South Africa)",
"lang": {}
},
{
"code": "sq_AL",
"name": "Shqip (Shqipëria)",
"lang": {}
},
{
"code": "am_ET",
"name": "አማርኛ (ኢትዮጵያ)",
"lang": {}
},
{
"code": "ar_SA",
"name": "العربية (السعودية)",
"lang": {
"need_api_key": "يتطلب مفتاح API",
"dont_need_api_key": "لا يتطلب مفتاح API (غير مستقر)",
"prompt": "كلمات تذكيرية",
"negative_prompt": "كلمات تذكيرية عكسية",
"txt2img": "النص إلى الصورة",
"img2img": "الصورة إلى صورة",
"please_enter_new_keyword": "يرجى إدخال كلمة مفتاحية جديدة",
"local_language": "اللغة المحلية",
"increase_weight_add_parentheses": "زيادة وزن الكلمات الرئيسية: تراكب ()",
"increase_weight_subtract_parentheses": "زيادة وزن الكلمات الرئيسية: انقاص ()",
"decrease_weight_add_brackets": "تقليل وزن الكلمات الرئيسية: تراكب []",
"decrease_weight_subtract_brackets": "تقليل وزن الكلمات الرئيسية: انقاص []",
"translate_keyword_to_local_language": "ترجمة الكلمة المفتاحية إلى اللغة المحلية",
"copy_to_clipboard": "نسخ إلى الحافظة",
"disable_keyword": "تعطيل الكلمة المفتاحية",
"enable_keyword": "تمكين الكلمة المفتاحية",
"copy_keywords_to_clipboard": "نسخ جميع الكلمات المفتاحية إلى الحافظة",
"translate_keywords_to_local_language": "ترجمة جميع الكلمات المفتاحية إلى اللغة المحلية",
"translate_keyword_to_english": "ترجمة إلى الإنجليزية",
"translate_all_keywords_to_english": "ترجمة جميع الكلمات المفتاحية غير الإنجليزية إلى الإنجليزية",
"auto_translate_to_english": "الترجمة التلقائية إلى الإنجليزية بعد إدخال كلمة مفتاحية جديدة",
"auto_translate_to_local_language": "الترجمة التلقائية إلى اللغة المحلية بعد إدخال كلمة مفتاحية جديدة",
"translate_api": "واجهة برمجة الترجمة",
"history": "سجل الأحداث",
"clear_history": "مسح سجل الأحداث",
"clear_history_confirm": "هل أنت متأكد من رغبتك في مسح سجل الأحداث؟",
"clear_history_success": "تم مسح سجل الأحداث بنجاح",
"max_history_count": "أقصى عدد لسجل الأحداث",
"favorite": "القائمة المفضلة",
"add_to_favorite": "إضافة إلى قائمة المفضلة",
"remove_from_favorite": "إزالة من قائمة المفضلة",
"use": "استخدام",
"click_to_edit": "انقر بزر الماوس الأيسر للتحرير",
"drop_to_order": "استمر في النقر والسحب اليساري للترتيب",
"enter_to_save": "اضغط على مفتاح Enter لحفظ الكلمة المفتاحية",
"enter_to_add": "اضغط على مفتاح Enter لإضافة كلمة مفتاحية",
"translate_api_not_found": "لم يتم العثور على واجهة برمجة الترجمة",
"translate_language_not_support": "اللغة المراد ترجمتها غير مدعومة",
"translate_api_not_support": "واجهة برمجة الترجمة غير مدعومة",
"unset_name": "لم يتم تعيين الاسم",
"no_history": "لا يوجد سجل أحداث",
"get_history_error": "فشل في الحصول على سجل الأحداث",
"no_favorite": "لا يوجد قائمة مفضلة",
"get_favorite_error": "فشل في الحصول على قائمة المفضلة",
"hide_default_input_box": "إخفاء مربع الإدخال الافتراضي",
"show_default_input_box": "إظهار مربع الإدخال الافتراضي",
"translate_test": "اختبار الترجمة",
"close": "إغلاق",
"save": "حفظ",
"delete_all_keywords": "حذف جميع الكلمات المفتاحية",
"delete_all_keywords_confirm": "هل أنت متأكد من رغبتك في حذف جميع الكلمات المفتاحية؟",
"whether_to_enable_tooltip": "هل تريد تمكين نافذة تلميح لكل وظيفة؟ إذا كنت قد اكتسبت الخبرة المطلوبة في استخدام هذه الإضافة، يمكنك إلغاء التحديد",
"delete_all_history": "حذف جميع السجلات",
"delete_all_history_confirm": "هل أنت متأكد من رغبتك في حذف جميع السجلات؟",
"please_enter_the_content_here": "يرجى إدخال المحتوى",
"not_api_key_desc": "الواجهات البرمجية المجانية للترجمة غير مستقرة، ولا يمكن استخدام كل الواجهات على جهاز الكمبيوتر الخاص بك. يرجى طلب مفتاح واجهة برمجة التطبيقات لاستخدام الواجهة الرسمية والمستقرة.",
"setting_desc": "الإعدادات: واجهة برمجة تطبيقات الترجمة، الترجمة التلقائية، إظهار/إخفاء...",
"line_break_character": "حرف فاصل السطر",
"tagcomplete_translate_desc": "<p>تحسين وظيفة الترجمة باستخدام ملف danbooru.csv في امتداد {{nameTagComplete}} لتحقيق الهدف من توفير طلبات الشبكة والترجمة الدقيقة.</p><p>بعد النقر على زر التحديث ، سيتم فحص ملفات csv من المسارات التالية:<p>extensions\\{{shortNameTagComplete}}\\tags</p><p>extensions\\{{shortName}}\\tags</p></p><p>يمكنك تنزيل ملفات csv من مستودع git <a target='_blank' href='{{githubAssets}}/tree/main/tags'>{{nameAssets}}/tags</a>.</p>",
"test": "اختبار",
"refresh": "تحديث",
"not_enable": "غير مفعّل",
"translate_result": "نتيجة ترجمة {0} هي: {1}",
"not_found_csv_file": "لم يتم العثور على ملف csv",
"theme_extension": "السمة: نمط الوظيفة التكميلية للامتداد",
"is_remove_space": "هل ترغب في إزالة المسافات بعد كل فاصلة في الكلمات الرئيسية؟<br/>إذا حددت هذا الخيار، سيتم إزالة المسافات تلقائياً (مما يجعل النص أقل وضوحاً).<br/>إذا لم تحدد هذا الخيار سيتم الاحتفاظ بمسافة واحدة (مما يؤثر على عداد رموز الرموز).",
"theme": "الموضوع",
"enhance": "تحسين",
"only_csv_on_auto": "الترجمة الآلية تستخدم فقط ترجمة CSV (لا تستخدم الترجمة عبر الشبكة) ، والنقر على زر الترجمة يدويًا لاستخدام الترجمة CSV والترجمة عبر الشبكة.",
"one_translate_all_keywords": "ترجم جميع الكلمات الرئيسية بنقرة واحدة",
"auto_translate": "ترجم تلقائيًا بعد إدخال كلمات رئيسية جديدة",
"prompt_format": "تنسيق Prompt",
"tagcomplete_translate_desc2": "اختيار ملف CSV الخاطئ سيؤدي إلى ترجمة فارغة أو '0'. بعد تغيير الملف، يرجى النقر على زر الاختبار أدناه والتحقق مما إذا كانت النتيجة المترجمة تعرض بشكل صحيح بلغتك المحلية.",
"dblclick_to_disable": "انقر مرتين لتعطيل / تمكين الكلمة الرئيسية",
"batch_operation": "العمليات الجماعية",
"success": "نجاح!",
"failed": "فشل!",
"packages_desc": "تم اكتشاف بعض حزم Python بأنها لم تتم تثبيتها أو لم تتم التثبيت بنجاح. تحتاج إلى النقر لمحاولة إعادة التثبيت. بعد تثبيت جميع الحزم بنجاح ، يمكن لجميع الوظائف العمل بشكل طبيعي. <br/> إذا لم تتمكن من تثبيتها بنجاح بعد النقر على زر التثبيت ، فيجب عليك نسخ الأمر يدويًا وتنفيذه في وحدة المعالجة المركزية.",
"installed": "مثبت",
"not_install": "غير مثبت",
"install": "تثبيت",
"packages_installing": "بدء التثبيت ...... إذا كنت بحاجة إلى التحقق من سجل التثبيت التفصيلي ، فيرجى الانتقال إلى وحدة التحكم WebUI لعرضه. بعد الانتهاء من التثبيت ، سيتم إغلاق هذه النافذة تلقائيًا!",
"today_not_show": "لا تظهر هذه النافذة اليوم",
"free": "مجاني",
"apply_for_free": "التقديم للاستخدام المجاني",
"use_chatgpt_gen_prompts": "استخدم ChatGPT لتوليد Prompts",
"input_image_desc": "يرجى إدخال وصف الصورة ، على سبيل المثال: قطة جالسة على سطح مبنى ، صورة عالية الدقة ومفصلة جدًا.",
"api_config": "تكوين API",
"image_desc": "وصف الصورة",
"preset": "مسبق التعيين",
"ai_one": "الجملة الأولى المرسلة إلى AI",
"ai_two": "الجملة الثانية المرسلة إلى AI",
"restore_to_default": "استعادة لافتراضيات النظام",
"generate": "توليد",
"generate_result": "نتيجة التوليد",
"is_required": "يجب إدخال {0}!",
"is_not_dict": "{0} يجب أن يكون قاموسًا!",
"no_response_from": "لم يتم الرد من {0}!",
"request_error": "خطأ في طلب {0}!",
"response_is_empty": "الرد من {0} فارغ!",
"response_error": "خطأ في الرد من {0}!",
"install_success": "تم تثبيت {0} بنجاح!",
"install_failed": "خطأ: فشل تثبيت {0}!",
"translate_text_is_empty": "نص الترجمة فارغ!",
"about_desc": "حول، تحديثات، مساعدة، وثائق",
"version": "الإصدار",
"unknown_version": "إصدار غير معروف",
"has_new_version": "هناك إصدار جديد متاح، يرجى التحديث في الوقت المناسب",
"wiki_desc": "دليل التثبيت، التفاصيل الكاملة للميزات، تعليمات الاستخدام، الأسئلة الشائعة، وما إلى ذلك. انظر:",
"switch_to_light_theme": "التبديل إلى النمط الفاتح",
"switch_to_dark_theme": "التبديل إلى النمط الداكن",
"offline_api": "الترجمة بدون اتصال",
"initialize": "بدء التشغيل",
"initialize_finished": "انتهاء التهيئة",
"initialize_failed": "فشل في التهيئة",
"model_not_initialized": "النموذج غير مهيأ",
"model_is_loading": "جاري تحميل النموذج...",
"download_model_desc": "<p>إذا لم يتم تنزيل النموذج من قبل، سيقوم البرنامج بتنزيل النموذج تلقائيًا من Hugging Face.</p><p>النموذج بحجم عدة جيجابايت ويتطلب اتصال إنترنت عالي السرعة.</p><p>قد يستغرق التنزيل وقتًا طويلاً، يرجى الانتظار بصبر. إذا فشل التنزيل، يُرجى إعادة التهيئة.</p><p>يمكنك التحقق من السجلات والتقدم التفصيلي في وحدة التحكم.</p><p>سيتم تنزيل ملفات النموذج إلى الدليل: extensions\\{{shortName}}\\models</p>",
"download_model_desc2": "<p class='common-red'>إذا لم يكن لديك بيئة شبكة جيدة أو إذا كنت بحاجة إلى التنزيل دون اتصال، يرجى التحقق:</p><p><a href='{{docs}}/OfflineTranslation.html' target='_blank'>{{docs}}/OfflineTranslation.html</a></p>",
"auto_input_prompt": "تعبئة تلقائية للتلميح عند تحميل الصفحة",
"disabled": "معطل",
"last_input_prompt": "آخر تلميح مدخل",
"is_break_before_wrap": "هل ترغب في إضافة فاصلة قبل كلمة \"BREAK\".<br/>عند تحديدها، سيتم إضافة فاصلة تلقائيًا.<br/>عند إلغاء التحديد، لن يتم أي تغيير.",
"is_break_after_wrap": "هل ترغب في إضافة فاصلة بعد كلمة \"BREAK\".<br/>عند تحديدها، سيتم إضافة فاصلة تلقائيًا.<br/>عند إلغاء التحديد، لن يتم أي تغيير.",
"show_panel": "عرض اللوحة",
"hide_panel": "إخفاء اللوحة",
"show_group_tags": "عرض علامات المجموعة",
"hide_group_tags": "إخفاء علامات المجموعة",
"tags-copyright": "مصدر دمج كلمات التلميح من 路过银河(Zhihu)، مؤلف غير معروف (جوجل درايف)، الإنترنت، وما إلى ذلك. شكرًا لهؤلاء المساهمين الذين يعملون بلا مقابل!",
"reset_default_color": "إعادة تعيين اللون الافتراضي",
"clear_color": "مسح اللون",
"tags_color": "لون العلامات",
"keywords_blacklist": "قائمة الكلمات الرئيسية المحظورة",
"blacklist_desc": "تُعد الكلمات المحظورة المُعينة كقائمة سوداء ستتم تصفيتها تلقائيًا بواسطة المكوِّن الإضافي!",
"prompt_blacklist_list": "قائمة الكلمات المحظورة للتلميح",
"negative_prompt_blacklist_list": "قائمة الكلمات المحظورة للتلميح السلبي",
"lora_blacklist_list": "قائمة Lora السوداء",
"lycoris_blacklist_list": "قائمة Lycoris السوداء",
"embedding_blacklist_list": "قائمة Embedding السوداء",
"one_keyword_per_line": "كلمة رئيسية واحدة في كل سطر",
"Keyword_group": "مجموعة الكلمات الرئيسية",
"enhance_translation_use_keyword_group": "استخدام مجموعة الكلمات الرئيسية لتعزيز الترجمة",
"enhance_translation_use_Keyword_group_desc": "<p>ملف مجموعة الكلمات الرئيسية موجود في دليل group_tags.</p><p>عند تمكين هذه الميزة، يتم إعطاء الأولوية لمحتويات ملف YAML لمطابقة الترجمة. إذا لم يتم العثور على تطابق، يتم استخدام واجهة الترجمة.</p><p>يمكنك زيارة <a href='https://aiodoc.physton.com/GroupTags.html' target='_blank'>https://aiodoc.physton.com/GroupTags.html</a> للحصول على تعليمات محددة حول الملفات في دليل group_tags.</p>",
"hotkey_setting": "إعدادات مفاتيح الاختصار",
"left_click_keyword_tag": "وسم النقر الأيسر على الكلمة الرئيسية",
"right_click_keyword_tag": "وسم النقر الأيمن على الكلمة الرئيسية",
"dblclick_keyword_tag": "وسم النقر المزدوج على الكلمة الرئيسية",
"hover_keyword_tag": "وسم تحويم الماوس على الكلمة الرئيسية",
"edit_keyword": "تحرير الكلمة الرئيسية",
"disable_enable_keyword": "تعطيل/تمكين الكلمة الرئيسية",
"show_keyword_extend_panel": "عرض لوحة تمديد الكلمة الرئيسية",
"none": "لا شيء",
"add_blacklist": "إضافة إلى القائمة السوداء",
"confirm_add_blacklist": "هل ترغب في إضافة الكلمة الرئيسية \"{0}\" إلى القائمة السوداء؟",
"cancel_confirm_add_blacklist": "إلغاء نافذة التأكيد عند إضافة إلى القائمة السوداء من لوحة توسيع قائمة الكلمات الرئيسية.",
"model_name": "اسم النموذج (name)",
"output_name": "اسم الإخراج (output name)",
"filename": "اسم الملف (filename)",
"filepath": "مسار الملف",
"trained_words": "كلمات المفاتيح المدربة",
"description": "الوصف",
"open_civitai": "افتح سيفيتاي",
"use_keywords": "استخدم الكلمات المفتاحية",
"translate_blacklist_desc": "تعيين ككلمات ممنوعة للترجمة، لن يقوم الملحق بترجمتها!",
"disable_translate_prompt_blacklist_list": "قائمة كلمات التذكير الممنوعة من الترجمة",
"width": "العرض",
"height": "الارتفاع",
"move_up": "الانتقال لأعلى",
"move_down": "الانتقال لأسفل",
"is_remove_lora_before_comma": "هل ترغب في إزالة الفاصلة قبل Lora أم لا؟<br/>إذا تم تحديده، سيكون إخراج Lora على النحو التالي 'aaa <lora:bbb:0.1> <lora:ccc:0.1>, ddd'.<br/>إذا تم إلغاء التحديد، سيكون إخراج Lora على النحو التالي 'aaa, <lora:bbb:0.1>, <lora:ccc:0.1>, ddd'.",
"is_remove_lora_after_comma": "هل ترغب في إزالة الفاصلة بعد Lora أم لا؟<br/>إذا تم تحديده، سيكون إخراج Lora على النحو التالي 'aaa, <lora:bbb:0.1> <lora:ccc:0.1> ddd'.<br/>إذا تم إلغاء التحديد، سيكون إخراج Lora على النحو التالي 'aaa, <lora:bbb:0.1>, <lora:ccc:0.1>, ddd'.",
"is_use_novel_ai_weight_symbol": "هل ترغب في استخدام رمز الوزن من NovelAI؟<br/>بعد التحقق من هذا، ستتغير رمز الوزن () إلى {}",
"is_remove_before_line_comma": "هل ترغب في إزالة الفاصلة قبل السطر المكتوب.<br/>إذا تم التحقق، سيكون الإخراج \"aaa، bbb<br/>ccc\".<br/>إذا لم يتم التحقق، سيكون الإخراج \"aaa، bbb،<br/>ccc\".",
"auto_load_webui_prompt": "تحميل تلقائي لتغييرات تلميح واجهة المستخدم الرسومية عبر الويب.<br/>عند التحقق، سيقوم الملحق تلقائيًا بتحميل وتنسيق تحليل الكلمات الرئيسية عند تغيير محتوى مربع إدخال التلميح في واجهة المستخدم الرسومية عبر الويب.<br/>عند عدم التحقق، يتعين عليك النقر يدويًا على زر تحميل التلميح عند تغيير محتوى مربع إدخال التلميح في واجهة المستخدم الرسومية عبر الويب.",
"load_webui_prompt": "تحميل تلميح واجهة المستخدم الرسومية عبر الويب"
}
},
{
"code": "hy_AM",
"name": "Հայերեն (Հայաստան)",
"lang": {}
},
{
"code": "as_IN",
"name": "অসমীয়া (ভাৰত)",
"lang": {}
},
{
"code": "az_Latn_AZ",
"name": "Azərbaycan dili (Latın, Azərbaycan)",
"lang": {}
},
{
"code": "bn_BD",
"name": "বাংলা (বাংলাদেশ)",
"lang": {}
},
{
"code": "ba_RU",
"name": "Башҡорт (Россия)",
"lang": {}
},
{
"code": "eu_ES",
"name": "Euskara (Espainia)",
"lang": {}
},
{
"code": "bs_Latn_BA",
"name": "Bosanski (Latinski, Bosna i Hercegovina)",
"lang": {}
},
{
"code": "bg_BG",
"name": "Български (България)",
"lang": {}
},
{
"code": "ca_ES",
"name": "Català (Espanya)",
"lang": {}
},
{
"code": "hr_HR",
"name": "Hrvatski (Hrvatska)",
"lang": {}
},
{
"code": "cs_CZ",
"name": "Čeština (Česká republika)",
"lang": {}
},
{
"code": "da_DK",
"name": "Dansk (Danmark)",
"lang": {}
},
{