blob: 3d0f0d25d6e33a771db401bac88e218c0f443bd3 (
plain)
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
|
<header>
<language name>简体中文</language name>
<translator>CyberCowBoy</translator>
<locale>zh_CN</locale>
<flag file>china.png</flag file>
<plural forms>1</plural forms>
<plural definition>0</plural definition>
</header>
<source>Searching for folder %x...</source>
<target>正在搜索文件夹 %x...</target>
<source>Items processed:</source>
<target>已处理的项目:</target>
<source>Items remaining:</source>
<target>剩余的项目:</target>
<source>Total time:</source>
<target>总共时间:</target>
<source>Cannot set directory lock for %x.</source>
<target></target>
<source>Show in Explorer</source>
<target>在Explorer中显示</target>
<source>Open with default application</source>
<target>用默认应用软件打开</target>
<source>Browse directory</source>
<target>浏览目录</target>
<source>Abort requested: Waiting for current operation to finish...</source>
<target>请求中止: 正在等待当前操作完成...</target>
<source>Failure to create timestamp for versioning:</source>
<target>未能为历史版本创建时间标记</target>
<source>RealtimeSync - Automated Synchronization</source>
<target>实时同步 - 自动同步</target>
<source>Error</source>
<target>错误</target>
<source>Selected variant:</source>
<target></target>
<source>Select alternate comparison settings</source>
<target>选择替换的比较设置</target>
<source>Select alternate synchronization settings</source>
<target>选择替换同步设置</target>
<source>Filter is active</source>
<target>过滤器已生效</target>
<source>No filter selected</source>
<target>没有选定过滤器</target>
<source>Remove alternate settings</source>
<target>移除替换设置</target>
<source>Clear filter settings</source>
<target>清除过滤器设置</target>
<source>Copy</source>
<target>复制</target>
<source>Paste</source>
<target></target>
<source>Save as batch job</source>
<target>另存为批处理作业</target>
<source>Comparison settings</source>
<target>比较设置</target>
<source>Synchronization settings</source>
<target>同步设置</target>
<source>About</source>
<target>关于</target>
<source>Confirm</source>
<target>确认</target>
<source>Configure filter</source>
<target>配置过滤器</target>
<source>Global settings</source>
<target>全局设置</target>
<source>Find</source>
<target>查找</target>
<source>Select time span</source>
<target>选择时间跨度</target>
<source>Invalid command line:</source>
<target>无效的命令行:</target>
<source>Info</source>
<target>信息</target>
<source>Warning</source>
<target>警告</target>
<source>Fatal Error</source>
<target>致命错误</target>
<source>Error Code %x:</source>
<target></target>
<source>Cannot resolve symbolic link %x.</source>
<target>无法解决符号连接 %x.</target>
<source>%x MB</source>
<target>%x MB</target>
<source>%x KB</source>
<target>%x KB</target>
<source>%x GB</source>
<target>%x GB</target>
<source>
<pluralform>1 Byte</pluralform>
<pluralform>%x Bytes</pluralform>
</source>
<target>
<pluralform>%x 字节</pluralform>
</target>
<source>Database file %x is incompatible.</source>
<target>数据库文件 %x 不兼容.</target>
<source>Initial synchronization:</source>
<target>初始化同步:</target>
<source>Database file %x does not yet exist.</source>
<target>数据库文件 %x 还未存在.</target>
<source>Database file is corrupt:</source>
<target>数据库文件已损坏:</target>
<source>Out of memory!</source>
<target>内存不足!</target>
<source>Cannot write file %x.</source>
<target>无法写入文件 %x .</target>
<source>Cannot read file %x.</source>
<target>无法读取文件 %x .</target>
<source>Database files do not share a common session.</source>
<target>数据库文件并未共享一个公共会话.</target>
<source>An exception occurred!</source>
<target>发生异常!</target>
<source>Cannot read file attributes of %x.</source>
<target>无法读取 %x 的文件属性.</target>
<source>Cannot get process information.</source>
<target>无法取得进程信息.</target>
<source>Waiting while directory is locked (%x)...</source>
<target>由于目录已锁定而正在等待(%x)...</target>
<source>Creating file %x</source>
<target>正在创建文件 %x</target>
<source>
<pluralform>1 sec</pluralform>
<pluralform>%x sec</pluralform>
</source>
<target>
<pluralform>%x 秒</pluralform>
</target>
<source>Error parsing file %x, row %y, column %z.</source>
<target>当分析文件 %x , 行 %y, 列 %z 时出错.</target>
<source>Scanning:</source>
<target>扫描中:</target>
<source>Encoding extended time information: %x</source>
<target>正在编码扩展时间信息:%x</target>
<source>
<pluralform>[1 Thread]</pluralform>
<pluralform>[%x Threads]</pluralform>
</source>
<target>
<pluralform>[%x 线程]</pluralform>
</target>
<source>/sec</source>
<target>/秒</target>
<source>File %x does not contain a valid configuration.</source>
<target>文件 %x 并未包含合法的配置.</target>
<source>Configuration file %x loaded partially only.</source>
<target>配置文件 %x 只是部分载入.</target>
<source>Cannot access Volume Shadow Copy Service.</source>
<target>无法访问卷影复制服务.</target>
<source>Please use FreeFileSync 64-bit version to create shadow copies on this system.</source>
<target>请使用 FreeFileSync 64位版本来在这个系统上创建卷影复制.</target>
<source>Cannot load file %x.</source>
<target>不能载入文件 %x.</target>
<source>Path %x does not contain a volume name.</source>
<target>路径 %x 并未包含一个卷名.</target>
<source>Volume name %x not part of file name %y!</source>
<target>卷名 %x 并非文件名 %y 的一部分!</target>
<source>Cannot read the following XML elements:</source>
<target>无法读取如下XML元素:</target>
<source>Cannot find file %x.</source>
<target>无法找到文件 %x .</target>
<source>&Open...</source>
<target>打开(&O)...</target>
<source>Save &as...</source>
<target>另存为(&A)...</target>
<source>&Quit</source>
<target>退出(&Q)</target>
<source>&Program</source>
<target>程序(&P)</target>
<source>&Content</source>
<target>内容(&C)</target>
<source>&About</source>
<target>关于(&A)</target>
<source>&Help</source>
<target>帮助(&H)</target>
<source>Usage:</source>
<target>用法:</target>
<source>1. Select folders to watch.</source>
<target>1. 选择要监视的文件夹.</target>
<source>2. Enter a command line.</source>
<target>2. 输入一个命令行.</target>
<source>3. Press 'Start'.</source>
<target>3. 点击'开始'.</target>
<source>To get started just import a .ffs_batch file.</source>
<target>要开始只需导入一个 .ffs_batch文件.</target>
<source>Folders to watch</source>
<target>要监视的文件夹</target>
<source>Add folder</source>
<target>添加文件夹</target>
<source>Remove folder</source>
<target>移除文件夹</target>
<source>Browse</source>
<target>浏览</target>
<source>Select a folder</source>
<target>选择一个文件夹</target>
<source>Idle time [seconds]</source>
<target>空闲时间[秒]</target>
<source>Idle time between last detected change and execution of command</source>
<target>最后检测到改变和命令执行之间的空闲时间</target>
<source>Command line</source>
<target>命令行</target>
<source>
The command is triggered if:
- files or subfolders change
- new folders arrive (e.g. USB stick insert)
</source>
<target>
命令将被触发如果:
- 文件或子文件夹改变
- 新文件夹到达(例如U盘插入)
</target>
<source>Start</source>
<target>开始</target>
<source>&Retry</source>
<target>重试(&R)</target>
<source>Cancel</source>
<target>取消</target>
<source>Build: %x</source>
<target>Build: %x</target>
<source>All files</source>
<target>所有文件</target>
<source>&Restore</source>
<target>恢复(&R)</target>
<source>&Exit</source>
<target>退出(&E)</target>
<source>Monitoring active...</source>
<target>监视激活...</target>
<source>Waiting for missing directories...</source>
<target>正在等待丢失的目录...</target>
<source>A folder input field is empty.</source>
<target>有一个文件夹输入框为空.</target>
<source>Synchronization aborted!</source>
<target>同步已被中止!</target>
<source>Synchronization completed with errors!</source>
<target>同步已完成但有错误.</target>
<source>Synchronization completed with warnings.</source>
<target>同步已完成但有警告.</target>
<source>Nothing to synchronize!</source>
<target>没有什么可同步!</target>
<source>Synchronization completed successfully.</source>
<target>同步成功完成.</target>
<source>Saving log file %x...</source>
<target>正在保存日志文件 %x...</target>
<source>Press "Switch" to resolve issues in FreeFileSync main dialog.</source>
<target>请按下"切换"来解决 FreeFileSync主对话框上的问题.</target>
<source>Switching to FreeFileSync main dialog...</source>
<target>正在切换到 FreeFileSync 主对话框...</target>
<source>A new version of FreeFileSync is available:</source>
<target>已经有新版本的FreeFileSync可用:</target>
<source>Download now?</source>
<target>立即下载?</target>
<source>FreeFileSync is up to date!</source>
<target>FreeFileSync 已是最新!</target>
<source>Information</source>
<target>信息</target>
<source>Unable to connect to sourceforge.net!</source>
<target>无法链接到 Sourceforge.net!</target>
<source>Current FreeFileSync version number was not found online! Do you want to check manually?</source>
<target>当前FreeFileSync版本号未能在线找到! 要手工检查更新吗?</target>
<source>Do you want FreeFileSync to automatically check for updates every week?</source>
<target>要让 FreeFileSync 保持每周检查一次更新吗?</target>
<source>(Requires an Internet connection!)</source>
<target>(需要因特网连接!)</target>
<source><Symlink></source>
<target><符号连接></target>
<source><Folder></source>
<target><文件夹></target>
<source>Full path</source>
<target>完整路径</target>
<source>Name</source>
<target>文件名</target>
<source>Relative path</source>
<target>相对路径</target>
<source>Base folder</source>
<target>主文件夹</target>
<source>Size</source>
<target>大小</target>
<source>Date</source>
<target>日期</target>
<source>Extension</source>
<target>扩展名</target>
<source>Size:</source>
<target>大小:</target>
<source>Date:</source>
<target>日期:</target>
<source>Action</source>
<target>动作</target>
<source>Category</source>
<target>分类</target>
<source>Drag && drop</source>
<target>拖放</target>
<source>Close progress dialog</source>
<target>关闭进度对话框</target>
<source>Standby</source>
<target>待机</target>
<source>Log off</source>
<target>注销</target>
<source>Shut down</source>
<target>关机</target>
<source>Hibernate</source>
<target>休眠</target>
<source>&New</source>
<target>新建(&N)</target>
<source>&Save</source>
<target>保存(&S)</target>
<source>Save as &batch job...</source>
<target>另存为批处理作业(&b)</target>
<source>1. &Compare</source>
<target>1. 比较(&C)</target>
<source>2. &Synchronize</source>
<target>2. 同步(&S)</target>
<source>&Language</source>
<target>切换语言(&L)</target>
<source>&Global settings...</source>
<target>全局设置(&G)...</target>
<source>&Export file list...</source>
<target>导出文件列表(&E)...</target>
<source>&Advanced</source>
<target>高级(&A)</target>
<source>&Check now</source>
<target></target>
<source>Check &automatically once a week</source>
<target></target>
<source>Check for new version</source>
<target></target>
<source>Compare</source>
<target>比较</target>
<source>Synchronize</source>
<target>同步</target>
<source>Add folder pair</source>
<target>添加成对文件夹</target>
<source>Remove folder pair</source>
<target>移除文件夹对</target>
<source>Swap sides</source>
<target>两侧互换</target>
<source>Hide excluded items</source>
<target>隐藏排除项目</target>
<source>Show filtered or temporarily excluded files</source>
<target>显示已被过滤或被临时排除的文件</target>
<source>Number of files and folders that will be created</source>
<target>将被创建的文件和文件夹数</target>
<source>Number of files that will be overwritten</source>
<target>将被覆盖的文件数</target>
<source>Number of files and folders that will be deleted</source>
<target>将被删除的文件和文件夹数</target>
<source>Total bytes to copy</source>
<target>要复制的总字节数</target>
<source>Items found:</source>
<target>已找到的项目:</target>
<source>Speed:</source>
<target>速度:</target>
<source>Time remaining:</source>
<target>剩余时间:</target>
<source>Time elapsed:</source>
<target>已用时间:</target>
<source>Synchronizing...</source>
<target>同步中...</target>
<source>On completion</source>
<target>在完成时</target>
<source>Close</source>
<target></target>
<source>&Pause</source>
<target>暂停(&P)</target>
<source>Batch job</source>
<target>批处理作业</target>
<source>Create a batch file to automate synchronization. Double-click this file or schedule in your system's task planner: FreeFileSync.exe <job name>.ffs_batch</source>
<target>创建一个用于自动同步的批处理文件. 双击这个文件或者在你的系统的任务计划中定时执行: FreeFileSync.exe <作业名>.ffs_batch</target>
<source>Help</source>
<target>帮助</target>
<source>Error handling</source>
<target>错误处理</target>
<source>Ignore</source>
<target>忽略</target>
<source>Hide all error and warning messages</source>
<target>隐藏所有错误与警告信息</target>
<source>Pop-up</source>
<target>弹出框</target>
<source>Show pop-up on errors or warnings</source>
<target>在错误或警告时显示弹出对话框</target>
<source>Exit</source>
<target>退出</target>
<source>Abort synchronization on first error</source>
<target>在第一个错误时中止同步</target>
<source>Show progress dialog</source>
<target>显示进度对话框</target>
<source>Save log</source>
<target>保存日志</target>
<source>Select folder to save log files</source>
<target>选择要保存日志文件的文件夹</target>
<source>Limit</source>
<target>限制</target>
<source>Limit maximum number of log files</source>
<target>限制日志文件的量大个数</target>
<source>Select variant</source>
<target>选择不同方式</target>
<source>
Files are found equal if
- last write time and date
- file size
are the same
</source>
<target>
文件被认为是相同的,如果
- 最后修改时间和日期
- 文件大小
是相同的
</target>
<source>File time and size</source>
<target>文件时间和大小</target>
<source>
Files are found equal if
- file content
is the same
</source>
<target>
文件被认为是相同的,如果
- 文件内容
是相同的
</target>
<source>File content</source>
<target>文件内容</target>
<source>Symbolic Link handling</source>
<target>符号连接处理方式</target>
<source>OK</source>
<target>确定</target>
<source><- Two way -></source>
<target><-双向-></target>
<source>Identify and propagate changes on both sides. Deletions, moves and conflicts are detected automatically using a database.</source>
<target></target>
<source>Mirror ->></source>
<target>镜像 ->></target>
<source>Mirror backup of left folder. Right folder is modified to exactly match left folder after synchronization.</source>
<target>镜像备份左边的文件夹.同步后右边的文件夹被修改为和左边文件夹精确匹配.</target>
<source>Update -></source>
<target>更新 -></target>
<source>Copy new or updated files to right folder.</source>
<target>复制新的或修改过的文件到右侧文件夹</target>
<source>Custom</source>
<target>自定义</target>
<source>Configure your own synchronization rules.</source>
<target>配置你自己的同步规则.</target>
<source>Deletion handling</source>
<target>删除处理</target>
<source>Permanent</source>
<target>永久</target>
<source>Delete or overwrite files permanently</source>
<target>永久性删除或覆盖文件</target>
<source>Recycle Bin</source>
<target>回收站</target>
<source>Use Recycle Bin for deleted and overwritten files</source>
<target>将删除和覆盖文件放到回收站</target>
<source>Versioning</source>
<target>保留历史版本</target>
<source>Move files to user-defined folder</source>
<target></target>
<source>Naming convention:</source>
<target>命名规则:</target>
<source>Item exists on left side only</source>
<target>项目仅存在于左侧</target>
<source>Item exists on right side only</source>
<target>项目仅存在于右侧</target>
<source>Left side is newer</source>
<target>左侧较新</target>
<source>Right side is newer</source>
<target>右侧较新</target>
<source>Items have different content</source>
<target>项目有不同的内容</target>
<source>Conflict/item cannot be categorized</source>
<target>冲突/项目未能被分类</target>
<source>Source code written in C++ using:</source>
<target>源代码用如下C++工具写成:</target>
<source>If you like FreeFileSync</source>
<target>如果你喜欢 FreeFileSync</target>
<source>Donate with PayPal</source>
<target>通过PayPal捐赠</target>
<source>Many thanks for localization:</source>
<target>非常感谢以下本地化翻译者:</target>
<source>Feedback and suggestions are welcome</source>
<target>欢迎反馈意见和提出建议</target>
<source>Homepage</source>
<target>主页</target>
<source>FreeFileSync at Sourceforge</source>
<target>Sourceforge上的FreeFileSync</target>
<source>Email</source>
<target>邮箱</target>
<source>Published under the GNU General Public License</source>
<target>在GNU通用公共许可下发布</target>
<source>Delete on both sides</source>
<target>从两侧删除</target>
<source>Delete on both sides even if the file is selected on one side only</source>
<target>从两侧删除(即使仅在一侧选择文件)</target>
<source>
Only files that match all filter settings will be synchronized.
Note: File names must be relative to base directories!
</source>
<target>
只有匹配所有过滤器的文件会被同步.
注:文件名必须是主目录的相对路径!
</target>
<source>Include</source>
<target>包括</target>
<source>Exclude</source>
<target>排除</target>
<source>Time span</source>
<target>时间跨度</target>
<source>File size</source>
<target>文件大小</target>
<source>Minimum</source>
<target>最小</target>
<source>Maximum</source>
<target>最大</target>
<source>&Clear</source>
<target></target>
<source>Fail-safe file copy</source>
<target>无风险的文件复制</target>
<source>Write to a temporary file (*.ffs_tmp) first then rename it. This guarantees a consistent state even in case of fatal error.</source>
<target>首先写入到一个临时文件(*.ffs_tmp)然后再重命名. 这样即使出现致命错误也能保持一致的状态.</target>
<source>Copy locked files</source>
<target>复制被锁定的文件</target>
<source>Copy shared or locked files using Volume Shadow Copy Service (Requires Administrator rights)</source>
<target>通过卷影复制服务复制共享或锁定的文件(需要管理员权限)</target>
<source>Copy file access permissions</source>
<target>复制文件存取权限</target>
<source>Transfer file and folder permissions (Requires Administrator rights)</source>
<target>传输文件和文件夹的权限(需要管理员权限)</target>
<source>Restore hidden dialogs</source>
<target>恢复被隐藏的对话框</target>
<source>External applications</source>
<target>外部应用程序</target>
<source>Description</source>
<target>描述</target>
<source>&Default</source>
<target>默认(&D)</target>
<source>Start synchronization</source>
<target>开始同步</target>
<source>Variant</source>
<target>变化</target>
<source>Statistics</source>
<target>统计</target>
<source>Don't show this dialog again</source>
<target>不要再显示这个对话框</target>
<source>Find what:</source>
<target>要查找什么:</target>
<source>Match case</source>
<target>匹配大小写</target>
<source>&Find next</source>
<target>查找下一个(&F)</target>
<source>Operation aborted!</source>
<target>操作已取消!</target>
<source>Main bar</source>
<target>主工具条</target>
<source>Folder pairs</source>
<target>文件夹对</target>
<source>Overview</source>
<target>摘要</target>
<source>Configuration</source>
<target>配置</target>
<source>Filter files</source>
<target>过滤器文件</target>
<source>Select view</source>
<target>选择视图</target>
<source>Open...</source>
<target></target>
<source>Save</source>
<target>保存</target>
<source>Compare both sides</source>
<target>比较两侧</target>
<source>Set direction:</source>
<target>设置方向:</target>
<source>Exclude temporarily</source>
<target>暂时排除</target>
<source>Include temporarily</source>
<target>暂时包括</target>
<source>Exclude via filter:</source>
<target>通过过滤器排除:</target>
<source><multiple selection></source>
<target><多选></target>
<source>Delete</source>
<target>删除</target>
<source>Include all</source>
<target>包括所有</target>
<source>Exclude all</source>
<target>排除所有</target>
<source>Show icons:</source>
<target>显示图标:</target>
<source>Small</source>
<target>小</target>
<source>Medium</source>
<target>中</target>
<source>Large</source>
<target>大</target>
<source>Select time span...</source>
<target>选择时间跨度...</target>
<source>Default view</source>
<target>默认视图</target>
<source>Show "%x"</source>
<target>显示 "%x"</target>
<source><Last session></source>
<target><最后会话></target>
<source>Folder Comparison and Synchronization</source>
<target>文件夹比较与同步</target>
<source>Configuration saved!</source>
<target>配置已保存!</target>
<source>FreeFileSync batch</source>
<target>FreeFileSync批处理文件</target>
<source>Do you want to save changes to %x?</source>
<target>是否要保存修改到 %x ?</target>
<source>Do&n't save</source>
<target>不保存(&N)</target>
<source>Never save changes</source>
<target>永不保存更改</target>
<source>Configuration loaded!</source>
<target>配置已加载!</target>
<source>Show files that exist on left side only</source>
<target>显示仅存在左侧的文件</target>
<source>Show files that exist on right side only</source>
<target>显示仅存在右侧的文件</target>
<source>Show files that are newer on left</source>
<target>显示左侧较新的文件</target>
<source>Show files that are newer on right</source>
<target>显示右侧较新的文件</target>
<source>Show files that are equal</source>
<target>显示相同的文件</target>
<source>Show files that are different</source>
<target>显示不同的文件</target>
<source>Show conflicts</source>
<target>显示冲突</target>
<source>Show files that will be created on the left side</source>
<target>显示将在左侧被建立的文件</target>
<source>Show files that will be created on the right side</source>
<target>显示将在右侧被建立的文件</target>
<source>Show files that will be deleted on the left side</source>
<target>显示将在左侧被删除的文件</target>
<source>Show files that will be deleted on the right side</source>
<target>显示将在右侧被删除的文件</target>
<source>Show files that will be overwritten on left side</source>
<target>显示将在左侧被覆盖的文件</target>
<source>Show files that will be overwritten on right side</source>
<target>显示将在右侧被覆盖的文件</target>
<source>Show files that won't be copied</source>
<target>显示将不被复制的文件</target>
<source>Set as default</source>
<target></target>
<source>All folders are in sync!</source>
<target>所有文件夹都是同步的!</target>
<source>Comma separated list</source>
<target>逗号分隔的列表</target>
<source>Legend</source>
<target>图例</target>
<source>File list exported!</source>
<target>文件清单已经导出!</target>
<source>Searching for program updates...</source>
<target></target>
<source>
<pluralform>1 directory</pluralform>
<pluralform>%x directories</pluralform>
</source>
<target>
<pluralform>%x 目录</pluralform>
</target>
<source>
<pluralform>1 file</pluralform>
<pluralform>%x files</pluralform>
</source>
<target>
<pluralform>%x 文件</pluralform>
</target>
<source>
<pluralform>%x of 1 row in view</pluralform>
<pluralform>%x of %y rows in view</pluralform>
</source>
<target>
<pluralform>%y 中的 %x 行可见</pluralform>
</target>
<source>Ignore further errors</source>
<target>忽略之后出现的错误</target>
<source>&Ignore</source>
<target>忽略(&I)</target>
<source>Don't show this warning again</source>
<target></target>
<source>&Switch</source>
<target>切换(&S)</target>
<source>Question</source>
<target>问题</target>
<source>&Yes</source>
<target>是(&Y)</target>
<source>&No</source>
<target>否(&N)</target>
<source>Scanning...</source>
<target>正扫描...</target>
<source>Comparing content...</source>
<target>正在比较文件内容...</target>
<source>Paused</source>
<target>已暂停</target>
<source>Initializing...</source>
<target>正在初始化...</target>
<source>Aborted</source>
<target>已取消</target>
<source>Completed</source>
<target>完成</target>
<source>Continue</source>
<target>继续</target>
<source>Pause</source>
<target>暂停</target>
<source>Logging</source>
<target>记录</target>
<source>Cannot find %x</source>
<target>找不到 %x</target>
<source>Inactive</source>
<target>不使用</target>
<source>Today</source>
<target>今天</target>
<source>This week</source>
<target>本周</target>
<source>This month</source>
<target>本月</target>
<source>This year</source>
<target>今年</target>
<source>Last x days</source>
<target>最后 x 天</target>
<source>Byte</source>
<target>字节</target>
<source>KB</source>
<target>KB</target>
<source>MB</source>
<target>MB</target>
<source>Filter</source>
<target>过滤器</target>
<source>Direct</source>
<target>直接</target>
<source>Follow</source>
<target>跟随</target>
<source>Copy NTFS permissions</source>
<target>复制NTFS权限</target>
<source>Integrate external applications into context menu. The following macros are available:</source>
<target>集成外部应用程序到右键菜单. 如下宏可用:</target>
<source>- full file or folder name</source>
<target>- 完整的文件或文件夹名</target>
<source>- folder part only</source>
<target>- 只对文件夹部分</target>
<source>- Other side's counterpart to %item_path%</source>
<target>- 另一边的对应项到 %item_path%</target>
<source>- Other side's counterpart to %item_folder%</source>
<target>- 另一边的对应项到 %item_folder%</target>
<source>Make hidden warnings and dialogs visible again?</source>
<target>重新让已经隐藏的警告和对话框变为可见?</target>
<source>
<pluralform>Do you really want to move the following item to the Recycle Bin?</pluralform>
<pluralform>Do you really want to move the following %x items to the Recycle Bin?</pluralform>
</source>
<target></target>
<source>
<pluralform>Do you really want to delete the following item?</pluralform>
<pluralform>Do you really want to delete the following %x items?</pluralform>
</source>
<target></target>
<source>Leave as unresolved conflict</source>
<target>遗留为未解决的冲突</target>
<source>Time stamp</source>
<target></target>
<source>Append a timestamp to each file name</source>
<target>附加时间戳到每一个文件名</target>
<source>Replace</source>
<target>替换</target>
<source>Move files and replace if existing</source>
<target>移动文件, 若文件已存在则替换</target>
<source>Folder</source>
<target>文件夹</target>
<source>File</source>
<target>文件</target>
<source>YYYY-MM-DD hhmmss</source>
<target>YYYY-MM-DD hhmmss</target>
<source>Files</source>
<target>文件</target>
<source>Percentage</source>
<target>百分比</target>
<source>Cannot monitor directory %x.</source>
<target>无法监视目录 %x.</target>
<source>Conversion error:</source>
<target>转换错误:</target>
<source>Cannot delete file %x.</source>
<target>无法删除文件 %x.</target>
<source>The file is locked by another process:</source>
<target>此文件被另一进程锁定:</target>
<source>Cannot move file %x to %y.</source>
<target>无法移动文件 %x 到 %y.</target>
<source>Cannot delete directory %x.</source>
<target>无法删除目录 %x.</target>
<source>Cannot write file attributes of %x.</source>
<target>无法写入 %x 的文件属性.</target>
<source>Cannot write modification time of %x.</source>
<target>无法写入 %x 的最后修改时间.</target>
<source>Cannot find system function %x.</source>
<target>无法找到系统功能 %x.</target>
<source>Cannot read security context of %x.</source>
<target>无法读取 %x 的安全上下文.</target>
<source>Cannot write security context of %x.</source>
<target>无法写入 %x 的安全上下文.</target>
<source>Cannot read permissions of %x.</source>
<target>无法读取 %x 的权限.</target>
<source>Cannot write permissions of %x.</source>
<target>无法写入 %x 的权限.</target>
<source>Cannot create directory %x.</source>
<target>无法创建目录 %x.</target>
<source>Cannot copy symbolic link %x to %y.</source>
<target>无法复制符号连接 %x 到 %y.</target>
<source>Cannot copy file %x to %y.</source>
<target>无法复制文件 %x 到 %y.</target>
<source>Type of item %x is not supported:</source>
<target>%x 的类型不被支持:</target>
<source>Cannot open directory %x.</source>
<target>无法打开目录 %x.</target>
<source>Cannot enumerate directory %x.</source>
<target>无法列举目录 %x.</target>
<source>Detected endless directory recursion.</source>
<target>检测到无限的目录递归.</target>
<source>%x TB</source>
<target>%x TB</target>
<source>%x PB</source>
<target>%x PB</target>
<source>%x%</source>
<target>%x%</target>
<source>
<pluralform>1 min</pluralform>
<pluralform>%x min</pluralform>
</source>
<target>
<pluralform>%x 分</pluralform>
</target>
<source>
<pluralform>1 hour</pluralform>
<pluralform>%x hours</pluralform>
</source>
<target>
<pluralform>%x 小时</pluralform>
</target>
<source>
<pluralform>1 day</pluralform>
<pluralform>%x days</pluralform>
</source>
<target>
<pluralform>%x 天</pluralform>
</target>
<source>Cannot set privilege %x.</source>
<target>无法设置 %x 的特权.</target>
<source>Failed to suspend system sleep mode.</source>
<target></target>
<source>Cannot change process I/O priorities.</source>
<target></target>
<source>Unable to move %x to the Recycle Bin!</source>
<target>无法移动 %x 到回收站!</target>
<source>Both sides have changed since last synchronization!</source>
<target>在最后的同步之后两边均已改变!</target>
<source>Cannot determine sync-direction:</source>
<target>不能检测同步方向:</target>
<source>No change since last synchronization!</source>
<target>自从最后一次同步以来没有变动!</target>
<source>The corresponding database entries are not in sync considering current settings.</source>
<target>根据当前设置相关的数据库入口并未同步.</target>
<source>Setting default synchronization directions: Old files will be overwritten with newer files.</source>
<target>设置默认的同步方向:旧文件会被新文件覆盖.</target>
<source>Checking recycle bin availability for folder %x...</source>
<target></target>
<source>Moving file %x to recycle bin</source>
<target>正在移动文件 %x 到回收站</target>
<source>Moving folder %x to recycle bin</source>
<target>正在移动文件夹 %x 到回收站</target>
<source>Moving symbolic link %x to recycle bin</source>
<target>正在移动符号连接 %x 到回收站</target>
<source>Deleting file %x</source>
<target>正删除文件 %x</target>
<source>Deleting folder %x</source>
<target>正删除文件夹 %x</target>
<source>Deleting symbolic link %x</source>
<target>正在删除符号连接 %x</target>
<source>Recycle Bin is not available for the following paths! Files will be deleted permanently instead:</source>
<target>如下路径的回收站不可用! 文件会被永久删除:</target>
<source>The corresponding folder will be considered as empty.</source>
<target></target>
<source>Cannot find the following folders:</source>
<target></target>
<source>You can ignore this error to consider each folder as empty.</source>
<target></target>
<source>Directories are dependent! Be careful when setting up synchronization rules:</source>
<target>目录有依赖性!在设立同步规则时请小心:</target>
<source>Start comparison</source>
<target>开始比较</target>
<source>Calculating sync directions...</source>
<target></target>
<source>Conflict detected:</source>
<target>检测到的冲突:</target>
<source>File %x has an invalid date!</source>
<target>文件 %x 的日期非法!</target>
<source>Files %x have the same date but a different size!</source>
<target>文件 %x 日期相同但大小不同!</target>
<source>Items differ in attributes only</source>
<target>项目仅是文件属性不同</target>
<source>Symbolic links %x have the same date but a different target.</source>
<target>符号连接 %x 有相同的日期但目标不同.</target>
<source>Comparing content of files %x</source>
<target>正在比较文件 %x 的内容</target>
<source>Comparing files by content failed.</source>
<target>按文件内容比较失败.</target>
<source>Generating file list...</source>
<target>生成文件列表...</target>
<source>Both sides are equal</source>
<target>两侧相等</target>
<source>Copy new item to left</source>
<target>复制新项目到左侧</target>
<source>Copy new item to right</source>
<target>复制新项目到右侧</target>
<source>Delete left item</source>
<target>删除左侧项目</target>
<source>Delete right item</source>
<target>删除右侧项目</target>
<source>Move file on left</source>
<target>移动左侧的文件</target>
<source>Move file on right</source>
<target>移动右侧的文件</target>
<source>Overwrite left item</source>
<target>覆盖左侧的项目</target>
<source>Overwrite right item</source>
<target>覆盖右侧的项目</target>
<source>Do nothing</source>
<target>保持不动</target>
<source>Update attributes on left</source>
<target>更新左侧的文件属性</target>
<source>Update attributes on right</source>
<target>更新右侧的文件属性</target>
<source>Multiple...</source>
<target>并联...</target>
<source>Moving file %x to %y</source>
<target>正在移动文件 %x 到 %y</target>
<source>Moving folder %x to %y</source>
<target>正在移动文件夹 %x 到 %y</target>
<source>Moving symbolic link %x to %y</source>
<target>正在移动符号连接 %x 到 %y</target>
<source>Removing old versions...</source>
<target>移除旧版本</target>
<source>Creating symbolic link %x</source>
<target>正在创建符号连接 %x</target>
<source>Creating folder %x</source>
<target>正创建文件夹 %x</target>
<source>Overwriting file %x</source>
<target>正在覆盖文件 %x</target>
<source>Overwriting symbolic link %x</source>
<target>正在覆盖符号连接 %x</target>
<source>Verifying file %x</source>
<target>校验文件 %x</target>
<source>Updating attributes of %x</source>
<target>更新 %x 的属性</target>
<source>Cannot find %x.</source>
<target></target>
<source>Target folder %x already existing.</source>
<target>目标文件夹 %x 已经存在.</target>
<source>Target folder input field must not be empty.</source>
<target>目标文件夹输入框必须不为空.</target>
<source>Folder input field for versioning must not be empty.</source>
<target>用于存放历史版本的文件夹输入框必须不为空.</target>
<source>Source folder %x not found.</source>
<target>无法找到源文件夹 %x.</target>
<source>The following items have unresolved conflicts and will not be synchronized:</source>
<target>如下项目有无法解决的冲突并将不会被同步:</target>
<source>Significant difference detected:</source>
<target>已侦测到显著不同:</target>
<source>More than 50% of the total number of files will be copied or deleted!</source>
<target>超过总数 50% 以上的文件要被复制或删除!</target>
<source>Not enough free disk space available in:</source>
<target>没有足够的可用磁盘空间用于:</target>
<source>Required:</source>
<target>必需:</target>
<source>Available:</source>
<target>可用:</target>
<source>A folder will be modified which is part of multiple folder pairs. Please review synchronization settings.</source>
<target>一个将被修改的文件夹是多个文件夹对的一部分. 请重新检视同步设置.</target>
<source>Left</source>
<target>左侧</target>
<source>Right</source>
<target>右侧</target>
<source>Synchronizing folder pair:</source>
<target>正在同步成对的文件夹:</target>
<source>Generating database...</source>
<target>正在生成数据库...</target>
<source>Creating Volume Shadow Copy for %x...</source>
<target></target>
<source>Data verification error: Source and target file have different content!</source>
<target>数据校验错误:源文件和目标文件内容不同!</target>
|