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
|
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR Free Software Foundation, Inc.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
#: ../rpm.c:179 ../rpm.c:263
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"POT-Creation-Date: 1999-04-05 11:47-0400\n"
"PO-Revision-Date: 1998-10-10 10:10+0200\n"
"Last-Translator: Pavel Makovec <pavelm@terminal.cz>\n"
"Language-Team: Czech <pavelm@terminal.cz>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=ISO-8859-2\n"
"Content-Transfer-Encoding: 8-bit\n"
#: ../build.c:39 ../build.c:52
#, fuzzy, c-format
msgid "Failed to open tar pipe: %s\n"
msgstr "nelze otevřít %s\n"
#. Give up
#: ../build.c:60
#, fuzzy, c-format
msgid "Failed to read spec file from %s\n"
msgstr "Nelze číst %s: %s."
#: ../build.c:85
#, fuzzy, c-format
msgid "Failed to rename %s to %s: %s\n"
msgstr "nelze odstranit %s: %s\n"
#: ../build.c:123
#, fuzzy, c-format
msgid "File is not a regular file: %s\n"
msgstr "soubor není regulérní -- kontrola velikosti se vynechává\n"
#: ../build.c:128
#, fuzzy, c-format
msgid "Unable to open spec file: %s\n"
msgstr "Nelze otevřít %s pro čtení: %s."
#: ../build.c:136
#, c-format
msgid "File contains non-printable characters(%c): %s\n"
msgstr ""
#: ../build.c:229
msgid "buildroot already specified"
msgstr ""
#: ../build.c:235
msgid "--buildarch has been obsoleted. Use the --target option instead.\n"
msgstr ""
#: ../build.c:239
msgid "--buildos has been obsoleted. Use the --target option instead.\n"
msgstr ""
#: ../build.c:260
#, fuzzy
msgid "override build architecture"
msgstr "neověřovat architekturu balíčku"
#: ../build.c:262
#, fuzzy
msgid "override build operating system"
msgstr "neověřovat operační systém balíčku"
#: ../build.c:264
#, fuzzy
msgid "override build root"
msgstr "použít <adr> jako sestavovací kořen"
#: ../build.c:266 ../rpm.c:454
msgid "remove build tree when done"
msgstr "po dokončení odstranit sestavovací strom"
#: ../build.c:268
#, fuzzy
msgid "do not execute any stages of the build"
msgstr "nespouštět žádné etapy"
#: ../build.c:270
msgid "do not accept I18N msgstr's from specfile"
msgstr ""
#: ../build.c:272
#, fuzzy
msgid "remove sources and specfile when done"
msgstr "po dokončení odstranit zdroje a soubor .spec"
#: ../build.c:274 ../rpm.c:452
msgid "skip straight to specified stage (only for c,i)"
msgstr "přeskočit přímo na určenou etapu (pouze pro c,i)"
#: ../build.c:276
msgid "override target platform"
msgstr ""
#: ../build.c:278
msgid "lookup I18N strings in specfile catalog"
msgstr ""
#: ../checksig.c:27 ../checksig.c:166
#, c-format
msgid "%s: Open failed\n"
msgstr "%s: Chybné otevření\n"
#: ../checksig.c:31 ../checksig.c:171
#, c-format
msgid "%s: readLead failed\n"
msgstr "%s: Chybné readLead\n"
#: ../checksig.c:35
#, c-format
msgid "%s: Can't sign v1.0 RPM\n"
msgstr "%s: RPM v1.0 nelze podepsat\n"
#: ../checksig.c:39
#, c-format
msgid "%s: Can't re-sign v2.0 RPM\n"
msgstr "%s: RPM v2.0 nelze podepsat znovu\n"
#: ../checksig.c:43 ../checksig.c:181
#, c-format
msgid "%s: rpmReadSignature failed\n"
msgstr "%s: Chybné rpmReadSignature\n"
#: ../checksig.c:56 ../checksig.c:195
msgid "Couldn't read the header/archive"
msgstr "Nelze načíst hlavičku nebo archiv"
#: ../checksig.c:63
msgid "Couldn't write header/archive to temp file"
msgstr "Nelze zapsat hlavičku nebo archiv do dočasného souboru"
#: ../build/pack.c:349 ../checksig.c:91
#, c-format
msgid "Generating signature: %d\n"
msgstr "Probíhá generování podpisu: %d\n"
#: ../checksig.c:114
msgid "Couldn't read sigtarget"
msgstr "Nelze načíst cílpodpisu"
#: ../checksig.c:123
msgid "Couldn't write package"
msgstr "Balíček nelze zapsat"
#: ../checksig.c:176
#, c-format
msgid "%s: No signature available (v1.0 RPM)\n"
msgstr "%s: Podpis není dostupný (RPM v1.0)\n"
#: ../checksig.c:186
#, c-format
msgid "%s: No signature available\n"
msgstr "%s: Dostupný není žádný podpis\n"
#: ../checksig.c:202
#, c-format
msgid "Unable to write %s"
msgstr "Nelze zapsat %s"
#: ../checksig.c:328
msgid "NOT OK"
msgstr "NENÍ TO OK"
#: ../checksig.c:329 ../checksig.c:343
#, fuzzy
msgid " (MISSING KEYS:"
msgstr " (CHYBÍ KLÍČE) "
#: ../checksig.c:331 ../checksig.c:345
msgid ") "
msgstr ""
#: ../checksig.c:332 ../checksig.c:346
msgid " (UNTRUSTED KEYS:"
msgstr ""
#: ../checksig.c:334 ../checksig.c:348
msgid ")"
msgstr ""
#: ../checksig.c:342
msgid "OK"
msgstr "OK"
#: ../convertdb.c:38
#, fuzzy
msgid "RPM database already exists"
msgstr "dočasná databáze %s již existuje"
#: ../convertdb.c:43
msgid "Old db is missing"
msgstr ""
#: ../convertdb.c:54
msgid "failed to create RPM database /var/lib/rpm"
msgstr ""
#: ../convertdb.c:60
msgid "Old db is corrupt"
msgstr ""
#: ../convertdb.c:69
#, c-format
msgid "oldrpmdbGetPackageInfo failed &olddb = %p olddb.packages = %p\n"
msgstr ""
#: ../convertdb.c:201
msgid "rpmconvert: no arguments expected"
msgstr ""
#: ../convertdb.c:207
msgid "rpmconvert 1.0 - converting database in /var/lib/rpm\n"
msgstr ""
#: ../ftp.c:642
msgid "Success"
msgstr ""
#: ../ftp.c:645
#, fuzzy
msgid "Bad server response"
msgstr "Chybná odezva serveru FTP"
#: ../ftp.c:648
#, fuzzy
msgid "Server IO error"
msgstr "V/V chyba FTP"
#: ../ftp.c:651
#, fuzzy
msgid "Server timeout"
msgstr "Promlka serveru FTP"
#: ../ftp.c:654
#, fuzzy
msgid "Unable to lookup server host address"
msgstr "Nelze vyhledat adresu hostitelského serveru FTP"
#: ../ftp.c:657
#, fuzzy
msgid "Unable to lookup server host name"
msgstr "Nelze vyhledat název hostitelského serveru FTP"
#: ../ftp.c:660
#, fuzzy
msgid "Failed to connect to server"
msgstr "K serveru FTP se nelze připojit"
#: ../ftp.c:663
#, fuzzy
msgid "Failed to establish data connection to server"
msgstr "Se serverem FTP nelze navázat datové spojení"
#: ../ftp.c:666
msgid "IO error to local file"
msgstr "V/V chyba na místní soubor"
#: ../ftp.c:669
msgid "Error setting remote server to passive mode"
msgstr "Chyba při nastavení vzdáleného serveru na pasivní režim"
#: ../ftp.c:672
msgid "File not found on server"
msgstr "Soubor nebyl na serveru nalezen"
#: ../ftp.c:675
msgid "Abort in progress"
msgstr ""
#: ../ftp.c:679
#, fuzzy
msgid "Unknown or unexpected error"
msgstr "Neznámá nebo nečekaná chyba FTP"
#: ../install.c:124
msgid "counting packages to install\n"
msgstr "probíhá počítání balíčků pro instalaci\n"
#: ../install.c:128
#, c-format
msgid "found %d packages\n"
msgstr "nalezeno %d balíčků\n"
#: ../install.c:137
msgid "looking for packages to download\n"
msgstr "probíhá hledání balíčků pro stažení\n"
#: ../install.c:148
#, c-format
msgid "Retrieving %s\n"
msgstr "Probíhá načítání %s\n"
#: ../install.c:157
#, c-format
msgid " ... as %s\n"
msgstr ""
#: ../install.c:161
#, fuzzy, c-format
msgid "skipping %s - transfer failed - %s\n"
msgstr "chyba: vynechává se %s - přenos neúspěšný - %s\n"
#: ../install.c:178
#, c-format
msgid "retrieved %d packages\n"
msgstr "získalo se %d balíčků\n"
#: ../install.c:187 ../install.c:291
#, fuzzy, c-format
msgid "cannot open file %s\n"
msgstr "nelze otevřít soubor %s: "
#: ../install.c:199 ../lib/query.c:540
#, c-format
msgid "%s does not appear to be a RPM package\n"
msgstr "nezdá se, že by %s byl balíček typu RPM\n"
#: ../install.c:203 ../install.c:428
#, fuzzy, c-format
msgid "%s cannot be installed\n"
msgstr "chyba: %s nelze nainstalovat\n"
#: ../install.c:218 ../install.c:341
#, fuzzy, c-format
msgid "cannot open %s/packages.rpm\n"
msgstr "chyba: nelze otevřít %s%s/packages.rpm\n"
#: ../install.c:236
#, c-format
msgid "found %d source and %d binary packages\n"
msgstr "nalezeno %d zdrojových a %d binárních balíčků\n"
#: ../install.c:246
msgid "failed dependencies:\n"
msgstr "chybné závislosti:\n"
#: ../install.c:264
msgid "installing binary packages\n"
msgstr "probíhá instalace binárních balíčků\n"
#: ../install.c:352 ../lib/query.c:685 ../verify.c:243
#, c-format
msgid "package %s is not installed\n"
msgstr "balíček %s není nainstalován\n"
#: ../install.c:356
#, fuzzy, c-format
msgid "searching for package %s\n"
msgstr "chyba při hledání balíčku %s\n"
#: ../install.c:365
#, c-format
msgid "\"%s\" specifies multiple packages\n"
msgstr "\"%s\" specifikuje více balíčků\n"
#: ../install.c:391
msgid "removing these packages would break dependencies:\n"
msgstr "odstranění těchto balíčků by porušilo závislosti:\n"
#: ../install.c:418
#, fuzzy, c-format
msgid "cannot open %s\n"
msgstr "chyba: nelze otevřít %s\n"
#: ../install.c:423
#, c-format
msgid "Installing %s\n"
msgstr "Probíhá instalace %s\n"
#: ../install.c:467
#, c-format
msgid " is needed by %s-%s-%s\n"
msgstr " je nutné pro %s-%s-%s\n"
#: ../install.c:470
#, c-format
msgid " conflicts with %s-%s-%s\n"
msgstr " koliduje s %s-%s-%s\n"
#: ../oldrpmdb.c:454
#, fuzzy, c-format
msgid "pulling %s from database\n"
msgstr "otevírá se stará databáze\n"
#: ../oldrpmdb.c:461
#, fuzzy
msgid "package not found in database"
msgstr "balíček %s nenalezen v %s"
#: ../oldrpmdb.c:522
msgid "no copyright!\n"
msgstr ""
#: ../rpm.c:156
#, c-format
msgid "rpm: %s\n"
msgstr "rpm: %s\n"
#: ../rpm.c:167
#, c-format
msgid "RPM version %s\n"
msgstr "RPM verze %s\n"
#: ../rpm.c:171
msgid "Copyright (C) 1998 - Red Hat Software"
msgstr "Copyright (c) 1998 - Red Hat Software"
#: ../rpm.c:172
msgid ""
"This may be freely redistributed under the terms of the GNU Public License"
msgstr ""
"Tento program lze volně rozšiřovat podle podmínek GPL (GNU Public License)."
#: ../rpm.c:181
msgid "usage: rpm {--help}"
msgstr "použití: rpm {--help}"
#: ../rpm.c:182
msgid " rpm {--version}"
msgstr " rpm {--version}"
#: ../rpm.c:183
msgid " rpm {--initdb} [--dbpath <dir>]"
msgstr " rpm {--initdb} [--dbpath <adr>]"
#: ../rpm.c:184
msgid ""
" rpm {--install -i} [-v] [--hash -h] [--percent] [--force] [--test]"
msgstr ""
" rpm {--install -i} [-v] [--hash -h] [--percent] [--force] [--test]"
#: ../rpm.c:185
msgid " [--replacepkgs] [--replacefiles] [--root <dir>]"
msgstr ""
" [--replacepkgs] [--replacefiles] [--root <adr>]"
#: ../rpm.c:186
msgid " [--excludedocs] [--includedocs] [--noscripts]"
msgstr " [--excludedocs] [--includedocs] [--noscripts]"
#: ../rpm.c:187
msgid ""
" [--rcfile <file>] [--ignorearch] [--dbpath <dir>]"
msgstr ""
" [--rcfile <soubor>] [--ignorearch] [--dbpath <adr>]"
#: ../rpm.c:188
msgid ""
" [--prefix <dir>] [--ignoreos] [--nodeps] [--allfiles]"
msgstr ""
" [--prefix <adr>] [--ignoreos] [--nodeps] [--allfiles]"
#: ../rpm.c:189
msgid ""
" [--ftpproxy <host>] [--ftpport <port>] [--justdb]"
msgstr ""
" [--ftpproxy <hostitel>] [--ftpport <port>] [--justdb]"
#: ../rpm.c:190 ../rpm.c:199 ../rpm.c:208
#, fuzzy
msgid " [--httpproxy <host>] [--httpport <port>] "
msgstr " [--ftpproxy <hostitel>] [--ftpport <port>]"
#: ../rpm.c:191 ../rpm.c:201
msgid " [--noorder] [--relocate oldpath=newpath]"
msgstr " [--noorder] [--relocate starácesta=novácesta]"
#: ../rpm.c:192
#, fuzzy
msgid ""
" [--badreloc] [--notriggers] [--excludepath <path>]"
msgstr ""
" [--badreloc] [--notriggers] soubor1.rpm ... "
"souborN.rpm"
#: ../rpm.c:193
#, fuzzy
msgid " [--ignoresize] file1.rpm ... fileN.rpm"
msgstr " [--badreloc] soubor1.rpm ... souborN.rpm"
#: ../rpm.c:194
msgid ""
" rpm {--upgrade -U} [-v] [--hash -h] [--percent] [--force] [--test]"
msgstr ""
" rpm {--upgrade -U} [-v] [--hash -h] [--percent] [--force] [--test]"
#: ../rpm.c:195
msgid " [--oldpackage] [--root <dir>] [--noscripts]"
msgstr " [--oldpackage] [--root <adr>] [--noscripts]"
#: ../rpm.c:196
msgid ""
" [--excludedocs] [--includedocs] [--rcfile <file>]"
msgstr ""
" [--excludedocs] [--includedocs] [--rcfile <soubor>]"
#: ../rpm.c:197
msgid ""
" [--ignorearch] [--dbpath <dir>] [--prefix <dir>] "
msgstr ""
" [--ignorearch] [--dbpath <adr>] [--prefix <adr>] "
#: ../rpm.c:198
msgid " [--ftpproxy <host>] [--ftpport <port>]"
msgstr " [--ftpproxy <hostitel>] [--ftpport <port>]"
#: ../rpm.c:200
msgid " [--ignoreos] [--nodeps] [--allfiles] [--justdb]"
msgstr ""
" [--ignoreos] [--nodeps] [--allfiles] [--justdb]"
#: ../rpm.c:202
#, fuzzy
msgid ""
" [--badreloc] [--excludepath <path>] [--ignoresize]"
msgstr " [--changelog] [--dbpath <adr>] [cíle]"
#: ../rpm.c:203
#, fuzzy
msgid " file1.rpm ... fileN.rpm"
msgstr " [--badreloc] soubor1.rpm ... souborN.rpm"
#: ../rpm.c:204
msgid " rpm {--query -q} [-afpg] [-i] [-l] [-s] [-d] [-c] [-v] [-R]"
msgstr " rpm {--query -q} [-afpg] [-i] [-l] [-s] [-d] [-c] [-v] [-R]"
#: ../rpm.c:205
msgid " [--scripts] [--root <dir>] [--rcfile <file>]"
msgstr " [--scripts] [--root <adr>] [--rcfile <soubor>]"
#: ../rpm.c:206
msgid " [--whatprovides] [--whatrequires] [--requires]"
msgstr " [--whatprovides] [--whatrequires] [--requires]"
#: ../rpm.c:207
msgid ""
" [--triggeredby] [--ftpuseport] [--ftpproxy <host>]"
msgstr ""
" [--triggeredby] [--ftpuseport] [--ftpproxy "
"<hostitel>]"
#: ../rpm.c:209
msgid ""
" [--ftpport <port>] [--provides] [--triggers] [--dump]"
msgstr ""
" [--ftpport <port>] [--provides] [--triggers] [--dump]"
#: ../rpm.c:210
msgid " [--changelog] [--dbpath <dir>] [targets]"
msgstr " [--changelog] [--dbpath <adr>] [cíle]"
#: ../rpm.c:211
msgid " rpm {--verify -V -y} [-afpg] [--root <dir>] [--rcfile <file>]"
msgstr " rpm {--verify -V -y} [-afpg] [--root <adr>] [--rcfile <soubor>]"
#: ../rpm.c:212
msgid ""
" [--dbpath <dir>] [--nodeps] [--nofiles] [--noscripts]"
msgstr ""
" [--dbpath <adr>] [--nodeps] [--nofiles] [--noscripts]"
#: ../rpm.c:213
msgid " [--nomd5] [targets]"
msgstr " [--nomd5] [cíle]"
#: ../rpm.c:214
msgid " rpm {--setperms} [-afpg] [target]"
msgstr " rpm {--setperms} [-afpg] [cíl]"
#: ../rpm.c:215
msgid " rpm {--setugids} [-afpg] [target]"
msgstr " rpm {--setugids} [-afpg] [cíl]"
#: ../rpm.c:216
msgid " rpm {--erase -e} [--root <dir>] [--noscripts] [--rcfile <file>]"
msgstr ""
" rpm {--erase -e} [--root <adr>] [--noscripts] [--rcfile <soubor>]"
#: ../rpm.c:217
msgid " [--dbpath <dir>] [--nodeps] [--allmatches]"
msgstr " [--dbpath <adr>] [--nodeps] [--allmatches]"
#: ../rpm.c:218
msgid ""
" [--justdb] [--notriggers] rpackage1 ... packageN"
msgstr ""
" [--justdb] [--notriggers] rbalíček1 ... balíčekN"
#: ../rpm.c:219
msgid ""
" rpm {-b|t}[plciba] [-v] [--short-circuit] [--clean] [--rcfile <file>]"
msgstr ""
" rpm {-b|t}[plciba] [-v] [--short-circuit] [--clean] [--rcfile "
"<soubor>]"
#: ../rpm.c:220
#, fuzzy
msgid " [--sign] [--nobuild] [--timecheck <s>] ]"
msgstr ""
" [--sign] [--test] [--timecheck <s>] [--buildos <os>]"
#: ../rpm.c:221
#, fuzzy
msgid " [--target=platform1[,platform2...]]"
msgstr " [--buildarch <arch>] [--rmsource] soubor.spec"
#: ../rpm.c:222
#, fuzzy
msgid " [--rmsource] specfile"
msgstr " [--buildarch <arch>] [--rmsource] soubor.spec"
#: ../rpm.c:223
msgid " rpm {--rmsource} [--rcfile <file>] [-v] specfile"
msgstr " rpm {--rmsource} [--rcfile <soubor>] [-v] soubor.spec"
#: ../rpm.c:224
msgid ""
" rpm {--rebuild} [--rcfile <file>] [-v] source1.rpm ... sourceN.rpm"
msgstr ""
" rpm {--rebuild} [--rcfile <soubor>] [-v] zdroj1.rpm ... zdrojN.rpm"
#: ../rpm.c:225
msgid ""
" rpm {--recompile} [--rcfile <file>] [-v] source1.rpm ... sourceN.rpm"
msgstr ""
" rpm {--recompile} [--rcfile <soubor>] [-v] zdroj1.rpm ... zdrojN.rpm"
#: ../rpm.c:226
msgid " rpm {--resign} [--rcfile <file>] package1 package2 ... packageN"
msgstr ""
" rpm {--resign} [--rcfile <soubor>] balíček1 balíček2 ... balíčekN"
#: ../rpm.c:227
msgid " rpm {--addsign} [--rcfile <file>] package1 package2 ... packageN"
msgstr ""
" rpm {--addsign} [--rcfile <soubor>] balíček1 balíček2 ... balíčekN"
#: ../rpm.c:228
#, fuzzy
msgid ""
" rpm {--checksig -K} [--nopgp] [--nogpg] [--nomd5] [--rcfile <file>]"
msgstr " rpm {--checksig -K} [--nopgp] [--nomd5] [--rcfile <soubor>]"
#: ../rpm.c:229
msgid " package1 ... packageN"
msgstr " balíček1 ... balíčekN"
#: ../rpm.c:230
msgid " rpm {--rebuilddb} [--rcfile <file>] [--dbpath <dir>]"
msgstr " rpm {--rebuilddb} [--rcfile <soubor>] [--dbpath <adr>]"
#: ../rpm.c:231
msgid " rpm {--querytags}"
msgstr " rpm {--querytags}"
#: ../rpm.c:265
msgid "usage:"
msgstr "použití:"
#: ../rpm.c:267
msgid "print this message"
msgstr "vytisknout tuto zprávu"
#: ../rpm.c:269
msgid "print the version of rpm being used"
msgstr "vytisknout používanou verzi rpm"
#: ../rpm.c:270
msgid " all modes support the following arguments:"
msgstr " všechny režimy podporují tyto argumenty:"
#: ../rpm.c:271
msgid " --rcfile <file> "
msgstr " --rcfile <soubor> "
#: ../rpm.c:272
msgid "use <file> instead of /etc/rpmrc and $HOME/.rpmrc"
msgstr "použijte <soubor> místo /etc/rpmrc a $HOME/.rpmrc"
#: ../rpm.c:274
msgid "be a little more verbose"
msgstr "o něco popisnější režim"
#: ../rpm.c:276
msgid "be incredibly verbose (for debugging)"
msgstr "velmi popisný režim (pro odlaďování)"
#: ../rpm.c:278
msgid "query mode"
msgstr "dotazovací režim"
#: ../rpm.c:279 ../rpm.c:341 ../rpm.c:405 ../rpm.c:433
msgid " --root <dir> "
msgstr " --root <adr> "
#: ../rpm.c:280 ../rpm.c:342 ../rpm.c:406 ../rpm.c:434 ../rpm.c:496
msgid "use <dir> as the top level directory"
msgstr "použít <adr> jako adresář vrcholové úrovně"
#: ../rpm.c:281 ../rpm.c:339 ../rpm.c:369 ../rpm.c:421 ../rpm.c:493
msgid " --dbpath <dir> "
msgstr " --dbpath <adr> "
#: ../rpm.c:282 ../rpm.c:340 ../rpm.c:370 ../rpm.c:422 ../rpm.c:494
msgid "use <dir> as the directory for the database"
msgstr "použít <adr> jako adresář pro databázi"
#: ../rpm.c:283
msgid " --queryformat <qfmt>"
msgstr " --queryformat <qfmt>"
#: ../rpm.c:284
msgid "use <qfmt> as the header format (implies -i)"
msgstr "použít <qfmt> jako hlavičkový formát (implikuje -i)"
#: ../rpm.c:285
msgid ""
" install, upgrade and query (with -p) allow ftp URL's to be used in place"
msgstr ""
" instalace, aktualizace a dotazování (s -p) umožňují použití URL-adres ftp"
#: ../rpm.c:286
msgid " of file names as well as the following options:"
msgstr " místo názvů souborů včetně následujících voleb:"
#: ../rpm.c:287
msgid " --ftpproxy <host> "
msgstr " --ftpproxy <hostitel> "
#: ../rpm.c:288
msgid "hostname or IP of ftp proxy"
msgstr "název hostitele či IP pro ftp-proxy"
#: ../rpm.c:289
msgid " --ftpport <port> "
msgstr " --ftpport <port> "
#: ../rpm.c:290
msgid "port number of ftp server (or proxy)"
msgstr "číslo portu serveru ftp (nebo proxy)"
#: ../rpm.c:291
#, fuzzy
msgid " --httpproxy <host> "
msgstr " --ftpproxy <hostitel> "
#: ../rpm.c:292
#, fuzzy
msgid "hostname or IP of http proxy"
msgstr "název hostitele či IP pro ftp-proxy"
#: ../rpm.c:293
#, fuzzy
msgid " --httpport <port> "
msgstr " --ftpport <port> "
#: ../rpm.c:294
#, fuzzy
msgid "port number of http server (or proxy)"
msgstr "číslo portu serveru ftp (nebo proxy)"
#: ../rpm.c:295
msgid " Package specification options:"
msgstr " Volby pro specifikaci balíčku:"
#: ../rpm.c:297
msgid "query all packages"
msgstr "dotazovat všechny balíčky"
#: ../rpm.c:298
msgid " -f <file>+ "
msgstr " -f <soubor>+ "
#: ../rpm.c:299
msgid "query package owning <file>"
msgstr "dotazy na balíček vlastnící <soubor>"
#: ../rpm.c:300
msgid " -p <packagefile>+ "
msgstr " -p <souborbalíku>+ "
#: ../rpm.c:301
msgid "query (uninstalled) package <packagefile>"
msgstr "dotazovat (nenainstalovaný) balíček <souborbalíku>"
#: ../rpm.c:302
msgid " --triggeredby <pkg>"
msgstr " --triggeredby <balík>"
#: ../rpm.c:303
msgid "query packages triggered by <pkg>"
msgstr "dotazy na balíčky aktivované <balíkem>"
#: ../rpm.c:304
msgid " --whatprovides <cap>"
msgstr " --whatprovides <sch>"
#: ../rpm.c:305
msgid "query packages which provide <cap> capability"
msgstr "dotazovat balíčky poskytující schopnost <sch>"
#: ../rpm.c:306
msgid " --whatrequires <cap>"
msgstr " --whatrequires <sch>"
#: ../rpm.c:307
msgid "query packages which require <cap> capability"
msgstr "dotazovat balíčky vyžadující schopnost <sch>"
#: ../rpm.c:308
msgid " Information selection options:"
msgstr " Volby pro vyběr informací:"
#: ../rpm.c:310
msgid "display package information"
msgstr "zobrazit informace o balíčku"
#: ../rpm.c:312
msgid "display the package's change log"
msgstr "zobrazit protokol o změnách balíčku"
#: ../rpm.c:314
msgid "display package file list"
msgstr "zobrazit seznam souborů balíčků"
#: ../rpm.c:316
msgid "show file states (implies -l)"
msgstr "zobrazit stavy souborů (implikuje -l)"
#: ../rpm.c:318
msgid "list only documentation files (implies -l)"
msgstr "uvést pouze dokumentační soubory (implikuje -l)"
#: ../rpm.c:320
msgid "list only configuration files (implies -l)"
msgstr "uvést pouze konfigurační soubory (implikuje -l)"
#: ../rpm.c:322
msgid ""
"show all verifiable information for each file (must be used with -l, -c, or "
"-d)"
msgstr ""
"zobrazit všechny ověřitelné údaje pro každý soubor (musí se použít s -l, -c "
"nebo -d)"
#: ../rpm.c:324
msgid "list capabilities package provides"
msgstr "uvést schopnosti poskytované balíčkem"
#: ../rpm.c:325
msgid " --requires"
msgstr " --requires"
#: ../rpm.c:327
msgid "list package dependencies"
msgstr "uvést závislosti balíčků"
#: ../rpm.c:329
msgid "print the various [un]install scripts"
msgstr "vytisknout různé [de]instalační skripty"
#: ../rpm.c:331
msgid "show the trigger scripts contained in the package"
msgstr "zobrazit aktivační skripty obsažené v balíčku"
#: ../rpm.c:335
msgid " --pipe <cmd> "
msgstr " --pipe <příkaz> "
#: ../rpm.c:336
msgid "send stdout to <cmd>"
msgstr "odeslat stdout do <příkazu>"
#: ../rpm.c:338
msgid ""
"verify a package installation using the same same package specification "
"options as -q"
msgstr ""
"ověřit instalaci balíčku použitím stejných voleb pro specifikaci balíčku, "
"jako pro -q"
#: ../rpm.c:344 ../rpm.c:392 ../rpm.c:426
msgid "do not verify package dependencies"
msgstr "neověřovat závislosti balíčků"
#: ../rpm.c:346
msgid "do not verify file md5 checksums"
msgstr "neověřovat kontrolní součty souborů md5"
#: ../rpm.c:348
msgid "do not verify file attributes"
msgstr "neověřovat atributy souborů"
#: ../rpm.c:351
msgid ""
"set the file permissions to those in the package database using the same "
"package specification options as -q"
msgstr ""
"nastavit oprávnění souborů dle údajů v databázi balíčků pomocí stejných "
"voleb pro specifikaci balíčku, jako pro -q"
#: ../rpm.c:354
msgid ""
"set the file owner and group to those in the package database using the same "
"package specification options as -q"
msgstr ""
"nastavit vlastníka a skupinu souborů dle údajů v databázi balíčků pomocí "
"stejných voleb pro specifikaci balíčku, jako pro -q"
#: ../rpm.c:358
msgid " --install <packagefile>"
msgstr " --install <souborbalíku>"
#: ../rpm.c:359
msgid " -i <packagefile> "
msgstr " -i <souborbalíku> "
#: ../rpm.c:360
msgid "install package"
msgstr "nainstalovat balíček"
#: ../rpm.c:361
#, fuzzy
msgid " --excludepath <path>"
msgstr " --relocate <starácesta>=<novácesta>"
#: ../rpm.c:362
#, fuzzy
msgid "skip files in path <path>"
msgstr "soubor %s je sdílen\n"
#: ../rpm.c:363
msgid " --relocate <oldpath>=<newpath>"
msgstr " --relocate <starácesta>=<novácesta>"
#: ../rpm.c:364
msgid "relocate files from <oldpath> to <newpath>"
msgstr "přemístit soubory ze <starécesty> na <novoucestu>"
#: ../rpm.c:366
msgid "relocate files even though the package doesn't allow it"
msgstr "přemístit soubory, i když to balíček nedovoluje"
#: ../rpm.c:367
msgid " --prefix <dir> "
msgstr " --prefix <adr> "
#: ../rpm.c:368
msgid "relocate the package to <dir>, if relocatable"
msgstr "přemístit soubory do <adr>, jsou-li přemístitelné"
#: ../rpm.c:372
msgid "do not install documentation"
msgstr "neinstalovat dokumentaci"
#: ../rpm.c:374
msgid "short hand for --replacepkgs --replacefiles"
msgstr "zkratka pro --replacepkgs --replacefiles"
#: ../rpm.c:377
msgid "print hash marks as package installs (good with -v)"
msgstr "během instalace balíčku zobrazit dvojité křížky (dobré s -v)"
#: ../rpm.c:379
msgid "install all files, even configurations which might otherwise be skipped"
msgstr ""
"nainstalovat všechny soubory; i konfigurace, které by se jinak mohly vynechat"
#: ../rpm.c:382
msgid "don't verify package architecture"
msgstr "neověřovat architekturu balíčku"
#: ../rpm.c:384
msgid "don't check disk space before installing"
msgstr ""
#: ../rpm.c:386
msgid "don't verify package operating system"
msgstr "neověřovat operační systém balíčku"
#: ../rpm.c:388
msgid "install documentation"
msgstr "nainstalovat dokumentaci"
#: ../rpm.c:390 ../rpm.c:424
msgid "update the database, but do not modify the filesystem"
msgstr "inovovat databázi, ale neupravovat souborový systém"
#: ../rpm.c:394 ../rpm.c:428
msgid "do not reorder package installation to satisfy dependencies"
msgstr "pro vyřešení závislostí neměnit pořadí instalace balíčků"
#: ../rpm.c:396
msgid "don't execute any installation scripts"
msgstr "nespouštět žádné instalační skripty"
#: ../rpm.c:398 ../rpm.c:432
msgid "don't execute any scripts triggered by this package"
msgstr "nespouštět žádné skripty aktivované tímto balíčkem"
#: ../rpm.c:400
msgid "print percentages as package installs"
msgstr "během instalace balíčku zobrazit procenta"
#: ../rpm.c:402
msgid "install even if the package replaces installed files"
msgstr "instalovat, i když balíček nahradí nainstalované soubory"
#: ../rpm.c:404
msgid "reinstall if the package is already present"
msgstr "přeinstalovat, i když je již balíček přítomen"
#: ../rpm.c:408
msgid "don't install, but tell if it would work or not"
msgstr "neinstalovat ale sdělit, zda-li by to fungovalo či nikoli"
#: ../rpm.c:410
msgid " --upgrade <packagefile>"
msgstr " --upgrade <souborbalíku>"
#: ../rpm.c:411
msgid " -U <packagefile> "
msgstr " -U <souborbalíku> "
#: ../rpm.c:412
msgid "upgrade package (same options as --install, plus)"
msgstr "aktualizovat balíček (stejné možnosti jako --install, plus)"
#: ../rpm.c:414
msgid ""
"upgrade to an old version of the package (--force on upgrades does this "
"automatically)"
msgstr ""
"aktualizovat na starou verzi balíčku (--force to dělá při aktualizacích "
"automaticky)"
#: ../rpm.c:416
msgid " --erase <package>"
msgstr " --erase <balíček>"
#: ../rpm.c:418
msgid "erase (uninstall) package"
msgstr "smazat (deinstalovat) balíček"
#: ../rpm.c:420
msgid ""
"remove all packages which match <package> (normally an error is generated if "
"<package> specified multiple packages)"
msgstr ""
"odstranit všechny balíčky odpovídající <balíčku> (obvykle se generuje chyba, "
"specifikuje-li <balíček> více balíčků)"
#: ../rpm.c:430
msgid "do not execute any package specific scripts"
msgstr "nespouštět žádné skripty určené pro balíčky"
#: ../rpm.c:436
msgid " -b<stage> <spec> "
msgstr " -b<etapa> <.spec> "
#: ../rpm.c:437
msgid " -t<stage> <tarball> "
msgstr " -t<etapa> <klubkotar> "
#: ../rpm.c:438
msgid "build package, where <stage> is one of:"
msgstr "sestavit balíček, kde <etapa> je jedna z:"
#: ../rpm.c:440
msgid "prep (unpack sources and apply patches)"
msgstr "příprava (rozbalí zdroje a aplikuje záplaty)"
#: ../rpm.c:442
#, c-format
msgid "list check (do some cursory checks on %files)"
msgstr "kontrola seznamů (provede zběžné kontroly %files)"
#: ../rpm.c:444
msgid "compile (prep and compile)"
msgstr "kompilace (příprava a kompilace)"
#: ../rpm.c:446
msgid "install (prep, compile, install)"
msgstr "instalace (příprava, kompilace a instalace)"
#: ../rpm.c:448
msgid "binary package (prep, compile, install, package)"
msgstr "binární balíček (příprava, kompilace, instalace, zabalení)"
#: ../rpm.c:450
msgid "bin/src package (prep, compile, install, package)"
msgstr "balíček bin/src (příprava, kompilace, instalace, zabalení)"
#: ../rpm.c:456
msgid "remove sources and spec file when done"
msgstr "po dokončení odstranit zdroje a soubor .spec"
#: ../rpm.c:458
#, fuzzy
msgid "generate PGP/GPG signature"
msgstr "generovat podpis PGP"
#: ../rpm.c:459
msgid " --buildroot <dir> "
msgstr " --buildroot <adr> "
#: ../rpm.c:460
msgid "use <dir> as the build root"
msgstr "použít <adr> jako sestavovací kořen"
#: ../rpm.c:461
#, fuzzy
msgid " --target=<platform>+"
msgstr " --queryformat <qfmt>"
#: ../rpm.c:462
msgid "build the packages for the build targets platform1...platformN."
msgstr ""
#: ../rpm.c:464
msgid "do not execute any stages"
msgstr "nespouštět žádné etapy"
#: ../rpm.c:465
msgid " --timecheck <secs> "
msgstr " --timecheck <s> "
#: ../rpm.c:466
msgid "set the time check to <secs> seconds (0 disables)"
msgstr "nastavit časovou kontrolu na <s> sekund (0 ji deaktivuje)"
#: ../rpm.c:468
msgid " --rebuild <src_pkg> "
msgstr " --rebuild <zdrojbalík>"
#: ../rpm.c:469
msgid ""
"install source package, build binary package and remove spec file, sources, "
"patches, and icons."
msgstr ""
"instalovat zdrojový balíček, sestavit binární balíček a odstranit soubor "
".spec, zdroje, záplaty i ikony."
#: ../rpm.c:470
msgid " --rmsource <spec> "
msgstr " --rmsource <.spec> "
#: ../rpm.c:471
msgid "remove sources and spec file"
msgstr "odstranit zdroje a soubor .spec"
#: ../rpm.c:472
msgid " --recompile <src_pkg> "
msgstr " --recompile <zdrojbal>"
#: ../rpm.c:473
msgid "like --rebuild, but don't build any package"
msgstr "jako --rebuild, ale nesestavovat žádné balíčky"
#: ../rpm.c:474
msgid " --resign <pkg>+ "
msgstr " --resign <balík>+ "
#: ../rpm.c:475
msgid "sign a package (discard current signature)"
msgstr "podepsat balíček (zahodit aktuální podpis)"
#: ../rpm.c:476
msgid " --addsign <pkg>+ "
msgstr " --addsign <balík>+ "
#: ../rpm.c:477
msgid "add a signature to a package"
msgstr "přidat k balíčku podpis"
#: ../rpm.c:479
msgid " --checksig <pkg>+ "
msgstr " --checksig <balík>+ "
#: ../rpm.c:480
msgid "verify package signature"
msgstr "ověřit podpis balíčku"
#: ../rpm.c:482
msgid "skip any PGP signatures"
msgstr "vynechat případné podpisy PGP"
#: ../rpm.c:484
#, fuzzy
msgid "skip any GPG signatures"
msgstr "vynechat případné podpisy PGP"
#: ../rpm.c:486
msgid "skip any MD5 signatures"
msgstr "vynechat případné podpisy MD5"
#: ../rpm.c:488
msgid "list the tags that can be used in a query format"
msgstr "uvést příznaky, které lze použít v dotazovacím formátu"
#: ../rpm.c:490
msgid "make sure a valid database exists"
msgstr "zajistit, aby existovala platná databáze"
#: ../rpm.c:492
msgid "rebuild database from existing database"
msgstr "přestavit databázi z existující databáze"
#: ../rpm.c:625 ../rpm.c:631 ../rpm.c:638 ../rpm.c:644 ../rpm.c:653
#: ../rpm.c:660 ../rpm.c:707 ../rpm.c:713 ../rpm.c:777 ../rpm.c:785
#: ../rpm.c:792 ../rpm.c:801 ../rpm.c:808 ../rpm.c:816 ../rpm.c:849
#: ../rpm.c:901 ../rpm.c:908
msgid "only one major mode may be specified"
msgstr "specifikovat lze jen jeden hlavní režim"
#: ../rpm.c:646
msgid "-u and --uninstall are deprecated and no longer work.\n"
msgstr "-u a --uninstall se neschvalují a již je nelze použít.\n"
#: ../rpm.c:648
msgid "Use -e or --erase instead.\n"
msgstr "Místo nich použijte -e nebo --erase.\n"
#: ../rpm.c:664
msgid "--build (-b) requires one of a,b,i,c,p,l as its sole argument"
msgstr ""
"--build (-b) vyžaduje jednu z voleb a,b,i,c,p,l jako svůj výhradní argument"
#: ../rpm.c:668
msgid "--tarbuild (-t) requires one of a,b,i,c,p,l as its sole argument"
msgstr ""
"--tarbuild (-t) vyžaduje jednu z voleb a,b,i,c,p,l jako svůj výhradní "
"argument"
#: ../rpm.c:720 ../rpm.c:727 ../rpm.c:735 ../rpm.c:743 ../rpm.c:753
#: ../rpm.c:761 ../rpm.c:769 ../rpm.c:915
msgid "one type of query/verify may be performed at a time"
msgstr "v daném okamžiku lze provést jeden typ dotazu či ověření"
#: ../rpm.c:824
msgid "arguments to --dbpath must begin with a /"
msgstr "argumenty pro --dbpath musejí začínat znakem /"
#. XXX FIXME
#: ../rpm.c:834
#, fuzzy
msgid "--prefix is broke, use --relocate /oldpath=/newpath instead"
msgstr " --relocate <starácesta>=<novácesta>"
#: ../rpm.c:855
msgid "relocations must begin with a /"
msgstr "přemístění musejí začínat znakem /"
#: ../rpm.c:857
msgid "relocations must contain a ="
msgstr "přemístění musejí obsahovat ="
#: ../rpm.c:860
msgid "relocations must have a / following the ="
msgstr "přemístění musejí mít za znakem = znak /"
#: ../rpm.c:869
#, fuzzy
msgid "exclude paths must begin with a /"
msgstr "přemístění musejí začínat znakem /"
#: ../rpm.c:878
#, fuzzy, c-format
msgid "Internal error in argument processing (%d) :-(\n"
msgstr "Interní chyba při zpracování argumentů :-(\n"
#: ../rpm.c:928
msgid "--dbpath given for operation that does not use a database"
msgstr "--dbpath zadána pro operaci, která databázi nepoužívá"
#: ../rpm.c:933
msgid "--timecheck may only be used during package builds"
msgstr "--timecheck lze použít jen při sestavování balíčků"
#: ../rpm.c:936 ../rpm.c:939
msgid "unexpected query specifiers"
msgstr "nečekané specifikátory dotazu"
#: ../rpm.c:943
msgid "unexpected query source"
msgstr "nečekaný zdroj dotazu"
#: ../rpm.c:948
#, fuzzy
msgid "only installation, upgrading and rmsource may be forced"
msgstr "vynucena může být jen instalace a aktualizace"
#: ../rpm.c:951
msgid "files may only be relocated during package installation"
msgstr "soubory mohou být přemístěny jen při instalaci balíčků"
#: ../rpm.c:954
msgid "only one of --prefix or --relocate may be used"
msgstr "použít lze jen jeden z --prefix nebo --relocate"
#: ../rpm.c:957
#, fuzzy
msgid ""
"--relocate and --excludepath may only be used when installing new packages"
msgstr "--relocate se může použít jen při instalaci balíčků"
#: ../rpm.c:960
msgid "--prefix may only be used when installing new packages"
msgstr "--prefix se může použít jen při instalaci nových balíčků"
#: ../rpm.c:963
msgid "arguments to --prefix must begin with a /"
msgstr "argumenty pro --prefix musejí začínat znakem /"
#: ../rpm.c:966
msgid "--hash (-h) may only be specified during package installation"
msgstr "--hash (-h) se může specifikovat jen při instalaci balíčků"
#: ../rpm.c:970
msgid "--percent may only be specified during package installation"
msgstr "--percent se může specifikovat jen při instalaci balíčků"
#: ../rpm.c:974
msgid "--replacefiles may only be specified during package installation"
msgstr "--replacefiles se může specifikovat jen při instalaci balíčků"
#: ../rpm.c:978
msgid "--replacepkgs may only be specified during package installation"
msgstr "--replacepkgs se může specifikovat jen při instalaci balíčků"
#: ../rpm.c:982
msgid "--excludedocs may only be specified during package installation"
msgstr "--excludedocs se může specifikovat jen při instalaci balíčků"
#: ../rpm.c:986
msgid "--includedocs may only be specified during package installation"
msgstr "--includedocs se může specifikovat jen při instalaci balíčků"
#: ../rpm.c:990
msgid "only one of --excludedocs and --includedocs may be specified"
msgstr "specifikovat lze jen jeden z --excludedocs a --includedocs"
#: ../rpm.c:994
msgid "--ignorearch may only be specified during package installation"
msgstr "--ignorearch se může specifikovat jen při instalaci balíčků"
#: ../rpm.c:998
msgid "--ignoreos may only be specified during package installation"
msgstr "--ignoreos se může specifikovat jen při instalaci balíčků"
#: ../rpm.c:1002
#, fuzzy
msgid "--ignoresize may only be specified during package installation"
msgstr "--ignoreos se může specifikovat jen při instalaci balíčků"
#: ../rpm.c:1006
msgid "--allmatches may only be specified during package erasure"
msgstr "--allmatches se může specifikovat jen při mazání balíčků"
#: ../rpm.c:1010
msgid "--allfiles may only be specified during package installation"
msgstr "--allfiles se může specifikovat jen při instalaci balíčků"
#: ../rpm.c:1014
msgid "--justdb may only be specified during package installation and erasure"
msgstr "--justdb se může specifikovat jen při instalaci nebo mazání balíčků"
#: ../rpm.c:1019
msgid ""
"--noscripts may only be specified during package installation, erasure, and "
"verification"
msgstr ""
"--noscripts se může specifikovat jen při instalaci, mazání nebo verifikaci "
"balíčků"
#: ../rpm.c:1023
msgid ""
"--notriggers may only be specified during package installation, erasure, and "
"verification"
msgstr ""
"--notriggers se může specifikovat jen při instalaci, mazání nebo verifikaci "
"balíčků"
#: ../rpm.c:1028
msgid ""
"--nodeps may only be specified during package installation, erasure, and "
"verification"
msgstr ""
"--nodeps se může specifikovat jen při instalaci, mazání nebo verifikaci "
"balíčků"
#: ../rpm.c:1032
msgid "--nofiles may only be specified during package verification"
msgstr "--nofiles se může specifikovat jen při verifikaci balíčků"
#: ../rpm.c:1037
msgid ""
"--test may only be specified during package installation, erasure, and "
"building"
msgstr ""
"--test se může specifikovat jen při instalaci, mazání nebo sestavování "
"balíčků"
#: ../rpm.c:1042
msgid ""
"--root (-r) may only be specified during installation, erasure, querying, "
"and database rebuilds"
msgstr ""
"--root (-r) se může určit jen při instalaci, mazání, dotazování a opětných "
"sestavování databází"
#: ../rpm.c:1047
msgid "arguments to --root (-r) must begin with a /"
msgstr "argumenty pro --root (-r) musejí začínat znakem /"
#: ../rpm.c:1051
msgid "--clean may only be used with -b and -t"
msgstr "--clean lze použít pouze s -b nebo -t"
#: ../rpm.c:1054
msgid "--rmsource may only be used with -b and -t"
msgstr "--rmsource lze použít pouze s -b nebo -t"
#: ../rpm.c:1057
msgid "--short-circuit may only be used during package building"
msgstr "--short-circuit lze použít jen při sestavování balíčků"
#: ../rpm.c:1061
msgid "--short-circuit may only be used with -bc, -bi, -bs, -tc -ti, or -ts"
msgstr "--short-circuit lze použít pouze s -bc, -bi, -bs, -tc, -ti nebo -ts"
#: ../rpm.c:1067
msgid "--oldpackage may only be used during upgrades"
msgstr "--oldpackage lze použít jen při aktualizacích"
#: ../rpm.c:1072
msgid ""
"ftp options can only be used during package queries, installs, and upgrades"
msgstr ""
"volby ftp lze použít jen při dotazování, instalacích a aktualizacích balíčků"
#: ../rpm.c:1078
#, fuzzy
msgid ""
"http options can only be used during package queries, installs, and upgrades"
msgstr ""
"volby ftp lze použít jen při dotazování, instalacích a aktualizacích balíčků"
#: ../rpm.c:1082
msgid "--nopgp may only be used during signature checking"
msgstr "--nopgp lze použít jen při kontrolování podpisů"
#: ../rpm.c:1085
#, fuzzy
msgid "--nogpg may only be used during signature checking"
msgstr "--nopgp lze použít jen při kontrolování podpisů"
#: ../rpm.c:1088
#, fuzzy
msgid ""
"--nomd5 may only be used during signature checking and package verification"
msgstr ""
"--nopgp se může použít jen při kontrolování podpisů a verifikaci balíčků"
#: ../rpm.c:1114
#, fuzzy, c-format
msgid "cannot access file %s\n"
msgstr "nelze otevřít soubor %s: "
#: ../rpm.c:1131
#, fuzzy
msgid "pgp not found: "
msgstr "Soubor nebyl na serveru nalezen"
#: ../rpm.c:1134
msgid "Use `%%_signature pgp5' instead of `%%_signature pgp' in macro file.\n"
msgstr ""
#: ../rpm.c:1141
#, fuzzy
msgid "pgp version 5 not found: "
msgstr "Soubor nebyl na serveru nalezen"
#: ../rpm.c:1144
msgid "Use `%%_signature pgp' instead of `%%_signature pgp5' in macro file.\n"
msgstr ""
#: ../rpm.c:1151
msgid "Pass phrase check failed\n"
msgstr "Chybná heslová fráze\n"
#: ../rpm.c:1154
msgid "Pass phrase is good.\n"
msgstr "Heslová fráze je dobrá.\n"
#: ../rpm.c:1161
msgid "Invalid %%_signature spec in macro file.\n"
msgstr ""
#: ../rpm.c:1166
msgid "--sign may only be used during package building"
msgstr "--sign lze použít jen při sestavování balíčků"
#: ../rpm.c:1183
msgid "exec failed\n"
msgstr "nelze spustit\n"
#: ../rpm.c:1202
msgid "unexpected arguments to --querytags "
msgstr "nečekané argumenty pro --querytags "
#: ../rpm.c:1213
msgid "no packages given for signature check"
msgstr "ke kontrole podpisu nezadány žádné balíčky"
#: ../rpm.c:1221
msgid "no packages given for signing"
msgstr "k podpisu nezadány žádné balíčky"
#: ../rpm.c:1230
msgid "no packages files given for rebuild"
msgstr "k opětnému sestavení nezadány žádné soubory balíčků"
#: ../rpm.c:1287
msgid "no spec files given for build"
msgstr "pro sestavení nezadány žádné soubory .spec"
#: ../rpm.c:1289
msgid "no tar files given for build"
msgstr "pro sestavení nezadány žádné soubory tar"
#: ../rpm.c:1302
msgid "no packages given for uninstall"
msgstr "pro deinstalaci nezadány žádné balíčky"
#: ../rpm.c:1351
msgid "no packages given for install"
msgstr "pro instalaci nezadány žádné balíčky"
#: ../rpm.c:1373
msgid "extra arguments given for query of all packages"
msgstr "k dotazu na všechny balíčky zadány argumenty navíc"
#: ../rpm.c:1379
msgid "no arguments given for query"
msgstr "k dotazu nezadány žádné argumenty"
#: ../rpm.c:1397
msgid "no arguments given for verify"
msgstr "pro verifikaci nezadány žádné argumenty"
#: ../rpm2cpio.c:42
#, fuzzy
msgid "argument is not an RPM package\n"
msgstr "%s není typu RPM\n"
#: ../rpm2cpio.c:46
#, fuzzy
msgid "error reading header from package\n"
msgstr "chyba při vytváření adresáře %s: %s"
#: ../url.c:136
#, c-format
msgid "Password for %s@%s: "
msgstr "Heslo pro %s@%s: "
#: ../url.c:160 ../url.c:186
#, fuzzy, c-format
msgid "error: %sport must be a number\n"
msgstr "chyba: ftpport musí být číslo\n"
#: ../url.c:271
#, fuzzy
msgid "url port must be a number\n"
msgstr "chyba: ftpport musí být číslo\n"
#. XXX PARANOIA
#: ../url.c:308
#, c-format
msgid "logging into %s as %s, pw %s\n"
msgstr "probíhá přihlašování na %s jako %s, h. %s\n"
#: ../lib/rpmdb.c:169 ../url.c:422
#, c-format
msgid "failed to open %s\n"
msgstr "nelze otevřít %s\n"
#: ../url.c:437
#, c-format
msgid "failed to create %s\n"
msgstr "%s nelze vytvořit\n"
#: ../verify.c:29
#, c-format
msgid "missing %s\n"
msgstr "chybí %s\n"
#: ../verify.c:93
#, c-format
msgid "Unsatisfied dependencies for %s-%s-%s: "
msgstr "Nevyřešené závislosti pro %s-%s-%s: "
#: ../verify.c:139
#, fuzzy, c-format
msgid "verifying record number %u\n"
msgstr "probíhá ověřování záznamu číslo %d\n"
#: ../lib/query.c:418 ../verify.c:144
msgid "error: could not read database record\n"
msgstr "chyba: nelze načíst databázový záznam\n"
#: ../lib/query.c:595 ../verify.c:179
msgid "could not read database record!\n"
msgstr "nelze načíst databázový záznam!\n"
#: ../lib/query.c:519 ../verify.c:198
#, fuzzy, c-format
msgid "open of %s failed\n"
msgstr "nelze otevřít %s: %s\n"
#: ../verify.c:214
#, c-format
msgid "%s is not an RPM\n"
msgstr "%s není typu RPM\n"
#: ../lib/query.c:606 ../verify.c:222
#, c-format
msgid "group %s does not contain any packages\n"
msgstr "skupina %s neobsahuje žádné balíčky\n"
#: ../lib/query.c:654 ../verify.c:232
#, c-format
msgid "file %s is not owned by any package\n"
msgstr "žádný balíček nevlastní soubor %s\n"
#: ../lib/query.c:688 ../verify.c:245
#, c-format
msgid "error looking for package %s\n"
msgstr "chyba při hledání balíčku %s\n"
#: ../build/build.c:81 ../build/pack.c:267
#, fuzzy
msgid "Unable to open temp file"
msgstr "Nelze otevřít %s pro čtení: %s."
#: ../build/build.c:120
#, fuzzy, c-format
msgid "Executing: %s\n"
msgstr "Probíhá načítání %s\n"
#: ../build/build.c:124
#, fuzzy, c-format
msgid "Exec of %s failed (%s)"
msgstr "nelze otevřít %s: %s\n"
#: ../build/build.c:134
#, fuzzy, c-format
msgid "Bad exit status from %s (%s)"
msgstr "nelze provést statistiku %s: %s"
#: ../build/expression.c:189 ../build/expression.c:198
msgid "parse error in tokenizer"
msgstr ""
#: ../build/expression.c:240
#, fuzzy
msgid "parse error in expression"
msgstr "ve výrazu se očekával ?"
#: ../build/expression.c:270
msgid "unmatched ("
msgstr ""
#: ../build/expression.c:288
msgid "undefined identifier"
msgstr ""
#: ../build/expression.c:307
msgid "- only on numbers"
msgstr ""
#: ../build/expression.c:323
msgid "! only on numbers"
msgstr ""
#: ../build/expression.c:362 ../build/expression.c:407
#: ../build/expression.c:464 ../build/expression.c:551
msgid "types must match"
msgstr ""
#: ../build/expression.c:375
msgid "* / not suported for strings"
msgstr ""
#: ../build/expression.c:423
msgid "- not suported for strings"
msgstr ""
#: ../build/expression.c:564
msgid "&& and || not suported for strings"
msgstr ""
#: ../build/expression.c:595 ../build/expression.c:640
#, fuzzy
msgid "syntax error in expression"
msgstr "ve výrazu se očekával ?"
#: ../build/files.c:220
#, c-format
msgid "TIMECHECK failure: %s\n"
msgstr ""
#: ../build/files.c:265 ../build/files.c:277 ../build/files.c:346
#: ../build/files.c:358 ../build/files.c:389
#, c-format
msgid "Bad %s() syntax: %s"
msgstr ""
#: ../build/files.c:307
#, c-format
msgid "Invalid %s token: %s"
msgstr ""
#: ../build/files.c:369
msgid "No files after %%defattr(): %s"
msgstr ""
#: ../build/files.c:399
#, c-format
msgid "Bad %s() mode spec: %s"
msgstr ""
#: ../build/files.c:411
#, c-format
msgid "Bad %s() dirmode spec: %s"
msgstr ""
#: ../build/files.c:462
msgid "Bad %%config() syntax: %s"
msgstr ""
#: ../build/files.c:480
msgid "Invalid %%config token: %s"
msgstr ""
#: ../build/files.c:503 ../build/files.c:515 ../build/files.c:528
msgid "Bad %%lang() syntax: %s"
msgstr ""
#: ../build/files.c:534
msgid "%%lang() entries are 2 characters: %s"
msgstr ""
#: ../build/files.c:540
msgid "Only one entry in %%lang(): %s"
msgstr ""
#: ../build/files.c:620
msgid "Hit limit for %%docdir"
msgstr ""
#: ../build/files.c:626
msgid "Only one arg for %%docdir"
msgstr ""
#. We already got a file -- error
#: ../build/files.c:651
#, fuzzy, c-format
msgid "Two files on one line: %s"
msgstr "nelze otevřít %s: %s"
#: ../build/files.c:664
#, fuzzy, c-format
msgid "File must begin with \"/\": %s"
msgstr "přemístění musejí začínat znakem /"
#: ../build/files.c:676
msgid "Can't mix special %%doc with other forms: %s"
msgstr ""
#: ../build/files.c:764
#, fuzzy, c-format
msgid "File listed twice: %s"
msgstr "Nelze číst %s: %s."
#: ../build/files.c:916
#, fuzzy, c-format
msgid "File doesn't match prefix (%s): %s"
msgstr "Nelze číst %s: %s."
#: ../build/files.c:926 ../build/files.c:1049
#, fuzzy, c-format
msgid "File not found: %s"
msgstr "Soubor nebyl na serveru nalezen"
#: ../build/files.c:969
#, c-format
msgid "Bad owner/group: %s\n"
msgstr ""
#: ../build/files.c:983
#, fuzzy, c-format
msgid "File %4d: 0%o %s.%s\t %s\n"
msgstr "soubor %s: %s\n"
#: ../build/files.c:1033
#, c-format
msgid "File needs leading \"/\": %s"
msgstr ""
#: ../build/files.c:1090
#, fuzzy
msgid "Could not open %%files file: %s"
msgstr "chyba: nelze otevřít soubor %s\n"
#: ../build/files.c:1097 ../build/pack.c:452
#, c-format
msgid "line: %s"
msgstr ""
#: ../build/files.c:1365 ../build/parsePrep.c:31
#, c-format
msgid "Bad owner/group: %s"
msgstr ""
#: ../build/files.c:1419
#, fuzzy, c-format
msgid "Couldn't exec %s"
msgstr "Nelze spustit pgp"
#: ../build/files.c:1423
#, fuzzy, c-format
msgid "Couldn't fork %s"
msgstr "Nelze načíst cílpodpisu"
#: ../build/files.c:1473
#, fuzzy, c-format
msgid "%s failed"
msgstr "chyba pgp"
#: ../build/files.c:1477
#, fuzzy, c-format
msgid "failed to write all data to %s"
msgstr "%s nelze vytvořit\n"
#: ../build/files.c:1511
msgid "Finding provides...\n"
msgstr ""
#: ../build/files.c:1518
msgid "Failed to find provides"
msgstr ""
#: ../build/files.c:1537
msgid "Finding requires...\n"
msgstr ""
#: ../build/files.c:1544
#, fuzzy
msgid "Failed to find requires"
msgstr "%s nelze vytvořit\n"
#: ../build/files.c:1578
msgid "Provides:"
msgstr ""
#: ../build/files.c:1593
msgid "Prereqs:"
msgstr ""
#: ../build/files.c:1605
msgid "Requires:"
msgstr ""
#: ../build/files.c:1629
#, fuzzy, c-format
msgid "Processing files: %s\n"
msgstr "soubor %s: %s\n"
#: ../build/names.c:32 ../build/names.c:64
msgid "RPMERR_INTERNAL: Hit limit in getUname()\n"
msgstr ""
#: ../build/names.c:97 ../build/names.c:129
msgid "RPMERR_INTERNAL: Hit limit in getGname()\n"
msgstr ""
#: ../build/names.c:167
#, c-format
msgid "Could not canonicalize hostname: %s\n"
msgstr ""
#: ../build/pack.c:153
#, c-format
msgid "Could not generate output filename for package %s: %s\n"
msgstr ""
#: ../build/pack.c:186
#, fuzzy, c-format
msgid "readRPM: open %s: %s\n"
msgstr "nelze otevřít %s: %s"
#: ../build/pack.c:196
#, fuzzy, c-format
msgid "readRPM: read %s: %s\n"
msgstr "Nelze číst %s: %s."
#: ../build/pack.c:216
#, fuzzy, c-format
msgid "readRPM: %s is not an RPM package\n"
msgstr "%s není typu RPM\n"
#: ../build/pack.c:222
#, fuzzy, c-format
msgid "readRPM: reading header from %s\n"
msgstr "chyba při vytváření adresáře %s: %s"
#: ../build/pack.c:278
msgid "Bad CSA data"
msgstr ""
#: ../build/pack.c:301
#, fuzzy, c-format
msgid "Could not open %s\n"
msgstr "nelze otevřít %s\n"
#: ../build/pack.c:333 ../build/pack.c:376
#, fuzzy, c-format
msgid "Unable to write package: %s"
msgstr "Nelze zapsat %s"
#: ../build/pack.c:366
#, fuzzy, c-format
msgid "Unable to read sigtarget: %s"
msgstr "Nelze zapsat %s"
#: ../build/pack.c:391
#, fuzzy, c-format
msgid "Wrote: %s\n"
msgstr "rpm: %s\n"
#: ../build/pack.c:406
#, fuzzy, c-format
msgid "create archive failed on file %s: %s"
msgstr "nelze otevřít %s: %s"
#: ../build/pack.c:422
#, fuzzy, c-format
msgid "cpio_copy write failed: %s"
msgstr "nelze otevřít %s: %s"
#: ../build/pack.c:429
#, fuzzy, c-format
msgid "cpio_copy read failed: %s"
msgstr "nelze číst: %s (%d)"
#: ../build/pack.c:508
#, fuzzy, c-format
msgid "Could not open PreIn file: %s"
msgstr "chyba: nelze otevřít soubor %s\n"
#: ../build/pack.c:515
#, fuzzy, c-format
msgid "Could not open PreUn file: %s"
msgstr "chyba: nelze otevřít soubor %s\n"
#: ../build/pack.c:522
#, fuzzy, c-format
msgid "Could not open PostIn file: %s"
msgstr "chyba: nelze otevřít soubor %s\n"
#: ../build/pack.c:529
#, fuzzy, c-format
msgid "Could not open PostUn file: %s"
msgstr "chyba: nelze otevřít soubor %s\n"
#: ../build/pack.c:537
#, c-format
msgid "Could not open VerifyScript file: %s"
msgstr ""
#: ../build/pack.c:553
#, c-format
msgid "Could not open Trigger script file: %s"
msgstr ""
#: ../build/parseBuildInstallClean.c:27
#, c-format
msgid "line %d: second %s"
msgstr ""
#: ../build/parseChangelog.c:95
msgid "%%changelog entries must start with *"
msgstr ""
#: ../build/parseChangelog.c:103
msgid "incomplete %%changelog entry"
msgstr ""
#: ../build/parseChangelog.c:118
msgid "bad date in %%changelog: %s"
msgstr ""
#: ../build/parseChangelog.c:123
msgid "%%changelog not in decending chronological order"
msgstr ""
#: ../build/parseChangelog.c:131 ../build/parseChangelog.c:142
msgid "missing name in %%changelog"
msgstr ""
#: ../build/parseChangelog.c:149
msgid "no description in %%changelog"
msgstr ""
#: ../build/parseDescription.c:35
msgid "line %d: Error parsing %%description: %s"
msgstr ""
#: ../build/parseDescription.c:48 ../build/parseFiles.c:42
#: ../build/parseScript.c:170
#, fuzzy, c-format
msgid "line %d: Bad option %s: %s"
msgstr "nelze otevřít %s: %s"
#: ../build/parseDescription.c:62 ../build/parseFiles.c:56
#: ../build/parseScript.c:184
#, c-format
msgid "line %d: Too many names: %s"
msgstr ""
#: ../build/parseDescription.c:72 ../build/parseFiles.c:66
#: ../build/parseScript.c:194
#, fuzzy, c-format
msgid "line %d: Package does not exist: %s"
msgstr "balíček %s není uveden v %s"
#: ../build/parseDescription.c:84
#, c-format
msgid "line %d: Second description"
msgstr ""
#: ../build/parseFiles.c:29
msgid "line %d: Error parsing %%files: %s"
msgstr ""
#: ../build/parseFiles.c:74
msgid "line %d: Second %%files list"
msgstr ""
#: ../build/parsePreamble.c:143
#, c-format
msgid "Architecture is excluded: %s"
msgstr ""
#: ../build/parsePreamble.c:148
#, c-format
msgid "Architecture is not included: %s"
msgstr ""
#: ../build/parsePreamble.c:153
#, c-format
msgid "OS is excluded: %s"
msgstr ""
#: ../build/parsePreamble.c:158
#, c-format
msgid "OS is not included: %s"
msgstr ""
#: ../build/parsePreamble.c:193
#, c-format
msgid "%s field must be present in package: %s"
msgstr ""
#: ../build/parsePreamble.c:215
#, c-format
msgid "Duplicate %s entries in package: %s"
msgstr ""
#: ../build/parsePreamble.c:262
#, fuzzy, c-format
msgid "Unable to stat icon: %s"
msgstr "Nelze zapsat %s"
#: ../build/parsePreamble.c:273
#, fuzzy, c-format
msgid "Unable to read icon: %s"
msgstr "Nelze zapsat %s"
#: ../build/parsePreamble.c:283
#, fuzzy, c-format
msgid "Unknown icon type: %s"
msgstr "Neznámý systém: %s\n"
#: ../build/parsePreamble.c:346
#, c-format
msgid "line %d: Malformed tag: %s"
msgstr ""
#. Empty field
#: ../build/parsePreamble.c:354
#, c-format
msgid "line %d: Empty tag: %s"
msgstr ""
#: ../build/parsePreamble.c:377 ../build/parsePreamble.c:384
#, fuzzy, c-format
msgid "line %d: Illegal char '-' in %s: %s"
msgstr "nelze otevřít %s: %s"
#: ../build/parsePreamble.c:422
#, c-format
msgid "line %d: BuildRoot can not be \"/\": %s"
msgstr ""
#: ../build/parsePreamble.c:435
#, c-format
msgid "line %d: Prefixes must not end with \"/\": %s"
msgstr ""
#: ../build/parsePreamble.c:447
#, fuzzy, c-format
msgid "line %d: Docdir must begin with '/': %s"
msgstr "přemístění musejí začínat znakem /"
#: ../build/parsePreamble.c:459
#, fuzzy, c-format
msgid "line %d: Epoch/Serial field must be a number: %s"
msgstr "neplatné číslo balíčku: %s\n"
#: ../build/parsePreamble.c:524
#, fuzzy, c-format
msgid "line %d: Bad BuildArchitecture format: %s"
msgstr "chybí architektura pro %s u %s:%d"
#: ../build/parsePreamble.c:534
#, fuzzy, c-format
msgid "Internal error: Bogus tag %d"
msgstr "interní chyba (chyba rpm?): "
#: ../build/parsePreamble.c:679
#, fuzzy, c-format
msgid "Bad package specification: %s"
msgstr " Volby pro specifikaci balíčku:"
#: ../build/parsePreamble.c:685
#, c-format
msgid "Package already exists: %s"
msgstr ""
#: ../build/parsePreamble.c:712
#, fuzzy, c-format
msgid "line %d: Unknown tag: %s"
msgstr "Neznámý systém: %s\n"
#: ../build/parsePreamble.c:737
msgid "Spec file can't use BuildRoot"
msgstr ""
#: ../build/parsePrep.c:27
#, fuzzy, c-format
msgid "Bad source: %s: %s"
msgstr "Nelze číst %s: %s."
#: ../build/parsePrep.c:53
#, fuzzy, c-format
msgid "No patch number %d"
msgstr "(není číslo)"
#: ../build/parsePrep.c:119
#, c-format
msgid "No source number %d"
msgstr ""
#: ../build/parsePrep.c:138
#, fuzzy, c-format
msgid "Couldn't download nosource %s: %s"
msgstr "Nelze číst %s: %s."
#: ../build/parsePrep.c:193
msgid "Error parsing %%setup: %s"
msgstr ""
#: ../build/parsePrep.c:208
msgid "line %d: Bad arg to %%setup %c: %s"
msgstr ""
#: ../build/parsePrep.c:229
msgid "line %d: Bad %%setup option %s: %s"
msgstr ""
#: ../build/parsePrep.c:353
msgid "line %d: Need arg to %%patch -b: %s"
msgstr ""
#: ../build/parsePrep.c:361
msgid "line %d: Need arg to %%patch -z: %s"
msgstr ""
#: ../build/parsePrep.c:373
msgid "line %d: Need arg to %%patch -p: %s"
msgstr ""
#: ../build/parsePrep.c:379
msgid "line %d: Bad arg to %%patch -p: %s"
msgstr ""
#: ../build/parsePrep.c:386
msgid "Too many patches!"
msgstr ""
#: ../build/parsePrep.c:390
msgid "line %d: Bad arg to %%patch: %s"
msgstr ""
#: ../build/parsePrep.c:426
msgid "line %d: second %%prep"
msgstr ""
#: ../build/parseReqs.c:45
#, c-format
msgid "line %d: No file names in Conflicts: %s"
msgstr ""
#: ../build/parseReqs.c:79
#, c-format
msgid "line %d: No versions on file names in %s: %s"
msgstr ""
#: ../build/parseReqs.c:85
#, c-format
msgid "line %d: No versions in PreReq: %s"
msgstr ""
#: ../build/parseReqs.c:97
#, c-format
msgid "line %d: Version required in %s: %s"
msgstr ""
#: ../build/parseReqs.c:126
#, fuzzy, c-format
msgid "line %d: No file names in Obsoletes: %s"
msgstr "balíček %s není uveden v %s"
#: ../build/parseReqs.c:133
#, c-format
msgid "line %d: %s: tokens must begin with alpha-numeric: %s"
msgstr ""
#: ../build/parseScript.c:138
#, c-format
msgid "line %d: triggers must have --: %s"
msgstr ""
#: ../build/parseScript.c:148 ../build/parseScript.c:212
#, c-format
msgid "line %d: Error parsing %s: %s"
msgstr ""
#: ../build/parseScript.c:158
#, c-format
msgid "line %d: script program must begin with '/': %s"
msgstr ""
#: ../build/parseScript.c:203
#, c-format
msgid "line %d: Second %s"
msgstr ""
#: ../build/parseSpec.c:120
#, fuzzy, c-format
msgid "Unable to open: %s\n"
msgstr "nelze otevřít %s\n"
#: ../build/parseSpec.c:132
msgid "Unclosed %%if"
msgstr ""
#: ../build/parseSpec.c:188
#, fuzzy, c-format
msgid "line %d: %s"
msgstr "soubor %s: %s\n"
#. Got an else with no %if !
#: ../build/parseSpec.c:213
msgid "%s:%d: Got a %%else with no if"
msgstr ""
#. Got an end with no %if !
#: ../build/parseSpec.c:223
msgid "%s:%d: Got a %%endif with no if"
msgstr ""
#: ../build/parseSpec.c:235 ../build/parseSpec.c:244
msgid "malformed %%include statement"
msgstr ""
#: ../build/parseSpec.c:323
#, c-format
msgid "Timecheck value must be an integer: %s"
msgstr ""
#: ../build/parseSpec.c:406
#, fuzzy
msgid "No buildable architectures"
msgstr "neověřovat architekturu balíčku"
#: ../build/parseSpec.c:451
#, fuzzy
msgid "Package has no %%description: %s"
msgstr "balíček %s není uveden v %s"
#: ../build/spec.c:28
#, fuzzy, c-format
msgid "archive = %s, fs = %s\n"
msgstr "offset archivu je %d\n"
#: ../build/spec.c:224
#, fuzzy, c-format
msgid "line %d: Bad number: %s"
msgstr "neplatné číslo balíčku: %s\n"
#: ../build/spec.c:230
#, c-format
msgid "line %d: Bad no%s number: %d"
msgstr ""
#: ../build/spec.c:286
#, fuzzy, c-format
msgid "line %d: Bad %s number: %s\n"
msgstr "neplatné číslo balíčku: %s\n"
#: ../lib/cpio.c:362
#, fuzzy, c-format
msgid "can't rename %s to %s: %s\n"
msgstr "nelze odstranit %s: %s\n"
#: ../lib/cpio.c:368
#, c-format
msgid "can't unlink %s: %s\n"
msgstr ""
#: ../lib/cpio.c:547
#, c-format
msgid "getNextHeader: %s\n"
msgstr ""
#: ../lib/cpio.c:1000
#, fuzzy, c-format
msgid "(error 0x%x)"
msgstr "chyba: "
#: ../lib/cpio.c:1003
msgid "Bad magic"
msgstr ""
#: ../lib/cpio.c:1004
msgid "Bad/unreadable header"
msgstr ""
#: ../lib/cpio.c:1022
#, fuzzy
msgid "Internal error"
msgstr "interní chyba (chyba rpm?): "
#: ../lib/cpio.c:1023
msgid "Header size too big"
msgstr ""
#: ../lib/cpio.c:1024
#, fuzzy
msgid "Unknown file type"
msgstr "Neznámý systém: %s\n"
#: ../lib/cpio.c:1033
#, fuzzy
msgid " failed - "
msgstr "chyba pgp"
#: ../lib/dbindex.c:32
#, fuzzy, c-format
msgid "cannot open file %s: %s"
msgstr "nelze otevřít soubor %s: "
#: ../lib/dbindex.c:77
#, c-format
msgid "error getting record %s from %s"
msgstr "chyba při získávání záznamu %s z %s"
#: ../lib/dbindex.c:105
#, c-format
msgid "error storing record %s into %s"
msgstr "chyba při ukládání záznamu %s do %s"
#: ../lib/dbindex.c:112
#, c-format
msgid "error removing record %s into %s"
msgstr "chyba při odstraňování záznamu %s do %s"
#: ../lib/depends.c:412 ../lib/depends.c:571
#, c-format
msgid "cannot read header at %d for dependency check"
msgstr "nelze číst hlavičku u %d pro kontrolu závislostí"
#: ../lib/depends.c:477
#, c-format
msgid "dependencies: looking for %s\n"
msgstr "závislosti: probíhá hledání %s\n"
#: ../lib/depends.c:665
#, c-format
msgid "package %s require not satisfied: %s\n"
msgstr "položka 'vyžaduje' balíčku %s není splněna: %s\n"
#: ../lib/depends.c:708
#, c-format
msgid "package %s conflicts: %s\n"
msgstr "balíček %s koliduje: %s\n"
#: ../lib/depends.c:808
msgid "dbrecMatchesDepFlags() failed to read header"
msgstr "dbrecMatchesDepFlags() nemůže přečíst hlavičku"
#: ../lib/depends.c:860
#, c-format
msgid "loop in prerequisite chain: %s"
msgstr "smyčka v řetězu podmínek: %s"
#: ../lib/falloc.c:149
#, fuzzy, c-format
msgid "free list corrupt (%u)- contact rpm-list@redhat.com\n"
msgstr "Zkontaktujte rpm-list@redhat.com\n"
#: ../lib/formats.c:97 ../lib/formats.c:114 ../lib/formats.c:134
#: ../lib/formats.c:166 ../lib/header.c:1973 ../lib/header.c:1989
#: ../lib/header.c:2009
msgid "(not a number)"
msgstr "(není číslo)"
#: ../lib/fs.c:40
#, c-format
msgid "mntctl() failed to return fugger size: %s"
msgstr "mntctl() nevrátil velikost položky fugger: %s"
#: ../lib/fs.c:75 ../lib/fs.c:237
#, c-format
msgid "failed to stat %s: %s"
msgstr "nelze provést statistiku %s: %s"
#: ../lib/fs.c:116
#, c-format
msgid "failed to open %s: %s"
msgstr "nelze otevřít %s: %s"
#: ../lib/fs.c:258
#, c-format
msgid "file %s is on an unknown device"
msgstr "soubor %s je na neznámém zařízení"
#: ../lib/header.c:669
#, c-format
msgid "Data type %d not supprted\n"
msgstr "Datový typ %d není podporován\n"
#. This should not be allowed
#: ../lib/header.c:905
msgid "grabData() RPM_STRING_TYPE count must be 1.\n"
msgstr "Počet RPM_STRING_TYPE pro grabData() musí být 1.\n"
#: ../lib/header.c:935
#, c-format
msgid "Data type %d not supported\n"
msgstr "Datový typ %d není podporován\n"
#: ../lib/header.c:994
#, c-format
msgid "Bad count for headerAddEntry(): %d\n"
msgstr "Chybný počet pro headerAddEntry(): %d\n"
#: ../lib/header.c:1328
msgid "? expected in expression"
msgstr "ve výrazu se očekával ?"
#: ../lib/header.c:1335
msgid "{ expected after ? in expression"
msgstr "ve výrazu se po ? očekávala {"
#: ../lib/header.c:1345 ../lib/header.c:1377
msgid "} expected in expression"
msgstr "ve výrazu se očekávala }"
#: ../lib/header.c:1352
msgid ": expected following ? subexpression"
msgstr "v podvýrazu se po ? očekávala :"
#: ../lib/header.c:1365
msgid "{ expected after : in expression"
msgstr "ve výrazu se po : očekávala {"
#: ../lib/header.c:1384
msgid "| expected at end of expression"
msgstr "na konci výrazu se očekávala |"
#: ../lib/header.c:1478
#, c-format
msgid "missing { after %"
msgstr "po % chybí {"
#: ../lib/header.c:1506
msgid "missing } after %{"
msgstr "po %{ chybí }"
#: ../lib/header.c:1518
msgid "empty tag format"
msgstr "prázdný formát příznaku"
#: ../lib/header.c:1528
msgid "empty tag name"
msgstr "prázdný název příznaku"
#: ../lib/header.c:1543
msgid "unknown tag"
msgstr "neznámý příznak"
#: ../lib/header.c:1569
msgid "] expected at end of array"
msgstr "na konci řady se očekávala ]"
#: ../lib/header.c:1585
msgid "unexpected ]"
msgstr "neočekávaná ]"
#: ../lib/header.c:1587
msgid "unexpected }"
msgstr "neočekávaná }"
#: ../lib/header.c:1762
msgid "(unknown type)"
msgstr "(neznámý typ)"
#: ../lib/install.c:100
msgid "source package expected, binary found"
msgstr ""
#: ../lib/install.c:182 ../lib/uninstall.c:111
#, fuzzy, c-format
msgid " file: %s action: %s\n"
msgstr "soubor %s: %s\n"
#: ../lib/install.c:199
#, c-format
msgid "user %s does not exist - using root"
msgstr ""
#: ../lib/install.c:207
#, c-format
msgid "group %s does not exist - using root"
msgstr ""
#: ../lib/install.c:234
msgid "%%instchangelog value in macro file should be a number, but isn't"
msgstr ""
#: ../lib/install.c:302
#, fuzzy, c-format
msgid "package: %s-%s-%s files test = %d\n"
msgstr "balíček %s-%s-%s obsahuje sdílení soubory\n"
#: ../lib/install.c:365
#, fuzzy
msgid "stopping install as we're running --test\n"
msgstr "probíhá zastavení zdrojové instalace, neboť jde jen o testování\n"
#: ../lib/install.c:370
#, fuzzy
msgid "running preinstall script (if any)\n"
msgstr "spouští se případný poinstalační skript\n"
#: ../lib/install.c:400
#, c-format
msgid "warning: %s created as %s"
msgstr ""
#: ../lib/install.c:436
#, c-format
msgid "warning: %s saved as %s"
msgstr ""
#: ../lib/install.c:440 ../lib/install.c:804 ../lib/uninstall.c:337
#, c-format
msgid "rename of %s to %s failed: %s"
msgstr "%s nelze přejmenovat na %s: %s"
#: ../lib/install.c:523
#, fuzzy
msgid "running postinstall script (if any)\n"
msgstr "spouští se případný poinstalační skript\n"
#. this would probably be a good place to check if disk space
#. was used up - if so, we should return a different error
#: ../lib/install.c:631
#, c-format
msgid "unpacking of archive failed%s%s: %s"
msgstr ""
#: ../lib/install.c:632
msgid " on file "
msgstr ""
#: ../lib/install.c:672
#, fuzzy
msgid "installing a source package\n"
msgstr "probíhá instalace binárních balíčků\n"
#: ../lib/install.c:683 ../lib/install.c:705
#, fuzzy, c-format
msgid "cannot create %s"
msgstr "nelze otevřít soubor %s: "
#: ../lib/install.c:690 ../lib/install.c:712
#, fuzzy, c-format
msgid "cannot write to %s"
msgstr "nelze otevřít soubor %s: "
#: ../lib/install.c:694
#, c-format
msgid "sources in: %s\n"
msgstr ""
#: ../lib/install.c:716
#, fuzzy, c-format
msgid "spec file in: %s\n"
msgstr "soubor %s: %s\n"
#: ../lib/install.c:749 ../lib/install.c:781
#, fuzzy
msgid "source package contains no .spec file"
msgstr "balíček %s neobsahuje soubory"
#: ../lib/install.c:802
#, fuzzy, c-format
msgid "renaming %s to %s\n"
msgstr "Probíhá získávání %s jako %s\n"
#: ../lib/lookup.c:83
#, c-format
msgid "cannot read header at %d for lookup"
msgstr "nelze číst hlavičku u %d pro vyhledání"
#: ../lib/macro.c:123
#, c-format
msgid "======================== active %d empty %d\n"
msgstr ""
#. XXX just in case
#: ../lib/macro.c:212
#, c-format
msgid "%3d>%*s(empty)"
msgstr ""
#: ../lib/macro.c:247
#, c-format
msgid "%3d<%*s(empty)\n"
msgstr ""
#: ../lib/macro.c:420
msgid "Macro %%%s has unterminated body"
msgstr ""
#: ../lib/macro.c:446
msgid "Macro %%%s has illegal name (%%define)"
msgstr ""
#: ../lib/macro.c:452
msgid "Macro %%%s has unterminated opts"
msgstr ""
#: ../lib/macro.c:457
msgid "Macro %%%s has empty body"
msgstr ""
#: ../lib/macro.c:462
msgid "Macro %%%s failed to expand"
msgstr ""
#: ../lib/macro.c:487
msgid "Macro %%%s has illegal name (%%undefine)"
msgstr ""
#: ../lib/macro.c:560
msgid "Macro %%%s (%s) was not used below level %d"
msgstr ""
#: ../lib/macro.c:642
#, fuzzy, c-format
msgid "Unknown option %c in %s(%s)"
msgstr "Neznámý systém: %s\n"
#: ../lib/macro.c:804
#, c-format
msgid "Recursion depth(%d) greater than max(%d)"
msgstr ""
#: ../lib/macro.c:860 ../lib/macro.c:876
#, c-format
msgid "Unterminated %c: %s"
msgstr ""
#: ../lib/macro.c:905
msgid "Empty token"
msgstr ""
#: ../lib/macro.c:1027
#, fuzzy
msgid "Macro %%%.*s not found, skipping"
msgstr "balíček %s nenalezen v %s"
#: ../lib/macro.c:1105
msgid "Target buffer overflow"
msgstr ""
#: ../lib/macro.c:1248 ../lib/macro.c:1256
#, fuzzy, c-format
msgid "File %s: %s"
msgstr "soubor %s: %s\n"
#: ../lib/macro.c:1259
#, c-format
msgid "File %s is smaller than %d bytes"
msgstr ""
#: ../lib/messages.c:51
msgid "warning: "
msgstr "varování: "
#: ../lib/messages.c:57
msgid "error: "
msgstr "chyba: "
#: ../lib/messages.c:63
msgid "fatal error: "
msgstr "fatální chyba: "
#: ../lib/messages.c:70
msgid "internal error (rpm bug?): "
msgstr "interní chyba (chyba rpm?): "
#: ../lib/misc.c:342 ../lib/misc.c:348 ../lib/misc.c:355
#, fuzzy, c-format
msgid "error creating temporary file %s"
msgstr "chyba při vytváření adresáře %s: %s"
#: ../lib/oldheader.c:292
#, fuzzy, c-format
msgid "bad file state: %s"
msgstr "nelze provést statistiku %s: %s"
#: ../lib/package.c:51
msgid "package is a version one package!\n"
msgstr "balíček je balíčkem verze jedna!\n"
#: ../lib/package.c:54
msgid "old style source package -- I'll do my best\n"
msgstr "zdrojový balíček starého typu -- snaha bude\n"
#: ../lib/package.c:57
#, c-format
msgid "archive offset is %d\n"
msgstr "offset archivu je %d\n"
#: ../lib/package.c:67
msgid "old style binary package\n"
msgstr "binární balíček starého typu\n"
#: ../lib/package.c:105
msgid ""
"only packages with major numbers <= 3 are supported by this version of RPM"
msgstr ""
"tato verze RPM podporuje jen balíčky, které mají hlavní (major) čísla <= 3"
#: ../lib/query.c:36
#, fuzzy
msgid "query package owning file"
msgstr "dotazy na balíček vlastnící <soubor>"
#: ../lib/query.c:38
#, fuzzy
msgid "query packages in group"
msgstr "balíček nemá skupinu\n"
#: ../lib/query.c:40
#, fuzzy
msgid "query a package file"
msgstr "dotazovat všechny balíčky"
#: ../lib/query.c:42
#, fuzzy
msgid "query a spec file"
msgstr "dotaz na %s se nezdařil\n"
#: ../lib/query.c:44
#, fuzzy
msgid "query the pacakges triggered by the package"
msgstr "dotazy na balíčky aktivované <balíkem>"
#: ../lib/query.c:46
#, fuzzy
msgid "query the packages which require a capability"
msgstr "dotazovat balíčky vyžadující schopnost <sch>"
#: ../lib/query.c:48
#, fuzzy
msgid "query the packages which provide a capability"
msgstr "dotazovat balíčky poskytující schopnost <sch>"
#: ../lib/query.c:56
#, fuzzy
msgid "list all configuration files"
msgstr "uvést pouze konfigurační soubory (implikuje -l)"
#: ../lib/query.c:58
#, fuzzy
msgid "list all documetnation files"
msgstr "nainstalovat dokumentaci"
#: ../lib/query.c:60
#, fuzzy
msgid "dump basic file information"
msgstr "zobrazit informace o balíčku"
#: ../lib/query.c:62
#, fuzzy
msgid "list files in package"
msgstr "binární balíček starého typu\n"
#: ../lib/query.c:68
msgid "use the following query format"
msgstr ""
#: ../lib/query.c:70
msgid "display the states of the listed files"
msgstr ""
#: ../lib/query.c:72
#, fuzzy
msgid "display a verbose file listing"
msgstr "zobrazit seznam souborů balíčků"
#: ../lib/query.c:122
#, c-format
msgid "error in format: %s\n"
msgstr "chyba v formátu: %s\n"
#: ../lib/query.c:159
msgid "(contains no files)"
msgstr "(neobsahuje soubory)"
#: ../lib/query.c:212
msgid "normal "
msgstr "normální "
#: ../lib/query.c:214
msgid "replaced "
msgstr "nahrazen "
#: ../lib/query.c:216
msgid "net shared "
msgstr "sdílen v síti "
#: ../lib/query.c:218
msgid "not installed "
msgstr "neinstalován "
#: ../lib/query.c:220
#, c-format
msgid "(unknown %3d) "
msgstr "(neznámý %3d) "
#: ../lib/query.c:224
msgid "(no state) "
msgstr "(chybí stav) "
#: ../lib/query.c:240 ../lib/query.c:270
msgid "package has neither file owner or id lists"
msgstr "balíček nemá vlastníka souboru ani id-seznamy"
#: ../lib/query.c:413
#, c-format
msgid "querying record number %d\n"
msgstr "probíhá dotaz na záznam číslo %d\n"
#: ../lib/query.c:504
#, fuzzy
msgid "rpmQuery: rpmdbOpen() failed\n"
msgstr "%s: Chybné otevření\n"
#: ../lib/query.c:532
msgid "old format source packages cannot be queried\n"
msgstr "na zdrojové balíčky starého formátu se nelze dotazovat\n"
#: ../lib/query.c:543
#, c-format
msgid "query of %s failed\n"
msgstr "dotaz na %s se nezdařil\n"
#: ../lib/query.c:562
#, fuzzy, c-format
msgid "query of specfile %s failed, can't parse\n"
msgstr "dotaz na %s se nezdařil\n"
#: ../lib/query.c:616
#, c-format
msgid "no package provides %s\n"
msgstr "žádný balíček neposkytuje %s\n"
#: ../lib/query.c:626
#, c-format
msgid "no package triggers %s\n"
msgstr "žádný balíček neaktivuje %s\n"
#: ../lib/query.c:636
#, c-format
msgid "no package requires %s\n"
msgstr "žádný balíček nevyžaduje %s\n"
#: ../lib/query.c:651
#, c-format
msgid "file %s: %s\n"
msgstr "soubor %s: %s\n"
#: ../lib/query.c:667
#, c-format
msgid "invalid package number: %s\n"
msgstr "neplatné číslo balíčku: %s\n"
#: ../lib/query.c:670
#, c-format
msgid "showing package: %d\n"
msgstr "zobrazen balíček: %d\n"
#: ../lib/query.c:673
#, c-format
msgid "record %d could not be read\n"
msgstr "záznam %d nelze načíst\n"
#: ../lib/rebuilddb.c:18
#, c-format
msgid "rebuilding database in rootdir %s\n"
msgstr "databáze se přestavuje v kořenovém adresáři %s\n"
#: ../lib/rebuilddb.c:22 ../lib/rpmdb.c:64 ../lib/rpmdb.c:82 ../lib/rpmdb.c:98
msgid "no dbpath has been set"
msgstr "nebyla nastavena dbpath"
#: ../lib/rebuilddb.c:30
#, c-format
msgid "temporary database %s already exists"
msgstr "dočasná databáze %s již existuje"
#: ../lib/rebuilddb.c:34
#, c-format
msgid "creating directory: %s\n"
msgstr "vytváří se adresář: %s\n"
#: ../lib/rebuilddb.c:36
#, c-format
msgid "error creating directory %s: %s"
msgstr "chyba při vytváření adresáře %s: %s"
#: ../lib/rebuilddb.c:44
msgid "opening old database\n"
msgstr "otevírá se stará databáze\n"
#: ../lib/rebuilddb.c:51
msgid "opening new database\n"
msgstr "otevírá se nová databáze\n"
#: ../lib/rebuilddb.c:61 ../lib/rebuilddb.c:79
#, c-format
msgid "record number %d in database is bad -- skipping it"
msgstr "záznam číslo %d v databázi je chybný -- vynechává se"
#: ../lib/rebuilddb.c:73
#, c-format
msgid "cannot add record originally at %d"
msgstr "nelze přidat záznam - původně u %d"
#: ../lib/rebuilddb.c:92
msgid "failed to rebuild database; original database remains in place\n"
msgstr "databázi nelze přestavit; původní databáze zůstává na svém místě\n"
#: ../lib/rebuilddb.c:100
msgid "failed to replace old database with new database!\n"
msgstr "starou databázi nelze nahradit novou databází!\n"
#: ../lib/rebuilddb.c:102
#, c-format
msgid "replaces files in %s with files from %s to recover"
msgstr "aby se obnovily, nahrazuje soubory v %s soubory z %s"
#: ../lib/rebuilddb.c:108
#, fuzzy, c-format
msgid "failed to remove directory %s: %s\n"
msgstr "nelze odstranit %s: %s\n"
#: ../lib/rpmdb.c:159
#, fuzzy, c-format
msgid "opening database mode 0x%x in %s\n"
msgstr "probíhá otevírání databázového režimu: 0%o\n"
#: ../lib/rpmdb.c:182 ../lib/rpmdb.c:189
#, c-format
msgid "cannot get %s lock on database"
msgstr "nelze získat %s zámek k databázi"
#: ../lib/rpmdb.c:183
msgid "exclusive"
msgstr "výhradní"
#: ../lib/rpmdb.c:190
msgid "shared"
msgstr "sdílený"
#: ../lib/rpmdb.c:213
msgid ""
"old format database is present; use --rebuilddb to generate a new format "
"database"
msgstr ""
#: ../lib/rpmdb.c:372
#, c-format
msgid "package %s not listed in %s"
msgstr "balíček %s není uveden v %s"
#: ../lib/rpmdb.c:383
#, c-format
msgid "package %s not found in %s"
msgstr "balíček %s nenalezen v %s"
#: ../lib/rpmdb.c:407 ../lib/uninstall.c:40
#, c-format
msgid "cannot read header at %d for uninstall"
msgstr "nelze číst hlavičku u %d pro deinstalaci"
#: ../lib/rpmdb.c:415
msgid "package has no name"
msgstr "balíček nemá název"
#: ../lib/rpmdb.c:417
msgid "removing name index\n"
msgstr "odstraňuje se rejstřík názvů\n"
#: ../lib/rpmdb.c:422
msgid "package has no group\n"
msgstr "balíček nemá skupinu\n"
#: ../lib/rpmdb.c:424
msgid "removing group index\n"
msgstr "odstraňuje se rejstřík skupin\n"
#: ../lib/rpmdb.c:431
#, c-format
msgid "removing provides index for %s\n"
msgstr "odstraňuje se rejstřík 'poskytuje' pro %s\n"
#: ../lib/rpmdb.c:446
#, c-format
msgid "removing requiredby index for %s\n"
msgstr "odstraňuje se rejstřík 'vyžaduje' pro %s\n"
#: ../lib/rpmdb.c:458
#, c-format
msgid "removing trigger index for %s\n"
msgstr "odstraňuje se rejstřík aktivací pro %s\n"
#: ../lib/rpmdb.c:469
#, c-format
msgid "removing conflict index for %s\n"
msgstr "odstraňuje se rejstřík konfliktů pro %s\n"
#: ../lib/rpmdb.c:486
#, c-format
msgid "removing file index for %s\n"
msgstr "odstraňuje se rejstřík souborů pro %s\n"
#: ../lib/rpmdb.c:495
msgid "package has no files\n"
msgstr "balíček neobsahuje soubory\n"
#: ../lib/rpmdb.c:568
msgid "cannot allocate space for database"
msgstr "nelze alokovat prostor pro databázi"
#: ../lib/rpmdb.c:639
#, c-format
msgid "cannot read header at %d for update"
msgstr "nelze číst hlavičku u %d pro inovaci"
#: ../lib/rpmdb.c:648
msgid "header changed size!"
msgstr "hlavička změnila velikost!"
#: ../lib/rpmlead.c:41
#, c-format
msgid "read failed: %s (%d)"
msgstr "nelze číst: %s (%d)"
#: ../lib/rpmrc.c:178
#, c-format
msgid "missing second ':' at %s:%d"
msgstr "chybí druhá ':' u %s:%d"
#: ../lib/rpmrc.c:181
#, c-format
msgid "missing architecture name at %s:%d"
msgstr "chybí název architektury u %s:%d"
#: ../lib/rpmrc.c:329
#, c-format
msgid "Incomplete data line at %s:%d"
msgstr "Neúplný datový řádek u %s:%d"
#: ../lib/rpmrc.c:333
#, c-format
msgid "Too many args in data line at %s:%d"
msgstr "Příliš mnoho argumentů v datovém řádku u %s:%d"
#: ../lib/rpmrc.c:340
#, c-format
msgid "Bad arch/os number: %s (%s:%d)"
msgstr "Chybné číslo arch/os: %s (%s:%d)"
#: ../lib/rpmrc.c:374
#, c-format
msgid "Incomplete default line at %s:%d"
msgstr "Neúplný výchozí řádek u %s:%d"
#: ../lib/rpmrc.c:379
#, c-format
msgid "Too many args in default line at %s:%d"
msgstr "Příliš mnoho argumentů ve výchozím řádku u %s:%d"
#: ../lib/rpmrc.c:562
#, c-format
msgid "Cannot expand %s"
msgstr ""
#: ../lib/rpmrc.c:577
#, c-format
msgid "Unable to open %s for reading: %s."
msgstr "Nelze otevřít %s pro čtení: %s."
#: ../lib/rpmrc.c:611
#, c-format
msgid "Failed to read %s: %s."
msgstr "Nelze číst %s: %s."
#: ../lib/rpmrc.c:642
#, c-format
msgid "missing ':' at %s:%d"
msgstr "chybí ':' u %s:%d"
#: ../lib/rpmrc.c:658 ../lib/rpmrc.c:716
#, c-format
msgid "missing argument for %s at %s:%d"
msgstr "chybí argument pro %s u %s:%d"
#: ../lib/rpmrc.c:672 ../lib/rpmrc.c:690
#, fuzzy, c-format
msgid "%s expansion failed at %s:%d \"%s\""
msgstr "nelze otevřít %s: %s"
#: ../lib/rpmrc.c:678
#, fuzzy, c-format
msgid "cannot open %s at %s:%d"
msgstr "nelze otevřít soubor %s: "
#: ../lib/rpmrc.c:706
#, c-format
msgid "missing architecture for %s at %s:%d"
msgstr "chybí architektura pro %s u %s:%d"
#: ../lib/rpmrc.c:773
#, c-format
msgid "bad option '%s' at %s:%d"
msgstr "chybná volba '%s' u %s:%d"
#: ../lib/rpmrc.c:1109
#, c-format
msgid "Unknown system: %s\n"
msgstr "Neznámý systém: %s\n"
#: ../lib/rpmrc.c:1110
msgid "Please contact rpm-list@redhat.com\n"
msgstr "Zkontaktujte rpm-list@redhat.com\n"
#: ../lib/signature.c:146
msgid "No signature\n"
msgstr "Chybí podpis\n"
#: ../lib/signature.c:149
msgid "Old PGP signature\n"
msgstr "Starý podpis PGP\n"
#: ../lib/signature.c:162
msgid "Old (internal-only) signature! How did you get that!?"
msgstr "Starý (pouze interní) podpis! Jak jste to získali!?"
#: ../lib/signature.c:166
msgid "New Header signature\n"
msgstr "Podpis nové hlavičky\n"
#. 8-byte pad
#: ../lib/signature.c:174 ../lib/signature.c:212
#, c-format
msgid "Signature size: %d\n"
msgstr "Velikost podpisu: %d\n"
#: ../lib/signature.c:175 ../lib/signature.c:213
#, c-format
msgid "Signature pad : %d\n"
msgstr "Podložka podpisu: %d\n"
#: ../lib/signature.c:305 ../lib/signature.c:811
msgid "Couldn't exec pgp"
msgstr "Nelze spustit pgp"
#: ../lib/signature.c:316
msgid "pgp failed"
msgstr "chyba pgp"
#. PGP failed to write signature
#. Just in case
#: ../lib/signature.c:323
msgid "pgp failed to write signature"
msgstr "chyba pgp při zápisu podpisu"
#: ../lib/signature.c:328
#, c-format
msgid "PGP sig size: %d\n"
msgstr "Velikost podpisu PGP: %d\n"
#: ../lib/signature.c:339 ../lib/signature.c:415
msgid "unable to read the signature"
msgstr "podpis nelze přečíst"
#: ../lib/signature.c:344
#, c-format
msgid "Got %d bytes of PGP sig\n"
msgstr "Zisk %d bajtů podpisu PGP\n"
#: ../lib/signature.c:381 ../lib/signature.c:786
#, fuzzy
msgid "Couldn't exec gpg"
msgstr "Nelze spustit pgp"
#: ../lib/signature.c:392
#, fuzzy
msgid "gpg failed"
msgstr "chyba pgp"
#. GPG failed to write signature
#. Just in case
#: ../lib/signature.c:399
#, fuzzy
msgid "gpg failed to write signature"
msgstr "chyba pgp při zápisu podpisu"
#: ../lib/signature.c:404
#, fuzzy, c-format
msgid "GPG sig size: %d\n"
msgstr "Velikost podpisu PGP: %d\n"
#: ../lib/signature.c:420
#, fuzzy, c-format
msgid "Got %d bytes of GPG sig\n"
msgstr "Zisk %d bajtů podpisu PGP\n"
#: ../lib/signature.c:435
#, c-format
msgid "sigsize : %d\n"
msgstr "velikostpodpisu : %d\n"
#: ../lib/signature.c:436
#, c-format
msgid "Header + Archive: %d\n"
msgstr "Hlavička+archiv : %d\n"
#: ../lib/signature.c:437
#, c-format
msgid "expected size : %d\n"
msgstr "očekáv. velikost: %d\n"
#: ../lib/signature.c:441
msgid "file is not regular -- skipping size check\n"
msgstr "soubor není regulérní -- kontrola velikosti se vynechává\n"
#: ../lib/signature.c:559 ../lib/signature.c:606
msgid "Could not run pgp. Use --nopgp to skip PGP checks."
msgstr "Nelze spustit pgp. Vynechte kontroly PGP pomocí --nopgp."
#: ../lib/signature.c:604 ../lib/signature.c:676
msgid "exec failed!\n"
msgstr "nelze spustit!\n"
#: ../lib/signature.c:678
#, fuzzy
msgid "Could not run gpg. Use --nogpg to skip GPG checks."
msgstr "Nelze spustit pgp. Vynechte kontroly PGP pomocí --nopgp."
#: ../lib/signature.c:715
#, fuzzy
msgid "You must set \"%%_gpg_name\" in your macro file"
msgstr "V souboru rpmrc se musí nastavit \"pgp_name:\""
#: ../lib/signature.c:727
#, fuzzy
msgid "You must set \"%%_pgp_name\" in your macro file"
msgstr "V souboru rpmrc se musí nastavit \"pgp_name:\""
#. Currently the calling function (rpm.c:main) is checking this and
#. * doing a better job. This section should never be accessed.
#.
#: ../lib/signature.c:735 ../lib/signature.c:815
msgid "Invalid %%_signature spec in macro file"
msgstr ""
#: ../lib/transaction.c:735
#, fuzzy, c-format
msgid "relocating %s to %s\n"
msgstr "Probíhá získávání %s jako %s\n"
#: ../lib/transaction.c:741
#, fuzzy, c-format
msgid "excluding %s\n"
msgstr "Probíhá načítání %s\n"
#: ../lib/transaction.c:829
#, c-format
msgid "%s skipped due to missingok flag\n"
msgstr ""
#: ../lib/uninstall.c:51
#, c-format
msgid "cannot read packages named %s for uninstall"
msgstr "nelze číst balíčky nazvané %d pro deinstalaci"
#: ../lib/uninstall.c:79
#, c-format
msgid "will remove files test = %d\n"
msgstr "odstraní se soubory test = %d\n"
#: ../lib/uninstall.c:124
msgid "running postuninstall script (if any)\n"
msgstr "spouští se případný poinstalační skript\n"
#: ../lib/uninstall.c:138
msgid "removing database entry\n"
msgstr "odstraňuje se položka databáze\n"
#: ../lib/uninstall.c:289
msgid "execution of script failed"
msgstr "skript nelze spustit"
#: ../lib/uninstall.c:348
#, c-format
msgid "cannot remove %s - directory not empty"
msgstr "%s nelze odstranit - adresář není prázdný"
#: ../lib/uninstall.c:351
#, c-format
msgid "rmdir of %s failed: %s"
msgstr "neúspěch rmdir %s: %s"
#: ../lib/uninstall.c:359
#, c-format
msgid "removal of %s failed: %s"
msgstr "%s nelze odstranit: %s"
#: ../lib/verify.c:179
msgid "package lacks both user name and id lists (this should never happen)"
msgstr ""
#: ../lib/verify.c:197
msgid "package lacks both group name and id lists (this should never happen)"
msgstr ""
#~ msgid "error: cannot open file %s\n"
#~ msgstr "chyba: nelze otevřít soubor %s\n"
#~ msgid "stopping source install as we're just testing\n"
#~ msgstr "probíhá zastavení zdrojové instalace, neboť jde jen o testování\n"
#~ msgid "error: %s does not appear to be a RPM package\n"
#~ msgstr "chyba: nezdá se, že by %s byl balíček RPM\n"
#~ msgid "getting %s as %s\n"
#~ msgstr "Probíhá získávání %s jako %s\n"
#~ msgid "finding source and binary packages\n"
#~ msgstr "probíhá hledání zdrojových a binárních balíčků\n"
#~ msgid "counting packages to uninstall\n"
#~ msgstr "probíhá počítání balíčků pro deinstalaci\n"
#~ msgid "found %d packages to uninstall\n"
#~ msgstr "nalezeno %d balíčků pro deinstalaci\n"
#~ msgid "uninstalling record number %d\n"
#~ msgstr "probíhá deinstalace záznamu číslo %d\n"
#~ msgid "getting %s via anonymous ftp\n"
#~ msgstr "probíhá získávání %s pomocí anonymního ftp\n"
#, fuzzy
#~ msgid "cpio failed on file %s: %d"
#~ msgstr "nelze otevřít %s: %s"
#, fuzzy
#~ msgid "error %d reading header: %s\n"
#~ msgstr "chyba při vytváření adresáře %s: %s"
#, fuzzy
#~ msgid "package is not relocatable"
#~ msgstr "balíček %s není nainstalován\n"
#, fuzzy
#~ msgid "path %s is not relocatable"
#~ msgstr "balíček %s není nainstalován\n"
#, fuzzy
#~ msgid "not installing %s -- linguas\n"
#~ msgstr "Probíhá instalace %s\n"
#, fuzzy
#~ msgid "package %s-%s-%s is for a different architecture"
#~ msgstr "balíček %s-%s-%s obsahuje sdílení soubory\n"
#, fuzzy
#~ msgid "package %s is now obsolete and will be removed\n"
#~ msgstr "balíček %s není nainstalován\n"
#, fuzzy
#~ msgid "removing old versions of package\n"
#~ msgstr "balíček je balíčkem verze jedna!\n"
#, fuzzy
#~ msgid "package %s-%s-%s is already installed"
#~ msgstr "balíček %s není nainstalován\n"
#, fuzzy
#~ msgid "\tfile type changed - replacing\n"
#~ msgstr " soubor se vskutku sdílí - ukládá se\n"
#~ msgid "package %s-%s-%s contain shared files\n"
#~ msgstr "balíček %s-%s-%s obsahuje sdílení soubory\n"
#~ msgid "package %s contains no files"
#~ msgstr "balíček %s neobsahuje soubory"
#~ msgid "file %s is shared\n"
#~ msgstr "soubor %s je sdílen\n"
#, fuzzy
#~ msgid "\told version already replaced\n"
#~ msgstr "%s již byl nahrazen\n"
#, fuzzy
#~ msgid "\tother version never installed\n"
#~ msgstr " soubor nebyl nikdy nainstalován\n"
#, fuzzy
#~ msgid "%s conflicts with file from %s-%s-%s"
#~ msgstr " koliduje s %s-%s-%s\n"
#, fuzzy
#~ msgid "%s from %s-%s-%s will be replaced\n"
#~ msgstr "%s již byl nahrazen\n"
#, fuzzy
#~ msgid "package %s-%s-%s (which is newer) is already installed"
#~ msgstr "balíček %s-%s-%s obsahuje sdílení soubory\n"
#~ msgid "maximum path length exceeded\n"
#~ msgstr "překročena maximální délka cesty\n"
#~ msgid "opening database in %s\n"
#~ msgstr "otevírá se databáze v %s\n"
#, fuzzy
#~ msgid "no macroname for setenv %s:%d"
#~ msgstr "chybí argument pro %s u %s:%d"
#~ msgid "package is missing FILESTATES\n"
#~ msgstr "balíček neobsahuje FILESTATES\n"
#~ msgid " file has already been replaced\n"
#~ msgstr " soubor byl již nahrazen\n"
#~ msgid " file was never installed\n"
#~ msgstr " soubor nebyl nikdy nainstalován\n"
#~ msgid " file is netshared (so don't touch it)\n"
#~ msgstr " soubor se sdílí v síti (nedotýkat se)\n"
#~ msgid " file is truely shared - saving\n"
#~ msgstr " soubor se vskutku sdílí - ukládá se\n"
#~ msgid "%s has a netshared override\n"
#~ msgstr "%s má vyšší prioritu sdílení v síti\n"
#~ msgid "%s has already been replaced\n"
#~ msgstr "%s již byl nahrazen\n"
#~ msgid "finding md5sum of %s\n"
#~ msgstr "hledá se md5sum pro %s\n"
#~ msgid " failed - assuming file removed\n"
#~ msgstr " neúspěch - soubor považován za odstraněný\n"
#~ msgid " file changed - will save\n"
#~ msgstr " soubor změněn - uloží se\n"
#~ msgid " file unchanged - will remove\n"
#~ msgstr " soubor nezměněn - odstraní se\n"
#~ msgid "keeping %s\n"
#~ msgstr "ponechává se %s\n"
#~ msgid "saving %s as %s.rpmsave\n"
#~ msgstr "%s se ukládá jako %s.rpmsave\n"
#~ msgid "%s - removing\n"
#~ msgstr "%s - odstraňuje se\n"
#~ msgid " --buildarch <arch> "
#~ msgstr " --buildarch <arch> "
#~ msgid "build the packages for architecture <arch>"
#~ msgstr "sestavit balíčky pro architekturu <arch>"
#~ msgid " --buildos <os> "
#~ msgstr " --buildos <os> "
#~ msgid "build the packages for ositecture <os>"
#~ msgstr "sestavit balíčky pro ositekturu <os>"
#~ msgid "one type of query may be performed at a time"
#~ msgstr "v daném okamžiku lze provést jeden typ dotazu"
#~ msgid "--dump may only be used during queries"
#~ msgstr "--dump lze použít jen při dotazování"
#~ msgid "--dump of queries must be used with -l, -c, or -d"
#~ msgstr "--dump pro dotazy se musí použít s -l, -c nebo -d"
#, fuzzy
#~ msgid "Empty macro name"
#~ msgstr "prázdný název příznaku"
#, fuzzy
#~ msgid "Couldn't exec gzip"
#~ msgstr "Nelze spustit pgp"
#, fuzzy
#~ msgid "Couldn't fork gzip"
#~ msgstr "Nelze spustit pgp"
#, fuzzy
#~ msgid "Execution of gzip failed"
#~ msgstr "skript nelze spustit"
#~ msgid "(none)"
#~ msgstr "(není)"
#, fuzzy
#~ msgid ""
#~ " [--provides] [--dump] [--dbpath <dir>] [--changelog]"
#~ msgstr " [--changelog] [--dbpath <adr>] [cíle]"
#, fuzzy
#~ msgid " [targets]"
#~ msgstr " [--nomd5] [cíle]"
#, fuzzy
#~ msgid "cannot read database record at %d"
#~ msgstr "nelze načíst databázový záznam!\n"
|