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
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
|
<header>
<language>Pусский</language>
<translator>Fayzullin T.N. aka Svobodniy</translator>
<locale>ru_RU</locale>
<flag_image>flag_russia.png</flag_image>
<plural_form_count>3</plural_form_count>
<plural_definition>n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<11 || n%100>14) ? 1 : 2</plural_definition>
</header>
<source>Unable to move %x to the recycle bin.</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>Log</source>
<target></target>
<source>&Continue</source>
<target></target>
<source>&Don't show this warning again</source>
<target></target>
<source>&Ignore subsequent errors</source>
<target></target>
<source>Comma-separated values</source>
<target></target>
<source>Never save &changes</source>
<target></target>
<source>Include via filter:</source>
<target></target>
<source>&Execute</source>
<target></target>
<source>Confirm</source>
<target></target>
<source>
<pluralform>Do you really want to execute the command %y for 1 item?</pluralform>
<pluralform>Do you really want to execute the command %y for %x items?</pluralform>
</source>
<target>
</target>
<source>Transfer file and folder permissions (requires administrator rights)</source>
<target></target>
<source>Copy shared or locked files using the Volume Shadow Copy Service (requires administrator rights)</source>
<target></target>
<source>Copy to a temporary file (*.ffs_tmp) first then rename it. This guarantees a consistent state even in case of a fatal error.</source>
<target></target>
<source>
Files will only be synchronized if they pass all filter rules.
Note: File paths must be relative to base directories.
</source>
<target></target>
<source>Create a batch file for unattended synchronization. To start, double-click this file or schedule in a task planner: %x</source>
<target></target>
<source>Move files to a user-defined folder</source>
<target></target>
<source>Back up deleted and overwritten files in the recycle bin</source>
<target></target>
<source>Recycle bin</source>
<target></target>
<source>Requires database files. Not supported by all file systems.</source>
<target></target>
<source>Detect moved files</source>
<target></target>
<source>&Don't show this dialog again</source>
<target></target>
<source>Minimize to notification area</source>
<target></target>
<source>Retrying operation after error:</source>
<target></target>
<source>job name</source>
<target></target>
<source>Creating a Volume Shadow Copy for %x...</source>
<target></target>
<source>The following folders are significantly different. Make sure you are matching the correct folders for synchronization.</source>
<target></target>
<source>&Show error</source>
<target></target>
<source>Waiting until all directories are available...</source>
<target></target>
<source>Directory monitoring active</source>
<target></target>
<source>Volume name %x is not part of file path %y.</source>
<target></target>
<source>Cannot access the Volume Shadow Copy Service.</source>
<target></target>
<source>%x items</source>
<target></target>
<source>
<pluralform>1 thread</pluralform>
<pluralform>%x threads</pluralform>
</source>
<target>
</target>
<source>
<pluralform>1 byte</pluralform>
<pluralform>%x bytes</pluralform>
</source>
<target>
</target>
<source>Any number of alternative directories for at most one config file.</source>
<target></target>
<source>Any number of FreeFileSync .ffs_gui and/or .ffs_batch configuration files.</source>
<target></target>
<source>directory</source>
<target></target>
<source>config files</source>
<target></target>
<source>Syntax:</source>
<target></target>
<source>Directories cannot be set for more than one configuration file.</source>
<target></target>
<source>The config file must not contain settings at directory pair level when directories are set via command line.</source>
<target></target>
<source>Unequal number of left and right directories specified.</source>
<target></target>
<source>Cannot open file %x.</source>
<target></target>
<source>Syntax error</source>
<target></target>
<source>A directory path is expected after %x.</source>
<target></target>
<source>The recycle bin is not available for the following folders. Files will be deleted permanently instead:</source>
<target></target>
<source>Moving symbolic link %x to the recycle bin</source>
<target></target>
<source>Moving folder %x to the recycle bin</source>
<target></target>
<source>Moving file %x to the recycle bin</source>
<target></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 database entry is 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>Проверка доступности "Корзины" для папки %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>An exception occurred</source>
<target>Исключение произошло</target>
<source>Error</source>
<target>Ошибка</target>
<source>File %x does not contain a valid configuration.</source>
<target>Файл %x не содержит действительной конфигурации.</target>
<source>Warning</source>
<target>Внимание</target>
<source>Command line</source>
<target>Командная строка</target>
<source>A folder input field is empty.</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. The folders then will be created automatically during synchronization.</source>
<target>Вы можете проигнорировать эту ошибку, приняв каждую папку за пустую. При этом папки будут созданы автоматически во время синхронизации.</target>
<source>The following folders have dependent paths. Be careful when setting up synchronization rules:</source>
<target>Следующие папки имеют зависимые пути. Будьте осторожны при настройке правил синхронизации:</target>
<source>File %x has an invalid date.</source>
<target>Файл %x имеет недействительную дату.</target>
<source>Date:</source>
<target>Дата:</target>
<source>Files %x have the same date but a different size.</source>
<target>Файлы %x имеют одинаковую дату, но различаются по размеру.</target>
<source>Size:</source>
<target>Размер:</target>
<source>Items differ in attributes only</source>
<target>Элементы различаются только атрибутами</target>
<source>Resolving symbolic link %x</source>
<target>Разрешение символьной ссылки %x</target>
<source>Comparing content of files %x</source>
<target>Сравнение содержания файлов %x</target>
<source>Generating file list...</source>
<target>Создание списка файлов...</target>
<source>Starting comparison</source>
<target>Начать сравнение</target>
<source>Calculating sync directions...</source>
<target>Расчет направлений синхронизации...</target>
<source>Out of memory.</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>Both sides are equal</source>
<target>Обе стороны равны</target>
<source>Conflict/item cannot be categorized</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>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>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>Searching for folder %x...</source>
<target>Поиск папки %x...</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>
<pluralform>1 sec</pluralform>
<pluralform>%x sec</pluralform>
</source>
<target>
<pluralform>%x секунда</pluralform>
<pluralform>%x секунды</pluralform>
<pluralform>%x секунд</pluralform>
</target>
<source>Creating file %x</source>
<target>Создание файла %x</target>
<source>Items processed:</source>
<target>Элементов обработано:</target>
<source>Items remaining:</source>
<target>Элементов осталось:</target>
<source>Total time:</source>
<target>Общее время:</target>
<source>%x MB</source>
<target>%x МБ</target>
<source>%x KB</source>
<target>%x КБ</target>
<source>%x GB</source>
<target>%x ГБ</target>
<source>Error parsing file %x, row %y, column %z.</source>
<target>Ошибка при разборе файла %x, строка %y, колонка %z.</target>
<source>Cannot set directory lock for %x.</source>
<target>Невозможно установить блокировку папки для %x.</target>
<source>Scanning:</source>
<target>Сканирую:</target>
<source>Encoding extended time information: %x</source>
<target>Кодирование расширенной информации о времени: %x</target>
<source>/sec</source>
<target>/с</target>
<source>Configuration file %x loaded partially only.</source>
<target>Файл конфигурации %x загрузился частично.</target>
<source>Show in Explorer</source>
<target>Показать в Проводнике</target>
<source>Open with default application</source>
<target>Открыть с помощью приложения по умолчанию</target>
<source>Browse directory</source>
<target>Обзор папок</target>
<source>Please use FreeFileSync 64-bit version to create shadow copies on this system.</source>
<target>Пожалуйста, используйте 64-разрядную версию FreeFileSync для создания теневых копий на этой системе.</target>
<source>Cannot load file %x.</source>
<target>Невозможно загрузить файл %x.</target>
<source>Cannot determine volume name for %x.</source>
<target>Невозможно определить имя тома для %x.</target>
<source>Abort requested: Waiting for current operation to finish...</source>
<target>Запрос отмены: Ожидайте, пока текущая операция завершится...</target>
<source>Failure to create timestamp for versioning:</source>
<target>Неспособность создать отметку времени для архивации файлов:</target>
<source>Cannot read the following XML elements:</source>
<target>Невозможно прочитать следующие XML элементы:</target>
<source>&Open...</source>
<target>&Открыть...</target>
<source>Save &as...</source>
<target>Сохранить &как...</target>
<source>&Quit</source>
<target>&Выход</target>
<source>&Program</source>
<target>&Программа</target>
<source>&Content</source>
<target>&Справка</target>
<source>&About</source>
<target>&О программе</target>
<source>&Help</source>
<target>П&омощь</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>
The command is triggered if:
- files or subfolders change
- new folders arrive (e.g. USB stick insert)
</source>
<target>
Команда выполняется, если:
- файлы или подпапки изменены
- появились новые папки (например, подключение переносного носителя)
</target>
<source>Start</source>
<target>Старт</target>
<source>&Retry</source>
<target>&Повторить</target>
<source>Cancel</source>
<target>Отмена</target>
<source>RealtimeSync - Automated Synchronization</source>
<target>RealtimeSync - Автоматическая синхронизация</target>
<source>Build: %x</source>
<target>сборка %x</target>
<source>About</source>
<target>О программе</target>
<source>All files</source>
<target>Все файлы</target>
<source>&Restore</source>
<target>&Восстановить</target>
<source>&Exit</source>
<target>&Выход</target>
<source>Invalid command line:</source>
<target>Неверная командная строка:</target>
<source>File content</source>
<target>Содержимое файла</target>
<source>File time and size</source>
<target>Дата и размер файла</target>
<source>Two way</source>
<target>В обе стороны</target>
<source>Mirror</source>
<target>Зеркало</target>
<source>Update</source>
<target>Обновить</target>
<source>Custom</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>Невозможно найти %x.</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>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>Synchronizing folder pair:</source>
<target>Синхронизация пары папок:</target>
<source>Generating database...</source>
<target>Создание базы данных...</target>
<source>Data verification error: %x and %y have different content.</source>
<target>Ошибка проверки данных: %x и %y имеют разное содержание!</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>New version found</source>
<target>Найдена новая версия</target>
<source>&Download</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>Cannot find current FreeFileSync version number online. Do you want to check manually?</source>
<target>Невозможно найти номер текущей версии FreeFileSync онлайн! Вы хотите проверить вручную?</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>Category</source>
<target>Категория</target>
<source>Action</source>
<target>Действие</target>
<source>Drag && drop</source>
<target>Drag && drop</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>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>&New</source>
<target>&Новая</target>
<source>&Save</source>
<target>&Сохранить</target>
<source>Save as &batch job...</source>
<target>Сохранить как &пакетное задание</target>
<source>1. &Compare</source>
<target>1. С&равнить</target>
<source>2. &Synchronize</source>
<target>2. С&инхронизировать</target>
<source>&Language</source>
<target>&Язык</target>
<source>&Export file list...</source>
<target>&Экспортировать список файлов...</target>
<source>&Global settings</source>
<target>&Глобальные настройки</target>
<source>&Tools</source>
<target>&Опции</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>Comparison settings</source>
<target>Настройки сравнения</target>
<source>Synchronization settings</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>Save as batch job</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>&Пауза</target>
<source>Variant</source>
<target>Вариант</target>
<source>Statistics</source>
<target>Статистика</target>
<source>Select a variant</source>
<target>Выберите вариант</target>
<source>
Files are found equal if
- last write time and date
- file size
are the same
</source>
<target>
Файлы считаются равными, если одинаковые
- дата и время последнего изменения
- размер файла
</target>
<source>
Files are found equal if
- file content
is the same
</source>
<target>Файлы считаются равными, если содержание файлов одинаковое</target>
<source>Symbolic Link handling</source>
<target>Обращение к символьной ссылке</target>
<source>Help</source>
<target>Помощь</target>
<source>OK</source>
<target>OK</target>
<source>Identify and propagate changes on both sides. Deletions, moves and conflicts are detected automatically using a database.</source>
<target>Выявление и распространение изменений на обе стороны. Удаленные, перемещенные и конфликтующие файлы определяются автоматически с использованием базы данных.</target>
<source>Mirror backup of left folder. Right folder is modified to exactly match left folder after synchronization.</source>
<target>Зеркальная (резервная) копия левой части. В результате синхронизации правая сторона будет изменена до полного соответствия с левой.</target>
<source>Copy new or updated files to right folder.</source>
<target>Копировать новые или обновлять файлы на правой стороне.</target>
<source>Configure your own synchronization rules.</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>Deletion handling</source>
<target>Настройки удаления</target>
<source>Permanent</source>
<target>Удалить безвозвратно</target>
<source>Delete or overwrite files permanently</source>
<target>Удалить или перезаписать файлы, не помещая в "Корзину"</target>
<source>Versioning</source>
<target>Архивировать</target>
<source>Naming convention:</source>
<target>Условие переименования:</target>
<source>Batch job</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>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>Email</source>
<target>Почта</target>
<source>Published under the GNU General Public License</source>
<target>Издается под лицензией GNU General Public License</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>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>Global settings</source>
<target>Глобальные настройки</target>
<source>Fail-safe file copy</source>
<target>Отказоустойчивое копирование файла</target>
<source>Copy locked files</source>
<target>Копирование заблокированных файлов</target>
<source>Copy file access permissions</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>&По умолчанию</target>
<source>Find what:</source>
<target>Найти:</target>
<source>Match case</source>
<target>Учитывать регистр</target>
<source>&Find next</source>
<target>&Найти далее</target>
<source>Start synchronization</source>
<target>Начать синхронизацию</target>
<source>Delete</source>
<target>Удалить</target>
<source>Configure filter</source>
<target>Настройки фильтра</target>
<source>Find</source>
<target>Найти</target>
<source>Select time span</source>
<target>Выберите промежуток времени</target>
<source>Folder pairs</source>
<target>Пары папок для синхронизации</target>
<source>Overview</source>
<target>Главная</target>
<source>Configuration</source>
<target>Настройки</target>
<source>Main bar</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>
<pluralform>1 directory</pluralform>
<pluralform>%x directories</pluralform>
</source>
<target>
<pluralform>%x папка</pluralform>
<pluralform>%x папки</pluralform>
<pluralform>%x папок</pluralform>
</target>
<source>
<pluralform>1 file</pluralform>
<pluralform>%x files</pluralform>
</source>
<target>
<pluralform>%x файл</pluralform>
<pluralform>%x файла</pluralform>
<pluralform>%x файлов</pluralform>
</target>
<source>
<pluralform>%y of 1 row in view</pluralform>
<pluralform>%y of %x rows in view</pluralform>
</source>
<target>
<pluralform>%y из %x строки показано</pluralform>
<pluralform>%y из %x строк показано</pluralform>
<pluralform>%y из %x строк показано</pluralform>
</target>
<source>Set direction:</source>
<target>Выберите направление:</target>
<source>Exclude temporarily</source>
<target>Временно исключить</target>
<source>Include temporarily</source>
<target>Временно включить</target>
<source>multiple selection</source>
<target>групповое выделение</target>
<source>Exclude via filter:</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>&Не сохранять</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>Operation aborted</source>
<target>Операция отменена</target>
<source>All folders are in sync</source>
<target>Все папки синхронизированы</target>
<source>File list exported</source>
<target>Список файлов экспортирован</target>
<source>Searching for program updates...</source>
<target>Проверка обновлений программы...</target>
<source>&Ignore</source>
<target>&Игнорировать</target>
<source>Fatal Error</source>
<target>Критическая ошибка</target>
<source>&Switch</source>
<target>&Переключить</target>
<source>Question</source>
<target>Вопрос</target>
<source>&Yes</source>
<target>&Да</target>
<source>&No</source>
<target>&Нет</target>
<source>Scanning...</source>
<target>Сканирование...</target>
<source>Comparing content...</source>
<target>Сравнение содержания...</target>
<source>Info</source>
<target>Информация</target>
<source>Paused</source>
<target>Пауза</target>
<source>Initializing...</source>
<target>Инициализация...</target>
<source>Aborted</source>
<target>Отменено</target>
<source>Completed</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>КБ</target>
<source>MB</source>
<target>МБ</target>
<source>Filter</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>
<pluralform>Вы точно хотите удалить следующий %x элемент?</pluralform>
<pluralform>Вы точно хотите удалить следующие %x элемента?</pluralform>
<pluralform>Вы точно хотите удалить следующие %x элементов?</pluralform>
</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>Leave as unresolved conflict</source>
<target>Оставить как нерешенный конфликт</target>
<source>Replace</source>
<target>Без переименования</target>
<source>Move files and replace if existing</source>
<target>Переместить файлы и заменить, если существуют</target>
<source>Time stamp</source>
<target>Добавить отметку времени</target>
<source>Append a timestamp to each file name</source>
<target>Добавить отметку времени для каждого имени файла</target>
<source>File</source>
<target>Файл</target>
<source>YYYY-MM-DD hhmmss</source>
<target>ГГГГ-ММ-ДД ччммсс</target>
<source>Files</source>
<target>Файлы</target>
<source>Items</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 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 create symbolic link %x.</source>
<target>Невозможно создать символьную ссылку %x.</target>
<source>Cannot find system function %x.</source>
<target>Невозможно найти системную функцию %x.</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 resolve symbolic link %x.</source>
<target>Невозможно разрешить символьную ссылку %x.</target>
<source>Cannot open directory %x.</source>
<target>Невозможно открыть папку %x.</target>
<source>Cannot enumerate directory %x.</source>
<target>Невозможно прочесть папку %x.</target>
<source>%x TB</source>
<target>%x ТБ</target>
<source>%x PB</source>
<target>%x ПБ</target>
<source>
<pluralform>1 min</pluralform>
<pluralform>%x min</pluralform>
</source>
<target>
<pluralform>%x минута</pluralform>
<pluralform>%x минуты</pluralform>
<pluralform>%x минут</pluralform>
</target>
<source>
<pluralform>1 hour</pluralform>
<pluralform>%x hours</pluralform>
</source>
<target>
<pluralform>%x час</pluralform>
<pluralform>%x часа</pluralform>
<pluralform>%x часов</pluralform>
</target>
<source>
<pluralform>1 day</pluralform>
<pluralform>%x days</pluralform>
</source>
<target>
<pluralform>%x день</pluralform>
<pluralform>%x дня</pluralform>
<pluralform>%x дней</pluralform>
</target>
<source>Failed to register to receive system messages.</source>
<target>Не удалось зарегистрироваться для получения системных сообщений.</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>Cannot determine final path for %x.</source>
<target>Невозможно определить конечный путь для %x.</target>
<source>Error Code %x:</source>
<target>Код ошибки %x:</target>
|