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
|
<header>
<language name>Čeština</language name>
<translator>ViCi</translator>
<locale>cs_CZ</locale>
<flag file>czechRep.png</flag file>
<plural forms>3</plural forms>
<plural definition>n==1 ? 0 : n>=2 && n<=4 ? 1 : 2</plural definition>
</header>
<source>Searching for folder %x...</source>
<target>Otevírání složky %x</target>
<source>Items processed:</source>
<target>Zpracováno položek:</target>
<source>Items remaining:</source>
<target>Zbývá položek:</target>
<source>Total time:</source>
<target>Celkový čas:</target>
<source>Cannot set directory lock for %x.</source>
<target>Nelze nastavit zámek adresáře %x.</target>
<source>Show in Explorer</source>
<target>Zobrazit v Průzkumníkovi</target>
<source>Open with default application</source>
<target>Otevřít výchozí aplikací</target>
<source>Browse directory</source>
<target>Procházet adresář</target>
<source>Abort requested: Waiting for current operation to finish...</source>
<target>Požadavek na přerušení: Čekání na ukončení aktuální operace...</target>
<source>Failure to create timestamp for versioning:</source>
<target>Chyba při vytvoření časové značky verzování:</target>
<source>RealtimeSync - Automated Synchronization</source>
<target>RealtimeSync - Automatická synchronizace</target>
<source>Error</source>
<target>Chyba</target>
<source>Selected variant:</source>
<target>Vybraná varianta:</target>
<source>Select alternate comparison settings</source>
<target>Změnit nastavení porovnání</target>
<source>Select alternate synchronization settings</source>
<target>Změnit nastavení synchronizace</target>
<source>Filter is active</source>
<target>Filtr je zapnutý</target>
<source>No filter selected</source>
<target>Není vybrán žádný filtr</target>
<source>Remove alternate settings</source>
<target>Zrušit jiné nastavení</target>
<source>Clear filter settings</source>
<target>Zrušit nastavení filtru</target>
<source>Copy</source>
<target>Kopírovat</target>
<source>Paste</source>
<target>Vložit</target>
<source>Save as batch job</source>
<target>Uložit jako dávku</target>
<source>Comparison settings</source>
<target>Nastavení porovnání</target>
<source>Synchronization settings</source>
<target>Nastavení synchronizace</target>
<source>About</source>
<target>O Programu</target>
<source>Confirm</source>
<target>Potvrdit</target>
<source>Configure filter</source>
<target>Nastavení filtru</target>
<source>Global settings</source>
<target>Nastavení programu</target>
<source>Find</source>
<target>Najít</target>
<source>Select time span</source>
<target>Časové rozmezí</target>
<source>Invalid command line:</source>
<target>Neplatný příkaz:</target>
<source>Info</source>
<target>Info</target>
<source>Warning</source>
<target>Varování</target>
<source>Fatal Error</source>
<target>Závažná chyba</target>
<source>Error Code %x:</source>
<target>Chybový kód %x</target>
<source>Cannot resolve symbolic link %x.</source>
<target>Nelze najít odkaz zástupce %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 B</pluralform>
<pluralform>%x B</pluralform>
<pluralform>%x B</pluralform>
</target>
<source>Database file %x is incompatible.</source>
<target>Chybný formát databáze %x.</target>
<source>Initial synchronization:</source>
<target>Prvotní synchronizace:</target>
<source>Database file %x does not yet exist.</source>
<target>Databázový soubor %x neexistuje.</target>
<source>Database file is corrupt:</source>
<target>Databáze je poškozená:</target>
<source>Out of memory!</source>
<target>Nedostatek pracovní paměti!</target>
<source>Cannot write file %x.</source>
<target>Nelze zapsat soubor %x.</target>
<source>Cannot read file %x.</source>
<target>Nelze číst soubor %x.</target>
<source>Database files do not share a common session.</source>
<target>Databázové soubory nejsou navzájem komplementární.</target>
<source>An exception occurred!</source>
<target>Vyskytla se chyba!</target>
<source>Cannot read file attributes of %x.</source>
<target>Nelze číst atributy souboru %x.</target>
<source>Cannot get process information.</source>
<target>Nelze získat informace procesu.</target>
<source>Waiting while directory is locked (%x)...</source>
<target>Čekání na uzamčení adresáře (%x)</target>
<source>Creating file %x</source>
<target>Vytváření souboru %x</target>
<source>
<pluralform>1 sec</pluralform>
<pluralform>%x sec</pluralform>
</source>
<target>
<pluralform>1 sekunda</pluralform>
<pluralform>%x sekundy</pluralform>
<pluralform>%x sekund</pluralform>
</target>
<source>Error parsing file %x, row %y, column %z.</source>
<target>Chyba zpracování souboru %x: na řádku %y ve sloupci %z</target>
<source>Scanning:</source>
<target>Zpracováváno:</target>
<source>Encoding extended time information: %x</source>
<target>Zpracování rozšířené informace o čase: %x</target>
<source>
<pluralform>[1 Thread]</pluralform>
<pluralform>[%x Threads]</pluralform>
</source>
<target>
<pluralform>[1 proces]</pluralform>
<pluralform>[%x procesy]</pluralform>
<pluralform>[%x procesů]</pluralform>
</target>
<source>/sec</source>
<target>/s</target>
<source>File %x does not contain a valid configuration.</source>
<target>Soubor %x neobsahuje platnou konfiguraci.</target>
<source>Configuration file %x loaded partially only.</source>
<target>Konfigurace ze souboru %x byla načtena jen částečně.</target>
<source>Cannot access Volume Shadow Copy Service.</source>
<target>Nepodařil se přístup ke službě Stínové kopie.</target>
<source>Please use FreeFileSync 64-bit version to create shadow copies on this system.</source>
<target>Prosím použijte FreeFileSync 64-bitovou verzi pro použití služby Stínové kopie.</target>
<source>Cannot load file %x.</source>
<target>Nelze načíst soubor %x.</target>
<source>Path %x does not contain a volume name.</source>
<target>>Nelze zjistit jméno jednotky souboru %x.</target>
<source>Volume name %x not part of file name %y!</source>
<target>Disk %x není součástí jména souboru %y!</target>
<source>Cannot read the following XML elements:</source>
<target>Nelze načíst následující XML elementy:</target>
<source>Cannot find file %x.</source>
<target>Nelze najít soubor %x.</target>
<source>&Open...</source>
<target>&Otevřít...</target>
<source>Save &as...</source>
<target>Uložit &jako...</target>
<source>&Quit</source>
<target>U&končit</target>
<source>&Program</source>
<target>&Nástroje</target>
<source>&Content</source>
<target>&Obsah</target>
<source>&About</source>
<target>O &Programu</target>
<source>&Help</source>
<target>&Pomoc</target>
<source>Usage:</source>
<target>Použití:</target>
<source>1. Select folders to watch.</source>
<target>1. Vyberte složku ke sledování.</target>
<source>2. Enter a command line.</source>
<target>2. Zadejte příkazovou řádku.</target>
<source>3. Press 'Start'.</source>
<target>3. Zmáčkněte 'Start'</target>
<source>To get started just import a .ffs_batch file.</source>
<target>Můžete načíst také konfigurační soubor soubor .ffs_batch</target>
<source>Folders to watch</source>
<target>Složka ke sledování</target>
<source>Add folder</source>
<target>Přidat adresář</target>
<source>Remove folder</source>
<target>Odstranit adresář</target>
<source>Browse</source>
<target>Procházet</target>
<source>Select a folder</source>
<target>Vyberte adresář</target>
<source>Idle time [seconds]</source>
<target>Prodleva (v sekundách)</target>
<source>Idle time between last detected change and execution of command</source>
<target>Prodleva mezi zjištěním poslední změny a spuštěním příkazu</target>
<source>Command line</source>
<target>Příkazová řádka</target>
<source>
The command is triggered if:
- files or subfolders change
- new folders arrive (e.g. USB stick insert)
</source>
<target>
Příkaz je spuštěn když:
- dojde ke změně v souboru nebo ve složce
- je zjištěna nová složka (např. vložením USB disku)
</target>
<source>Start</source>
<target>Start</target>
<source>&Retry</source>
<target>&Opakovat</target>
<source>Cancel</source>
<target>Zrušit</target>
<source>Build: %x</source>
<target>Verze: %x</target>
<source>All files</source>
<target>Všechny soubory</target>
<source>&Restore</source>
<target>&Obnovit</target>
<source>&Exit</source>
<target>&Konec</target>
<source>Monitoring active...</source>
<target>Sledování zapnuto...</target>
<source>Waiting for missing directories...</source>
<target>Čekání na nedostupné adresáře...</target>
<source>A folder input field is empty.</source>
<target>Není zadána vstupní složka.</target>
<source>Synchronization aborted!</source>
<target>Synchronizace zrušena!</target>
<source>Synchronization completed with errors!</source>
<target>Synchronizace dokončena s chybami.</target>
<source>Synchronization completed with warnings.</source>
<target>Synchronizace dokončena s varováními.</target>
<source>Nothing to synchronize!</source>
<target>Není co synchronizovat!</target>
<source>Synchronization completed successfully.</source>
<target>Synchronizace dokončena úspěšně.</target>
<source>Saving log file %x...</source>
<target>Ukládání žurnálu %x...</target>
<source>Press "Switch" to resolve issues in FreeFileSync main dialog.</source>
<target>Použijte tlačítko "Přepnout" k vyřešení problému pomocí hlavního okna FreeFileSync.</target>
<source>Switching to FreeFileSync main dialog...</source>
<target>Přepínání do hlavního okna FreeFileSync...</target>
<source>A new version of FreeFileSync is available:</source>
<target>Je dostupná novější verze FreeFileSync:</target>
<source>Download now?</source>
<target>Stáhnout nyní?</target>
<source>FreeFileSync is up to date!</source>
<target>FreeFileSync je aktuální!</target>
<source>Information</source>
<target>Informace</target>
<source>Unable to connect to sourceforge.net!</source>
<target>Není možné se připojit k sourceforge.net!</target>
<source>Current FreeFileSync version number was not found online! Do you want to check manually?</source>
<target>Současná verze FreeFileSync nebyla nalezena online! Chcete verzi zkontrolovat ručně?</target>
<source>Do you want FreeFileSync to automatically check for updates every week?</source>
<target>Chcete aby FreeFileSync automaticky zjišťoval aktualizace každý týden?</target>
<source>(Requires an Internet connection!)</source>
<target>(Vyžaduje připojení k internetu!)</target>
<source><Symlink></source>
<target><Symlink></target>
<source><Folder></source>
<target><Složka></target>
<source>Full path</source>
<target>Plná cesta</target>
<source>Name</source>
<target>Jméno</target>
<source>Relative path</source>
<target>Relativní cesta</target>
<source>Base folder</source>
<target>Složka</target>
<source>Size</source>
<target>Velikost</target>
<source>Date</source>
<target>Čas</target>
<source>Extension</source>
<target>Přípona</target>
<source>Size:</source>
<target>Velikost:</target>
<source>Date:</source>
<target>Čas:</target>
<source>Action</source>
<target>Akce</target>
<source>Category</source>
<target>Kategorie</target>
<source>Drag && drop</source>
<target>Přetáhni sem && pusť</target>
<source>Close progress dialog</source>
<target>Zavřít průběh zpracování</target>
<source>Standby</source>
<target>Přepnout do úsporného režimu</target>
<source>Log off</source>
<target>Odhlásit uživatele</target>
<source>Shut down</source>
<target>Vypnout počítač</target>
<source>Hibernate</source>
<target>Přepnout do režimu spánku</target>
<source>&New</source>
<target>&Nový</target>
<source>&Save</source>
<target>&Uložit</target>
<source>Save as &batch job...</source>
<target>Uložit jako &dávku</target>
<source>1. &Compare</source>
<target>1. &Porovnat</target>
<source>2. &Synchronize</source>
<target>2. &Synchronizovat</target>
<source>&Language</source>
<target>&Jazyk</target>
<source>&Global settings...</source>
<target>&Nastavení...</target>
<source>&Export file list...</source>
<target>&Exportovat seznam souborů...</target>
<source>&Advanced</source>
<target>&Upřesnit</target>
<source>&Check now</source>
<target>Zkontrolovat &nyní</target>
<source>Check &automatically once a week</source>
<target>Kontrolovat &automaticky jendou týdně</target>
<source>Check for new version</source>
<target>&Zkontrolovat aktualizace</target>
<source>Compare</source>
<target>Porovnání</target>
<source>Synchronize</source>
<target>Synchronizace</target>
<source>Add folder pair</source>
<target>Přidat adresář pro porovnání</target>
<source>Remove folder pair</source>
<target>Odstranit dvojici adresářů</target>
<source>Swap sides</source>
<target>Změna stran</target>
<source>Hide excluded items</source>
<target>Skrýt vynechané položky</target>
<source>Show filtered or temporarily excluded files</source>
<target>Zobrazit filtrované nebo dočasně vynechané soubory</target>
<source>Number of files and folders that will be created</source>
<target>Počet souborů a složek k vytvoření</target>
<source>Number of files that will be overwritten</source>
<target>Počet souborů a adresářů k přepsání</target>
<source>Number of files and folders that will be deleted</source>
<target>Počet souborů a složek ke smazání</target>
<source>Total bytes to copy</source>
<target>Celkový objem dat</target>
<source>Items found:</source>
<target>Nalezeno položek:</target>
<source>Speed:</source>
<target>Rychlost:</target>
<source>Time remaining:</source>
<target>Zbývající čas:</target>
<source>Time elapsed:</source>
<target>Uplynulý čas:</target>
<source>Synchronizing...</source>
<target>Synchronizuji...</target>
<source>On completion</source>
<target>Po dokončení</target>
<source>Close</source>
<target>Zavřít</target>
<source>&Pause</source>
<target>&Pauza</target>
<source>Batch job</source>
<target>Dávkový soubor</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>Vytvoří dávkový souboru pro automatickou synchronizaci. Ke spuštění dávky jednoduše poklikejte na vytvořený soubor nebo jeho jméno zadejte jako parametr při spuštění FreeFileSync: FreeFileSync.exe <jméno_souboru>. Stejně tak můžete ke spuštění využít plánovač úloh vašeho operačního systému.</target>
<source>Help</source>
<target>Nápověda</target>
<source>Error handling</source>
<target>Zpracování chyb</target>
<source>Ignore</source>
<target>Přeskočit</target>
<source>Hide all error and warning messages</source>
<target>Skrýt všechny chyby a varování</target>
<source>Pop-up</source>
<target>Hlašení</target>
<source>Show pop-up on errors or warnings</source>
<target>Zobrazit hlášení při chybě nebo varování</target>
<source>Exit</source>
<target>Konec</target>
<source>Abort synchronization on first error</source>
<target>Ukončit synchronizaci při první chybě</target>
<source>Show progress dialog</source>
<target>Zobrazit průběh zpracování</target>
<source>Save log</source>
<target>Uložit žurnál</target>
<source>Select folder to save log files</source>
<target>Vyberte složku pro žurnály</target>
<source>Limit</source>
<target>Omezení</target>
<source>Limit maximum number of log files</source>
<target>Omezení maximálního počtu žurnálů</target>
<source>Select variant</source>
<target>Výběr možnosti</target>
<source>
Files are found equal if
- last write time and date
- file size
are the same
</source>
<target>
Soubory jsou shodné jestliže
- datum i čas poslední změny
- velikost souboru
jsou stejné
</target>
<source>File time and size</source>
<target>Podle velikosti a data souboru</target>
<source>
Files are found equal if
- file content
is the same
</source>
<target>
Soubory jsou shodné jestliže
- obsah souboru
je stejný
</target>
<source>File content</source>
<target>Podle obsahu souboru</target>
<source>Symbolic Link handling</source>
<target>Zpracování symbolických odkazů</target>
<source>OK</source>
<target>OK</target>
<source><- Two way -></source>
<target><- Databáze -></target>
<source>Identify and propagate changes on both sides. Deletions, moves and conflicts are detected automatically using a database.</source>
<target>Rozpoznat a provést změny na obou stranách. Odstraněné, přesunuté nebo přejmenované soubory a konflikty budou detekovány automaticky pomocí databáze.</target>
<source>Mirror ->></source>
<target>Zrcadlení ->></target>
<source>Mirror backup of left folder. Right folder is modified to exactly match left folder after synchronization.</source>
<target>Zrcadlení levého adresáře. Pravý adresář bude změněn tak, aby po synchronizaci byl totožný s levým.</target>
<source>Update -></source>
<target>Aktualizace -></target>
<source>Copy new or updated files to right folder.</source>
<target>Kopírovat nové nebo aktualizované soubory do adresáře vpravo.</target>
<source>Custom</source>
<target>Vlastní</target>
<source>Configure your own synchronization rules.</source>
<target>Nastavení vlastních pravidel synchronizace.</target>
<source>Deletion handling</source>
<target>Nastavení mazání</target>
<source>Permanent</source>
<target>Trvale</target>
<source>Delete or overwrite files permanently</source>
<target>Smazat nebo přepsat soubory trvale</target>
<source>Recycle Bin</source>
<target>Koš</target>
<source>Use Recycle Bin for deleted and overwritten files</source>
<target>Použít Koš při mazání nebo přepisu souborů</target>
<source>Versioning</source>
<target>Verzování</target>
<source>Move files to user-defined folder</source>
<target>Přesunout soubory do uživatelského adresáře</target>
<source>Naming convention:</source>
<target>Pojmenování:</target>
<source>Item exists on left side only</source>
<target>Položky existující pouze vlevo</target>
<source>Item exists on right side only</source>
<target>Položky existující pouze vpravo</target>
<source>Left side is newer</source>
<target>Vlevo je novější</target>
<source>Right side is newer</source>
<target>Vpravo je novější</target>
<source>Items have different content</source>
<target>Obsah položek je rozdílný</target>
<source>Conflict/item cannot be categorized</source>
<target>Konflikty/položky které nelze zařadit</target>
<source>Source code written in C++ using:</source>
<target>Zdrojový kód byl napsán kompletně v C++ pomocí:</target>
<source>If you like FreeFileSync</source>
<target>Pokud se Vám FreeFileSync líbí</target>
<source>Donate with PayPal</source>
<target>Přispět pomocí PayPal</target>
<source>Many thanks for localization:</source>
<target>Poděkování za překlad FreeFileSync:</target>
<source>Feedback and suggestions are welcome</source>
<target>Komentáře a náměty jsou vždy vítány</target>
<source>Homepage</source>
<target>Navštivte</target>
<source>FreeFileSync at Sourceforge</source>
<target>FreeFileSync na Sourceforge</target>
<source>Email</source>
<target>Napište</target>
<source>Published under the GNU General Public License</source>
<target>Vydáno pod GNU General Public License (GPL)</target>
<source>Delete on both sides</source>
<target>Smazat z obou stran</target>
<source>Delete on both sides even if the file is selected on one side only</source>
<target>Smazat na obou stranách i když je soubor vybrán pouze na jedné z nich</target>
<source>
Only files that match all filter settings will be synchronized.
Note: File names must be relative to base directories!
</source>
<target>
Pouze soubory odpovídající nastavenému filtru budou vybrány pro synchronizaci.
Poznámka: Filtr je aplikován relativně k základním adresářům.
</target>
<source>Include</source>
<target>Přidat</target>
<source>Exclude</source>
<target>Vynechat</target>
<source>Time span</source>
<target>Časové rozmezí</target>
<source>File size</source>
<target>Velikost souboru</target>
<source>Minimum</source>
<target>Od</target>
<source>Maximum</source>
<target>Do</target>
<source>&Clear</source>
<target>&Smazat</target>
<source>Fail-safe file copy</source>
<target>Bezpečné kopírování souborů</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>Kopíruje data nejprve do pomocného souboru (*.ffs_tmp) a poté teprve soubor přejmenuje. Tento postup zajišťuje bezpečné chování i v případě chyby během přenosu</target>
<source>Copy locked files</source>
<target>Kopírovat zamčené soubory</target>
<source>Copy shared or locked files using Volume Shadow Copy Service (Requires Administrator rights)</source>
<target>Kopírovat sdílené nebo zamčené soubory pomocí služby Stínové kopie (Vyžaduje administrátorské oprávnění)</target>
<source>Copy file access permissions</source>
<target>Kopírovat přístupová oprávnění k souborům</target>
<source>Transfer file and folder permissions (Requires Administrator rights)</source>
<target>Přenést přístupová oprávnění souborů a složek (Vyžaduje administrátorké oprávnění)</target>
<source>Restore hidden dialogs</source>
<target>Obnovit skryté dialogy</target>
<source>External applications</source>
<target>Externí aplikace</target>
<source>Description</source>
<target>Popis</target>
<source>&Default</source>
<target>&Předdefinované</target>
<source>Start synchronization</source>
<target>Start synchronizace</target>
<source>Variant</source>
<target>Varianta</target>
<source>Statistics</source>
<target>Statistika</target>
<source>Don't show this dialog again</source>
<target>Tento dialog již nezobrazovat</target>
<source>Find what:</source>
<target>Najít:</target>
<source>Match case</source>
<target>Rozlišovat malá a velká písmena</target>
<source>&Find next</source>
<target>&Najít další</target>
<source>Operation aborted!</source>
<target>Operace zrušena!</target>
<source>Main bar</source>
<target>Hlavní lišta</target>
<source>Folder pairs</source>
<target>Adresářové páry</target>
<source>Overview</source>
<target>Přehled</target>
<source>Configuration</source>
<target>Konfigurace</target>
<source>Filter files</source>
<target>Filtr souborů</target>
<source>Select view</source>
<target>Vyberte zobrazení</target>
<source>Open...</source>
<target>Otevřít...</target>
<source>Save</source>
<target>Uložit</target>
<source>Compare both sides</source>
<target>Porovnat obě strany</target>
<source>Set direction:</source>
<target>Nastavit adresář:</target>
<source>Exclude temporarily</source>
<target>Vynechat dočasně</target>
<source>Include temporarily</source>
<target>Přidat dočasně</target>
<source>Exclude via filter:</source>
<target>Vynechat pomocí filtru:</target>
<source><multiple selection></source>
<target><vícenásobný výběr></target>
<source>Delete</source>
<target>Smazat</target>
<source>Include all</source>
<target>Zahrnout vše</target>
<source>Exclude all</source>
<target>Vynechat vše</target>
<source>Show icons:</source>
<target>Ikony:</target>
<source>Small</source>
<target>Malé</target>
<source>Medium</source>
<target>Střední</target>
<source>Large</source>
<target>Velké</target>
<source>Select time span...</source>
<target>Zadejte časové rozmezí...</target>
<source>Default view</source>
<target>Výchozí zobrazení</target>
<source>Show "%x"</source>
<target>Zobrazit "%x"</target>
<source><Last session></source>
<target><Poslední sezení></target>
<source>Folder Comparison and Synchronization</source>
<target>Porovnání a Synchronizace adresářů</target>
<source>Configuration saved!</source>
<target>Konfigurace uložena.</target>
<source>FreeFileSync batch</source>
<target>FreeFileSync dávka</target>
<source>Do you want to save changes to %x?</source>
<target>Uložit změny do %x?</target>
<source>Do&n't save</source>
<target>Neukládat</target>
<source>Never save changes</source>
<target>Nikdy neukládat změny</target>
<source>Configuration loaded!</source>
<target>Konfigurace načtena.</target>
<source>Show files that exist on left side only</source>
<target>Zobrazit soubory existující pouze vlevo</target>
<source>Show files that exist on right side only</source>
<target>Zobrazit soubory existující pouze vpravo</target>
<source>Show files that are newer on left</source>
<target>Zobrazit soubory novější vlevo</target>
<source>Show files that are newer on right</source>
<target>Zobrazit soubory novější vpravo</target>
<source>Show files that are equal</source>
<target>Zobrazit shodné soubory</target>
<source>Show files that are different</source>
<target>Zobrazit rozdílené soubory</target>
<source>Show conflicts</source>
<target>Zobrazit konflikty</target>
<source>Show files that will be created on the left side</source>
<target>Zobrazit soubory, které budou vlevo vytvořeny</target>
<source>Show files that will be created on the right side</source>
<target>Zobrazit soubory, které budou vpravo vytvořeny</target>
<source>Show files that will be deleted on the left side</source>
<target>Zobrazit soubory, které budou vlevo smazány</target>
<source>Show files that will be deleted on the right side</source>
<target>Zobrazit soubory, které budou vpravo smazány</target>
<source>Show files that will be overwritten on left side</source>
<target>Zobrazit soubory, které budou vlevo přepsány</target>
<source>Show files that will be overwritten on right side</source>
<target>Zobrazit soubory, které budou vpravo přepsány</target>
<source>Show files that won't be copied</source>
<target>Zobrazit soubory, které nebudou kopírovány</target>
<source>Set as default</source>
<target>Nastavit jako výchozí</target>
<source>All folders are in sync!</source>
<target>Všechny složky jsou synchronizovány!</target>
<source>Comma separated list</source>
<target>Text oddělený čárkami</target>
<source>Legend</source>
<target>Legenda</target>
<source>File list exported!</source>
<target>Seznam souborů exportován!</target>
<source>Searching for program updates...</source>
<target>Hledání aktualizací programu ...</target>
<source>
<pluralform>1 directory</pluralform>
<pluralform>%x directories</pluralform>
</source>
<target>
<pluralform>1 adresář</pluralform>
<pluralform>%x adresáře</pluralform>
<pluralform>%x adresářů</pluralform>
</target>
<source>
<pluralform>1 file</pluralform>
<pluralform>%x files</pluralform>
</source>
<target>
<pluralform>1 soubor</pluralform>
<pluralform>%x soubory</pluralform>
<pluralform>%x souborů</pluralform>
</target>
<source>
<pluralform>%x of 1 row in view</pluralform>
<pluralform>%x of %y rows in view</pluralform>
</source>
<target>
<pluralform>%x z 1 řádku</pluralform>
<pluralform>%x z %y řádků</pluralform>
<pluralform>%x z %y řádků</pluralform>
</target>
<source>Ignore further errors</source>
<target>Přeskočit další chyby</target>
<source>&Ignore</source>
<target>&Pokračovat</target>
<source>Don't show this warning again</source>
<target>Nezobrazovat již příště toto varování</target>
<source>&Switch</source>
<target>&Přepnout</target>
<source>Question</source>
<target>Dotaz</target>
<source>&Yes</source>
<target>&Ano</target>
<source>&No</source>
<target>&Ne</target>
<source>Scanning...</source>
<target>Zpracovávání...</target>
<source>Comparing content...</source>
<target>Porovnávání obsahu...</target>
<source>Paused</source>
<target>Pauza</target>
<source>Initializing...</source>
<target>Inicializace...</target>
<source>Aborted</source>
<target>Přerušeno</target>
<source>Completed</source>
<target>Hotovo</target>
<source>Continue</source>
<target>Pokračovat</target>
<source>Pause</source>
<target>Pauza</target>
<source>Logging</source>
<target>Záznam zpracování</target>
<source>Cannot find %x</source>
<target>Nelze najít %x</target>
<source>Inactive</source>
<target>Vypnuto</target>
<source>Today</source>
<target>Dnes</target>
<source>This week</source>
<target>Tento týden</target>
<source>This month</source>
<target>Tento měsíc</target>
<source>This year</source>
<target>Tento rok</target>
<source>Last x days</source>
<target>dní zpětně</target>
<source>Byte</source>
<target>Byte</target>
<source>KB</source>
<target>KB</target>
<source>MB</source>
<target>MB</target>
<source>Filter</source>
<target>Filtr</target>
<source>Direct</source>
<target>Zachovat</target>
<source>Follow</source>
<target>Použít cíl</target>
<source>Copy NTFS permissions</source>
<target>Kopírovat oprávnění NTFS</target>
<source>Integrate external applications into context menu. The following macros are available:</source>
<target>Integrace externí aplikace do kontextového menu. K dispozici jsou následující makra:</target>
<source>- full file or folder name</source>
<target>- celá cesta nebo jméno souboru</target>
<source>- folder part only</source>
<target>- pouze cesta</target>
<source>- Other side's counterpart to %item_path%</source>
<target>- celá cesta nebo jméno z opačného panelu pro %item_path%</target>
<source>- Other side's counterpart to %item_folder%</source>
<target>- pouze cesta z opačného panelu pro %item_folder%</target>
<source>Make hidden warnings and dialogs visible again?</source>
<target>Povolit opět zobrazování skrytých dialogů a hlášení?</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>
<pluralform>Opravdu chcete přesunout následující položku do Koše?</pluralform>
<pluralform>Opravdu chcete přesunout následující %x položky do Koše?</pluralform>
<pluralform>Opravdu chcete přesunout následujících %x položek do Koše?</pluralform>
</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>Opravdu chcete smazat následující položku?</pluralform>
<pluralform>Opravdu chcete smazat následující %x položky?</pluralform>
<pluralform>Opravdu chcete smazat následujících %x položek?</pluralform>
</target>
<source>Leave as unresolved conflict</source>
<target>Ponechat jako nevyřešený konflikt</target>
<source>Time stamp</source>
<target>Časová značka</target>
<source>Append a timestamp to each file name</source>
<target>Přidat časovou značku ke jménu souboru</target>
<source>Replace</source>
<target>Nahradit</target>
<source>Move files and replace if existing</source>
<target>Přesunout a nahradit pokud soubory existují</target>
<source>Folder</source>
<target>Složka</target>
<source>File</source>
<target>Soubor</target>
<source>YYYY-MM-DD hhmmss</source>
<target>RRRR-MM-DD hhmmss</target>
<source>Files</source>
<target>Soubory</target>
<source>Items</source>
<target></target>
<source>Percentage</source>
<target>Procentní podíl</target>
<source>Cannot monitor directory %x.</source>
<target>Nelze nastavit monitorování adresáře %x.</target>
<source>Conversion error:</source>
<target>Chyba konverze:</target>
<source>Cannot delete file %x.</source>
<target>Nelze smazat soubor %x.</target>
<source>The file is locked by another process:</source>
<target>Soubor je uzamčen jiným procesem:</target>
<source>Cannot move file %x to %y.</source>
<target>Nelze přesunout soubor %x do %y.</target>
<source>Cannot delete directory %x.</source>
<target>Nelze smazat adresář %x.</target>
<source>Cannot write file attributes of %x.</source>
<target>Nelze zapsat atributy souboru %x.</target>
<source>Cannot write modification time of %x.</source>
<target>Nelze nastavit atribut času změny pro %x.</target>
<source>Cannot find system function %x.</source>
<target>Nelze najít systémovou funkci %x.</target>
<source>Cannot read security context of %x.</source>
<target>Nelze číst přístupová práva pro %x.</target>
<source>Cannot write security context of %x.</source>
<target>Nelze zapsat přístupová práva pro %x.</target>
<source>Cannot read permissions of %x.</source>
<target>Nelze číst oprávnění pro %x.</target>
<source>Cannot write permissions of %x.</source>
<target>Nelze zapsat oprávnění pro %x.</target>
<source>Cannot create directory %x.</source>
<target>Nelze vytvořit adresář %x.</target>
<source>Cannot copy symbolic link %x to %y.</source>
<target>Nelze kopítovat zástupce %x do %y.</target>
<source>Cannot copy file %x to %y.</source>
<target>Nelze kopírovat soubor %x do %y.</target>
<source>Type of item %x is not supported:</source>
<target>Typ položky %x není podporován:</target>
<source>Cannot open directory %x.</source>
<target>Nelze otevřít adresář %x.</target>
<source>Cannot enumerate directory %x.</source>
<target>Nelze procházet adresář %x.</target>
<source>Detected endless directory recursion.</source>
<target>Nalezena nekonečná adresářová smyčka.</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>1 minuta</pluralform>
<pluralform>%x minuty</pluralform>
<pluralform>%x minut</pluralform>
</target>
<source>
<pluralform>1 hour</pluralform>
<pluralform>%x hours</pluralform>
</source>
<target>
<pluralform>1 hodina</pluralform>
<pluralform>%x hodiny</pluralform>
<pluralform>%x hodin</pluralform>
</target>
<source>
<pluralform>1 day</pluralform>
<pluralform>%x days</pluralform>
</source>
<target>
<pluralform>1 den</pluralform>
<pluralform>%x dny</pluralform>
<pluralform>%x dnů</pluralform>
</target>
<source>Cannot set privilege %x.</source>
<target>Nelze nastavit práva pro %x.</target>
<source>Failed to suspend system sleep mode.</source>
<target>Nepodařilo se uspat systém</target>
<source>Cannot change process I/O priorities.</source>
<target>Nelze nastavit priority procesu.</target>
<source>Unable to move %x to the Recycle Bin!</source>
<target>Není možné přesunout %x do Koše!</target>
<source>Both sides have changed since last synchronization!</source>
<target>Došlo ke změně obou stran od poslední synchronizace!</target>
<source>Cannot determine sync-direction:</source>
<target>Nelze určit směr synchronizace:</target>
<source>No change since last synchronization!</source>
<target>Žádné změny od poslední synchronizace!</target>
<source>The corresponding database entries are not in sync considering current settings.</source>
<target>Databázové položky nejsou podle aktuální konfigurace synchronní.</target>
<source>Setting default synchronization directions: Old files will be overwritten with newer files.</source>
<target>Nastaven výchozí způsob synchronizace: Staré soubory budou nahrazeny novými.</target>
<source>Checking recycle bin availability for folder %x...</source>
<target>Kontrola Koše na složku %x ...</target>
<source>Moving file %x to recycle bin</source>
<target>Přesouvání souboru %x do Koše</target>
<source>Moving folder %x to recycle bin</source>
<target>Přesouvání afresáře %x do Koše</target>
<source>Moving symbolic link %x to recycle bin</source>
<target>Přesouvání symbolického odkazu %x do Koše</target>
<source>Deleting file %x</source>
<target>Mazání souboru %x</target>
<source>Deleting folder %x</source>
<target>Mazání adresáře %x</target>
<source>Deleting symbolic link %x</source>
<target>Mazání symbolického odkazu %x</target>
<source>Recycle Bin is not available for the following paths! Files will be deleted permanently instead:</source>
<target>Nelze použít Koš pro následující umístění! Soubory budou odstraněny trvale:</target>
<source>The corresponding folder will be considered as empty.</source>
<target>Odpovídající složku bude považován za prázdný.</target>
<source>Cannot find the following folders:</source>
<target>Nelze najít následující složky:</target>
<source>You can ignore this error to consider each folder as empty.</source>
<target>Tuto chybu můžete přeskočit a považovat neexistující složku jako prázdnou.</target>
<source>Directories are dependent! Be careful when setting up synchronization rules:</source>
<target>Adresáře jsou závislé! Buďte opatrní s definicí synchronizačních pravidel:</target>
<source>Start comparison</source>
<target>Spustit porovnání</target>
<source>Calculating sync directions...</source>
<target>Příprava adresářů synchronizace...</target>
<source>Conflict detected:</source>
<target>Zaznamenán konflikt:</target>
<source>File %x has an invalid date!</source>
<target>Soubor %x má chybné datum!</target>
<source>Files %x have the same date but a different size!</source>
<target>Soubory %x mají stejné datum a čas ale rozdílnou velikost!</target>
<source>Items differ in attributes only</source>
<target>Položky se liší pouze ve vlastnostech</target>
<source>Symbolic links %x have the same date but a different target.</source>
<target>Symbolický odkaz %x má stejné datum ale jiný cíl.</target>
<source>Comparing content of files %x</source>
<target>Porovnávání obsahu souborů %x</target>
<source>Comparing files by content failed.</source>
<target>Porovnání obsahu souborů se nezdařilo.</target>
<source>Generating file list...</source>
<target>Vytváření seznamu souborů...</target>
<source>Both sides are equal</source>
<target>Obě strany jsou shodné</target>
<source>Copy new item to left</source>
<target>Kopírovat novou položku do leva</target>
<source>Copy new item to right</source>
<target>Kopírovat novou položku do prava</target>
<source>Delete left item</source>
<target>Smazat položku z leva</target>
<source>Delete right item</source>
<target>Smazat položku z prava</target>
<source>Move file on left</source>
<target>Přesunout soubor nalevo</target>
<source>Move file on right</source>
<target>Přesunout soubor napravo</target>
<source>Overwrite left item</source>
<target>Přepsat levou položku tou z prava</target>
<source>Overwrite right item</source>
<target>Přepsat pravou položku tou z leva</target>
<source>Do nothing</source>
<target>Nic nedělat</target>
<source>Update attributes on left</source>
<target>Nastavit vlastnosti v levo</target>
<source>Update attributes on right</source>
<target>Nastavit vlastnoti v pravo</target>
<source>Multiple...</source>
<target>Různé...</target>
<source>Moving file %x to %y</source>
<target>Přesouvání souboru %x do %y</target>
<source>Moving folder %x to %y</source>
<target>Přesouvání adresáře %x do %y</target>
<source>Moving symbolic link %x to %y</source>
<target>Přesouvání symbolického odkazu %x do %y</target>
<source>Removing old versions...</source>
<target>Odstraňování starých verzí...</target>
<source>Creating symbolic link %x</source>
<target>Vytváření symbolického odkazu %x</target>
<source>Creating folder %x</source>
<target>Vytváření adresáře %x</target>
<source>Overwriting file %x</source>
<target>Přepisování souboru %x</target>
<source>Overwriting symbolic link %x</source>
<target>Přepisování symbolického odkazu %x</target>
<source>Verifying file %x</source>
<target>Kontrola souboru %x</target>
<source>Updating attributes of %x</source>
<target>Aktualizace atributů souboru %x</target>
<source>Cannot find %x.</source>
<target>Nelze najít %x.</target>
<source>Target folder %x already existing.</source>
<target>Cílova složka %x již existuje.</target>
<source>Target folder input field must not be empty.</source>
<target>Cílová složka nesmí být prázdná.</target>
<source>Folder input field for versioning must not be empty.</source>
<target>Složka pro verzování souborů nesmí být prázdná.</target>
<source>Source folder %x not found.</source>
<target>Zdrojovou složku %x nelze najít.</target>
<source>The following items have unresolved conflicts and will not be synchronized:</source>
<target>Následující položky jsou nevyřešené konflikty a nebudou synchronizovány:</target>
<source>Significant difference detected:</source>
<target>Nalezeny významné změny:</target>
<source>More than 50% of the total number of files will be copied or deleted!</source>
<target>Více než polovina souborů má být zkopírována nebo smazána!</target>
<source>Not enough free disk space available in:</source>
<target>Nedostatek místa na disku:</target>
<source>Required:</source>
<target>Požadováno</target>
<source>Available:</source>
<target>K dispozici</target>
<source>A folder will be modified which is part of multiple folder pairs. Please review synchronization settings.</source>
<target>Bude změněna složka, která je součástí adresářového páru vícenásobného porovnání. Prosím zkontrolujte si nastavení synchronizacem.</target>
<source>Left</source>
<target>Levý</target>
<source>Right</source>
<target>Pravý</target>
<source>Synchronizing folder pair:</source>
<target>Zpracovávání páru složek:</target>
<source>Generating database...</source>
<target>Vytváření databáze...</target>
<source>Creating Volume Shadow Copy for %x...</source>
<target>Vytváření Stínové kopie pro %x...</target>
<source>Data verification error: Source and target file have different content!</source>
<target>Nezdařila se verifikace dat: Zdrojový a cílový soubor mají rozdílný obsah!</target>
|