-
Notifications
You must be signed in to change notification settings - Fork 0
/
3.txt
1582 lines (1136 loc) · 21.3 KB
/
3.txt
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
447
The writeable glossary file must be inside the glossary folder
可写术语表文件必须置于术语表目录中。
xulihang
Bundle.properties
448
Translation memory files folder entered does not exist!
输入的翻译记忆文件目录不存在!
flycr
Bundle.properties
449
Dictionary files folder entered does not exist!
输入的字典文件文件目录不存在!
钢
Bundle.properties
450
ERROR: {0}
错误:{0}
钢
Bundle.properties
451
OmegaT Project Folder
OmegaT 项目文件夹
钢
Bundle.properties
452
Folder already exists and is not empty.
目录已经存在而且不是空的。
钢
Bundle.properties
453
Please select a different folder.
请另选一个目录。
钢
Bundle.properties
454
Error
错误
钢
Bundle.properties
455
An error occurred while trying to create a new folder
创建新文件夹时发生错误
钢
Bundle.properties
456
Search for:
查找:
钢
Bundle.properties
457
Replace with:
替换为:
flycr
Bundle.properties
458
&Keyword search
关键词搜索
flycr
Bundle.properties
459
&Exact search
精确搜索
flycr
Bundle.properties
460
&Regular expressions
正则表达式
flycr
Bundle.properties
461
In notes
在注释中查找
flycr
Bundle.properties
462
In comments
在评论中查找
flycr
Bundle.properties
463
Show Advanced &Options
显示高级选项
flycr
Bundle.properties
464
Hide Advanced &Options
隐藏高级选项
flycr
Bundle.properties
465
Aut&hor:
作者:
flycr
Bundle.properties
466
Now
目前
钢
Bundle.properties
467
Changed after:
之后修改
flycr
Bundle.properties
468
Changed &before:
之前修改:
flycr
Bundle.properties
469
C&ase sensitive
区分大小写
flycr
Bundle.properties
470
Full/Half &width char insensitive
全半角字符敏感
flycr
Bundle.properties
471
S&pace matches nbsp
匹配空格
flycr
Bundle.properties
472
Search in
搜索范围
钢
Bundle.properties
473
Memor&y
记忆
flycr
Bundle.properties
474
T&Ms
翻译记忆库(&M)
lenovo
Bundle.properties
475
&Glossaries
术语表(&G)
lenovo
Bundle.properties
476
&Translated
已译
flycr
Bundle.properties
477
U&ntranslated
未译
flycr
Bundle.properties
478
In so&urce
在原文中
flycr
Bundle.properties
479
&In translation
在译文中
flycr
Bundle.properties
480
Trans&lated or untranslated
已译或未译
flycr
Bundle.properties
481
U&ntranslated
未译
flycr
Bundle.properties
482
Display:
显示:
flycr
Bundle.properties
483
all matching segments
所有匹配片段
flycr
Bundle.properties
484
file names
文件名
flycr
Bundle.properties
485
Location
位置
钢
Bundle.properties
486
Select Fol&der
选择文件夹
flycr
Bundle.properties
487
&Files
文件
flycr
Bundle.properties
488
Pro&ject
项目
flycr
Bundle.properties
489
Recursi&ve search
递归搜索
flycr
Bundle.properties
490
Text Search
文本搜索
钢
Bundle.properties
491
Text Replace
文本替换
flycr
Bundle.properties
492
You are going to modify {0} segments.
您即将修改 {0} 片段
flycr
Bundle.properties
493
Do you want to continue?
是否继续?
flycr
Bundle.properties
494
Number of matching segments:
匹配片段数量
flycr
Bundle.properties
495
Scope:
The scope of a search is by default the project and can be set to be any files located in a specified folder hierarchy.
范围:
搜索的默认范围是本项目文件,也可以设置为指定目录下的其他文件
flycr
Bundle.properties
496
Project searches are by default performed on the source and target, reference TMs, glossaries, notes and comments of the project.
项目搜索默认将搜索源文和译文、引用的翻译记忆库、术语表、注释及项目中的评论。
flycr
Bundle.properties
497
Types:
Exact searches match the whole search string.
类型:
精确搜索将完美匹配输入的字符串。
flycr
Bundle.properties
498
Keyword searches match all the space-separated keywords regardless of their order.
关键字搜索匹配所有以空格隔开的关键词,顺序不限。
flycr
Bundle.properties
499
Regular expression searches match Java regular expressions as documented in the user manual.
正则表达式搜索匹配Java正则表达式结果,请参阅相关用户手册。
flycr
Bundle.properties
500
Wildcards:
Both exact and keyword searches support the wildcard characters * and ?.
通配符:精确搜索和关键字搜索均支持通配符 * 和 ?。
flycr
Bundle.properties
501
'*' matches zero or more characters ('run*' matches 'run', 'runs', and'running', etc.)
'?' matches exactly one character ('run?' matches 'runs' and 'rung', but not 'run' or 'running').
字符"*"匹配零个或任意数量个字符(例如'run*'将会匹配'run'、'runs'、'running'以及很多)
字符 '?' 匹配任何单个的字符(例如'run?' 将会匹配'runs' 和 'rung',但是不匹配 'run' 或 'running')
flycr
Bundle.properties
502
Text Replace:
The scope of a text replacement is the target segments of the project, whether they already have contents or not.
文本替换:
文本替换的范围是项目中的目标片段,不论其目前是否有内容
flycr
Bundle.properties
503
Keyword searches are not available in the search string.
您目前输入的内容无法进行关键字搜索。
flycr
Bundle.properties
504
When using regular expressions, the replacement string supports references to groups defined in the search string.
当您使用正则表达式时,您可以在正则表达式中定义组别并指定要替换内容的组别。
flycr
Bundle.properties
505
Use $n to refer to the nth group.
使用 $n 指定第n组。
flycr
Bundle.properties
506
Auto-sync with Editor
自动与编辑器保持同步
flycr
Bundle.properties
507
Back to the initial segment on close
关闭时回到初始片段
flycr
Bundle.properties
508
Exclude orphan segments
排除孤立片段
flycr
Bundle.properties
509
Maximum number of finds has been reached ({0})
达到了最大查找数量({0})
钢
Bundle.properties
510
Error searching directory tree!
搜索目录树时发生错误!
钢
Bundle.properties
511
Bad regular expression!
错误的正则表达式!
钢
Bundle.properties
512
Error during regular expression replacement:
使用正则表达式进行替换时产生错误:
flycr
Bundle.properties
513
Group {0} does not exist in search expression
第 {0} 组在搜索表达式中不存在
flycr
Bundle.properties
514
Bad folder name {0}
出错文件夹名称 {0}
钢
Bundle.properties
515
Search thread died unexpectedly!
搜索线程意外崩溃!
钢
Bundle.properties
516
Please close search window.
请关闭搜索窗口。
钢
Bundle.properties
517
No matches returned by search.
搜索未发现任何匹配内容。
钢
Bundle.properties
518
Nr of matching segments: {0}
匹配片段数量
flycr
Bundle.properties
519
Glossary
术语表
xulihang
Bundle.properties
520
+{0} more
+{0} 更多
flycr
Bundle.properties
521
{0} +{1} more
{0} +{1} 更多
flycr
Bundle.properties
522
File
文件
xulihang
Bundle.properties
523
&Close
关闭(&C)
Administrator
Bundle.properties
524
&Search for Selection
在选中部分中搜索
flycr
Bundle.properties
525
Edit
编辑
Fu Rhong
Bundle.properties
526
&Reset Options
重置所有选项
flycr
Bundle.properties
527
Unable to initialize read of XML file!
无法初始化读取 XML 文件!
钢
Bundle.properties
528
Unsupported XML version {0}!
不支持的 XML 版本 {0}!
钢
Bundle.properties
529
Not a valid XML file!
非法的 XML 文件!
钢
Bundle.properties
530
Cannot load specified XML file!
无法载入指定的 XML 文件!
钢
Bundle.properties
531
IOException encountered:
发生输入输出错误:
flycr
Bundle.properties
532
Unexpected char {0} ({1})!
意外字符 {0} ({1})!
钢
Bundle.properties
533
Confused by false start of comment tag!
错误开始的注释标签导致混乱!
flycr
Bundle.properties
534
Tag name:
标签名称:
钢
Bundle.properties
535
(comment tag)
(注释标签)
钢
Bundle.properties
536
Floating '?' character not tied to '>'!
浮点数 '?' 无法绑定到 '>'!
钢
Bundle.properties
537
(empty tag)
(空白标签)
钢
Bundle.properties
538
(close tag)
(闭标签)
钢
Bundle.properties
539
loaded
已载入
钢
Bundle.properties
540
attributes.
属性。
钢
Bundle.properties
541
End of stream encountered without finding close block!
文件流在未进行到关闭代码块时意外结束!
flycr
Bundle.properties
542
Escaped character never terminated!
转义字符未结束!
钢
Bundle.properties
543
Escaped binary char contains malformed data ({0})!
转义二进制字符包含错误数据 ({0})!
钢
Bundle.properties
544
Escaped decimal char contains malformed data ({0})!
转义十进制字符包含包含错误数据({0})!
钢
Bundle.properties
545
File {0} does not exist!
文件 {0} 不存在!
钢
Bundle.properties
546
Preferences system save operation failed!
首选项系统保存失败!
flycr
Bundle.properties
547
Parse error encountered reading preferences file!
读取首选项文件时解析错误!
flycr
Bundle.properties
548
Unsupported file encoding
不支持的文件编码
钢
Bundle.properties
549
Unable to read file
无法读取文件!
钢
Bundle.properties
550
Backed up preferences to {0}
将首选项备份至 {0}
flycr
Bundle.properties
551
Failed to back up preferences file.
首选项文件备份失败。
flycr
Bundle.properties
552
Unsupported project file version ({0})!
不支持的项目文件版本({0})!
flycr
Bundle.properties
553
Reading TMX file {0}
读取TMX 文件 {0}
钢
Bundle.properties
554
Reading of TMX file complete
读取 TMX 文件完成
钢
Bundle.properties
555
Created by: {0}
由: {0}创建
钢
Bundle.properties
556
Version: {0}
版本:{0}
钢
Bundle.properties
557
Segmentation method: {0}
分段方法: {0}
钢
Bundle.properties
558
Source language: {0}
原文语种:{0}
钢
Bundle.properties
559
Variants in the following languages will be displayed: {0}
下列语言的变量将会被显示: {0}
钢
Bundle.properties
560
Exception while parsing:
结构化处理时遇到异常:{0}
flycr
Bundle.properties
561
An exception occurred while parsing the TMX file
{0}
The TMX file will not be loaded.
分析TMX文件时发生异常:{0}
此TMX 文件不会被载入。
flycr
Bundle.properties
562
Please consult the log
({1})
to determine the source of the error and try again.
请分析日志
({1})
以确定异常产生的原因,并再试一次。
flycr
Bundle.properties
563
Warning on line {0}, column {1} while parsing:
处理第 {0} 行第 {1} 列发生警告:
flycr
Bundle.properties
564
Recoverable error on line {0}, column {1} while parsing:
处理第 {0} 行第 {1} 列发生可恢复错误:
flycr
Bundle.properties
565
Fatal error on line {0}, column {1} while parsing:
处理第 {0} 行第 {1} 列时发生致命错误:
flycr
Bundle.properties
566
Unrecoverable error while parsing TMX file
{0}
on line {1}, column {2}.
分析TMX文件 {0} 时在第 {1} 行第 {2} 列发生不可恢复错误
钢
Bundle.properties
567
The TMX file will not be loaded
Please try to correct the error and reload the project.
此TMX文件将不会被导入。请尝试修正错误并重新载入项目。
flycr
Bundle.properties
568
Translation unit encountered before TMX header.
错误:TMX文件头之前发现了翻译单元。
钢
Bundle.properties
569
Translation unit variant encountered outside translation unit.
在翻译单元之外发现了翻译单元变量。
flycr
Bundle.properties
570
Variant skipped.
变量被忽略。
钢
Bundle.properties
571
Language not specified for translation unit variant.
没有为翻译单元变量指定语种。
钢
Bundle.properties
572
Variant skipped.
变量被忽略。
钢
Bundle.properties
573
Segment encountered outside translation unit variant.
在翻译单元变量之外发现了片段。
flycr
Bundle.properties
574
Segment skipped.
片段被忽略。
钢
Bundle.properties
575
Source segment could not be located for certain translation units.
某些翻译单元无法找到源片段。
flycr
Bundle.properties
576
These units have been skipped.
已经忽略这些单元。
钢
Bundle.properties
577
The TMX source language ({0}) is different from the project source language ({1}).
TMX源语种({0})和项目源语种{1}不同。
钢
Bundle.properties
578
The TMX file will continue to be loaded.
TMX文件将被继续载入。
钢
Bundle.properties
579
TMX file was created by OmegaT 1.4.x or earlier.
TMX由OmegaT1.4.X或更早的版本创建。
钢
Bundle.properties
580
Upgrading...
更在更新中...
xulihang
Bundle.properties
581
Your current project uses sentence segmentation, but TMX file was created using paragraph segmentation.
当前项目使用句子分段,但TMX文件使用段落分段创建。
钢
Bundle.properties
582
OmegaT will try to resegment the TMX file...
OmegaT 将尝试对TMX文件重新分段。
钢
Bundle.properties
583
Error reading TMX level2 at line {0} column {1}
读取二级 TMX 文件的第 {0} 行第 {1} 时发生错误
钢
Bundle.properties
584
Loading glossary {0}
载入术语表{0}
xulihang
Bundle.properties
585
Added {0} glossary entries from {1}
从 {1} 中添加了 {0} 项术语条目
flycr
Bundle.properties
586
Could not initialize OS look and feel!
无法初始化操作系统外观!
钢
Bundle.properties
587