summaryrefslogtreecommitdiff
path: root/src/organizer_cs.ts
blob: c1a15646306b3caf47f9c5d7e286eb09b47a7e65 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
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
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
4559
4560
4561
4562
4563
4564
4565
4566
4567
4568
4569
4570
4571
4572
4573
4574
4575
4576
4577
4578
4579
4580
4581
4582
4583
4584
4585
4586
4587
4588
4589
4590
4591
4592
4593
4594
4595
4596
4597
4598
4599
4600
4601
4602
4603
4604
4605
4606
4607
4608
4609
4610
4611
4612
4613
4614
4615
4616
4617
4618
4619
4620
4621
4622
4623
4624
4625
4626
4627
4628
4629
4630
4631
4632
4633
4634
4635
4636
4637
4638
4639
4640
4641
4642
4643
4644
4645
4646
4647
4648
4649
4650
4651
4652
4653
4654
4655
4656
4657
4658
4659
4660
4661
4662
4663
4664
4665
4666
4667
4668
4669
4670
4671
4672
4673
4674
4675
4676
4677
4678
4679
4680
4681
4682
4683
4684
4685
4686
4687
4688
4689
4690
4691
4692
4693
4694
4695
4696
4697
4698
4699
4700
4701
4702
4703
4704
4705
4706
4707
4708
4709
4710
4711
4712
4713
4714
4715
4716
4717
4718
4719
4720
4721
4722
4723
4724
4725
4726
4727
4728
4729
4730
4731
4732
4733
4734
4735
4736
4737
4738
4739
4740
4741
4742
4743
4744
4745
4746
4747
4748
4749
4750
4751
4752
4753
4754
4755
4756
4757
4758
4759
4760
4761
4762
4763
4764
4765
4766
4767
4768
4769
4770
4771
4772
4773
4774
4775
4776
4777
4778
4779
4780
4781
4782
4783
4784
4785
4786
4787
4788
4789
4790
4791
4792
4793
4794
4795
4796
4797
4798
4799
4800
4801
4802
4803
4804
4805
4806
4807
4808
4809
4810
4811
4812
4813
4814
4815
4816
4817
4818
4819
4820
4821
4822
4823
4824
4825
4826
4827
4828
4829
4830
4831
4832
4833
4834
4835
4836
4837
4838
4839
4840
4841
4842
4843
4844
4845
4846
4847
4848
4849
4850
4851
4852
4853
4854
4855
4856
4857
4858
4859
4860
4861
4862
4863
4864
4865
4866
4867
4868
4869
4870
4871
4872
4873
4874
4875
4876
4877
4878
4879
4880
4881
4882
4883
4884
4885
4886
4887
4888
4889
4890
4891
4892
4893
4894
4895
4896
4897
4898
4899
4900
4901
4902
4903
4904
4905
4906
4907
4908
4909
4910
4911
4912
4913
4914
4915
4916
4917
4918
<!DOCTYPE TS>
<TS version="2.0" language="cs">
<context>
    <name>ActivateModsDialog</name>
    <message>
        <location filename="activatemodsdialog.ui" line="14"/>
        <source>Activate Mods</source>
        <translation>Aktivuj Mody</translation>
    </message>
    <message>
        <location filename="activatemodsdialog.ui" line="20"/>
        <source>This is a list of esps and esms that were active when the save game was created.</source>
        <translation>Thole je seznam souborů esp a esm, které byli aktivní když byla pozice uložena.</translation>
    </message>
    <message>
        <location filename="activatemodsdialog.ui" line="23"/>
        <source>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&gt;
p, li { white-space: pre-wrap; }
&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;This is a list of esps and esms that were active when the save game was created.&lt;/span&gt;&lt;/p&gt;
&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;For each esp, the right column contains the mod (or mods) that can be enabled to make the missing esps/esms available.&lt;/span&gt;&lt;/p&gt;
&lt;p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;/p&gt;
&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;If you hit Ok, all the mods selected in the right columns and all missing esps that have become available will be activated.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
        <translation>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&gt;
p, li { white-space: pre-wrap; }
&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;Thole je seznam souborů esp a esm, které byli aktivní když byla pozice uložena.&lt;/span&gt;&lt;/p&gt;
&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;Pro každé esp je v pravem sloupci mod (nebo mody), které třeba aktivat, aby byli esp/esm k dispozici&lt;/span&gt;&lt;/p&gt;
&lt;p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;/p&gt;
&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;Pokud klikneš OK, všechny mody označené v pravem sloupci se aktivují, a chybějící esp/esm budou k dispozici.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
    </message>
    <message>
        <location filename="activatemodsdialog.ui" line="37"/>
        <source>Missing ESP</source>
        <translation>Chybějící ESP</translation>
    </message>
    <message>
        <location filename="activatemodsdialog.ui" line="42"/>
        <source>Mod</source>
        <translation>Mod</translation>
    </message>
    <message>
        <location filename="activatemodsdialog.cpp" line="49"/>
        <source>not found</source>
        <translation>nenalezeno</translation>
    </message>
</context>
<context>
    <name>BainComplexInstallerDialog</name>
    <message>
        <location filename="baincomplexinstallerdialog.ui" line="14"/>
        <source>BAIN Package Installer</source>
        <translation>Instalátor BAIN balíku</translation>
    </message>
    <message>
        <location filename="baincomplexinstallerdialog.ui" line="22"/>
        <source>Name</source>
        <translation>Jméno</translation>
    </message>
    <message>
        <location filename="baincomplexinstallerdialog.ui" line="34"/>
        <source>This looks like a Package prepared for Installation through BAIN. You can select options from the list below. If there is a package.txt file, it should contain detailed information about the options.</source>
        <translation>Tohle vypadá jako balík připravený pro instalaci skrz BAIN. Můžete vybrat možnosti se seznamu níže. Pokud je k dispozici package.txt, měl by obsahovat detailné informace o možnostech.</translation>
    </message>
    <message>
        <location filename="baincomplexinstallerdialog.ui" line="44"/>
        <source>Components of this package.</source>
        <translation>Komponenty tohto balíku.</translation>
    </message>
    <message>
        <location filename="baincomplexinstallerdialog.ui" line="47"/>
        <source>Components of this package.
If there is a component called "00 Core" it is usually required. Options are ordered by priority as set up by the author.</source>
        <translation>Komponenty tohto balíku.
Pokud je k dispozici komponent s jménem "00 Core" obvykle je povinný. Možnosti jsou seřazeny dle priority navrženou autorem.</translation>
    </message>
    <message>
        <location filename="baincomplexinstallerdialog.ui" line="57"/>
        <location filename="baincomplexinstallerdialog.ui" line="60"/>
        <source>The package.txt is often part of BAIN packages and contains details about the options available.</source>
        <translation>Soubor package.txt je často součástí balíku a měl by obsahovat detailné informace o možnostech.</translation>
    </message>
    <message>
        <location filename="baincomplexinstallerdialog.ui" line="63"/>
        <source>Package.txt</source>
        <translation>Package.txt</translation>
    </message>
    <message>
        <location filename="baincomplexinstallerdialog.ui" line="83"/>
        <location filename="baincomplexinstallerdialog.ui" line="86"/>
        <source>Opens a Dialog that allows custom modifications.</source>
        <translation>Otevře okno s možnostemi vlastné modifikace.</translation>
    </message>
    <message>
        <location filename="baincomplexinstallerdialog.ui" line="89"/>
        <source>Manual</source>
        <translation>Ručne</translation>
    </message>
    <message>
        <location filename="baincomplexinstallerdialog.ui" line="96"/>
        <source>Ok</source>
        <translation>OK</translation>
    </message>
    <message>
        <location filename="baincomplexinstallerdialog.ui" line="103"/>
        <source>Cancel</source>
        <translation>Zrušit</translation>
    </message>
</context>
<context>
    <name>CategoriesDialog</name>
    <message>
        <location filename="categoriesdialog.ui" line="14"/>
        <source>Categories</source>
        <translation>Kategorie</translation>
    </message>
    <message>
        <location filename="categoriesdialog.ui" line="66"/>
        <source>ID</source>
        <translation>ID</translation>
    </message>
    <message>
        <location filename="categoriesdialog.ui" line="69"/>
        <source>Internal ID for the category.</source>
        <translation>Interní ID pro kategorii.</translation>
    </message>
    <message>
        <location filename="categoriesdialog.ui" line="72"/>
        <source>Internal ID for the category. The categories a mod belongs to are stored by this ID. It is recommended you use new IDs for categories you add instead of re-using existing ones.</source>
        <translation>Interní ID pro kategorii. Kategorie do kterých mod patří jsou uloženy dle tohto ID. Doporučuje se použít nové ID pro kategorie, které jste přejmenovali po svém.</translation>
    </message>
    <message>
        <location filename="categoriesdialog.ui" line="77"/>
        <source>Name</source>
        <translation>Jméno</translation>
    </message>
    <message>
        <location filename="categoriesdialog.ui" line="80"/>
        <location filename="categoriesdialog.ui" line="83"/>
        <source>Name of the Categorie used for display.</source>
        <translation>Jméno kategorie použité pro zobrazení.</translation>
    </message>
    <message>
        <location filename="categoriesdialog.ui" line="88"/>
        <source>Nexus IDs</source>
        <translation>Nexus ID</translation>
    </message>
    <message>
        <location filename="categoriesdialog.ui" line="91"/>
        <source>Comma-Separated list of Nexus IDs to be matched to the internal ID.</source>
        <translation>Čárkou oddělovaný seznam Nexus ID, který se má shodovat s interním ID. </translation>
    </message>
    <message>
        <location filename="categoriesdialog.ui" line="94"/>
        <source>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&gt;
p, li { white-space: pre-wrap; }
&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;You can match one or multiple nexus categories to a internal ID. Whenever you download a mod from a Nexus Page, Mod Organizer will try to resolve the category defined on the Nexus to one available in MO.&lt;/span&gt;&lt;/p&gt;
&lt;p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"&gt;&lt;/p&gt;
&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;To find out a category id used by the nexus, visit the categories list of the nexus page and hover over the links there.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
        <translation>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&gt;
p, li { white-space: pre-wrap; }
&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;Můžete přiradit jedno nebo víc Nexus ID k interní kategorii. Kdykoli stáhnete mod ze stránky Nexus, program podle ID automaticky přiradí kategorie.&lt;/span&gt;&lt;/p&gt;
&lt;p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"&gt;&lt;/p&gt;
&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;Když chcete zjistit kategorii v Nexusu, navštivte stránku "category list" a podržte kurzor nad linkami.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
    </message>
    <message>
        <location filename="categoriesdialog.ui" line="105"/>
        <source>Parent ID</source>
        <translation>Rodičovské ID</translation>
    </message>
    <message>
        <location filename="categoriesdialog.ui" line="108"/>
        <source>If set, the category is defined as a sub-category of another one. Parent ID needs to be a valid category ID.</source>
        <translation>Přirazené číslo kategorie z ní udelá nadřazenou kategorii s podkategoriemi jako táto i jiné s přideleným rovnakým Rodičovským ID.</translation>
    </message>
    <message>
        <location filename="categoriesdialog.cpp" line="239"/>
        <source>Add</source>
        <translation>Přidat</translation>
    </message>
    <message>
        <location filename="categoriesdialog.cpp" line="240"/>
        <source>Remove</source>
        <translation>Odstranit</translation>
    </message>
</context>
<context>
    <name>CredentialsDialog</name>
    <message>
        <location filename="credentialsdialog.ui" line="14"/>
        <source>Login</source>
        <translation>Přihlásení</translation>
    </message>
    <message>
        <location filename="credentialsdialog.ui" line="20"/>
        <source>This feature may not work unless you're logged in with Nexus</source>
        <translation>Tahle funkce nemusí fungovat pokud nejste také přihlášeni na stránke Nexus</translation>
    </message>
    <message>
        <location filename="credentialsdialog.ui" line="32"/>
        <source>Username</source>
        <translation>Jméno</translation>
    </message>
    <message>
        <location filename="credentialsdialog.ui" line="46"/>
        <source>Password</source>
        <translation>Heslo</translation>
    </message>
    <message>
        <location filename="credentialsdialog.ui" line="64"/>
        <source>Remember</source>
        <translation>Zapamatovat</translation>
    </message>
    <message>
        <location filename="credentialsdialog.ui" line="75"/>
        <source>Never ask again</source>
        <translation>Už se nedotazovat</translation>
    </message>
</context>
<context>
    <name>DirectoryRefresher</name>
    <message>
        <location filename="directoryrefresher.cpp" line="99"/>
        <source>failed to read bsa: %1</source>
        <translation type="unfinished"/>
    </message>
</context>
<context>
    <name>DownloadList</name>
    <message>
        <location filename="downloadlist.cpp" line="63"/>
        <source>Name</source>
        <translation>Jméno</translation>
    </message>
    <message>
        <location filename="downloadlist.cpp" line="64"/>
        <source>Filetime</source>
        <translation>Čas stáhnutí</translation>
    </message>
    <message>
        <location filename="downloadlist.cpp" line="65"/>
        <source>Done</source>
        <translation type="unfinished">Hotovo</translation>
    </message>
    <message>
        <location filename="downloadlist.cpp" line="80"/>
        <source>Information missing, please select "Query Info" from the context menu to re-retrieve.</source>
        <translation>Info chybí, označte "Získat Info" z kontextového menu pro pokus načtení z Nexusu.</translation>
    </message>
</context>
<context>
    <name>DownloadListWidget</name>
    <message>
        <location filename="downloadlistwidget.ui" line="17"/>
        <location filename="downloadlistwidget.ui" line="61"/>
        <source>Placeholder</source>
        <translation>#Placeholder</translation>
    </message>
    <message>
        <location filename="downloadlistwidget.ui" line="99"/>
        <location filename="downloadlistwidget.cpp" line="145"/>
        <location filename="downloadlistwidget.cpp" line="147"/>
        <source>Done - Double Click to install</source>
        <translation>Stáhnuté - dvouklik instaluj</translation>
    </message>
    <message>
        <location filename="downloadlistwidget.cpp" line="111"/>
        <location filename="downloadlistwidget.cpp" line="113"/>
        <source>Paused - Double Click to resume</source>
        <translation type="unfinished"/>
    </message>
    <message>
        <location filename="downloadlistwidget.cpp" line="131"/>
        <location filename="downloadlistwidget.cpp" line="133"/>
        <source>Installed - Double Click to re-install</source>
        <translation>Instalované - dvouklik přeinstaluj</translation>
    </message>
    <message>
        <location filename="downloadlistwidget.cpp" line="138"/>
        <location filename="downloadlistwidget.cpp" line="140"/>
        <source>Uninstalled - Double Click to re-install</source>
        <translation type="unfinished"/>
    </message>
</context>
<context>
    <name>DownloadListWidgetCompact</name>
    <message>
        <location filename="downloadlistwidgetcompact.ui" line="17"/>
        <location filename="downloadlistwidgetcompact.ui" line="56"/>
        <source>Placeholder</source>
        <translation>Placeholder</translation>
    </message>
    <message>
        <location filename="downloadlistwidgetcompact.ui" line="122"/>
        <source>Done</source>
        <translation>Hotovo</translation>
    </message>
</context>
<context>
    <name>DownloadListWidgetCompactDelegate</name>
    <message>
        <location filename="downloadlistwidgetcompact.cpp" line="120"/>
        <source>Paused</source>
        <translation type="unfinished"/>
    </message>
    <message>
        <location filename="downloadlistwidgetcompact.cpp" line="123"/>
        <source>Fetching Info 1</source>
        <translation type="unfinished"/>
    </message>
    <message>
        <location filename="downloadlistwidgetcompact.cpp" line="125"/>
        <source>Fetching Info 2</source>
        <translation type="unfinished"/>
    </message>
    <message>
        <location filename="downloadlistwidgetcompact.cpp" line="130"/>
        <source>Installed</source>
        <translation>Nainstalované</translation>
    </message>
    <message>
        <location filename="downloadlistwidgetcompact.cpp" line="133"/>
        <source>Uninstalled</source>
        <translation type="unfinished"/>
    </message>
    <message>
        <location filename="downloadlistwidgetcompact.cpp" line="136"/>
        <source>Done</source>
        <translation>Hotovo</translation>
    </message>
    <message>
        <location filename="downloadlistwidgetcompact.cpp" line="220"/>
        <location filename="downloadlistwidgetcompact.cpp" line="229"/>
        <location filename="downloadlistwidgetcompact.cpp" line="238"/>
        <location filename="downloadlistwidgetcompact.cpp" line="247"/>
        <source>Are you sure?</source>
        <translation>Jsi si jistý?</translation>
    </message>
    <message>
        <location filename="downloadlistwidgetcompact.cpp" line="221"/>
        <source>This will remove all finished downloads from this list and from disk.</source>
        <translation>Tímto vymažeš všechny dokončené stáhnutí se seznamu i z disku.</translation>
    </message>
    <message>
        <location filename="downloadlistwidgetcompact.cpp" line="230"/>
        <source>This will remove all installed downloads from this list and from disk.</source>
        <translation>Tímto vymažeš jenom nainstalované stáhnutí se seznamu i z disku.</translation>
    </message>
    <message>
        <location filename="downloadlistwidgetcompact.cpp" line="239"/>
        <source>This will permanently remove all finished downloads from this list (but NOT from disk).</source>
        <translation type="unfinished"/>
    </message>
    <message>
        <location filename="downloadlistwidgetcompact.cpp" line="248"/>
        <source>This will permanently remove all installed downloads from this list (but NOT from disk).</source>
        <translation type="unfinished"/>
    </message>
    <message>
        <location filename="downloadlistwidgetcompact.cpp" line="275"/>
        <source>Install</source>
        <translation>Instaluj</translation>
    </message>
    <message>
        <location filename="downloadlistwidgetcompact.cpp" line="277"/>
        <source>Query Info</source>
        <translation>Získej Info</translation>
    </message>
    <message>
        <location filename="downloadlistwidgetcompact.cpp" line="279"/>
        <source>Delete</source>
        <translation type="unfinished"/>
    </message>
    <message>
        <location filename="downloadlistwidgetcompact.cpp" line="281"/>
        <source>Un-Hide</source>
        <translation type="unfinished"/>
    </message>
    <message>
        <location filename="downloadlistwidgetcompact.cpp" line="283"/>
        <source>Remove from View</source>
        <translation type="unfinished"/>
    </message>
    <message>
        <location filename="downloadlistwidgetcompact.cpp" line="286"/>
        <source>Cancel</source>
        <translation>Zrušit</translation>
    </message>
    <message>
        <location filename="downloadlistwidgetcompact.cpp" line="287"/>
        <source>Pause</source>
        <translation>Pauza</translation>
    </message>
    <message>
        <location filename="downloadlistwidgetcompact.cpp" line="289"/>
        <source>Remove</source>
        <translation>Odstranit</translation>
    </message>
    <message>
        <location filename="downloadlistwidgetcompact.cpp" line="290"/>
        <source>Resume</source>
        <translation>Pokračuj</translation>
    </message>
    <message>
        <location filename="downloadlistwidgetcompact.cpp" line="294"/>
        <source>Delete Installed...</source>
        <translation type="unfinished"/>
    </message>
    <message>
        <location filename="downloadlistwidgetcompact.cpp" line="295"/>
        <source>Delete All...</source>
        <translation type="unfinished"/>
    </message>
    <message>
        <location filename="downloadlistwidgetcompact.cpp" line="298"/>
        <source>Remove Installed...</source>
        <translation>Odstraň už nainstalované...</translation>
    </message>
    <message>
        <location filename="downloadlistwidgetcompact.cpp" line="299"/>
        <source>Remove All...</source>
        <translation>Odstraň všechny...</translation>
    </message>
</context>
<context>
    <name>DownloadListWidgetDelegate</name>
    <message>
        <location filename="downloadlistwidget.cpp" line="118"/>
        <source>Fetching Info 1</source>
        <translation type="unfinished"/>
    </message>
    <message>
        <location filename="downloadlistwidget.cpp" line="121"/>
        <source>Fetching Info 2</source>
        <translation type="unfinished"/>
    </message>
    <message>
        <location filename="downloadlistwidget.cpp" line="233"/>
        <location filename="downloadlistwidget.cpp" line="242"/>
        <location filename="downloadlistwidget.cpp" line="251"/>
        <location filename="downloadlistwidget.cpp" line="260"/>
        <source>Are you sure?</source>
        <translation>Jsi si jistý?</translation>
    </message>
    <message>
        <location filename="downloadlistwidget.cpp" line="234"/>
        <source>This will remove all finished downloads from this list and from disk.</source>
        <translation>Tímto vymažeš všechny dokončené stáhnutí se seznamu i z disku.</translation>
    </message>
    <message>
        <location filename="downloadlistwidget.cpp" line="243"/>
        <source>This will remove all installed downloads from this list and from disk.</source>
        <translation>Tímto vymažeš jenom nainstalované stáhnutí se seznamu i z disku.</translation>
    </message>
    <message>
        <location filename="downloadlistwidget.cpp" line="252"/>
        <source>This will remove all finished downloads from this list (but NOT from disk).</source>
        <translation type="unfinished"/>
    </message>
    <message>
        <location filename="downloadlistwidget.cpp" line="261"/>
        <source>This will remove all installed downloads from this list (but NOT from disk).</source>
        <translation type="unfinished"/>
    </message>
    <message>
        <location filename="downloadlistwidget.cpp" line="287"/>
        <source>Install</source>
        <translation>Instaluj</translation>
    </message>
    <message>
        <location filename="downloadlistwidget.cpp" line="289"/>
        <source>Query Info</source>
        <translation>Získej Info</translation>
    </message>
    <message>
        <location filename="downloadlistwidget.cpp" line="291"/>
        <source>Delete</source>
        <translation type="unfinished"/>
    </message>
    <message>
        <location filename="downloadlistwidget.cpp" line="293"/>
        <source>Un-Hide</source>
        <translation type="unfinished"/>
    </message>
    <message>
        <location filename="downloadlistwidget.cpp" line="295"/>
        <source>Remove from View</source>
        <translation type="unfinished"/>
    </message>
    <message>
        <location filename="downloadlistwidget.cpp" line="298"/>
        <source>Cancel</source>
        <translation>Zrušit</translation>
    </message>
    <message>
        <location filename="downloadlistwidget.cpp" line="299"/>
        <source>Pause</source>
        <translation>Pauza</translation>
    </message>
    <message>
        <location filename="downloadlistwidget.cpp" line="301"/>
        <source>Remove</source>
        <translation>Odstraniť</translation>
    </message>
    <message>
        <location filename="downloadlistwidget.cpp" line="302"/>
        <source>Resume</source>
        <translation>Pokračuj</translation>
    </message>
    <message>
        <location filename="downloadlistwidget.cpp" line="306"/>
        <source>Delete Installed...</source>
        <translation type="unfinished"/>
    </message>
    <message>
        <location filename="downloadlistwidget.cpp" line="307"/>
        <source>Delete All...</source>
        <translation type="unfinished"/>
    </message>
    <message>
        <location filename="downloadlistwidget.cpp" line="310"/>
        <source>Remove Installed...</source>
        <translation>Odstranit už nainstalované...</translation>
    </message>
    <message>
        <location filename="downloadlistwidget.cpp" line="311"/>
        <source>Remove All...</source>
        <translation>Odstranit všechny...</translation>
    </message>
</context>
<context>
    <name>DownloadManager</name>
    <message>
        <location filename="downloadmanager.cpp" line="132"/>
        <source>failed to rename "%1" to "%2"</source>
        <translation>Nezdařilo se přejmenovat "%1" na "%2"</translation>
    </message>
    <message>
        <location filename="downloadmanager.cpp" line="323"/>
        <source>Download again?</source>
        <translation>Stáhnout znovu?</translation>
    </message>
    <message>
        <location filename="downloadmanager.cpp" line="323"/>
        <source>A file with the same name has already been downloaded. Do you want to download it again? The new file will receive a different name.</source>
        <translation>Soubor se stejným jménem už byl stáhnutý. Chcete ho stáhnout znovu? Nový soubor bude pojmenován jinak.</translation>
    </message>
    <message>
        <location filename="downloadmanager.cpp" line="355"/>
        <source>failed to download %1: could not open output file: %2</source>
        <translation>Stahování zlyhalo %1: nemožno otevřít výslední soubor: %2</translation>
    </message>
    <message>
        <location filename="downloadmanager.cpp" line="384"/>
        <source>Wrong Game</source>
        <translation type="unfinished"/>
    </message>
    <message>
        <location filename="downloadmanager.cpp" line="384"/>
        <source>The download link is for a mod for "%1" but this instance of MO has been set up for "%2".</source>
        <translation type="unfinished"/>
    </message>
    <message>
        <location filename="downloadmanager.cpp" line="396"/>
        <location filename="downloadmanager.cpp" line="463"/>
        <location filename="downloadmanager.cpp" line="635"/>
        <location filename="downloadmanager.cpp" line="645"/>
        <location filename="downloadmanager.cpp" line="654"/>
        <location filename="downloadmanager.cpp" line="668"/>
        <location filename="downloadmanager.cpp" line="678"/>
        <location filename="downloadmanager.cpp" line="688"/>
        <location filename="downloadmanager.cpp" line="698"/>
        <location filename="downloadmanager.cpp" line="709"/>
        <location filename="downloadmanager.cpp" line="717"/>
        <location filename="downloadmanager.cpp" line="726"/>
        <location filename="downloadmanager.cpp" line="736"/>
        <location filename="downloadmanager.cpp" line="751"/>
        <source>invalid index</source>
        <translation>neplatný index</translation>
    </message>
    <message>
        <location filename="downloadmanager.cpp" line="414"/>
        <source>failed to delete %1</source>
        <translation>odstránění zlyhalo %1</translation>
    </message>
    <message>
        <location filename="downloadmanager.cpp" line="420"/>
        <source>failed to delete meta file for %1</source>
        <translation>odstránění meta souboru zlyhalo pro %1</translation>
    </message>
    <message>
        <location filename="downloadmanager.cpp" line="496"/>
        <location filename="downloadmanager.cpp" line="514"/>
        <location filename="downloadmanager.cpp" line="527"/>
        <location filename="downloadmanager.cpp" line="544"/>
        <location filename="downloadmanager.cpp" line="555"/>
        <location filename="downloadmanager.cpp" line="590"/>
        <source>invalid index %1</source>
        <translation>neplatný index %1</translation>
    </message>
    <message>
        <location filename="downloadmanager.cpp" line="607"/>
        <source>Please enter the nexus mod id</source>
        <translation>Prosím zadej Nexus mod ID</translation>
    </message>
    <message>
        <location filename="downloadmanager.cpp" line="607"/>
        <source>Mod ID:</source>
        <translation>Mod ID:</translation>
    </message>
    <message>
        <location filename="downloadmanager.cpp" line="986"/>
        <source>Information updated</source>
        <translation>Info aktualizované</translation>
    </message>
    <message>
        <location filename="downloadmanager.cpp" line="988"/>
        <location filename="downloadmanager.cpp" line="1002"/>
        <source>No matching file found on Nexus! Maybe this file is no longer available or it was renamed?</source>
        <translation>Žádný přislouchající soubor nenalezen na Nexusu! Možná už není k dispozici nebo byl přejmenovaný?</translation>
    </message>
    <message>
        <location filename="downloadmanager.cpp" line="990"/>
        <source>No file on Nexus matches the selected file by name. Please manually choose the correct one.</source>
        <translation>Žádný soubor na Nexusu nezodpovedá přesnému jménu. Zvolte ručne ten správný.</translation>
    </message>
    <message>
        <location filename="downloadmanager.cpp" line="1127"/>
        <source>No download server available. Please try again later.</source>
        <translation type="unfinished"/>
    </message>
    <message>
        <location filename="downloadmanager.cpp" line="1169"/>
        <source>Failed to request file info from nexus: %1</source>
        <translation>Zlyhalo získání info z Nexusu %1</translation>
    </message>
    <message>
        <location filename="downloadmanager.cpp" line="1193"/>
        <source>Download failed: %1 (%2)</source>
        <translation>Stahování zlyhalo: %1 (%2)</translation>
    </message>
    <message>
        <location filename="downloadmanager.cpp" line="1272"/>
        <source>failed to re-open %1</source>
        <translation>zlyhalo znovu-otevření %1</translation>
    </message>
</context>
<context>
    <name>EditExecutablesDialog</name>
    <message>
        <location filename="editexecutablesdialog.ui" line="14"/>
        <source>Modify Executables</source>
        <translation>Nastavení Spouštění</translation>
    </message>
    <message>
        <location filename="editexecutablesdialog.ui" line="20"/>
        <source>List of configured executables</source>
        <translation>Seznam nakonfigurovaných spouštění</translation>
    </message>
    <message>
        <location filename="editexecutablesdialog.ui" line="23"/>
        <source>This is a list of your configured executables. Executables in grey are automatically recognised and can not be modified.</source>
        <translation>Tohle je seznam vašich nakonfigurovaných spouštěcích souború. Ty šedé jsou automaticky rozpoznané Mod Organizérem.</translation>
    </message>
    <message>
        <location filename="editexecutablesdialog.ui" line="38"/>
        <source>Title</source>
        <translation>Název</translation>
    </message>
    <message>
        <location filename="editexecutablesdialog.ui" line="45"/>
        <location filename="editexecutablesdialog.ui" line="48"/>
        <source>Name of the executable. This is only for display purposes.</source>
        <translation>Pojmenujte si spouštěcí volbu. Platí jenom pro zobrazení.</translation>
    </message>
    <message>
        <location filename="editexecutablesdialog.ui" line="59"/>
        <source>Binary</source>
        <translation>Soubor</translation>
    </message>
    <message>
        <location filename="editexecutablesdialog.ui" line="66"/>
        <location filename="editexecutablesdialog.ui" line="69"/>
        <source>Binary to run</source>
        <translation>binární soubor, který se má spustiť</translation>
    </message>
    <message>
        <location filename="editexecutablesdialog.ui" line="76"/>
        <source>Browse filesystem</source>
        <translation>Najdi na disku</translation>
    </message>
    <message>
        <location filename="editexecutablesdialog.ui" line="79"/>
        <source>Browse filesystem for the executable to run.</source>
        <translation>Browsováním najít soubor, který se má spouštět.</translation>
    </message>
    <message>
        <location filename="editexecutablesdialog.ui" line="82"/>
        <location filename="editexecutablesdialog.ui" line="103"/>
        <source>...</source>
        <translation>...</translation>
    </message>
    <message>
        <location filename="editexecutablesdialog.ui" line="93"/>
        <source>Start in</source>
        <translation>Spusti v</translation>
    </message>
    <message>
        <location filename="editexecutablesdialog.ui" line="114"/>
        <source>Arguments</source>
        <translation>Přepínače</translation>
    </message>
    <message>
        <location filename="editexecutablesdialog.ui" line="121"/>
        <location filename="editexecutablesdialog.ui" line="124"/>
        <source>Arguments to pass to the application</source>
        <translation>Přepínače za příkazem spuštění</translation>
    </message>
    <message>
        <location filename="editexecutablesdialog.ui" line="135"/>
        <source>Allow the Steam AppID to be used for this executable to be changed.</source>
        <translation>Umožní určit Steam AppID, které sa má použít pro toto spuštění. </translation>
    </message>
    <message>
        <location filename="editexecutablesdialog.ui" line="138"/>
        <source>Allow the Steam AppID to be used for this executable to be changed.
Every game/tool distributed through Steam has a unique ID. MO needs to know this ID to start those programs directly, otherwise the program is started by steam and then MO will not work. By default, MO will use the AppID for the game.
Right now the only case I know of where this needs to be overwritten is for the Skyrim Creation Kit which has its own AppID. This overwrite is already preconfigured.</source>
        <translation>Umožní určit Steam AppID, které sa má použít pro toto spuštění. Každá hra distribuovaná skrz Steammá unikátní ID. MO potřebuje vědeť tohle ID, aby dokázal spustiť tyhle programy přímo, jinak se program spustí skrz Steam a ne skrz MO, což znefunkčí modifikace. Standartne, MO použije AppID hry. Současne je znám jediný případ, kdy je potřeba AppID změnit a to pro Skyrim Creation Kit, který má své vlastní App ID. Tohle přepsání je predkonfigurováno.
</translation>
    </message>
    <message>
        <location filename="editexecutablesdialog.ui" line="143"/>
        <source>Overwrite Steam AppID</source>
        <translation>Přepsat Steam AppID</translation>
    </message>
    <message>
        <location filename="editexecutablesdialog.ui" line="153"/>
        <source>Steam AppID to use for this executable that differs from the games AppID.</source>
        <translation>Steamové AppID spouštecího souboru, které se liší od AppID hry.</translation>
    </message>
    <message>
        <location filename="editexecutablesdialog.ui" line="156"/>
        <source>Steam AppID to use for this executable that differs from the games AppID.
Every game/tool distributed through Steam has a unique ID. MO needs to know this ID to start those programs directly, otherwise the program is started by steam and then MO will not work. By default, MO will use the AppID for the game (usually 72850).
Right now the only case I know of where this needs to be overwritten is for the Skyrim Creation Kit which has its own AppID (usually 202480). This overwrite is already preconfigured.</source>
        <translation>Steamové AppID spouštecího souboru, které se liší od AppID hry.
Každá hra/aplikace distribuovaná skrz Steammá unikátní ID. MO potřebuje vědeť tohle ID, aby dokázal spustiť tyhle programy přímo, jinak se program spustí skrz Steam a ne skrz MO, což znefunkčí modifikace. Standartne, MO použije AppID hry (obvykle 72850). Současne je znám jediný případ, kdy je potřeba AppID změnit a to pro Skyrim Creation Kit, který má své vlastní App ID (obvykle 202480). Tohle přepsání je predkonfigurováno.</translation>
    </message>
    <message>
        <location filename="editexecutablesdialog.ui" line="169"/>
        <location filename="editexecutablesdialog.ui" line="172"/>
        <location filename="editexecutablesdialog.cpp" line="220"/>
        <source>If checked, MO will be closed once the specified executable is run.</source>
        <translation>Pokud je zaškrtnuté, MO se ukončí hned po spuštění Spouštěče.</translation>
    </message>
    <message>
        <location filename="editexecutablesdialog.ui" line="175"/>
        <source>Close MO when started</source>
        <translation>Ukonči MO po spuštění</translation>
    </message>
    <message>
        <location filename="editexecutablesdialog.ui" line="182"/>
        <location filename="editexecutablesdialog.ui" line="185"/>
        <source>Add an executable</source>
        <translation>Přidať toto nastavení Spuštění</translation>
    </message>
    <message>
        <location filename="editexecutablesdialog.ui" line="188"/>
        <location filename="editexecutablesdialog.cpp" line="190"/>
        <source>Add</source>
        <translation>Přidat</translation>
    </message>
    <message>
        <location filename="editexecutablesdialog.ui" line="199"/>
        <location filename="editexecutablesdialog.ui" line="202"/>
        <source>Remove the selected executable</source>
        <translation>Odstranit vybrané spuštění</translation>
    </message>
    <message>
        <location filename="editexecutablesdialog.ui" line="205"/>
        <source>Remove</source>
        <translation>Odstranit</translation>
    </message>
    <message>
        <location filename="editexecutablesdialog.cpp" line="119"/>
        <source>Select a binary</source>
        <translation>Vyber binární soubor</translation>
    </message>
    <message>
        <location filename="editexecutablesdialog.cpp" line="119"/>
        <source>Executable (%1)</source>
        <translation>Spuštění (%1)</translation>
    </message>
    <message>
        <location filename="editexecutablesdialog.cpp" line="143"/>
        <source>Java (32-bit) required</source>
        <translation type="unfinished"/>
    </message>
    <message>
        <location filename="editexecutablesdialog.cpp" line="144"/>
        <source>MO requires 32-bit java to run this application. If you already have it installed, select javaw.exe from that installation as the binary.</source>
        <translation type="unfinished"/>
    </message>
    <message>
        <location filename="editexecutablesdialog.cpp" line="160"/>
        <source>Select a directory</source>
        <translation>Vyber Zložku</translation>
    </message>
    <message>
        <location filename="editexecutablesdialog.cpp" line="169"/>
        <source>Confirm</source>
        <translation>Potvrdit</translation>
    </message>
    <message>
        <location filename="editexecutablesdialog.cpp" line="169"/>
        <source>Really remove "%1" from executables?</source>
        <translation>Opravdu odstranit "%1" ze seznamu Spouštění?</translation>
    </message>
    <message>
        <location filename="editexecutablesdialog.cpp" line="194"/>
        <source>Modify</source>
        <translation>Ulož</translation>
    </message>
    <message>
        <location filename="editexecutablesdialog.cpp" line="217"/>
        <source>MO must be kept running or this application will not work correctly.</source>
        <translation>MO musí bežet, aby tahle aplikace pracovala správně.</translation>
    </message>
</context>
<context>
    <name>FindDialog</name>
    <message>
        <location filename="finddialog.ui" line="14"/>
        <source>Find</source>
        <translation>Najít</translation>
    </message>
    <message>
        <location filename="finddialog.ui" line="24"/>
        <source>Find what:</source>
        <translation>Najít co:</translation>
    </message>
    <message>
        <location filename="finddialog.ui" line="31"/>
        <location filename="finddialog.ui" line="34"/>
        <source>Search term</source>
        <translation>Vyhledat výraz</translation>
    </message>
    <message>
        <location filename="finddialog.ui" line="47"/>
        <location filename="finddialog.ui" line="50"/>
        <source>Find next occurence from current file position.</source>
        <translation>Najít další výskyt od současné pozice.</translation>
    </message>
    <message>
        <location filename="finddialog.ui" line="53"/>
        <source>&amp;Find Next</source>
        <translation>&amp;Najít další</translation>
    </message>
    <message>
        <location filename="finddialog.ui" line="60"/>
        <location filename="finddialog.ui" line="63"/>
        <location filename="finddialog.ui" line="66"/>
        <source>Close</source>
        <translation>Zavřít</translation>
    </message>
</context>
<context>
    <name>FomodInstallerDialog</name>
    <message>
        <location filename="fomodinstallerdialog.ui" line="14"/>
        <source>FOMOD Installation Dialog</source>
        <translation>FOMOD instalační okno</translation>
    </message>
    <message>
        <location filename="fomodinstallerdialog.ui" line="22"/>
        <source>Name</source>
        <translation>Jméno</translation>
    </message>
    <message>
        <location filename="fomodinstallerdialog.ui" line="46"/>
        <source>Author</source>
        <translation>Autor</translation>
    </message>
    <message>
        <location filename="fomodinstallerdialog.ui" line="60"/>
        <source>Version</source>
        <translation>Verze</translation>
    </message>
    <message>
        <location filename="fomodinstallerdialog.ui" line="74"/>
        <source>Website</source>
        <translation>Stránka</translation>
    </message>
    <message>
        <location filename="fomodinstallerdialog.ui" line="81"/>
        <source>&lt;a href="#"&gt;Link&lt;/a&gt;</source>
        <translation>&lt;a href="#"&gt;Odkaz&lt;/a&gt;</translation>
    </message>
    <message>
        <location filename="fomodinstallerdialog.ui" line="160"/>
        <source>Manual</source>
        <translation>Ručne</translation>
    </message>
    <message>
        <location filename="fomodinstallerdialog.ui" line="170"/>
        <source>Back</source>
        <translation>Zpět</translation>
    </message>
    <message>
        <location filename="fomodinstallerdialog.ui" line="177"/>
        <source>Next</source>
        <translation>Další</translation>
    </message>
    <message>
        <location filename="fomodinstallerdialog.ui" line="184"/>
        <source>Cancel</source>
        <translation>Zrušit</translation>
    </message>
</context>
<context>
    <name>InstallDialog</name>
    <message>
        <location filename="installdialog.ui" line="20"/>
        <source>Install Mods</source>
        <translation>Instaluj mody</translation>
    </message>
    <message>
        <location filename="installdialog.ui" line="32"/>
        <source>New Mod</source>
        <translation>Nový mod</translation>
    </message>
    <message>
        <location filename="installdialog.ui" line="46"/>
        <source>Name</source>
        <translation>Jméno</translation>
    </message>
    <message>
        <location filename="installdialog.ui" line="53"/>
        <source>Pick a name for the mod</source>
        <translation>Zvol Jméno pro mod</translation>
    </message>
    <message>
        <location filename="installdialog.ui" line="56"/>
        <source>Pick a name for the mod. This is also used as a directory name, so please don't use characters that are illegal in file names.</source>
        <translation>Zvol Jméno pro mod. Takhle se zároveň bude jmenovat adresář, takže nepoužívejte znaky, které jsou zakázany pro adresáře.</translation>
    </message>
    <message>
        <location filename="installdialog.ui" line="65"/>
        <source>Content</source>
        <translation>Obsah</translation>
    </message>
    <message>
        <location filename="installdialog.ui" line="75"/>
        <source>Content of the archive. You can change the directory structure by using drag&amp;drop. Hint: Also try right clicking...</source>
        <translation>Obsah archivu. Můžete měnit strukturu zložek taháním myší. Rada: Také skuste kliknout pravým tlačítkem...</translation>
    </message>
    <message>
        <location filename="installdialog.ui" line="78"/>
        <source>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&gt;
p, li { white-space: pre-wrap; }
&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;This displays the content of the archive. &amp;lt;data&amp;gt; represents the base directory which will map to the game's data directory. You can change the base directory via the right-click context menu and you can move around files via drag&amp;amp;drop&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
        <translation>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&gt;
p, li { white-space: pre-wrap; }
&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;Tohle zobrazuje obsah archivu. &amp;lt;data&amp;gt; představuje základní adresář, který se promítne do Data adresáře hry. Můžete sami vybrat který adresář bude považován za Data tím, že naněj kliknete pravým tlačítkem a v kontext menu ho označíte. Také můžete předtím upravovat strukturu taháním myší.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
    </message>
    <message>
        <location filename="installdialog.ui" line="121"/>
        <source>Placeholder</source>
        <translation>Placeholder</translation>
    </message>
    <message>
        <location filename="installdialog.ui" line="141"/>
        <source>OK</source>
        <translation type="unfinished">OK</translation>
    </message>
    <message>
        <location filename="installdialog.ui" line="148"/>
        <source>Cancel</source>
        <translation type="unfinished">Zrušit</translation>
    </message>
</context>
<context>
    <name>InstallationManager</name>
    <message>
        <location filename="installationmanager.cpp" line="76"/>
        <source>archive.dll not loaded: "%1"</source>
        <translation type="unfinished"/>
    </message>
    <message>
        <location filename="installationmanager.cpp" line="98"/>
        <source>Password required</source>
        <translation>Heslo požadováno</translation>
    </message>
    <message>
        <location filename="installationmanager.cpp" line="98"/>
        <source>Password</source>
        <translation>Heslo</translation>
    </message>
    <message>
        <location filename="installationmanager.cpp" line="164"/>
        <location filename="installationmanager.cpp" line="248"/>
        <location filename="installationmanager.cpp" line="529"/>
        <source>Extracting files</source>
        <translation>Rozbalují se soubory</translation>
    </message>
    <message>
        <location filename="installationmanager.cpp" line="439"/>
        <source>failed to create backup</source>
        <translation type="unfinished"/>
    </message>
    <message>
        <location filename="installationmanager.cpp" line="448"/>
        <source>Mod Name</source>
        <translation type="unfinished"/>
    </message>
    <message>
        <location filename="installationmanager.cpp" line="448"/>
        <source>Name</source>
        <translation type="unfinished">Jméno</translation>
    </message>
    <message>
        <location filename="installationmanager.cpp" line="501"/>
        <source>Invalid name</source>
        <translation type="unfinished"/>
    </message>
    <message>
        <location filename="installationmanager.cpp" line="502"/>
        <source>The name you entered is invalid, please enter a different one.</source>
        <translation type="unfinished"/>
    </message>
    <message>
        <location filename="installationmanager.cpp" line="609"/>
        <source>File format "%1" not supported</source>
        <translation>Formát souboru "%1" nepodporován</translation>
    </message>
    <message>
        <location filename="installationmanager.cpp" line="735"/>
        <source>None of the available installer plugins were able to handle that archive</source>
        <translation type="unfinished"/>
    </message>
    <message>
        <location filename="installationmanager.cpp" line="745"/>
        <source>no error</source>
        <translation>žádná chyba</translation>
    </message>
    <message>
        <location filename="installationmanager.cpp" line="748"/>
        <source>7z.dll not found</source>
        <translation>7z.dll nenalezeno</translation>
    </message>
    <message>
        <location filename="installationmanager.cpp" line="751"/>
        <source>7z.dll isn't valid</source>
        <translation>7z.dll je neplatný</translation>
    </message>
    <message>
        <location filename="installationmanager.cpp" line="754"/>
        <source>archive not found</source>
        <translation>archív nenalezen</translation>
    </message>
    <message>
        <location filename="installationmanager.cpp" line="757"/>
        <source>failed to open archive</source>
        <translation>nemožno otevřít archív</translation>
    </message>
    <message>
        <location filename="installationmanager.cpp" line="760"/>
        <source>unsupported archive type</source>
        <translation>nepodporovaný typ archívu</translation>
    </message>
    <message>
        <location filename="installationmanager.cpp" line="763"/>
        <source>internal library error</source>
        <translation>chyba internal library </translation>
    </message>
    <message>
        <location filename="installationmanager.cpp" line="766"/>
        <source>archive invalid</source>
        <translation>archív je neplatný</translation>
    </message>
    <message>
        <location filename="installationmanager.cpp" line="770"/>
        <source>unknown archive error</source>
        <translation>neznáma chyba archívu</translation>
    </message>
</context>
<context>
    <name>LockedDialog</name>
    <message>
        <location filename="lockeddialog.ui" line="14"/>
        <source>Locked</source>
        <translation>Uzamčeno</translation>
    </message>
    <message>
        <location filename="lockeddialog.ui" line="20"/>
        <source>This dialog should disappear automatically if the application/game is done. Click unlock if it didn't.</source>
        <translation>Toto okno by mělo samo zmizet až se aplikace/hra ukončí.Klikněte "Odemkni" pokud se tak nestalo. </translation>
    </message>
    <message>
        <location filename="lockeddialog.ui" line="23"/>
        <source>MO is locked while the executable is running.</source>
        <translation>MO je uzamčený pokud aplikace/hra běží.</translation>
    </message>
    <message>
        <location filename="lockeddialog.ui" line="51"/>
        <source>Unlock</source>
        <translation>Odemkni</translation>
    </message>
</context>
<context>
    <name>LogBuffer</name>
    <message>
        <location filename="logbuffer.cpp" line="72"/>
        <source>failed to write log to %1: %2</source>
        <translation>nezdařil se zápis do logu %1: %2</translation>
    </message>
</context>
<context>
    <name>MOApplication</name>
    <message>
        <location filename="moapplication.cpp" line="68"/>
        <source>an error occured: %1</source>
        <translation type="unfinished">vyskytla se chyba: %1</translation>
    </message>
    <message>
        <location filename="moapplication.cpp" line="73"/>
        <source>an error occured</source>
        <translation type="unfinished">vyskytla se chyba</translation>
    </message>
</context>
<context>
    <name>MainWindow</name>
    <message>
        <location filename="mainwindow.ui" line="42"/>
        <location filename="mainwindow.ui" line="383"/>
        <source>Categories</source>
        <translation type="unfinished">Kategorie</translation>
    </message>
    <message>
        <location filename="mainwindow.ui" line="119"/>
        <source>Profile</source>
        <translation type="unfinished">Profil</translation>
    </message>
    <message>
        <location filename="mainwindow.ui" line="129"/>
        <source>Pick a module collection</source>
        <translation type="unfinished">Vyber kolekci modulů</translation>
    </message>
    <message>
        <location filename="mainwindow.ui" line="132"/>
        <source>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&gt;
p, li { white-space: pre-wrap; }
&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;Create profiles here. Each profile contains its own list of active mods and esps. This way you can quickly switch between setups for different play throughs.&lt;/span&gt;&lt;/p&gt;
&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;Please note that right now your esp load order is not kept seperate for different profiles.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
        <translation type="unfinished">&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&gt;
p, li { white-space: pre-wrap; }
&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;Tady vytvoř profil. Každý profil obsahuje svúj vlastní seznam aktivních modů a esp. Díky tomu můžeš rychle přepínat mezi různými konfiguracemi.&lt;/span&gt;&lt;/p&gt;
&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;Prosím mějte na paměti, že v současnosti poradí esp se neukladá pro různé profily.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
    </message>
    <message>
        <location filename="mainwindow.ui" line="150"/>
        <source>Refresh list</source>
        <translation type="unfinished">Znovunačíst seznam</translation>
    </message>
    <message>
        <location filename="mainwindow.ui" line="153"/>
        <source>Refresh list. This is usually not necessary unless you modified data outside the program.</source>
        <translation type="unfinished">Obnoví seznam. Tohle obvykle není zapotřebí, jedine že by jste měnili obsah dat mimo program MO.</translation>
    </message>
    <message>
        <location filename="mainwindow.ui" line="269"/>
        <source>List of available mods.</source>
        <translation type="unfinished"/>
    </message>
    <message>
        <location filename="mainwindow.ui" line="272"/>
        <source>This is a list of installed mods. Use the checkboxes to activate/deactivate mods and drag &amp; drop mods to change their "installation" orders.</source>
        <translation type="unfinished"/>
    </message>
    <message>
        <location filename="mainwindow.ui" line="357"/>
        <source>Filter</source>
        <translation type="unfinished">Filter</translation>
    </message>
    <message>
        <location filename="mainwindow.ui" line="378"/>
        <source>No groups</source>
        <translation type="unfinished"/>
    </message>
    <message>
        <location filename="mainwindow.ui" line="388"/>
        <source>Nexus IDs</source>
        <translation type="unfinished"/>
    </message>
    <message>
        <location filename="mainwindow.ui" line="396"/>
        <location filename="mainwindow.ui" line="713"/>
        <location filename="mainwindow.ui" line="990"/>
        <source>Namefilter</source>
        <translation type="unfinished"/>
    </message>
    <message>
        <location filename="mainwindow.ui" line="431"/>
        <source>Pick a program to run.</source>
        <translation type="unfinished">Vyber program na spuštění.</translation>
    </message>
    <message>
        <location filename="mainwindow.ui" line="434"/>
        <source>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&gt;
p, li { white-space: pre-wrap; }
&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;Choose the program to run. Once you start using ModOrganizer, you should always run your game and tools from here or through shortcuts created here, otherwise mods installed through MO will not be visible.&lt;/span&gt;&lt;/p&gt;
&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;You can add new Tools to this list, but I can't promise tools I haven't tested will work.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
        <translation type="unfinished">&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&gt;
p, li { white-space: pre-wrap; }
&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;Vyber program, který se spustí. Když začneš používat ModOrganizer, pokaždé by jsi měl spouštet hru i nástroje přes toto nebo přes skratky vytvořené tímto programem, jinak mody nainstalované přes MO nebudou vidět.&lt;/span&gt;&lt;/p&gt;
&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;Můžeš přidávat různé nástroje, ale neručím, že ty které jsem netestoval poběží správně.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
    </message>
    <message>
        <location filename="mainwindow.ui" line="482"/>
        <source>Run program</source>
        <translation type="unfinished">Spustit program</translation>
    </message>
    <message>
        <location filename="mainwindow.ui" line="485"/>
        <source>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&gt;
p, li { white-space: pre-wrap; }
&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;Run the selected program with ModOrganizer enabled.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
        <translation type="unfinished">&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&gt;
p, li { white-space: pre-wrap; }
&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;Spusti vybraný program s nastavením ModOrganizeru.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
    </message>
    <message>
        <location filename="mainwindow.ui" line="495"/>
        <source>Run</source>
        <translation type="unfinished">Spustit</translation>
    </message>
    <message>
        <location filename="mainwindow.ui" line="536"/>
        <source>Create a shortcut in your start menu or on the desktop to the specified program</source>
        <translation type="unfinished"/>
    </message>
    <message>
        <location filename="mainwindow.ui" line="539"/>
        <source>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&gt;
p, li { white-space: pre-wrap; }
&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;This creates a start menu shortcut that directly starts the selected program with the MO active.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
        <translation type="unfinished">&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&gt;
p, li { white-space: pre-wrap; }
&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;Tohle vytvoří odkaz v menu Start, který přímo bude spouštět zvolený program přes MO.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
    </message>
    <message>
        <location filename="mainwindow.ui" line="546"/>
        <source>Shortcut</source>
        <translation type="unfinished"/>
    </message>
    <message>
        <location filename="mainwindow.ui" line="660"/>
        <source>List of available esp/esm files</source>
        <translation type="unfinished">Seznam dostupných esp/esm souborů</translation>
    </message>
    <message>
        <location filename="mainwindow.ui" line="663"/>
        <source>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&gt;
p, li { white-space: pre-wrap; }
&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;This list contains the esps and esms contained in the active mods. These require their own load order. Use drag&amp;amp;drop to modify this load order. Please note that MO will only save the load order for mods that are active/checked.&lt;br /&gt;There is a great tool named &amp;quot;BOSS&amp;quot; to automatically sort these files.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
        <translation type="unfinished">&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&gt;
p, li { white-space: pre-wrap; }
&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;Tenhle seznam obsahuje esp a esm soubory z aktivovaných modů. Tyhle mají svoje vlastní pořadí priority. Tahaním myší je možné měnit pořadí. Prosím mějte na paměti, že MO zobrazí seznam jenom z modů, které jsou aktivovány (zaškrtnuté).&lt;br /&gt;Existuje skvělý nástroj &amp;quot;BOSS&amp;quot; který automaticky správně seřadí tyhle soubory.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
    </message>
    <message>
        <location filename="mainwindow.ui" line="733"/>
        <source>List of available BS Archives. Archives not checked here are not managed by MO and ignore installation order.</source>
        <translation type="unfinished">Seznam BS archivů, které jsou k dispozici. Archivy, které jsou zde neni označeny nebudou načteny do hry.</translation>
    </message>
    <message>
        <location filename="mainwindow.ui" line="736"/>
        <source>BSA files are archives (comparable to .zip files) that contain data assets (meshes, textures, ...) to be used by the game. As such they "compete" with loose files in your data directory over which is loaded.
By default, BSAs that share their base name with an enabled ESP (i.e. plugin.esp and plugin.bsa) are automatically loaded and will have precedence over all loose files, the installation order you set up to the left is then ignored!

BSAs checked here are loaded in such a way that your installation order is obeyed properly.</source>
        <translation type="unfinished">BSA files are archives (comparable to .zip files) that contain data assets (meshes, textures, ...) to be used by Skyrim. As such they "compete" with loose files in your data directory over which is loaded.
By default, BSAs that share their base name with an enabled ESP (i.e. plugin.esp and plugin.bsa) are automatically loaded and will have precedence over all loose files, the installation order you set up to the left is then ignored!

BSAs checked here are loaded in such a way that your installation order is obeyed properly.</translation>
    </message>
    <message>
        <location filename="mainwindow.ui" line="782"/>
        <location filename="mainwindow.ui" line="842"/>
        <source>File</source>
        <translation type="unfinished">Soubor</translation>
    </message>
    <message>
        <location filename="mainwindow.ui" line="790"/>
        <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Marked Archives (&lt;img src=":/MO/gui/warning_16"/&gt;) are still loaded on Skyrim but the &lt;a href="http://forums.bethsoft.com/topic/1354395-update-bsas-and-you/"&gt;&lt;span style=" text-decoration: underline; color:#0000ff;"&gt;regular file override&lt;/span&gt;&lt;/a&gt; mechanism will apply: Loose files override BSAs, no matter the mod/plugin priority.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
        <translation type="unfinished"/>
    </message>
    <message>
        <location filename="mainwindow.ui" line="801"/>
        <source>Data</source>
        <translation type="unfinished">Data</translation>
    </message>
    <message>
        <location filename="mainwindow.ui" line="810"/>
        <source>refresh data-directory overview</source>
        <translation type="unfinished">znovunačti data</translation>
    </message>
    <message>
        <location filename="mainwindow.ui" line="813"/>
        <source>Refresh the overview. This may take a moment.</source>
        <translation type="unfinished">Obnov náhled. Tohle může chvíli trvat.</translation>
    </message>
    <message>
        <location filename="mainwindow.ui" line="816"/>
        <location filename="mainwindow.cpp" line="3696"/>
        <location filename="mainwindow.cpp" line="4454"/>
        <source>Refresh</source>
        <translation type="unfinished">Znovunačíst</translation>
    </message>
    <message>
        <location filename="mainwindow.ui" line="832"/>
        <source>This is an overview of your data directory as visible to the game (and tools). </source>
        <translation type="unfinished">Tohle je náhled tvé data struktury, kterou načte hra (i nástroje).</translation>
    </message>
    <message>
        <location filename="mainwindow.ui" line="847"/>
        <source>Mod</source>
        <translation type="unfinished">Mod</translation>
    </message>
    <message>
        <location filename="mainwindow.ui" line="857"/>
        <location filename="mainwindow.ui" line="860"/>
        <source>Filter the above list so that only conflicts are displayed.</source>
        <translation type="unfinished">Přefiltruje seznam nahoře tak, že budou zobrazeny pouze konflikty.</translation>
    </message>
    <message>
        <location filename="mainwindow.ui" line="863"/>
        <source>Show only conflicts</source>
        <translation type="unfinished">Ukaž jenom konflikty</translation>
    </message>
    <message>
        <location filename="mainwindow.ui" line="871"/>
        <source>Saves</source>
        <translation type="unfinished">Uložené pozice</translation>
    </message>
    <message>
        <location filename="mainwindow.ui" line="886"/>
        <source>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&gt;
p, li { white-space: pre-wrap; }
&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;This is a list of all savegames for this game. Hover over a list entry to get detailed information about the save including a list of esps/esms that were used at the time this save was created but aren't active now.&lt;/span&gt;&lt;/p&gt;
&lt;p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"&gt;&lt;/p&gt;
&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;If you click &amp;quot;Fix Mods...&amp;quot; in the context menu, MO will try to activate all mods and esps to fix those missing esps. It will not disable anything!&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
        <translation type="unfinished">&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&gt;
p, li { white-space: pre-wrap; }
&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;Tohle je seznam všech uložených pozic hry. Podrž kurzor ponad pozicí pro zobrazení detailných informací vrátaně seznamu esp/esm, které byli uloženy do pozice, ale v současnosti nejsou aktivní.&lt;/span&gt;&lt;/p&gt;
&lt;p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"&gt;&lt;/p&gt;
&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;Pokud kliknete &amp;quot;Fixni Mody...&amp;quot; v kontext menu, MO se pokusí aktivovat všechny mody a esp soubory, které byli v pozici používány. Nic se však nevypne!&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
    </message>
    <message>
        <location filename="mainwindow.ui" line="900"/>
        <source>Downloads</source>
        <translation type="unfinished">Stáhnuté</translation>
    </message>
    <message>
        <location filename="mainwindow.ui" line="923"/>
        <source>This is a list of mods you downloaded from Nexus. Double click one to install it.</source>
        <translation type="unfinished">Tohle je seznam modů, které jsi stánul z Nexusu. Dvojklik nainstaluje mod.</translation>
    </message>
    <message>
        <location filename="mainwindow.ui" line="976"/>
        <source>Compact</source>
        <translation type="unfinished">Kompaktní</translation>
    </message>
    <message>
        <location filename="mainwindow.ui" line="983"/>
        <source>Show Hidden</source>
        <translation type="unfinished"/>
    </message>
    <message>
        <location filename="mainwindow.ui" line="1014"/>
        <source>Tool Bar</source>
        <translation type="unfinished">Panel nástrojú</translation>
    </message>
    <message>
        <location filename="mainwindow.ui" line="1056"/>
        <source>Install Mod</source>
        <translation type="unfinished">Instaluj mod</translation>
    </message>
    <message>
        <location filename="mainwindow.ui" line="1059"/>
        <source>Install &amp;Mod</source>
        <translation type="unfinished">Instaluj &amp;Mod</translation>
    </message>
    <message>
        <location filename="mainwindow.ui" line="1062"/>
        <source>Install a new mod from an archive</source>
        <translation type="unfinished">Instaluj nový mod z archívu</translation>
    </message>
    <message>
        <location filename="mainwindow.ui" line="1065"/>
        <source>Ctrl+M</source>
        <translation type="unfinished">Ctrl+M</translation>
    </message>
    <message>
        <location filename="mainwindow.ui" line="1074"/>
        <source>Profiles</source>
        <translation type="unfinished">Profily</translation>
    </message>
    <message>
        <location filename="mainwindow.ui" line="1077"/>
        <source>&amp;Profiles</source>
        <translation type="unfinished">&amp;Profily</translation>
    </message>
    <message>
        <location filename="mainwindow.ui" line="1080"/>
        <source>Configure Profiles</source>
        <translation type="unfinished">Nastav profily</translation>
    </message>
    <message>
        <location filename="mainwindow.ui" line="1083"/>
        <source>Ctrl+P</source>
        <translation type="unfinished">Ctrl+P</translation>
    </message>
    <message>
        <location filename="mainwindow.ui" line="1092"/>
        <source>Executables</source>
        <translation type="unfinished">Spouštění</translation>
    </message>
    <message>
        <location filename="mainwindow.ui" line="1095"/>
        <source>&amp;Executables</source>
        <translation type="unfinished">&amp;Spouštění</translation>
    </message>
    <message>
        <location filename="mainwindow.ui" line="1098"/>
        <source>Configure the executables that can be started through Mod Organizer</source>
        <translation type="unfinished">Konfigurace spouštění, které lze použít pro načtení modů z MO</translation>
    </message>
    <message>
        <location filename="mainwindow.ui" line="1101"/>
        <source>Ctrl+E</source>
        <translation type="unfinished">Ctrl+E</translation>
    </message>
    <message>
        <location filename="mainwindow.ui" line="1110"/>
        <location filename="mainwindow.ui" line="1116"/>
        <source>Tools</source>
        <translation type="unfinished"/>
    </message>
    <message>
        <location filename="mainwindow.ui" line="1113"/>
        <source>&amp;Tools</source>
        <translation type="unfinished"/>
    </message>
    <message>
        <location filename="mainwindow.ui" line="1119"/>
        <source>Ctrl+I</source>
        <translation type="unfinished">Ctrl+I</translation>
    </message>
    <message>
        <location filename="mainwindow.ui" line="1128"/>
        <source>Settings</source>
        <translation type="unfinished">Nastavení</translation>
    </message>
    <message>
        <location filename="mainwindow.ui" line="1131"/>
        <source>&amp;Settings</source>
        <translation type="unfinished">&amp;Nastavení</translation>
    </message>
    <message>
        <location filename="mainwindow.ui" line="1134"/>
        <source>Configure settings and workarounds</source>
        <translation type="unfinished">Konfigurace a nastavení programu a různých řešení</translation>
    </message>
    <message>
        <location filename="mainwindow.ui" line="1137"/>
        <source>Ctrl+S</source>
        <translation type="unfinished">Ctrl+S</translation>
    </message>
    <message>
        <location filename="mainwindow.ui" line="1146"/>
        <source>Nexus</source>
        <translation type="unfinished">Nexus</translation>
    </message>
    <message>
        <location filename="mainwindow.ui" line="1149"/>
        <source>Search nexus network for more mods</source>
        <translation type="unfinished">Prohledat mody na nexusu</translation>
    </message>
    <message>
        <location filename="mainwindow.ui" line="1152"/>
        <source>Ctrl+N</source>
        <translation type="unfinished">Ctrl+N</translation>
    </message>
    <message>
        <location filename="mainwindow.ui" line="1164"/>
        <location filename="mainwindow.cpp" line="4402"/>
        <source>Update</source>
        <translation type="unfinished"/>
    </message>
    <message>
        <location filename="mainwindow.ui" line="1167"/>
        <source>Mod Organizer is up-to-date</source>
        <translation type="unfinished">Verze Mod Organizer u je aktuální</translation>
    </message>
    <message>
        <location filename="mainwindow.ui" line="1179"/>
        <location filename="mainwindow.cpp" line="498"/>
        <source>No Problems</source>
        <translation type="unfinished">Žádné problémy</translation>
    </message>
    <message>
        <location filename="mainwindow.ui" line="1182"/>
        <source>This button will be highlighted if MO discovered potential problems in your setup and provide tips on how to fix them.

!Work in progress!
Right now this has very limited functionality</source>
        <translation type="unfinished">Tohle tlačitko bude svítit pokud MO objeví potenciální problémy v programu a poskytne tipy jak je vyřešit.

!Ve vývoji!
V současnosti má omezenou funkcionalitu</translation>
    </message>
    <message>
        <location filename="mainwindow.ui" line="1194"/>
        <location filename="mainwindow.ui" line="1197"/>
        <source>Help</source>
        <translation type="unfinished">Pomoc</translation>
    </message>
    <message>
        <location filename="mainwindow.ui" line="1200"/>
        <source>Ctrl+H</source>
        <translation type="unfinished"/>
    </message>
    <message>
        <location filename="mainwindow.ui" line="1209"/>
        <source>Endorse MO</source>
        <translation type="unfinished"/>
    </message>
    <message>
        <location filename="mainwindow.ui" line="1212"/>
        <location filename="mainwindow.cpp" line="4483"/>
        <source>Endorse Mod Organizer</source>
        <translation type="unfinished"/>
    </message>
    <message>
        <location filename="mainwindow.cpp" line="215"/>
        <source>Toolbar</source>
        <translation type="unfinished"/>
    </message>
    <message>
        <location filename="mainwindow.cpp" line="216"/>
        <source>Desktop</source>
        <translation type="unfinished"/>
    </message>
    <message>
        <location filename="mainwindow.cpp" line="217"/>
        <source>Start Menu</source>
        <translation type="unfinished"/>
    </message>
    <message>
        <location filename="mainwindow.cpp" line="494"/>
        <source>Problems</source>
        <translation type="unfinished">Problémy</translation>
    </message>
    <message>
        <location filename="mainwindow.cpp" line="495"/>
        <source>There are potential problems with your setup</source>
        <translation type="unfinished">Existují potenciální problémy s programem</translation>
    </message>
    <message>
        <location filename="mainwindow.cpp" line="499"/>
        <source>Everything seems to be in order</source>
        <translation type="unfinished">Všechno se jeví v pořádku</translation>
    </message>
    <message>
        <location filename="mainwindow.cpp" line="551"/>
        <source>Help on UI</source>
        <translation type="unfinished">Pomoc s programem</translation>
    </message>
    <message>
        <location filename="mainwindow.cpp" line="555"/>
        <source>Documentation Wiki</source>
        <translation type="unfinished">Dokumentace wiki</translation>
    </message>
    <message>
        <location filename="mainwindow.cpp" line="559"/>
        <source>Report Issue</source>
        <translation type="unfinished">Nahlásit chybu</translation>
    </message>
    <message>
        <location filename="mainwindow.cpp" line="563"/>
        <source>Tutorials</source>
        <translation type="unfinished"/>
    </message>
    <message>
        <location filename="mainwindow.cpp" line="620"/>
        <source>failed to save archives order, do you have write access to "%1"?</source>
        <translation type="unfinished">zlyhal zápis pořadí archivů, máte administrátorsky povoleno zapisovat na "%1"?</translation>
    </message>
    <message>
        <location filename="mainwindow.cpp" line="690"/>
        <source>failed to save load order: %1</source>
        <translation type="unfinished">zlyhalo uložení pořadí načtení: %1</translation>
    </message>
    <message>
        <location filename="mainwindow.cpp" line="707"/>
        <source>Name</source>
        <translation type="unfinished">Jméno</translation>
    </message>
    <message>
        <location filename="mainwindow.cpp" line="708"/>
        <source>Please enter a name for the new profile</source>
        <translation type="unfinished">Prosím zadej jméno pro nový profil</translation>
    </message>
    <message>
        <location filename="mainwindow.cpp" line="716"/>
        <source>failed to create profile: %1</source>
        <translation type="unfinished">Zlyhalo vytvoření profilu: %1</translation>
    </message>
    <message>
        <location filename="mainwindow.cpp" line="759"/>
        <source>Show tutorial?</source>
        <translation type="unfinished"/>
    </message>
    <message>
        <location filename="mainwindow.cpp" line="760"/>
        <source>You are starting Mod Organizer for the first time. Do you want to show a tutorial of its basic features? If you choose no you can always start the tutorial from the "Help"-menu.</source>
        <translation type="unfinished"/>
    </message>
    <message>
        <location filename="mainwindow.cpp" line="789"/>
        <source>Downloads in progress</source>
        <translation type="unfinished">Probíhá stahování</translation>
    </message>
    <message>
        <location filename="mainwindow.cpp" line="790"/>
        <source>There are still downloads in progress, do you really want to quit?</source>
        <translation type="unfinished">Pořád probíhá stahování, určitě chcete skončit (zruší stahování)?</translation>
    </message>
    <message>
        <location filename="mainwindow.cpp" line="836"/>
        <source>failed to read savegame: %1</source>
        <translation type="unfinished">nezdařilo se načíst pozici: %1</translation>
    </message>
    <message>
        <location filename="mainwindow.cpp" line="960"/>
        <source>Plugin "%1" failed: %2</source>
        <translation type="unfinished"/>
    </message>
    <message>
        <location filename="mainwindow.cpp" line="962"/>
        <source>Plugin "%1" failed</source>
        <translation type="unfinished"/>
    </message>
    <message>
        <location filename="mainwindow.cpp" line="1029"/>
        <source>failed to init plugin %1: %2</source>
        <translation type="unfinished"/>
    </message>
    <message>
        <location filename="mainwindow.cpp" line="1067"/>
        <source>Plugin error</source>
        <translation type="unfinished"/>
    </message>
    <message>
        <location filename="mainwindow.cpp" line="1068"/>
        <source>It appears the plugin "%1" failed to load last startup and caused MO to crash. Do you want to disable it?
(Please note: If this is the first time you see this message for this plugin you may want to give it another try. The plugin may be able to recover from the problem)</source>
        <translation type="unfinished"/>
    </message>
    <message>
        <location filename="mainwindow.cpp" line="1252"/>
        <source>Failed to start "%1"</source>
        <translation type="unfinished">Zlyhal start "%1"</translation>
    </message>
    <message>
        <location filename="mainwindow.cpp" line="1254"/>
        <source>Waiting</source>
        <translation type="unfinished">Čekání</translation>
    </message>
    <message>
        <location filename="mainwindow.cpp" line="1254"/>
        <source>Please press OK once you're logged into steam.</source>
        <translation type="unfinished">Stiskni OK až budeš přihlášen do Steamu.</translation>
    </message>
    <message>
        <location filename="mainwindow.cpp" line="1266"/>
        <source>"%1" not found</source>
        <translation type="unfinished">"%1" nenalezeno</translation>
    </message>
    <message>
        <location filename="mainwindow.cpp" line="1280"/>
        <source>Start Steam?</source>
        <translation type="unfinished">Spustit Steam?</translation>
    </message>
    <message>
        <location filename="mainwindow.cpp" line="1281"/>
        <source>Steam is required to be running already to correctly start the game. Should MO try to start steam now?</source>
        <translation type="unfinished">Steam by měl běžet aby se podařilo spustit hru. Má se MO pokusit spustit steam teď?</translation>
    </message>
    <message>
        <location filename="mainwindow.cpp" line="1502"/>
        <source>Also in: &lt;br&gt;</source>
        <translation type="unfinished">Také v: &lt;br&gt;</translation>
    </message>
    <message>
        <location filename="mainwindow.cpp" line="1513"/>
        <source>No conflict</source>
        <translation type="unfinished">Žádné konflikty</translation>
    </message>
    <message>
        <location filename="mainwindow.cpp" line="1630"/>
        <source>&lt;Edit...&gt;</source>
        <translation type="unfinished">&lt;Edit...&gt;</translation>
    </message>
    <message>
        <location filename="mainwindow.cpp" line="1714"/>
        <source>Failed to refresh list of esps: %s</source>
        <translation type="unfinished"/>
    </message>
    <message>
        <location filename="mainwindow.cpp" line="1854"/>
        <source>This bsa is enabled in the ini file so it may be required!</source>
        <translation type="unfinished">Tenhle BSA soubor je aktivován v ini souboru, tak zřejmě je vyžadován!</translation>
    </message>
    <message>
        <location filename="mainwindow.cpp" line="1861"/>
        <source>This archive will still be loaded since there is a plugin of the same name but its files will not follow installation order!</source>
        <translation type="unfinished">Tento archív se stejně načte, protože existuje plugin se stejným jménem ale jeho soubory nebudou zodpovídat pořadí nainstalování!</translation>
    </message>
    <message>
        <location filename="mainwindow.cpp" line="1916"/>
        <source>Activating Network Proxy</source>
        <translation type="unfinished"/>
    </message>
    <message>
        <location filename="mainwindow.cpp" line="2047"/>
        <location filename="mainwindow.cpp" line="4150"/>
        <source>Installation successful</source>
        <translation type="unfinished">Instalace úspěšná</translation>
    </message>
    <message>
        <location filename="mainwindow.cpp" line="2058"/>
        <location filename="mainwindow.cpp" line="4163"/>
        <source>Configure Mod</source>
        <translation type="unfinished">Konfigurace Modu</translation>
    </message>
    <message>
        <location filename="mainwindow.cpp" line="2059"/>
        <location filename="mainwindow.cpp" line="4164"/>
        <source>This mod contains ini tweaks. Do you want to configure them now?</source>
        <translation type="unfinished">Tenhle mod obsahuje ini úpravy. Chcete je nastavovat teď?</translation>
    </message>
    <message>
        <location filename="mainwindow.cpp" line="2065"/>
        <location filename="mainwindow.cpp" line="4170"/>
        <source>mod "%1" not found</source>
        <translation type="unfinished">mod "%1" nenalezen</translation>
    </message>
    <message>
        <location filename="mainwindow.cpp" line="2068"/>
        <location filename="mainwindow.cpp" line="4176"/>
        <source>Installation cancelled</source>
        <translation type="unfinished">Instalace zrušena</translation>
    </message>
    <message>
        <location filename="mainwindow.cpp" line="2068"/>
        <location filename="mainwindow.cpp" line="4176"/>
        <source>The mod was not installed completely.</source>
        <translation type="unfinished">Tento mod se nenainstaloval úplne.</translation>
    </message>
    <message>
        <location filename="mainwindow.cpp" line="2217"/>
        <source>Some plugins could not be loaded</source>
        <translation type="unfinished"/>
    </message>
    <message>
        <location filename="mainwindow.cpp" line="2220"/>
        <source>Too many esps and esms enabled</source>
        <translation type="unfinished"/>
    </message>
    <message>
        <location filename="mainwindow.cpp" line="2223"/>
        <location filename="mainwindow.cpp" line="2244"/>
        <source>Description missing</source>
        <translation type="unfinished"/>
    </message>
    <message>
        <location filename="mainwindow.cpp" line="2232"/>
        <source>The following plugins could not be loaded. The reason may be missing dependencies (i.e. python) or an outdated version:</source>
        <translation type="unfinished"/>
    </message>
    <message>
        <location filename="mainwindow.cpp" line="2240"/>
        <source>The game doesn't allow more than 255 active plugins (including the official ones) to be loaded. You have to disable some unused plugins or merge some plugins into one. You can find a guide here: &lt;a href="http://wiki.step-project.com/Guide:Merging_Plugins"&gt;http://wiki.step-project.com/Guide:Merging_Plugins&lt;/a&gt;</source>
        <translation type="unfinished"/>
    </message>
    <message>
        <location filename="mainwindow.cpp" line="2266"/>
        <source>Choose Mod</source>
        <translation type="unfinished">Vyber Mod</translation>
    </message>
    <message>
        <location filename="mainwindow.cpp" line="2267"/>
        <source>Mod Archive</source>
        <translation type="unfinished">Archív Modu</translation>
    </message>
    <message>
        <location filename="mainwindow.cpp" line="2420"/>
        <source>Start Tutorial?</source>
        <translation type="unfinished"/>
    </message>
    <message>
        <location filename="mainwindow.cpp" line="2421"/>
        <source>You're about to start a tutorial. For technical reasons it's not possible to end the tutorial early. Continue?</source>
        <translation type="unfinished"/>
    </message>
    <message>
        <location filename="mainwindow.cpp" line="2576"/>
        <location filename="mainwindow.cpp" line="4073"/>
        <source>Download started</source>
        <translation type="unfinished">Stahování začalo</translation>
    </message>
    <message>
        <location filename="mainwindow.cpp" line="2607"/>
        <source>failed to update mod list: %1</source>
        <translation type="unfinished">nezdařilo se aktualizovat seznam modů: %1</translation>
    </message>
    <message>
        <location filename="mainwindow.cpp" line="2634"/>
        <source>failed to spawn notepad.exe: %1</source>
        <translation type="unfinished">zlyhalo otevření notepad.exe: %1</translation>
    </message>
    <message>
        <location filename="mainwindow.cpp" line="2675"/>
        <source>failed to open %1</source>
        <translation type="unfinished"/>
    </message>
    <message>
        <location filename="mainwindow.cpp" line="2753"/>
        <source>failed to change origin name: %1</source>
        <translation type="unfinished">Nezdařilo se změnit původní jméno: %1</translation>
    </message>
    <message>
        <location filename="mainwindow.cpp" line="2779"/>
        <source>Failed to move "%1" from mod "%2" to "%3": %4</source>
        <translation type="unfinished"/>
    </message>
    <message>
        <location filename="mainwindow.cpp" line="2828"/>
        <source>&lt;Checked&gt;</source>
        <translation type="unfinished">&lt;Aktivované&gt;</translation>
    </message>
    <message>
        <location filename="mainwindow.cpp" line="2829"/>
        <source>&lt;Unchecked&gt;</source>
        <translation type="unfinished">&lt;Neaktivované&gt;</translation>
    </message>
    <message>
        <location filename="mainwindow.cpp" line="2830"/>
        <source>&lt;Update&gt;</source>
        <translation type="unfinished">&lt;Aktualizace&gt;</translation>
    </message>
    <message>
        <location filename="mainwindow.cpp" line="2831"/>
        <source>&lt;No category&gt;</source>
        <translation type="unfinished">&lt;Bez kategorie&gt;</translation>
    </message>
    <message>
        <location filename="mainwindow.cpp" line="2832"/>
        <source>&lt;Conflicted&gt;</source>
        <translation type="unfinished"/>
    </message>
    <message>
        <location filename="mainwindow.cpp" line="2833"/>
        <source>&lt;Not Endorsed&gt;</source>
        <translation type="unfinished"/>
    </message>
    <message>
        <location filename="mainwindow.cpp" line="2866"/>
        <source>failed to rename mod: %1</source>
        <translation type="unfinished">Nezdařilo se přejmenovat mod: %1</translation>
    </message>
    <message>
        <location filename="mainwindow.cpp" line="2879"/>
        <source>Overwrite?</source>
        <translation type="unfinished"/>
    </message>
    <message>
        <location filename="mainwindow.cpp" line="2880"/>
        <source>This will replace the existing mod "%1". Continue?</source>
        <translation type="unfinished"/>
    </message>
    <message>
        <location filename="mainwindow.cpp" line="2883"/>
        <source>failed to remove mod "%1"</source>
        <translation type="unfinished"/>
    </message>
    <message>
        <location filename="mainwindow.cpp" line="2887"/>
        <location filename="mainwindow.cpp" line="4348"/>
        <location filename="mainwindow.cpp" line="4372"/>
        <source>failed to rename "%1" to "%2"</source>
        <translation type="unfinished">Nezdařilo se přejmenovat "%1" na "%2"</translation>
    </message>
    <message>
        <location filename="mainwindow.cpp" line="2916"/>
        <source>Multiple esps activated, please check that they don't conflict.</source>
        <translation type="unfinished"/>
    </message>
    <message>
        <location filename="mainwindow.cpp" line="2942"/>
        <location filename="mainwindow.cpp" line="3602"/>
        <location filename="mainwindow.cpp" line="3610"/>
        <source>Confirm</source>
        <translation type="unfinished">Potvrdit</translation>
    </message>
    <message>
        <location filename="mainwindow.cpp" line="2943"/>
        <source>Remove the following mods?&lt;br&gt;&lt;ul&gt;%1&lt;/ul&gt;</source>
        <translation type="unfinished"/>
    </message>
    <message>
        <location filename="mainwindow.cpp" line="2954"/>
        <source>failed to remove mod: %1</source>
        <translation type="unfinished">Nezdařilo se odstranit mod: %1</translation>
    </message>
    <message>
        <location filename="mainwindow.cpp" line="2989"/>
        <location filename="mainwindow.cpp" line="2992"/>
        <source>Failed</source>
        <translation type="unfinished">Zlyhání</translation>
    </message>
    <message>
        <location filename="mainwindow.cpp" line="2989"/>
        <source>Installation file no longer exists</source>
        <translation type="unfinished">Instalační soubor již neexistuje</translation>
    </message>
    <message>
        <location filename="mainwindow.cpp" line="2993"/>
        <source>Mods installed with old versions of MO can't be reinstalled in this way.</source>
        <translation type="unfinished">Mody nainstalovány staršími verzemi MO nemůžou být přeinstalovány tímto spůsobem.</translation>
    </message>
    <message>
        <location filename="mainwindow.cpp" line="3008"/>
        <location filename="mainwindow.cpp" line="3035"/>
        <source>You need to be logged in with Nexus to endorse</source>
        <translation type="unfinished"/>
    </message>
    <message>
        <location filename="mainwindow.cpp" line="3164"/>
        <location filename="mainwindow.cpp" line="4732"/>
        <source>Extract BSA</source>
        <translation type="unfinished">Extrakce BSA</translation>
    </message>
    <message>
        <location filename="mainwindow.cpp" line="3165"/>
        <source>This mod contains at least one BSA. Do you want to unpack it?
(This removes the BSA after completion. If you don't know about BSAs, just select no)</source>
        <translation type="unfinished">Tento mod obsahuje alespoň jeden BSA soubor. Chcete rozpakovat i jeho obsah?
(BSA se po úspěšném rozpakování odstrání. Pokud nevíte, co je BSA, zvolte možnost Ne)</translation>
    </message>
    <message>
        <location filename="mainwindow.cpp" line="3174"/>
        <location filename="mainwindow.cpp" line="4689"/>
        <location filename="mainwindow.cpp" line="4740"/>
        <source>failed to read %1: %2</source>
        <translation type="unfinished"/>
    </message>
    <message>
        <location filename="mainwindow.cpp" line="3187"/>
        <location filename="mainwindow.cpp" line="4751"/>
        <source>This archive contains invalid hashes. Some files may be broken.</source>
        <translation type="unfinished">Tento archiv má neplatné identifikační součty. Nekteré soubory mohou být poškozeny.</translation>
    </message>
    <message>
        <location filename="mainwindow.cpp" line="3221"/>
        <source>Nexus ID for this Mod is unknown</source>
        <translation type="unfinished">Nexus ID pro tento Mod není známo</translation>
    </message>
    <message>
        <location filename="mainwindow.cpp" line="3260"/>
        <location filename="mainwindow.cpp" line="3707"/>
        <source>Create Mod...</source>
        <translation type="unfinished"/>
    </message>
    <message>
        <location filename="mainwindow.cpp" line="3261"/>
        <source>This will move all files from overwrite into a new, regular mod.
Please enter a name:</source>
        <translation type="unfinished"/>
    </message>
    <message>
        <location filename="mainwindow.cpp" line="3270"/>
        <source>A mod with this name already exists</source>
        <translation type="unfinished"/>
    </message>
    <message>
        <location filename="mainwindow.cpp" line="3528"/>
        <source>Continue?</source>
        <translation type="unfinished"/>
    </message>
    <message>
        <location filename="mainwindow.cpp" line="3529"/>
        <source>The versioning scheme decides which version is considered newer than another.
This function will guess the versioning scheme under the assumption that the installed version is outdated.</source>
        <translation type="unfinished"/>
    </message>
    <message>
        <location filename="mainwindow.cpp" line="3549"/>
        <source>Sorry</source>
        <translation type="unfinished"/>
    </message>
    <message>
        <location filename="mainwindow.cpp" line="3550"/>
        <source>I don't know a versioning scheme where %1 is newer than %2.</source>
        <translation type="unfinished"/>
    </message>
    <message>
        <location filename="mainwindow.cpp" line="3602"/>
        <source>Really enable all visible mods?</source>
        <translation type="unfinished">Opravdu aktivovat všechny zobrazené mody?</translation>
    </message>
    <message>
        <location filename="mainwindow.cpp" line="3610"/>
        <source>Really disable all visible mods?</source>
        <translation type="unfinished">Opravdu deaktivovat všechny zobrazené mody?</translation>
    </message>
    <message>
        <location filename="mainwindow.cpp" line="3618"/>
        <source>Choose what to export</source>
        <translation type="unfinished"/>
    </message>
    <message>
        <location filename="mainwindow.cpp" line="3620"/>
        <source>Everything</source>
        <translation type="unfinished"/>
    </message>
    <message>
        <location filename="mainwindow.cpp" line="3620"/>
        <source>All installed mods are included in the list</source>
        <translation type="unfinished"/>
    </message>
    <message>
        <location filename="mainwindow.cpp" line="3621"/>
        <source>Active Mods</source>
        <translation type="unfinished"/>
    </message>
    <message>
        <location filename="mainwindow.cpp" line="3621"/>
        <source>Only active (checked) mods from your current profile are included</source>
        <translation type="unfinished"/>
    </message>
    <message>
        <location filename="mainwindow.cpp" line="3622"/>
        <source>Visible</source>
        <translation type="unfinished"/>
    </message>
    <message>
        <location filename="mainwindow.cpp" line="3622"/>
        <source>All mods visible in the mod list are included</source>
        <translation type="unfinished"/>
    </message>
    <message>
        <location filename="mainwindow.cpp" line="3665"/>
        <source>export failed: %1</source>
        <translation type="unfinished"/>
    </message>
    <message>
        <location filename="mainwindow.cpp" line="3689"/>
        <source>Install Mod...</source>
        <translation type="unfinished">Instaluj Mod...</translation>
    </message>
    <message>
        <location filename="mainwindow.cpp" line="3691"/>
        <source>Enable all visible</source>
        <translation type="unfinished">Aktivuj všechny v seznamu</translation>
    </message>
    <message>
        <location filename="mainwindow.cpp" line="3692"/>
        <source>Disable all visible</source>
        <translation type="unfinished">Deaktivuj všechny v seznamu</translation>
    </message>
    <message>
        <location filename="mainwindow.cpp" line="3694"/>
        <source>Check all for update</source>
        <translation type="unfinished">Skontroluj všechny pro aktualizaci</translation>
    </message>
    <message>
        <location filename="mainwindow.cpp" line="3698"/>
        <source>Export to csv...</source>
        <translation type="unfinished"/>
    </message>
    <message>
        <location filename="mainwindow.cpp" line="3706"/>
        <source>Sync to Mods...</source>
        <translation type="unfinished">Synchronizuj s Mody...</translation>
    </message>
    <message>
        <location filename="mainwindow.cpp" line="3710"/>
        <source>Restore Backup</source>
        <translation type="unfinished"/>
    </message>
    <message>
        <location filename="mainwindow.cpp" line="3711"/>
        <source>Remove Backup...</source>
        <translation type="unfinished"/>
    </message>
    <message>
        <location filename="mainwindow.cpp" line="3713"/>
        <source>Add/Remove Categories</source>
        <translation type="unfinished"/>
    </message>
    <message>
        <location filename="mainwindow.cpp" line="3718"/>
        <source>Replace Categories</source>
        <translation type="unfinished"/>
    </message>
    <message>
        <location filename="mainwindow.cpp" line="3723"/>
        <source>Primary Category</source>
        <translation type="unfinished"/>
    </message>
    <message>
        <location filename="mainwindow.cpp" line="3730"/>
        <source>Change versioning scheme</source>
        <translation type="unfinished"/>
    </message>
    <message>
        <location filename="mainwindow.cpp" line="3734"/>
        <source>Un-ignore update</source>
        <translation type="unfinished"/>
    </message>
    <message>
        <location filename="mainwindow.cpp" line="3736"/>
        <source>Ignore update</source>
        <translation type="unfinished"/>
    </message>
    <message>
        <location filename="mainwindow.cpp" line="3741"/>
        <source>Rename Mod...</source>
        <translation type="unfinished">Přejmenuj Mod...</translation>
    </message>
    <message>
        <location filename="mainwindow.cpp" line="3742"/>
        <source>Remove Mod...</source>
        <translation type="unfinished">Odstranit Mod...</translation>
    </message>
    <message>
        <location filename="mainwindow.cpp" line="3743"/>
        <source>Reinstall Mod</source>
        <translation type="unfinished">Přeinstaluj Mod</translation>
    </message>
    <message>
        <location filename="mainwindow.cpp" line="3746"/>
        <source>Un-Endorse</source>
        <translation type="unfinished"/>
    </message>
    <message>
        <location filename="mainwindow.cpp" line="3749"/>
        <location filename="mainwindow.cpp" line="3753"/>
        <source>Endorse</source>
        <translation type="unfinished"/>
    </message>
    <message>
        <location filename="mainwindow.cpp" line="3750"/>
        <source>Won't endorse</source>
        <translation type="unfinished"/>
    </message>
    <message>
        <location filename="mainwindow.cpp" line="3756"/>
        <source>Endorsement state unknown</source>
        <translation type="unfinished"/>
    </message>
    <message>
        <location filename="mainwindow.cpp" line="3763"/>
        <source>Ignore missing data</source>
        <translation type="unfinished"/>
    </message>
    <message>
        <location filename="mainwindow.cpp" line="3766"/>
        <source>Visit on Nexus</source>
        <translation type="unfinished">Navštiv na Nexusu</translation>
    </message>
    <message>
        <location filename="mainwindow.cpp" line="3767"/>
        <source>Open in explorer</source>
        <translation type="unfinished">Otevři v prohlížeči</translation>
    </message>
    <message>
        <location filename="mainwindow.cpp" line="3770"/>
        <source>Information...</source>
        <translation type="unfinished">Informace...</translation>
    </message>
    <message>
        <location filename="mainwindow.cpp" line="3776"/>
        <location filename="mainwindow.cpp" line="4936"/>
        <source>Exception: </source>
        <translation type="unfinished">Výnimky:</translation>
    </message>
    <message>
        <location filename="mainwindow.cpp" line="3778"/>
        <location filename="mainwindow.cpp" line="4938"/>
        <source>Unknown exception</source>
        <translation type="unfinished">Neznámá výnimka</translation>
    </message>
    <message>
        <location filename="mainwindow.cpp" line="3798"/>
        <source>&lt;All&gt;</source>
        <translation type="unfinished">&lt;Všechny&gt;</translation>
    </message>
    <message>
        <location filename="mainwindow.cpp" line="3800"/>
        <source>&lt;Multiple&gt;</source>
        <translation type="unfinished"/>
    </message>
    <message>
        <location filename="mainwindow.cpp" line="3912"/>
        <source>Fix Mods...</source>
        <translation type="unfinished">Oprav Mody...</translation>
    </message>
    <message>
        <location filename="mainwindow.cpp" line="3936"/>
        <location filename="mainwindow.cpp" line="3967"/>
        <source>failed to remove %1</source>
        <translation type="unfinished"/>
    </message>
    <message>
        <location filename="mainwindow.cpp" line="3951"/>
        <location filename="mainwindow.cpp" line="3982"/>
        <source>failed to create %1</source>
        <translation type="unfinished"/>
    </message>
    <message>
        <location filename="mainwindow.cpp" line="4005"/>
        <source>Can't change download directory while downloads are in progress!</source>
        <translation type="unfinished">Není možné změnit cíl pro stahování když probíhá stahování!</translation>
    </message>
    <message>
        <location filename="mainwindow.cpp" line="4076"/>
        <source>Download failed</source>
        <translation type="unfinished">Stahování zlyhalo</translation>
    </message>
    <message>
        <location filename="mainwindow.cpp" line="4225"/>
        <source>failed to write to file %1</source>
        <translation type="unfinished">Nezdařil se zápis do souboru %1</translation>
    </message>
    <message>
        <location filename="mainwindow.cpp" line="4231"/>
        <source>%1 written</source>
        <translation type="unfinished">%1 zapsáno</translation>
    </message>
    <message>
        <location filename="mainwindow.cpp" line="4270"/>
        <source>Select binary</source>
        <translation type="unfinished">Vyber binární soubor</translation>
    </message>
    <message>
        <location filename="mainwindow.cpp" line="4270"/>
        <source>Binary</source>
        <translation type="unfinished">Soubor</translation>
    </message>
    <message>
        <location filename="mainwindow.cpp" line="4296"/>
        <source>Enter Name</source>
        <translation type="unfinished">Zadej jméno</translation>
    </message>
    <message>
        <location filename="mainwindow.cpp" line="4297"/>
        <source>Please enter a name for the executable</source>
        <translation type="unfinished">Prosím zadej jméno pro spouštění</translation>
    </message>
    <message>
        <location filename="mainwindow.cpp" line="4308"/>
        <source>Not an executable</source>
        <translation type="unfinished">Není spustitelný</translation>
    </message>
    <message>
        <location filename="mainwindow.cpp" line="4308"/>
        <source>This is not a recognized executable.</source>
        <translation type="unfinished">Tenhle soubor není rozpoznán jako spustitelný.</translation>
    </message>
    <message>
        <location filename="mainwindow.cpp" line="4333"/>
        <location filename="mainwindow.cpp" line="4358"/>
        <source>Replace file?</source>
        <translation type="unfinished">Nahradit soubor?</translation>
    </message>
    <message>
        <location filename="mainwindow.cpp" line="4333"/>
        <source>There already is a hidden version of this file. Replace it?</source>
        <translation type="unfinished">Už existuje skrytá verze tohto souboru. Nahradit?</translation>
    </message>
    <message>
        <location filename="mainwindow.cpp" line="4336"/>
        <location filename="mainwindow.cpp" line="4361"/>
        <source>File operation failed</source>
        <translation type="unfinished">Operace se souborem zlyhala</translation>
    </message>
    <message>
        <location filename="mainwindow.cpp" line="4336"/>
        <location filename="mainwindow.cpp" line="4361"/>
        <source>Failed to remove "%1". Maybe you lack the required file permissions?</source>
        <translation type="unfinished">Nepodařilo se odstranit "%1". Možná nejsou k dispozici požadována práva?</translation>
    </message>
    <message>
        <location filename="mainwindow.cpp" line="4358"/>
        <source>There already is a visible version of this file. Replace it?</source>
        <translation type="unfinished">Už existuje viditelná verze tohto souboru. Nahradit?</translation>
    </message>
    <message>
        <location filename="mainwindow.cpp" line="4404"/>
        <source>Update available</source>
        <translation type="unfinished">Aktualizace k dispozici</translation>
    </message>
    <message>
        <location filename="mainwindow.cpp" line="4441"/>
        <source>Open/Execute</source>
        <translation type="unfinished">Otevřít/Spustit</translation>
    </message>
    <message>
        <location filename="mainwindow.cpp" line="4442"/>
        <source>Add as Executable</source>
        <translation type="unfinished">Přidat Spouštení</translation>
    </message>
    <message>
        <location filename="mainwindow.cpp" line="4446"/>
        <source>Un-Hide</source>
        <translation type="unfinished">Odekrýt</translation>
    </message>
    <message>
        <location filename="mainwindow.cpp" line="4448"/>
        <source>Hide</source>
        <translation type="unfinished">Skrýt</translation>
    </message>
    <message>
        <location filename="mainwindow.cpp" line="4453"/>
        <source>Write To File...</source>
        <translation type="unfinished">Zápis do souboru...</translation>
    </message>
    <message>
        <location filename="mainwindow.cpp" line="4484"/>
        <source>Do you want to endorse Mod Organizer on %1 now?</source>
        <translation type="unfinished"/>
    </message>
    <message>
        <location filename="mainwindow.cpp" line="4620"/>
        <source>Request to Nexus failed: %1</source>
        <translation type="unfinished"/>
    </message>
    <message>
        <location filename="mainwindow.cpp" line="4627"/>
        <location filename="mainwindow.cpp" line="4644"/>
        <source>login successful</source>
        <translation type="unfinished"/>
    </message>
    <message>
        <location filename="mainwindow.cpp" line="4653"/>
        <source>login failed: %1. Trying to download anyway</source>
        <translation type="unfinished">přihlášení zlyhalo: %1. Pokouším se beztak stahovat</translation>
    </message>
    <message>
        <location filename="mainwindow.cpp" line="4659"/>
        <source>login failed: %1</source>
        <translation type="unfinished"/>
    </message>
    <message>
        <location filename="mainwindow.cpp" line="4668"/>
        <source>login failed: %1. You need to log-in with Nexus to update MO.</source>
        <translation type="unfinished">přihlášení zlyhalo: %1. Na aktualizaci MO je potřebné přihlášení k Nexusu.</translation>
    </message>
    <message>
        <location filename="mainwindow.cpp" line="4701"/>
        <source>Error</source>
        <translation type="unfinished">Chyba</translation>
    </message>
    <message>
        <location filename="mainwindow.cpp" line="4701"/>
        <source>failed to extract %1 (errorcode %2)</source>
        <translation type="unfinished">zlyhala extrakce %1 (errorcode %2)</translation>
    </message>
    <message>
        <location filename="mainwindow.cpp" line="4796"/>
        <source>Extract...</source>
        <translation type="unfinished">Extrakce...</translation>
    </message>
    <message>
        <location filename="mainwindow.cpp" line="4852"/>
        <source>Edit Categories...</source>
        <translation type="unfinished">Editovat Kategorie...</translation>
    </message>
    <message>
        <location filename="mainwindow.cpp" line="4897"/>
        <source>Remove</source>
        <translation type="unfinished"/>
    </message>
    <message>
        <location filename="mainwindow.cpp" line="4907"/>
        <source>Enable all</source>
        <translation type="unfinished"/>
    </message>
    <message>
        <location filename="mainwindow.cpp" line="4908"/>
        <source>Disable all</source>
        <translation type="unfinished"/>
    </message>
    <message>
        <location filename="mainwindow.cpp" line="4927"/>
        <source>Unlock load order</source>
        <translation type="unfinished"/>
    </message>
    <message>
        <location filename="mainwindow.cpp" line="4930"/>
        <source>Lock load order</source>
        <translation type="unfinished"/>
    </message>
</context>
<context>
    <name>MessageDialog</name>
    <message>
        <location filename="messagedialog.ui" line="150"/>
        <location filename="messagedialog.ui" line="180"/>
        <source>Placeholder</source>
        <translation>#Placeholder</translation>
    </message>
</context>
<context>
    <name>ModInfo</name>
    <message>
        <location filename="modinfo.cpp" line="96"/>
        <location filename="modinfo.cpp" line="125"/>
        <source>invalid index %1</source>
        <translation>neplatný index %1</translation>
    </message>
</context>
<context>
    <name>ModInfoBackup</name>
    <message>
        <location filename="modinfo.cpp" line="820"/>
        <source>This is the backup of a mod</source>
        <translation type="unfinished"/>
    </message>
</context>
<context>
    <name>ModInfoDialog</name>
    <message>
        <location filename="modinfodialog.ui" line="14"/>
        <source>Mod Info</source>
        <translation>Informace o modu</translation>
    </message>
    <message>
        <location filename="modinfodialog.ui" line="27"/>
        <source>Textfiles</source>
        <translation>Textové soubory</translation>
    </message>
    <message>
        <location filename="modinfodialog.ui" line="39"/>
        <source>A list of text-files in the mod directory.</source>
        <translation>Seznam textových souborů obsažených v modu.</translation>
    </message>
    <message>
        <location filename="modinfodialog.ui" line="42"/>
        <source>A list of text-files in the mod directory like readmes. </source>
        <translation>Seznam textových souborů obsažených v modu, například readme.</translation>
    </message>
    <message>
        <location filename="modinfodialog.ui" line="64"/>
        <location filename="modinfodialog.ui" line="152"/>
        <source>Save</source>
        <translation>Uložit</translation>
    </message>
    <message>
        <location filename="modinfodialog.ui" line="74"/>
        <source>INI-Files</source>
        <translation>INI soubory</translation>
    </message>
    <message>
        <location filename="modinfodialog.ui" line="94"/>
        <source>This is a list of .ini files in the mod.</source>
        <translation>Tohle je seznam .ini souborů v modu.</translation>
    </message>
    <message>
        <location filename="modinfodialog.ui" line="97"/>
        <source>This is a list of .ini files in the mod. These are usually used to configure the behaviour of mods if there are configurable parameters.</source>
        <translation>Tohle je seznam .ini souborů v modu. Dají se upravovat pro zmenu konfigurace a chování modu, pokud umožňuje takové parametry.</translation>
    </message>
    <message>
        <location filename="modinfodialog.ui" line="146"/>
        <source>Save changes to the file.</source>
        <translation>Uložit změny do souboru.</translation>
    </message>
    <message>
        <location filename="modinfodialog.ui" line="149"/>
        <source>Save changes to the file. This overwrites the original. There is no automatic backup!</source>
        <translation>Uložit změny do souboru.Tohle přepíše původní soubor. Nevytváří se žádná automatická záloha!</translation>
    </message>
    <message>
        <location filename="modinfodialog.ui" line="162"/>
        <source>Images</source>
        <translation>Obrázky</translation>
    </message>
    <message>
        <location filename="modinfodialog.ui" line="217"/>
        <source>Images located in the mod.</source>
        <translation>Obrázky obsažené v modu.</translation>
    </message>
    <message>
        <location filename="modinfodialog.ui" line="220"/>
        <source>This lists all the images (.jpg and .png) in the mod directory, like screenshots and such. Click one to get a larger view.</source>
        <translation type="unfinished"/>
    </message>
    <message>
        <location filename="modinfodialog.ui" line="253"/>
        <location filename="modinfodialog.ui" line="272"/>
        <source>Optional ESPs</source>
        <translation>Volitelné ESP</translation>
    </message>
    <message>
        <location filename="modinfodialog.ui" line="259"/>
        <source>List of esps and esms that can not be loaded by the game.</source>
        <translation>Seznam souborů .esp a .esm, které nebudou načteni do hry. </translation>
    </message>
    <message>
        <location filename="modinfodialog.ui" line="262"/>
        <source>List of esps and esms contained in this plugin that currently can not be loaded by the game. They will not even appear in the esp-list in the main MO-window.
They usually contain optional functionality, see the readme.

Most mods do not have optional esps, so chances are good you are looking at an empty list.</source>
        <translation type="unfinished"/>
    </message>
    <message>
        <location filename="modinfodialog.ui" line="287"/>
        <source>Make the selected mod in the lower list unavailable.</source>
        <translation>Znepřístupni označený mod v seznamu dolů.</translation>
    </message>
    <message>
        <location filename="modinfodialog.ui" line="290"/>
        <source>The selected esp (in the lower list) will be pushed into a subdirectory of the mod and will thus become "invisible" to the game. It can then no longer be activated.</source>
        <translation>Označený soubor esp (v seznamu dolů) bude přemístěn do podadresáře modu a tak se stane "neviditelným" pro hru. V takovem stavu se nedá aktivovat.</translation>
    </message>
    <message>
        <location filename="modinfodialog.ui" line="316"/>
        <source>Move a file to the data directory.</source>
        <translation>Přesuň soubor mezi Data.</translation>
    </message>
    <message>
        <location filename="modinfodialog.ui" line="319"/>
        <source>This moves a esp to the esp directory so it can be enabled in the main window. Please note that the ESP merely becomes "available", it will not necessarily be loaded! That is configured in the main window of omo.</source>
        <translation>Přesune soubor esp do adresáře, kde má být, aby mohl být aktivován. Prosím berte na vědomí, že tato akce jenom soubor "zpřistupní", nedělá ho automaticky aktivním. To se pak aktivuje v hlavním oknu mezi esp.</translation>
    </message>
    <message>
        <location filename="modinfodialog.ui" line="354"/>
        <source>ESPs in the data directory and thus visible to the game.</source>
        <translation>ESP soubory mezi Data a tedy přístupné pro hru.</translation>
    </message>
    <message>
        <location filename="modinfodialog.ui" line="357"/>
        <source>These are the mod files that are in the (virtual) data directory of your game and will thus be selecteable in the esp list in the main window.</source>
        <translation>Tady jsou soubory modu, které se nacházejí ve (virtuálním) data adresáři hry a proto je bude možné aktivovat v seznamu esp v hlavním okně.</translation>
    </message>
    <message>
        <location filename="modinfodialog.ui" line="364"/>
        <source>Available ESPs</source>
        <translation>ESP k dispozici</translation>
    </message>
    <message>
        <location filename="modinfodialog.ui" line="372"/>
        <source>Conflicts</source>
        <translation>Konflikty</translation>
    </message>
    <message>
        <location filename="modinfodialog.ui" line="380"/>
        <source>The following conflicted files are provided by this mod</source>
        <translation>Konfliktní soubory, které budou přebity tímhle modem</translation>
    </message>
    <message>
        <location filename="modinfodialog.ui" line="430"/>
        <location filename="modinfodialog.ui" line="480"/>
        <source>File</source>
        <translation>Soubor</translation>
    </message>
    <message>
        <location filename="modinfodialog.ui" line="435"/>
        <source>Overwritten Mods</source>
        <translation>Přepsané mody</translation>
    </message>
    <message>
        <location filename="modinfodialog.ui" line="445"/>
        <source>The following conflicted files are provided by other mods</source>
        <translation>Konfliktní soubory, které další mody přebijou</translation>
    </message>
    <message>
        <location filename="modinfodialog.ui" line="485"/>
        <source>Providing Mod</source>
        <translation>Mod původu</translation>
    </message>
    <message>
        <location filename="modinfodialog.ui" line="495"/>
        <source>Non-Conflicted files</source>
        <translation>Nekonfliktní soubory</translation>
    </message>
    <message>
        <location filename="modinfodialog.ui" line="515"/>
        <source>Categories</source>
        <translation>Kategorie</translation>
    </message>
    <message>
        <location filename="modinfodialog.ui" line="538"/>
        <source>Primary Category</source>
        <translation type="unfinished"/>
    </message>
    <message>
        <location filename="modinfodialog.ui" line="555"/>
        <source>Nexus Info</source>
        <translation>Nexus Info</translation>
    </message>
    <message>
        <location filename="modinfodialog.ui" line="563"/>
        <source>Mod ID</source>
        <translation>Mod ID</translation>
    </message>
    <message>
        <location filename="modinfodialog.ui" line="570"/>
        <source>Mod ID for this mod on Nexus.</source>
        <translation>Mod ID tohodle modu na Nexusu.</translation>
    </message>
    <message>
        <location filename="modinfodialog.ui" line="573"/>
        <source>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&gt;
p, li { white-space: pre-wrap; }
&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;Mod ID for this mod on Nexus. This is filled in automatically if you downloaded and installed the mod from inside MO. Otherwise you can enter it manually. To find the correct id, find the mod on nexus. The URL will look like this: &lt;/span&gt;&lt;a href=" http://www.skyrimnexus.com/downloads/file.php?id=1334"&gt;&lt;span style=" font-size:8pt; text-decoration: underline; color:#0000ff;"&gt;http://skyrim.nexusmods.com/downloads/file.php?id=1334&lt;/span&gt;&lt;/a&gt;&lt;a href="http://www.skyrimnexus.com/downloads/file.php?id=1334"&gt;&lt;span style=" font-size:8pt; color:#000000;"&gt;. In this example, 1334 is the id you're looking for. Besides: The above is the link to Mod Organizer on the Nexus. Why not go there now and endorse?&lt;/span&gt;&lt;/a&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
        <translation>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&gt;
p, li { white-space: pre-wrap; }
&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;Mod ID pro tenhle mod na Nexusu. Vyplňuje se automaticky pokud ste soubor i stáhli i nainstalovali přímo skrz MO. Jinak ho můžete zadat ručne. Správne ID naleznete u modu na Nexusu. Adresa bude vypadat takhle: &lt;/span&gt;&lt;a href=" http://www.skyrimnexus.com/downloads/file.php?id=1334"&gt;&lt;span style=" font-size:8pt; text-decoration: underline; color:#0000ff;"&gt;http://skyrim.nexusmods.com/downloads/file.php?id=1334&lt;/span&gt;&lt;/a&gt;&lt;a href="http://www.skyrimnexus.com/downloads/file.php?id=1334"&gt;&lt;span style=" font-size:8pt; color:#000000;"&gt;. V takovem případe 1334 je Mod ID. Mimo jiné odkaz je přímo na Mod Organizer tak proč rovnou nejít zadat Endorse?&lt;/span&gt;&lt;/a&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
    </message>
    <message>
        <location filename="modinfodialog.ui" line="597"/>
        <source>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&gt;
p, li { white-space: pre-wrap; }
&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;Installed Version of the Mod. The tooltip will contain the current version available on nexus. The installed version is only set if you installed the mod through MO.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
        <translation>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&gt;
p, li { white-space: pre-wrap; }
&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;Nainstalovaná verze modu. Bublina ukáže číslo nejaktuálnější verzi modu na Nexusu. Číslo verze se nastaví samo jenom pokud byl mod nainstalován skrz MO.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
    </message>
    <message>
        <location filename="modinfodialog.ui" line="604"/>
        <source>Version</source>
        <translation>Verze</translation>
    </message>
    <message>
        <location filename="modinfodialog.ui" line="634"/>
        <source>Refresh</source>
        <translation type="unfinished">Znovunačíst</translation>
    </message>
    <message>
        <location filename="modinfodialog.ui" line="637"/>
        <source>Refresh all information from Nexus.</source>
        <translation type="unfinished"/>
    </message>
    <message>
        <location filename="modinfodialog.ui" line="651"/>
        <source>Description</source>
        <translation>Popis</translation>
    </message>
    <message>
        <location filename="modinfodialog.ui" line="666"/>
        <source>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&gt;
p, li { white-space: pre-wrap; }
&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:7.8pt; font-weight:400; font-style:normal;"&gt;
&lt;p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;br /&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
        <translation type="unfinished"/>
    </message>
    <message>
        <location filename="modinfodialog.ui" line="701"/>
        <source>Endorse</source>
        <translation type="unfinished"/>
    </message>
    <message>
        <location filename="modinfodialog.ui" line="715"/>
        <source>Notes</source>
        <translation type="unfinished"/>
    </message>
    <message>
        <location filename="modinfodialog.ui" line="725"/>
        <source>Filetree</source>
        <translation>Struktura souborů</translation>
    </message>
    <message>
        <location filename="modinfodialog.ui" line="734"/>
        <source>A directory view of this mod</source>
        <translation>Zložkový náhled na mod</translation>
    </message>
    <message>
        <location filename="modinfodialog.ui" line="737"/>
        <source>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&gt;
p, li { white-space: pre-wrap; }
&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;This is a modifiable directory view of the mod directory. You can move around files using drag &amp;amp; drop and rename them (double click).&lt;/span&gt;&lt;/p&gt;
&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;Changes happen immediately on disc, so do&lt;/span&gt;&lt;span style=" font-size:8pt; font-weight:600;"&gt; be careful&lt;/span&gt;&lt;span style=" font-size:8pt;"&gt;.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
        <translation>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&gt;
p, li { white-space: pre-wrap; }
&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;Tohle je pohled na strukturu, kterou můžete ručně měnit. Můžete přesouvat soubory taháním myší a přejmenovávat je (dvojklikem).&lt;/span&gt;&lt;/p&gt;
&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;Zmeny se okamžite dejí přimo na disku, takže&lt;/span&gt;&lt;span style=" font-size:8pt; font-weight:600;"&gt;buďte opatrní&lt;/span&gt;&lt;span style=" font-size:8pt;"&gt;.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
    </message>
    <message>
        <location filename="modinfodialog.ui" line="764"/>
        <source>Previous</source>
        <translation type="unfinished"/>
    </message>
    <message>
        <location filename="modinfodialog.ui" line="771"/>
        <source>Next</source>
        <translation type="unfinished"/>
    </message>
    <message>
        <location filename="modinfodialog.ui" line="791"/>
        <source>Close</source>
        <translation>Zavřít</translation>
    </message>
    <message>
        <location filename="modinfodialog.cpp" line="108"/>
        <source>&amp;Delete</source>
        <translation>&amp;Smazat</translation>
    </message>
    <message>
        <location filename="modinfodialog.cpp" line="109"/>
        <source>&amp;Rename</source>
        <translation>&amp;Přejmenovat</translation>
    </message>
    <message>
        <location filename="modinfodialog.cpp" line="110"/>
        <source>&amp;Hide</source>
        <translation>&amp;Skrýt</translation>
    </message>
    <message>
        <location filename="modinfodialog.cpp" line="111"/>
        <source>&amp;Unhide</source>
        <translation>&amp;Odekrýt</translation>
    </message>
    <message>
        <location filename="modinfodialog.cpp" line="112"/>
        <source>&amp;Open</source>
        <translation>&amp;Otevřít</translation>
    </message>
    <message>
        <location filename="modinfodialog.cpp" line="113"/>
        <source>&amp;New Folder</source>
        <translation>&amp;Nová Složka</translation>
    </message>
    <message>
        <location filename="modinfodialog.cpp" line="354"/>
        <location filename="modinfodialog.cpp" line="369"/>
        <source>Save changes?</source>
        <translation>Uložit změny?</translation>
    </message>
    <message>
        <location filename="modinfodialog.cpp" line="354"/>
        <location filename="modinfodialog.cpp" line="369"/>
        <source>Save changes to "%1"?</source>
        <translation type="unfinished"/>
    </message>
    <message>
        <location filename="modinfodialog.cpp" line="570"/>
        <source>File Exists</source>
        <translation>Soubor existuje</translation>
    </message>
    <message>
        <location filename="modinfodialog.cpp" line="570"/>
        <source>A file with that name exists, please enter a new one</source>
        <translation>Soubor s rovnakým názvem existuje, prosím zadejte jiné jméno</translation>
    </message>
    <message>
        <location filename="modinfodialog.cpp" line="587"/>
        <source>failed to move file</source>
        <translation>zlyhalo přesunutí souboru</translation>
    </message>
    <message>
        <location filename="modinfodialog.cpp" line="612"/>
        <source>failed to create directory "optional"</source>
        <translation>zlyhalo vytvoření zložky "optional"</translation>
    </message>
    <message>
        <location filename="modinfodialog.cpp" line="650"/>
        <location filename="modinfodialog.cpp" line="1156"/>
        <source>Info requested, please wait</source>
        <translation>Info vyžádáno, prosím počkejte</translation>
    </message>
    <message>
        <location filename="modinfodialog.cpp" line="704"/>
        <source>Main</source>
        <translation>Hlavní</translation>
    </message>
    <message>
        <location filename="modinfodialog.cpp" line="705"/>
        <source>Update</source>
        <translation>Update</translation>
    </message>
    <message>
        <location filename="modinfodialog.cpp" line="706"/>
        <source>Optional</source>
        <translation>Volitelné</translation>
    </message>
    <message>
        <location filename="modinfodialog.cpp" line="707"/>
        <source>Old</source>
        <translation>Staré</translation>
    </message>
    <message>
        <location filename="modinfodialog.cpp" line="708"/>
        <source>Misc</source>
        <translation>Jiné</translation>
    </message>
    <message>
        <location filename="modinfodialog.cpp" line="709"/>
        <source>Unknown</source>
        <translation>Neznámé</translation>
    </message>
    <message>
        <location filename="modinfodialog.cpp" line="720"/>
        <source>Current Version: %1</source>
        <translation>Současná verze: %1</translation>
    </message>
    <message>
        <location filename="modinfodialog.cpp" line="724"/>
        <source>No update available</source>
        <translation>Žádný update není k dispozici</translation>
    </message>
    <message>
        <location filename="modinfodialog.cpp" line="765"/>
        <source>(description incomplete, please visit nexus)</source>
        <translation>(popis chybí, prosím navštivte nexus pro kompletní zobrazení)</translation>
    </message>
    <message>
        <location filename="modinfodialog.cpp" line="780"/>
        <source>&lt;a href="%1"&gt;Visit on Nexus&lt;/a&gt;</source>
        <translation>&lt;a href="%1"&gt;Navštivte na Nexusu&lt;/a&gt;</translation>
    </message>
    <message>
        <location filename="modinfodialog.cpp" line="859"/>
        <source>Failed to delete %1</source>
        <translation>Zlyhalo vymazání %1</translation>
    </message>
    <message>
        <location filename="modinfodialog.cpp" line="870"/>
        <location filename="modinfodialog.cpp" line="875"/>
        <source>Confirm</source>
        <translation>Potvrdit</translation>
    </message>
    <message>
        <location filename="modinfodialog.cpp" line="870"/>
        <source>Are sure you want to delete "%1"?</source>
        <translation>Jsi si jistý, že chceš vymazat "%1"?</translation>
    </message>
    <message>
        <location filename="modinfodialog.cpp" line="875"/>
        <source>Are sure you want to delete the selected files?</source>
        <translation>Jsi si jistý, že chceš vymazat označené soubory?</translation>
    </message>
    <message>
        <location filename="modinfodialog.cpp" line="949"/>
        <location filename="modinfodialog.cpp" line="955"/>
        <source>New Folder</source>
        <translation>Nová zložka</translation>
    </message>
    <message>
        <location filename="modinfodialog.cpp" line="961"/>
        <source>Failed to create "%1"</source>
        <translation>Zlyhalo vytvoření "%1"</translation>
    </message>
    <message>
        <location filename="modinfodialog.cpp" line="1065"/>
        <location filename="modinfodialog.cpp" line="1089"/>
        <source>Replace file?</source>
        <translation>Nahradit soubor?</translation>
    </message>
    <message>
        <location filename="modinfodialog.cpp" line="1065"/>
        <source>There already is a hidden version of this file. Replace it?</source>
        <translation>Už existuje skrytá verze tohto souboru. Nahradit?</translation>
    </message>
    <message>
        <location filename="modinfodialog.cpp" line="1068"/>
        <location filename="modinfodialog.cpp" line="1092"/>
        <source>File operation failed</source>
        <translation>Operace se souborem zlyhala</translation>
    </message>
    <message>
        <location filename="modinfodialog.cpp" line="1068"/>
        <location filename="modinfodialog.cpp" line="1092"/>
        <source>Failed to remove "%1". Maybe you lack the required file permissions?</source>
        <translation>Nepodařilo se odstranit "%1". Možná nejsou k dispozici požadována práva?</translation>
    </message>
    <message>
        <location filename="modinfodialog.cpp" line="1079"/>
        <location filename="modinfodialog.cpp" line="1102"/>
        <source>failed to rename %1 to %2</source>
        <translation>Nezdařilo se přejmenovat %1 na %2</translation>
    </message>
    <message>
        <location filename="modinfodialog.cpp" line="1089"/>
        <source>There already is a visible version of this file. Replace it?</source>
        <translation>Už existuje viditelná verze tohto souboru. Nahradit?</translation>
    </message>
    <message>
        <location filename="modinfodialog.cpp" line="1136"/>
        <source>Un-Hide</source>
        <translation>Odekrýt</translation>
    </message>
    <message>
        <location filename="modinfodialog.cpp" line="1138"/>
        <source>Hide</source>
        <translation>Skrýt</translation>
    </message>
    <message>
        <location filename="modinfodialog.cpp" line="1179"/>
        <source>Name</source>
        <translation type="unfinished"/>
    </message>
    <message>
        <location filename="modinfodialog.cpp" line="1179"/>
        <source>Please enter a name</source>
        <translation type="unfinished"/>
    </message>
    <message>
        <location filename="modinfodialog.cpp" line="1183"/>
        <location filename="modinfodialog.cpp" line="1186"/>
        <source>Error</source>
        <translation type="unfinished"/>
    </message>
    <message>
        <location filename="modinfodialog.cpp" line="1183"/>
        <source>Invalid name. Must be a valid file name</source>
        <translation type="unfinished"/>
    </message>
    <message>
        <location filename="modinfodialog.cpp" line="1186"/>
        <source>A tweak by that name exists</source>
        <translation type="unfinished"/>
    </message>
    <message>
        <location filename="modinfodialog.cpp" line="1198"/>
        <source>Create Tweak</source>
        <translation type="unfinished"/>
    </message>
</context>
<context>
    <name>ModInfoOverwrite</name>
    <message>
        <location filename="modinfo.cpp" line="866"/>
        <source>This pseudo mod contains files from the virtual data tree that got modified (i.e. by the construction kit)</source>
        <translation type="unfinished">Tenhle kvázi mod obsahuje soubory, které byli vytvořeny nebo změněny během spuštení, tzn. ve virtuálním Data stromě (ku příkladu Construction Kit je sem vytváří')</translation>
    </message>
</context>
<context>
    <name>ModInfoRegular</name>
    <message>
        <location filename="modinfo.cpp" line="393"/>
        <source>failed to write %1/meta.ini: %2</source>
        <translation>zlyhal zápis %1/meta.ini: %2</translation>
    </message>
    <message>
        <location filename="modinfo.cpp" line="661"/>
        <source>%1 contains no esp/esm and no asset (textures, meshes, interface, ...) directory</source>
        <translation type="unfinished">%1 neobsahuje žádné esp/esm ani jiné použitelné struktury (textures, meshes, interface,...)</translation>
    </message>
    <message>
        <location filename="modinfo.cpp" line="665"/>
        <source>Categories: &lt;br&gt;</source>
        <translation type="unfinished">Kategorie: &lt;br&gt;</translation>
    </message>
</context>
<context>
    <name>ModList</name>
    <message>
        <location filename="modlist.cpp" line="109"/>
        <source>This entry contains files that have been created inside the virtual data tree (i.e. by the construction kit)</source>
        <translation>Tenhle záznam obsahuje soubory, které byli vytvořeny během spuštení, tzn. ve virtuálním Data stromě (ku příkladu Construction Kit je sem vytváří')</translation>
    </message>
    <message>
        <location filename="modlist.cpp" line="118"/>
        <source>Backup</source>
        <translation type="unfinished"/>
    </message>
    <message>
        <location filename="modlist.cpp" line="119"/>
        <source>No valid game data</source>
        <translation type="unfinished"/>
    </message>
    <message>
        <location filename="modlist.cpp" line="120"/>
        <source>Not endorsed yet</source>
        <translation type="unfinished"/>
    </message>
    <message>
        <location filename="modlist.cpp" line="122"/>
        <source>Overwrites files</source>
        <translation type="unfinished"/>
    </message>
    <message>
        <location filename="modlist.cpp" line="123"/>
        <source>Overwritten files</source>
        <translation type="unfinished"/>
    </message>
    <message>
        <location filename="modlist.cpp" line="124"/>
        <source>Overwrites &amp; Overwritten</source>
        <translation type="unfinished"/>
    </message>
    <message>
        <location filename="modlist.cpp" line="125"/>
        <source>Redundant</source>
        <translation type="unfinished"/>
    </message>
    <message>
        <location filename="modlist.cpp" line="197"/>
        <source>invalid</source>
        <translation type="unfinished"/>
    </message>
    <message>
        <location filename="modlist.cpp" line="308"/>
        <source>installed version: %1, newest version: %2</source>
        <translation>nainstalovaná verze: %1, nejnovjší verze: %2</translation>
    </message>
    <message>
        <location filename="modlist.cpp" line="310"/>
        <source>The newest version on Nexus seems to be older than the one you have installed. This could either mean the version you have has been withdrawn (i.e. due to a bug) or the author uses a non-standard versioning scheme and that newest version is actually newer. Either way you may want to "upgrade".</source>
        <translation type="unfinished"/>
    </message>
    <message>
        <location filename="modlist.cpp" line="318"/>
        <source>Categories: &lt;br&gt;</source>
        <translation>Kategorie: &lt;br&gt;</translation>
    </message>
    <message>
        <location filename="modlist.cpp" line="347"/>
        <source>Invalid name</source>
        <translation type="unfinished"/>
    </message>
    <message>
        <location filename="modlist.cpp" line="717"/>
        <source>drag&amp;drop failed: %1</source>
        <translation type="unfinished"/>
    </message>
    <message>
        <location filename="modlist.cpp" line="776"/>
        <source>Confirm</source>
        <translation>Potvrdit</translation>
    </message>
    <message>
        <location filename="modlist.cpp" line="776"/>
        <source>Are you sure you want to remove "%1"?</source>
        <translation>Určitě chcete odstranit "%1"?</translation>
    </message>
    <message>
        <location filename="modlist.cpp" line="831"/>
        <source>Flags</source>
        <translation type="unfinished"/>
    </message>
    <message>
        <location filename="modlist.cpp" line="832"/>
        <source>Mod Name</source>
        <translation type="unfinished"/>
    </message>
    <message>
        <location filename="modlist.cpp" line="833"/>
        <source>Version</source>
        <translation>Verze</translation>
    </message>
    <message>
        <location filename="modlist.cpp" line="834"/>
        <source>Priority</source>
        <translation>Priorita</translation>
    </message>
    <message>
        <location filename="modlist.cpp" line="835"/>
        <source>Category</source>
        <translation type="unfinished"/>
    </message>
    <message>
        <location filename="modlist.cpp" line="836"/>
        <source>Nexus ID</source>
        <translation type="unfinished"/>
    </message>
    <message>
        <location filename="modlist.cpp" line="837"/>
        <source>Installation</source>
        <translation type="unfinished"/>
    </message>
    <message>
        <location filename="modlist.cpp" line="838"/>
        <location filename="modlist.cpp" line="854"/>
        <source>unknown</source>
        <translation type="unfinished"/>
    </message>
    <message>
        <location filename="modlist.cpp" line="846"/>
        <source>Name of your mods</source>
        <translation type="unfinished"/>
    </message>
    <message>
        <location filename="modlist.cpp" line="847"/>
        <source>Version of the mod (if available)</source>
        <translation>Verze modu (pokud je k dispozici)</translation>
    </message>
    <message>
        <location filename="modlist.cpp" line="848"/>
        <source>Installation priority of your mod. The higher, the more "important" it is and thus overwrites files from mods with lower priority.</source>
        <translation>Priorita aplikace modu. Čím větší, tím "důležitější" je mod a proto může přebít mody s nižší prioritou. </translation>
    </message>
    <message>
        <location filename="modlist.cpp" line="850"/>
        <source>Category of the mod.</source>
        <translation type="unfinished"/>
    </message>
    <message>
        <location filename="modlist.cpp" line="851"/>
        <source>Id of the mod as used on Nexus.</source>
        <translation type="unfinished"/>
    </message>
    <message>
        <location filename="modlist.cpp" line="852"/>
        <source>Emblemes to highlight things that might require attention.</source>
        <translation type="unfinished"/>
    </message>
    <message>
        <location filename="modlist.cpp" line="853"/>
        <source>Time this mod was installed</source>
        <translation type="unfinished"/>
    </message>
</context>
<context>
    <name>MotDDialog</name>
    <message>
        <location filename="motddialog.ui" line="14"/>
        <source>Message of the Day</source>
        <translation>Oznam dne</translation>
    </message>
    <message>
        <location filename="motddialog.ui" line="42"/>
        <source>OK</source>
        <translation>OK</translation>
    </message>
</context>
<context>
    <name>MyFileSystemModel</name>
    <message>
        <location filename="overwriteinfodialog.cpp" line="47"/>
        <source>Overwrites</source>
        <translation>Přepisuje</translation>
    </message>
    <message>
        <location filename="overwriteinfodialog.cpp" line="59"/>
        <source>not implemented</source>
        <translation>není implementováno</translation>
    </message>
</context>
<context>
    <name>NXMAccessManager</name>
    <message>
        <location filename="nxmaccessmanager.cpp" line="130"/>
        <source>Logging into Nexus</source>
        <translation type="unfinished"/>
    </message>
    <message>
        <location filename="nxmaccessmanager.cpp" line="145"/>
        <source>timeout</source>
        <translation>Překročen časový limit</translation>
    </message>
    <message>
        <location filename="nxmaccessmanager.cpp" line="185"/>
        <source>Please check your password</source>
        <translation>Oveřte heslo</translation>
    </message>
</context>
<context>
    <name>NexusInterface</name>
    <message>
        <location filename="nexusinterface.cpp" line="219"/>
        <source>Failed to guess mod id for "%1", please pick the correct one</source>
        <translation type="unfinished"/>
    </message>
    <message>
        <location filename="nexusinterface.cpp" line="456"/>
        <source>empty response</source>
        <translation>prázdná odozva</translation>
    </message>
    <message>
        <location filename="nexusinterface.cpp" line="484"/>
        <source>invalid response</source>
        <translation>neplatná odozva</translation>
    </message>
</context>
<context>
    <name>OverwriteInfoDialog</name>
    <message>
        <location filename="overwriteinfodialog.ui" line="14"/>
        <source>Overwrite</source>
        <translation>Přepsat</translation>
    </message>
    <message>
        <location filename="overwriteinfodialog.ui" line="39"/>
        <source>You can use drag&amp;drop to move files and directories to regular mods.</source>
        <translation type="unfinished"/>
    </message>
    <message>
        <location filename="overwriteinfodialog.cpp" line="90"/>
        <source>&amp;Delete</source>
        <translation>&amp;Vymaž</translation>
    </message>
    <message>
        <location filename="overwriteinfodialog.cpp" line="91"/>
        <source>&amp;Rename</source>
        <translation>&amp;Přejmenuj</translation>
    </message>
    <message>
        <location filename="overwriteinfodialog.cpp" line="92"/>
        <source>&amp;Open</source>
        <translation>&amp;Otevři</translation>
    </message>
    <message>
        <location filename="overwriteinfodialog.cpp" line="93"/>
        <source>&amp;New Folder</source>
        <translation>&amp;Nová zložka</translation>
    </message>
    <message>
        <location filename="overwriteinfodialog.cpp" line="136"/>
        <source>Failed to delete "%1"</source>
        <translation>odstránění zlyhalo "%1"</translation>
    </message>
    <message>
        <location filename="overwriteinfodialog.cpp" line="147"/>
        <location filename="overwriteinfodialog.cpp" line="152"/>
        <source>Confirm</source>
        <translation>Potvrdit</translation>
    </message>
    <message>
        <location filename="overwriteinfodialog.cpp" line="147"/>
        <source>Are sure you want to delete "%1"?</source>
        <translation>Jsi si jistý, že chceš vymazat "%1"?</translation>
    </message>
    <message>
        <location filename="overwriteinfodialog.cpp" line="152"/>
        <source>Are sure you want to delete the selected files?</source>
        <translation>Jsi si jistý, že chceš vymazat označené soubory?</translation>
    </message>
    <message>
        <location filename="overwriteinfodialog.cpp" line="202"/>
        <location filename="overwriteinfodialog.cpp" line="208"/>
        <source>New Folder</source>
        <translation>Nová Zložka</translation>
    </message>
    <message>
        <location filename="overwriteinfodialog.cpp" line="214"/>
        <source>Failed to create "%1"</source>
        <translation>Zlyhalo vytvoření "%1"</translation>
    </message>
</context>
<context>
    <name>PluginList</name>
    <message>
        <location filename="pluginlist.cpp" line="101"/>
        <source>Name</source>
        <translation>Jméno</translation>
    </message>
    <message>
        <location filename="pluginlist.cpp" line="102"/>
        <source>Priority</source>
        <translation>Priorita</translation>
    </message>
    <message>
        <location filename="pluginlist.cpp" line="103"/>
        <source>Mod Index</source>
        <translation type="unfinished"/>
    </message>
    <message>
        <location filename="pluginlist.cpp" line="104"/>
        <location filename="pluginlist.cpp" line="116"/>
        <source>unknown</source>
        <translation type="unfinished"/>
    </message>
    <message>
        <location filename="pluginlist.cpp" line="112"/>
        <source>Name of your mods</source>
        <translation type="unfinished"/>
    </message>
    <message>
        <location filename="pluginlist.cpp" line="113"/>
        <source>Load priority of your mod. The higher, the more "important" it is and thus overwrites data from plugins with lower priority.</source>
        <translation type="unfinished"/>
    </message>
    <message>
        <location filename="pluginlist.cpp" line="115"/>
        <source>The modindex determins the formids of objects originating from this mods.</source>
        <translation type="unfinished"/>
    </message>
    <message>
        <location filename="pluginlist.cpp" line="155"/>
        <source>failed to update esp info for file %1 (source id: %2), error: %3</source>
        <translation type="unfinished"/>
    </message>
    <message>
        <location filename="pluginlist.cpp" line="222"/>
        <source>esp not found: %1</source>
        <translation type="unfinished"/>
    </message>
    <message>
        <location filename="pluginlist.cpp" line="229"/>
        <location filename="pluginlist.cpp" line="241"/>
        <source>Confirm</source>
        <translation type="unfinished"/>
    </message>
    <message>
        <location filename="pluginlist.cpp" line="229"/>
        <source>Really enable all plugins?</source>
        <translation type="unfinished"/>
    </message>
    <message>
        <location filename="pluginlist.cpp" line="241"/>
        <source>Really disable all plugins?</source>
        <translation type="unfinished"/>
    </message>
    <message>
        <location filename="pluginlist.cpp" line="369"/>
        <source>The file containing locked plugin indices is broken</source>
        <translation type="unfinished"/>
    </message>
    <message>
        <location filename="pluginlist.cpp" line="382"/>
        <location filename="pluginlist.cpp" line="421"/>
        <source>failed to open output file: %1</source>
        <translation>zlyhalo otevření výstupního souboru: %1</translation>
    </message>
    <message>
        <location filename="pluginlist.cpp" line="409"/>
        <source>Some of your plugins have invalid names! These plugins can not be loaded by the game. Please see mo_interface.log for a list of affected plugins and rename them.</source>
        <translation>Některé vaše pluginy mají neplatné názvy! Tyhle pluginy nemůžou být načteny hrou. Prosím nahlédněte do souboru mo_interface.log pro kompletní seznam pluginů a přejmenujte je.</translation>
    </message>
    <message>
        <location filename="pluginlist.cpp" line="757"/>
        <source>This plugin can't be disabled (enforced by the game)</source>
        <translation>Tenhle plugin nemůže být deaktivován (vyžaduje to hra)</translation>
    </message>
    <message>
        <location filename="pluginlist.cpp" line="759"/>
        <source>Origin: %1</source>
        <translation>Původní mod: %1</translation>
    </message>
    <message>
        <location filename="pluginlist.cpp" line="761"/>
        <source>Missing Masters</source>
        <translation type="unfinished"/>
    </message>
    <message>
        <location filename="pluginlist.cpp" line="767"/>
        <source>Enabled Masters</source>
        <translation type="unfinished"/>
    </message>
    <message>
        <location filename="pluginlist.cpp" line="882"/>
        <source>failed to restore load order for %1</source>
        <translation type="unfinished"/>
    </message>
</context>
<context>
    <name>ProblemsDialog</name>
    <message>
        <location filename="problemsdialog.ui" line="14"/>
        <source>Problems</source>
        <translation type="unfinished"/>
    </message>
    <message>
        <location filename="problemsdialog.ui" line="49"/>
        <source>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&gt;
p, li { white-space: pre-wrap; }
&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:7.8pt; font-weight:400; font-style:normal;"&gt;
&lt;p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;br /&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
        <translation type="unfinished"/>
    </message>
    <message>
        <location filename="problemsdialog.ui" line="75"/>
        <source>Close</source>
        <translation type="unfinished"/>
    </message>
    <message>
        <location filename="problemsdialog.cpp" line="44"/>
        <location filename="problemsdialog.cpp" line="45"/>
        <source>Fix</source>
        <translation type="unfinished"/>
    </message>
    <message>
        <location filename="problemsdialog.cpp" line="49"/>
        <source>No guided fix</source>
        <translation type="unfinished"/>
    </message>
</context>
<context>
    <name>Profile</name>
    <message>
        <location filename="profile.cpp" line="58"/>
        <source>invalid profile name %1</source>
        <translation type="unfinished"/>
    </message>
    <message>
        <location filename="profile.cpp" line="62"/>
        <source>failed to create %1</source>
        <translation type="unfinished"/>
    </message>
    <message>
        <location filename="profile.cpp" line="155"/>
        <source>failed to open temporary file</source>
        <translation type="unfinished"/>
    </message>
    <message>
        <location filename="profile.cpp" line="192"/>
        <source>failed to open "%1" for writing</source>
        <translation type="unfinished"/>
    </message>
    <message>
        <location filename="profile.cpp" line="198"/>
        <source>failed to write mod list: %1</source>
        <translation type="unfinished"/>
    </message>
    <message>
        <location filename="profile.cpp" line="209"/>
        <source>failed to update tweaked ini file, wrong settings may be used: %1</source>
        <translation type="unfinished"/>
    </message>
    <message>
        <location filename="profile.cpp" line="239"/>
        <source>failed to create tweaked ini: %1</source>
        <translation type="unfinished"/>
    </message>
    <message>
        <location filename="profile.cpp" line="292"/>
        <location filename="profile.cpp" line="321"/>
        <location filename="profile.cpp" line="406"/>
        <location filename="profile.cpp" line="424"/>
        <location filename="profile.cpp" line="434"/>
        <source>invalid index %1</source>
        <translation>Neplatný index  %1</translation>
    </message>
    <message>
        <location filename="profile.cpp" line="387"/>
        <source>Overwrite directory couldn't be parsed</source>
        <translation type="unfinished"/>
    </message>
    <message>
        <location filename="profile.cpp" line="396"/>
        <source>invalid priority %1</source>
        <translation>neplatná priorita %1</translation>
    </message>
    <message>
        <location filename="profile.cpp" line="584"/>
        <source>failed to parse ini file (%1)</source>
        <translation type="unfinished"/>
    </message>
    <message>
        <location filename="profile.cpp" line="612"/>
        <source>failed to parse ini file (%1): %2</source>
        <translation>zlyhalo rozebrání ini souboru (%1): %2</translation>
    </message>
    <message>
        <location filename="profile.cpp" line="636"/>
        <location filename="profile.cpp" line="673"/>
        <source>failed to modify "%1"</source>
        <translation type="unfinished"/>
    </message>
    <message>
        <location filename="profile.cpp" line="701"/>
        <source>Delete savegames?</source>
        <translation type="unfinished"/>
    </message>
    <message>
        <location filename="profile.cpp" line="702"/>
        <source>Do you want to delete local savegames? (If you select "No", the save games will show up again if you re-enable local savegames)</source>
        <translation type="unfinished"/>
    </message>
</context>
<context>
    <name>ProfileInputDialog</name>
    <message>
        <location filename="profileinputdialog.ui" line="14"/>
        <source>Dialog</source>
        <translation>Výzva</translation>
    </message>
    <message>
        <location filename="profileinputdialog.ui" line="20"/>
        <source>Please enter a name for the new profile</source>
        <translation>Prosím zadej jméno pro nový profil</translation>
    </message>
    <message>
        <location filename="profileinputdialog.ui" line="30"/>
        <source>If checked, the new profile will use the default game settings.</source>
        <translation>Pokud je zaškrtnuto, nový profil použije standartní nastavení hry.</translation>
    </message>
    <message>
        <location filename="profileinputdialog.ui" line="33"/>
        <source>If checked, the new profile will use the default game settings instead of the "global" settings. Global settings are the settings you configure when running the game launcher directly, without MO.</source>
        <translation>Pokud je zaškrtnuto, nový profil použije standartní nastavení hry namísto "globálního" nastavení. Globální nastavení jsou nastavení, které ukladá Spoušteč hry, ne Mod Organizer.</translation>
    </message>
    <message>
        <location filename="profileinputdialog.ui" line="36"/>
        <source>Default Game Settings</source>
        <translation>Standartní nastavení hry</translation>
    </message>
</context>
<context>
    <name>ProfilesDialog</name>
    <message>
        <location filename="profilesdialog.ui" line="14"/>
        <source>Profiles</source>
        <translation>Profily</translation>
    </message>
    <message>
        <location filename="profilesdialog.ui" line="22"/>
        <source>List of Profiles</source>
        <translation>Seznam Profilů</translation>
    </message>
    <message>
        <location filename="profilesdialog.ui" line="25"/>
        <source>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&gt;
p, li { white-space: pre-wrap; }
&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;This is the list of profiles. Each Profile contains its own list and installation order of enabled mods (from a shared pool), a configuration of enabled esps/esms, a copy of the games ini-file and an optional savegame filter.&lt;/p&gt;
&lt;p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;/p&gt;
&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-weight:600;"&gt;Note&lt;/span&gt; For technical reasons it's currently not possible to have seperate load-orders for esps. This means you can't load moda.esp before modb.esp in one profile and the other way around in another.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
        <translation>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&gt;
p, li { white-space: pre-wrap; }
&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;Tohle je seznam profilů. Každý profil obsahuje svůj seznam a poradí modů (ze společného celku modů), konfiguraci aktivovaných esps/esms, kopii vlastních .ini souborů hry a volitelný filtr uložených pozic.&lt;/p&gt;
&lt;p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;/p&gt;
&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-weight:600;"&gt;Note&lt;/span&gt; Z technických důvodů současně není možné mít oddělenou konfiguraci poradí esp/esm. To znamená, že nemůžete načíst modA.esp před modB.esp v jedném profilu a v druhém to mít naopak.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
    </message>
    <message>
        <location filename="profilesdialog.ui" line="38"/>
        <location filename="profilesdialog.ui" line="41"/>
        <source>If checked, savegames are local to this profile and will not appear when starting with a different profile.</source>
        <translation type="unfinished"/>
    </message>
    <message>
        <location filename="profilesdialog.ui" line="44"/>
        <source>Local Savegames</source>
        <translation type="unfinished"/>
    </message>
    <message>
        <location filename="profilesdialog.ui" line="51"/>
        <source>This ensures data files from mods are actually used. You want to enable this unless you use a different tool for Archive Invalidation.</source>
        <translation>Tohle zabezpečí, že data soubory modu se skutečně použijí. Nevypínejte, jedině že by ste používali jiný nástroj na invalidaci archívu.</translation>
    </message>
    <message>
        <location filename="profilesdialog.ui" line="54"/>
        <source>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&gt;
p, li { white-space: pre-wrap; }
&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;The games Oblivion, Fallout 3 and Fallout NV contain a bug which prevents texture and mesh replacers (that is: all modifications to meshes and textures already in game) from working.&lt;/span&gt;&lt;/p&gt;
&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;The Mod Organizer uses a workaround called &amp;quot;BSA redirection&amp;quot; (google is your friend) to fix this issue reliably and without further work. Simply activate and forget.&lt;/span&gt;&lt;/p&gt;
&lt;p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"&gt;&lt;/p&gt;
&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;With Skyrim this bug seems to be fixed to a degree but whether a mod becomes active still depends on file dates. Therefore, it still makes sense to activate this.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
        <translation>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&gt;
p, li { white-space: pre-wrap; }
&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;Hry Oblivion, Fallout 3 a Fallout NV mají chybu, která zabraňuje nahrazeným texturám a modelům (které již jsou ve hře) aby pracovali správně.&lt;/span&gt;&lt;/p&gt;
&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;Mod Organizer používá řešení &amp;quot;redirekce BSA&amp;quot; (google is your friend) na odstranění této chyby. Prostě to aktivujte a nechte tak.&lt;/span&gt;&lt;/p&gt;
&lt;p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"&gt;&lt;/p&gt;
&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;U Skyrimu je tahle chyba částečně odstraněna, ale jestli bude mod aktivován pořád zavisí od jeho data. Proto pořád má význam mít opravu aktivovánu.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
    </message>
    <message>
        <location filename="profilesdialog.ui" line="64"/>
        <source>Automatic Archive Invalidation</source>
        <translation>Automatická invalidace archívu</translation>
    </message>
    <message>
        <location filename="profilesdialog.ui" line="75"/>
        <location filename="profilesdialog.ui" line="78"/>
        <source>Create a new profile from scratch</source>
        <translation>Vytvořit úplne nový profil</translation>
    </message>
    <message>
        <location filename="profilesdialog.ui" line="81"/>
        <source>Create</source>
        <translation>Vytvořit</translation>
    </message>
    <message>
        <location filename="profilesdialog.ui" line="91"/>
        <source>Clone the selected profile</source>
        <translation>Klonovat označený profil</translation>
    </message>
    <message>
        <location filename="profilesdialog.ui" line="94"/>
        <source>This creates a new profile with the same settings and active mods as the selected one.</source>
        <translation>Vytvoří nový profil s identickými nastavěními a aktívnimi modmi ako má klonovaný profil.</translation>
    </message>
    <message>
        <location filename="profilesdialog.ui" line="97"/>
        <source>Copy</source>
        <translation>Kopírovat</translation>
    </message>
    <message>
        <location filename="profilesdialog.ui" line="107"/>
        <location filename="profilesdialog.ui" line="110"/>
        <source>Delete the selected Profile. This can not be un-done!</source>
        <translation>Vymazat označený profil. Tahle akce se nedá vrátit!</translation>
    </message>
    <message>
        <location filename="profilesdialog.ui" line="113"/>
        <source>Remove</source>
        <translation>Odstranit</translation>
    </message>
    <message>
        <location filename="profilesdialog.ui" line="123"/>
        <source>Rename</source>
        <translation type="unfinished"/>
    </message>
    <message>
        <location filename="profilesdialog.ui" line="133"/>
        <location filename="profilesdialog.ui" line="136"/>
        <source>Transfer save games to the selected profile.</source>
        <translation type="unfinished"/>
    </message>
    <message>
        <location filename="profilesdialog.ui" line="139"/>
        <source>Transfer Saves</source>
        <translation type="unfinished"/>
    </message>
    <message>
        <location filename="profilesdialog.ui" line="162"/>
        <source>Close</source>
        <translation>Zavřit</translation>
    </message>
    <message>
        <location filename="profilesdialog.cpp" line="61"/>
        <source>Archive invalidation isn't required for this game.</source>
        <translation>Invalidace archívu není potřebná pro tuhle hru.</translation>
    </message>
    <message>
        <location filename="profilesdialog.cpp" line="99"/>
        <location filename="profilesdialog.cpp" line="144"/>
        <source>failed to create profile: %1</source>
        <translation>Zlyhalo vytvoření profilu: %1</translation>
    </message>
    <message>
        <location filename="profilesdialog.cpp" line="152"/>
        <source>Name</source>
        <translation>Jméno</translation>
    </message>
    <message>
        <location filename="profilesdialog.cpp" line="152"/>
        <source>Please enter a name for the new profile</source>
        <translation>Prosím zadej jméno pro nový profil</translation>
    </message>
    <message>
        <location filename="profilesdialog.cpp" line="162"/>
        <source>failed to copy profile: %1</source>
        <translation>zlyhalo kopírování profilu: %1</translation>
    </message>
    <message>
        <location filename="profilesdialog.cpp" line="165"/>
        <source>Invalid name</source>
        <translation type="unfinished"/>
    </message>
    <message>
        <location filename="profilesdialog.cpp" line="165"/>
        <source>Invalid profile name</source>
        <translation type="unfinished"/>
    </message>
    <message>
        <location filename="profilesdialog.cpp" line="172"/>
        <source>Confirm</source>
        <translation>Potvrdit</translation>
    </message>
    <message>
        <location filename="profilesdialog.cpp" line="172"/>
        <source>Are you sure you want to remove this profile (including local savegames if any)?</source>
        <translation type="unfinished"/>
    </message>
    <message>
        <location filename="profilesdialog.cpp" line="182"/>
        <source>Profile broken</source>
        <translation type="unfinished"/>
    </message>
    <message>
        <location filename="profilesdialog.cpp" line="183"/>
        <source>This profile you're about to delete seems to be broken or the path is invalid. I'm about to delete the following folder: "%1". Proceed?</source>
        <translation type="unfinished"/>
    </message>
    <message>
        <location filename="profilesdialog.cpp" line="215"/>
        <source>Rename Profile</source>
        <translation type="unfinished"/>
    </message>
    <message>
        <location filename="profilesdialog.cpp" line="215"/>
        <source>New Name</source>
        <translation type="unfinished"/>
    </message>
    <message>
        <location filename="profilesdialog.cpp" line="252"/>
        <source>failed to change archive invalidation state: %1</source>
        <translation>Zlyhala změna stavu invalidace archívu: %1</translation>
    </message>
    <message>
        <location filename="profilesdialog.cpp" line="289"/>
        <source>failed to determine if invalidation is active: %1</source>
        <translation>Nepodařilo se zjistit jestli je invalidace aktivní: %1</translation>
    </message>
</context>
<context>
    <name>QObject</name>
    <message>
        <location filename="categories.cpp" line="141"/>
        <source>Failed to save custom categories</source>
        <translation>Nezdařilo se uložit uživatelské kategorie</translation>
    </message>
    <message>
        <location filename="categories.cpp" line="218"/>
        <location filename="categories.cpp" line="253"/>
        <location filename="categories.cpp" line="263"/>
        <location filename="categories.cpp" line="273"/>
        <source>invalid index %1</source>
        <translation>neplatný index %1</translation>
    </message>
    <message>
        <location filename="categories.cpp" line="284"/>
        <source>invalid category id %1</source>
        <translation>neplatné id kategorie %1</translation>
    </message>
    <message>
        <location filename="csvbuilder.cpp" line="70"/>
        <source>invalid field name "%1"</source>
        <translation type="unfinished"/>
    </message>
    <message>
        <location filename="csvbuilder.cpp" line="76"/>
        <source>invalid type for "%1" (should be integer)</source>
        <translation type="unfinished"/>
    </message>
    <message>
        <location filename="csvbuilder.cpp" line="81"/>
        <source>invalid type for "%1" (should be string)</source>
        <translation type="unfinished"/>
    </message>
    <message>
        <location filename="csvbuilder.cpp" line="86"/>
        <source>invalid type for "%1" (should be float)</source>
        <translation type="unfinished"/>
    </message>
    <message>
        <location filename="csvbuilder.cpp" line="103"/>
        <source>no fields set up yet!</source>
        <translation type="unfinished"/>
    </message>
    <message>
        <location filename="csvbuilder.cpp" line="140"/>
        <source>field not set "%1"</source>
        <translation type="unfinished"/>
    </message>
    <message>
        <location filename="csvbuilder.cpp" line="237"/>
        <source>invalid character in field "%1"</source>
        <translation type="unfinished"/>
    </message>
    <message>
        <location filename="csvbuilder.cpp" line="240"/>
        <source>empty field name</source>
        <translation type="unfinished"/>
    </message>
    <message>
        <location filename="gameinfoimpl.cpp" line="41"/>
        <source>invalid game type %1</source>
        <translation type="unfinished"/>
    </message>
    <message>
        <location filename="helper.cpp" line="53"/>
        <source>helper failed</source>
        <translation>pomocník zlyhal</translation>
    </message>
    <message>
        <location filename="helper.cpp" line="69"/>
        <location filename="helper.cpp" line="90"/>
        <source>failed to determine account name</source>
        <translation>Jméno účtu nebylo rozpoznáno</translation>
    </message>
    <message>
        <location filename="installationmanager.cpp" line="64"/>
        <location filename="selfupdater.cpp" line="52"/>
        <source>invalid 7-zip32.dll: %1</source>
        <translation>neplatný 7-zip32.dll: %1</translation>
    </message>
    <message>
        <location filename="loadmechanism.cpp" line="50"/>
        <source>failed to open %1: %2</source>
        <translation>nezdařilo se otevřít %1: %2</translation>
    </message>
    <message>
        <location filename="loadmechanism.cpp" line="104"/>
        <location filename="loadmechanism.cpp" line="113"/>
        <source>%1 not found</source>
        <translation>%1 nenalezeno</translation>
    </message>
    <message>
        <location filename="loadmechanism.cpp" line="138"/>
        <source>Failed to delete %1</source>
        <translation>Nepodařilo se vymazat %1</translation>
    </message>
    <message>
        <location filename="loadmechanism.cpp" line="144"/>
        <source>Failed to deactivate script extender loading</source>
        <translation>Zlyhala deaktivace načítání skript extenderu</translation>
    </message>
    <message>
        <location filename="loadmechanism.cpp" line="165"/>
        <source>Failed to remove %1: %2</source>
        <translation>Nepodařilo se odstranit %1: %2</translation>
    </message>
    <message>
        <location filename="loadmechanism.cpp" line="167"/>
        <location filename="loadmechanism.cpp" line="260"/>
        <source>Failed to rename %1 to %2</source>
        <translation>Nepodařilo se přejmenovat %1: %2</translation>
    </message>
    <message>
        <location filename="loadmechanism.cpp" line="175"/>
        <source>Failed to deactivate proxy-dll loading</source>
        <translation>Nepodařilo se deaktivovat načítání proxy-dll</translation>
    </message>
    <message>
        <location filename="loadmechanism.cpp" line="209"/>
        <location filename="loadmechanism.cpp" line="243"/>
        <location filename="loadmechanism.cpp" line="263"/>
        <source>Failed to copy %1 to %2</source>
        <translation>zlyhalo kopírování %1 do %2</translation>
    </message>
    <message>
        <location filename="loadmechanism.cpp" line="214"/>
        <source>Failed to set up script extender loading</source>
        <translation>Zlyhalo nastavení načítání skript extenderu</translation>
    </message>
    <message>
        <location filename="loadmechanism.cpp" line="240"/>
        <source>Failed to delete old proxy-dll %1</source>
        <translation>Nepodařilo se vymazat starý proxy-dll %1</translation>
    </message>
    <message>
        <location filename="loadmechanism.cpp" line="256"/>
        <source>Failed to overwrite %1</source>
        <translation>Nepodařilo se přepsat %1</translation>
    </message>
    <message>
        <location filename="loadmechanism.cpp" line="268"/>
        <source>Failed to set up proxy-dll loading</source>
        <translation>Zlyhalo nastavení proxy-dll načítání</translation>
    </message>
    <message>
        <location filename="main.cpp" line="138"/>
        <source>Permissions required</source>
        <translation>Chybí oprávnění</translation>
    </message>
    <message>
        <location filename="main.cpp" line="139"/>
        <source>The current user account doesn't have the required access rights to run Mod Organizer. The neccessary changes can be made automatically (the MO directory will be made writable for the current user account). You will be asked to run "helper.exe" with administrative rights.</source>
        <translation type="unfinished"/>
    </message>
    <message>
        <location filename="main.cpp" line="230"/>
        <location filename="main.cpp" line="268"/>
        <source>Woops</source>
        <translation>Hups</translation>
    </message>
    <message>
        <location filename="main.cpp" line="231"/>
        <source>ModOrganizer has crashed! Should a diagnostic file be created? If you send me this file (%1) to sherb@gmx.net, the bug is a lot more likely to be fixed. Please include a short description of what you were doing when the crash happened</source>
        <translation type="unfinished"/>
    </message>
    <message>
        <location filename="main.cpp" line="269"/>
        <source>ModOrganizer has crashed! Unfortunately I was not able to write a diagnostic file: %1</source>
        <translation>ModOrganizer havaroval! Naneštěstí, nezdařilo se ani vytvořit diagnostický soubor: %1</translation>
    </message>
    <message>
        <location filename="main.cpp" line="331"/>
        <location filename="settings.cpp" line="533"/>
        <source>Mod Organizer</source>
        <translation>Mod Organizer</translation>
    </message>
    <message>
        <location filename="main.cpp" line="331"/>
        <source>An instance of Mod Organizer is already running</source>
        <translation>Jedna instance Mod Organizeru už běží</translation>
    </message>
    <message>
        <location filename="main.cpp" line="353"/>
        <source>No game identified in "%1". The directory is required to contain the game binary and its launcher.</source>
        <translation>Žádná hra nebyla nalezena v "%1". Je potřebné, aby adresář obsahoval binár hry a spouštěč.</translation>
    </message>
    <message>
        <location filename="main.cpp" line="356"/>
        <location filename="main.cpp" line="385"/>
        <source>Please select the game to manage</source>
        <translation>Prosím vyberte hru, kterou chcete spravovat</translation>
    </message>
    <message>
        <location filename="main.cpp" line="411"/>
        <source>Please select the game edition you have (MO can't start the game correctly if this is set incorrectly!)</source>
        <translation type="unfinished"/>
    </message>
    <message>
        <location filename="mainwindow.cpp" line="772"/>
        <source>Please use "Help" from the toolbar to get usage instructions to all elements</source>
        <translation>Prosím použijte "Pomoc" z panelu nástrojú pro instrukce ke všem elementům</translation>
    </message>
    <message>
        <location filename="mainwindow.cpp" line="1548"/>
        <location filename="mainwindow.cpp" line="4118"/>
        <source>&lt;Manage...&gt;</source>
        <translation>&lt;Manage...&gt;</translation>
    </message>
    <message>
        <location filename="mainwindow.cpp" line="1566"/>
        <source>failed to parse profile %1: %2</source>
        <translation>Nezdařilo se rozebrat profil %1: %2</translation>
    </message>
    <message>
        <location filename="pluginlist.cpp" line="324"/>
        <location filename="profile.cpp" line="249"/>
        <source>failed to find "%1"</source>
        <translation>Nepodařilo sa najít "%1"</translation>
    </message>
    <message>
        <location filename="pluginlist.cpp" line="483"/>
        <source>failed to access %1</source>
        <translation>zlyhal přístup k %1</translation>
    </message>
    <message>
        <location filename="pluginlist.cpp" line="497"/>
        <source>failed to set file time %1</source>
        <translation>nepodařilo se nastavit čas souboru %1</translation>
    </message>
    <message>
        <location filename="profile.cpp" line="69"/>
        <source>failed to create %1</source>
        <translation>Nepodařilo se vytvořit %1</translation>
    </message>
    <message>
        <location filename="profile.cpp" line="95"/>
        <source>"%1" is missing</source>
        <translation>"%1" chybí</translation>
    </message>
    <message>
        <location filename="profilesdialog.cpp" line="80"/>
        <source>Before you can use ModOrganizer, you need to create at least one profile. ATTENTION: Run the game at least once before creating a profile!</source>
        <translation>Předtím než budete moci používat ModOrganizer, musíte vytvořit alespoň jeden profil. VÝSTRAHA: Spustěte hru alespoň jednou než vytvoříte profil!</translation>
    </message>
    <message>
        <location filename="report.cpp" line="33"/>
        <location filename="report.cpp" line="36"/>
        <source>Error</source>
        <translation>Chyba</translation>
    </message>
    <message>
        <location filename="savegamegamebryo.cpp" line="139"/>
        <location filename="savegamegamebryo.cpp" line="198"/>
        <location filename="savegamegamebryo.cpp" line="240"/>
        <source>wrong file format</source>
        <translation>špatný formát souboru</translation>
    </message>
    <message>
        <location filename="savegamegamebryo.cpp" line="326"/>
        <source>failed to open %1</source>
        <translation>nepodařilo se otevřít %1</translation>
    </message>
    <message>
        <location filename="settings.cpp" line="540"/>
        <source>Script Extender</source>
        <translation>Skript Extender</translation>
    </message>
    <message>
        <location filename="settings.cpp" line="547"/>
        <source>Proxy DLL</source>
        <translation>Proxy DLL</translation>
    </message>
    <message>
        <location filename="spawn.cpp" line="106"/>
        <source>failed to spawn "%1"</source>
        <translation>nepodařilo se vytvořit "%1"</translation>
    </message>
    <message>
        <location filename="spawn.cpp" line="113"/>
        <source>Elevation required</source>
        <translation type="unfinished"/>
    </message>
    <message>
        <location filename="spawn.cpp" line="114"/>
        <source>This process requires elevation to run.
This is a potential security risk so I highly advice you to investigate if
"%1"
can be installed to work without elevation.

Start elevated anyway? (you will be asked if you want to allow ModOrganizer.exe to make changes to the system)</source>
        <translation type="unfinished"/>
    </message>
    <message>
        <location filename="spawn.cpp" line="128"/>
        <source>failed to spawn "%1": %2</source>
        <translation>nepodařilo se vytvořit "%1": %2</translation>
    </message>
    <message>
        <location filename="spawn.cpp" line="137"/>
        <source>"%1" doesn't exist</source>
        <translation>"%1" neexistuje</translation>
    </message>
    <message>
        <location filename="spawn.cpp" line="144"/>
        <source>failed to inject dll into "%1": %2</source>
        <translation>nepodařilo se vsunout dll do "%1": %2</translation>
    </message>
    <message>
        <location filename="spawn.cpp" line="152"/>
        <source>failed to run "%1"</source>
        <translation>nepodařilo se spustit "%1"</translation>
    </message>
</context>
<context>
    <name>QueryOverwriteDialog</name>
    <message>
        <location filename="queryoverwritedialog.ui" line="14"/>
        <source>Mod Exists</source>
        <translation type="unfinished"/>
    </message>
    <message>
        <location filename="queryoverwritedialog.ui" line="45"/>
        <source>This mod seems to be installed already. Do you want to add files from this archive (overwriting existing ones) or do you want to completely replace the existing files (old files are deleted)? Alternatively you can install this mod under a different name.</source>
        <translation type="unfinished"/>
    </message>
    <message>
        <location filename="queryoverwritedialog.ui" line="63"/>
        <source>Keep Backup</source>
        <translation type="unfinished"/>
    </message>
    <message>
        <location filename="queryoverwritedialog.ui" line="70"/>
        <source>Merge</source>
        <translation type="unfinished"/>
    </message>
    <message>
        <location filename="queryoverwritedialog.ui" line="77"/>
        <source>Replace</source>
        <translation type="unfinished">Nahradit</translation>
    </message>
    <message>
        <location filename="queryoverwritedialog.ui" line="84"/>
        <source>Rename</source>
        <translation type="unfinished"/>
    </message>
    <message>
        <location filename="queryoverwritedialog.ui" line="91"/>
        <source>Cancel</source>
        <translation type="unfinished">Zrušit</translation>
    </message>
</context>
<context>
    <name>SaveGameInfoWidget</name>
    <message>
        <location filename="savegameinfowidget.ui" line="39"/>
        <source>Save #</source>
        <translation type="unfinished"/>
    </message>
    <message>
        <location filename="savegameinfowidget.ui" line="51"/>
        <source>Character</source>
        <translation type="unfinished"/>
    </message>
    <message>
        <location filename="savegameinfowidget.ui" line="63"/>
        <source>Level</source>
        <translation type="unfinished"/>
    </message>
    <message>
        <location filename="savegameinfowidget.ui" line="75"/>
        <source>Location</source>
        <translation type="unfinished"/>
    </message>
    <message>
        <location filename="savegameinfowidget.ui" line="87"/>
        <source>Date</source>
        <translation type="unfinished"/>
    </message>
</context>
<context>
    <name>SaveGameInfoWidgetGamebryo</name>
    <message>
        <location filename="savegameinfowidgetgamebryo.cpp" line="41"/>
        <source>Missing ESPs</source>
        <translation type="unfinished"/>
    </message>
</context>
<context>
    <name>SaveTextAsDialog</name>
    <message>
        <location filename="savetextasdialog.ui" line="14"/>
        <source>Dialog</source>
        <translation type="unfinished"/>
    </message>
    <message>
        <location filename="savetextasdialog.ui" line="32"/>
        <source>Copy To Clipboard</source>
        <translation type="unfinished"/>
    </message>
    <message>
        <location filename="savetextasdialog.ui" line="39"/>
        <source>Save As...</source>
        <translation type="unfinished"/>
    </message>
    <message>
        <location filename="savetextasdialog.ui" line="59"/>
        <source>Close</source>
        <translation type="unfinished"/>
    </message>
    <message>
        <location filename="savetextasdialog.cpp" line="36"/>
        <source>Save CSV</source>
        <translation type="unfinished"/>
    </message>
    <message>
        <location filename="savetextasdialog.cpp" line="36"/>
        <source>Text Files</source>
        <translation type="unfinished"/>
    </message>
    <message>
        <location filename="savetextasdialog.cpp" line="40"/>
        <source>failed to open "%1" for writing</source>
        <translation type="unfinished"/>
    </message>
</context>
<context>
    <name>SelectionDialog</name>
    <message>
        <location filename="selectiondialog.ui" line="14"/>
        <source>Select</source>
        <translation>Označ</translation>
    </message>
    <message>
        <location filename="selectiondialog.ui" line="23"/>
        <source>Placeholder</source>
        <translation>Placeholder</translation>
    </message>
    <message>
        <location filename="selectiondialog.ui" line="77"/>
        <source>Cancel</source>
        <translation>Zrušit</translation>
    </message>
</context>
<context>
    <name>SelfUpdater</name>
    <message>
        <location filename="selfupdater.cpp" line="66"/>
        <source>archive.dll not loaded: "%1"</source>
        <translation type="unfinished"/>
    </message>
    <message>
        <location filename="selfupdater.cpp" line="116"/>
        <location filename="selfupdater.cpp" line="139"/>
        <location filename="selfupdater.cpp" line="268"/>
        <location filename="selfupdater.cpp" line="415"/>
        <source>Update</source>
        <translation>Aktualizace</translation>
    </message>
    <message>
        <location filename="selfupdater.cpp" line="117"/>
        <source>An update is available (newest version: %1), do you want to install it?</source>
        <translation>Je k dispozici Aktualizace (nejnovší verze: %1), chcete nainstalovat?</translation>
    </message>
    <message>
        <location filename="selfupdater.cpp" line="140"/>
        <source>Download in progress</source>
        <translation>Stahování probíhá</translation>
    </message>
    <message>
        <location filename="selfupdater.cpp" line="195"/>
        <source>Download failed: %1</source>
        <translation>Stahování zlyhalo: %1</translation>
    </message>
    <message>
        <location filename="selfupdater.cpp" line="206"/>
        <source>Failed to install update: %1</source>
        <translation>Zlyhala instalace aktualizace: %1</translation>
    </message>
    <message>
        <location filename="selfupdater.cpp" line="227"/>
        <source>failed to open archive "%1": %2</source>
        <translation>nepodařilo se otevřít archív "%1": %2</translation>
    </message>
    <message>
        <location filename="selfupdater.cpp" line="250"/>
        <source>failed to move outdated files: %1. Please update manually.</source>
        <translation type="unfinished"/>
    </message>
    <message>
        <location filename="selfupdater.cpp" line="268"/>
        <source>Update installed, Mod Organizer will now be restarted.</source>
        <translation>Aktualizace nainstalována, Mod Organizer se teď restartuje.</translation>
    </message>
    <message>
        <location filename="selfupdater.cpp" line="296"/>
        <source>Error</source>
        <translation>Chyba</translation>
    </message>
    <message>
        <location filename="selfupdater.cpp" line="351"/>
        <source>Failed to parse response. Please report this as a bug and include the file mo_interface.log.</source>
        <translation>Zlyhala odozva. Prosím nahlaste tuto chybu autorovi a přiložte soubor mo_interface.log.</translation>
    </message>
    <message>
        <location filename="selfupdater.cpp" line="416"/>
        <source>No incremental update available for this version, the complete package needs to be downloaded (%1 kB)</source>
        <translation>Inkrementální aktualizace není k dispozici, je potřebné stáhnout celý nový balík (%1 kB)</translation>
    </message>
    <message>
        <location filename="selfupdater.cpp" line="425"/>
        <source>no file for update found. Please update manually.</source>
        <translation type="unfinished"/>
    </message>
    <message>
        <location filename="selfupdater.cpp" line="440"/>
        <source>Failed to retrieve update information: %1</source>
        <translation>Nepodařilo se získat informace o aktualizaci: %1</translation>
    </message>
    <message>
        <location filename="selfupdater.cpp" line="460"/>
        <source>No download server available. Please try again later.</source>
        <translation type="unfinished"/>
    </message>
</context>
<context>
    <name>Settings</name>
    <message>
        <location filename="settings.cpp" line="311"/>
        <location filename="settings.cpp" line="330"/>
        <source>attempt to store setting for unknown plugin "%1"</source>
        <translation type="unfinished"/>
    </message>
    <message>
        <location filename="settings.cpp" line="651"/>
        <source>Confirm</source>
        <translation>Potvrdit</translation>
    </message>
    <message>
        <location filename="settings.cpp" line="651"/>
        <source>Changing the mod directory affects all your profiles! Mods not present (or named differently) in the new location will be disabled in all profiles. There is no way to undo this unless you backed up your profiles manually. Proceed?</source>
        <translation>Zmena adresáře modu změní všechny tvoje profily! Nenalezené mody (nebo přejmenované) v nové lokaci budou deaktivovány ve všech profilech. Není možnosť návratu pokud si nezazálohujete profily ručně. Pokračovat?</translation>
    </message>
</context>
<context>
    <name>SettingsDialog</name>
    <message>
        <location filename="settingsdialog.ui" line="14"/>
        <source>Settings</source>
        <translation>Nastavení</translation>
    </message>
    <message>
        <location filename="settingsdialog.ui" line="24"/>
        <source>General</source>
        <translation>Všeobecné</translation>
    </message>
    <message>
        <location filename="settingsdialog.ui" line="32"/>
        <source>Language</source>
        <translation>Jazyk</translation>
    </message>
    <message>
        <location filename="settingsdialog.ui" line="39"/>
        <source>The display language</source>
        <translation>Zobrazovací jazyk</translation>
    </message>
    <message>
        <location filename="settingsdialog.ui" line="42"/>
        <source>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&gt;
p, li { white-space: pre-wrap; }
&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;The display language. This will only displaye languages for which you have a translation installed.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
        <translation>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&gt;
p, li { white-space: pre-wrap; }
&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;Zobrazovací jazyk. Zobrazí se jenom jazyky, které máte nainstalované.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
    </message>
    <message>
        <location filename="settingsdialog.ui" line="57"/>
        <source>Style</source>
        <translation type="unfinished"/>
    </message>
    <message>
        <location filename="settingsdialog.ui" line="64"/>
        <source>graphical style</source>
        <translation type="unfinished"/>
    </message>
    <message>
        <location filename="settingsdialog.ui" line="67"/>
        <source>graphical style of the MO user interface</source>
        <translation type="unfinished"/>
    </message>
    <message>
        <location filename="settingsdialog.ui" line="78"/>
        <source>Log Level</source>
        <translation type="unfinished"/>
    </message>
    <message>
        <location filename="settingsdialog.ui" line="85"/>
        <source>Decides the amount of data printed to "ModOrganizer.log"</source>
        <translation type="unfinished"/>
    </message>
    <message>
        <location filename="settingsdialog.ui" line="88"/>
        <source>Decides the amount of data printed to "ModOrganizer.log".
"Debug" produces very useful information for finding problems. There is usually no noteworthy performance impact but the file may become rather large. If this is a problem you may prefer the "Info" level for regluar use. On the "Error" level the log file usually remains empty.</source>
        <translation type="unfinished"/>
    </message>
    <message>
        <location filename="settingsdialog.ui" line="93"/>
        <source>Debug</source>
        <translation type="unfinished"/>
    </message>
    <message>
        <location filename="settingsdialog.ui" line="98"/>
        <source>Info</source>
        <translation type="unfinished"/>
    </message>
    <message>
        <location filename="settingsdialog.ui" line="103"/>
        <source>Error</source>
        <translation type="unfinished">Chyba</translation>
    </message>
    <message>
        <location filename="settingsdialog.ui" line="113"/>
        <source>Advanced</source>
        <translation>Pokročilé</translation>
    </message>
    <message>
        <location filename="settingsdialog.ui" line="125"/>
        <location filename="settingsdialog.ui" line="128"/>
        <source>Directory where downloads are stored.</source>
        <translation>Adresář kam se stahují soubory.</translation>
    </message>
    <message>
        <location filename="settingsdialog.ui" line="148"/>
        <source>Mod Directory</source>
        <translation>Mody do</translation>
    </message>
    <message>
        <location filename="settingsdialog.ui" line="155"/>
        <source>Directory where mods are stored.</source>
        <translation>Adresář ve kterém jsou nainstalovány mody.</translation>
    </message>
    <message>
        <location filename="settingsdialog.ui" line="158"/>
        <source>Directory where mods are stored. Please note that changing this will break all associations of profiles with mods that don't exist in the new location (with the same name).</source>
        <translation>Adresář ve kterém jsou nainstalovány mody. Prosím berte na vědomí, že změna tohto zruší všechny asociace v starších profilech, pokud mody nebudou předem uloženy v nové lokaci (a se stejným jménem).</translation>
    </message>
    <message>
        <location filename="settingsdialog.ui" line="172"/>
        <source>Download Directory</source>
        <translation>Stahováni do</translation>
    </message>
    <message>
        <location filename="settingsdialog.ui" line="179"/>
        <source>Cache Directory</source>
        <translation>Cache</translation>
    </message>
    <message>
        <location filename="settingsdialog.ui" line="205"/>
        <source>Reset stored information from dialogs.</source>
        <translation type="unfinished"/>
    </message>
    <message>
        <location filename="settingsdialog.ui" line="208"/>
        <source>This will make all dialogs show up again where you checked the "Remember selection"-box.</source>
        <translation type="unfinished"/>
    </message>
    <message>
        <location filename="settingsdialog.ui" line="211"/>
        <source>Reset Dialogs</source>
        <translation>Obnovit dialogy</translation>
    </message>
    <message>
        <location filename="settingsdialog.ui" line="231"/>
        <location filename="settingsdialog.ui" line="234"/>
        <source>Modify the categories available to arrange your mods.</source>
        <translation>Úprava kategorií pro seřazování modů.</translation>
    </message>
    <message>
        <location filename="settingsdialog.ui" line="237"/>
        <source>Configure Mod Categories</source>
        <translation>Konfigurovat Kategorie Modů</translation>
    </message>
    <message>
        <location filename="settingsdialog.ui" line="245"/>
        <location filename="settingsdialog.ui" line="261"/>
        <source>Nexus</source>
        <translation>Nexus</translation>
    </message>
    <message>
        <location filename="settingsdialog.ui" line="251"/>
        <source>Allows automatic log-in when the Nexus-Page for the game is clicked.</source>
        <translation>Povolí automatické přihlasováni na stránky Nexusu pokud je označeno.</translation>
    </message>
    <message>
        <location filename="settingsdialog.ui" line="254"/>
        <source>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&gt;
p, li { white-space: pre-wrap; }
&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;Allows automatic log-in when the Nexus-Page for the game is clicked. Please note that the obfuscation with which the password  is stored in modorganizer.ini is not very strong. If you're worried someone might steal your password, don't store it here.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
        <translation>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&gt;
p, li { white-space: pre-wrap; }
&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;Povolí automatické přihlasováni na stránky Nexusu pokud je označeno. Prosím berte na vědomí ,že maskování hesla v souboru modorganizer.ini není příliš silné. Pokud máte obavy, že by vám někdo mohl ukrást heslo, neukládajte ho.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
    </message>
    <message>
        <location filename="settingsdialog.ui" line="270"/>
        <source>If checked and if correct credentials are entered below, log-in to Nexus (for browsing and downloading) is automatic.</source>
        <translation type="unfinished"/>
    </message>
    <message>
        <location filename="settingsdialog.ui" line="273"/>
        <source>Automatically Log-In to Nexus</source>
        <translation>Automaticky přihlásit do Nexusu</translation>
    </message>
    <message>
        <location filename="settingsdialog.ui" line="285"/>
        <source>Username</source>
        <translation>Přihlasovací jméno</translation>
    </message>
    <message>
        <location filename="settingsdialog.ui" line="299"/>
        <source>Password</source>
        <translation>Heslo</translation>
    </message>
    <message>
        <location filename="settingsdialog.ui" line="321"/>
        <source>Disable automatic internet features</source>
        <translation type="unfinished"/>
    </message>
    <message>
        <location filename="settingsdialog.ui" line="324"/>
        <source>Disable automatic internet features. This does not affect features that are explicitly invoked by the user (like checking mods for updates, endorsing, opening the web browser)</source>
        <translation type="unfinished"/>
    </message>
    <message>
        <location filename="settingsdialog.ui" line="327"/>
        <source>Offline Mode</source>
        <translation type="unfinished"/>
    </message>
    <message>
        <location filename="settingsdialog.ui" line="334"/>
        <source>Use a proxy for network connections.</source>
        <translation type="unfinished"/>
    </message>
    <message>
        <location filename="settingsdialog.ui" line="337"/>
        <source>Use a proxy for network connections. This uses the system-wide settings which can be configured in Internet Explorer. Please note that MO will start up a few seconds slower on some systems when using a proxy.</source>
        <translation type="unfinished"/>
    </message>
    <message>
        <location filename="settingsdialog.ui" line="340"/>
        <source>Use HTTP Proxy (Uses System Settings)</source>
        <translation type="unfinished"/>
    </message>
    <message>
        <location filename="settingsdialog.ui" line="351"/>
        <source>Known Servers (Dynamically updated every download)</source>
        <translation type="unfinished"/>
    </message>
    <message>
        <location filename="settingsdialog.ui" line="372"/>
        <source>Preferred Servers (Drag &amp; Drop)</source>
        <translation type="unfinished"/>
    </message>
    <message>
        <location filename="settingsdialog.ui" line="407"/>
        <source>Plugins</source>
        <translation type="unfinished"/>
    </message>
    <message>
        <location filename="settingsdialog.ui" line="429"/>
        <source>Author:</source>
        <translation type="unfinished"/>
    </message>
    <message>
        <location filename="settingsdialog.ui" line="443"/>
        <source>Version:</source>
        <translation type="unfinished"/>
    </message>
    <message>
        <location filename="settingsdialog.ui" line="457"/>
        <source>Description:</source>
        <translation type="unfinished"/>
    </message>
    <message>
        <location filename="settingsdialog.ui" line="495"/>
        <source>Key</source>
        <translation type="unfinished"/>
    </message>
    <message>
        <location filename="settingsdialog.ui" line="500"/>
        <source>Value</source>
        <translation type="unfinished"/>
    </message>
    <message>
        <location filename="settingsdialog.ui" line="512"/>
        <source>Blacklisted Plugins (use &lt;del&gt; to remove):</source>
        <translation type="unfinished"/>
    </message>
    <message>
        <location filename="settingsdialog.ui" line="523"/>
        <source>Workarounds</source>
        <translation>Řešení</translation>
    </message>
    <message>
        <location filename="settingsdialog.ui" line="531"/>
        <source>Steam App ID</source>
        <translation>Steam App ID</translation>
    </message>
    <message>
        <location filename="settingsdialog.ui" line="551"/>
        <source>The Steam AppID for your game</source>
        <translation>Steam AppID pro vaši hru</translation>
    </message>
    <message>
        <location filename="settingsdialog.ui" line="554"/>
        <source>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&gt;
p, li { white-space: pre-wrap; }
&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;The Steam App ID is required to directly start some games. For Skyrim, if this is not set or wrong, the &amp;quot;Mod Organizer&amp;quot; load mechanism may not work properly.&lt;/span&gt;&lt;/p&gt;
&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;The preset for this is the App ID of the &amp;quot;regular&amp;quot; version so in most cases, you should be set.&lt;/span&gt;&lt;/p&gt;
&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;If you think you have a different version (GotY or something), follow these steps to get to the id:&lt;/span&gt;&lt;/p&gt;
&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;1. Navigate to the game library in steam&lt;/span&gt;&lt;/p&gt;
&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;2. right-click on the game you need the id for and choose &lt;/span&gt;&lt;span style=" font-size:8pt; font-weight:600;"&gt;Create desktop shortcut&lt;/span&gt;&lt;/p&gt;
&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;3. right-click on the newly created shortcut on your desktop and select &lt;/span&gt;&lt;span style=" font-size:8pt; font-weight:600;"&gt;Properties&lt;/span&gt;&lt;/p&gt;
&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;4. in the URL-field you should see something like this: &lt;/span&gt;&lt;span style=" font-size:8pt; font-style:italic;"&gt;steam://rungameid/22380&lt;/span&gt;&lt;/p&gt;
&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;22380 is the id you're looking for.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
        <translation>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&gt;
p, li { white-space: pre-wrap; }
&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"&gt;
&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;Správné Steam App ID je potřebné pro spuštění některých her. Pro Skyrim, pokud není nastaveno správně, &amp;quot;Mod Organizer&amp;quot; svým mechanizmem nemusí hru úspěšně spustit.&lt;/span&gt;&lt;/p&gt;
&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;Přednastavené je App ID &amp;quot;regulérní&amp;quot; verze, takže ve většine případů by jste měli být v pohode.&lt;/span&gt;&lt;/p&gt;
&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;Pokud si myslíte, že máte jinou verzi (GotY nebo něco), následujte tyto instrukce jak získat id:&lt;/span&gt;&lt;/p&gt;
&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;1. Prejděte do knižnice her na steamu&lt;/span&gt;&lt;/p&gt;
&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;2. klikněte pravým na hru, které id chcete a vyberte &lt;/span&gt;&lt;span style=" font-size:8pt; font-weight:600;"&gt;Vytvořit odkaz na ploše&lt;/span&gt;&lt;/p&gt;
&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;3. klikněte pravým na novou ikonu na ploše a vyberte &lt;/span&gt;&lt;span style=" font-size:8pt; font-weight:600;"&gt;Vlastnosti&lt;/span&gt;&lt;/p&gt;
&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;4. v adřese URL by ste měli vidět něco takovéto: &lt;/span&gt;&lt;span style=" font-size:8pt; font-style:italic;"&gt;steam://rungameid/22380&lt;/span&gt;&lt;/p&gt;
&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"&gt;&lt;span style=" font-size:8pt;"&gt;22380 je id, které hledáte.&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
    </message>
    <message>
        <location filename="settingsdialog.ui" line="585"/>
        <source>Load Mechanism</source>
        <translation>Mechanizmus spuštění</translation>
    </message>
    <message>
        <location filename="settingsdialog.ui" line="605"/>
        <source>Select loading mechanism. See help for details.</source>
        <translation>Vyberte mechanizmus použit pro spuštění. Pro víc detailů čti Nápovědu.</translation>
    </message>
    <message>
        <location filename="settingsdialog.ui" line="608"/>
        <source>Mod Organizer needs a dll to be injected into the game so all mods are visible to it.
There are several means to do this:
*Mod Organizer* (default) In this mode the Mod Organizer itself injects the dll. The disadvantage is that you always have to start the game through MO or a link created by it.
*Script Extender* In this mode, MO is installed as a Script Extender (obse, fose, nvse, skse)  plugin.
*Proxy DLL* In this mode, MO replaces one of the game's dlls with one that loads MO (and the original dll of course). This will ONLY work with Steam games and it has only been tested with Skyrim. Please use this only if the other mechanisms don't work.

If you use the Steam version of Oblivion the default will NOT work. In this case, please install obse and use "Script Extender" as the load mechanism. Also you can then not start Oblivion from MO. Instead, use MO only to set up your mods, then quit and start Oblivion through Steam.</source>
        <translation type="unfinished"/>
    </message>
    <message>
        <location filename="settingsdialog.ui" line="625"/>
        <source>NMM Version</source>
        <translation type="unfinished"/>
    </message>
    <message>
        <location filename="settingsdialog.ui" line="645"/>
        <source>The Version of Nexus Mod Manager to impersonate.</source>
        <translation type="unfinished"/>
    </message>
    <message>
        <location filename="settingsdialog.ui" line="648"/>
        <source>Mod Organizer uses an API provided by the Nexus to provide features like checking for updates and downloading files. Unfortunately this API has not been made available officially to third party tools like MO so we have to impersonate the Nexus Mod Manager to be allowed in.
On top of this Nexus has used the client identification to lock out outdated versions of NMM to force users to update. This means that MO also needs to impersonate the new version of NMM even if MO doesn't need an update. Therefore you can configure the version to identify as here.
Please note that MO does identify itself as MO to the webserver, it's not lying about what it is. It is merely adding a "compatible" NMM version to the user agent.

tl;dr-version: If Nexus-features don't work, insert the current version number of NMM here and try again.</source>
        <translation type="unfinished"/>
    </message>
    <message>
        <location filename="settingsdialog.ui" line="670"/>
        <source>Enforces that inactive ESPs and ESMs are never loaded.</source>
        <translation>Zabezpečí, aby se neaktivní ESP a ESM vůbec nezobrazovali.</translation>
    </message>
    <message>
        <location filename="settingsdialog.ui" line="673"/>
        <source>It seems that the Games occasionally load ESP or ESM files even if they haven't been activated as plugins.
I don't yet know what the circumstances are, but user reports imply it is in some cases unwanted. If this is checked, ESPs and ESMs not checked in the List are invisible to the game and can not be loaded.</source>
        <translation>Zdá se, že hry občasně načtou ESP nebo ESM soubory i když nebyli označeny ako aktivní pluginy.
Nevím za jakých podmínek se to stává, ale uživatelé říkaj, že v některých případech je to neželané. Pokud je tohle označeno, ESP a ESM soubory které v seznamu nejsou označeny, nemůžou být za žádných okolností načtené ve hře.</translation>
    </message>
    <message>
        <location filename="settingsdialog.ui" line="677"/>
        <source>Hide inactive ESPs/ESMs</source>
        <translation>Skrýt neaktivní ESP/ESM</translation>
    </message>
    <message>
        <location filename="settingsdialog.ui" line="684"/>
        <source>If checked, files (i.e. esps, esms and bsas) belonging to the core game can not be disabled in the UI. (default: on)</source>
        <translation type="unfinished"/>
    </message>
    <message>
        <location filename="settingsdialog.ui" line="687"/>
        <source>If checked, files (i.e. esps, esms and bsas) belonging to the core game can not be disabled in the UI. (default: on)
Uncheck this if you want to use Mod Organizer with total conversions (like Nehrim) but be aware that the game will crash if required files are not enabled.</source>
        <translation type="unfinished"/>
    </message>
    <message>
        <location filename="settingsdialog.ui" line="691"/>
        <source>Force-enable game files</source>
        <translation type="unfinished"/>
    </message>
    <message>
        <location filename="settingsdialog.ui" line="701"/>
        <location filename="settingsdialog.ui" line="705"/>
        <source>For Skyrim, this can be used instead of Archive Invalidation. It should make AI redundant for all Profiles.
For the other games this is not a sufficient replacement for AI!</source>
        <translation>Pro Skyrim, tohle je možné použít místo Invalidace Archívu. Pro všechny profily bude IA nepotřebná.
Pro ostatné hry tohle není dostatečná náhrada Invalidace Archívu!  </translation>
    </message>
    <message>
        <location filename="settingsdialog.ui" line="709"/>
        <source>Back-date BSAs</source>
        <translation>Uprav dátumy BSA</translation>
    </message>
    <message>
        <location filename="settingsdialog.ui" line="733"/>
        <source>These are workarounds for problems with Mod Organizer. Please make sure you read the help text before changing anything here.</source>
        <translation type="unfinished"/>
    </message>
    <message>
        <location filename="settingsdialog.cpp" line="94"/>
        <source>Select download directory</source>
        <translation>Vyber adresář pro stahování</translation>
    </message>
    <message>
        <location filename="settingsdialog.cpp" line="102"/>
        <source>Select mod directory</source>
        <translation>Vyber adresář pro mody</translation>
    </message>
    <message>
        <location filename="settingsdialog.cpp" line="110"/>
        <source>Select cache directory</source>
        <translation>Vyber adresář pro cache </translation>
    </message>
    <message>
        <location filename="settingsdialog.cpp" line="118"/>
        <source>Confirm?</source>
        <translation>Potvrdit?</translation>
    </message>
    <message>
        <location filename="settingsdialog.cpp" line="119"/>
        <source>This will make all dialogs show up again where you checked the "Remember selection"-box. Continue?</source>
        <translation>Znovu se budou zobrazovat všechny výzvy, u kterých jste označili "Zapamatovat tuto odpověd provždy". Pokračovat?</translation>
    </message>
</context>
<context>
    <name>SimpleInstallDialog</name>
    <message>
        <location filename="simpleinstalldialog.ui" line="14"/>
        <source>Quick Install</source>
        <translation>Rychlá instalace</translation>
    </message>
    <message>
        <location filename="simpleinstalldialog.ui" line="22"/>
        <source>Name</source>
        <translation>Jméno</translation>
    </message>
    <message>
        <location filename="simpleinstalldialog.ui" line="49"/>
        <location filename="simpleinstalldialog.ui" line="52"/>
        <source>Opens a Dialog that allows custom modifications.</source>
        <translation>Otevře okno, které nabízí úpravy struktury.</translation>
    </message>
    <message>
        <location filename="simpleinstalldialog.ui" line="55"/>
        <source>Manual</source>
        <translation>Ručně</translation>
    </message>
    <message>
        <location filename="simpleinstalldialog.ui" line="62"/>
        <source>OK</source>
        <translation>OK</translation>
    </message>
    <message>
        <location filename="simpleinstalldialog.ui" line="72"/>
        <source>Cancel</source>
        <translation>Zrušit</translation>
    </message>
</context>
<context>
    <name>SingleInstance</name>
    <message>
        <location filename="singleinstance.cpp" line="50"/>
        <source>SHM error: %1</source>
        <translation>SHM chyba: %1</translation>
    </message>
    <message>
        <location filename="singleinstance.cpp" line="82"/>
        <location filename="singleinstance.cpp" line="88"/>
        <source>failed to connect to running instance: %1</source>
        <translation>zlyhalo připojení k bežící instanci: %1</translation>
    </message>
    <message>
        <location filename="singleinstance.cpp" line="100"/>
        <source>failed to receive data from secondary instance: %1</source>
        <translation>nepodařilo se získat data z druhé instance: %1</translation>
    </message>
</context>
<context>
    <name>SyncOverwriteDialog</name>
    <message>
        <location filename="syncoverwritedialog.ui" line="14"/>
        <source>Sync Overwrite</source>
        <translation>Synchronizovat přepsání</translation>
    </message>
    <message>
        <location filename="syncoverwritedialog.ui" line="27"/>
        <source>Name</source>
        <translation>Jméno</translation>
    </message>
    <message>
        <location filename="syncoverwritedialog.ui" line="32"/>
        <source>Sync To</source>
        <translation>Synchronizuj</translation>
    </message>
    <message>
        <location filename="syncoverwritedialog.cpp" line="95"/>
        <source>&lt;don't sync&gt;</source>
        <translation>&lt;don't sync&gt;</translation>
    </message>
    <message>
        <location filename="syncoverwritedialog.cpp" line="147"/>
        <source>failed to remove %1</source>
        <translation>Nepodařilo se odstranit %1</translation>
    </message>
    <message>
        <location filename="syncoverwritedialog.cpp" line="149"/>
        <source>failed to move %1 to %2</source>
        <translation>nepodařilo se přesunout %1 do %2</translation>
    </message>
</context>
<context>
    <name>TransferSavesDialog</name>
    <message>
        <location filename="transfersavesdialog.ui" line="14"/>
        <source>Transfer Savegames</source>
        <translation type="unfinished"/>
    </message>
    <message>
        <location filename="transfersavesdialog.ui" line="22"/>
        <source>Global Characters</source>
        <translation type="unfinished"/>
    </message>
    <message>
        <location filename="transfersavesdialog.ui" line="29"/>
        <source>This is a list of characters in the global location.</source>
        <translation type="unfinished"/>
    </message>
    <message>
        <location filename="transfersavesdialog.ui" line="32"/>
        <source>This is a list of characters in the global location.

On Windows Vista/Windows 7:
  C:\Users\[UserName]\Documents\My Games\Skyrim\Saves

On Windows XP:
  C:\Documents and Settings\[UserName]\My Documents\My Games\Skyrim\Saves
</source>
        <translation type="unfinished"/>
    </message>
    <message>
        <location filename="transfersavesdialog.ui" line="46"/>
        <source>This is a list of save games for the selected character in the global location.

On Windows Vista/Windows 7:
  C:\Users\[UserName]\Documents\My Games\Skyrim\Saves

On Windows XP:
  C:\Documents and Settings[UserName]\My Documents\My Games\Skyrim\Saves

</source>
        <translation type="unfinished"/>
    </message>
    <message>
        <location filename="transfersavesdialog.ui" line="87"/>
        <source>Move -&gt;</source>
        <translation type="unfinished"/>
    </message>
    <message>
        <location filename="transfersavesdialog.ui" line="97"/>
        <source>Copy -&gt;</source>
        <translation type="unfinished"/>
    </message>
    <message>
        <location filename="transfersavesdialog.ui" line="123"/>
        <source>&lt;- Move</source>
        <translation type="unfinished"/>
    </message>
    <message>
        <location filename="transfersavesdialog.ui" line="133"/>
        <source>&lt;- Copy</source>
        <translation type="unfinished"/>
    </message>
    <message>
        <location filename="transfersavesdialog.ui" line="156"/>
        <source>Done</source>
        <translation type="unfinished">Hotovo</translation>
    </message>
    <message>
        <location filename="transfersavesdialog.ui" line="167"/>
        <source>Profile Characters</source>
        <translation type="unfinished"/>
    </message>
    <message>
        <location filename="transfersavesdialog.cpp" line="140"/>
        <source>Overwrite</source>
        <translation type="unfinished">Přepsat</translation>
    </message>
    <message>
        <location filename="transfersavesdialog.cpp" line="141"/>
        <source>Overwrite the file "%1"</source>
        <translation type="unfinished"/>
    </message>
    <message>
        <location filename="transfersavesdialog.cpp" line="164"/>
        <location filename="transfersavesdialog.cpp" line="202"/>
        <location filename="transfersavesdialog.cpp" line="237"/>
        <location filename="transfersavesdialog.cpp" line="276"/>
        <source>Confirm</source>
        <translation type="unfinished">Potvrdit</translation>
    </message>
    <message>
        <location filename="transfersavesdialog.cpp" line="165"/>
        <location filename="transfersavesdialog.cpp" line="203"/>
        <source>Copy all save games of character "%1" to the profile?</source>
        <translation type="unfinished"/>
    </message>
    <message>
        <location filename="transfersavesdialog.cpp" line="238"/>
        <source>Move all save games of character "%1" to the global location? Please be aware that this will mess up the running number of save games.</source>
        <translation type="unfinished"/>
    </message>
    <message>
        <location filename="transfersavesdialog.cpp" line="277"/>
        <source>Copy all save games of character "%1" to the global location? Please be aware that this will mess up the running number of save games.</source>
        <translation type="unfinished"/>
    </message>
</context>
</TS>