-
Notifications
You must be signed in to change notification settings - Fork 4.6k
Expand file tree
/
Copy pathbn.ts
More file actions
2482 lines (2472 loc) · 111 KB
/
Copy pathbn.ts
File metadata and controls
2482 lines (2472 loc) · 111 KB
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="bn" sourcelanguage="zh_CN">
<context>
<name>About</name>
<message>
<location filename="../../../UmiOCR-data/qt_res/qml/TabPages/About/About.qml" line="44"/>
<source>开源、免费的离线OCR软件</source>
<translation>ওপেন সোর্স, ফ্রি ও অফলাইন ওসিআর সফটওয়্যার</translation>
</message>
<message>
<location filename="../../../UmiOCR-data/qt_res/qml/TabPages/About/About.qml" line="50"/>
<source>当前版本</source>
<translation>বর্তমান সংস্করণ</translation>
</message>
<message>
<location filename="../../../UmiOCR-data/qt_res/qml/TabPages/About/About.qml" line="52"/>
<source>项目链接</source>
<translation>প্রকল্পের সংযোগ</translation>
</message>
<message>
<location filename="../../../UmiOCR-data/qt_res/qml/TabPages/About/About.qml" line="54"/>
<source>官方网站</source>
<translation>অফিসিয়াল ওয়েবসাইট</translation>
</message>
<message>
<location filename="../../../UmiOCR-data/qt_res/qml/TabPages/About/About.qml" line="55"/>
<source>插件拓展</source>
<translation>প্লাগ-ইন ও এক্সটেনশন</translation>
</message>
<message>
<location filename="../../../UmiOCR-data/qt_res/qml/TabPages/About/About.qml" line="56"/>
<source>问题反馈</source>
<translation>জিজ্ঞাসা ও মতামত</translation>
</message>
<message>
<location filename="../../../UmiOCR-data/qt_res/qml/TabPages/About/About.qml" line="60"/>
<source>发布地址</source>
<translation>প্রকাশস্থল</translation>
</message>
<message>
<location filename="../../../UmiOCR-data/qt_res/qml/TabPages/About/About.qml" line="68"/>
<source>许可协议</source>
<translation>লাইসেন্স</translation>
</message>
<message>
<location filename="../../../UmiOCR-data/qt_res/qml/TabPages/About/About.qml" line="78"/>
<source>作者</source>
<translation>লেখক</translation>
</message>
<message>
<location filename="../../../UmiOCR-data/qt_res/qml/TabPages/About/About.qml" line="86"/>
<source>译者</source>
<translation>译者</translation>
</message>
<message>
<location filename="../../../UmiOCR-data/qt_res/qml/TabPages/About/About.qml" line="112"/>
<source>运行环境信息(如需请求协助,请提供给开发者)</source>
<translation>রানটাইম পরিবেশের তথ্য (সহায়তা চাইলে অনুগ্রহ করে ডেভেলপারকে দিন)</translation>
</message>
<message>
<location filename="../../../UmiOCR-data/qt_res/qml/TabPages/About/About.qml" line="117"/>
<source>复制</source>
<translation type="unfinished"></translation>
</message>
</context>
<context>
<name>AsynFilesLoader</name>
<message>
<location filename="../../../UmiOCR-data/qt_res/qml/MainWindow/AsynFilesLoader.qml" line="9"/>
<source>正在载入 %1 个文件:
%2</source>
<translation type="unfinished"></translation>
</message>
</context>
<context>
<name>BatchDOC</name>
<message>
<location filename="../../../UmiOCR-data/qt_res/qml/TabPages/BatchDOC/BatchDOC.qml" line="48"/>
<source>加密</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../UmiOCR-data/qt_res/qml/TabPages/BatchDOC/BatchDOC.qml" line="60"/>
<source>%1个加密文档</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../UmiOCR-data/qt_res/qml/TabPages/BatchDOC/BatchDOC.qml" line="61"/>
<source>请点击文件名填写密码</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../UmiOCR-data/qt_res/qml/TabPages/BatchDOC/BatchDOC.qml" line="79"/>
<source>文档已加密</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../UmiOCR-data/qt_res/qml/TabPages/BatchDOC/BatchDOC.qml" line="79"/>
<source>【%1】
请点击文档名,设置密码</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../UmiOCR-data/qt_res/qml/TabPages/BatchDOC/BatchDOC.qml" line="174"/>
<source>失败</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../UmiOCR-data/qt_res/qml/TabPages/BatchDOC/BatchDOC.qml" line="89"/>
<source>排队</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../UmiOCR-data/qt_res/qml/TabPages/BatchDOC/BatchDOC.qml" line="127"/>
<source>依然关闭</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../UmiOCR-data/qt_res/qml/TabPages/BatchDOC/BatchDOC.qml" line="134"/>
<source>任务正在进行中。
要结束任务并关闭页面吗?</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../UmiOCR-data/qt_res/qml/TabPages/BatchDOC/BatchDOC.qml" line="243"/>
<location filename="../../../UmiOCR-data/qt_res/qml/TabPages/BatchDOC/BatchDOC.qml" line="252"/>
<source>文档</source>
<translation>ডকুমেন্ট</translation>
</message>
<message>
<location filename="../../../UmiOCR-data/qt_res/qml/TabPages/BatchDOC/BatchDOC.qml" line="245"/>
<source>状态</source>
<translation>অবস্থা</translation>
</message>
<message>
<location filename="../../../UmiOCR-data/qt_res/qml/TabPages/BatchDOC/BatchDOC.qml" line="248"/>
<source>打开文档</source>
<translation>ডকুমেন্ট খুলুন</translation>
</message>
<message>
<location filename="../../../UmiOCR-data/qt_res/qml/TabPages/BatchDOC/BatchDOC.qml" line="250"/>
<source>拖入文档或文件夹</source>
<translation>ডকুমেন্ট বা ফোল্ডার টেনে আনুন</translation>
</message>
<message>
<location filename="../../../UmiOCR-data/qt_res/qml/TabPages/BatchDOC/BatchDOC.qml" line="249"/>
<source>清空</source>
<translation>পরিষ্কার</translation>
</message>
<message>
<location filename="../../../UmiOCR-data/qt_res/qml/TabPages/BatchDOC/BatchDOC.qml" line="166"/>
<source>文档识别异常</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../UmiOCR-data/qt_res/qml/TabPages/BatchDOC/BatchDOC.qml" line="180"/>
<source>批量识别完成</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../UmiOCR-data/qt_res/qml/TabPages/BatchDOC/BatchDOC.qml" line="246"/>
<source>页数</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../UmiOCR-data/qt_res/qml/TabPages/BatchDOC/BatchDOC.qml" line="251"/>
<source>请选择文档</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../UmiOCR-data/qt_res/qml/TabPages/BatchDOC/BatchDOC.qml" line="281"/>
<source>设置</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../UmiOCR-data/qt_res/qml/TabPages/BatchDOC/BatchDOC.qml" line="286"/>
<source>记录</source>
<translation type="unfinished"></translation>
</message>
</context>
<context>
<name>BatchDOCConfigs</name>
<message>
<location filename="../../../UmiOCR-data/qt_res/qml/TabPages/BatchDOC/BatchDOCConfigs.qml" line="18"/>
<source>OCR文本后处理</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../UmiOCR-data/qt_res/qml/TabPages/BatchDOC/BatchDOCConfigs.qml" line="42"/>
<source>文档处理</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../UmiOCR-data/qt_res/qml/TabPages/BatchDOC/BatchDOCConfigs.qml" line="46"/>
<source>内容提取模式</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../UmiOCR-data/qt_res/qml/TabPages/BatchDOC/BatchDOCConfigs.qml" line="47"/>
<source>若一页文档既存在图片又存在文本,如何进行处理</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../UmiOCR-data/qt_res/qml/TabPages/BatchDOC/BatchDOCConfigs.qml" line="49"/>
<source>混合OCR/原文本</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../UmiOCR-data/qt_res/qml/TabPages/BatchDOC/BatchDOCConfigs.qml" line="50"/>
<source>整页强制OCR</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../UmiOCR-data/qt_res/qml/TabPages/BatchDOC/BatchDOCConfigs.qml" line="51"/>
<source>仅OCR图片</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../UmiOCR-data/qt_res/qml/TabPages/BatchDOC/BatchDOCConfigs.qml" line="52"/>
<source>仅拷贝原有文本</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../UmiOCR-data/qt_res/qml/TabPages/BatchDOC/BatchDOCConfigs.qml" line="59"/>
<source>批量任务</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../UmiOCR-data/qt_res/qml/TabPages/BatchDOC/BatchDOCConfigs.qml" line="68"/>
<source>保存到</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../UmiOCR-data/qt_res/qml/TabPages/BatchDOC/BatchDOCConfigs.qml" line="70"/>
<source>文档原目录</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../UmiOCR-data/qt_res/qml/TabPages/BatchDOC/BatchDOCConfigs.qml" line="71"/>
<location filename="../../../UmiOCR-data/qt_res/qml/TabPages/BatchDOC/BatchDOCConfigs.qml" line="75"/>
<source>指定目录</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../UmiOCR-data/qt_res/qml/TabPages/BatchDOC/BatchDOCConfigs.qml" line="76"/>
<source>必须先指定“保存到指定目录”才生效</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../UmiOCR-data/qt_res/qml/TabPages/BatchDOC/BatchDOCConfigs.qml" line="80"/>
<source>OCR结果保存目录</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../UmiOCR-data/qt_res/qml/TabPages/BatchDOC/BatchDOCConfigs.qml" line="83"/>
<source>文件名格式</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../UmiOCR-data/qt_res/qml/TabPages/BatchDOC/BatchDOCConfigs.qml" line="89"/>
<source>日期时间格式</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../UmiOCR-data/qt_res/qml/TabPages/BatchDOC/BatchDOCConfigs.qml" line="90"/>
<source>文件名中 %date 的日期格式。支持插入以下占位符:
%Y 年、 %m 月、 %d 日、 %H 小时、
%M 分钟、 %S 秒 、 %unix 时间戳
举例:%Y年%m月%d日_%H-%M
生成:2023年09月01日_12-13.txt</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../UmiOCR-data/qt_res/qml/TabPages/BatchDOC/BatchDOCConfigs.qml" line="96"/>
<source>保存文件类型</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../UmiOCR-data/qt_res/qml/TabPages/BatchDOC/BatchDOCConfigs.qml" line="102"/>
<source>layered.pdf 双层可搜索文档</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../UmiOCR-data/qt_res/qml/TabPages/BatchDOC/BatchDOCConfigs.qml" line="107"/>
<source>text.pdf 单层纯文本文档</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../UmiOCR-data/qt_res/qml/TabPages/BatchDOC/BatchDOCConfigs.qml" line="108"/>
<source>创建空白PDF文档,只写入识别文字,不含图片</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../UmiOCR-data/qt_res/qml/TabPages/BatchDOC/BatchDOCConfigs.qml" line="112"/>
<source>txt 标准格式</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../UmiOCR-data/qt_res/qml/TabPages/BatchDOC/BatchDOCConfigs.qml" line="113"/>
<source>含识别文字和页数信息</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../UmiOCR-data/qt_res/qml/TabPages/BatchDOC/BatchDOCConfigs.qml" line="117"/>
<source>p.txt 纯文字格式</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../UmiOCR-data/qt_res/qml/TabPages/BatchDOC/BatchDOCConfigs.qml" line="118"/>
<source>输出所有识别文字</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../UmiOCR-data/qt_res/qml/TabPages/BatchDOC/BatchDOCConfigs.qml" line="122"/>
<source>csv 表格文件(Excel)</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../UmiOCR-data/qt_res/qml/TabPages/BatchDOC/BatchDOCConfigs.qml" line="123"/>
<source>将页数信息和识别内容写入csv表格文件。可用Excel打开,另存为xlsx格式。</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../UmiOCR-data/qt_res/qml/TabPages/BatchDOC/BatchDOCConfigs.qml" line="127"/>
<source>jsonl 原始信息</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../UmiOCR-data/qt_res/qml/TabPages/BatchDOC/BatchDOCConfigs.qml" line="128"/>
<source>每行为一条json数据,便于第三方程序读取操作</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../UmiOCR-data/qt_res/qml/TabPages/BatchDOC/BatchDOCConfigs.qml" line="134"/>
<source>忽略空白页</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../UmiOCR-data/qt_res/qml/TabPages/BatchDOC/BatchDOCConfigs.qml" line="135"/>
<source>若某一页没有文字或识别失败,也不会输出错误提示信息</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../UmiOCR-data/qt_res/qml/TabPages/BatchDOC/BatchDOCConfigs.qml" line="63"/>
<source>递归读取子文件夹</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../UmiOCR-data/qt_res/qml/TabPages/BatchDOC/BatchDOCConfigs.qml" line="23"/>
<source>点击表格,可设置更多内容</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../UmiOCR-data/qt_res/qml/TabPages/BatchDOC/BatchDOCConfigs.qml" line="64"/>
<source>导入文件夹时,导入子文件夹中全部文档</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../UmiOCR-data/qt_res/qml/TabPages/BatchDOC/BatchDOCConfigs.qml" line="84"/>
<source>无需填写拓展名。支持插入以下占位符:
%date 日期时间
%name 原文档名
%range 识别页数范围。只有识别页数小于总页数时才会显示。
举例:[OCR]_%name%range_%date
生成:[OCR]_文档A(p2-10)_20230901_1213.txt
添加占位符可以避免旧文件被新文件覆盖。</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../UmiOCR-data/qt_res/qml/TabPages/BatchDOC/BatchDOCConfigs.qml" line="103"/>
<source>保留原有图片,叠加一层透明文字,可以搜索和复制</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../UmiOCR-data/qt_res/qml/TabPages/BatchDOC/BatchDOCConfigs.qml" line="144"/>
<source>其它</source>
<translation type="unfinished"></translation>
</message>
</context>
<context>
<name>BatchOCR</name>
<message>
<location filename="../../../UmiOCR-data/qt_res/qml/TabPages/BatchOCR/BatchOCR.qml" line="83"/>
<source>依然关闭</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../UmiOCR-data/qt_res/qml/TabPages/BatchOCR/BatchOCR.qml" line="90"/>
<source>任务正在进行中。
要结束任务并关闭页面吗?</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../UmiOCR-data/qt_res/qml/TabPages/BatchOCR/BatchOCR.qml" line="47"/>
<source>排队</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../UmiOCR-data/qt_res/qml/TabPages/BatchOCR/BatchOCR.qml" line="108"/>
<source>处理</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../UmiOCR-data/qt_res/qml/TabPages/BatchOCR/BatchOCR.qml" line="144"/>
<source>%1 张图片识别失败!</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../UmiOCR-data/qt_res/qml/TabPages/BatchOCR/BatchOCR.qml" line="147"/>
<source>批量识别完成</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../UmiOCR-data/qt_res/qml/TabPages/BatchOCR/BatchOCR.qml" line="155"/>
<source>批量识别任务异常</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../UmiOCR-data/qt_res/qml/TabPages/BatchOCR/BatchOCR.qml" line="241"/>
<location filename="../../../UmiOCR-data/qt_res/qml/TabPages/BatchOCR/BatchOCR.qml" line="250"/>
<source>图片</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../UmiOCR-data/qt_res/qml/TabPages/BatchOCR/BatchOCR.qml" line="243"/>
<source>耗时</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../UmiOCR-data/qt_res/qml/TabPages/BatchOCR/BatchOCR.qml" line="244"/>
<source>状态</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../UmiOCR-data/qt_res/qml/TabPages/BatchOCR/BatchOCR.qml" line="246"/>
<source>打开图片</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../UmiOCR-data/qt_res/qml/TabPages/BatchOCR/BatchOCR.qml" line="248"/>
<source>拖入图片或文件夹</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../UmiOCR-data/qt_res/qml/TabPages/BatchOCR/BatchOCR.qml" line="247"/>
<source>清空</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../UmiOCR-data/qt_res/qml/TabPages/BatchOCR/BatchOCR.qml" line="249"/>
<source>请选择图片</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../UmiOCR-data/qt_res/qml/TabPages/BatchOCR/BatchOCR.qml" line="279"/>
<source>设置</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../UmiOCR-data/qt_res/qml/TabPages/BatchOCR/BatchOCR.qml" line="284"/>
<source>记录</source>
<translation type="unfinished"></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 type="unfinished"></translation>
</message>
<message>
<location filename="../../../UmiOCR-data/qt_res/qml/TabPages/BatchOCR/BatchOCRConfigs.qml" line="23"/>
<source>忽略区域</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../UmiOCR-data/qt_res/qml/TabPages/BatchOCR/BatchOCRConfigs.qml" line="25"/>
<source>进入设置</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../UmiOCR-data/qt_res/qml/TabPages/BatchOCR/BatchOCRConfigs.qml" line="36"/>
<source>批量任务</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../UmiOCR-data/qt_res/qml/TabPages/BatchOCR/BatchOCRConfigs.qml" line="45"/>
<source>保存到</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../UmiOCR-data/qt_res/qml/TabPages/BatchOCR/BatchOCRConfigs.qml" line="47"/>
<source>图片原目录</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../UmiOCR-data/qt_res/qml/TabPages/BatchOCR/BatchOCRConfigs.qml" line="48"/>
<location filename="../../../UmiOCR-data/qt_res/qml/TabPages/BatchOCR/BatchOCRConfigs.qml" line="52"/>
<source>指定目录</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../UmiOCR-data/qt_res/qml/TabPages/BatchOCR/BatchOCRConfigs.qml" line="53"/>
<source>必须先指定“保存到指定目录”才生效</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../UmiOCR-data/qt_res/qml/TabPages/BatchOCR/BatchOCRConfigs.qml" line="57"/>
<source>OCR结果保存目录</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../UmiOCR-data/qt_res/qml/TabPages/BatchOCR/BatchOCRConfigs.qml" line="60"/>
<source>文件名格式</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../UmiOCR-data/qt_res/qml/TabPages/BatchOCR/BatchOCRConfigs.qml" line="61"/>
<source>无需填写拓展名。支持插入以下占位符:
%date 日期时间
%name 原文件夹名/文件名
举例:[OCR]_%name_%date
生成:[OCR]_我的图片_2023-09-01_12-13.txt
添加占位符可以避免旧文件被新文件覆盖。</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../UmiOCR-data/qt_res/qml/TabPages/BatchOCR/BatchOCRConfigs.qml" line="66"/>
<source>日期时间格式</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../UmiOCR-data/qt_res/qml/TabPages/BatchOCR/BatchOCRConfigs.qml" line="67"/>
<source>文件名中 %date 的日期格式。支持插入以下占位符:
%Y 年、 %m 月、 %d 日、 %H 小时、
%M 分钟、 %S 秒 、 %unix 时间戳
举例:%Y年%m月%d日_%H-%M
生成:2023年09月01日_12-13.txt</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../UmiOCR-data/qt_res/qml/TabPages/BatchOCR/BatchOCRConfigs.qml" line="73"/>
<source>保存文件类型</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../UmiOCR-data/qt_res/qml/TabPages/BatchOCR/BatchOCRConfigs.qml" line="79"/>
<source>txt 标准格式</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../UmiOCR-data/qt_res/qml/TabPages/BatchOCR/BatchOCRConfigs.qml" line="80"/>
<source>含原图片文件名和识别文字</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../UmiOCR-data/qt_res/qml/TabPages/BatchOCR/BatchOCRConfigs.qml" line="84"/>
<source>p.txt 纯文字格式</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../UmiOCR-data/qt_res/qml/TabPages/BatchOCR/BatchOCRConfigs.qml" line="85"/>
<source>仅输出识别文字,不含图片标题</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../UmiOCR-data/qt_res/qml/TabPages/BatchOCR/BatchOCRConfigs.qml" line="89"/>
<source>txt 单独文件</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../UmiOCR-data/qt_res/qml/TabPages/BatchOCR/BatchOCRConfigs.qml" line="90"/>
<source>对每张图片,生成同名txt文件,仅输出识别文字</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../UmiOCR-data/qt_res/qml/TabPages/BatchOCR/BatchOCRConfigs.qml" line="94"/>
<source>md 图文混排</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../UmiOCR-data/qt_res/qml/TabPages/BatchOCR/BatchOCRConfigs.qml" line="95"/>
<source>Markdown图文混排格式,可用Markdown阅读器浏览文件</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../UmiOCR-data/qt_res/qml/TabPages/BatchOCR/BatchOCRConfigs.qml" line="99"/>
<source>csv 表格文件(Excel)</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../UmiOCR-data/qt_res/qml/TabPages/BatchOCR/BatchOCRConfigs.qml" line="100"/>
<source>将图片信息和识别内容写入csv表格文件。可用Excel打开,另存为xlsx格式。</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../UmiOCR-data/qt_res/qml/TabPages/BatchOCR/BatchOCRConfigs.qml" line="104"/>
<source>jsonl 原始信息</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../UmiOCR-data/qt_res/qml/TabPages/BatchOCR/BatchOCRConfigs.qml" line="105"/>
<source>每行为一条json数据,便于第三方程序读取操作</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../UmiOCR-data/qt_res/qml/TabPages/BatchOCR/BatchOCRConfigs.qml" line="111"/>
<source>输出忽略空白图片</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../UmiOCR-data/qt_res/qml/TabPages/BatchOCR/BatchOCRConfigs.qml" line="112"/>
<source>若图片没有文字或识别失败,也不会输出错误提示信息</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../UmiOCR-data/qt_res/qml/TabPages/BatchOCR/BatchOCRConfigs.qml" line="40"/>
<source>递归读取子文件夹</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../UmiOCR-data/qt_res/qml/TabPages/BatchOCR/BatchOCRConfigs.qml" line="41"/>
<source>导入文件夹时,导入子文件夹中全部图片</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../UmiOCR-data/qt_res/qml/TabPages/BatchOCR/BatchOCRConfigs.qml" line="121"/>
<source>其它</source>
<translation type="unfinished"></translation>
</message>
</context>
<context>
<name>Configs</name>
<message>
<location filename="../../../UmiOCR-data/qt_res/qml/Configs/Configs.qml" line="186"/>
<source>%1 处理配置项异常:
%2枚举列表为空。</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../UmiOCR-data/qt_res/qml/Configs/Configs.qml" line="472"/>
<source>重置</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../UmiOCR-data/qt_res/qml/Configs/Configs.qml" line="473"/>
<source>重置本页上的设定</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../UmiOCR-data/qt_res/qml/Configs/Configs.qml" line="476"/>
<source>重置设定</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../UmiOCR-data/qt_res/qml/Configs/Configs.qml" line="478"/>
<source>要重置本页的设定吗?</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../UmiOCR-data/qt_res/qml/Configs/Configs.qml" line="486"/>
<source>高级</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../UmiOCR-data/qt_res/qml/Configs/Configs.qml" line="487"/>
<source>显示更多高级选项。它们标有 * 号。
请谨慎修改高级选项。</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../UmiOCR-data/qt_res/qml/Configs/Configs.qml" line="664"/>
<source>展开</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../UmiOCR-data/qt_res/qml/Configs/Configs.qml" line="664"/>
<source>折叠</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../UmiOCR-data/qt_res/qml/Configs/Configs.qml" line="802"/>
<source>必须为整数</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../UmiOCR-data/qt_res/qml/Configs/Configs.qml" line="806"/>
<source>不能超过</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../UmiOCR-data/qt_res/qml/Configs/Configs.qml" line="809"/>
<source>不能低于</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../UmiOCR-data/qt_res/qml/Configs/Configs.qml" line="816"/>
<source>必须为数字</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../UmiOCR-data/qt_res/qml/Configs/Configs.qml" line="1123"/>
<source>已取消%1的快捷键。</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../UmiOCR-data/qt_res/qml/Configs/Configs.qml" line="1133"/>
<source>更新热键成功</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../UmiOCR-data/qt_res/qml/Configs/Configs.qml" line="1133"/>
<source>%1的快捷键为 %2</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../UmiOCR-data/qt_res/qml/Configs/Configs.qml" line="1141"/>
<source>%1 快捷键%2已被注册,请尝试另外的按键组合。</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../UmiOCR-data/qt_res/qml/Configs/Configs.qml" line="1144"/>
<source>%1 快捷键%2无法注册,请尝试另外的按键组合。</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../UmiOCR-data/qt_res/qml/Configs/Configs.qml" line="1153"/>
<source>请按下快捷键组合。按【Esc】退出。</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../UmiOCR-data/qt_res/qml/Configs/Configs.qml" line="1166"/>
<source>当前快捷键录制已在进行,不能同时录制!</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../UmiOCR-data/qt_res/qml/Configs/Configs.qml" line="1168"/>
<source>无法录制快捷键</source>
<translation type="unfinished"></translation>
</message>
</context>
<context>
<name>DropArea_</name>
<message>
<location filename="../../../UmiOCR-data/qt_res/qml/Widgets/DropArea_.qml" line="11"/>
<source>松手放入文件</source>
<translation type="unfinished"></translation>
</message>
</context>
<context>
<name>FontPanel</name>
<message>
<location filename="../../../UmiOCR-data/qt_res/qml/TabPages/GlobalConfigsPage/FontPanel.qml" line="107"/>
<source>界面</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../UmiOCR-data/qt_res/qml/TabPages/GlobalConfigsPage/FontPanel.qml" line="115"/>
<source>内容</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../UmiOCR-data/qt_res/qml/TabPages/GlobalConfigsPage/FontPanel.qml" line="211"/>
<source>界面字体:
软件中大部分UI的字体。</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../UmiOCR-data/qt_res/qml/TabPages/GlobalConfigsPage/FontPanel.qml" line="219"/>
<source>内容字体:
识别结果内容的字体。</source>
<translation type="unfinished"></translation>
</message>
</context>
<context>
<name>GlobalConfigs</name>
<message>
<location filename="../../../UmiOCR-data/qt_res/qml/Configs/GlobalConfigs.qml" line="20"/>
<source>快捷方式</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../UmiOCR-data/qt_res/qml/Configs/GlobalConfigs.qml" line="24"/>
<source>桌面</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../UmiOCR-data/qt_res/qml/Configs/GlobalConfigs.qml" line="32"/>
<source>开始菜单</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../UmiOCR-data/qt_res/qml/Configs/GlobalConfigs.qml" line="40"/>
<source>开机自启</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../UmiOCR-data/qt_res/qml/Configs/GlobalConfigs.qml" line="51"/>
<source>界面和外观</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../UmiOCR-data/qt_res/qml/Configs/GlobalConfigs.qml" line="56"/>
<source>主题</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../UmiOCR-data/qt_res/qml/Configs/GlobalConfigs.qml" line="61"/>
<source>切换主题</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../UmiOCR-data/qt_res/qml/Configs/GlobalConfigs.qml" line="65"/>
<source>字体</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../UmiOCR-data/qt_res/qml/Configs/GlobalConfigs.qml" line="68"/>
<source>修改字体</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../UmiOCR-data/qt_res/qml/Configs/GlobalConfigs.qml" line="83"/>
<source>界面与文字大小</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../UmiOCR-data/qt_res/qml/Configs/GlobalConfigs.qml" line="99"/>
<source>渲染器</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../UmiOCR-data/qt_res/qml/Configs/GlobalConfigs.qml" line="103"/>
<source>关闭硬件加速</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../UmiOCR-data/qt_res/qml/Configs/GlobalConfigs.qml" line="107"/>
<source>若出现界面闪烁、元素错位等界面异常,尝试切换渲染器或者关闭硬件加速</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../UmiOCR-data/qt_res/qml/Configs/GlobalConfigs.qml" line="113"/>
<source>禁用美化效果</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../UmiOCR-data/qt_res/qml/Configs/GlobalConfigs.qml" line="115"/>
<source>在低配置机器上,禁用动画、阴影等效果可减少部分资源占用</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../UmiOCR-data/qt_res/qml/Configs/GlobalConfigs.qml" line="121"/>
<source>图片预览默认显示叠加层</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../UmiOCR-data/qt_res/qml/Configs/GlobalConfigs.qml" line="123"/>
<source>默认开启/关闭叠加层显示
对所有图片预览组件生效</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../UmiOCR-data/qt_res/qml/Configs/GlobalConfigs.qml" line="129"/>
<source>窗口</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../UmiOCR-data/qt_res/qml/Configs/GlobalConfigs.qml" line="133"/>
<source>启动时缩小到任务栏</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../UmiOCR-data/qt_res/qml/Configs/GlobalConfigs.qml" line="135"/>
<source>软件启动时,不弹出主窗口</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../UmiOCR-data/qt_res/qml/Configs/GlobalConfigs.qml" line="138"/>
<source>窗口置顶</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../UmiOCR-data/qt_res/qml/Configs/GlobalConfigs.qml" line="140"/>
<source>捷径:窗口左上角图钉</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../UmiOCR-data/qt_res/qml/Configs/GlobalConfigs.qml" line="146"/>
<source>锁定标签栏</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../UmiOCR-data/qt_res/qml/Configs/GlobalConfigs.qml" line="148"/>
<source>捷径:窗口右上角小锁</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../UmiOCR-data/qt_res/qml/Configs/GlobalConfigs.qml" line="154"/>
<source>关闭主窗口时</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../UmiOCR-data/qt_res/qml/Configs/GlobalConfigs.qml" line="156"/>
<source>最小化到系统托盘</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../UmiOCR-data/qt_res/qml/Configs/GlobalConfigs.qml" line="157"/>
<source>退出应用</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../UmiOCR-data/qt_res/qml/Configs/GlobalConfigs.qml" line="161"/>
<source>隐藏托盘图标</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../UmiOCR-data/qt_res/qml/Configs/GlobalConfigs.qml" line="162"/>
<source>若要弹出位于后台的软件窗口,请在文件管理器中重复启动软件。
若要彻底退出软件,请从任务管理器中结束进程。</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../UmiOCR-data/qt_res/qml/Configs/GlobalConfigs.qml" line="183"/>
<source>截图</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../UmiOCR-data/qt_res/qml/Configs/GlobalConfigs.qml" line="187"/>
<source>截图前隐藏主窗口</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../UmiOCR-data/qt_res/qml/Configs/GlobalConfigs.qml" line="188"/>
<source>截图前,如果主窗口处于前台,则隐藏主窗口
将会延时等待主窗口关闭</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../UmiOCR-data/qt_res/qml/Configs/GlobalConfigs.qml" line="192"/>
<source>隐藏等待时间</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../UmiOCR-data/qt_res/qml/Configs/GlobalConfigs.qml" line="195"/>
<source>秒</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../UmiOCR-data/qt_res/qml/Configs/GlobalConfigs.qml" line="203"/>
<source>服务</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../UmiOCR-data/qt_res/qml/Configs/GlobalConfigs.qml" line="207"/>
<source>允许HTTP服务</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../UmiOCR-data/qt_res/qml/Configs/GlobalConfigs.qml" line="208"/>
<source>Umi-OCR依赖HTTP接口进行本机跨进程通信。如果禁用,将无法使用命令行模式、多开检测等功能。</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../UmiOCR-data/qt_res/qml/Configs/GlobalConfigs.qml" line="211"/>
<location filename="../../../UmiOCR-data/qt_res/qml/Configs/GlobalConfigs.qml" line="223"/>
<location filename="../../../UmiOCR-data/qt_res/qml/Configs/GlobalConfigs.qml" line="446"/>
<source>重启软件后生效</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../UmiOCR-data/qt_res/qml/Configs/GlobalConfigs.qml" line="215"/>
<source>主机</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../UmiOCR-data/qt_res/qml/Configs/GlobalConfigs.qml" line="217"/>
<source>仅本地</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../UmiOCR-data/qt_res/qml/Configs/GlobalConfigs.qml" line="218"/>
<source>任何可用地址</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../UmiOCR-data/qt_res/qml/Configs/GlobalConfigs.qml" line="222"/>
<source>将允许局域网访问。请开启对应防火墙权限!</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../UmiOCR-data/qt_res/qml/Configs/GlobalConfigs.qml" line="222"/>
<source>将禁止局域网访问。</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../../../UmiOCR-data/qt_res/qml/Configs/GlobalConfigs.qml" line="228"/>