1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
|
# Polskie komunikaty dla RPM
# Copyright (C) 1999 Free Software Foundation, Inc.
# Pre-translation has bean done using PePeSza v0.7[C
# get your own copy of PePeSza from http://www.ids.pl/~pkollegu/pepesza.html
# Wojciech Drapiński <wojciech.drapinski@zie.pg.gda.pl>, 1999.
# Paweł Dziekoński <pdziekonski@mml.ch.pwr.wroc.pl>, 1999
# Jakub Bogusz <qboosh@pld.org.pl>, 2002-2003.
#
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.3-20030515\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2003-12-07 15:11-0500\n"
"PO-Revision-Date: 2003-06-08 22:42+0200\n"
"Last-Translator: Jakub Bogusz <qboosh@pld.org.pl>\n"
"Language-Team: Polish <translation-team-pl@lists.sourceforge.net>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=ISO-8859-2\n"
"Content-Transfer-Encoding: 8-bit\n"
#: build.c:40
msgid "Failed build dependencies:\n"
msgstr "Niespełnione zależności budowania:\n"
#: build.c:71
#, c-format
msgid "Unable to open spec file %s: %s\n"
msgstr "Nie można otworzyć pliku spec %s: %s\n"
#: build.c:152 build.c:164
#, c-format
msgid "Failed to open tar pipe: %m\n"
msgstr "Otwarcie potoku tara nie powiodło się: %m\n"
#. Give up
#: build.c:171
#, c-format
msgid "Failed to read spec file from %s\n"
msgstr "Odczytanie pliku spec z %s nie powiodło się\n"
#: build.c:199
#, c-format
msgid "Failed to rename %s to %s: %m\n"
msgstr "Zmiana nazwy %s na %s nie powiodła się: %m\n"
#: build.c:239
#, c-format
msgid "failed to stat %s: %m\n"
msgstr "stat nie powiodło się %s: %m\n"
#: build.c:244
#, c-format
msgid "File %s is not a regular file.\n"
msgstr "Plik %s nie jest zwykłym plikiem.\n"
#: build.c:253
#, c-format
msgid "File %s does not appear to be a specfile.\n"
msgstr "Plik %s nie wygląda na plik spec.\n"
#. parse up the build operators
#: build.c:324
#, c-format
msgid "Building target platforms: %s\n"
msgstr "Budowanie dla platform: %s\n"
#: build.c:339
#, c-format
msgid "Building for target %s\n"
msgstr "Budowanie dla %s\n"
#: rpm2cpio.c:55
msgid "argument is not an RPM package\n"
msgstr "argument nie jest pakietem RPM\n"
#: rpm2cpio.c:60
msgid "error reading header from package\n"
msgstr "błąd odczytu nagłówka z pakietu\n"
#: rpm2cpio.c:82
#, c-format
msgid "cannot re-open payload: %s\n"
msgstr "nie można ponownie otworzyć danych: %s\n"
#: rpmqv.c:72
msgid "Query options (with -q or --query):"
msgstr "Opcje zapytania (z -q lub --query):"
#: rpmqv.c:75
msgid "Verify options (with -V or --verify):"
msgstr "Opcje weryfikacji (z -V lub --verify):"
#: rpmqv.c:81
msgid "Signature options:"
msgstr "Opcje dotyczące sygnatur:"
#: rpmqv.c:87
msgid "Database options:"
msgstr "Opcje dotyczące bazy danych:"
#: rpmqv.c:93
msgid "Build options with [ <specfile> | <tarball> | <source package> ]:"
msgstr "Opcje budowania z [ <plik spec> | <tarball> | <pakiet źródłowy> ]:"
#: rpmqv.c:99
msgid "Install/Upgrade/Erase options:"
msgstr "Opcje instalowania/uaktualniania/usuwania:"
#: rpmqv.c:104
msgid "Common options for all rpm modes:"
msgstr "Wspólne opcje dla wszystkich trybów rpm-a:"
#. @-modfilesys -globs @
#: rpmqv.c:121 lib/poptI.c:29
#, c-format
msgid "%s: %s\n"
msgstr "%s: %s\n"
#: rpmqv.c:129 lib/poptALL.c:114
#, c-format
msgid "RPM version %s\n"
msgstr "RPM wersja %s\n"
#: rpmqv.c:136
msgid "Copyright (C) 1998-2002 - Red Hat, Inc.\n"
msgstr "Copyright (C) 1998-2002 - Red Hat, Inc.\n"
#: rpmqv.c:137
msgid ""
"This program may be freely redistributed under the terms of the GNU GPL\n"
msgstr ""
"Ten program może być swobodnie rozpowszechniany na warunkach licencji GNU "
"GPL\n"
#: rpmqv.c:295
#, c-format
msgid "Internal error in argument processing (%d) :-(\n"
msgstr "Błąd wewnętrzny w przetwarzaniu argumentu (%d) :-(\n"
#: rpmqv.c:333 rpmqv.c:339 rpmqv.c:345 rpmqv.c:382
msgid "only one major mode may be specified"
msgstr "tylko jeden główny tryb pracy może być podany"
#: rpmqv.c:361
msgid "one type of query/verify may be performed at a time"
msgstr "tylko jeden typ odpytywania/sprawdzania można wykonać na raz"
#: rpmqv.c:365
msgid "unexpected query flags"
msgstr "błędne flagi zapytania"
#: rpmqv.c:368
msgid "unexpected query format"
msgstr "błędny format zapytania"
#: rpmqv.c:371
msgid "unexpected query source"
msgstr "błędne odniesienie zapytania"
#: rpmqv.c:413
msgid "only installation, upgrading, rmsource and rmspec may be forced"
msgstr "tylko instalację, uaktualnienie i usuwanie źródeł można wymusić"
#: rpmqv.c:415
msgid "files may only be relocated during package installation"
msgstr "przesuwania plików można dokonać tylko w trakcie instalacji"
#: rpmqv.c:418
msgid "cannot use --prefix with --relocate or --excludepath"
msgstr "nie można użyć --prefix z --relocate lub --excludepath"
#: rpmqv.c:421
msgid ""
"--relocate and --excludepath may only be used when installing new packages"
msgstr ""
"--relocate i --excludepath można użyć tylko w trakcie instalacji nowych "
"pakietów"
#: rpmqv.c:424
msgid "--prefix may only be used when installing new packages"
msgstr "--prefix można użyć tylko w trakcie instalacji nowych pakietów"
#: rpmqv.c:427
msgid "arguments to --prefix must begin with a /"
msgstr "argumenty dla --prefix muszą się rozpoczynać od /"
#: rpmqv.c:430
msgid "--hash (-h) may only be specified during package installation"
msgstr "--hash (-h) można użyć tylko w trakcie instalacji pakietów"
#: rpmqv.c:434
msgid "--percent may only be specified during package installation"
msgstr "--percent można użyć tylko w trakcie instalacji pakietów"
#: rpmqv.c:439
msgid "--replacefiles may only be specified during package installation"
msgstr "--replacefiles można użyć tylko w trakcie instalacji pakietów"
#: rpmqv.c:443
msgid "--replacepkgs may only be specified during package installation"
msgstr "--replacepkgs można użyć tylko w trakcie instalacji pakietów"
#: rpmqv.c:447
msgid "--excludedocs may only be specified during package installation"
msgstr "--excludedocs można użyć tylko w trakcie instalacji pakietów"
#: rpmqv.c:451
msgid "--includedocs may only be specified during package installation"
msgstr "--includedocs można użyć tylko w trakcie instalacji pakietów"
#: rpmqv.c:455
msgid "only one of --excludedocs and --includedocs may be specified"
msgstr "nie można jednocześnie użyć --excludedocs i --includedocs"
#: rpmqv.c:459
msgid "--ignorearch may only be specified during package installation"
msgstr "--ignorearch można użyć tylko w trakcie instalacji pakietów"
#: rpmqv.c:463
msgid "--ignoreos may only be specified during package installation"
msgstr "--ignoreos można użyć tylko w trakcie instalacji pakietów"
#: rpmqv.c:468
msgid "--ignoresize may only be specified during package installation"
msgstr "--ignoresize można użyć tylko w trakcie instalacji pakietów"
#: rpmqv.c:472
msgid "--allmatches may only be specified during package erasure"
msgstr "--allmatches można użyć tylko w trakcie usuwania pakietów"
#: rpmqv.c:476
msgid "--allfiles may only be specified during package installation"
msgstr "--allfiles można użyć tylko w trakcie instalacji pakietów"
#: rpmqv.c:481
msgid "--justdb may only be specified during package installation and erasure"
msgstr "--justdb można użyć tylko w trakcie instalacji lub usuwania pakietów"
#: rpmqv.c:486
msgid ""
"script disabling options may only be specified during package installation "
"and erasure"
msgstr ""
"opcje wyłączające skrypty mogą być podane tylko przy instalacji lub usuwaniu "
"pakietów"
#: rpmqv.c:491
msgid ""
"trigger disabling options may only be specified during package installation "
"and erasure"
msgstr ""
"opcje wyłączające triggery mogą być podane tylko przy instalacji lub "
"usuwaniu pakietów"
#: rpmqv.c:495
msgid ""
"--nodeps may only be specified during package building, rebuilding, "
"recompilation, installation,erasure, and verification"
msgstr ""
"--nodeps można użyć tylko w trakcie budowania, przebudowywania, "
"rekompilacji, instalacji, usuwania lub sprawdzania pakietów"
#: rpmqv.c:500
msgid ""
"--test may only be specified during package installation, erasure, and "
"building"
msgstr ""
"--test można użyć tylko w trakcie instalacji, usuwania lub budowania pakietów"
#: rpmqv.c:505
msgid ""
"--root (-r) may only be specified during installation, erasure, querying, "
"and database rebuilds"
msgstr ""
"--root (-r) można użyć tylko w trakcie instalacji, usuwania, sprawdzania "
"pakietów lub przebudowywania bazy"
#: rpmqv.c:517
msgid "arguments to --root (-r) must begin with a /"
msgstr "argumenty dla --root (-r) muszą się rozpoczynać od /"
#: rpmqv.c:541
msgid "no files to sign\n"
msgstr "brak plików do podpisania\n"
#: rpmqv.c:546
#, c-format
msgid "cannot access file %s\n"
msgstr "brak dostępu do pliku %s\n"
#: rpmqv.c:565
msgid "pgp not found: "
msgstr "nie znaleziono pgp: "
#: rpmqv.c:570
msgid "Enter pass phrase: "
msgstr "Podaj hasło: "
#: rpmqv.c:572
msgid "Pass phrase check failed\n"
msgstr "Weryfikacja hasła nieudana\n"
#: rpmqv.c:576
msgid "Pass phrase is good.\n"
msgstr "Hasło jest prawidłowe.\n"
#: rpmqv.c:581
#, c-format
msgid "Invalid %%_signature spec in macro file.\n"
msgstr "Błędny %%_signature spec w pliku makra.\n"
#: rpmqv.c:588
msgid "--sign may only be used during package building"
msgstr "--sign można użyć tylko w trakcie budowania pakietu"
#: rpmqv.c:605
msgid "exec failed\n"
msgstr "wykonanie nie powiodło się\n"
#: rpmqv.c:641
msgid "no packages files given for rebuild"
msgstr "nie podano nazw pakietów do przebudowania"
#: rpmqv.c:711
msgid "no spec files given for build"
msgstr "nie podano nazw plików spec do budowania"
#: rpmqv.c:713
msgid "no tar files given for build"
msgstr "nie podano nazw plików tar do budowania"
#: rpmqv.c:735
msgid "no packages given for erase"
msgstr "nie podano nazw pakietów do usunięcia"
#: rpmqv.c:775
msgid "no packages given for install"
msgstr "nie podano nazw plików do zainstalowania"
#: rpmqv.c:791
msgid "no arguments given for query"
msgstr "nie podano argumentów dla trybu zapytań"
#: rpmqv.c:805
msgid "no arguments given for verify"
msgstr "nie podano argumentów dla sprawdzania"
#: rpmqv.c:820
msgid "no arguments given"
msgstr "nie podano argumentów"
#: build/build.c:132 build/pack.c:497
msgid "Unable to open temp file.\n"
msgstr "Nie można otworzyć pliku tymczasowego.\n"
#: build/build.c:220
#, c-format
msgid "Executing(%s): %s\n"
msgstr "Wykonywanie(%s): %s\n"
#. @=boundsread@
#: build/build.c:230
#, c-format
msgid "Exec of %s failed (%s): %s\n"
msgstr "Wykonanie %s nie powiodło się (%s): %s\n"
#: build/build.c:239
#, c-format
msgid "Bad exit status from %s (%s)\n"
msgstr "Błędny status wyjścia z %s (%s)\n"
#: build/build.c:345
msgid ""
"\n"
"\n"
"RPM build errors:\n"
msgstr ""
"\n"
"\n"
"Błędy budowania RPM-a:\n"
#: build/expression.c:228
msgid "syntax error while parsing ==\n"
msgstr "błąd składni przy analizie ==\n"
#: build/expression.c:258
msgid "syntax error while parsing &&\n"
msgstr "błąd składni przy analizie &&\n"
#: build/expression.c:267
msgid "syntax error while parsing ||\n"
msgstr "błąd składni przy analizie ||\n"
#: build/expression.c:310
msgid "parse error in expression\n"
msgstr "błąd interpretacji wyrażenia\n"
#: build/expression.c:352
msgid "unmatched (\n"
msgstr "niesparowane (\n"
#: build/expression.c:382
msgid "- only on numbers\n"
msgstr "- tylko na liczbach\n"
#: build/expression.c:398
msgid "! only on numbers\n"
msgstr "! tylko na liczbach\n"
#: build/expression.c:446 build/expression.c:501 build/expression.c:566
#: build/expression.c:663
msgid "types must match\n"
msgstr "typy muszą się zgadzać\n"
#: build/expression.c:459
msgid "* / not suported for strings\n"
msgstr "* / nie są obsługiwane dla łańcuchów znakowych\n"
#: build/expression.c:517
msgid "- not suported for strings\n"
msgstr "- nie jest obsługiwany dla łańcuchów znakowych\n"
#: build/expression.c:676
msgid "&& and || not suported for strings\n"
msgstr "&& i || nie są obsługiwane dla łańcuchów znakowych\n"
#: build/expression.c:710 build/expression.c:759
msgid "syntax error in expression\n"
msgstr "błąd składni w wyrażeniu\n"
#: build/files.c:278
#, c-format
msgid "TIMECHECK failure: %s\n"
msgstr "TIMECHECK nie powiodło się: %s\n"
#: build/files.c:343 build/files.c:543 build/files.c:739
#, c-format
msgid "Missing '(' in %s %s\n"
msgstr "Brak '(' w %s %s\n"
#: build/files.c:354 build/files.c:673 build/files.c:750
#, c-format
msgid "Missing ')' in %s(%s\n"
msgstr "Brak ')' w %s(%s\n"
#: build/files.c:392 build/files.c:698
#, c-format
msgid "Invalid %s token: %s\n"
msgstr "Błędny znak %s: %s\n"
#: build/files.c:502
#, c-format
msgid "Missing %s in %s %s\n"
msgstr "Brak %s w %s %s\n"
#: build/files.c:559
#, c-format
msgid "Non-white space follows %s(): %s\n"
msgstr "Brak białego znaku po %s(): %s\n"
#: build/files.c:597
#, c-format
msgid "Bad syntax: %s(%s)\n"
msgstr "Błędna składnia: %s(%s)\n"
#: build/files.c:607
#, c-format
msgid "Bad mode spec: %s(%s)\n"
msgstr "Błędne określenie uprawnień: %s(%s)\n"
#: build/files.c:619
#, c-format
msgid "Bad dirmode spec: %s(%s)\n"
msgstr "Błędne określenie uprawnień katalogu: %s(%s)\n"
#: build/files.c:777
#, c-format
msgid "Unusual locale length: \"%.*s\" in %%lang(%s)\n"
msgstr "Niespotykana długość określenia lokalizacji \"%.*s\" w %%lang(%s)\n"
#. @innercontinue@
#: build/files.c:788
#, c-format
msgid "Duplicate locale %.*s in %%lang(%s)\n"
msgstr "Powtórzone określenie lokalizacji %.*s w %%lang(%s)\n"
#: build/files.c:917
#, c-format
msgid "Hit limit for %%docdir\n"
msgstr "Limit trafień dla %%docdir\n"
#: build/files.c:925
#, c-format
msgid "Only one arg for %%docdir\n"
msgstr "Tylko jeden argument dla %%docdir\n"
#. We already got a file -- error
#: build/files.c:959
#, c-format
msgid "Two files on one line: %s\n"
msgstr "Dwa pliki w jednej linii: %s\n"
#: build/files.c:976
#, c-format
msgid "File must begin with \"/\": %s\n"
msgstr "Plik musi się zaczynać od \"/\": %s\n"
#: build/files.c:989
#, c-format
msgid "Can't mix special %%doc with other forms: %s\n"
msgstr "Nie można mieszać specjalnego %%doc z innymi formami: %s\n"
#: build/files.c:1141
#, c-format
msgid "File listed twice: %s\n"
msgstr "Plik podany dwukrotnie: %s\n"
#: build/files.c:1280
#, c-format
msgid "Symlink points to BuildRoot: %s -> %s\n"
msgstr "Dowiązanie symboliczne wskazuje na BuildRoot: %s -> %s\n"
#: build/files.c:1520
#, c-format
msgid "File doesn't match prefix (%s): %s\n"
msgstr "Plik nie zgadza się z prefiksem (%s): %s\n"
#: build/files.c:1544
#, c-format
msgid "File not found: %s\n"
msgstr "Nie znaleziono pliku: %s\n"
#: build/files.c:1752
#, c-format
msgid "%s: public key read failed.\n"
msgstr "%s: odczyt klucza publicznego nie powiódł się.\n"
#: build/files.c:1756 lib/rpmchecksig.c:580
#, c-format
msgid "%s: not an armored public key.\n"
msgstr "%s: nie jest opakowanym kluczem publicznym.\n"
#: build/files.c:1804
#, c-format
msgid "File needs leading \"/\": %s\n"
msgstr "Plik musi się zaczynać od \"/\": %s\n"
#: build/files.c:1828
#, c-format
msgid "Glob not permitted: %s\n"
msgstr "Glob niedozwolony: %s\n"
#: build/files.c:1845 lib/rpminstall.c:347
#, c-format
msgid "File not found by glob: %s\n"
msgstr "Nie znaleziono pliku poprzez glob: %s\n"
#: build/files.c:1905
#, c-format
msgid "Could not open %%files file %s: %s\n"
msgstr "Nie można otworzyć pliku %s dla %%files: %s\n"
#: build/files.c:1916 build/pack.c:156
#, c-format
msgid "line: %s\n"
msgstr "linia: %s\n"
#: build/files.c:2307
#, c-format
msgid "Bad file: %s: %s\n"
msgstr "Błędny plik: %s: %s\n"
#: build/files.c:2319 build/parsePrep.c:50
#, c-format
msgid "Bad owner/group: %s\n"
msgstr "Błędny użytkownik/grupa: %s\n"
#: build/files.c:2363
#, c-format
msgid "Checking for unpackaged file(s): %s\n"
msgstr "Szukanie niespakietowanych plików: %s\n"
#: build/files.c:2386
#, c-format
msgid ""
"Installed (but unpackaged) file(s) found:\n"
"%s"
msgstr ""
"Znaleziono zainstalowane (ale niespakietowane) pliki:\n"
"%s"
#: build/files.c:2414
#, c-format
msgid "Processing files: %s-%s-%s\n"
msgstr "Przetwarzanie plików: %s-%s-%s\n"
#: build/names.c:56
msgid "getUname: too many uid's\n"
msgstr "getUname: za dużo uid-ów\n"
#: build/names.c:82
msgid "getUnameS: too many uid's\n"
msgstr "getUnameS: za dużo uid-ów\n"
#: build/names.c:111
msgid "getUidS: too many uid's\n"
msgstr "getUidS: za dużo uid-ów\n"
#: build/names.c:140
msgid "getGname: too many gid's\n"
msgstr "getGname: za dużo gid-ów\n"
#: build/names.c:166
msgid "getGnameS: too many gid's\n"
msgstr "getGnameS: za dużo gid-ów\n"
#: build/names.c:195
msgid "getGidS: too many gid's\n"
msgstr "getGidS: za dużo gid-ów\n"
#: build/names.c:237
#, c-format
msgid "Could not canonicalize hostname: %s\n"
msgstr "Nie można rozwiązać nazwy systemu: %s\n"
#: build/pack.c:90
#, c-format
msgid "create archive failed on file %s: %s\n"
msgstr "utworzenie archiwum nie powiodło się na pliku %s: %s\n"
#: build/pack.c:93
#, c-format
msgid "create archive failed: %s\n"
msgstr "utworzenie archiwum nie powiodło się: %s\n"
#: build/pack.c:115
#, c-format
msgid "cpio_copy write failed: %s\n"
msgstr "zapis w trybie cpio_copy nie powiódł się: %s\n"
#: build/pack.c:122
#, c-format
msgid "cpio_copy read failed: %s\n"
msgstr "odczyt w trybie cpio_copy nie powiódł się: %s\n"
#: build/pack.c:222
#, c-format
msgid "Could not open PreIn file: %s\n"
msgstr "Nie można otworzyć pliku PreIn: %s\n"
#: build/pack.c:229
#, c-format
msgid "Could not open PreUn file: %s\n"
msgstr "Nie można otworzyć pliku PreUn: %s\n"
#: build/pack.c:236
#, c-format
msgid "Could not open PostIn file: %s\n"
msgstr "Nie można otworzyć pliku PostIn: %s\n"
#: build/pack.c:243
#, c-format
msgid "Could not open PostUn file: %s\n"
msgstr "Nie można otworzyć pliku PostUn: %s\n"
#: build/pack.c:251
#, c-format
msgid "Could not open VerifyScript file: %s\n"
msgstr "Nie można otworzyć pliku VerifyScript: %s\n"
#: build/pack.c:266
#, c-format
msgid "Could not open Trigger script file: %s\n"
msgstr "Nie można otworzyć skryptu Trigger: %s\n"
#: build/pack.c:295
#, c-format
msgid "readRPM: open %s: %s\n"
msgstr "readRPM: otwieranie %s: %s\n"
#: build/pack.c:305
#, c-format
msgid "readRPM: read %s: %s\n"
msgstr "readRPM: czytanie %s: %s\n"
#: build/pack.c:314 build/pack.c:543
#, c-format
msgid "%s: Fseek failed: %s\n"
msgstr "%s: Fseek nie powiodło się: %s\n"
#: build/pack.c:346
#, c-format
msgid "readRPM: %s is not an RPM package\n"
msgstr "readRPM: %s nie jest pakietem RPM\n"
#: build/pack.c:351
#, c-format
msgid "readRPM: reading header from %s\n"
msgstr "readRPM: czytanie nagłówka z %s\n"
#: build/pack.c:485
msgid "Unable to create immutable header region.\n"
msgstr "Nie można utworzyć niezmiennej części nagłówka.\n"
#: build/pack.c:504
msgid "Unable to write temp header\n"
msgstr "Nie można zapisać tymczasowego nagłówka\n"
#: build/pack.c:514
msgid "Bad CSA data\n"
msgstr "Błędne dane CSA\n"
#: build/pack.c:550
msgid "Unable to write final header\n"
msgstr "Nie można zapisać ostatecznego nagłówka\n"
#: build/pack.c:570
#, c-format
msgid "Generating signature: %d\n"
msgstr "Generowanie sygnatury: %d\n"
#: build/pack.c:588
msgid "Unable to reload signature header.\n"
msgstr "Nie można ponownie odczytać nagłówka sygnatury.\n"
#: build/pack.c:596
#, c-format
msgid "Could not open %s: %s\n"
msgstr "Nie można otworzyć %s: %s\n"
#: build/pack.c:632 lib/psm.c:1427
#, c-format
msgid "Unable to write package: %s\n"
msgstr "Nie można zapisać pakietu: %s\n"
#: build/pack.c:647
#, c-format
msgid "Unable to open sigtarget %s: %s\n"
msgstr "Nie można otworzyć nagłówka do zapisania sygnatury %s: %s\n"
#: build/pack.c:658
#, c-format
msgid "Unable to read header from %s: %s\n"
msgstr "Nie można odczytać nagłówka z %s: %s\n"
#: build/pack.c:672
#, c-format
msgid "Unable to write header to %s: %s\n"
msgstr "Nie można zapisać nagłówka do %s: %s\n"
#: build/pack.c:682
#, c-format
msgid "Unable to read payload from %s: %s\n"
msgstr "Nie można odczytać danych z %s: %s\n"
#: build/pack.c:688
#, c-format
msgid "Unable to write payload to %s: %s\n"
msgstr "Nie można zapisać danych do %s: %s\n"
#: build/pack.c:725 lib/psm.c:1725
#, c-format
msgid "Wrote: %s\n"
msgstr "Zapisano: %s\n"
#: build/pack.c:798
#, c-format
msgid "Could not generate output filename for package %s: %s\n"
msgstr "Nie można wygenerować wyjściowej nazwy dla pakietu %s: %s\n"
#: build/pack.c:815
#, c-format
msgid "cannot create %s: %s\n"
msgstr "nie można utworzyć %s: %s\n"
#: build/parseBuildInstallClean.c:36
#, c-format
msgid "line %d: second %s\n"
msgstr "linia %d: druga %s\n"
#: build/parseChangelog.c:128
#, c-format
msgid "%%changelog entries must start with *\n"
msgstr "wpisy %%changelog muszą zaczynać się od *\n"
#: build/parseChangelog.c:136
#, c-format
msgid "incomplete %%changelog entry\n"
msgstr "niekompletny wpis %%changelog\n"
#: build/parseChangelog.c:153
#, c-format
msgid "bad date in %%changelog: %s\n"
msgstr "błędna data w %%changelog: %s\n"
#: build/parseChangelog.c:158
#, c-format
msgid "%%changelog not in descending chronological order\n"
msgstr "wpisy w %%changelog ułożone niechronologicznie\n"
#: build/parseChangelog.c:166 build/parseChangelog.c:177
#, c-format
msgid "missing name in %%changelog\n"
msgstr "brak nazwiska w %%changelog\n"
#: build/parseChangelog.c:184
#, c-format
msgid "no description in %%changelog\n"
msgstr "brak opisu w %%changelog\n"
#: build/parseDescription.c:47
#, c-format
msgid "line %d: Error parsing %%description: %s\n"
msgstr "linia %d: błąd w interpretacji %%description: %s\n"
#: build/parseDescription.c:60 build/parseFiles.c:56 build/parseScript.c:200
#, c-format
msgid "line %d: Bad option %s: %s\n"
msgstr "linia %d: Błędna opcja %s: %s\n"
#: build/parseDescription.c:71 build/parseFiles.c:70 build/parseScript.c:214
#, c-format
msgid "line %d: Too many names: %s\n"
msgstr "linia %d: Zbyt dużo nazw: %s\n"
#: build/parseDescription.c:79 build/parseFiles.c:79 build/parseScript.c:223
#, c-format
msgid "line %d: Package does not exist: %s\n"
msgstr "linia %d: Pakiet nie istnieje: %s\n"
#: build/parseDescription.c:89
#, c-format
msgid "line %d: Second description\n"
msgstr "linia %d: Drugi opis\n"
#: build/parseFiles.c:42
#, c-format
msgid "line %d: Error parsing %%files: %s\n"
msgstr "linia %d: Błąd w interpretacji %%files: %s\n"
#: build/parseFiles.c:86
#, c-format
msgid "line %d: Second %%files list\n"
msgstr "linia %d: Druga lista %%files\n"
#: build/parsePreamble.c:243
#, c-format
msgid "Architecture is excluded: %s\n"
msgstr "Architektura jest wykluczona: %s\n"
#: build/parsePreamble.c:248
#, c-format
msgid "Architecture is not included: %s\n"
msgstr "Architektura nie jest wspierana: %s\n"
#: build/parsePreamble.c:253
#, c-format
msgid "OS is excluded: %s\n"
msgstr "OS jest wykluczony: %s\n"
#: build/parsePreamble.c:258
#, c-format
msgid "OS is not included: %s\n"
msgstr "OS nie jest wspierany: %s\n"
#: build/parsePreamble.c:281
#, c-format
msgid "%s field must be present in package: %s\n"
msgstr "pole %s musi być obecne w pakiecie: %s\n"
#: build/parsePreamble.c:310
#, c-format
msgid "Duplicate %s entries in package: %s\n"
msgstr "Podwójne wpisy %s w pakiecie: %s\n"
#: build/parsePreamble.c:373
#, c-format
msgid "Unable to open icon %s: %s\n"
msgstr "Nie można otworzyć ikony %s: %s\n"
#: build/parsePreamble.c:391
#, c-format
msgid "Unable to read icon %s: %s\n"
msgstr "Nie można odczytać ikony %s: %s\n"
#: build/parsePreamble.c:404
#, c-format
msgid "Unknown icon type: %s\n"
msgstr "Nieznany typ ikony: %s\n"
#: build/parsePreamble.c:449
#, c-format
msgid "line %d: Tag takes single token only: %s\n"
msgstr "linia %d: Etykieta przyjmuje tylko jeden znacznik: %s\n"
#: build/parsePreamble.c:489
#, c-format
msgid "line %d: Malformed tag: %s\n"
msgstr "linia %d: Niepoprawna forma etykiety: %s\n"
#. Empty field
#: build/parsePreamble.c:497
#, c-format
msgid "line %d: Empty tag: %s\n"
msgstr "linia %d: Pusta etykieta: %s\n"
#: build/parsePreamble.c:520 build/parsePreamble.c:527
#, c-format
msgid "line %d: Illegal char '-' in %s: %s\n"
msgstr "linia %d: Nielegalny znak '-' w %s: %s\n"
#: build/parsePreamble.c:588 build/parseSpec.c:429
#, c-format
msgid "BuildRoot can not be \"/\": %s\n"
msgstr "BuildRoot nie może być \"/\": %s\n"
#: build/parsePreamble.c:601
#, c-format
msgid "line %d: Prefixes must not end with \"/\": %s\n"
msgstr "linia %d: Prefiksy nie mogą się kończyć na \"/\": %s\n"
#: build/parsePreamble.c:613
#, c-format
msgid "line %d: Docdir must begin with '/': %s\n"
msgstr "linia %d: Docdir musi się zaczynać od '/': %s\n"
#: build/parsePreamble.c:625
#, c-format
msgid "line %d: Epoch/Serial field must be a number: %s\n"
msgstr "linia %d: pole Epoch/Serial musi być liczbą: %s\n"
#: build/parsePreamble.c:665 build/parsePreamble.c:676
#, c-format
msgid "line %d: Bad %s: qualifiers: %s\n"
msgstr "linia %d: Błędne określenie %s: %s\n"
#: build/parsePreamble.c:702
#, c-format
msgid "line %d: Bad BuildArchitecture format: %s\n"
msgstr "linia %d: Błędny format BuildArchitecture: %s\n"
#: build/parsePreamble.c:711
#, c-format
msgid "Internal error: Bogus tag %d\n"
msgstr "Błąd wewnętrzny: Fałszywa etykieta %d\n"
#: build/parsePreamble.c:872
#, c-format
msgid "Bad package specification: %s\n"
msgstr "Błędna specyfikacja pakietu: %s\n"
#: build/parsePreamble.c:878
#, c-format
msgid "Package already exists: %s\n"
msgstr "Pakiet już istnieje: %s\n"
#: build/parsePreamble.c:905
#, c-format
msgid "line %d: Unknown tag: %s\n"
msgstr "linia %d: Nieznana etykieta: %s\n"
#: build/parsePreamble.c:927
msgid "Spec file can't use BuildRoot\n"
msgstr "Plik spec nie może używać BuildRoot\n"
#: build/parsePrep.c:45
#, c-format
msgid "Bad source: %s: %s\n"
msgstr "Błędne źródło: %s: %s\n"
#: build/parsePrep.c:86
#, c-format
msgid "No patch number %d\n"
msgstr "Brak łaty numer %d\n"
#: build/parsePrep.c:181
#, c-format
msgid "No source number %d\n"
msgstr "Brak źródła numer %d\n"
#: build/parsePrep.c:203
#, c-format
msgid "Couldn't download nosource %s: %s\n"
msgstr "Nie można ściągnąć pliku nosource %s: %s\n"
#: build/parsePrep.c:307
#, c-format
msgid "Error parsing %%setup: %s\n"
msgstr "Błąd przetwarzania %%setup: %s\n"
#: build/parsePrep.c:322
#, c-format
msgid "line %d: Bad arg to %%setup: %s\n"
msgstr "linia %d: Błędny argument dla %%setup: %s\n"
#: build/parsePrep.c:340
#, c-format
msgid "line %d: Bad %%setup option %s: %s\n"
msgstr "linia %d: Błędna opcja %%setup %s: %s\n"
#: build/parsePrep.c:482
#, c-format
msgid "line %d: Need arg to %%patch -b: %s\n"
msgstr "linia %d: Wymagany argument dla %%patch -b: %s\n"
#: build/parsePrep.c:491
#, c-format
msgid "line %d: Need arg to %%patch -z: %s\n"
msgstr "linia %d: Wymagany argument dla %%patch -z: %s\n"
#: build/parsePrep.c:503
#, c-format
msgid "line %d: Need arg to %%patch -p: %s\n"
msgstr "linia %d: Wymagany argument dla %%patch -p: %s\n"
#: build/parsePrep.c:510
#, c-format
msgid "line %d: Bad arg to %%patch -p: %s\n"
msgstr "linia %d: Błędny argument dla %%patch -p: %s\n"
#: build/parsePrep.c:517
msgid "Too many patches!\n"
msgstr "Zbyt wiele łat!\n"
#: build/parsePrep.c:521
#, c-format
msgid "line %d: Bad arg to %%patch: %s\n"
msgstr "linia %d: Błędny argument dla %%patch: %s\n"
#: build/parsePrep.c:557
#, c-format
msgid "line %d: second %%prep\n"
msgstr "linia %d: druga sekcja %%prep\n"
#: build/parseReqs.c:102
#, c-format
msgid ""
"line %d: Dependency tokens must begin with alpha-numeric, '_' or '/': %s\n"
msgstr ""
"linia %d: Oznaczenia zależności muszą się zaczynać od alfanumerycznych, '_' "
"lub '/': %s\n"
#: build/parseReqs.c:113
#, c-format
msgid "line %d: File name not permitted: %s\n"
msgstr "linia %d: Nazwa pliku niedozwolona: %s\n"
#: build/parseReqs.c:145
#, c-format
msgid "line %d: Versioned file name not permitted: %s\n"
msgstr "linia %d: Wersja w nazwie pliku niedozwolona: %s\n"
#: build/parseReqs.c:176
#, c-format
msgid "line %d: Version required: %s\n"
msgstr "linia %d: Wymagana wersja: %s\n"
#: build/parseScript.c:166
#, c-format
msgid "line %d: triggers must have --: %s\n"
msgstr "linia %d: triggery muszą mieć --: %s\n"
#: build/parseScript.c:176 build/parseScript.c:239
#, c-format
msgid "line %d: Error parsing %s: %s\n"
msgstr "linia %d: Błąd przetwarzania %s: %s\n"
#: build/parseScript.c:187
#, c-format
msgid "line %d: script program must begin with '/': %s\n"
msgstr "linia %d: interpreter skryptu musi się zaczynać od '/': %s\n"
#: build/parseScript.c:231
#, c-format
msgid "line %d: Second %s\n"
msgstr "linia %d: Drugi %s\n"
#: build/parseSpec.c:161
#, c-format
msgid "line %d: %s\n"
msgstr "linia %d: %s\n"
#. XXX Fstrerror
#: build/parseSpec.c:213
#, c-format
msgid "Unable to open %s: %s\n"
msgstr "Nie można otworzyć %s: %s\n"
#: build/parseSpec.c:229
#, c-format
msgid "Unclosed %%if\n"
msgstr "Niedomknięte %%if\n"
#: build/parseSpec.c:303
#, c-format
msgid "%s:%d: parseExpressionBoolean returns %d\n"
msgstr "%s:%d: parseExpressionBoolean zwróciło %d\n"
#: build/parseSpec.c:312
#, c-format
msgid "%s:%d: Got a %%else with no %%if\n"
msgstr "%s:%d: Napotkano %%else bez %%if\n"
#: build/parseSpec.c:324
#, c-format
msgid "%s:%d: Got a %%endif with no %%if\n"
msgstr "%s:%d: Napotkano %%endif bez %%if\n"
#: build/parseSpec.c:338 build/parseSpec.c:347
#, c-format
msgid "malformed %%include statement\n"
msgstr "błędnie sformułowany wpis %%include\n"
#: build/parseSpec.c:548
msgid "No compatible architectures found for build\n"
msgstr "Nie znaleziono kompatybilnych architektur do budowania\n"
#: build/parseSpec.c:609
#, c-format
msgid "Package has no %%description: %s\n"
msgstr "Pakiet nie ma %%description: %s\n"
#: build/poptBT.c:108
#, c-format
msgid "buildroot already specified, ignoring %s\n"
msgstr "buildroot był już wcześniej podany, %s jest ignorowany\n"
#: build/poptBT.c:160
#, c-format
msgid "build through %prep (unpack sources and apply patches) from <specfile>"
msgstr "buduj poprzez %prep (rozpakuj źródła i nałóż łaty) z <pliku spec>"
#: build/poptBT.c:161 build/poptBT.c:164 build/poptBT.c:167 build/poptBT.c:170
#: build/poptBT.c:173 build/poptBT.c:176 build/poptBT.c:179
msgid "<specfile>"
msgstr "<plik spec>"
#: build/poptBT.c:163
msgid "build through %build (%prep, then compile) from <specfile>"
msgstr "buduj poprzez %build (%prep oraz kompilacja) z <pliku spec>"
#: build/poptBT.c:166
msgid "build through %install (%prep, %build, then install) from <specfile>"
msgstr "buduj poprzez %install (%prep, %build oraz instalacja) z <pliku spec>"
#: build/poptBT.c:169
#, c-format
msgid "verify %files section from <specfile>"
msgstr "weryfikacja sekcji %files z <pliku spec>"
#: build/poptBT.c:172
msgid "build source and binary packages from <specfile>"
msgstr "buduj pakiet źródłowy i binarny z <pliku spec>"
#: build/poptBT.c:175
msgid "build binary package only from <specfile>"
msgstr "buduj tylko pakiet binarny z <pliku spec>"
#: build/poptBT.c:178
msgid "build source package only from <specfile>"
msgstr "buduj tylko pakiet źródłowy z <pliku spec>"
#: build/poptBT.c:182
#, c-format
msgid "build through %prep (unpack sources and apply patches) from <tarball>"
msgstr "buduj poprzez %prep (rozpakuj źródła i nałóż łaty) z <tarballa>"
#: build/poptBT.c:183 build/poptBT.c:186 build/poptBT.c:189 build/poptBT.c:192
#: build/poptBT.c:195 build/poptBT.c:198 build/poptBT.c:201
msgid "<tarball>"
msgstr "<tarball>"
#: build/poptBT.c:185
msgid "build through %build (%prep, then compile) from <tarball>"
msgstr "buduj poprzez %build (%prep oraz kompilacja) z <tarballa>"
#: build/poptBT.c:188
msgid "build through %install (%prep, %build, then install) from <tarball>"
msgstr "buduj poprzez %install (%prep, %build oraz instalacja) z <tarballa>"
#: build/poptBT.c:191
#, c-format
msgid "verify %files section from <tarball>"
msgstr "weryfikacja sekcji %files z <tarballa>"
#: build/poptBT.c:194
msgid "build source and binary packages from <tarball>"
msgstr "buduj pakiet źródłowy i binarny z <tarballa>"
#: build/poptBT.c:197
msgid "build binary package only from <tarball>"
msgstr "buduj tylko pakiet binarny z <tarballa>"
#: build/poptBT.c:200
msgid "build source package only from <tarball>"
msgstr "buduj tylko pakiet źródłowy z <tarballa>"
#: build/poptBT.c:204
msgid "build binary package from <source package>"
msgstr "buduj pakiet binarny z <pakietu źródłowego>"
#: build/poptBT.c:205 build/poptBT.c:208
msgid "<source package>"
msgstr "<pakiet źródłowy>"
#: build/poptBT.c:207
msgid ""
"build through %install (%prep, %build, then install) from <source package>"
msgstr ""
"buduj poprzez %install (%prep, %build oraz instalacja) z <pakietu źródłowego>"
#: build/poptBT.c:211
msgid "override build root"
msgstr "wymuś build root"
#: build/poptBT.c:213
msgid "remove build tree when done"
msgstr "usuń budowane drzewo po skończeniu"
#: build/poptBT.c:215 rpmdb/poptDB.c:28
msgid "generate headers compatible with rpm4 packaging"
msgstr "generuj nagłówki kompatybilne z pakietami rpm4"
#: build/poptBT.c:217
msgid "ignore ExcludeArch: directives from spec file"
msgstr "ignoruj dyrektywy ExcludeArch: z pliku spec"
#: build/poptBT.c:219
msgid "debug file state machine"
msgstr "śledź maszynę stanów plików"
#: build/poptBT.c:221
msgid "do not execute any stages of the build"
msgstr "nie wykonuj żadnych etapów budowania"
#: build/poptBT.c:223
msgid "do not verify build dependencies"
msgstr "nie sprawdzaj zależności budowania pakietu"
#: build/poptBT.c:225
msgid "generate package header(s) compatible with (legacy) rpm[23] packaging"
msgstr ""
"generuj nagłówki pakietu kompatybilne z (wymierającymi) pakietami rpm[23]"
#: build/poptBT.c:229 lib/poptALL.c:235 lib/poptI.c:254 lib/poptQV.c:329
#: lib/poptQV.c:338 lib/poptQV.c:377
msgid "don't verify package digest(s)"
msgstr "nie sprawdzaj skrótów pakietu"
#: build/poptBT.c:231 lib/poptALL.c:237 lib/poptI.c:256 lib/poptQV.c:332
#: lib/poptQV.c:340 lib/poptQV.c:380
msgid "don't verify database header(s) when retrieved"
msgstr "nie sprawdzaj nagłówków bazy danych przy odczycie"
#: build/poptBT.c:233 lib/poptALL.c:243 lib/poptI.c:258 lib/poptQV.c:335
#: lib/poptQV.c:342 lib/poptQV.c:382
msgid "don't verify package signature(s)"
msgstr "nie sprawdzaj sygnatur pakietu"
#: build/poptBT.c:236
msgid "do not accept i18N msgstr's from specfile"
msgstr "nie akceptuj wpisów I18N z pliku spec"
#: build/poptBT.c:238
msgid "remove sources when done"
msgstr "usuń źródła po zakończeniu"
#: build/poptBT.c:240
msgid "remove specfile when done"
msgstr "usuń speca po zakończeniu"
#: build/poptBT.c:242
msgid "skip straight to specified stage (only for c,i)"
msgstr "przejdź od razu do podanego etapu (tylko dla c,i)"
#: build/poptBT.c:244
msgid "generate PGP/GPG signature"
msgstr "generuj sygnaturę PGP/GPG"
#: build/poptBT.c:246
msgid "override target platform"
msgstr "wymuś platformę docelową"
#: build/poptBT.c:248
msgid "lookup i18N strings in specfile catalog"
msgstr "wyszukaj wpisy I18N w katalogu pliku spec"
#: build/spec.c:237
#, c-format
msgid "line %d: Bad number: %s\n"
msgstr "linia %d: Błędny numer: %s\n"
#: build/spec.c:243
#, c-format
msgid "line %d: Bad no%s number: %d\n"
msgstr "linia %d: błędny numer no%s: %d\n"
#: build/spec.c:306
#, c-format
msgid "line %d: Bad %s number: %s\n"
msgstr "linia %d: Błędny numer %s: %s\n"
#: build/spec.c:642
#, c-format
msgid "can't query %s: %s\n"
msgstr "nie można odpytać %s: %s\n"
#: build/spec.c:718
#, c-format
msgid "query of specfile %s failed, can't parse\n"
msgstr "odpytywanie pliku spec %s nie powiodło się, nie można interpretować\n"
#: lib/cpio.c:207
#, c-format
msgid "(error 0x%x)"
msgstr "(błąd 0x%x)"
#: lib/cpio.c:210
msgid "Bad magic"
msgstr "Błędny magic"
#: lib/cpio.c:211
msgid "Bad/unreadable header"
msgstr "Błędny/nieczytelny nagłówek"
#: lib/cpio.c:232
msgid "Header size too big"
msgstr "Rozmiar nagłówka jest zbyt duży"
#: lib/cpio.c:233
msgid "Unknown file type"
msgstr "Nieznany typ pliku"
#: lib/cpio.c:234
msgid "Missing hard link(s)"
msgstr "Brakujące twarde dowiązania"
#: lib/cpio.c:235
msgid "MD5 sum mismatch"
msgstr "Błąd sumy MD5"
#: lib/cpio.c:236
msgid "Internal error"
msgstr "Błąd wewnętrzny"
#: lib/cpio.c:237
msgid "Archive file not in header"
msgstr "Brak pliku archiwum w nagłówku"
#: lib/cpio.c:250
msgid " failed - "
msgstr " nie powiodło się -"
#: lib/depends.c:188
#, c-format
msgid "package %s was already added, replacing with %s\n"
msgstr "pakiet %s był już dodany, jest zastępowany przez %s\n"
#: lib/depends.c:397
msgid "(cached)"
msgstr "(zbuforowane)"
#: lib/depends.c:424
msgid "(rpmrc provides)"
msgstr "(zasób rpmrc)"
#: lib/depends.c:441
msgid "(rpmlib provides)"
msgstr "(zasób rpmliba)"
#: lib/depends.c:470
msgid "(db files)"
msgstr "(pliki w bazie)"
#: lib/depends.c:483
msgid "(db provides)"
msgstr "(zasób w bazie)"
#: lib/depends.c:496
msgid "(db package)"
msgstr "(pakiet w bazie)"
#: lib/depends.c:851
#, c-format
msgid "ignore package name relation(s) [%d]\t%s -> %s\n"
msgstr "ignoruj relacje nazw pakietów [%d]\t%s -> %s\n"
#: lib/depends.c:972
#, c-format
msgid "removing %s \"%s\" from tsort relations.\n"
msgstr "usuwanie %s \"%s\" z relacji tsort.\n"
#. Record all relations.
#: lib/depends.c:1204
msgid "========== recording tsort relations\n"
msgstr "========== zapisywanie relacji tsort\n"
#. T4. Scan for zeroes.
#: lib/depends.c:1296
msgid ""
"========== tsorting packages (order, #predecessors, #succesors, tree, "
"depth)\n"
msgstr ""
"========== tsortowanie pakietów (kolejność, #poprzedniki, #następniki, "
"drzewo, głębokość)\n"
#: lib/depends.c:1381
#, c-format
msgid "========== successors only (%d bytes)\n"
msgstr "========== tylko następniki (%d bajtów)\n"
#: lib/depends.c:1451
msgid "LOOP:\n"
msgstr "PĘTLA:\n"
#: lib/depends.c:1486
msgid "========== continuing tsort ...\n"
msgstr "========== kontynuowanie tsort ...\n"
#. Return no. of packages that could not be ordered.
#: lib/depends.c:1491
#, c-format
msgid "rpmtsOrder failed, %d elements remain\n"
msgstr "rpmtsOrder nie powiodło się, zostało %d elementów\n"
#: lib/formats.c:39 lib/formats.c:71 lib/formats.c:106 lib/formats.c:499
#: rpmdb/header.c:3509 rpmdb/header.c:3538 rpmdb/header.c:3562
msgid "(not a number)"
msgstr "(nie jest liczbą)"
#: lib/formats.c:171
msgid "(not base64)"
msgstr "(nie jest base64)"
#: lib/formats.c:181
msgid "(invalid type)"
msgstr "(błędny typ)"
#: lib/formats.c:206 lib/formats.c:398
msgid "(not a blob)"
msgstr "(nie jest blobem)"
#: lib/formats.c:338
msgid "(invalid xml type)"
msgstr "(błędny typ xml)"
#: lib/formats.c:423
msgid "(not an OpenPGP signature)"
msgstr "(nie jest sygnaturą OpenPGP)"
#: lib/fs.c:77
#, c-format
msgid "mntctl() failed to return size: %s\n"
msgstr "mntctl() nie zwróciło rozmiaru: %s\n"
#: lib/fs.c:92
#, c-format
msgid "mntctl() failed to return mount points: %s\n"
msgstr "mntctl() nie zwróciło punktów montowania: %s\n"
#: lib/fs.c:112 lib/fs.c:199 lib/fs.c:318
#, c-format
msgid "failed to stat %s: %s\n"
msgstr "stat %s nie powiodło się: %s\n"
#: lib/fs.c:157 rpmio/url.c:523
#, c-format
msgid "failed to open %s: %s\n"
msgstr "nie można otworzyć %s: %s\n"
#: lib/fs.c:216
#, c-format
msgid "%5d 0x%04x %s %s\n"
msgstr "%6d 0x%04x %s %s\n"
#: lib/fs.c:341
#, c-format
msgid "file %s is on an unknown device\n"
msgstr "plik %s jest na nieznanym urządzeniu\n"
#: lib/fsm.c:350
#, fuzzy
msgid "========== Directories not explicitly included in package:\n"
msgstr "========== Katalogi nie włączone explicite do pakietu:\n"
#: lib/fsm.c:352
#, c-format
msgid "%10d %s\n"
msgstr "%10d %s\n"
#: lib/fsm.c:1293
#, c-format
msgid "%s directory created with perms %04o.\n"
msgstr "katalog %s utworzony z uprawnieniami %04o.\n"
#: lib/fsm.c:1592
#, c-format
msgid "archive file %s was not found in header file list\n"
msgstr "plik archiwum %s nie znaleziony na liście plików w nagłówku\n"
#: lib/fsm.c:1719 lib/fsm.c:1855
#, c-format
msgid "%s saved as %s\n"
msgstr "%s zapisano jako %s\n"
#: lib/fsm.c:1882
#, c-format
msgid "%s rmdir of %s failed: Directory not empty\n"
msgstr "%s rmdir %s nie powiodło się: katalog nie jest pusty\n"
#: lib/fsm.c:1888
#, c-format
msgid "%s rmdir of %s failed: %s\n"
msgstr "%s rmdir %s nie powiodło się: %s\n"
#: lib/fsm.c:1903
#, c-format
msgid "%s unlink of %s failed: %s\n"
msgstr "%s unlink %s nie powiodło się: %s\n"
#: lib/fsm.c:1925
#, c-format
msgid "%s created as %s\n"
msgstr "%s utworzony jako %s\n"
#: lib/misc.c:42
#, c-format
msgid "cannot create %%%s %s\n"
msgstr "nie można utworzyć %%%s %s\n"
#: lib/misc.c:47
#, c-format
msgid "cannot write to %%%s %s\n"
msgstr "nie można zapisać do %%%s %s\n"
#: lib/misc.c:189 lib/misc.c:194 lib/misc.c:200
#, c-format
msgid "error creating temporary file %s\n"
msgstr "błąd przy tworzeniu pliku tymczasowego %s\n"
#: lib/package.c:361
#, c-format
msgid "blob size(%d): BAD, 8 + 16 * il(%d) + dl(%d)\n"
msgstr "rozmiar bloba(%d): BŁĘDNY, 8 + 16 * il(%d) + dl(%d)\n"
#: lib/package.c:370 lib/package.c:434 lib/package.c:501 lib/signature.c:226
#, c-format
msgid "tag[%d]: BAD, tag %d type %d offset %d count %d\n"
msgstr "etykieta[%d]: BŁĘDNA, etykieta %d typ %d offset %d licznik %d\n"
#: lib/package.c:390 lib/signature.c:242
#, c-format
msgid "region offset: BAD, tag %d type %d offset %d count %d\n"
msgstr "offset obszaru: BŁĘDNY, etykieta %d typ %d offset %d licznik %d\n"
#: lib/package.c:411 lib/signature.c:263
#, c-format
msgid "region trailer: BAD, tag %d type %d offset %d count %d\n"
msgstr "końcówka obszaru: BŁĘDNA, etykieta %d typ %d offset %d licznik %d\n"
#: lib/package.c:425 lib/signature.c:277
#, c-format
msgid "region size: BAD, ril(%d) > il(%d)\n"
msgstr "rozmiar obszaru: BŁĘDNY, ril(%d) > il(%d)\n"
#: lib/package.c:453
msgid "hdr SHA1: BAD, not hex\n"
msgstr "hdr SHA1: BŁĘDNY, nie szesnastkowy\n"
#: lib/package.c:471
msgid "hdr DSA: BAD, not binary\n"
msgstr "hdr DSA: BŁĘDNY, nie binarny\n"
#: lib/package.c:535 lib/package.c:577 lib/package.c:888 lib/package.c:912
#: lib/package.c:942 lib/rpmchecksig.c:813
#, c-format
msgid "only V3 signatures can be verified, skipping V%u signature\n"
msgstr "tylko sygnatury V3 mogą być sprawdzone, sygnatura V%u jest pomijana\n"
#: lib/package.c:661
#, c-format
msgid "hdr size(%d): BAD, read returned %d\n"
msgstr "hdr rozmiar(%d): BŁĘDNY, read zwróciło %d\n"
#: lib/package.c:665
msgid "hdr magic: BAD\n"
msgstr "hdr magic: BŁĘDNY\n"
#: lib/package.c:673
#, c-format
msgid "hdr tags: BAD, no. of tags(%d) out of range\n"
msgstr "hdr etykiety: BŁĘDNE, liczba etykiet(%d) spoza zakresu\n"
#: lib/package.c:682
#, c-format
msgid "hdr data: BAD, no. of bytes(%d) out of range\n"
msgstr "hdr dane: BŁĘDNE, liczba bajtów(%d) spoza zakresu\n"
#: lib/package.c:696
#, c-format
msgid "hdr blob(%d): BAD, read returned %d\n"
msgstr "hdr blob(%d): BŁĘDNY, read zwróciło %d\n"
#: lib/package.c:709
msgid "hdr load: BAD\n"
msgstr "hdr load: BŁĘDNY\n"
#: lib/package.c:777
msgid "packaging version 1 is not supported by this version of RPM\n"
msgstr "pakiety w wersji 1 nie są obsługiwane przez tę wersję RPM-a\n"
#: lib/package.c:786
msgid ""
"only packaging with major numbers <= 4 is supported by this version of RPM\n"
msgstr ""
"tylko pakiety z numerem głównym <= 4 są obsługiwane przez tę wersję RPM-a\n"
#: lib/package.c:798 lib/rpmchecksig.c:228 lib/rpmchecksig.c:728
#, c-format
msgid "%s: rpmReadSignature failed: %s"
msgstr "%s: rpmReadSignature nie powiodło się: %s"
#: lib/package.c:805 lib/rpmchecksig.c:235 lib/rpmchecksig.c:736
#, c-format
msgid "%s: No signature available\n"
msgstr "%s: Sygnatura nie jest dostępna\n"
#: lib/package.c:852
#, c-format
msgid "%s: headerRead failed: %s"
msgstr "%s: headerRead nie powiodło się: %s"
#: lib/package.c:955 lib/rpmchecksig.c:116 lib/rpmchecksig.c:651
#, c-format
msgid "%s: Fread failed: %s\n"
msgstr "%s: Fread nie powiodło się: %s\n"
#: lib/poptALL.c:222
msgid "predefine MACRO with value EXPR"
msgstr "predefiniuj MAKRO z wartością WYR"
#: lib/poptALL.c:223 lib/poptALL.c:226
msgid "'MACRO EXPR'"
msgstr "'MAKRO WYR'"
#: lib/poptALL.c:225
msgid "define MACRO with value EXPR"
msgstr "definiuj MAKRO z wartością WYR"
#: lib/poptALL.c:228
msgid "print macro expansion of EXPR"
msgstr "wyświetl rozwinięcie makr z WYR"
#: lib/poptALL.c:229
msgid "'EXPR'"
msgstr "'WYR'"
#: lib/poptALL.c:231 lib/poptALL.c:250 lib/poptALL.c:254
msgid "read <FILE:...> instead of default file(s)"
msgstr "czytaj <PLIK:...> zamiast domyślnego pliku(ów)"
#: lib/poptALL.c:232 lib/poptALL.c:251 lib/poptALL.c:255
msgid "<FILE:...>"
msgstr "<PLIK:...>"
#: lib/poptALL.c:240 lib/poptALL.c:274
msgid "disable use of libio(3) API"
msgstr "wyłącz używanie API libio(3)"
#: lib/poptALL.c:246
msgid "send stdout to CMD"
msgstr "przekaż standardowe wyjście do POLECENIA"
#: lib/poptALL.c:247
msgid "CMD"
msgstr "POLECENIE"
#: lib/poptALL.c:258
msgid "use ROOT as top level directory"
msgstr "użyj KAGALOGu jako katalogu najwyższego poziomu"
#: lib/poptALL.c:259
msgid "ROOT"
msgstr "KATALOG"
#: lib/poptALL.c:262
msgid "display known query tags"
msgstr "wyświetl znane etykiety zapytań"
#: lib/poptALL.c:264
msgid "display final rpmrc and macro configuration"
msgstr "wyświetl ostateczną konfigurację rpmrc i makr"
#: lib/poptALL.c:266
msgid "provide less detailed output"
msgstr "używaj mniej szczegółowego wyjścia"
#: lib/poptALL.c:268
msgid "provide more detailed output"
msgstr "używaj bardziej szczegółowego wyjścia"
#: lib/poptALL.c:270
msgid "print the version of rpm being used"
msgstr "wyświetl wersję używanego rpm-a"
#: lib/poptALL.c:283
msgid "debug payload file state machine"
msgstr "śledź maszynę stanu danych pliku"
#: lib/poptALL.c:285
msgid "use threads for file state machine"
msgstr "użyj wątków dla maszyny stanu plików"
#: lib/poptALL.c:287
msgid "debug protocol data stream"
msgstr "śledź strumień danych protokołu"
#: lib/poptALL.c:292
msgid "debug option/argument processing"
msgstr "śledź przetwarzanie opcji/argumentów"
#: lib/poptALL.c:297
msgid "debug package state machine"
msgstr "śledź maszynę stanu pakietu"
#: lib/poptALL.c:299
msgid "use threads for package state machine"
msgstr "użyj wątków dla maszyny stanu pakietów"
#: lib/poptALL.c:311
msgid "debug rpmio I/O"
msgstr "śledź wejście/wyjście rpmio"
#: lib/poptALL.c:323
msgid "debug URL cache handling"
msgstr "śledź obsługę buforowania URL-i"
#. @-nullpass@
#: lib/poptALL.c:393
#, c-format
msgid "%s: option table misconfigured (%d)\n"
msgstr "%s: tabela opcji błędnie skonfigurowana (%d)\n"
#: lib/poptI.c:57
msgid "exclude paths must begin with a /"
msgstr "ścieżki wyłączeń muszą się zaczynać od /"
#: lib/poptI.c:71
msgid "relocations must begin with a /"
msgstr "specyfikacja przesunięcia musi zaczynać się od /"
#: lib/poptI.c:74
msgid "relocations must contain a ="
msgstr "specyfikacja przesunięcia musi zawierać ="
#: lib/poptI.c:77
msgid "relocations must have a / following the ="
msgstr "specyfikacja przesunięcia musi zawierać / po ="
#: lib/poptI.c:92
msgid "rollback takes a time/date stamp argument"
msgstr "cofnięcie przyjmuje argument w postaci znacznika czasu/daty"
#: lib/poptI.c:99
msgid "malformed rollback time/date stamp argument"
msgstr "błędny argument znacznika czasu/daty dla cofnięcie"
#: lib/poptI.c:151
msgid "add suggested packages to transaction"
msgstr "dodaj sugerowane pakiety do transakcji"
#: lib/poptI.c:155
msgid "install all files, even configurations which might otherwise be skipped"
msgstr ""
"instaluj wszystkie pliki, nawet konfiguracyjne, które w innym przypadku by "
"pominięto"
#: lib/poptI.c:159
msgid ""
"remove all packages which match <package> (normally an error is generated if "
"<package> specified multiple packages)"
msgstr ""
"usuń wszystkie pakiety, które spełniają wzorzec <pakiet> (zazwyczaj "
"wyświetlany jest błąd gdy <pakiet> opisuje wiele pakietów)"
#: lib/poptI.c:164 tools/rpmgraph.c:273
msgid "use anaconda \"presentation order\""
msgstr "użyj porządku wyświetlania anacondy"
#: lib/poptI.c:169 lib/poptI.c:238
msgid "do not execute package scriptlet(s)"
msgstr "nie wykonuj żadnych skryptów instalacyjnych"
#: lib/poptI.c:173
msgid "relocate files in non-relocateable package"
msgstr "przesuń pliki w nieprzesuwalnym pakiecie"
#: lib/poptI.c:176
msgid "save erased package files by renaming into sub-directory"
msgstr "zapisz usuwane pliki z pakietu przenosząc do podkatalogu"
#: lib/poptI.c:179
msgid "erase (uninstall) package"
msgstr "usuń (odinstaluj) pakiet"
#: lib/poptI.c:179
msgid "<package>+"
msgstr "<pakiet>+"
#: lib/poptI.c:182 lib/poptI.c:219
msgid "do not install configuration files"
msgstr "nie instaluj plików konfiguracyjnych"
#: lib/poptI.c:185 lib/poptI.c:224
msgid "do not install documentation"
msgstr "nie instaluj dokumentacji"
#: lib/poptI.c:187
msgid "skip files with leading component <path> "
msgstr "pomiń pliki zaczynające się od <ścieżki> "
#: lib/poptI.c:188
msgid "<path>"
msgstr "<ścieżka>"
#: lib/poptI.c:191
msgid "short hand for --replacepkgs --replacefiles"
msgstr "skrócona wersja kombinacji --replacepkgs --replacefiles"
#: lib/poptI.c:195
msgid "upgrade package(s) if already installed"
msgstr "uaktualnij pakiet(y) jeśli jest już zainstalowany"
#: lib/poptI.c:196 lib/poptI.c:212 lib/poptI.c:305
msgid "<packagefile>+"
msgstr "<plik pakietu>+"
#: lib/poptI.c:198
msgid "print hash marks as package installs (good with -v)"
msgstr "wyświetlaj znaki hash przy instalacji (dobre z -v)"
#: lib/poptI.c:201
msgid "don't verify package architecture"
msgstr "nie sprawdzaj architektury systemu"
#: lib/poptI.c:204
msgid "don't verify package operating system"
msgstr "nie sprawdzaj rodzaju systemu operacyjnego"
#: lib/poptI.c:207
msgid "don't check disk space before installing"
msgstr "nie sprawdzaj zajętości dysku przed instalacją"
#: lib/poptI.c:209
msgid "install documentation"
msgstr "zainstaluj dokumentację"
#: lib/poptI.c:212
msgid "install package(s)"
msgstr "instaluj pakiet(y)"
#: lib/poptI.c:215
msgid "update the database, but do not modify the filesystem"
msgstr "uaktualnij bazę, ale nie modyfikuj systemu plików"
#: lib/poptI.c:221
msgid "do not verify package dependencies"
msgstr "nie sprawdzaj zależności pakietu"
#: lib/poptI.c:227 lib/poptQV.c:275 lib/poptQV.c:278
msgid "don't verify MD5 digest of files"
msgstr "nie sprawdzaj skrótów MD5 plików"
#: lib/poptI.c:230
msgid "do not reorder package installation to satisfy dependencies"
msgstr "nie zmieniaj kolejności instalacji pakietów by zapewnić zależności"
#: lib/poptI.c:235
msgid "do not suggest missing dependency resolution(s)"
msgstr "nie sugeruj sposobu(ów) spełnienia brakujących zależności"
#: lib/poptI.c:242
#, c-format
msgid "do not execute %%pre scriptlet (if any)"
msgstr "nie wykonuj skryptu %%pre (jeśli jest)"
#: lib/poptI.c:245
#, c-format
msgid "do not execute %%post scriptlet (if any)"
msgstr "nie wykonuj skryptu %%post (jeśli jest)"
#: lib/poptI.c:248
#, c-format
msgid "do not execute %%preun scriptlet (if any)"
msgstr "nie wykonuj skryptu %%preun (jeśli jest)"
#: lib/poptI.c:251
#, c-format
msgid "do not execute %%postun scriptlet (if any)"
msgstr "nie wykonuj skryptu %%postun (jeśli jest)"
#: lib/poptI.c:261
msgid "do not execute any scriptlet(s) triggered by this package"
msgstr "nie wykonuj żadnych triggerów uaktywnianych przez ten pakiet"
#: lib/poptI.c:264
#, c-format
msgid "do not execute any %%triggerprein scriptlet(s)"
msgstr "nie wykonuj żadnych skryptów %%triggerprein"
#: lib/poptI.c:267
#, c-format
msgid "do not execute any %%triggerin scriptlet(s)"
msgstr "nie wykonuj żadnych skryptów %%triggerin"
#: lib/poptI.c:270
#, c-format
msgid "do not execute any %%triggerun scriptlet(s)"
msgstr "nie wykonuj żadnych skryptów %%triggerun"
#: lib/poptI.c:273
#, c-format
msgid "do not execute any %%triggerpostun scriptlet(s)"
msgstr "nie wykonuj żadnych skryptów %%triggerpostun"
#: lib/poptI.c:277
msgid ""
"upgrade to an old version of the package (--force on upgrades does this "
"automatically)"
msgstr ""
"uaktualnij do starej wersji (--force robi to samo automatycznie podczas "
"uaktualniania)"
#: lib/poptI.c:281
msgid "print percentages as package installs"
msgstr "wyświetlaj stan instalacji w procentach"
#: lib/poptI.c:283
msgid "relocate the package to <dir>, if relocatable"
msgstr "przesuń pliki pakietu do drzewa <katalog>, jeśli jest przesuwalny"
#: lib/poptI.c:284
msgid "<dir>"
msgstr "<katalog>"
#: lib/poptI.c:286
msgid "relocate files from path <old> to <new>"
msgstr "przesuń pliki z drzewa <stara-ścieżka> do drzewa <nowa-ścieżka>"
#: lib/poptI.c:287
msgid "<old>=<new>"
msgstr "<stara-ścieżka>=<nowa-ścieżka>"
#: lib/poptI.c:290
msgid "save erased package files by repackaging"
msgstr "zapisz usuwane pliki z pakietu poprzez przepakowanie"
#: lib/poptI.c:293
msgid "install even if the package replaces installed files"
msgstr "instaluj nawet gdy pakiet zastępuje inne zainstalowane pliki"
#: lib/poptI.c:296
msgid "reinstall if the package is already present"
msgstr "przeinstaluj jeśli pakiet jest już zainstalowany"
#: lib/poptI.c:298
msgid "deinstall new, reinstall old, package(s), back to <date>"
msgstr "odinstaluj nowe, zainstaluj z powrotem stare pakiety aż do <daty>"
#: lib/poptI.c:299
msgid "<date>"
msgstr "<data>"
#: lib/poptI.c:301
msgid "don't install, but tell if it would work or not"
msgstr "nie instaluj, podaj tylko czy instalacja zadziała czy nie"
#: lib/poptI.c:304
msgid "upgrade package(s)"
msgstr "uaktualnij pakiet(y)"
#: lib/poptQV.c:95
msgid "query/verify all packages"
msgstr "odpytaj/sprawdź wszystkie pakiety"
#: lib/poptQV.c:97
msgid "rpm checksig mode"
msgstr "tryb sprawdzania sygnatur"
#: lib/poptQV.c:99
msgid "query/verify package(s) owning file"
msgstr "odpytaj/sprawdź pakiet(y) zawierające plik"
#: lib/poptQV.c:101
msgid "query/verify package(s) with file identifier"
msgstr "odpytaj/sprawdź pakiet(y) z identyfikatorem pliku"
#: lib/poptQV.c:103
msgid "query/verify package(s) in group"
msgstr "odpytaj/sprawdź pakiet(y) w grupie"
#: lib/poptQV.c:105
msgid "query/verify package(s) with header identifier"
msgstr "odpytaj/sprawdź pakiet(y) z identyfikatorem nagłówka"
#: lib/poptQV.c:107
msgid "query/verify a package file"
msgstr "odpytaj/sprawdź plik pakietu"
#: lib/poptQV.c:109
msgid "query/verify package(s) with package identifier"
msgstr "odpytaj/sprawdź pakiet(y) z identyfikatorem pakietu"
#: lib/poptQV.c:111
msgid "rpm query mode"
msgstr "tryb odpytywania"
#: lib/poptQV.c:113
msgid "query/verify a header instance"
msgstr "odpytaj/sprawdź instancję nagłówka"
#: lib/poptQV.c:115
msgid "query a spec file"
msgstr "odpytywanie pliku spec"
#: lib/poptQV.c:115
msgid "<spec>"
msgstr "<spec>"
#: lib/poptQV.c:117
msgid "query/verify package(s) from install transaction"
msgstr "odpytaj/sprawdź pakiety z transakcji instalacji"
#: lib/poptQV.c:119
msgid "query the package(s) triggered by the package"
msgstr "odpytaj pakiety z triggerami uaktywnianymi przez pakiet"
#: lib/poptQV.c:121
msgid "rpm verify mode"
msgstr "tryb sprawdzania"
#: lib/poptQV.c:123
msgid "query/verify the package(s) which require a dependency"
msgstr "odpytaj/sprawdź pakiet(y) wymagające zasobu"
#: lib/poptQV.c:125
msgid "query/verify the package(s) which provide a dependency"
msgstr "odpytaj/sprawdź pakiet(y) udostępniające zasób"
#: lib/poptQV.c:226
msgid "list all configuration files"
msgstr "wyświetl wszystkie pliki konfiguracyjne"
#: lib/poptQV.c:228
msgid "list all documentation files"
msgstr "wyświetl wszystkie pliki dokumentacji"
#: lib/poptQV.c:230
msgid "dump basic file information"
msgstr "podaj podstawowe informacje o pliku"
#: lib/poptQV.c:234
msgid "list files in package"
msgstr "wyświetl pliki zawarte w pakiecie"
#: lib/poptQV.c:239
#, c-format
msgid "skip %%ghost files"
msgstr "pomiń pliki %%ghost"
#: lib/poptQV.c:243
#, c-format
msgid "skip %%license files"
msgstr "pomiń pliki %%license"
#: lib/poptQV.c:246
#, c-format
msgid "skip %%readme files"
msgstr "pomiń pliki %%readme"
#: lib/poptQV.c:252
msgid "use the following query format"
msgstr "użyj następującego formatu zapytania"
#: lib/poptQV.c:254
msgid "substitute i18n sections into spec file"
msgstr "zamień sekcje i18n w plik spec"
#: lib/poptQV.c:256
msgid "display the states of the listed files"
msgstr "wyświetl status pokazywanych plików"
#: lib/poptQV.c:282
msgid "don't verify size of files"
msgstr "nie sprawdzaj rozmiaru plików"
#: lib/poptQV.c:285
msgid "don't verify symlink path of files"
msgstr "nie sprawdzaj ścieżek dowiązań plików"
#: lib/poptQV.c:288
msgid "don't verify owner of files"
msgstr "nie sprawdzaj właścicieli plików"
#: lib/poptQV.c:291
msgid "don't verify group of files"
msgstr "nie sprawdzaj grup plików"
#: lib/poptQV.c:294
msgid "don't verify modification time of files"
msgstr "nie sprawdzaj czasu modyfikacji plików"
#: lib/poptQV.c:297 lib/poptQV.c:300
msgid "don't verify mode of files"
msgstr "nie sprawdzaj uprawnień plików"
#: lib/poptQV.c:303
msgid "don't verify files in package"
msgstr "nie sprawdzaj plików pakietu"
#: lib/poptQV.c:306 lib/poptQV.c:309 tools/rpmgraph.c:267
msgid "don't verify package dependencies"
msgstr "nie sprawdzaj zależności pakietu"
#: lib/poptQV.c:314 lib/poptQV.c:318 lib/poptQV.c:321 lib/poptQV.c:324
msgid "don't execute verify script(s)"
msgstr "nie wykonuj żadnych skryptów verify"
#: lib/poptQV.c:348
msgid "don't verify GPG V3 DSA signature(s)"
msgstr "nie sprawdzaj sygnatur GPG V3 DSS"
#: lib/poptQV.c:351
msgid "don't verify PGP V3 RSA/MD5 signature(s)"
msgstr "nie sprawdzaj sygnatur PGP V3 RSA/MD5"
#: lib/poptQV.c:366
msgid "sign package(s) (identical to --resign)"
msgstr "podpisz pakiet(y) (identyczne z --resign)"
#: lib/poptQV.c:368
msgid "verify package signature(s)"
msgstr "sprawdź sygnaturę pakietu"
#: lib/poptQV.c:370
msgid "import an armored public key"
msgstr "importuj opakowany klucz publiczny"
#: lib/poptQV.c:372
msgid "sign package(s) (identical to --addsign)"
msgstr "podpisz pakiet(y) (identyczne z --addsign)"
#: lib/poptQV.c:374
msgid "generate signature"
msgstr "generuj sygnaturę"
#: lib/psm.c:269
msgid "source package expected, binary found\n"
msgstr "spodziewany pakiet źródłowy, a napotkano binarny\n"
#: lib/psm.c:394
msgid "source package contains no .spec file\n"
msgstr "pakiet źródłowy nie zawiera pliku .spec\n"
#: lib/psm.c:480
#, c-format
msgid "%s: waitpid(%d) rc %d status %x secs %u.%03u\n"
msgstr "%s: waitpid(%d) rc %d status %x secs %u.%03u\n"
#: lib/psm.c:562
#, c-format
msgid "%s: %s(%s-%s-%s) skipping redundant \"%s\".\n"
msgstr "%s: %s(%s-%s-%s) pomijanie nadmiarowego \"%s\".\n"
#: lib/psm.c:570
#, c-format
msgid "%s: %s(%s-%s-%s) %ssynchronous scriptlet start\n"
msgstr "%s: %s(%s-%s-%s) %ssynchroniczny start skryptu\n"
#: lib/psm.c:735
#, c-format
msgid "%s: %s(%s-%s-%s)\texecv(%s) pid %d\n"
msgstr "%s: %s(%s-%s-%s)\texecv(%s) pid %d\n"
#: lib/psm.c:756
#, c-format
msgid "%s(%s-%s-%s) scriptlet failed, waitpid(%d) rc %d: %s\n"
msgstr "skrypt %s(%s-%s-%s) nie powiódł się, waitpid(%d) rc %d: %s\n"
#: lib/psm.c:762
#, c-format
msgid "%s(%s-%s-%s) scriptlet failed, exit status %d\n"
msgstr "skrypt %s(%s-%s-%s) nie powiódł się, status wyjścia %d\n"
#: lib/psm.c:1191
#, c-format
msgid "%s: %s has %d files, test = %d\n"
msgstr "%s: %s ma %d plików, test = %d\n"
#: lib/psm.c:1330
#, c-format
msgid "%s: %s scriptlet failed (%d), skipping %s\n"
msgstr "%s: skrypt %s nie powiódł się (%d), pomijanie %s\n"
#: lib/psm.c:1439
msgid "Unable to reload signature header\n"
msgstr "Nie można ponownie odczytać nagłówka sygnatury\n"
#: lib/psm.c:1485
#, c-format
msgid "user %s does not exist - using root\n"
msgstr "użytkownik %s nie istnieje - użyto konta root\n"
#: lib/psm.c:1494
#, c-format
msgid "group %s does not exist - using root\n"
msgstr "grupa %s nie istnieje - użyto grupy root\n"
#: lib/psm.c:1546
#, c-format
msgid "unpacking of archive failed%s%s: %s\n"
msgstr "rozpakowanie archiwum nie powiodło się%s%s: %s\n"
#: lib/psm.c:1547
msgid " on file "
msgstr " na pliku "
#: lib/psm.c:1733
#, c-format
msgid "%s failed on file %s: %s\n"
msgstr "%s nie powiódł się na pliku %s: %s\n"
#: lib/psm.c:1736
#, c-format
msgid "%s failed: %s\n"
msgstr "%s nie powiodło się: %s\n"
#: lib/query.c:118 lib/rpmts.c:565
#, c-format
msgid "incorrect format: %s\n"
msgstr "błędny format: %s\n"
#. @-boundswrite@
#: lib/query.c:165
msgid "(contains no files)"
msgstr "(nie zawiera plików)"
#: lib/query.c:230
msgid "normal "
msgstr "normalny "
#: lib/query.c:233
msgid "replaced "
msgstr "zastąpiony "
#: lib/query.c:236
msgid "not installed "
msgstr "niezainstalowany"
#: lib/query.c:239
msgid "net shared "
msgstr "udostępniony w sieci"
#: lib/query.c:242
msgid "wrong color "
msgstr "zły kolor "
#: lib/query.c:245
msgid "(no state) "
msgstr "(brak statusu)"
#: lib/query.c:248
#, c-format
msgid "(unknown %3d) "
msgstr "(nieznany %3d)"
#: lib/query.c:266
msgid "package has not file owner/group lists\n"
msgstr "pakiet nie ma list właścicieli/grup plików\n"
#: lib/query.c:299
msgid "package has neither file owner or id lists\n"
msgstr "pakiet nie ma list właścicieli ani id plików\n"
#: lib/query.c:428 lib/query.c:475 lib/rpminstall.c:123 lib/rpminstall.c:462
#: lib/rpminstall.c:593 lib/rpminstall.c:1018 lib/rpmts.c:576
#: tools/rpmgraph.c:120 tools/rpmgraph.c:157
#, c-format
msgid "open of %s failed: %s\n"
msgstr "otwarcie %s nie powiodło się: %s\n"
#: lib/query.c:443
#, c-format
msgid "query of %s failed\n"
msgstr "odpytywanie %s nie powiodło się\n"
#: lib/query.c:453
msgid "old format source packages cannot be queried\n"
msgstr "pakiety w starym formacie nie mogą być odpytywane\n"
#: lib/query.c:488 lib/rpminstall.c:608
#, c-format
msgid "%s: not an rpm package (or package manifest): %s\n"
msgstr "%s: nie jest pakietem rpm (ani \"manifestem\" pakietu): %s\n"
#: lib/query.c:517
msgid "no packages\n"
msgstr "brak pakietów\n"
#: lib/query.c:535
#, c-format
msgid "unknown tag: \"%s\"\n"
msgstr "nieznana etykieta: \"%s\"\n"
#: lib/query.c:561
#, c-format
msgid "group %s does not contain any packages\n"
msgstr "grupa %s nie zawiera żadnych pakietów\n"
#: lib/query.c:570
#, c-format
msgid "no package triggers %s\n"
msgstr "żaden pakiet nie zahacza %s\n"
#: lib/query.c:583 lib/query.c:604 lib/query.c:624 lib/query.c:658
#, c-format
msgid "malformed %s: %s\n"
msgstr "błędne sformułowanie %s: %s\n"
#: lib/query.c:593 lib/query.c:610 lib/query.c:634 lib/query.c:663
#, c-format
msgid "no package matches %s: %s\n"
msgstr "żaden pakiet nie pasuje do %s: %s\n"
#: lib/query.c:673
#, c-format
msgid "no package requires %s\n"
msgstr "żaden pakiet nie wymaga %s\n"
#: lib/query.c:684
#, c-format
msgid "no package provides %s\n"
msgstr "żaden pakiet nie udostępnia %s\n"
#: lib/query.c:719
#, c-format
msgid "file %s: %s\n"
msgstr "plik %s: %s\n"
#: lib/query.c:723
#, c-format
msgid "file %s is not owned by any package\n"
msgstr "plik %s nie należy do żadnego pakietu\n"
#: lib/query.c:748
#, c-format
msgid "invalid package number: %s\n"
msgstr "błędny numer pakietu: %s\n"
#: lib/query.c:751
#, c-format
msgid "package record number: %u\n"
msgstr "numer rekordu pakietu: %u\n"
#: lib/query.c:756
#, c-format
msgid "record %u could not be read\n"
msgstr "nie można odczytać rekordu %u\n"
#: lib/query.c:766 lib/rpminstall.c:778
#, c-format
msgid "package %s is not installed\n"
msgstr "pakiet %s nie jest zainstalowany\n"
#: lib/rpmal.c:692
msgid "(added files)"
msgstr "(dodane pliki)"
#: lib/rpmal.c:770
msgid "(added provide)"
msgstr "(dodany zasób)"
#: lib/rpmchecksig.c:55
#, c-format
msgid "%s: open failed: %s\n"
msgstr "%s: open nie powiodło się: %s\n"
#: lib/rpmchecksig.c:67
msgid "makeTempFile failed\n"
msgstr "makeTempFile nie powiodło się\n"
#: lib/rpmchecksig.c:110
#, c-format
msgid "%s: Fwrite failed: %s\n"
msgstr "%s: Fwrite nie powiodło się: %s\n"
#: lib/rpmchecksig.c:208 lib/rpmchecksig.c:710
#, c-format
msgid "%s: not an rpm package\n"
msgstr "%s: nie jest pakietem rpm\n"
#: lib/rpmchecksig.c:213
#, c-format
msgid "%s: Can't sign v1 packaging\n"
msgstr "%s: Nie można podpisać pakietu v1\n"
#: lib/rpmchecksig.c:217
#, c-format
msgid "%s: Can't re-sign v2 packaging\n"
msgstr "%s: Nie można ponownie podpisać pakietu v2\n"
#: lib/rpmchecksig.c:325
#, c-format
msgid "%s: was already signed by key ID %s, skipping\n"
msgstr "%s: już był podpisany kluczem o ID %s, pomijany\n"
#: lib/rpmchecksig.c:356
#, c-format
msgid "%s: writeLead failed: %s\n"
msgstr "%s: writeLead nie powiodło się: %s\n"
#: lib/rpmchecksig.c:362
#, c-format
msgid "%s: rpmWriteSignature failed: %s\n"
msgstr "%s: rpmWriteSignature nie powiodło się: %s\n"
#: lib/rpmchecksig.c:575
#, c-format
msgid "%s: import read failed.\n"
msgstr "%s: read przy imporcie nie powiodło się.\n"
#: lib/rpmchecksig.c:587
#, c-format
msgid "%s: import failed.\n"
msgstr "%s: import nie powiódł się.\n"
#: lib/rpmchecksig.c:622
#, c-format
msgid "%s: headerRead failed\n"
msgstr "%s: headerRead nie powiodło się\n"
#: lib/rpmchecksig.c:636
#, c-format
msgid "%s: headerGetEntry failed\n"
msgstr "%s: headerGetEntry nie powiodło się\n"
#: lib/rpmchecksig.c:716
#, c-format
msgid "%s: No signature available (v1.0 RPM)\n"
msgstr "%s: Sygnatura nie jest dostępna (RPM v1.0)\n"
#: lib/rpmchecksig.c:979
msgid "NOT OK"
msgstr "NIE DOBRZE"
#: lib/rpmchecksig.c:980 lib/rpmchecksig.c:994
msgid " (MISSING KEYS:"
msgstr " (BRAK KLUCZY:"
#: lib/rpmchecksig.c:982 lib/rpmchecksig.c:996
msgid ") "
msgstr ") "
#: lib/rpmchecksig.c:983 lib/rpmchecksig.c:997
msgid " (UNTRUSTED KEYS:"
msgstr "(NIEWIARYGODNE KLUCZE:"
#: lib/rpmchecksig.c:985 lib/rpmchecksig.c:999
msgid ")"
msgstr ")"
#: lib/rpmchecksig.c:993
msgid "OK"
msgstr "OK"
#: lib/rpmds.c:540 lib/rpmds.c:905
msgid "NO "
msgstr "NIE "
#: lib/rpmds.c:540 lib/rpmds.c:905
msgid "YES"
msgstr "TAK"
#: lib/rpmds.c:870
#, c-format
msgid ""
"The \"B\" dependency needs an epoch (assuming same epoch as \"A\")\n"
"\tA = \"%s\"\tB = \"%s\"\n"
msgstr ""
"Zależność \"B\" wymaga epoch (przyjęto epoch takie samo jak \"A\")\n"
"\tA = \"%s\"\tB = \"%s\"\n"
#: lib/rpmds.c:904
#, c-format
msgid " %s A %s\tB %s\n"
msgstr " %s A %s\tB %s\n"
#. @=branchstate@
#: lib/rpmds.c:928
#, c-format
msgid "package %s has unsatisfied %s: %s\n"
msgstr "pakiet %s ma niespełnione %s: %s\n"
#: lib/rpmfi.c:546
#, c-format
msgid "%s skipped due to missingok flag\n"
msgstr "%s pominięty z powodu flagi missingok\n"
#: lib/rpmfi.c:784
msgid "========== relocations\n"
msgstr "========== przesunięcia\n"
#: lib/rpmfi.c:788
#, c-format
msgid "%5d exclude %s\n"
msgstr "%5d wyłączenie %s\n"
#: lib/rpmfi.c:791
#, c-format
msgid "%5d relocate %s -> %s\n"
msgstr "%5d przesunięcie %s -> %s\n"
#: lib/rpmfi.c:919
#, c-format
msgid "excluding %s %s\n"
msgstr "wyłączanie %s %s\n"
#: lib/rpmfi.c:929
#, c-format
msgid "relocating %s to %s\n"
msgstr "przesuwanie %s do %s\n"
#: lib/rpmfi.c:1021
#, c-format
msgid "relocating directory %s to %s\n"
msgstr "przesuwanie katalogu %s do %s\n"
#: lib/rpminstall.c:190
msgid "Preparing..."
msgstr "Przygotowywanie..."
#: lib/rpminstall.c:192
msgid "Preparing packages for installation..."
msgstr "Przygotowywanie pakietów do instalacji..."
#: lib/rpminstall.c:210
msgid "Repackaging..."
msgstr "Ponowne pakowywanie..."
#: lib/rpminstall.c:212
msgid "Repackaging erased files..."
msgstr "Ponowne pakowanie usuniętych plików..."
#: lib/rpminstall.c:231
msgid "Upgrading..."
msgstr "Uaktualnianie..."
#: lib/rpminstall.c:233
msgid "Upgrading packages..."
msgstr "Uaktualnianie pakietów..."
#: lib/rpminstall.c:394
#, c-format
msgid "Adding goal: %s\n"
msgstr "Dodawanie celu: %s\n"
#: lib/rpminstall.c:409
#, c-format
msgid "Retrieving %s\n"
msgstr "Ściąganie %s\n"
#. XXX undefined %{name}/%{version}/%{release} here
#. XXX %{_tmpdir} does not exist
#: lib/rpminstall.c:422
#, c-format
msgid " ... as %s\n"
msgstr "... jako %s\n"
#: lib/rpminstall.c:426
#, c-format
msgid "skipping %s - transfer failed - %s\n"
msgstr "%s pomijany - transmisja %s nie powiodła się\n"
#: lib/rpminstall.c:481 lib/rpminstall.c:872 tools/rpmgraph.c:140
#, c-format
msgid "%s cannot be installed\n"
msgstr "%s nie może być zainstalowany\n"
#: lib/rpminstall.c:523
#, c-format
msgid "package %s is not relocateable\n"
msgstr "pakiet %s nie jest przesuwalny\n"
#: lib/rpminstall.c:573
#, c-format
msgid "error reading from file %s\n"
msgstr "błąd czytania z pliku %s\n"
#: lib/rpminstall.c:579
#, c-format
msgid "file %s requires a newer version of RPM\n"
msgstr "plik %s wymaga nowszej wersji RPM-a\n"
#: lib/rpminstall.c:623
#, c-format
msgid "found %d source and %d binary packages\n"
msgstr "znaleziono %d pakietów źródłowych i %d binarnych\n"
#: lib/rpminstall.c:637 lib/rpminstall.c:810 lib/rpminstall.c:1239
#: tools/rpmgraph.c:195
msgid "Failed dependencies:\n"
msgstr "Niespełnione zależności:\n"
#: lib/rpminstall.c:644 tools/rpmgraph.c:201
msgid " Suggested resolutions:\n"
msgstr " Sugerowane sposoby spełnienia:\n"
#: lib/rpminstall.c:674
msgid "installing binary packages\n"
msgstr "instalacja pakietów binarnych\n"
#: lib/rpminstall.c:698
#, c-format
msgid "cannot open file %s: %s\n"
msgstr "nie można otworzyć pliku %s: %s\n"
#: lib/rpminstall.c:787
#, c-format
msgid "\"%s\" specifies multiple packages\n"
msgstr "\"%s\" określa wiele pakietów\n"
#: lib/rpminstall.c:856
#, c-format
msgid "cannot open %s: %s\n"
msgstr "nie można otworzyć %s: %s\n"
#: lib/rpminstall.c:862
#, c-format
msgid "Installing %s\n"
msgstr "Instalacja %s\n"
#: lib/rpminstall.c:1233
#, c-format
msgid "Rollback packages (+%d/-%d) to %-24.24s (0x%08x):\n"
msgstr "Cofnięcie pakietów (+%d/-%d) do %-24.24s (0x%08x):\n"
#: lib/rpmlead.c:56
#, c-format
msgid "read failed: %s (%d)\n"
msgstr "odczyt nie powiódł się: %s (%d)\n"
#: lib/rpmlibprov.c:29
msgid "PreReq:, Provides:, and Obsoletes: dependencies support versions."
msgstr "Zależności PreReq:, Provides: oraz Obsoletes: obsługują wersje."
#: lib/rpmlibprov.c:32
msgid "file name(s) stored as (dirName,baseName,dirIndex) tuple, not as path."
msgstr ""
"nazwy plików zapisano jako (dirName,baseName,dirIndex) a nie jako ścieżki."
#: lib/rpmlibprov.c:35
msgid "package payload is compressed using bzip2."
msgstr "dane pakietu są skompresowane bzipem2."
#: lib/rpmlibprov.c:38
msgid "package payload file(s) have \"./\" prefix."
msgstr "pliki danych pakietu mają prefix \"./\"."
#: lib/rpmlibprov.c:41
msgid "package name-version-release is not implicitly provided."
msgstr "pakiet name-version-release nie jest udostępniany domyślnie."
#: lib/rpmlibprov.c:44
msgid "header tags are always sorted after being loaded."
msgstr "etykiety nagłówka są zawsze sortowane po wczytaniu."
#: lib/rpmlibprov.c:47
msgid "the scriptlet interpreter can use arguments from header."
msgstr "interpreter skryptów może używać argumentów z nagłówka."
#: lib/rpmlibprov.c:50
msgid "a hardlink file set may be installed without being complete."
msgstr "plik z dowiązaniem stałym może być zainstalowany bez kompletu."
#: lib/rpmlibprov.c:53
msgid "package scriptlets may access the rpm database while installing."
msgstr "skrypty pakietu mogą odwoływać się do bazy rpm-a przy instalacji."
#. @observer@
#: lib/rpmps.c:200
msgid "different"
msgstr "różne"
#: lib/rpmps.c:208
#, c-format
msgid "package %s is intended for a %s architecture"
msgstr "pakiet %s jest przeznaczony dla architektury %s"
#: lib/rpmps.c:213
#, c-format
msgid "package %s is intended for a %s operating system"
msgstr "pakiet %s jest przeznaczony dla systemu operacyjnego %s"
#: lib/rpmps.c:218
#, c-format
msgid "package %s is already installed"
msgstr "pakiet %s jest już zainstalowany"
#: lib/rpmps.c:223
#, c-format
msgid "path %s in package %s is not relocateable"
msgstr "ścieżna %s w pakiecie %s nie jest przesuwalna"
#: lib/rpmps.c:228
#, c-format
msgid "file %s conflicts between attempted installs of %s and %s"
msgstr "plik %s jest w konflikcie między instalowanymi pakietami %s i %s"
#: lib/rpmps.c:233
#, c-format
msgid "file %s from install of %s conflicts with file from package %s"
msgstr "plik %s z instalacji %s jest w konflikcie z plikiem z pakietu %s"
#: lib/rpmps.c:238
#, c-format
msgid "package %s (which is newer than %s) is already installed"
msgstr "pakiet %s (nowszy niż %s) jest już zainstalowany"
#: lib/rpmps.c:243
#, c-format
msgid "installing package %s needs %ld%cB on the %s filesystem"
msgstr "instalacja pakietu %s wymaga %ld%cB w systemie plików %s"
#: lib/rpmps.c:253
#, c-format
msgid "installing package %s needs %ld inodes on the %s filesystem"
msgstr "instalacja pakietu %s wymaga %ld i-węzłów w systemie plików %s"
#: lib/rpmps.c:258
#, c-format
msgid "package %s pre-transaction syscall(s): %s failed: %s"
msgstr ""
"przed-transakcyjne wywołanie systemowe pakietu %s: %s nie powiodło się: %s"
#: lib/rpmps.c:262
#, c-format
msgid "%s is needed by %s%s"
msgstr "%s jest wymagany przez %s%s"
#: lib/rpmps.c:264 lib/rpmps.c:269
msgid "(installed) "
msgstr "(zainstalowany) "
#: lib/rpmps.c:267
#, c-format
msgid "%s conflicts with %s%s"
msgstr "%s jest w konflikcie z %s%s"
#: lib/rpmps.c:273
#, c-format
msgid "unknown error %d encountered while manipulating package %s"
msgstr "wystąpił nieznany błąd %d w trakcie manipulowania pakietem %s"
#: lib/rpmrc.c:197
#, c-format
msgid "missing second ':' at %s:%d\n"
msgstr "brak drugiego ':' w %s:%d\n"
#: lib/rpmrc.c:200
#, c-format
msgid "missing architecture name at %s:%d\n"
msgstr "brak nazwy architektury w %s:%d\n"
#: lib/rpmrc.c:354
#, c-format
msgid "Incomplete data line at %s:%d\n"
msgstr "Niekompletna linia danych w %s:%d\n"
#: lib/rpmrc.c:359
#, c-format
msgid "Too many args in data line at %s:%d\n"
msgstr "Zbyt wiele argumentów w linii danych w %s:%d\n"
#: lib/rpmrc.c:367
#, c-format
msgid "Bad arch/os number: %s (%s:%d)\n"
msgstr "Błędny numer architektury/systemu: %s (%s:%d)\n"
#: lib/rpmrc.c:404
#, c-format
msgid "Incomplete default line at %s:%d\n"
msgstr "Niekompletna domyślna linia w %s:%d\n"
#: lib/rpmrc.c:409
#, c-format
msgid "Too many args in default line at %s:%d\n"
msgstr "Zbyt wiele argumentów w linii domyślnej w %s:%d\n"
#. XXX Feof(fd)
#: lib/rpmrc.c:575
#, c-format
msgid "Failed to read %s: %s.\n"
msgstr "Odczytanie %s nie powiodło się: %s.\n"
#: lib/rpmrc.c:613
#, c-format
msgid "missing ':' (found 0x%02x) at %s:%d\n"
msgstr "brak ':' (napotkano 0x%02x) w %s:%d\n"
#: lib/rpmrc.c:630 lib/rpmrc.c:704
#, c-format
msgid "missing argument for %s at %s:%d\n"
msgstr "brak argumentu dla %s w %s:%d\n"
#: lib/rpmrc.c:647 lib/rpmrc.c:669
#, c-format
msgid "%s expansion failed at %s:%d \"%s\"\n"
msgstr "rozwinięcie %s: nie powiodło się w %s:%d \"%s\"\n"
#: lib/rpmrc.c:656
#, c-format
msgid "cannot open %s at %s:%d: %s\n"
msgstr "nie można otworzyć %s w %s:%d: %s\n"
#: lib/rpmrc.c:696
#, c-format
msgid "missing architecture for %s at %s:%d\n"
msgstr "brak architektury dla %s w %s:%d\n"
#: lib/rpmrc.c:763
#, c-format
msgid "bad option '%s' at %s:%d\n"
msgstr "błędna opcja '%s' w %s:%d\n"
#: lib/rpmrc.c:1527
#, c-format
msgid "Unknown system: %s\n"
msgstr "Nieznany system: %s\n"
#: lib/rpmrc.c:1528
msgid "Please contact rpm-list@redhat.com\n"
msgstr "Proszę skontaktować się z rpm-list@redhat.com\n"
#: lib/rpmrc.c:1765
#, c-format
msgid "Cannot expand %s\n"
msgstr "Nie można rozwinąć %s\n"
#: lib/rpmrc.c:1770
#, c-format
msgid "Cannot read %s, HOME is too large.\n"
msgstr "Nie można odczytać %s, HOME jest zbyt duże.\n"
#: lib/rpmrc.c:1787
#, c-format
msgid "Unable to open %s for reading: %s.\n"
msgstr "Nie można otworzyć %s do odczytu: %s.\n"
#: lib/rpmts.c:162
#, c-format
msgid "cannot open Packages database in %s\n"
msgstr "nie można otworzyć bazy danych Packages w %s\n"
#: lib/rpmts.c:252
#, fuzzy, c-format
msgid "extra '(' in package label: %s\n"
msgstr "błędny numer pakietu: %s\n"
#: lib/rpmts.c:270
#, fuzzy, c-format
msgid "missing '(' in package label: %s\n"
msgstr "Brak '(' w %s %s\n"
#: lib/rpmts.c:278
#, fuzzy, c-format
msgid "missing ')' in package label: %s\n"
msgstr "błędny numer pakietu: %s\n"
#: lib/rpmts.c:455
#, c-format
msgid "cannot open Solve database in %s\n"
msgstr "nie można otworzyć bazy danych Solve w %s\n"
#: lib/rpmts.c:597
#, c-format
msgid "Adding: %s\n"
msgstr "Dodawane: %s\n"
#: lib/rpmts.c:609
#, c-format
msgid "Suggesting: %s\n"
msgstr "Sugerowane: %s\n"
#: lib/rpmts.c:1077
msgid "mounted filesystems:\n"
msgstr "podmontowane systemy plików:\n"
#: lib/rpmts.c:1079
msgid " i dev bsize bavail iavail mount point\n"
msgstr " i urz bloków bl.wolnych i.wolnych punkt montowania\n"
#: lib/rpmts.c:1135
#, c-format
msgid "%5d 0x%04x %5u %12ld %12ld %s\n"
msgstr "%5d 0x%04x %5u %12ld %12ld %s\n"
#: lib/signature.c:133
#, c-format
msgid "Expected size: %12d = lead(%d)+sigs(%d)+pad(%d)+data(%d)\n"
msgstr "Oczekiwany rozmiar: %12d = nagł(%d)+sygn(%d)+wyrówn(%d)+dane(%d)\n"
#: lib/signature.c:138
#, c-format
msgid " Actual size: %12d\n"
msgstr " Faktyczny rozmiar: %12d\n"
#: lib/signature.c:181
#, c-format
msgid "sigh size(%d): BAD, read returned %d\n"
msgstr "sigh rozmiar(%d): BŁĘDNY, read zwróciło %d\n"
#: lib/signature.c:186
msgid "sigh magic: BAD\n"
msgstr "sigh magic: BŁĘDNY\n"
#: lib/signature.c:194
#, c-format
msgid "sigh tags: BAD, no. of tags(%d) out of range\n"
msgstr "sigh etykiety: BŁĘDNE, liczba etykiet(%d) spoza zakresu\n"
#: lib/signature.c:202
#, c-format
msgid "sigh data: BAD, no. of bytes(%d) out of range\n"
msgstr "sigh dane: BŁĘDNE, liczba bajtów(%d) spoza zakresu\n"
#: lib/signature.c:218
#, c-format
msgid "sigh blob(%d): BAD, read returned %d\n"
msgstr "sigh blob(%d): BŁĘDNY, read zwróciło %d\n"
#: lib/signature.c:290
#, c-format
msgid "sigh tag[%d]: BAD, tag %d type %d offset %d count %d\n"
msgstr "sigh etykieta[%d]: BŁĘDNA, etykieta %d typ %d offset %d licznik %d\n"
#: lib/signature.c:300
msgid "sigh load: BAD\n"
msgstr "sigh load: BŁĘDNY\n"
#: lib/signature.c:312
#, c-format
msgid "sigh pad(%d): BAD, read %d bytes\n"
msgstr "sigh wyrównanie(%d): BŁĘDNE, odczytano %d bajtów\n"
#: lib/signature.c:354
#, c-format
msgid "Signature: size(%d)+pad(%d)\n"
msgstr "Sygnatura: rozmiar(%d)+wyrównanie(%d)\n"
#. @=boundsread@
#: lib/signature.c:446 lib/signature.c:560 lib/signature.c:835
#: lib/signature.c:874
#, c-format
msgid "Could not exec %s: %s\n"
msgstr "Nie można uruchomić %s: %s\n"
#: lib/signature.c:462
msgid "pgp failed\n"
msgstr "pgp nie powiodło się\n"
#. PGP failed to write signature
#. Just in case
#: lib/signature.c:469
msgid "pgp failed to write signature\n"
msgstr "zapisanie sygnatury przez pgp nie powiodło się\n"
#: lib/signature.c:475
#, c-format
msgid "PGP sig size: %d\n"
msgstr "rozmiar sygnatury PGP: %d\n"
#. @=boundswrite@
#: lib/signature.c:493 lib/signature.c:608
msgid "unable to read the signature\n"
msgstr "nie można odczytać sygnatury\n"
#: lib/signature.c:498
#, c-format
msgid "Got %d bytes of PGP sig\n"
msgstr "Otrzymano %d bajtów sygnatury PGP\n"
#: lib/signature.c:577
msgid "gpg failed\n"
msgstr "gpg nie powiodło się\n"
#. GPG failed to write signature
#. Just in case
#: lib/signature.c:584
msgid "gpg failed to write signature\n"
msgstr "zapisanie sygnatury przez gpg nie powiodło się\n"
#: lib/signature.c:590
#, c-format
msgid "GPG sig size: %d\n"
msgstr "rozmiar sygnatury GPG: %d\n"
#: lib/signature.c:613
#, c-format
msgid "Got %d bytes of GPG sig\n"
msgstr "Otrzymano %d bajtów sygnatury GPG\n"
#. @notreached@
#. This case should have been screened out long ago.
#: lib/signature.c:879 lib/signature.c:934
#, c-format
msgid "Invalid %%_signature spec in macro file\n"
msgstr "Błędna specyfikacja %%_signature w pliku makr\n"
#: lib/signature.c:911
#, c-format
msgid "You must set \"%%_gpg_name\" in your macro file\n"
msgstr "Należy ustawić \"%%_gpg_name\" w pliku makr\n"
#: lib/signature.c:926
#, c-format
msgid "You must set \"%%_pgp_name\" in your macro file\n"
msgstr "Należy ustawić \"%%_pgp_name\" w pliku makr\n"
#: lib/signature.c:975
msgid "Header+Payload size: "
msgstr "Rozmiar nagłówka+danych: "
#: lib/signature.c:1016
msgid "MD5 digest: "
msgstr "Skrót MD5: "
#: lib/signature.c:1075
msgid "Header SHA1 digest: "
msgstr "Skrót SHA1 nagłówka: "
#: lib/signature.c:1152
msgid "V3 RSA/MD5 signature: "
msgstr "Sygnatura V3 RSA/MD5: "
#: lib/signature.c:1273
msgid "Header "
msgstr "Nagłówek "
#: lib/signature.c:1274
msgid "V3 DSA signature: "
msgstr "Sygnatura V3 DSA: "
#: lib/signature.c:1357
msgid "Verify signature: BAD PARAMETERS\n"
msgstr "Weryfikacja sygnatury: BŁĘDNE PARAMETRY\n"
#: lib/signature.c:1384
msgid "Broken MD5 digest: UNSUPPORTED\n"
msgstr "Uszkodzony skrót MD5: NIE OBSŁUGIWANY\n"
#: lib/signature.c:1388
#, c-format
msgid "Signature: UNKNOWN (%d)\n"
msgstr "Sygnatura: NIEZNANA (%d)\n"
#. @innercontinue@
#: lib/transaction.c:891
#, c-format
msgid "excluding directory %s\n"
msgstr "wyłączanie katalogu %s\n"
#. ===============================================
#. * For packages being installed:
#. * - verify package arch/os.
#. * - verify package epoch:version-release is newer.
#. * - count files.
#. * For packages being removed:
#. * - count files.
#.
#: lib/transaction.c:1004
#, c-format
msgid "sanity checking %d elements\n"
msgstr "sprawdzanie poprawności %d elementów\n"
#. ===============================================
#. * Initialize transaction element file info for package:
#.
#.
#. * FIXME?: we'd be better off assembling one very large file list and
#. * calling fpLookupList only once. I'm not sure that the speedup is
#. * worth the trouble though.
#.
#: lib/transaction.c:1092
#, c-format
msgid "computing %d file fingerprints\n"
msgstr "obliczanie %d odcisków plików\n"
#. ===============================================
#. * Compute file disposition for each package in transaction set.
#.
#: lib/transaction.c:1173
msgid "computing file dispositions\n"
msgstr "obliczanie dyspozycji plików\n"
#: lib/verify.c:288
#, c-format
msgid "missing %c %s"
msgstr "brak %c %s"
#: lib/verify.c:397
#, c-format
msgid "Unsatisfied dependencies for %s: "
msgstr "Niespełnione zależności dla %s: "
#: rpmdb/db3.c:160
#, c-format
msgid "db%d error(%d) from %s: %s\n"
msgstr "błąd db%d(%d) z %s: %s\n"
#: rpmdb/db3.c:163
#, c-format
msgid "db%d error(%d): %s\n"
msgstr "błąd db%d(%d): %s\n"
#: rpmdb/db3.c:189
#, c-format
msgid "closed db environment %s/%s\n"
msgstr "zamknięto środowisko db %s/%s\n"
#: rpmdb/db3.c:207
#, c-format
msgid "removed db environment %s/%s\n"
msgstr "usunięto środowisko db %s/%s\n"
#: rpmdb/db3.c:296
#, c-format
msgid "opening db environment %s/%s %s\n"
msgstr "otwieranie środowiska db %s/%s %s\n"
#: rpmdb/db3.c:782
#, c-format
msgid "closed db index %s/%s\n"
msgstr "zamknięto indeks db %s/%s\n"
#: rpmdb/db3.c:849
#, c-format
msgid "verified db index %s/%s\n"
msgstr "sprawdzono indeks db %s/%s\n"
#: rpmdb/db3.c:989
#, c-format
msgid "unshared posix mutexes found(%d), adding DB_PRIVATE, using fcntl lock\n"
msgstr ""
"znaleziono wyłączne muteksy posix(%d), dodanie DB_PRIVATE, użycie blokady "
"fcntl\n"
#: rpmdb/db3.c:1093
#, c-format
msgid "opening db index %s/%s %s mode=0x%x\n"
msgstr "otwieranie indeksu db %s/%s %s w trybie 0x%x\n"
#: rpmdb/db3.c:1331
#, c-format
msgid "cannot get %s lock on %s/%s\n"
msgstr "nie można uzyskać %s blokady na %s/%s\n"
#: rpmdb/db3.c:1333
msgid "exclusive"
msgstr "wyłącznej"
#: rpmdb/db3.c:1333
msgid "shared"
msgstr "dzielonej"
#: rpmdb/db3.c:1337
#, c-format
msgid "locked db index %s/%s\n"
msgstr "zablokowano indeks db %s/%s\n"
#: rpmdb/dbconfig.c:337
#, c-format
msgid "unrecognized db option: \"%s\" ignored.\n"
msgstr "nierozpoznana opcja db: \"%s\" zignorowana.\n"
#: rpmdb/dbconfig.c:377
#, c-format
msgid "%s has invalid numeric value, skipped\n"
msgstr "%s ma błędną wartość liczbową, pominięto\n"
#: rpmdb/dbconfig.c:386
#, c-format
msgid "%s has too large or too small long value, skipped\n"
msgstr "%s ma zbyt dużą lub zbyt małą wartość long, pominięto\n"
#: rpmdb/dbconfig.c:395
#, c-format
msgid "%s has too large or too small integer value, skipped\n"
msgstr "%s ma zbyt dużą lub zbyt małą wartość całkowitą, pominięto\n"
#: rpmdb/header.c:2685
msgid "missing { after %"
msgstr "brak { po %"
#: rpmdb/header.c:2715
msgid "missing } after %{"
msgstr "brak } po %{"
#: rpmdb/header.c:2731
msgid "empty tag format"
msgstr "pusty format etykiety"
#: rpmdb/header.c:2743
msgid "empty tag name"
msgstr "pusta nazwa etykiety"
#: rpmdb/header.c:2752
msgid "unknown tag"
msgstr "nieznana etykieta"
#: rpmdb/header.c:2779
msgid "] expected at end of array"
msgstr "spodziewany ] na końcu tablicy"
#: rpmdb/header.c:2792
msgid "unexpected ]"
msgstr "nie spodziewany ]"
#: rpmdb/header.c:2805
msgid "unexpected }"
msgstr "nie spodziewany }"
#: rpmdb/header.c:2869
msgid "? expected in expression"
msgstr "spodziewany ? w wyrażeniu"
#: rpmdb/header.c:2876
msgid "{ expected after ? in expression"
msgstr "spodziewany { po ? w wyrażeniu"
#: rpmdb/header.c:2888 rpmdb/header.c:2928
msgid "} expected in expression"
msgstr "spodziewany } w wyrażeniu"
#: rpmdb/header.c:2896
msgid ": expected following ? subexpression"
msgstr "spodziewany : po podwyrażeniu ?"
#: rpmdb/header.c:2914
msgid "{ expected after : in expression"
msgstr "spodziewany { po : w wyrażeniu"
#: rpmdb/header.c:2936
msgid "| expected at end of expression"
msgstr "spodziewany | na końcu wyrażenia"
#. @=modobserver =observertrans@
#: rpmdb/header.c:3037
msgid "(index out of range)"
msgstr "(indeks spoza zakresu)"
#: rpmdb/header.c:3284
msgid "array iterator used with different sized arrays"
msgstr "iterator tablicy użyty na tablicach o różnych rozmiarach"
#: rpmdb/header.c:3600
#, c-format
msgid "%c"
msgstr "%c"
#: rpmdb/header.c:3616
msgid "%a %b %d %Y"
msgstr "%a %d %b %Y"
#: rpmdb/header_internal.c:164
#, c-format
msgid "Data type %d not supported\n"
msgstr "Typ danych %d nie jest obsługiwany\n"
#: rpmdb/poptDB.c:18
msgid "initialize database"
msgstr "zainicjuj bazę danych"
#: rpmdb/poptDB.c:20
msgid "rebuild database inverted lists from installed package headers"
msgstr ""
"przebuduj odwrotne listy w bazie danych z nagłówków zainstalowanych nagłówków"
#: rpmdb/poptDB.c:23
msgid "verify database files"
msgstr "sprawdź pliki bazy danych"
#: rpmdb/poptDB.c:25
msgid "generate headers compatible with (legacy) rpm[23] packaging"
msgstr "generuj nagłówki kompatybilne z (wymierającymi) pakietami rpm[23]"
#: rpmdb/rpmdb.c:213
#, c-format
msgid "dbiTagsInit: unrecognized tag name: \"%s\" ignored\n"
msgstr "dbiTagsInit: nierozpoznana nazwa etykiety: \"%s\" zignorowana\n"
#: rpmdb/rpmdb.c:282
#, c-format
msgid "cannot open %s index using db%d - %s (%d)\n"
msgstr "nie można otworzyć indeksu %s przy użyciu db%d - %s (%d)\n"
#: rpmdb/rpmdb.c:302
#, c-format
msgid "cannot open %s index\n"
msgstr "nie można otworzyć indeksu %s\n"
#: rpmdb/rpmdb.c:915
msgid "no dbpath has been set\n"
msgstr "ścieżka bazy danych nie została podana\n"
#: rpmdb/rpmdb.c:1193 rpmdb/rpmdb.c:1322 rpmdb/rpmdb.c:1373 rpmdb/rpmdb.c:2316
#: rpmdb/rpmdb.c:2432 rpmdb/rpmdb.c:3161
#, c-format
msgid "error(%d) getting \"%s\" records from %s index\n"
msgstr "błąd(%d) pobierania rekordów \"%s\" z indeksu %s\n"
#: rpmdb/rpmdb.c:1567
msgid "miFreeHeader: skipping"
msgstr "miFreeHeader: pomijanie"
#: rpmdb/rpmdb.c:1577
#, c-format
msgid "error(%d) storing record #%d into %s\n"
msgstr "błąd(%d) zapisywania rekordu #%d do %s\n"
#: rpmdb/rpmdb.c:2209
msgid "rpmdbNextIterator: skipping"
msgstr "rpmdbNextIterator: pomijanie"
#: rpmdb/rpmdb.c:2236
#, c-format
msgid "rpmdb: damaged header #%u retrieved -- skipping.\n"
msgstr "rpmdb: uszkodzony nagłówek #%u odtworzony -- pomijanie.\n"
#: rpmdb/rpmdb.c:2520
#, c-format
msgid "%s: cannot read header at 0x%x\n"
msgstr "%s: nie można odczytać nagłówka pod 0x%x\n"
#: rpmdb/rpmdb.c:2583
#, c-format
msgid "error(%d) setting header #%d record for %s removal\n"
msgstr "błąd(%d) ustawiania rekordu nagłówka #%d do usunięcia %s\n"
#: rpmdb/rpmdb.c:2698
#, c-format
msgid "removing \"%s\" from %s index.\n"
msgstr "usuwanie \"%s\" z indeksu %s.\n"
#: rpmdb/rpmdb.c:2702
#, c-format
msgid "removing %d entries from %s index.\n"
msgstr "usuwanie %d wpisów z indeksu %s.\n"
#: rpmdb/rpmdb.c:2730
#, c-format
msgid "error(%d) setting \"%s\" records from %s index\n"
msgstr "błąd(%d) ustawiania rekordów \"%s\" z indeksu %s\n"
#: rpmdb/rpmdb.c:2751
#, c-format
msgid "error(%d) storing record \"%s\" into %s\n"
msgstr "błąd(%d) zapisywania rekordu \"%s\" do %s\n"
#: rpmdb/rpmdb.c:2761
#, c-format
msgid "error(%d) removing record \"%s\" from %s\n"
msgstr "błąd(%d) usuwania rekordu \"%s\" z %s\n"
#: rpmdb/rpmdb.c:2910
#, c-format
msgid "error(%d) allocating new package instance\n"
msgstr "błąd(%d) alokowania nowej instancji pakietu\n"
#: rpmdb/rpmdb.c:2964
msgid "rpmdbAdd: skipping"
msgstr "rpmdbAdd: pomijanie"
#: rpmdb/rpmdb.c:3136
#, c-format
msgid "adding \"%s\" to %s index.\n"
msgstr "dodawanie \"%s\" do indeksu %s.\n"
#: rpmdb/rpmdb.c:3140
#, c-format
msgid "adding %d entries to %s index.\n"
msgstr "dodawanie %d wpisów do indeksu %s.\n"
#: rpmdb/rpmdb.c:3180
#, c-format
msgid "error(%d) storing record %s into %s\n"
msgstr "błąd(%d) zapisywania rekordu %s do %s\n"
#: rpmdb/rpmdb.c:3581
#, c-format
msgid "removing %s after successful db3 rebuild.\n"
msgstr "usuwanie %s po udanym przebudowaniu db3.\n"
#: rpmdb/rpmdb.c:3619
msgid "no dbpath has been set"
msgstr "ścieżka bazy danych nie została podana"
#: rpmdb/rpmdb.c:3651
#, c-format
msgid "rebuilding database %s into %s\n"
msgstr "odbudowywanie bazy danych %s w %s\n"
#: rpmdb/rpmdb.c:3655
#, c-format
msgid "temporary database %s already exists\n"
msgstr "tymczasowa baza danych %s już istnieje\n"
#: rpmdb/rpmdb.c:3661
#, c-format
msgid "creating directory %s\n"
msgstr "tworzenie katalogu %s\n"
#: rpmdb/rpmdb.c:3663
#, c-format
msgid "creating directory %s: %s\n"
msgstr "tworzenie katalogu %s: %s\n"
#: rpmdb/rpmdb.c:3670
#, c-format
msgid "opening old database with dbapi %d\n"
msgstr "otwieranie starej bazy danych przy użyciu dbapi %d\n"
#: rpmdb/rpmdb.c:3683
#, c-format
msgid "opening new database with dbapi %d\n"
msgstr "otwieranie nowej bazy danych przy użyciu dbapi %d\n"
#: rpmdb/rpmdb.c:3712
#, c-format
msgid "header #%u in the database is bad -- skipping.\n"
msgstr "nagłówek #%u w bazie danych jest błędny -- pominięto.\n"
#: rpmdb/rpmdb.c:3752
#, c-format
msgid "cannot add record originally at %u\n"
msgstr "nie można dodać rekordu będącego oryginalnie przy %u\n"
#: rpmdb/rpmdb.c:3766
msgid "failed to rebuild database: original database remains in place\n"
msgstr "przebudowanie bazy nie powiodło się; stara pozostała na miejscu\n"
#: rpmdb/rpmdb.c:3774
msgid "failed to replace old database with new database!\n"
msgstr "zamiana starej bazy na nową nie powiodła się!\n"
#: rpmdb/rpmdb.c:3776
#, c-format
msgid "replace files in %s with files from %s to recover"
msgstr "aby odzyskać, należy zastąpić pliki w %s plikami z %s"
#: rpmdb/rpmdb.c:3786
#, c-format
msgid "removing directory %s\n"
msgstr "usuwanie katalogu %s\n"
#: rpmdb/rpmdb.c:3788
#, c-format
msgid "failed to remove directory %s: %s\n"
msgstr "usunięcie katalogu %s nie powiodło się: %s\n"
#: rpmio/macro.c:236
#, c-format
msgid "======================== active %d empty %d\n"
msgstr "======================== aktywny %d pusty %d\n"
#. XXX just in case
#: rpmio/macro.c:374
#, c-format
msgid "%3d>%*s(empty)"
msgstr "%3d>%*s(pusty)"
#: rpmio/macro.c:417
#, c-format
msgid "%3d<%*s(empty)\n"
msgstr "%3d<%*s(pusty)\n"
#: rpmio/macro.c:655
#, c-format
msgid "Macro %%%s has unterminated body\n"
msgstr "Makro %%%s ma nie zakończone ciało\n"
#: rpmio/macro.c:688
#, c-format
msgid "Macro %%%s has illegal name (%%define)\n"
msgstr "Makro %%%s ma niedozwoloną nazwę (%%define)\n"
#: rpmio/macro.c:694
#, c-format
msgid "Macro %%%s has unterminated opts\n"
msgstr "Makro %%%s ma nie zakończone opcje\n"
#: rpmio/macro.c:699
#, c-format
msgid "Macro %%%s has empty body\n"
msgstr "Makro %%%s ma puste ciało\n"
#: rpmio/macro.c:705
#, c-format
msgid "Macro %%%s failed to expand\n"
msgstr "Rozwinięcie makra %%%s nie powiodło się\n"
#: rpmio/macro.c:740
#, c-format
msgid "Macro %%%s has illegal name (%%undefine)\n"
msgstr "Makro %%%s ma niedozwoloną nazwę (%%undefine)\n"
#: rpmio/macro.c:858
#, c-format
msgid "Macro %%%s (%s) was not used below level %d\n"
msgstr "Makro %%%s (%s) nie było użyte poniżej poziomu %d\n"
#: rpmio/macro.c:982
#, c-format
msgid "Unknown option %c in %s(%s)\n"
msgstr "Nieznana opcja %c w %s(%s)\n"
#: rpmio/macro.c:1182
#, c-format
msgid "Recursion depth(%d) greater than max(%d)\n"
msgstr "Głębokość rekursji(%d) większa niż maksymalna(%d)\n"
#: rpmio/macro.c:1252 rpmio/macro.c:1269
#, c-format
msgid "Unterminated %c: %s\n"
msgstr "Niezakończone %c: %s\n"
#: rpmio/macro.c:1310
#, c-format
msgid "A %% is followed by an unparseable macro\n"
msgstr "Napotkano nieprzetwarzalne makro po %%\n"
#: rpmio/macro.c:1439
#, c-format
msgid "Macro %%%.*s not found, skipping\n"
msgstr "Nie znaleziono makra %%%.*s, makro pominięte\n"
#: rpmio/macro.c:1510
msgid "Target buffer overflow\n"
msgstr "Przepełnienie bufora docelowego\n"
#. XXX Fstrerror
#: rpmio/macro.c:1705 rpmio/macro.c:1711
#, c-format
msgid "File %s: %s\n"
msgstr "Plik %s: %s\n"
#: rpmio/macro.c:1714
#, c-format
msgid "File %s is smaller than %u bytes\n"
msgstr "Plik %s jest mniejszy niż %u bajtów\n"
#: rpmio/rpmio.c:632
msgid "Success"
msgstr "Sukces"
#: rpmio/rpmio.c:635
msgid "Bad server response"
msgstr "Błędna odpowiedź serwera"
#: rpmio/rpmio.c:638
msgid "Server I/O error"
msgstr "Błąd we/wy serwera"
#: rpmio/rpmio.c:641
msgid "Server timeout"
msgstr "Przekroczony limit czasu serwera"
#: rpmio/rpmio.c:644
msgid "Unable to lookup server host address"
msgstr "Nie można znaleźć adresu serwera"
#: rpmio/rpmio.c:647
msgid "Unable to lookup server host name"
msgstr "Nie można znaleźć nazwy serwera"
#: rpmio/rpmio.c:650
msgid "Failed to connect to server"
msgstr "Połączenie z serwerem nie powiodło się"
#: rpmio/rpmio.c:653
msgid "Failed to establish data connection to server"
msgstr "Otwarcie transmisji danych z serwera nie powiodło się"
#: rpmio/rpmio.c:656
msgid "I/O error to local file"
msgstr "Błąd we/wy na lokalnym pliku"
#: rpmio/rpmio.c:659
msgid "Error setting remote server to passive mode"
msgstr "Błąd: ustawienie zdalnego serwera w tryb pasywny nie powiodło się"
#: rpmio/rpmio.c:662
msgid "File not found on server"
msgstr "Plik nie został znaleziony na serwerze"
#: rpmio/rpmio.c:665
msgid "Abort in progress"
msgstr "Przerywanie ..."
#: rpmio/rpmio.c:669
msgid "Unknown or unexpected error"
msgstr "Nieznany lub nieoczekiwany błąd"
#: rpmio/rpmio.c:1362
#, c-format
msgid "logging into %s as %s, pw %s\n"
msgstr "logowanie do %s jako %s, hasło %s\n"
#: rpmio/rpmlog.c:59
msgid "(no error)"
msgstr "(brak błędu)"
#. !< RPMLOG_EMERG
#: rpmio/rpmlog.c:142 rpmio/rpmlog.c:143 rpmio/rpmlog.c:144
msgid "fatal error: "
msgstr "fatalny błąd: "
#. !< RPMLOG_CRIT
#: rpmio/rpmlog.c:145
msgid "error: "
msgstr "błąd: "
#. !< RPMLOG_ERR
#: rpmio/rpmlog.c:146
msgid "warning: "
msgstr "ostrzeżenie: "
#: rpmio/rpmmalloc.c:15
#, c-format
msgid "memory alloc (%u bytes) returned NULL.\n"
msgstr "alokacja pamięci (%u bajtów) zwróciła NULL.\n"
#: rpmio/url.c:122
#, c-format
msgid "warning: u %p ctrl %p nrefs != 0 (%s %s)\n"
msgstr "uwaga: u %p ctrl %p nrefs != 0 (%s %s)\n"
#: rpmio/url.c:142
#, c-format
msgid "warning: u %p data %p nrefs != 0 (%s %s)\n"
msgstr "uwaga: u %p dane %p nrefs != 0 (%s %s)\n"
#: rpmio/url.c:171
#, c-format
msgid "warning: _url_cache[%d] %p nrefs(%d) != 1 (%s %s)\n"
msgstr "uwaga: _url_cache[%d] %p nrefs(%d) != 1 (%s %s)\n"
#: rpmio/url.c:267
#, c-format
msgid "Password for %s@%s: "
msgstr "Hasło dla %s@%s: "
#: rpmio/url.c:295 rpmio/url.c:321
#, c-format
msgid "error: %sport must be a number\n"
msgstr "błąd: %sport musi być liczbą\n"
#: rpmio/url.c:476
msgid "url port must be a number\n"
msgstr "port musi być liczbą\n"
#. XXX Fstrerror
#: rpmio/url.c:543
#, c-format
msgid "failed to create %s: %s\n"
msgstr "utworzenie %s nie powiodło się: %s\n"
#: tools/rpmcache.c:515 tools/rpmgraph.c:269
msgid "don't verify header+payload signature"
msgstr "nie sprawdzaj sygnatury nagłówka+danych"
#: tools/rpmcache.c:518
msgid "don't update cache database, only print package paths"
msgstr "nie uaktualniaj bazy danych bufora, tylko wypisz ścieżki pakietu"
#: tools/rpmcache.c:522
msgid "follow command line symlinks"
msgstr "podążaj za dowiązaniami z linii poleceń"
#: tools/rpmcache.c:525
msgid "logical walk"
msgstr "przechodź logicznie"
#: tools/rpmcache.c:528
msgid "don't change directories"
msgstr "nie zmieniaj katalogów"
#: tools/rpmcache.c:531
msgid "don't get stat info"
msgstr "nie odczytuj informacji stat"
#: tools/rpmcache.c:534
msgid "physical walk"
msgstr "przechodź fizycznie"
#: tools/rpmcache.c:537
msgid "return dot and dot-dot"
msgstr "zwracaj kropkę i kropkę-kropkę"
#: tools/rpmcache.c:540
msgid "don't cross devices"
msgstr "nie przechodź między urządzeniami"
#: tools/rpmcache.c:543
msgid "return whiteout information"
msgstr "zwróć informacje o whiteout"
#: tools/rpmcache.c:546 tools/rpmdeps.c:34 tools/rpmgraph.c:276
msgid "Common options for all rpm modes and executables:"
msgstr "Wspólne opcje dla wszystkich trybów i binarek rpm-a:"
#: tools/rpmcache.c:578
#, c-format
msgid "%s: %%{_cache_dbpath} macro is mis-configured.\n"
msgstr "%s: makro %%{_cache_dbpath} jest błędnie skonfigurowane.\n"
#: tools/rpmcache.c:618
#, c-format
msgid "%s: cache operation failed: ec %d.\n"
msgstr "%s: operacja na cache nie powiodła się: ec %d.\n"
#: tools/rpmgraph.c:170
#, c-format
msgid "%s: read manifest failed: %s\n"
msgstr "%s: odczyt \"manifestu\" nie powiódł się: %s\n"
#: ../rpmpopt:34 ../rpmpopt:290 ../rpmpopt:363
msgid "list install/erase scriptlets from package(s)"
msgstr "wypisz skrypty (de)instalacyjne z pakietu(ów)"
#: ../rpmpopt:38
msgid "set permissions of files in a package"
msgstr "ustaw uprawnienia plików w pakiecie"
#: ../rpmpopt:43
msgid "set user/group ownership of files in a package"
msgstr "ustaw użytkownika/grupę właściciela plików w pakiecie"
#: ../rpmpopt:47 ../rpmpopt:294 ../rpmpopt:367
msgid "list capabilities this package conflicts with"
msgstr "wypisz własności z którymi ten pakiet jest w konflikcie"
#: ../rpmpopt:50 ../rpmpopt:297 ../rpmpopt:370
msgid "list other packages removed by installing this package"
msgstr "wypisz inne pakiety usuwane przy instalacji tego pakietu"
#: ../rpmpopt:53 ../rpmpopt:300 ../rpmpopt:373
msgid "list capabilities that this package provides"
msgstr "wypisz własności dostarczane przez ten pakiet"
#: ../rpmpopt:57 ../rpmpopt:304 ../rpmpopt:377
msgid "list capabilities required by package(s)"
msgstr "wypisz własności wymagane przez pakiet(y)"
#: ../rpmpopt:71 ../rpmpopt:318 ../rpmpopt:390
msgid "list descriptive information from package(s)"
msgstr "wypisz informacje opisowe z pakietu(ów)"
#: ../rpmpopt:74 ../rpmpopt:321 ../rpmpopt:393
msgid "list change logs for this package"
msgstr "wypisz kronikę zmian dla tego pakietu"
#: ../rpmpopt:80 ../rpmpopt:327 ../rpmpopt:399
msgid "list trigger scriptlets from package(s)"
msgstr "wypisz skrypty trigger z pakietu(ów)"
#: ../rpmpopt:84 ../rpmpopt:331 ../rpmpopt:403
msgid "list package(s) by install time, most recent first"
msgstr "wypisz pakiet(y) według czasu instalacji od najświeższego"
#: ../rpmpopt:87 ../rpmpopt:334 ../rpmpopt:406
msgid "list all files from each package"
msgstr "wypisz wszystkie pliki z każdego pakietu"
#: ../rpmpopt:90 ../rpmpopt:93
msgid ""
"find package name that contains a provided capability (needs rpmdb-redhat "
"package installed)"
msgstr ""
"znajdź nazwę pakietu, który dostarcza własność (wymaga zainstalowanego "
"pakietu rpmdb-redhat)"
#: ../rpmpopt:103
msgid "set buildroot <policy> (e.g. compress man pages)"
msgstr "ustaw <polisę> buildroot (np. kompresowanie stron manuala)"
#: ../rpmpopt:104
msgid "<policy>"
msgstr "<polisa>"
#: ../rpmpopt:179 ../rpmpopt:194 ../rpmpopt:209
msgid "enable configure <option> for build"
msgstr "włącz <opcję> konfiguracji przy budowaniu"
#: ../rpmpopt:180 ../rpmpopt:183 ../rpmpopt:195 ../rpmpopt:198 ../rpmpopt:210
#: ../rpmpopt:213
msgid "<option>"
msgstr "<opcja>"
#: ../rpmpopt:182 ../rpmpopt:197 ../rpmpopt:212
msgid "disable configure <option> for build"
msgstr "wyłącz <opcję> konfiguracji przy budowaniu"
#: ../rpmpopt:186 ../rpmpopt:201 ../rpmpopt:216 ../rpmpopt:224 ../rpmpopt:232
#: ../rpmpopt:240 ../rpmpopt:248 ../rpmpopt:256 ../rpmpopt:264 ../rpmpopt:337
#: ../rpmpopt:409 ../rpmpopt:417
msgid "use database in DIRECTORY"
msgstr "użyj bazy danych w KATALOGu"
#: ../rpmpopt:187 ../rpmpopt:202 ../rpmpopt:217 ../rpmpopt:225 ../rpmpopt:233
#: ../rpmpopt:241 ../rpmpopt:249 ../rpmpopt:257 ../rpmpopt:265 ../rpmpopt:338
#: ../rpmpopt:410 ../rpmpopt:418
msgid "DIRECTORY"
msgstr "KATALOG"
# --- from popt/po/pl.po (in popt.h, not in .pot) ---
#~ msgid "Options implemented via popt alias/exec:"
#~ msgstr "Opcje zaimplementowane poprzez popt alias/exec:"
#~ msgid "Help options:"
#~ msgstr "Opcje pomocy:"
|