forked from hiroi-sora/Umi-OCR
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathen_US.ts
1903 lines (1881 loc) · 85.4 KB
/
en_US.ts
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
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE TS>
<TS version="2.1" language="zh_CN">
<context>
<name>BatchOCR</name>
<message>
<location filename="../../UmiOCR-data/qt_res/qml/TabPages/BatchOCR/BatchOCR.qml" line="100"/>
<source>排队中</source>
<translation>Queuing</translation>
</message>
<message>
<location filename="../../UmiOCR-data/qt_res/qml/TabPages/BatchOCR/BatchOCR.qml" line="149"/>
<source>依然关闭</source>
<translation>Confirm</translation>
</message>
<message>
<location filename="../../UmiOCR-data/qt_res/qml/TabPages/BatchOCR/BatchOCR.qml" line="156"/>
<source>任务正在进行中。
要结束任务并关闭页面吗?</source>
<translation>Task in progress.
Do you want to end the task and close the page?</translation>
</message>
<message>
<location filename="../../UmiOCR-data/qt_res/qml/TabPages/BatchOCR/BatchOCR.qml" line="182"/>
<source>开始任务</source>
<translation>Start task</translation>
</message>
<message>
<location filename="../../UmiOCR-data/qt_res/qml/TabPages/BatchOCR/BatchOCR.qml" line="186"/>
<source>启动中…</source>
<translation>Starting...</translation>
</message>
<message>
<location filename="../../UmiOCR-data/qt_res/qml/TabPages/BatchOCR/BatchOCR.qml" line="190"/>
<source>停止任务</source>
<translation>Stop task</translation>
</message>
<message>
<location filename="../../UmiOCR-data/qt_res/qml/TabPages/BatchOCR/BatchOCR.qml" line="194"/>
<source>停止中…</source>
<translation>Stopping...</translation>
</message>
<message>
<location filename="../../UmiOCR-data/qt_res/qml/TabPages/BatchOCR/BatchOCR.qml" line="204"/>
<source>函数 onOcrReady 异常</source>
<translation>Function onOcrReady exception</translation>
</message>
<message>
<location filename="../../UmiOCR-data/qt_res/qml/TabPages/BatchOCR/BatchOCR.qml" line="204"/>
<source>qml任务队列不存在路径</source>
<translation>QML task queue does not exist in the path</translation>
</message>
<message>
<location filename="../../UmiOCR-data/qt_res/qml/TabPages/BatchOCR/BatchOCR.qml" line="213"/>
<source>处理中</source>
<translation>Processing</translation>
</message>
<message>
<location filename="../../UmiOCR-data/qt_res/qml/TabPages/BatchOCR/BatchOCR.qml" line="265"/>
<source>批量识别完成</source>
<translation>Batch recognition completed</translation>
</message>
<message>
<location filename="../../UmiOCR-data/qt_res/qml/TabPages/BatchOCR/BatchOCR.qml" line="277"/>
<source>关机</source>
<translation>Shutdown</translation>
</message>
<message>
<location filename="../../UmiOCR-data/qt_res/qml/TabPages/BatchOCR/BatchOCR.qml" line="278"/>
<source>休眠</source>
<translation>Sleep</translation>
</message>
<message>
<location filename="../../UmiOCR-data/qt_res/qml/TabPages/BatchOCR/BatchOCR.qml" line="279"/>
<source>继续%1</source>
<translation>Continue %1</translation>
</message>
<message>
<location filename="../../UmiOCR-data/qt_res/qml/TabPages/BatchOCR/BatchOCR.qml" line="279"/>
<source>取消%1</source>
<translation>Cancel %1</translation>
</message>
<message>
<location filename="../../UmiOCR-data/qt_res/qml/TabPages/BatchOCR/BatchOCR.qml" line="287"/>
<source>系统即将%1</source>
<translation>System will %1</translation>
</message>
<message>
<location filename="../../UmiOCR-data/qt_res/qml/TabPages/BatchOCR/BatchOCR.qml" line="292"/>
<source>批量识别任务异常</source>
<translation>Batch recognition task exception</translation>
</message>
<message>
<location filename="../../UmiOCR-data/qt_res/qml/TabPages/BatchOCR/BatchOCR.qml" line="444"/>
<source>设置</source>
<translation>Settings</translation>
</message>
<message>
<location filename="../../UmiOCR-data/qt_res/qml/TabPages/BatchOCR/BatchOCR.qml" line="449"/>
<source>记录</source>
<translation>History</translation>
</message>
</context>
<context>
<name>BatchOCRConfigs</name>
<message>
<location filename="../../UmiOCR-data/qt_res/qml/TabPages/BatchOCR/BatchOCRConfigs.qml" line="18"/>
<source>OCR文本后处理</source>
<translation>OCR text post-processing</translation>
</message>
<message>
<location filename="../../UmiOCR-data/qt_res/qml/TabPages/BatchOCR/BatchOCRConfigs.qml" line="23"/>
<source>忽略区域</source>
<translation>Ignore region</translation>
</message>
<message>
<location filename="../../UmiOCR-data/qt_res/qml/TabPages/BatchOCR/BatchOCRConfigs.qml" line="25"/>
<source>进入设置</source>
<translation>Open settings</translation>
</message>
<message>
<location filename="../../UmiOCR-data/qt_res/qml/TabPages/BatchOCR/BatchOCRConfigs.qml" line="36"/>
<source>批量任务</source>
<translation>Batch task</translation>
</message>
<message>
<location filename="../../UmiOCR-data/qt_res/qml/TabPages/BatchOCR/BatchOCRConfigs.qml" line="40"/>
<source>保存到</source>
<translation>Save to</translation>
</message>
<message>
<location filename="../../UmiOCR-data/qt_res/qml/TabPages/BatchOCR/BatchOCRConfigs.qml" line="42"/>
<source>图片原目录</source>
<translation>Original directory</translation>
</message>
<message>
<location filename="../../UmiOCR-data/qt_res/qml/TabPages/BatchOCR/BatchOCRConfigs.qml" line="43"/>
<location filename="../../UmiOCR-data/qt_res/qml/TabPages/BatchOCR/BatchOCRConfigs.qml" line="47"/>
<source>指定目录</source>
<translation>Specified directory</translation>
</message>
<message>
<location filename="../../UmiOCR-data/qt_res/qml/TabPages/BatchOCR/BatchOCRConfigs.qml" line="48"/>
<source>必须先指定“保存到指定目录”才生效</source>
<translation>"Save to specified directory" must be specified first for it to take effect</translation>
</message>
<message>
<location filename="../../UmiOCR-data/qt_res/qml/TabPages/BatchOCR/BatchOCRConfigs.qml" line="52"/>
<source>OCR结果保存目录</source>
<translation>OCR result output directory</translation>
</message>
<message>
<location filename="../../UmiOCR-data/qt_res/qml/TabPages/BatchOCR/BatchOCRConfigs.qml" line="55"/>
<source>文件名格式</source>
<translation>File name format</translation>
</message>
<message>
<location filename="../../UmiOCR-data/qt_res/qml/TabPages/BatchOCR/BatchOCRConfigs.qml" line="56"/>
<source>无需填写拓展名。支持插入以下占位符:
%date 日期时间
%name 原文件夹名/文件名
举例:[OCR]_%name_%date
生成:[OCR]_我的图片_2023-09-01_12-13.txt
添加占位符可以避免旧文件被新文件覆盖。</source>
<translation>No need to fill in the extension name. The following placeholders are supported:
%date Date and time
%name Original folder name/file name
Example: [OCR]_%name_%date
Generated: [OCR]_MyImage_2023-09-01_12-13.txt
Adding placeholders can prevent old files from being overwritten by new files.</translation>
</message>
<message>
<location filename="../../UmiOCR-data/qt_res/qml/TabPages/BatchOCR/BatchOCRConfigs.qml" line="61"/>
<source>日期时间格式</source>
<translation>Date and time format</translation>
</message>
<message>
<location filename="../../UmiOCR-data/qt_res/qml/TabPages/BatchOCR/BatchOCRConfigs.qml" line="62"/>
<source>文件名中 %date 的日期格式。支持插入以下占位符:
%Y 年、 %m 月、 %d 日、 %H 小时、
%M 分钟、 %S 秒 、 %unix 时间戳
举例:%Y年%m月%d日_%H-%M
生成:2023年09月01日_12-13.txt</source>
<translation>Date format for %date in the file name. The following placeholders are supported:
%Y year, %m month, %d day, %H hour,
%M minute, %S second, %unix timestamp
Example: %Y-%m-%d_%H-%M
Generated: 2023-09-01_12-13.txt</translation>
</message>
<message>
<location filename="../../UmiOCR-data/qt_res/qml/TabPages/BatchOCR/BatchOCRConfigs.qml" line="68"/>
<source>保存文件类型</source>
<translation>Output file format</translation>
</message>
<message>
<location filename="../../UmiOCR-data/qt_res/qml/TabPages/BatchOCR/BatchOCRConfigs.qml" line="74"/>
<source>txt 标准格式</source>
<translation>txt Standard format</translation>
</message>
<message>
<location filename="../../UmiOCR-data/qt_res/qml/TabPages/BatchOCR/BatchOCRConfigs.qml" line="75"/>
<source>含原图片文件名和识别文字</source>
<translation>Includes original image file name and recognized text</translation>
</message>
<message>
<location filename="../../UmiOCR-data/qt_res/qml/TabPages/BatchOCR/BatchOCRConfigs.qml" line="79"/>
<source>p.txt 纯文字格式</source>
<translation>p.txt Plain text format</translation>
</message>
<message>
<location filename="../../UmiOCR-data/qt_res/qml/TabPages/BatchOCR/BatchOCRConfigs.qml" line="80"/>
<source>仅输出识别文字,不含图片标题</source>
<translation>Outputs only the recognized text without the image title</translation>
</message>
<message>
<location filename="../../UmiOCR-data/qt_res/qml/TabPages/BatchOCR/BatchOCRConfigs.qml" line="84"/>
<source>txt 单独文件</source>
<translation>txt Separated file</translation>
</message>
<message>
<location filename="../../UmiOCR-data/qt_res/qml/TabPages/BatchOCR/BatchOCRConfigs.qml" line="85"/>
<source>对每张图片,生成同名txt文件,仅输出识别文字</source>
<translation>Generates a txt file of the same name for each image, outputs only the recognized text</translation>
</message>
<message>
<location filename="../../UmiOCR-data/qt_res/qml/TabPages/BatchOCR/BatchOCRConfigs.qml" line="89"/>
<source>md 图文混排</source>
<translation>md Mixture of text and image</translation>
</message>
<message>
<location filename="../../UmiOCR-data/qt_res/qml/TabPages/BatchOCR/BatchOCRConfigs.qml" line="90"/>
<source>Markdown图文混排格式,可用Markdown阅读器浏览文件</source>
<translation>Markdown mixture of text and image format, can be previewed with a Markdown reader</translation>
</message>
<message>
<location filename="../../UmiOCR-data/qt_res/qml/TabPages/BatchOCR/BatchOCRConfigs.qml" line="94"/>
<source>csv 表格文件(Excel)</source>
<translation>csv Table file (Excel)</translation>
</message>
<message>
<location filename="../../UmiOCR-data/qt_res/qml/TabPages/BatchOCR/BatchOCRConfigs.qml" line="95"/>
<source>将图片信息和识别内容写入csv表格文件。可用Excel打开,另存为xlsx格式。</source>
<translation>Writes image information and recognition content to a csv table file. Can be converted to xlsx format using Excel.</translation>
</message>
<message>
<location filename="../../UmiOCR-data/qt_res/qml/TabPages/BatchOCR/BatchOCRConfigs.qml" line="99"/>
<source>jsonl 原始信息</source>
<translation>jsonl Raw information</translation>
</message>
<message>
<location filename="../../UmiOCR-data/qt_res/qml/TabPages/BatchOCR/BatchOCRConfigs.qml" line="100"/>
<source>每行为一条json数据,便于第三方程序读取操作</source>
<translation>Each line is a json structured data, convenient for third-party program to read</translation>
</message>
<message>
<location filename="../../UmiOCR-data/qt_res/qml/TabPages/BatchOCR/BatchOCRConfigs.qml" line="106"/>
<source>输出忽略空白图片</source>
<translation>Ignore blank images in output</translation>
</message>
<message>
<location filename="../../UmiOCR-data/qt_res/qml/TabPages/BatchOCR/BatchOCRConfigs.qml" line="107"/>
<source>若图片没有文字或识别失败,也不会输出错误提示信息</source>
<translation>If the image has no text or recognition fails, no error prompt message will be generated</translation>
</message>
<message>
<location filename="../../UmiOCR-data/qt_res/qml/TabPages/BatchOCR/BatchOCRConfigs.qml" line="111"/>
<source>递归读取子文件夹</source>
<translation>Recursively read subfolders</translation>
</message>
<message>
<location filename="../../UmiOCR-data/qt_res/qml/TabPages/BatchOCR/BatchOCRConfigs.qml" line="112"/>
<source>导入文件夹时,导入子文件夹中全部图片</source>
<translation>When importing a folder, import all images in the subfolders</translation>
</message>
<message>
<location filename="../../UmiOCR-data/qt_res/qml/TabPages/BatchOCR/BatchOCRConfigs.qml" line="122"/>
<source>其它</source>
<translation>Others</translation>
</message>
</context>
<context>
<name>Configs</name>
<message>
<location filename="../../UmiOCR-data/qt_res/qml/Configs/Configs.qml" line="171"/>
<source>%1 处理配置项异常:
%2枚举列表为空。</source>
<translation>%1 Processing configuration item exception:
%2 enumeration list is empty.</translation>
</message>
<message>
<location filename="../../UmiOCR-data/qt_res/qml/Configs/Configs.qml" line="461"/>
<source>重置</source>
<translation>Reset</translation>
</message>
<message>
<location filename="../../UmiOCR-data/qt_res/qml/Configs/Configs.qml" line="462"/>
<source>重置本页上的设定</source>
<translation>Reset settings on this page</translation>
</message>
<message>
<location filename="../../UmiOCR-data/qt_res/qml/Configs/Configs.qml" line="465"/>
<source>重置设定</source>
<translation>Reset settings</translation>
</message>
<message>
<location filename="../../UmiOCR-data/qt_res/qml/Configs/Configs.qml" line="467"/>
<source>要重置本页的设定吗?</source>
<translation>Do you want to reset the settings on this page?</translation>
</message>
<message>
<location filename="../../UmiOCR-data/qt_res/qml/Configs/Configs.qml" line="475"/>
<source>高级</source>
<translation>Advanced</translation>
</message>
<message>
<location filename="../../UmiOCR-data/qt_res/qml/Configs/Configs.qml" line="476"/>
<source>显示更多高级选项。它们标有 * 号。
请谨慎修改高级选项。</source>
<translation>Show more advanced options. They are marked with an asterisk (*).
Please be cautious when modifying advanced options.</translation>
</message>
<message>
<location filename="../../UmiOCR-data/qt_res/qml/Configs/Configs.qml" line="640"/>
<source>展开</source>
<translation>Expand</translation>
</message>
<message>
<location filename="../../UmiOCR-data/qt_res/qml/Configs/Configs.qml" line="640"/>
<source>折叠</source>
<translation>Collapse</translation>
</message>
<message>
<location filename="../../UmiOCR-data/qt_res/qml/Configs/Configs.qml" line="776"/>
<source>必须为整数</source>
<translation>Must be an integer</translation>
</message>
<message>
<location filename="../../UmiOCR-data/qt_res/qml/Configs/Configs.qml" line="780"/>
<source>不能超过</source>
<translation>Cannot exceed</translation>
</message>
<message>
<location filename="../../UmiOCR-data/qt_res/qml/Configs/Configs.qml" line="783"/>
<source>不能低于</source>
<translation>Cannot be lower than</translation>
</message>
<message>
<location filename="../../UmiOCR-data/qt_res/qml/Configs/Configs.qml" line="790"/>
<source>必须为数字</source>
<translation>Must be a number</translation>
</message>
<message>
<location filename="../../UmiOCR-data/qt_res/qml/Configs/Configs.qml" line="1084"/>
<source>已取消%1的快捷键。</source>
<translation>Hotkey for %1 canceled.</translation>
</message>
<message>
<location filename="../../UmiOCR-data/qt_res/qml/Configs/Configs.qml" line="1094"/>
<source>更新热键成功</source>
<translation>Hotkey updated successfully</translation>
</message>
<message>
<location filename="../../UmiOCR-data/qt_res/qml/Configs/Configs.qml" line="1094"/>
<source>%1的快捷键为 %2</source>
<translation>Hotkey for %1 is %2</translation>
</message>
<message>
<location filename="../../UmiOCR-data/qt_res/qml/Configs/Configs.qml" line="1102"/>
<source>%1 快捷键%2已被注册,请尝试另外的按键组合。</source>
<translation>Hotkey %2 for %1 is already registered, please try another key combination.</translation>
</message>
<message>
<location filename="../../UmiOCR-data/qt_res/qml/Configs/Configs.qml" line="1105"/>
<source>%1 快捷键%2无法注册,请尝试另外的按键组合。</source>
<translation>Hotkey %2 for %1 cannot be registered, please try another key combination.</translation>
</message>
<message>
<location filename="../../UmiOCR-data/qt_res/qml/Configs/Configs.qml" line="1114"/>
<source>请按下快捷键组合。按【Esc】退出。</source>
<translation>Press the key combination. Press [Esc] to exit.</translation>
</message>
<message>
<location filename="../../UmiOCR-data/qt_res/qml/Configs/Configs.qml" line="1127"/>
<source>当前快捷键录制已在进行,不能同时录制!</source>
<translation>Hotkey recording is already in progress, cannot record simultaneously!</translation>
</message>
<message>
<location filename="../../UmiOCR-data/qt_res/qml/Configs/Configs.qml" line="1129"/>
<source>无法录制快捷键</source>
<translation>Cannot record hotkey</translation>
</message>
</context>
<context>
<name>DropArea_</name>
<message>
<location filename="../../UmiOCR-data/qt_res/qml/Widgets/DropArea_.qml" line="11"/>
<source>松手放入文件</source>
<translation>Release the mouse to drop the file</translation>
</message>
</context>
<context>
<name>FilesTableView</name>
<message>
<location filename="../../UmiOCR-data/qt_res/qml/TabPages/BatchOCR/FilesTableView.qml" line="16"/>
<source>文件</source>
<translation>File</translation>
</message>
<message>
<location filename="../../UmiOCR-data/qt_res/qml/TabPages/BatchOCR/FilesTableView.qml" line="23"/>
<source>耗时</source>
<translation>Time elapsed</translation>
</message>
<message>
<location filename="../../UmiOCR-data/qt_res/qml/TabPages/BatchOCR/FilesTableView.qml" line="24"/>
<source>状态</source>
<translation>Status</translation>
</message>
<message>
<location filename="../../UmiOCR-data/qt_res/qml/TabPages/BatchOCR/FilesTableView.qml" line="76"/>
<source>请选择图片</source>
<translation>Please select an image</translation>
</message>
<message>
<location filename="../../UmiOCR-data/qt_res/qml/TabPages/BatchOCR/FilesTableView.qml" line="77"/>
<source>图片</source>
<translation>Image</translation>
</message>
<message>
<location filename="../../UmiOCR-data/qt_res/qml/TabPages/BatchOCR/FilesTableView.qml" line="111"/>
<source>选择图片</source>
<translation>Select image</translation>
</message>
<message>
<location filename="../../UmiOCR-data/qt_res/qml/TabPages/BatchOCR/FilesTableView.qml" line="126"/>
<source>清空</source>
<translation>Clear</translation>
</message>
<message>
<location filename="../../UmiOCR-data/qt_res/qml/TabPages/BatchOCR/FilesTableView.qml" line="141"/>
<source>拖入或选择图片</source>
<translation>Drag and drop or select an image</translation>
</message>
</context>
<context>
<name>FontPanel</name>
<message>
<location filename="../../UmiOCR-data/qt_res/qml/TabPages/GlobalConfigsPage/FontPanel.qml" line="107"/>
<source>返回</source>
<translation>Back</translation>
</message>
<message>
<location filename="../../UmiOCR-data/qt_res/qml/TabPages/GlobalConfigsPage/FontPanel.qml" line="133"/>
<source>界面</source>
<translation>Interface</translation>
</message>
<message>
<location filename="../../UmiOCR-data/qt_res/qml/TabPages/GlobalConfigsPage/FontPanel.qml" line="141"/>
<source>内容</source>
<translation>Content</translation>
</message>
<message>
<location filename="../../UmiOCR-data/qt_res/qml/TabPages/GlobalConfigsPage/FontPanel.qml" line="237"/>
<source>界面字体:
软件中大部分UI的字体。</source>
<translation>Interface font:
The font for most of the UI in the software.</translation>
</message>
<message>
<location filename="../../UmiOCR-data/qt_res/qml/TabPages/GlobalConfigsPage/FontPanel.qml" line="245"/>
<source>内容字体:
识别结果内容的字体。</source>
<translation>Content font:
The font for the recognition result.</translation>
</message>
</context>
<context>
<name>GlobalConfigs</name>
<message>
<location filename="../../UmiOCR-data/qt_res/qml/Configs/GlobalConfigs.qml" line="20"/>
<source>快捷方式</source>
<translation>Shortcut</translation>
</message>
<message>
<location filename="../../UmiOCR-data/qt_res/qml/Configs/GlobalConfigs.qml" line="24"/>
<source>桌面</source>
<translation>Desktop</translation>
</message>
<message>
<location filename="../../UmiOCR-data/qt_res/qml/Configs/GlobalConfigs.qml" line="32"/>
<source>开始菜单</source>
<translation>Start menu</translation>
</message>
<message>
<location filename="../../UmiOCR-data/qt_res/qml/Configs/GlobalConfigs.qml" line="40"/>
<source>开机自启</source>
<translation>Launch on startup</translation>
</message>
<message>
<location filename="../../UmiOCR-data/qt_res/qml/Configs/GlobalConfigs.qml" line="51"/>
<source>界面和外观</source>
<translation>Interface and appearance</translation>
</message>
<message>
<location filename="../../UmiOCR-data/qt_res/qml/Configs/GlobalConfigs.qml" line="56"/>
<source>主题</source>
<translation>Theme</translation>
</message>
<message>
<location filename="../../UmiOCR-data/qt_res/qml/Configs/GlobalConfigs.qml" line="61"/>
<source>切换主题</source>
<translation>Switch theme</translation>
</message>
<message>
<location filename="../../UmiOCR-data/qt_res/qml/Configs/GlobalConfigs.qml" line="65"/>
<source>字体</source>
<translation>Font</translation>
</message>
<message>
<location filename="../../UmiOCR-data/qt_res/qml/Configs/GlobalConfigs.qml" line="68"/>
<source>修改字体</source>
<translation>Modify font</translation>
</message>
<message>
<location filename="../../UmiOCR-data/qt_res/qml/Configs/GlobalConfigs.qml" line="83"/>
<source>界面与文字大小</source>
<translation>Interface and font size</translation>
</message>
<message>
<location filename="../../UmiOCR-data/qt_res/qml/Configs/GlobalConfigs.qml" line="99"/>
<source>渲染器</source>
<translation>Renderer</translation>
</message>
<message>
<location filename="../../UmiOCR-data/qt_res/qml/Configs/GlobalConfigs.qml" line="103"/>
<source>关闭硬件加速</source>
<translation>Disable hardware acceleration</translation>
</message>
<message>
<location filename="../../UmiOCR-data/qt_res/qml/Configs/GlobalConfigs.qml" line="107"/>
<source>若出现界面闪烁、元素错位等界面异常,尝试切换渲染器或者关闭硬件加速</source>
<translation>If there are interface flickering, misalignment, or other interface anomalies, try switching the renderer or disabling hardware acceleration</translation>
</message>
<message>
<location filename="../../UmiOCR-data/qt_res/qml/Configs/GlobalConfigs.qml" line="114"/>
<source>禁用美化效果</source>
<translation>Disable visual effects</translation>
</message>
<message>
<location filename="../../UmiOCR-data/qt_res/qml/Configs/GlobalConfigs.qml" line="116"/>
<source>在低配置机器上,禁用动画、阴影等效果可减少部分资源占用</source>
<translation>On low-end machines, disabling animations, shadows, and other effects can reduce resource consumption</translation>
</message>
<message>
<location filename="../../UmiOCR-data/qt_res/qml/Configs/GlobalConfigs.qml" line="125"/>
<source>窗口</source>
<translation>Window</translation>
</message>
<message>
<location filename="../../UmiOCR-data/qt_res/qml/Configs/GlobalConfigs.qml" line="129"/>
<source>启动时缩小到任务栏</source>
<translation>Minimize to taskbar on startup</translation>
</message>
<message>
<location filename="../../UmiOCR-data/qt_res/qml/Configs/GlobalConfigs.qml" line="131"/>
<source>软件启动时,不弹出主窗口</source>
<translation>Silent starts</translation>
</message>
<message>
<location filename="../../UmiOCR-data/qt_res/qml/Configs/GlobalConfigs.qml" line="134"/>
<source>窗口置顶</source>
<translation>Window always on top</translation>
</message>
<message>
<location filename="../../UmiOCR-data/qt_res/qml/Configs/GlobalConfigs.qml" line="136"/>
<source>捷径:窗口左上角图钉</source>
<translation>Shortcut: Pin icon in the top left corner of the window</translation>
</message>
<message>
<location filename="../../UmiOCR-data/qt_res/qml/Configs/GlobalConfigs.qml" line="142"/>
<source>锁定标签栏</source>
<translation>Lock tab bar</translation>
</message>
<message>
<location filename="../../UmiOCR-data/qt_res/qml/Configs/GlobalConfigs.qml" line="144"/>
<source>捷径:窗口右上角小锁</source>
<translation>Shortcut: Lock icon in the top right corner of the window</translation>
</message>
<message>
<location filename="../../UmiOCR-data/qt_res/qml/Configs/GlobalConfigs.qml" line="150"/>
<source>关闭主窗口时</source>
<translation>Action when closing the main window</translation>
</message>
<message>
<location filename="../../UmiOCR-data/qt_res/qml/Configs/GlobalConfigs.qml" line="152"/>
<source>最小化到系统托盘</source>
<translation>Minimize to system tray</translation>
</message>
<message>
<location filename="../../UmiOCR-data/qt_res/qml/Configs/GlobalConfigs.qml" line="153"/>
<source>退出应用</source>
<translation>Exit the application</translation>
</message>
<message>
<location filename="../../UmiOCR-data/qt_res/qml/Configs/GlobalConfigs.qml" line="165"/>
<source>截图</source>
<translation>Screenshot</translation>
</message>
<message>
<location filename="../../UmiOCR-data/qt_res/qml/Configs/GlobalConfigs.qml" line="169"/>
<source>截图前隐藏主窗口</source>
<translation>Hide main window before taking a screenshot</translation>
</message>
<message>
<location filename="../../UmiOCR-data/qt_res/qml/Configs/GlobalConfigs.qml" line="170"/>
<source>截图前,如果主窗口处于前台,则隐藏主窗口
将会延时等待主窗口关闭</source>
<translation>If the main window is in the foreground before taking a screenshot, hide the main window
It will wait for the main window to close before taking the screenshot</translation>
</message>
<message>
<location filename="../../UmiOCR-data/qt_res/qml/Configs/GlobalConfigs.qml" line="174"/>
<source>隐藏等待时间</source>
<translation>Hide waiting time</translation>
</message>
<message>
<location filename="../../UmiOCR-data/qt_res/qml/Configs/GlobalConfigs.qml" line="177"/>
<source>秒</source>
<translation>seconds</translation>
</message>
<message>
<location filename="../../UmiOCR-data/qt_res/qml/Configs/GlobalConfigs.qml" line="185"/>
<source>服务</source>
<translation>Service</translation>
</message>
<message>
<location filename="../../UmiOCR-data/qt_res/qml/Configs/GlobalConfigs.qml" line="190"/>
<source>允许HTTP服务</source>
<translation>Allow HTTP service</translation>
</message>
<message>
<location filename="../../UmiOCR-data/qt_res/qml/Configs/GlobalConfigs.qml" line="191"/>
<source>Umi-OCR依赖HTTP接口进行本机跨进程通信。如果禁用,将无法使用命令行模式、多开检测等功能。</source>
<translation>Umi-OCR relies on HTTP interface for inter-process communication on the local machine. If disabled, features like command-line mode and multi-instance detection will not work.</translation>
</message>
<message>
<location filename="../../UmiOCR-data/qt_res/qml/Configs/GlobalConfigs.qml" line="194"/>
<location filename="../../UmiOCR-data/qt_res/qml/Configs/GlobalConfigs.qml" line="206"/>
<location filename="../../UmiOCR-data/qt_res/qml/Configs/GlobalConfigs.qml" line="393"/>
<source>重启软件后生效</source>
<translation>Takes effect after restarting the software</translation>
</message>
<message>
<location filename="../../UmiOCR-data/qt_res/qml/Configs/GlobalConfigs.qml" line="198"/>
<source>主机</source>
<translation>Host</translation>
</message>
<message>
<location filename="../../UmiOCR-data/qt_res/qml/Configs/GlobalConfigs.qml" line="200"/>
<source>仅本地</source>
<translation>Local only</translation>
</message>
<message>
<location filename="../../UmiOCR-data/qt_res/qml/Configs/GlobalConfigs.qml" line="201"/>
<source>任何可用地址</source>
<translation>Any available address</translation>
</message>
<message>
<location filename="../../UmiOCR-data/qt_res/qml/Configs/GlobalConfigs.qml" line="205"/>
<source>将允许局域网访问。请开启对应防火墙权限!</source>
<translation>Allows LAN access. Please enable corresponding firewall permissions!</translation>
</message>
<message>
<location filename="../../UmiOCR-data/qt_res/qml/Configs/GlobalConfigs.qml" line="205"/>
<source>将禁止局域网访问。</source>
<translation>Disables LAN access.</translation>
</message>
<message>
<location filename="../../UmiOCR-data/qt_res/qml/Configs/GlobalConfigs.qml" line="211"/>
<source>端口</source>
<translation>Port</translation>
</message>
<message>
<location filename="../../UmiOCR-data/qt_res/qml/Configs/GlobalConfigs.qml" line="288"/>
<source>请尝试更换软件路径!</source>
<translation>Please try changing the software path!</translation>
</message>
<message>
<location filename="../../UmiOCR-data/qt_res/qml/Configs/GlobalConfigs.qml" line="289"/>
<source>配置文件读写异常</source>
<translation>Configuration file read/write exception</translation>
</message>
<message>
<location filename="../../UmiOCR-data/qt_res/qml/Configs/GlobalConfigs.qml" line="305"/>
<source>插件加载失败</source>
<translation>Plugin loading failure</translation>
</message>
<message>
<location filename="../../UmiOCR-data/qt_res/qml/Configs/GlobalConfigs.qml" line="320"/>
<source>成功添加快捷方式</source>
<translation>Shortcut added successfully</translation>
</message>
<message>
<location filename="../../UmiOCR-data/qt_res/qml/Configs/GlobalConfigs.qml" line="323"/>
<source>添加快捷方式失败</source>
<translation>Failed to add shortcut</translation>
</message>
<message>
<location filename="../../UmiOCR-data/qt_res/qml/Configs/GlobalConfigs.qml" line="330"/>
<source>成功移除 %1 个快捷方式</source>
<translation>Successfully removed %1 shortcuts</translation>
</message>
<message>
<location filename="../../UmiOCR-data/qt_res/qml/Configs/GlobalConfigs.qml" line="333"/>
<source>提示</source>
<translation>Tip</translation>
</message>
<message>
<location filename="../../UmiOCR-data/qt_res/qml/Configs/GlobalConfigs.qml" line="333"/>
<source>没有找到可移除的快捷方式。</source>
<translation>No removable shortcuts found.</translation>
</message>
<message>
<location filename="../../UmiOCR-data/qt_res/qml/Configs/GlobalConfigs.qml" line="341"/>
<source>立刻关闭软件</source>
<translation>Close the software now</translation>
</message>
<message>
<location filename="../../UmiOCR-data/qt_res/qml/Configs/GlobalConfigs.qml" line="341"/>
<source>稍后</source>
<translation>Later</translation>
</message>
<message>
<location filename="../../UmiOCR-data/qt_res/qml/Configs/GlobalConfigs.qml" line="381"/>
<source>渲染器变更 将在重启软件后生效</source>
<translation>Renderer change will take effect after restarting the software</translation>
</message>
<message>
<location filename="../../UmiOCR-data/qt_res/qml/Configs/GlobalConfigs.qml" line="388"/>
<source>端口号不合法</source>
<translation>Invalid port number</translation>
</message>
<message>
<location filename="../../UmiOCR-data/qt_res/qml/Configs/GlobalConfigs.qml" line="393"/>
<source>端口号改为%1</source>
<translation>The port number has been changed to %1</translation>
</message>
<message>
<location filename="../../UmiOCR-data/qt_res/qml/Configs/GlobalConfigs.qml" line="402"/>
<source>原端口号%1被占用,
切换为新端口号%2。
若不想看到此通知,请在全局设置关闭高级模式。</source>
<translation>The original port %1 is occupied,
switched to new port %2.
If you don't want to see this notification, disable advanced mode in global settings.</translation>
</message>
</context>
<context>
<name>HTabBar</name>
<message>
<location filename="../../UmiOCR-data/qt_res/qml/TabBar_/HTabBar.qml" line="47"/>
<source>窗口置顶</source>
<translation>Window always on top</translation>
</message>
<message>
<location filename="../../UmiOCR-data/qt_res/qml/TabBar_/HTabBar.qml" line="252"/>
<source>锁定标签栏</source>
<translation>Lock tab bar</translation>
</message>
</context>
<context>
<name>IgnoreArea</name>
<message>
<location filename="../../UmiOCR-data/qt_res/qml/Widgets/IgnoreArea/IgnoreArea.qml" line="132"/>
<source>保存并返回</source>
<translation>Save and return</translation>
</message>
<message>
<location filename="../../UmiOCR-data/qt_res/qml/Widgets/IgnoreArea/IgnoreArea.qml" line="148"/>
<source>拖入本地图片:OCR预览
滚轮:缩放
左键:拖拽
右键:绘制忽略区域
可绘制一个或多个忽略区域矩形框。在执行批量OCR时,完全位于忽略区域内的文本块将被排除。
比如批量处理影视截图时,可在右上角水印处添加忽略区域,避免输出水印文本。</source>
<translation>Drag and drop local image: OCR preview
Scroll wheel: Zoom
Left click: Drag
Right click: Draw an ignore region
You can draw one or more rectangles as ignore regions. When performing batch OCR, text blocks completely within the ignore region will be excluded.
For example, when processing screenshots of watermarked images, you can add an ignore region at the watermark in the upper right corner to avoid outputting watermark text.</translation>
</message>
<message>
<location filename="../../UmiOCR-data/qt_res/qml/Widgets/IgnoreArea/IgnoreArea.qml" line="161"/>
<source>图像尺寸:</source>
<translation>Image size:</translation>
</message>
<message>
<location filename="../../UmiOCR-data/qt_res/qml/Widgets/IgnoreArea/IgnoreArea.qml" line="168"/>
<source>区域数量:</source>
<translation>Number of regions:</translation>
</message>
<message>
<location filename="../../UmiOCR-data/qt_res/qml/Widgets/IgnoreArea/IgnoreArea.qml" line="174"/>
<source>撤销</source>
<translation>Undo</translation>
</message>
<message>
<location filename="../../UmiOCR-data/qt_res/qml/Widgets/IgnoreArea/IgnoreArea.qml" line="182"/>
<source>清空</source>
<translation>Clear</translation>
</message>
</context>
<context>
<name>ImageScale</name>
<message>
<location filename="../../UmiOCR-data/qt_res/qml/Widgets/ImageViewer/ImageScale.qml" line="63"/>
<source>复制图片</source>
<translation>Copy image</translation>
</message>
<message>
<location filename="../../UmiOCR-data/qt_res/qml/Widgets/ImageViewer/ImageScale.qml" line="65"/>
<source>复制图片失败</source>
<translation>Failed to copy image</translation>
</message>
<message>
<location filename="../../UmiOCR-data/qt_res/qml/Widgets/ImageViewer/ImageScale.qml" line="76"/>
<location filename="../../UmiOCR-data/qt_res/qml/Widgets/ImageViewer/ImageScale.qml" line="89"/>
<source>保存图片</source>
<translation type="unfinished">Save Image</translation>
</message>
<message>
<location filename="../../UmiOCR-data/qt_res/qml/Widgets/ImageViewer/ImageScale.qml" line="91"/>
<source>保存图片失败</source>
<translation type="unfinished">Failed to save image</translation>
</message>
</context>
<context>
<name>ImageWithText</name>
<message>
<location filename="../../UmiOCR-data/qt_res/qml/Widgets/ImageViewer/ImageWithText.qml" line="201"/>
<source>图片:复制%1字</source>
<translation>Image: Copy %1 characters</translation>
</message>
<message>
<location filename="../../UmiOCR-data/qt_res/qml/Widgets/ImageViewer/ImageWithText.qml" line="205"/>
<source>图片:无选中文字</source>
<translation>Image: No selected text</translation>
</message>
<message>
<location filename="../../UmiOCR-data/qt_res/qml/Widgets/ImageViewer/ImageWithText.qml" line="216"/>
<source>图片:复制全部%1字</source>
<translation>Image: Copy all %1 characters</translation>
</message>
<message>
<location filename="../../UmiOCR-data/qt_res/qml/Widgets/ImageViewer/ImageWithText.qml" line="274"/>
<source>复制  (Ctrl+C)</source>
<translation>Copy (Ctrl+C)</translation>
</message>
<message>
<location filename="../../UmiOCR-data/qt_res/qml/Widgets/ImageViewer/ImageWithText.qml" line="275"/>
<source>全选  (Ctrl+A)</source>
<translation>Select all (Ctrl+A)</translation>
</message>
<message>
<location filename="../../UmiOCR-data/qt_res/qml/Widgets/ImageViewer/ImageWithText.qml" line="276"/>
<source>复制图片(Ctrl+X)</source>
<translation>Copy image (Ctrl+X)</translation>
</message>
<message>
<location filename="../../UmiOCR-data/qt_res/qml/Widgets/ImageViewer/ImageWithText.qml" line="277"/>
<source>保存图片(Ctrl+S)</source>
<translation type="unfinished">Save Image (Ctrl+S)</translation>
</message>
<message>
<location filename="../../UmiOCR-data/qt_res/qml/Widgets/ImageViewer/ImageWithText.qml" line="278"/>
<source>显示/隐藏文字(Tab)</source>
<translation>Show/Hide text (Tab)</translation>
</message>
</context>
<context>
<name>MainWindowManager</name>
<message>
<location filename="../../UmiOCR-data/qt_res/qml/MainWindow/MainWindowManager.qml" line="30"/>
<source>欢迎使用 Umi-OCR</source>
<translation>Welcome to Umi-OCR</translation>
</message>
<message>
<location filename="../../UmiOCR-data/qt_res/qml/MainWindow/MainWindowManager.qml" line="30"/>
<source>已启用后台模式,可通过快捷键使用功能。</source>
<translation>Background mode is enabled, functions can be accessed using hotkeys.</translation>
</message>
</context>
<context>
<name>MessageBox</name>
<message>
<location filename="../../UmiOCR-data/qt_res/qml/Popup_/MessageBox.qml" line="28"/>
<source>取消</source>
<translation>Cancel</translation>
</message>
<message>
<location filename="../../UmiOCR-data/qt_res/qml/Popup_/MessageBox.qml" line="29"/>
<source>确定</source>
<translation>OK</translation>
</message>
<message>
<location filename="../../UmiOCR-data/qt_res/qml/Popup_/MessageBox.qml" line="38"/>
<source>警告</source>
<translation>Warning</translation>
</message>
<message>
<location filename="../../UmiOCR-data/qt_res/qml/Popup_/MessageBox.qml" line="44"/>
<source>发生了一点小问题</source>
<translation>A small problem has occurred</translation>
</message>
<message>
<location filename="../../UmiOCR-data/qt_res/qml/Popup_/MessageBox.qml" line="117"/>
<source>复制</source>
<translation>Copy</translation>
</message>
<message>
<location filename="../../UmiOCR-data/qt_res/qml/Popup_/MessageBox.qml" line="122"/>
<source>已复制报错信息 %1</source>
<translation>Error message copied. %1</translation>
</message>
<message>
<location filename="../../UmiOCR-data/qt_res/qml/Popup_/MessageBox.qml" line="122"/>
<source>请前往 Issues 页面寻找解答或反馈</source>
<translation type="unfinished">Please visit the Issues page for Q&&A or feedback</translation>
</message>
</context>
<context>
<name>MessageBoxWin</name>
<message>
<location filename="../../UmiOCR-data/qt_res/qml/Popup_/MessageBoxWin.qml" line="100"/>
<source>确定</source>
<translation>OK</translation>
</message>
</context>
<context>
<name>Navigation</name>
<message>
<location filename="../../UmiOCR-data/qt_res/qml/TabPages/Navigation/Navigation.qml" line="38"/>
<source># 欢迎使用 Umi-OCR
 
👈 请在左侧选择功能页。
 
当前版本:%1
[%2](%2)</source>
<translation># Welcome to Umi-OCR
👈 Start by opening a feature tab on the left.
Current version: %1
[%2](%2)</translation>
</message>
<message>
<location filename="../../UmiOCR-data/qt_res/qml/TabPages/Navigation/Navigation.qml" line="67"/>
<source>功能页</source>
<translation>Feature Tab</translation>
</message>
</context>
<context>
<name>OcrManager</name>
<message>
<location filename="../../UmiOCR-data/qt_res/qml/ApiManager/OcrManager.qml" line="14"/>
<source>文字识别</source>
<translation>Text Recognition</translation>
</message>
<message>
<location filename="../../UmiOCR-data/qt_res/qml/ApiManager/OcrManager.qml" line="18"/>
<source>操作</source>
<translation>Action</translation>
</message>
<message>
<location filename="../../UmiOCR-data/qt_res/qml/ApiManager/OcrManager.qml" line="20"/>
<location filename="../../UmiOCR-data/qt_res/qml/ApiManager/OcrManager.qml" line="108"/>
<source>强制终止任务</source>
<translation>Force Terminate Task</translation>
</message>
<message>
<location filename="../../UmiOCR-data/qt_res/qml/ApiManager/OcrManager.qml" line="22"/>
<source>应用修改</source>
<translation>Apply Modifications</translation>
</message>
<message>
<location filename="../../UmiOCR-data/qt_res/qml/ApiManager/OcrManager.qml" line="26"/>
<source>当前接口</source>
<translation>Current Interface</translation>
</message>
<message>
<location filename="../../UmiOCR-data/qt_res/qml/ApiManager/OcrManager.qml" line="54"/>
<source>OCR API 列表中不存在%1</source>
<translation>%1 does not exist in the OCR API list</translation>
</message>
<message>
<location filename="../../UmiOCR-data/qt_res/qml/ApiManager/OcrManager.qml" line="65"/>