1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
|
msgid ""
msgstr ""
"POT-Creation-Date: 1999-12-19 13:47-0500\n"
"Content-Type: text/plain; charset=\n"
"Date: 1998-05-02 21:41:47-0400\n"
"From: Erik Troan <ewt@lacrosse.redhat.com>\n"
"Xgettext-Options: --default-domain=rpm --add-comments --keyword=_ "
"--keyword=N_\n"
"Files: /home/ewt/redhat/rpm/rpm.c /home/ewt/redhat/rpm/query.c "
"/home/ewt/redhat/rpm/install.c /home/ewt/redhat/rpm/verify.c "
"/home/ewt/redhat/rpm/checksig.c /home/ewt/redhat/rpm/url.c "
"/home/ewt/redhat/rpm/ftp.c /home/ewt/redhat/rpm/lib/uninstall.c "
"/home/ewt/redhat/rpm/lib/rpmdb.c /home/ewt/redhat/rpm/lib/signature.c "
"/home/ewt/redhat/rpm/lib/dbindex.c /home/ewt/redhat/rpm/lib/depends.c "
"/home/ewt/redhat/rpm/lib/formats.c /home/ewt/redhat/rpm/lib/fs.c "
"/home/ewt/redhat/rpm/lib/header.c /home/ewt/redhat/rpm/lib/lookup.c "
"/home/ewt/redhat/rpm/lib/rebuilddb.c /home/ewt/redhat/rpm/lib/messages.c "
"/home/ewt/redhat/rpm/lib/package.c /home/ewt/redhat/rpm/lib/rpmlead.c "
"/home/ewt/redhat/rpm/lib/rpmrc.c\n"
#: build.c:25 lib/rpminstall.c:250 lib/rpminstall.c:424
#, fuzzy, c-format
msgid "cannot open %s/packages.rpm\n"
msgstr "greška: ne mogu da otvorim %s%s/packages.rpm\n"
#: build.c:35
#, fuzzy
msgid "failed build dependencies:\n"
msgstr "loše međuzavisnosti:\n"
#: build.c:64
#, fuzzy, c-format
msgid "Unable to open spec file %s: %s\n"
msgstr "Ne mogu da otvorim %s za čitanje: %s"
#: build.c:125 build.c:138
#, fuzzy, c-format
msgid "Failed to open tar pipe: %s\n"
msgstr "neuspelo otvaranje %s\n"
#. Give up
#: build.c:146
#, fuzzy, c-format
msgid "Failed to read spec file from %s\n"
msgstr "Neuspelo čitanje %s: %s."
#: build.c:174
#, fuzzy, c-format
msgid "Failed to rename %s to %s: %s\n"
msgstr "Neuspelo čitanje %s: %s."
#: build.c:212
#, c-format
msgid "File is not a regular file: %s\n"
msgstr ""
#: build.c:219
#, fuzzy, c-format
msgid "File %s does not appear to be a specfile.\n"
msgstr "%s ne liči na RPM paket\n"
#. parse up the build operators
#: build.c:279
#, c-format
msgid "Building target platforms: %s\n"
msgstr ""
#: build.c:294
#, fuzzy, c-format
msgid "Building for target %s\n"
msgstr "greška potrage za paketom %s\n"
#: build.c:344
msgid "buildroot already specified"
msgstr ""
#: build.c:351
msgid "--buildarch has been obsoleted. Use the --target option instead.\n"
msgstr ""
#: build.c:355
msgid "--buildos has been obsoleted. Use the --target option instead.\n"
msgstr ""
#: build.c:376
#, fuzzy
msgid "override build architecture"
msgstr "nemoj proveravati arhitekturu paketa"
#: build.c:378
#, fuzzy
msgid "override build operating system"
msgstr "nemoj proveravati operativni sistem za paket"
#: build.c:380
#, fuzzy
msgid "override build root"
msgstr "koristi <dir> kao korenski katalog kod kreiranja"
#: build.c:382 rpm.c:495
msgid "remove build tree when done"
msgstr "ukloni stablo direktorijuma po završetku"
#: build.c:384
#, fuzzy
msgid "do not execute any stages of the build"
msgstr "nemoj izvršiti nijednu fazu"
#: build.c:386
msgid "do not accept I18N msgstr's from specfile"
msgstr ""
#: build.c:388
#, fuzzy
msgid "remove sources when done"
msgstr "ukloni izvorne datoteke i datoteku specifikacije po završetku"
#: build.c:390
#, fuzzy
msgid "remove specfile when done"
msgstr "ukloni izvorne datoteke i datoteku specifikacije po završetku"
#: build.c:392 rpm.c:493
msgid "skip straight to specified stage (only for c,i)"
msgstr "idi pravo do određene faze (samo za k,i)"
#: build.c:394
msgid "override target platform"
msgstr ""
#: build.c:396
msgid "lookup I18N strings in specfile catalog"
msgstr ""
#: convertdb.c:39
#, fuzzy
msgid "RPM database already exists"
msgstr "privremena baza podataka %s već postoji"
#: convertdb.c:44
msgid "Old db is missing"
msgstr ""
#: convertdb.c:55
msgid "failed to create RPM database /var/lib/rpm"
msgstr ""
#: convertdb.c:61
msgid "Old db is corrupt"
msgstr ""
#: convertdb.c:70
#, c-format
msgid "oldrpmdbGetPackageInfo failed &olddb = %p olddb.packages = %p\n"
msgstr ""
#: convertdb.c:204
msgid "rpmconvert: no arguments expected"
msgstr ""
#: convertdb.c:210
msgid "rpmconvert 1.0 - converting database in /var/lib/rpm\n"
msgstr ""
#: oldrpmdb.c:454
#, c-format
msgid "pulling %s from database\n"
msgstr ""
#: oldrpmdb.c:461
#, fuzzy
msgid "package not found in database"
msgstr "paket %s nije nađen u %s"
#: oldrpmdb.c:522
msgid "no copyright!\n"
msgstr ""
#: rpm.c:197
#, c-format
msgid "rpm: %s\n"
msgstr ""
#: rpm.c:208
#, c-format
msgid "RPM version %s\n"
msgstr "RPM verzija %s\n"
#: rpm.c:212
msgid "Copyright (C) 1998 - Red Hat Software"
msgstr ""
#: rpm.c:213
msgid "This may be freely redistributed under the terms of the GNU GPL"
msgstr "Možete slobodno distribuirati dalje pod odredbama GNU GPL"
#: rpm.c:221
msgid "usage: rpm {--help}"
msgstr "korišćenje: {rpm --help}"
#: rpm.c:222
msgid " rpm {--version}"
msgstr ""
#: rpm.c:223
msgid " rpm {--initdb} [--dbpath <dir>]"
msgstr ""
#: rpm.c:224
msgid ""
" rpm {--install -i} [-v] [--hash -h] [--percent] [--force] [--test]"
msgstr ""
#: rpm.c:225
msgid " [--replacepkgs] [--replacefiles] [--root <dir>]"
msgstr ""
#: rpm.c:226
msgid " [--excludedocs] [--includedocs] [--noscripts]"
msgstr ""
#: rpm.c:227
msgid ""
" [--rcfile <file>] [--ignorearch] [--dbpath <dir>]"
msgstr ""
#: rpm.c:228
msgid ""
" [--prefix <dir>] [--ignoreos] [--nodeps] [--allfiles]"
msgstr ""
#: rpm.c:229
msgid ""
" [--ftpproxy <host>] [--ftpport <port>] [--justdb]"
msgstr ""
#: rpm.c:230 rpm.c:239 rpm.c:248
#, fuzzy
msgid " [--httpproxy <host>] [--httpport <port>] "
msgstr "\t\t\t paket1 ...paketN"
#: rpm.c:231 rpm.c:241
msgid " [--noorder] [--relocate oldpath=newpath]"
msgstr ""
#: rpm.c:232
#, fuzzy
msgid ""
" [--badreloc] [--notriggers] [--excludepath <path>]"
msgstr "\t\t\t[--badreloc] datoteka1.rpm ... datotekaN.rpm"
#: rpm.c:233
#, fuzzy
msgid " [--ignoresize] file1.rpm ... fileN.rpm"
msgstr "\t\t\t[--badreloc] datoteka1.rpm ... datotekaN.rpm"
#: rpm.c:234
msgid ""
" rpm {--upgrade -U} [-v] [--hash -h] [--percent] [--force] [--test]"
msgstr ""
#: rpm.c:235
msgid " [--oldpackage] [--root <dir>] [--noscripts]"
msgstr ""
#: rpm.c:236
msgid ""
" [--excludedocs] [--includedocs] [--rcfile <file>]"
msgstr ""
#: rpm.c:237
msgid ""
" [--ignorearch] [--dbpath <dir>] [--prefix <dir>] "
msgstr ""
#: rpm.c:238
msgid " [--ftpproxy <host>] [--ftpport <port>]"
msgstr ""
#: rpm.c:240
msgid " [--ignoreos] [--nodeps] [--allfiles] [--justdb]"
msgstr ""
#: rpm.c:242
#, fuzzy
msgid ""
" [--badreloc] [--excludepath <path>] [--ignoresize]"
msgstr "\t\t\t paket1 ...paketN"
#: rpm.c:243
#, fuzzy
msgid " file1.rpm ... fileN.rpm"
msgstr "\t\t\t[--badreloc] datoteka1.rpm ... datotekaN.rpm"
#: rpm.c:244
msgid " rpm {--query -q} [-afpg] [-i] [-l] [-s] [-d] [-c] [-v] [-R]"
msgstr ""
#: rpm.c:245
msgid " [--scripts] [--root <dir>] [--rcfile <file>]"
msgstr ""
#: rpm.c:246
msgid " [--whatprovides] [--whatrequires] [--requires]"
msgstr ""
#: rpm.c:247
msgid ""
" [--triggeredby] [--ftpuseport] [--ftpproxy <host>]"
msgstr ""
#: rpm.c:249
msgid ""
" [--ftpport <port>] [--provides] [--triggers] [--dump]"
msgstr ""
#: rpm.c:250
#, fuzzy
msgid " [--changelog] [--dbpath <dir>] [targets]"
msgstr "\t\t\t paket1 ...paketN"
#: rpm.c:251
msgid " rpm {--verify -V -y} [-afpg] [--root <dir>] [--rcfile <file>]"
msgstr ""
#: rpm.c:252
msgid ""
" [--dbpath <dir>] [--nodeps] [--nofiles] [--noscripts]"
msgstr ""
#: rpm.c:253
msgid " [--nomd5] [targets]"
msgstr ""
#: rpm.c:254
msgid " rpm {--setperms} [-afpg] [target]"
msgstr ""
#: rpm.c:255
msgid " rpm {--setugids} [-afpg] [target]"
msgstr ""
#: rpm.c:256
#, fuzzy
msgid " rpm {--freshen -F} file1.rpm ... fileN.rpm"
msgstr "\t\t\t[--badreloc] datoteka1.rpm ... datotekaN.rpm"
#: rpm.c:257
msgid " rpm {--erase -e} [--root <dir>] [--noscripts] [--rcfile <file>]"
msgstr ""
#: rpm.c:258
msgid " [--dbpath <dir>] [--nodeps] [--allmatches]"
msgstr ""
#: rpm.c:259
#, fuzzy
msgid ""
" [--justdb] [--notriggers] rpackage1 ... packageN"
msgstr "\t\t\t paket1 ...paketN"
#: rpm.c:260
msgid ""
" rpm {-b|t}[plciba] [-v] [--short-circuit] [--clean] [--rcfile <file>]"
msgstr ""
#: rpm.c:261
#, fuzzy
msgid " [--sign] [--nobuild] [--timecheck <s>] ]"
msgstr "\t\t\t paket1 ...paketN"
#: rpm.c:262
#, fuzzy
msgid " [--target=platform1[,platform2...]]"
msgstr "\t\t\t[--badreloc] datoteka1.rpm ... datotekaN.rpm"
#: rpm.c:263
#, fuzzy
msgid " [--rmsource] [--rmspec] specfile"
msgstr "\t\t\t[--badreloc] datoteka1.rpm ... datotekaN.rpm"
#: rpm.c:264
msgid " rpm {--rmsource} [--rcfile <file>] [-v] specfile"
msgstr ""
#: rpm.c:265
msgid ""
" rpm {--rebuild} [--rcfile <file>] [-v] source1.rpm ... sourceN.rpm"
msgstr ""
#: rpm.c:266
msgid ""
" rpm {--recompile} [--rcfile <file>] [-v] source1.rpm ... sourceN.rpm"
msgstr ""
#: rpm.c:267
msgid " rpm {--resign} [--rcfile <file>] package1 package2 ... packageN"
msgstr "\trpm {--resign} [--rcfile <datoteka>] paket1 paket2 ... paketN"
#: rpm.c:268
msgid " rpm {--addsign} [--rcfile <file>] package1 package2 ... packageN"
msgstr "\trpm {--addsign} [--rcfile <datoteka>] paket1 paket2 ... paketN"
#: rpm.c:269
#, fuzzy
msgid ""
" rpm {--checksig -K} [--nopgp] [--nogpg] [--nomd5] [--rcfile <file>]"
msgstr "\trpm {--checksig -K} [--nopgp] [--nomd5] [--rcfile <datoteka>]"
#: rpm.c:270
msgid " package1 ... packageN"
msgstr "\t\t\t paket1 ...paketN"
#: rpm.c:271
msgid " rpm {--rebuilddb} [--rcfile <file>] [--dbpath <dir>]"
msgstr ""
#: rpm.c:272
msgid " rpm {--querytags}"
msgstr ""
#: rpm.c:306
msgid "usage:"
msgstr "korišćenje:"
#: rpm.c:308
msgid "print this message"
msgstr "štampaj ovu poruku"
#: rpm.c:310
msgid "print the version of rpm being used"
msgstr "napiši verziju rpm-a koja se koristi"
#: rpm.c:311
msgid " all modes support the following arguments:"
msgstr " svi režimi podržavaju sledeće argumente:"
#: rpm.c:312
msgid " --rcfile <file> "
msgstr ""
#: rpm.c:313
msgid "use <file> instead of /etc/rpmrc and $HOME/.rpmrc"
msgstr "koristi <datoteku> umesto /etc/rpmrc i $HOME/.rpmrc"
#: rpm.c:315
msgid "be a little more verbose"
msgstr "budi malko pričljiviji"
#: rpm.c:317
msgid "be incredibly verbose (for debugging)"
msgstr "budi neverovatno pričljiv (zbog nalaženja grešaka)"
#: rpm.c:319
msgid "query mode"
msgstr "režim upita"
#: rpm.c:320 rpm.c:382 rpm.c:446 rpm.c:474
msgid " --root <dir> "
msgstr ""
#: rpm.c:321 rpm.c:383 rpm.c:447 rpm.c:475 rpm.c:537
msgid "use <dir> as the top level directory"
msgstr "koristi <dir> kao direktorijum najvišeg nivoa"
#: rpm.c:322 rpm.c:380 rpm.c:410 rpm.c:462 rpm.c:534
#, fuzzy
msgid " --dbpath <dir> "
msgstr " -b<faza> <spec>\t "
#: rpm.c:323 rpm.c:381 rpm.c:411 rpm.c:463 rpm.c:535
msgid "use <dir> as the directory for the database"
msgstr "koristi <dir> kao direktorijum baze podataka"
#: rpm.c:324
msgid " --queryformat <qfmt>"
msgstr ""
#: rpm.c:325
#, fuzzy
msgid "use <qfmt> as the header format (implies -i)"
msgstr "koristi s kao format zaglavlja (povlači -i)"
#: rpm.c:326
msgid ""
" install, upgrade and query (with -p) allow ftp URL's to be used in place"
msgstr ""
" instaliranje, poboljšavanja i upit (sa -p) dozvoljavaju korišćenje URL-ova"
#: rpm.c:327
#, fuzzy
msgid " of file names as well as the following options:"
msgstr " na mestu imena datoteka kao i sledeće opcije:\n"
#: rpm.c:328
msgid " --ftpproxy <host> "
msgstr ""
#: rpm.c:329
msgid "hostname or IP of ftp proxy"
msgstr "ime hosta ili IP ftp proxy-ja"
#: rpm.c:330
msgid " --ftpport <port> "
msgstr ""
#: rpm.c:331
msgid "port number of ftp server (or proxy)"
msgstr "broj porta FTP servera (ili proxy)"
#: rpm.c:332
#, fuzzy
msgid " --httpproxy <host> "
msgstr " -b<faza> <spec>\t "
#: rpm.c:333
#, fuzzy
msgid "hostname or IP of http proxy"
msgstr "ime hosta ili IP ftp proxy-ja"
#: rpm.c:334
#, fuzzy
msgid " --httpport <port> "
msgstr " -b<faza> <spec>\t "
#: rpm.c:335
#, fuzzy
msgid "port number of http server (or proxy)"
msgstr "broj porta FTP servera (ili proxy)"
#: rpm.c:336
msgid " Package specification options:"
msgstr " Opcije odrednice paketa:"
#: rpm.c:338
msgid "query all packages"
msgstr "upit nad svim paketima"
#: rpm.c:339
msgid " -f <file>+ "
msgstr ""
#: rpm.c:340
msgid "query package owning <file>"
msgstr "upit nad paketom koji ima <datoteku>"
#: rpm.c:341
msgid " -p <packagefile>+ "
msgstr ""
#: rpm.c:342
msgid "query (uninstalled) package <packagefile>"
msgstr "upit za (deinstaliran) paket <paketdatoteka>"
#: rpm.c:343
#, fuzzy
msgid " --triggeredby <pkg>"
msgstr "upit nad paketom koji ima <datoteku>"
#: rpm.c:344
#, fuzzy
msgid "query packages triggered by <pkg>"
msgstr "upit nad paketom koji ima <datoteku>"
#: rpm.c:345
#, fuzzy
msgid " --whatprovides <cap>"
msgstr "upit nad paketom koji ima <datoteku>"
#: rpm.c:346
#, fuzzy
msgid "query packages which provide <cap> capability"
msgstr "upit za pakete koji omogućavaju <i> svojstvo"
#: rpm.c:347
#, fuzzy
msgid " --whatrequires <cap>"
msgstr "upit nad paketom koji ima <datoteku>"
#: rpm.c:348
#, fuzzy
msgid "query packages which require <cap> capability"
msgstr "upit za pakete koji zahtevaju <i> svojstvo"
#: rpm.c:349
msgid " Information selection options:"
msgstr " Opcije za selekciju informacije:"
#: rpm.c:351
msgid "display package information"
msgstr "prikaži informacije o paketu"
#: rpm.c:353
msgid "display the package's change log"
msgstr "prikaži dnevnik promene paketa"
#: rpm.c:355
msgid "display package file list"
msgstr "prikaži listu datoteka u paketu"
#: rpm.c:357
msgid "show file states (implies -l)"
msgstr "prikaži stanja datoteka (povlači -i)"
#: rpm.c:359
msgid "list only documentation files (implies -l)"
msgstr "prikaži samo datoteke iz dokumentacije (povlači -i)"
#: rpm.c:361
msgid "list only configuration files (implies -l)"
msgstr "prikaži samo konfiguracione datoteke (povlači -i)"
#: rpm.c:363
msgid ""
"show all verifiable information for each file (must be used with -l, -c, or "
"-d)"
msgstr ""
"pokaži sve informacije koje se mogu proveriti za svaku datoteku (mora se "
"koristiti sa -l, -c ili -d)"
#: rpm.c:365
msgid "list capabilities package provides"
msgstr "pokaži koja svojstva donosi paket"
#: rpm.c:366
msgid " --requires"
msgstr ""
#: rpm.c:368
msgid "list package dependencies"
msgstr "pokaži zavisnosti paketa"
#: rpm.c:370
msgid "print the various [un]install scripts"
msgstr "ispiši razne skriptove za [de]instalaciju"
#: rpm.c:372
msgid "show the trigger scripts contained in the package"
msgstr ""
#: rpm.c:376
#, fuzzy
msgid " --pipe <cmd> "
msgstr " -b<faza> <spec>\t "
#: rpm.c:377
msgid "send stdout to <cmd>"
msgstr "pošalji standardni izlaz u <komandu>"
#: rpm.c:379
#, fuzzy
msgid ""
"verify a package installation using the same same package specification "
"options as -q"
msgstr ""
"proveri instalaciju paketa koristeći iste opcije za određenje paketa kao i -q"
#: rpm.c:385 rpm.c:433 rpm.c:467
msgid "do not verify package dependencies"
msgstr "nemoj proveravati zavisnosti paketa"
#: rpm.c:387
msgid "do not verify file md5 checksums"
msgstr "nemoj proveravati md5 kontrolne sume datoteke"
#: rpm.c:389
msgid "do not verify file attributes"
msgstr "nemoj proveravati atribute datoteke"
#: rpm.c:392
msgid ""
"set the file permissions to those in the package database using the same "
"package specification options as -q"
msgstr ""
"postavi dozvole datoteke kao one u bazi podataka paketa koristeći iste "
"opcije za određenje datoteka kao i -q"
#: rpm.c:395
msgid ""
"set the file owner and group to those in the package database using the same "
"package specification options as -q"
msgstr ""
"postavi vlasnika i grupu datoteke kao i one u bazi podataka paketa koristeći "
"iste opcije za određenje datoteka kao i -q"
#: rpm.c:399
#, fuzzy
msgid " --install <packagefile>"
msgstr "instaliraj paket"
#: rpm.c:400
#, fuzzy
msgid " -i <packagefile> "
msgstr " -b<faza> <spec>\t "
#: rpm.c:401
msgid "install package"
msgstr "instaliraj paket"
#: rpm.c:402
#, fuzzy
msgid " --excludepath <path>"
msgstr "premesti datoteke iz <starog-puta> u <novi-put>"
#: rpm.c:403
msgid "skip files in path <path>"
msgstr ""
#: rpm.c:404
#, fuzzy
msgid " --relocate <oldpath>=<newpath>"
msgstr "premesti datoteke iz <starog-puta> u <novi-put>"
#: rpm.c:405
msgid "relocate files from <oldpath> to <newpath>"
msgstr "premesti datoteke iz <starog-puta> u <novi-put>"
#: rpm.c:407
msgid "relocate files even though the package doesn't allow it"
msgstr "premesti datoteke čak iako paket to ne dozvoljava"
#: rpm.c:408
msgid " --prefix <dir> "
msgstr ""
#: rpm.c:409
msgid "relocate the package to <dir>, if relocatable"
msgstr "premesti paket u <dir>, ako se može premestiti"
#: rpm.c:413
msgid "do not install documentation"
msgstr "nemoj da instaliraš dokumentaciju"
#: rpm.c:415
msgid "short hand for --replacepkgs --replacefiles"
msgstr "skraćenica za --replacepkgs --replacefiles"
#: rpm.c:418
msgid "print hash marks as package installs (good with -v)"
msgstr "piši heš-znak (#) kako odmiče instaliranje paketa (dobro dođe sa -v)"
#: rpm.c:420
msgid "install all files, even configurations which might otherwise be skipped"
msgstr ""
"instaliraj sve datoteke, čak i konfiguracije koje bi inače bile preskočene"
#: rpm.c:423
msgid "don't verify package architecture"
msgstr "nemoj proveravati arhitekturu paketa"
#: rpm.c:425
msgid "don't check disk space before installing"
msgstr ""
#: rpm.c:427
msgid "don't verify package operating system"
msgstr "nemoj proveravati operativni sistem za paket"
#: rpm.c:429
msgid "install documentation"
msgstr "instaliraj dokumentaciju"
#: rpm.c:431 rpm.c:465
msgid "update the database, but do not modify the filesystem"
msgstr "ažuriraj bazu podataka, ali nemoj menjati fajl-sistem"
#: rpm.c:435 rpm.c:469
msgid "do not reorder package installation to satisfy dependencies"
msgstr ""
"nemoj preurediti redosled instalacije paketa kako bi zadovoljio zavisnosti"
#: rpm.c:437
msgid "don't execute any installation scripts"
msgstr "nemoj izvršiti nijedan instalacioni skript"
#: rpm.c:439 rpm.c:473
msgid "don't execute any scripts triggered by this package"
msgstr ""
#: rpm.c:441
msgid "print percentages as package installs"
msgstr "piši procente instalacije paketa"
#: rpm.c:443
msgid "install even if the package replaces installed files"
msgstr "instaliraj čak iako će paket zameniti instalirane datoteke"
#: rpm.c:445
msgid "reinstall if the package is already present"
msgstr "ponovo instaliraj ako je paket već prisutan"
#: rpm.c:449
msgid "don't install, but tell if it would work or not"
msgstr "nemoj instalirati, ali reci da li će da radi ili ne"
#: rpm.c:451
msgid " --upgrade <packagefile>"
msgstr ""
#: rpm.c:452
#, fuzzy
msgid " -U <packagefile> "
msgstr " -b<faza> <spec>\t "
#: rpm.c:453
msgid "upgrade package (same options as --install, plus)"
msgstr "ažuriraj paket (iste opcije kao --install, plus)"
#: rpm.c:455
msgid ""
"upgrade to an old version of the package (--force on upgrades does this "
"automatically)"
msgstr ""
"ažuriraj na staru verziju paketa (--force kod ažuriranja ovo radi automatski)"
#: rpm.c:457
msgid " --erase <package>"
msgstr ""
#: rpm.c:459
msgid "erase (uninstall) package"
msgstr "izbriši (deinstaliraj) paket"
#: rpm.c:461
msgid ""
"remove all packages which match <package> (normally an error is generated if "
"<package> specified multiple packages)"
msgstr ""
"ukloni sve pakete koji odgovaraju <paketu> (normalno, javlja se greška ako "
"<paket> označava više paketa)"
#: rpm.c:471
msgid "do not execute any package specific scripts"
msgstr "nemoj izvršiti nijedan skript iz paketa"
#: rpm.c:477
msgid " -b<stage> <spec> "
msgstr " -b<faza> <spec>\t "
#: rpm.c:478
#, fuzzy
msgid " -t<stage> <tarball> "
msgstr " -b<faza> <spec>\t "
#: rpm.c:479
msgid "build package, where <stage> is one of:"
msgstr "napravi paket, gde je <faza> jedna od:"
#: rpm.c:481
msgid "prep (unpack sources and apply patches)"
msgstr "priprema (raspakuj izvorne datoteke i primeni zakrpe)"
#: rpm.c:483
#, c-format
msgid "list check (do some cursory checks on %files)"
msgstr "provera liste (mala provera na %files)"
#: rpm.c:485
msgid "compile (prep and compile)"
msgstr "kompilacija (priprema i kompilacija)"
#: rpm.c:487
msgid "install (prep, compile, install)"
msgstr "instalacija (priprema, kompilacija, instalacija)"
#: rpm.c:489
msgid "binary package (prep, compile, install, package)"
msgstr "binarni paket (priprema, kompilacija, instalacija, pakovanje)"
#: rpm.c:491
msgid "bin/src package (prep, compile, install, package)"
msgstr "bin/src paket (priprema, kompilacija, instalacija, pakovanje)"
#: rpm.c:497
msgid "remove sources and spec file when done"
msgstr "ukloni izvorne datoteke i datoteku specifikacije po završetku"
#: rpm.c:499
#, fuzzy
msgid "generate PGP/GPG signature"
msgstr "napravi PGP potpis"
#: rpm.c:500
#, fuzzy
msgid " --buildroot <dir> "
msgstr " -b<faza> <spec>\t "
#: rpm.c:501
msgid "use <dir> as the build root"
msgstr "koristi <dir> kao korenski katalog kod kreiranja"
#: rpm.c:502
msgid " --target=<platform>+"
msgstr ""
#: rpm.c:503
msgid "build the packages for the build targets platform1...platformN."
msgstr ""
#: rpm.c:505
msgid "do not execute any stages"
msgstr "nemoj izvršiti nijednu fazu"
#: rpm.c:506
#, fuzzy
msgid " --timecheck <secs> "
msgstr " -b<faza> <spec>\t "
#: rpm.c:507
#, fuzzy
msgid "set the time check to <secs> seconds (0 disables)"
msgstr "postavi vremensku proveru na S sekundi (0 je deaktivira)"
#: rpm.c:509
msgid " --rebuild <src_pkg> "
msgstr ""
#: rpm.c:510
msgid ""
"install source package, build binary package and remove spec file, sources, "
"patches, and icons."
msgstr ""
"instaliraj izvorni paket, napravi binarni paket i ukloni specifikaciju, "
"izvorne datoteke, zakrpe i ikone."
#: rpm.c:511
#, fuzzy
msgid " --rmsource <spec> "
msgstr " -b<faza> <spec>\t "
#: rpm.c:512
msgid "remove sources and spec file"
msgstr "ukloni izvorne datoteke i datoteku specifikacije"
#: rpm.c:513
msgid " --recompile <src_pkg> "
msgstr ""
#: rpm.c:514
msgid "like --rebuild, but don't build any package"
msgstr "kao i --rebuild, samo nemoj praviti nikakav paket"
#: rpm.c:515
#, fuzzy
msgid " --resign <pkg>+ "
msgstr " -b<faza> <spec>\t "
#: rpm.c:516
msgid "sign a package (discard current signature)"
msgstr "potpiši paket (ukloni tekući potpis)"
#: rpm.c:517
#, fuzzy
msgid " --addsign <pkg>+ "
msgstr " -b<faza> <spec>\t "
#: rpm.c:518
msgid "add a signature to a package"
msgstr "dodaj potpis u paket"
#: rpm.c:520
#, fuzzy
msgid " --checksig <pkg>+ "
msgstr " -b<faza> <spec>\t "
#: rpm.c:521
msgid "verify package signature"
msgstr "proveri potpis u paketu"
#: rpm.c:523
msgid "skip any PGP signatures"
msgstr "preskoči sve PGP potpise"
#: rpm.c:525
#, fuzzy
msgid "skip any GPG signatures"
msgstr "preskoči sve PGP potpise"
#: rpm.c:527
msgid "skip any MD5 signatures"
msgstr "preskoči sve MD5 potpise"
#: rpm.c:529
msgid "list the tags that can be used in a query format"
msgstr "ispiši tag-ove koji mogu biti korišćeni u formatu upita"
#: rpm.c:531
msgid "make sure a valid database exists"
msgstr "uveri se da postoji ispravna baza podataka"
#: rpm.c:533
msgid "rebuild database from existing database"
msgstr "rekreiraj bazu podataka iz postojeće baze"
#: rpm.c:682 rpm.c:688 rpm.c:695 rpm.c:701 rpm.c:710 rpm.c:717 rpm.c:764
#: rpm.c:770 rpm.c:804 rpm.c:810 rpm.c:816 rpm.c:824 rpm.c:868 rpm.c:923
#: rpm.c:930
msgid "only one major mode may be specified"
msgstr "samo jedan glavni režim može biti naveden"
#: rpm.c:703
msgid "-u and --uninstall are deprecated and no longer work.\n"
msgstr "-u i --uninstall nisu više podržani i ne rade više.\n"
#: rpm.c:705
msgid "Use -e or --erase instead.\n"
msgstr "Koristite -e ili --erase.\n"
#: rpm.c:721
msgid "--build (-b) requires one of a,b,i,c,p,l as its sole argument"
msgstr "--build (-b) zahteva jedan od sledećih podargumenata: a,b,i,c,p ili l"
#: rpm.c:725
msgid "--tarbuild (-t) requires one of a,b,i,c,p,l as its sole argument"
msgstr ""
"--tarbuild (-t) zahteva jedan od sledećih podargumenata: a,b,c,i,p ili l"
#: rpm.c:777 rpm.c:783 rpm.c:790 rpm.c:797 rpm.c:937
msgid "one type of query/verify may be performed at a time"
msgstr "samo jedan tip upita/provere može biti urađen odjednom"
#: rpm.c:834
msgid "arguments to --dbpath must begin with a /"
msgstr "argumenti za --dbpath moraju početi znakom '/'"
#: rpm.c:874
msgid "relocations must begin with a /"
msgstr "premeštanja moraju početi znakom '/'"
#: rpm.c:876
msgid "relocations must contain a ="
msgstr "premeštanja moraju imati znak ="
#: rpm.c:879
msgid "relocations must have a / following the ="
msgstr "premeštanja moraju imati / praćeno sa ="
#: rpm.c:888
#, fuzzy
msgid "exclude paths must begin with a /"
msgstr "premeštanja moraju početi znakom '/'"
#: rpm.c:897
#, c-format
msgid "Internal error in argument processing (%d) :-(\n"
msgstr ""
#: rpm.c:948
msgid "--dbpath given for operation that does not use a database"
msgstr "--dbpath je naveden za operaciju koja ne koristi bazu podataka"
#: rpm.c:952
msgid "--timecheck may only be used during package builds"
msgstr "--timecheck se može koristiti samo kod kreiranja paketa"
#: rpm.c:955
#, fuzzy
msgid "unexpected query flags"
msgstr "neočekivan izvor upita"
#: rpm.c:958
#, fuzzy
msgid "unexpected query format"
msgstr "neočekivan izvor upita"
#: rpm.c:961
msgid "unexpected query source"
msgstr "neočekivan izvor upita"
#: rpm.c:967
#, fuzzy
msgid "only installation, upgrading, rmsource and rmspec may be forced"
msgstr "samo instalacija i ažuriranje mogu biti forsirane"
#: rpm.c:970
msgid "files may only be relocated during package installation"
msgstr "datoteke mogu biti premeštene samo tokom instalacije paketa"
#: rpm.c:973
msgid "only one of --prefix or --relocate may be used"
msgstr "samo jedno možete koristiti: --prefix ili --relocate"
#: rpm.c:976
#, fuzzy
msgid ""
"--relocate and --excludepath may only be used when installing new packages"
msgstr "--relocate možete koristiti samo kad instalirate novi paket"
#: rpm.c:979
msgid "--prefix may only be used when installing new packages"
msgstr "--prefix možete koristiti samo kod instalacije novog paketa"
#: rpm.c:982
msgid "arguments to --prefix must begin with a /"
msgstr "argumenti za --prefix moraju početi znakom /"
#: rpm.c:985
msgid "--hash (-h) may only be specified during package installation"
msgstr "--hash (-h) možete koristiti samo kod instalacije paketa"
#: rpm.c:989
msgid "--percent may only be specified during package installation"
msgstr "--percent možete koristiti samo kod instalacije paketa"
#: rpm.c:993
msgid "--replacefiles may only be specified during package installation"
msgstr "--replacefiles možete koristiti samo kod instalacije paketa"
#: rpm.c:997
msgid "--replacepkgs may only be specified during package installation"
msgstr "--replacepkgs možete koristiti samo kod instalacije paketa"
#: rpm.c:1001
msgid "--excludedocs may only be specified during package installation"
msgstr "--excludecocs možete koristiti samo kod instalacije paketa"
#: rpm.c:1005
msgid "--includedocs may only be specified during package installation"
msgstr "--includecocs možete koristiti samo kod instalacije paketa"
#: rpm.c:1009
msgid "only one of --excludedocs and --includedocs may be specified"
msgstr "samo jedno možete da navedete: --excludedocs ili --includedocs"
#: rpm.c:1013
msgid "--ignorearch may only be specified during package installation"
msgstr "--ignorearch možete koristiti samo kod instalacije paketa"
#: rpm.c:1017
msgid "--ignoreos may only be specified during package installation"
msgstr "--ignoreos možete koristiti samo kod instalacije paketa"
#: rpm.c:1021
#, fuzzy
msgid "--ignoresize may only be specified during package installation"
msgstr "--ignoreos možete koristiti samo kod instalacije paketa"
#: rpm.c:1025
msgid "--allmatches may only be specified during package erasure"
msgstr "--allmatches možete koristiti samo kod brisanja paketa"
#: rpm.c:1029
msgid "--allfiles may only be specified during package installation"
msgstr "--allfiles možete koristiti samo kod instalacije paketa"
#: rpm.c:1033
msgid "--justdb may only be specified during package installation and erasure"
msgstr "--justdb možete koristiti samo kod instalacije i brisanja paketa"
#: rpm.c:1038
msgid ""
"--noscripts may only be specified during package installation, erasure, and "
"verification"
msgstr ""
"--noscripsts možete koristiti samo kod instalacije, uklanjanja ili provere "
"paketa"
#: rpm.c:1042
#, fuzzy
msgid ""
"--notriggers may only be specified during package installation, erasure, and "
"verification"
msgstr ""
"--nodeps možete koristiti samo kod instalacije, uklanjanja ili provere paketa"
#: rpm.c:1046
#, fuzzy
msgid ""
"--nodeps may only be specified during package building, installation, "
"erasure, and verification"
msgstr ""
"--nodeps možete koristiti samo kod instalacije, uklanjanja ili provere paketa"
#: rpm.c:1050
msgid ""
"--test may only be specified during package installation, erasure, and "
"building"
msgstr ""
"--test možete koristiti samo kod instalacije, uklanjanja ili kreiranja paketa"
#: rpm.c:1054
msgid ""
"--root (-r) may only be specified during installation, erasure, querying, "
"and database rebuilds"
msgstr ""
"--root (-r) možete navesti samo kod instalacije, uklanjanja, upita ili "
"rekreiranja baze podataka"
#: rpm.c:1066
msgid "arguments to --root (-r) must begin with a /"
msgstr "argumenti za --root (-r) moraju početi znakom /"
#: rpm.c:1072
msgid "--oldpackage may only be used during upgrades"
msgstr "--oldpackage se može koristiti samo tokom ažuriranja paketa"
#: rpm.c:1077
msgid ""
"ftp options can only be used during package queries, installs, and upgrades"
msgstr ""
"opcije za FTP se mogu koristiti samo kod upita, instalacije ili ažuriranja "
"paketa"
#: rpm.c:1083
#, fuzzy
msgid ""
"http options can only be used during package queries, installs, and upgrades"
msgstr ""
"opcije za FTP se mogu koristiti samo kod upita, instalacije ili ažuriranja "
"paketa"
#: rpm.c:1087
msgid "--nopgp may only be used during signature checking"
msgstr "--nopgp se može koristiti samo prilikom provere potpisa"
#: rpm.c:1090
#, fuzzy
msgid "--nogpg may only be used during signature checking"
msgstr "--nopgp se može koristiti samo prilikom provere potpisa"
#: rpm.c:1093
#, fuzzy
msgid ""
"--nomd5 may only be used during signature checking and package verification"
msgstr "--nopgp se može koristiti samo kod provere potpisa ili paketa"
#: rpm.c:1121
msgid "no files to sign\n"
msgstr ""
#: rpm.c:1126
#, fuzzy, c-format
msgid "cannot access file %s\n"
msgstr "Ne mogu da otvorim datoteku %s: "
#: rpm.c:1141
#, fuzzy
msgid "pgp not found: "
msgstr "Datoteka nije pronađena na serveru"
#: rpm.c:1145
msgid "Enter pass phrase: "
msgstr ""
#: rpm.c:1147
msgid "Pass phrase check failed\n"
msgstr "Neuspela provera lozinke\n"
#: rpm.c:1150
msgid "Pass phrase is good.\n"
msgstr "Lozinka je dobra.\n"
#: rpm.c:1155
msgid "Invalid %%_signature spec in macro file.\n"
msgstr ""
#: rpm.c:1161
msgid "--sign may only be used during package building"
msgstr "--sign se može koristiti samo kod kreiranja paketa"
#: rpm.c:1176
#, fuzzy
msgid "exec failed\n"
msgstr "%s: Neuspelo otvaranje\n"
#: rpm.c:1195
msgid "unexpected arguments to --querytags "
msgstr "neočekivani argumenti za --querytags"
#: rpm.c:1206
msgid "no packages given for signature check"
msgstr "nedostaje paket za proveru potpisa"
#: rpm.c:1217
msgid "no packages given for signing"
msgstr "nedostaje paket za potpisivanje"
#: rpm.c:1229
msgid "no packages files given for rebuild"
msgstr "nedosataje paket za rekreiranje"
#: rpm.c:1292
msgid "no spec files given for build"
msgstr "nedostaje specifikacije za kreiranje"
#: rpm.c:1294
msgid "no tar files given for build"
msgstr "nedostaju 'tar' datoteke za kreiranje"
#: rpm.c:1310
msgid "no packages given for uninstall"
msgstr "neodstaje paket za deinstalaciju"
#: rpm.c:1360
msgid "no packages given for install"
msgstr "nedostaje paket za instalaciju"
#: rpm.c:1383
msgid "extra arguments given for query of all packages"
msgstr "suvišni argumenti su navedeni za upit nad svim paketima"
#: rpm.c:1388
msgid "no arguments given for query"
msgstr "nedostaju argumenti za upit"
#: rpm.c:1405
#, fuzzy
msgid "extra arguments given for verify of all packages"
msgstr "suvišni argumenti su navedeni za upit nad svim paketima"
#: rpm.c:1409
msgid "no arguments given for verify"
msgstr "nedostaju argumenti za proveru"
#: rpm2cpio.c:22
#, fuzzy, c-format
msgid "cannot open package: %s\n"
msgstr "greška: ne mogu da otvorim %s%s/packages.rpm\n"
#: rpm2cpio.c:32
msgid "argument is not an RPM package\n"
msgstr ""
#: rpm2cpio.c:36
#, fuzzy
msgid "error reading header from package\n"
msgstr "greška potrage za paketom %s\n"
#: rpm2cpio.c:43
#, fuzzy, c-format
msgid "cannot re-open payload: %s\n"
msgstr "Ne mogu da otvorim datoteku %s: "
#: build/build.c:105 build/pack.c:269
#, fuzzy
msgid "Unable to open temp file"
msgstr "Ne mogu da otvorim %s za čitanje: %s"
#: build/build.c:184
#, fuzzy, c-format
msgid "Executing(%s): %s\n"
msgstr "Pribavljam %s\n"
#: build/build.c:190
#, fuzzy, c-format
msgid "Exec of %s failed (%s): %s"
msgstr "neuspelo otvaranje %s: %s\n"
#: build/build.c:198
#, c-format
msgid "Bad exit status from %s (%s)"
msgstr ""
#: build/expression.c:207
#, fuzzy
msgid "syntax error while parsing =="
msgstr "očekivan znak ? u izrazu"
#: build/expression.c:237
#, fuzzy
msgid "syntax error while parsing &&"
msgstr "očekivan znak ? u izrazu"
#: build/expression.c:246
#, fuzzy
msgid "syntax error while parsing ||"
msgstr "očekivan znak ? u izrazu"
#: build/expression.c:288
#, fuzzy
msgid "parse error in expression"
msgstr "očekivan znak ? u izrazu"
#: build/expression.c:318
msgid "unmatched ("
msgstr ""
#: build/expression.c:336
msgid "undefined identifier"
msgstr ""
#: build/expression.c:355
msgid "- only on numbers"
msgstr ""
#: build/expression.c:371
msgid "! only on numbers"
msgstr ""
#: build/expression.c:410 build/expression.c:455 build/expression.c:512
#: build/expression.c:599
msgid "types must match"
msgstr ""
#: build/expression.c:423
msgid "* / not suported for strings"
msgstr ""
#: build/expression.c:471
msgid "- not suported for strings"
msgstr ""
#: build/expression.c:612
msgid "&& and || not suported for strings"
msgstr ""
#: build/expression.c:645 build/expression.c:692
#, fuzzy
msgid "syntax error in expression"
msgstr "očekivan znak ? u izrazu"
#: build/files.c:199
#, c-format
msgid "TIMECHECK failure: %s\n"
msgstr ""
#: build/files.c:243 build/files.c:325 build/files.c:488
#, fuzzy, c-format
msgid "Missing '(' in %s %s"
msgstr "nedostaje { posle %"
#: build/files.c:254 build/files.c:442 build/files.c:499
#, fuzzy, c-format
msgid "Missing ')' in %s(%s"
msgstr "nedostaje ':' na %s:%d"
#: build/files.c:292 build/files.c:467
#, c-format
msgid "Invalid %s token: %s"
msgstr ""
#: build/files.c:341
#, c-format
msgid "Non-white space follows %s(): %s"
msgstr ""
#: build/files.c:379
#, fuzzy, c-format
msgid "Bad syntax: %s(%s)"
msgstr "Neuspelo čitanje %s: %s."
#: build/files.c:389
#, fuzzy, c-format
msgid "Bad mode spec: %s(%s)"
msgstr "Neuspelo čitanje %s: %s."
#: build/files.c:401
#, c-format
msgid "Bad dirmode spec: %s(%s)"
msgstr ""
#: build/files.c:525
msgid "Unusual locale length: \"%.*s\" in %%lang(%s)"
msgstr ""
#: build/files.c:535
msgid "Duplicate locale %.*s in %%lang(%s)"
msgstr ""
#: build/files.c:630
msgid "Hit limit for %%docdir"
msgstr ""
#: build/files.c:636
msgid "Only one arg for %%docdir"
msgstr ""
#. We already got a file -- error
#: build/files.c:661
#, fuzzy, c-format
msgid "Two files on one line: %s"
msgstr "neuspelo otvaranje %s: %s"
#: build/files.c:674
#, fuzzy, c-format
msgid "File must begin with \"/\": %s"
msgstr "premeštanja moraju početi znakom '/'"
#: build/files.c:686
msgid "Can't mix special %%doc with other forms: %s"
msgstr ""
#: build/files.c:772
#, fuzzy, c-format
msgid "File listed twice: %s"
msgstr "Neuspelo čitanje %s: %s."
#: build/files.c:865
#, c-format
msgid "Symlink points to BuildRoot: %s -> %s"
msgstr ""
#: build/files.c:945
#, fuzzy, c-format
msgid "File doesn't match prefix (%s): %s"
msgstr "Neuspelo čitanje %s: %s."
#: build/files.c:955
#, fuzzy, c-format
msgid "File not found: %s"
msgstr "Datoteka nije pronađena na serveru"
#: build/files.c:998
#, c-format
msgid "Bad owner/group: %s\n"
msgstr ""
#: build/files.c:1012
#, fuzzy, c-format
msgid "File %4d: %07o %s.%s\t %s\n"
msgstr "neuspelo otvaranje %s: %s"
#: build/files.c:1086
#, c-format
msgid "File needs leading \"/\": %s"
msgstr ""
#: build/files.c:1154
#, fuzzy
msgid "Could not open %%files file %s: %s"
msgstr "greška: ne mogu da otvorim datoteku %s\n"
#: build/files.c:1161 build/pack.c:482
#, c-format
msgid "line: %s"
msgstr ""
#: build/files.c:1504 build/parsePrep.c:30
#, c-format
msgid "Bad owner/group: %s"
msgstr ""
#. XXX this error message is probably not seen.
#: build/files.c:1559
#, fuzzy, c-format
msgid "Couldn't exec %s: %s"
msgstr "Ne mogu da izvršim PGP"
#: build/files.c:1564
#, fuzzy, c-format
msgid "Couldn't fork %s: %s"
msgstr "Ne mogu da pročitam 'sigtarget'"
#: build/files.c:1646
#, fuzzy, c-format
msgid "%s failed"
msgstr "PGP omanuo"
#: build/files.c:1650
#, fuzzy, c-format
msgid "failed to write all data to %s"
msgstr "neuspelo kreiranje %s\n"
#: build/files.c:1739
#, c-format
msgid "Finding %s: (using %s)...\n"
msgstr ""
#: build/files.c:1767 build/files.c:1776
#, fuzzy, c-format
msgid "Failed to find %s:"
msgstr "neuspelo kreiranje %s\n"
#: build/files.c:1882
#, fuzzy, c-format
msgid "Processing files: %s-%s-%s\n"
msgstr "neuspelo otvaranje %s: %s"
#: build/names.c:41 build/names.c:73
msgid "RPMERR_INTERNAL: Hit limit in getUname()\n"
msgstr ""
#: build/names.c:106 build/names.c:138
msgid "RPMERR_INTERNAL: Hit limit in getGname()\n"
msgstr ""
#: build/names.c:176
#, c-format
msgid "Could not canonicalize hostname: %s\n"
msgstr ""
#: build/pack.c:132
#, c-format
msgid "Could not generate output filename for package %s: %s\n"
msgstr ""
#: build/pack.c:149
#, fuzzy, c-format
msgid "cannot create %s: %s\n"
msgstr "Ne mogu da otvorim datoteku %s: "
#: build/pack.c:186
#, fuzzy, c-format
msgid "readRPM: open %s: %s\n"
msgstr "neuspelo otvaranje %s: %s"
#: build/pack.c:196
#, fuzzy, c-format
msgid "readRPM: read %s: %s\n"
msgstr "Neuspelo čitanje %s: %s."
#: build/pack.c:217
#, fuzzy, c-format
msgid "readRPM: %s is not an RPM package\n"
msgstr "greška: čini se da %s nije RPM paket\n"
#: build/pack.c:223
#, fuzzy, c-format
msgid "readRPM: reading header from %s\n"
msgstr "greška kod uzimanja sloga %s iz %s"
#: build/pack.c:281
msgid "Bad CSA data"
msgstr ""
#: build/pack.c:316
#, fuzzy, c-format
msgid "Could not open %s: %s\n"
msgstr "neuspelo otvaranje %s\n"
#: build/pack.c:349
#, fuzzy, c-format
msgid "Unable to write package: %s"
msgstr "Ne mogu da upišem %s"
#: build/pack.c:364
#, fuzzy, c-format
msgid "Generating signature: %d\n"
msgstr "napravi PGP potpis"
#: build/pack.c:380
#, fuzzy, c-format
msgid "Unable to open sigtarget %s: %s"
msgstr "Ne mogu da upišem %s"
#: build/pack.c:390
#, fuzzy, c-format
msgid "Unable to read sigtarget %s: %s"
msgstr "Ne mogu da upišem %s"
#: build/pack.c:400
#, fuzzy, c-format
msgid "Unable to write package %s: %s"
msgstr "Ne mogu da upišem %s"
#: build/pack.c:415
#, c-format
msgid "Wrote: %s\n"
msgstr ""
#: build/pack.c:431
#, fuzzy, c-format
msgid "create archive failed on file %s: %s"
msgstr "neuspelo otvaranje %s: %s"
#: build/pack.c:450
#, c-format
msgid "cpio_copy write failed: %s"
msgstr ""
#: build/pack.c:457
#, fuzzy, c-format
msgid "cpio_copy read failed: %s"
msgstr "neuspelo čitanje: %s (%d)"
#: build/pack.c:537
#, fuzzy, c-format
msgid "Could not open PreIn file: %s"
msgstr "greška: ne mogu da otvorim datoteku %s\n"
#: build/pack.c:544
#, fuzzy, c-format
msgid "Could not open PreUn file: %s"
msgstr "greška: ne mogu da otvorim datoteku %s\n"
#: build/pack.c:551
#, fuzzy, c-format
msgid "Could not open PostIn file: %s"
msgstr "greška: ne mogu da otvorim datoteku %s\n"
#: build/pack.c:558
#, fuzzy, c-format
msgid "Could not open PostUn file: %s"
msgstr "greška: ne mogu da otvorim datoteku %s\n"
#: build/pack.c:566
#, c-format
msgid "Could not open VerifyScript file: %s"
msgstr ""
#: build/pack.c:581
#, c-format
msgid "Could not open Trigger script file: %s"
msgstr ""
#: build/parseBuildInstallClean.c:27
#, c-format
msgid "line %d: second %s"
msgstr ""
#: build/parseChangelog.c:103
msgid "%%changelog entries must start with *"
msgstr ""
#: build/parseChangelog.c:111
msgid "incomplete %%changelog entry"
msgstr ""
#: build/parseChangelog.c:126
msgid "bad date in %%changelog: %s"
msgstr ""
#: build/parseChangelog.c:131
msgid "%%changelog not in decending chronological order"
msgstr ""
#: build/parseChangelog.c:139 build/parseChangelog.c:150
msgid "missing name in %%changelog"
msgstr ""
#: build/parseChangelog.c:157
msgid "no description in %%changelog"
msgstr ""
#: build/parseDescription.c:33
msgid "line %d: Error parsing %%description: %s"
msgstr ""
#: build/parseDescription.c:46 build/parseFiles.c:40 build/parseScript.c:168
#, fuzzy, c-format
msgid "line %d: Bad option %s: %s"
msgstr "neuspelo otvaranje %s: %s"
#: build/parseDescription.c:59 build/parseFiles.c:53 build/parseScript.c:181
#, c-format
msgid "line %d: Too many names: %s"
msgstr ""
#: build/parseDescription.c:69 build/parseFiles.c:63 build/parseScript.c:191
#, fuzzy, c-format
msgid "line %d: Package does not exist: %s"
msgstr "paket %s nije naveden u %s"
#: build/parseDescription.c:81
#, c-format
msgid "line %d: Second description"
msgstr ""
#: build/parseFiles.c:27
msgid "line %d: Error parsing %%files: %s"
msgstr ""
#: build/parseFiles.c:71
msgid "line %d: Second %%files list"
msgstr ""
#: build/parsePreamble.c:144
#, c-format
msgid "Architecture is excluded: %s"
msgstr ""
#: build/parsePreamble.c:149
#, c-format
msgid "Architecture is not included: %s"
msgstr ""
#: build/parsePreamble.c:154
#, c-format
msgid "OS is excluded: %s"
msgstr ""
#: build/parsePreamble.c:159
#, c-format
msgid "OS is not included: %s"
msgstr ""
#: build/parsePreamble.c:173
#, c-format
msgid "%s field must be present in package: %s"
msgstr ""
#: build/parsePreamble.c:198
#, c-format
msgid "Duplicate %s entries in package: %s"
msgstr ""
#: build/parsePreamble.c:245
#, fuzzy, c-format
msgid "Unable to open icon %s: %s"
msgstr "Ne mogu da upišem %s"
#: build/parsePreamble.c:263
#, fuzzy, c-format
msgid "Unable to read icon %s: %s"
msgstr "Ne mogu da upišem %s"
#: build/parsePreamble.c:276
#, fuzzy, c-format
msgid "Unknown icon type: %s"
msgstr "(nepoznat tip)"
#: build/parsePreamble.c:338
#, c-format
msgid "line %d: Malformed tag: %s"
msgstr ""
#. Empty field
#: build/parsePreamble.c:346
#, c-format
msgid "line %d: Empty tag: %s"
msgstr ""
#: build/parsePreamble.c:369 build/parsePreamble.c:376
#, fuzzy, c-format
msgid "line %d: Illegal char '-' in %s: %s"
msgstr "neuspelo otvaranje %s: %s"
#: build/parsePreamble.c:440 build/parseSpec.c:363
#, c-format
msgid "BuildRoot can not be \"/\": %s"
msgstr ""
#: build/parsePreamble.c:453
#, c-format
msgid "line %d: Prefixes must not end with \"/\": %s"
msgstr ""
#: build/parsePreamble.c:465
#, fuzzy, c-format
msgid "line %d: Docdir must begin with '/': %s"
msgstr "premeštanja moraju početi znakom '/'"
#: build/parsePreamble.c:477
#, fuzzy, c-format
msgid "line %d: Epoch/Serial field must be a number: %s"
msgstr "pogrešan broj paketa: %s\n"
#: build/parsePreamble.c:540
#, fuzzy, c-format
msgid "line %d: Bad BuildArchitecture format: %s"
msgstr "nedostaje arhitektura za %s na %s:%d"
#: build/parsePreamble.c:550
#, c-format
msgid "Internal error: Bogus tag %d"
msgstr ""
#: build/parsePreamble.c:688
#, fuzzy, c-format
msgid "Bad package specification: %s"
msgstr " Opcije odrednice paketa:"
#: build/parsePreamble.c:694
#, c-format
msgid "Package already exists: %s"
msgstr ""
#: build/parsePreamble.c:721
#, c-format
msgid "line %d: Unknown tag: %s"
msgstr ""
#: build/parsePreamble.c:746
msgid "Spec file can't use BuildRoot"
msgstr ""
#: build/parsePrep.c:26
#, fuzzy, c-format
msgid "Bad source: %s: %s"
msgstr "Neuspelo čitanje %s: %s."
#: build/parsePrep.c:53
#, fuzzy, c-format
msgid "No patch number %d"
msgstr "(nije broj)"
#: build/parsePrep.c:134
#, c-format
msgid "No source number %d"
msgstr ""
#: build/parsePrep.c:153
#, fuzzy, c-format
msgid "Couldn't download nosource %s: %s"
msgstr "Neuspelo čitanje %s: %s."
#: build/parsePrep.c:219
msgid "Error parsing %%setup: %s"
msgstr ""
#: build/parsePrep.c:234
msgid "line %d: Bad arg to %%setup %c: %s"
msgstr ""
#: build/parsePrep.c:252
msgid "line %d: Bad %%setup option %s: %s"
msgstr ""
#: build/parsePrep.c:379
msgid "line %d: Need arg to %%patch -b: %s"
msgstr ""
#: build/parsePrep.c:387
msgid "line %d: Need arg to %%patch -z: %s"
msgstr ""
#: build/parsePrep.c:399
msgid "line %d: Need arg to %%patch -p: %s"
msgstr ""
#: build/parsePrep.c:405
msgid "line %d: Bad arg to %%patch -p: %s"
msgstr ""
#: build/parsePrep.c:412
msgid "Too many patches!"
msgstr ""
#: build/parsePrep.c:416
msgid "line %d: Bad arg to %%patch: %s"
msgstr ""
#: build/parsePrep.c:452
msgid "line %d: second %%prep"
msgstr ""
#: build/parseReqs.c:91
#, fuzzy, c-format
msgid ""
"line %d: Dependency tokens must begin with alpha-numeric, '_' or '/': %s"
msgstr "premeštanja moraju početi znakom '/'"
#: build/parseReqs.c:102
#, fuzzy, c-format
msgid "line %d: File name not permitted: %s"
msgstr "paket %s nije naveden u %s"
#: build/parseReqs.c:134
#, fuzzy, c-format
msgid "line %d: Versioned file name not permitted: %s"
msgstr "paket %s nije naveden u %s"
#: build/parseReqs.c:146
#, fuzzy, c-format
msgid "line %d: Version not permitted: %s"
msgstr "paket %s nije naveden u %s"
#: build/parseReqs.c:172
#, fuzzy, c-format
msgid "line %d: Version required: %s"
msgstr "neuspelo otvaranje %s: %s"
#: build/parseScript.c:136
#, c-format
msgid "line %d: triggers must have --: %s"
msgstr ""
#: build/parseScript.c:146 build/parseScript.c:209
#, c-format
msgid "line %d: Error parsing %s: %s"
msgstr ""
#: build/parseScript.c:156
#, c-format
msgid "line %d: script program must begin with '/': %s"
msgstr ""
#: build/parseScript.c:200
#, c-format
msgid "line %d: Second %s"
msgstr ""
#: build/parseSpec.c:129
#, fuzzy, c-format
msgid "line %d: %s"
msgstr "neuspelo otvaranje %s: %s"
#. XXX Fstrerror
#: build/parseSpec.c:178
#, fuzzy, c-format
msgid "Unable to open %s: %s\n"
msgstr "neuspelo otvaranje %s\n"
#: build/parseSpec.c:190
msgid "Unclosed %%if"
msgstr ""
#: build/parseSpec.c:249
#, c-format
msgid "%s:%d: parseExpressionBoolean returns %d"
msgstr ""
#. Got an else with no %if !
#: build/parseSpec.c:257
msgid "%s:%d: Got a %%else with no if"
msgstr ""
#. Got an end with no %if !
#: build/parseSpec.c:268
msgid "%s:%d: Got a %%endif with no if"
msgstr ""
#: build/parseSpec.c:282 build/parseSpec.c:291
msgid "malformed %%include statement"
msgstr ""
#: build/parseSpec.c:458
#, fuzzy
msgid "No buildable architectures"
msgstr "nemoj proveravati arhitekturu paketa"
#: build/parseSpec.c:505
#, fuzzy
msgid "Package has no %%description: %s"
msgstr "paket %s nije naveden u %s"
#: build/spec.c:31
#, c-format
msgid "archive = %s, fs = %s\n"
msgstr ""
#: build/spec.c:237
#, fuzzy, c-format
msgid "line %d: Bad number: %s"
msgstr "pogrešan broj paketa: %s\n"
#: build/spec.c:243
#, c-format
msgid "line %d: Bad no%s number: %d"
msgstr ""
#: build/spec.c:301
#, fuzzy, c-format
msgid "line %d: Bad %s number: %s\n"
msgstr "pogrešan broj paketa: %s\n"
#: lib/cpio.c:330
#, fuzzy, c-format
msgid "can't rename %s to %s: %s\n"
msgstr "Neuspelo čitanje %s: %s."
#: lib/cpio.c:336
#, c-format
msgid "can't unlink %s: %s\n"
msgstr ""
#: lib/cpio.c:527
#, c-format
msgid "getNextHeader: %s\n"
msgstr ""
#: lib/cpio.c:992
#, fuzzy, c-format
msgid "(error 0x%x)"
msgstr "greška: "
#: lib/cpio.c:995
msgid "Bad magic"
msgstr ""
#: lib/cpio.c:996
msgid "Bad/unreadable header"
msgstr ""
#: lib/cpio.c:1014
msgid "Header size too big"
msgstr ""
#: lib/cpio.c:1015
#, fuzzy
msgid "Unknown file type"
msgstr "(nepoznat tip)"
#: lib/cpio.c:1016
msgid "Missing hard link"
msgstr ""
#: lib/cpio.c:1017
#, fuzzy
msgid "Internal error"
msgstr "fatalna greška: "
#: lib/cpio.c:1026
#, fuzzy
msgid " failed - "
msgstr "PGP omanuo"
#: lib/dbindex.c:35
#, fuzzy, c-format
msgid "cannot open file %s: %s"
msgstr "Ne mogu da otvorim datoteku %s: "
#: lib/dbindex.c:87
#, c-format
msgid "error getting record %s from %s"
msgstr "greška kod uzimanja sloga %s iz %s"
#: lib/dbindex.c:114
#, c-format
msgid "error storing record %s into %s"
msgstr "greška zapisivanja sloga %s u %s"
#: lib/dbindex.c:121
#, c-format
msgid "error removing record %s into %s"
msgstr "greška uklanjanja sloga %s u %s"
#. XXX legacy epoch-less requires/conflicts compatibility
#: lib/depends.c:417
#, c-format
msgid ""
"the \"B\" dependency needs an epoch (assuming same as \"A\")\n"
"\tA %s\tB %s\n"
msgstr ""
#: lib/depends.c:446
#, c-format
msgid " %s A %s\tB %s\n"
msgstr ""
#: lib/depends.c:538
msgid "dbrecMatchesDepFlags() failed to read header"
msgstr ""
#: lib/depends.c:784
#, c-format
msgid "%s: %s satisfied by added file list.\n"
msgstr ""
#: lib/depends.c:823
#, fuzzy, c-format
msgid "%s: %s satisfied by added package.\n"
msgstr "datoteka %s ne pripada nijednom paketu\n"
#: lib/depends.c:840
#, c-format
msgid "%s: %s satisfied by added provide.\n"
msgstr ""
#: lib/depends.c:871
#, c-format
msgid "%s: %s satisfied by rpmrc provides.\n"
msgstr ""
#: lib/depends.c:899
#, c-format
msgid "%s: %s satisfied by db file lists.\n"
msgstr ""
#: lib/depends.c:921
#, c-format
msgid "%s: %s satisfied by db provides.\n"
msgstr ""
#: lib/depends.c:943
#, fuzzy, c-format
msgid "%s: %s satisfied by db packages.\n"
msgstr "datoteka %s ne pripada nijednom paketu\n"
#: lib/depends.c:956
#, c-format
msgid "%s: %s satisfied by rpmlib version.\n"
msgstr ""
#: lib/depends.c:966
#, c-format
msgid "%s: %s unsatisfied.\n"
msgstr ""
#. requirements are not satisfied.
#: lib/depends.c:1014
#, fuzzy, c-format
msgid "package %s require not satisfied: %s\n"
msgstr "paket %s nije naveden u %s"
#. conflicts exist.
#: lib/depends.c:1076
#, fuzzy, c-format
msgid "package %s conflicts: %s\n"
msgstr "paket %s nije naveden u %s"
#: lib/depends.c:1131 lib/depends.c:1430
#, c-format
msgid "cannot read header at %d for dependency check"
msgstr "ne mogu da pročitam zaglavlje na %s za proveru zavisnosti"
#: lib/depends.c:1226
#, c-format
msgid "loop in prerequisite chain: %s"
msgstr "petlja u lancu: %s"
#: lib/falloc.c:124
#, c-format
msgid ""
"free list corrupt (%u)- please run\n"
"\t\"rpm --rebuilddb\"\n"
"More information is available from http://www.rpm.org or the "
"rpm-list@redhat.com mailing list\n"
"if \"rpm --rebuilddb\" fails to correct the problem.\n"
msgstr ""
#: lib/formats.c:69 lib/formats.c:87 lib/formats.c:108 lib/formats.c:141
#: lib/header.c:2189 lib/header.c:2206 lib/header.c:2226
msgid "(not a number)"
msgstr "(nije broj)"
#: lib/fs.c:56
#, c-format
msgid "mntctl() failed to return fugger size: %s"
msgstr "mntctl() nije vratio 'fugger' veličinu: %s"
#: lib/fs.c:91 lib/fs.c:261
#, fuzzy, c-format
msgid "failed to stat %s: %s"
msgstr "neuspelo otvaranje %s: %s"
#: lib/fs.c:127
msgid "getting list of mounted filesystems\n"
msgstr ""
#: lib/fs.c:132
#, c-format
msgid "failed to open %s: %s"
msgstr "neuspelo otvaranje %s: %s"
#: lib/fs.c:283
#, c-format
msgid "file %s is on an unknown device"
msgstr ""
#. This should not be allowed
#: lib/header.c:218
msgid "grabData() RPM_STRING_TYPE count must be 1.\n"
msgstr ""
#: lib/header.c:249 lib/header.c:812
#, c-format
msgid "Data type %d not supported\n"
msgstr ""
#: lib/header.c:1171
#, c-format
msgid "Bad count for headerAddEntry(): %d\n"
msgstr ""
#: lib/header.c:1580
#, c-format
msgid "missing { after %"
msgstr "nedostaje { posle %"
#: lib/header.c:1608
msgid "missing } after %{"
msgstr "nedostaje } posle %"
#: lib/header.c:1620
msgid "empty tag format"
msgstr "prazan 'tag' format'"
#: lib/header.c:1630
msgid "empty tag name"
msgstr "prazno ime tag-a"
#: lib/header.c:1645
msgid "unknown tag"
msgstr "nepoznat tag"
#: lib/header.c:1671
msgid "] expected at end of array"
msgstr "] očekivano na kraju niza"
#: lib/header.c:1687
msgid "unexpected ]"
msgstr "neočekivano ]"
#: lib/header.c:1689
msgid "unexpected }"
msgstr "neočekivano }"
#: lib/header.c:1743
msgid "? expected in expression"
msgstr "očekivan znak ? u izrazu"
#: lib/header.c:1750
#, fuzzy
msgid "{ expected after ? in expression"
msgstr "{ očekivano posle ? u izrazu"
#: lib/header.c:1760 lib/header.c:1795
msgid "} expected in expression"
msgstr "} očekivano u izrazu"
#: lib/header.c:1768
msgid ": expected following ? subexpression"
msgstr "očekivano : praćeno ? podizrazom"
#: lib/header.c:1782
#, fuzzy
msgid "{ expected after : in expression"
msgstr "{ očekivano posle : u izrazu"
#: lib/header.c:1803
msgid "| expected at end of expression"
msgstr "| očekivano na kraju izraza"
#: lib/header.c:1972
msgid "(unknown type)"
msgstr "(nepoznat tip)"
#: lib/install.c:142 lib/uninstall.c:194
#, fuzzy, c-format
msgid " file: %s action: %s\n"
msgstr "neuspelo otvaranje %s: %s"
#: lib/install.c:160
#, c-format
msgid "user %s does not exist - using root"
msgstr ""
#: lib/install.c:168
#, c-format
msgid "group %s does not exist - using root"
msgstr ""
#: lib/install.c:196
msgid "%%instchangelog value in macro file should be a number, but isn't"
msgstr ""
#. this would probably be a good place to check if disk space
#. was used up - if so, we should return a different error
#: lib/install.c:362
#, c-format
msgid "unpacking of archive failed%s%s: %s"
msgstr ""
#: lib/install.c:363
msgid " on file "
msgstr ""
#: lib/install.c:406
#, fuzzy
msgid "installing a source package\n"
msgstr "instaliraj paket"
#: lib/install.c:426
#, fuzzy, c-format
msgid "cannot create sourcedir %s"
msgstr "Ne mogu da otvorim datoteku %s: "
#: lib/install.c:432 lib/install.c:462
#, fuzzy, c-format
msgid "cannot write to %s"
msgstr "Ne mogu da otvorim datoteku %s: "
#: lib/install.c:436
#, c-format
msgid "sources in: %s\n"
msgstr ""
#: lib/install.c:456
#, fuzzy, c-format
msgid "cannot create specdir %s"
msgstr "Ne mogu da otvorim datoteku %s: "
#: lib/install.c:466
#, fuzzy, c-format
msgid "spec file in: %s\n"
msgstr "neuspelo otvaranje %s: %s"
#: lib/install.c:500 lib/install.c:528
#, fuzzy
msgid "source package contains no .spec file"
msgstr "upit nad paketom koji ima <datoteku>"
#: lib/install.c:550
#, c-format
msgid "renaming %s to %s\n"
msgstr ""
#: lib/install.c:552 lib/install.c:831 lib/uninstall.c:27
#, c-format
msgid "rename of %s to %s failed: %s"
msgstr "preimenovanje %s u %s nije uspelo: %s"
#: lib/install.c:643
msgid "source package expected, binary found"
msgstr ""
#: lib/install.c:700
#, fuzzy, c-format
msgid "package: %s-%s-%s files test = %d\n"
msgstr "paket %s-%s-%s sadrži deljene datoteke\n"
#: lib/install.c:761
msgid "stopping install as we're running --test\n"
msgstr ""
#: lib/install.c:766
msgid "running preinstall script (if any)\n"
msgstr ""
#: lib/install.c:791
#, c-format
msgid "warning: %s created as %s"
msgstr ""
#: lib/install.c:827
#, c-format
msgid "warning: %s saved as %s"
msgstr ""
#: lib/install.c:901
msgid "running postinstall scripts (if any)\n"
msgstr ""
#: lib/lookup.c:35
#, c-format
msgid "cannot read header at %d for lookup"
msgstr "ne mogu da pročitam zaglavlje na %d za proveru"
#: lib/macro.c:161
#, c-format
msgid "======================== active %d empty %d\n"
msgstr ""
#. XXX just in case
#: lib/macro.c:256
#, c-format
msgid "%3d>%*s(empty)"
msgstr ""
#: lib/macro.c:291
#, c-format
msgid "%3d<%*s(empty)\n"
msgstr ""
#: lib/macro.c:470
msgid "Macro %%%s has unterminated body"
msgstr ""
#: lib/macro.c:496
msgid "Macro %%%s has illegal name (%%define)"
msgstr ""
#: lib/macro.c:502
msgid "Macro %%%s has unterminated opts"
msgstr ""
#: lib/macro.c:507
msgid "Macro %%%s has empty body"
msgstr ""
#: lib/macro.c:512
msgid "Macro %%%s failed to expand"
msgstr ""
#: lib/macro.c:537
msgid "Macro %%%s has illegal name (%%undefine)"
msgstr ""
#: lib/macro.c:614
msgid "Macro %%%s (%s) was not used below level %d"
msgstr ""
#: lib/macro.c:711
#, c-format
msgid "Unknown option %c in %s(%s)"
msgstr ""
#: lib/macro.c:891
#, c-format
msgid "Recursion depth(%d) greater than max(%d)"
msgstr ""
#: lib/macro.c:957 lib/macro.c:973
#, c-format
msgid "Unterminated %c: %s"
msgstr ""
#: lib/macro.c:1013
msgid "A %% is followed by an unparseable macro"
msgstr ""
#: lib/macro.c:1139
#, fuzzy
msgid "Macro %%%.*s not found, skipping"
msgstr "paket %s nije nađen u %s"
#: lib/macro.c:1220
msgid "Target buffer overflow"
msgstr ""
#. XXX Fstrerror
#: lib/macro.c:1400 lib/macro.c:1406
#, fuzzy, c-format
msgid "File %s: %s"
msgstr "neuspelo otvaranje %s: %s"
#: lib/macro.c:1409
#, c-format
msgid "File %s is smaller than %d bytes"
msgstr ""
#: lib/messages.c:55
msgid "warning: "
msgstr "upozorenje: "
#: lib/messages.c:64
msgid "error: "
msgstr "greška: "
#: lib/messages.c:73
msgid "fatal error: "
msgstr "fatalna greška: "
#: lib/messages.c:82
msgid "internal error (rpm bug?): "
msgstr ""
#: lib/misc.c:423 lib/misc.c:428 lib/misc.c:434
#, fuzzy, c-format
msgid "error creating temporary file %s"
msgstr "greška kod kreiranja direktorijuma %s: %s"
#: lib/oldheader.c:301
#, fuzzy, c-format
msgid "bad file state: %s"
msgstr "neuspelo otvaranje %s: %s"
#: lib/package.c:237
msgid "package is a version one package!\n"
msgstr ""
#: lib/package.c:242
msgid "old style source package -- I'll do my best\n"
msgstr ""
#: lib/package.c:245
#, c-format
msgid "archive offset is %d\n"
msgstr ""
#: lib/package.c:256
msgid "old style binary package\n"
msgstr ""
#: lib/package.c:316
msgid ""
"only packages with major numbers <= 3 are supported by this version of RPM"
msgstr "samo paketi sa glavnim brojevima <= 3 su podržani u ovoj verziji RPM-a"
#: lib/problems.c:43
#, c-format
msgid " is needed by %s-%s-%s\n"
msgstr " je potreban paketu %s-%s-%s\n"
#: lib/problems.c:46
#, c-format
msgid " conflicts with %s-%s-%s\n"
msgstr " se sudara sa %s-%s-%s\n"
#: lib/problems.c:66
#, fuzzy, c-format
msgid "package %s-%s-%s is for a different architecture"
msgstr "paket %s-%s-%s sadrži deljene datoteke\n"
#: lib/problems.c:71
#, fuzzy, c-format
msgid "package %s-%s-%s is for a different operating system"
msgstr "paket %s-%s-%s sadrži deljene datoteke\n"
#: lib/problems.c:76
#, fuzzy, c-format
msgid "package %s-%s-%s is already installed"
msgstr "paket %s nije instaliran\n"
#: lib/problems.c:81
#, fuzzy, c-format
msgid "path %s is not relocateable for package %s-%s-%s"
msgstr "paket %s nije instaliran\n"
#: lib/problems.c:86
#, c-format
msgid "file %s conflicts between attemped installs of %s-%s-%s and %s-%s-%s"
msgstr ""
#: lib/problems.c:92
#, fuzzy, c-format
msgid ""
"file %s from install of %s-%s-%s conflicts with file from package %s-%s-%s"
msgstr " se sudara sa %s-%s-%s\n"
#: lib/problems.c:98
#, fuzzy, c-format
msgid "package %s-%s-%s (which is newer than %s-%s-%s) is already installed"
msgstr "paket %s-%s-%s sadrži deljene datoteke\n"
#: lib/problems.c:104
#, c-format
msgid "installing package %s-%s-%s needs %ld%cb on the %s filesystem"
msgstr ""
#: lib/problems.c:116
#, c-format
msgid "unknown error %d encountered while manipulating package %s-%s-%s"
msgstr ""
#: lib/query.c:138
#, c-format
msgid "error in format: %s\n"
msgstr "greška u formatu: %s\n"
#: lib/query.c:181
msgid "(contains no files)"
msgstr "(nema datoteka)"
#: lib/query.c:238
msgid "normal "
msgstr ""
#: lib/query.c:240
msgid "replaced "
msgstr ""
#: lib/query.c:242
#, fuzzy
msgid "not installed "
msgstr "paket %s nije instaliran\n"
#: lib/query.c:244
msgid "net shared "
msgstr ""
#: lib/query.c:246
#, fuzzy, c-format
msgid "(unknown %3d) "
msgstr "(nepoznat tip)"
#: lib/query.c:250
msgid "(no state) "
msgstr ""
#: lib/query.c:267 lib/query.c:308
msgid "package has neither file owner or id lists"
msgstr ""
#: lib/query.c:421
#, c-format
msgid "record number %u\n"
msgstr ""
#: lib/query.c:425
msgid "error: could not read database record\n"
msgstr "greška: neuspelo čitanje sloga baze podataka\n"
#. XXX Fstrerror
#: lib/query.c:471
#, fuzzy, c-format
msgid "open of %s failed: %s\n"
msgstr "neuspelo otvaranje %s: %s\n"
#: lib/query.c:489
msgid "old format source packages cannot be queried\n"
msgstr "Upit se ne može izvesti nad izvorni paketima u starom formatu\n"
#: lib/query.c:498 lib/rpminstall.c:231
#, c-format
msgid "%s does not appear to be a RPM package\n"
msgstr "%s ne liči na RPM paket\n"
#: lib/query.c:502
#, c-format
msgid "query of %s failed\n"
msgstr "upit nad %s neuspeo\n"
#: lib/query.c:535
#, fuzzy, c-format
msgid "query of specfile %s failed, can't parse\n"
msgstr "upit nad %s neuspeo\n"
#: lib/query.c:560
msgid "could not read database record!\n"
msgstr "neuspelo čitanje sloga baze podataka!\n"
#: lib/query.c:571
#, c-format
msgid "group %s does not contain any packages\n"
msgstr "grupa %s ne sadrži nijedan paket\n"
#: lib/query.c:581
#, c-format
msgid "no package triggers %s\n"
msgstr "nijedan paket ne aktivira %s\n"
#: lib/query.c:591
#, c-format
msgid "no package requires %s\n"
msgstr "nijedan paket ne zahteva %s\n"
#: lib/query.c:602
#, c-format
msgid "no package provides %s\n"
msgstr "nijedan paket ne obezbeđuje %s\n"
#: lib/query.c:618
#, fuzzy, c-format
msgid "file %s: %s\n"
msgstr "neuspelo otvaranje %s: %s"
#: lib/query.c:621
#, c-format
msgid "file %s is not owned by any package\n"
msgstr "datoteka %s ne pripada nijednom paketu\n"
#: lib/query.c:634
#, c-format
msgid "invalid package number: %s\n"
msgstr "pogrešan broj paketa: %s\n"
#: lib/query.c:637
#, fuzzy, c-format
msgid "package record number: %d\n"
msgstr "pogrešan broj paketa: %s\n"
#: lib/query.c:640
#, c-format
msgid "record %d could not be read\n"
msgstr "ne mogu da pročitam slog %d\n"
#: lib/query.c:652 lib/rpminstall.c:435
#, c-format
msgid "package %s is not installed\n"
msgstr "paket %s nije instaliran\n"
#: lib/query.c:655
#, c-format
msgid "error looking for package %s\n"
msgstr "greška kod potrage za paketom %s\n"
#: lib/query.c:677
#, fuzzy
msgid "rpmQuery: rpmdbOpen() failed\n"
msgstr "%s: Neuspelo otvaranje\n"
#: lib/query.c:736
#, fuzzy
msgid "query package owning file"
msgstr "upit nad paketom koji ima <datoteku>"
#: lib/query.c:738
#, fuzzy
msgid "query packages in group"
msgstr "paket nema imena"
#: lib/query.c:740
#, fuzzy
msgid "query a package file"
msgstr "upit nad svim paketima"
#: lib/query.c:744
#, fuzzy
msgid "query a spec file"
msgstr "upit nad %s neuspeo\n"
#: lib/query.c:746
#, fuzzy
msgid "query the pacakges triggered by the package"
msgstr "upit nad paketom koji ima <datoteku>"
#: lib/query.c:748
#, fuzzy
msgid "query the packages which require a capability"
msgstr "upit za pakete koji zahtevaju <i> svojstvo"
#: lib/query.c:750
#, fuzzy
msgid "query the packages which provide a capability"
msgstr "upit za pakete koji omogućavaju <i> svojstvo"
#: lib/query.c:789
#, fuzzy
msgid "list all configuration files"
msgstr "prikaži samo konfiguracione datoteke (povlači -i)"
#: lib/query.c:791
#, fuzzy
msgid "list all documentation files"
msgstr "instaliraj dokumentaciju"
#: lib/query.c:793
#, fuzzy
msgid "dump basic file information"
msgstr "prikaži informacije o paketu"
#: lib/query.c:795
#, fuzzy
msgid "list files in package"
msgstr "instaliraj paket"
#: lib/query.c:799
msgid "use the following query format"
msgstr ""
#: lib/query.c:801
msgid "substitute i18n sections from the following catalogue"
msgstr ""
#: lib/query.c:804
msgid "display the states of the listed files"
msgstr ""
#: lib/query.c:806
#, fuzzy
msgid "display a verbose file listing"
msgstr "prikaži listu datoteka u paketu"
#: lib/rebuilddb.c:20
#, fuzzy, c-format
msgid "rebuilding database in rootdir %s\n"
msgstr "rekreiraj bazu podataka iz postojeće baze"
#: lib/rebuilddb.c:24 lib/rpmdb.c:249
msgid "no dbpath has been set"
msgstr "dbpath nije određen"
#: lib/rebuilddb.c:34
#, c-format
msgid "temporary database %s already exists"
msgstr "privremena baza podataka %s već postoji"
#: lib/rebuilddb.c:38
#, fuzzy, c-format
msgid "creating directory: %s\n"
msgstr "greška kod kreiranja direktorijuma %s: %s"
#: lib/rebuilddb.c:40
#, c-format
msgid "error creating directory %s: %s"
msgstr "greška kod kreiranja direktorijuma %s: %s"
#: lib/rebuilddb.c:44
msgid "opening old database\n"
msgstr ""
#: lib/rebuilddb.c:51
msgid "opening new database\n"
msgstr ""
#: lib/rebuilddb.c:61 lib/rebuilddb.c:79
#, c-format
msgid "record number %d in database is bad -- skipping it"
msgstr "slog broj %d u bazi podataka je neispravan -- preskačem ga"
#: lib/rebuilddb.c:73
#, c-format
msgid "cannot add record originally at %d"
msgstr "ne mogu da dodam slog originalno na %d"
#: lib/rebuilddb.c:92
msgid "failed to rebuild database; original database remains in place\n"
msgstr ""
#: lib/rebuilddb.c:100
msgid "failed to replace old database with new database!\n"
msgstr ""
#: lib/rebuilddb.c:102
#, c-format
msgid "replaces files in %s with files from %s to recover"
msgstr ""
#: lib/rebuilddb.c:108
#, fuzzy, c-format
msgid "failed to remove directory %s: %s\n"
msgstr "neuspelo otvaranje %s: %s"
#: lib/rpmchecksig.c:31
#, fuzzy, c-format
msgid "%s: open failed: %s\n"
msgstr "%s: Neuspelo otvaranje\n"
#: lib/rpmchecksig.c:42
#, fuzzy
msgid "makeTempFile failed\n"
msgstr "%s: Neuspelo otvaranje\n"
#: lib/rpmchecksig.c:74
#, fuzzy, c-format
msgid "%s: Fwrite failed: %s\n"
msgstr "%s: Neuspeo 'readLead'\n"
#: lib/rpmchecksig.c:80
#, fuzzy, c-format
msgid "%s: Fread failed: %s\n"
msgstr "%s: Neuspeo 'readLead'\n"
#: lib/rpmchecksig.c:113 lib/rpmchecksig.c:243
#, c-format
msgid "%s: readLead failed\n"
msgstr "%s: Neuspeo 'readLead'\n"
#: lib/rpmchecksig.c:118
#, c-format
msgid "%s: Can't sign v1.0 RPM\n"
msgstr "%s: Ne mogu da potpišem v1.0 RPM\n"
#: lib/rpmchecksig.c:122
#, c-format
msgid "%s: Can't re-sign v2.0 RPM\n"
msgstr "%s: Ne mogu da ponovo potpišem v2.0 RPM\n"
#: lib/rpmchecksig.c:130 lib/rpmchecksig.c:257
#, c-format
msgid "%s: rpmReadSignature failed\n"
msgstr "%s: Neuspelo 'rpmReadSignature'\n"
#: lib/rpmchecksig.c:134 lib/rpmchecksig.c:262
#, c-format
msgid "%s: No signature available\n"
msgstr "%s: Potpis nije na raspolaganju\n"
#: lib/rpmchecksig.c:167
#, fuzzy, c-format
msgid "%s: writeLead failed: %s\n"
msgstr "%s: Neuspeo 'readLead'\n"
#: lib/rpmchecksig.c:173
#, fuzzy, c-format
msgid "%s: rpmWriteSignature failed: %s\n"
msgstr "%s: Neuspelo 'rpmReadSignature'\n"
#: lib/rpmchecksig.c:249
#, c-format
msgid "%s: No signature available (v1.0 RPM)\n"
msgstr "%s: Potpis nije na raspolaganju (RPM v1.0)\n"
#: lib/rpmchecksig.c:412
msgid "NOT OK"
msgstr ""
#: lib/rpmchecksig.c:413 lib/rpmchecksig.c:427
#, fuzzy
msgid " (MISSING KEYS:"
msgstr " (NEDOSTAJUĆI KLJUČEVI)"
#: lib/rpmchecksig.c:415 lib/rpmchecksig.c:429
msgid ") "
msgstr ""
#: lib/rpmchecksig.c:416 lib/rpmchecksig.c:430
msgid " (UNTRUSTED KEYS:"
msgstr ""
#: lib/rpmchecksig.c:418 lib/rpmchecksig.c:432
msgid ")"
msgstr ""
#: lib/rpmchecksig.c:426
msgid "OK"
msgstr ""
#: lib/rpmdb.c:147
#, fuzzy, c-format
msgid "opening database mode 0x%x in %s\n"
msgstr "rekreiraj bazu podataka iz postojeće baze"
#: lib/rpmdb.c:157 lib/url.c:442
#, fuzzy, c-format
msgid "failed to open %s: %s\n"
msgstr "neuspelo otvaranje %s: %s"
#: lib/rpmdb.c:171 lib/rpmdb.c:179
#, c-format
msgid "cannot get %s lock on database"
msgstr "ne mogu da dobijem %s zaključavanje baze podataka"
#: lib/rpmdb.c:172
msgid "exclusive"
msgstr "ekskluzivno"
#: lib/rpmdb.c:180
msgid "shared"
msgstr "deljeno"
#: lib/rpmdb.c:211
msgid ""
"old format database is present; use --rebuilddb to generate a new format "
"database"
msgstr ""
#: lib/rpmdb.c:469
#, c-format
msgid "package %s not listed in %s"
msgstr "paket %s nije naveden u %s"
#: lib/rpmdb.c:480
#, c-format
msgid "package %s not found in %s"
msgstr "paket %s nije nađen u %s"
#: lib/rpmdb.c:504 lib/uninstall.c:86
#, c-format
msgid "cannot read header at %d for uninstall"
msgstr "ne mogu da pročitam zaglavlje na %d za deinstalaciju"
#: lib/rpmdb.c:512
msgid "package has no name"
msgstr "paket nema imena"
#: lib/rpmdb.c:514
msgid "removing name index\n"
msgstr ""
#: lib/rpmdb.c:519
#, fuzzy
msgid "package has no group\n"
msgstr "paket nema imena"
#: lib/rpmdb.c:521
msgid "removing group index\n"
msgstr ""
#: lib/rpmdb.c:528
#, fuzzy, c-format
msgid "removing provides index for %s\n"
msgstr "greška uklanjanja sloga %s u %s"
#: lib/rpmdb.c:543
#, fuzzy, c-format
msgid "removing requiredby index for %s\n"
msgstr "greška uklanjanja sloga %s u %s"
#: lib/rpmdb.c:555
#, fuzzy, c-format
msgid "removing trigger index for %s\n"
msgstr "greška uklanjanja sloga %s u %s"
#: lib/rpmdb.c:566
#, c-format
msgid "removing conflict index for %s\n"
msgstr ""
#: lib/rpmdb.c:577
#, c-format
msgid "removing file index for %s\n"
msgstr ""
#: lib/rpmdb.c:586
#, fuzzy
msgid "package has no files\n"
msgstr "paket nema imena"
#: lib/rpmdb.c:692
msgid "cannot allocate space for database"
msgstr "ne mogu da zauzmem prostor za bazu podataka"
#: lib/rpmdb.c:751
#, c-format
msgid "cannot read header at %d for update"
msgstr "ne mogu da pročitam zaglavlje na %d za ažuriranje"
#: lib/rpmdb.c:764
msgid "header changed size!"
msgstr ""
#: lib/rpminstall.c:126
#, fuzzy
msgid "counting packages to install\n"
msgstr "nedostaje paket za instalaciju"
#: lib/rpminstall.c:130
#, fuzzy, c-format
msgid "found %d packages\n"
msgstr "upit nad svim paketima"
#: lib/rpminstall.c:135
#, fuzzy
msgid "looking for packages to download\n"
msgstr "greška kod potrage za paketom %s\n"
#: lib/rpminstall.c:150
#, fuzzy, c-format
msgid "skipping %s - rpmGlob failed(%d)\n"
msgstr "greška: preskačem %s - neuspelo prenošenje - %s\n"
#: lib/rpminstall.c:165
#, c-format
msgid "Retrieving %s\n"
msgstr "Pribavljam %s\n"
#. XXX undefined %{name}/%{version}/%{release} here
#. XXX %{_tmpdir} does not exist
#: lib/rpminstall.c:175
#, c-format
msgid " ... as %s\n"
msgstr ""
#: lib/rpminstall.c:179
#, fuzzy, c-format
msgid "skipping %s - transfer failed - %s\n"
msgstr "greška: preskačem %s - neuspelo prenošenje - %s\n"
#: lib/rpminstall.c:206
#, c-format
msgid "retrieved %d packages\n"
msgstr ""
#: lib/rpminstall.c:217 lib/rpminstall.c:360
#, fuzzy, c-format
msgid "cannot open file %s: %s\n"
msgstr "Ne mogu da otvorim datoteku %s: "
#: lib/rpminstall.c:235 lib/rpminstall.c:512
#, fuzzy, c-format
msgid "%s cannot be installed\n"
msgstr "greška: %s se ne može instalirati\n"
#: lib/rpminstall.c:270
#, fuzzy, c-format
msgid "package %s is not relocateable\n"
msgstr "paket %s nije instaliran\n"
#: lib/rpminstall.c:289
#, fuzzy, c-format
msgid "error reading from file %s\n"
msgstr "greška kod kreiranja direktorijuma %s: %s"
#: lib/rpminstall.c:294
#, c-format
msgid "file %s requires a newer version of RPM\n"
msgstr ""
#: lib/rpminstall.c:311
#, fuzzy, c-format
msgid "found %d source and %d binary packages\n"
msgstr "grupa %s ne sadrži nijedan paket\n"
#: lib/rpminstall.c:322
msgid "failed dependencies:\n"
msgstr "loše međuzavisnosti:\n"
#: lib/rpminstall.c:340
#, fuzzy
msgid "installing binary packages\n"
msgstr "instaliraj paket"
#: lib/rpminstall.c:439
#, fuzzy, c-format
msgid "searching for package %s\n"
msgstr "greška potrage za paketom %s\n"
#: lib/rpminstall.c:448
#, c-format
msgid "\"%s\" specifies multiple packages\n"
msgstr "\"%s\" određuje više paketa\n"
#: lib/rpminstall.c:474
msgid "removing these packages would break dependencies:\n"
msgstr "uklanjanje oviha paketa će narušiti zavisnosti:\n"
#: lib/rpminstall.c:501
#, fuzzy, c-format
msgid "cannot open %s: %s\n"
msgstr "greška: ne mogu da otvorim %s\n"
#: lib/rpminstall.c:507
#, c-format
msgid "Installing %s\n"
msgstr "Instaliram %s\n"
#: lib/rpmio.c:769
msgid "Success"
msgstr ""
#: lib/rpmio.c:772
#, fuzzy
msgid "Bad server response"
msgstr "Loš odgovor FTP servera"
#: lib/rpmio.c:775
#, fuzzy
msgid "Server IO error"
msgstr "Ulazno/izlazna FTP greška"
#: lib/rpmio.c:778
#, fuzzy
msgid "Server timeout"
msgstr "Tajm-aut FTP servera"
#: lib/rpmio.c:781
#, fuzzy
msgid "Unable to lookup server host address"
msgstr "Ne mogu da odredim host adresu FTP servera"
#: lib/rpmio.c:784
#, fuzzy
msgid "Unable to lookup server host name"
msgstr "Ne mogu da odredim ime FTP hosta"
#: lib/rpmio.c:787
#, fuzzy
msgid "Failed to connect to server"
msgstr "Ne mogu da se povežem sa FTP serverom"
#: lib/rpmio.c:790
#, fuzzy
msgid "Failed to establish data connection to server"
msgstr "Ne mogu da uspostavim vezu podataka sa FTP serverom"
#: lib/rpmio.c:793
msgid "IO error to local file"
msgstr "Ulazno/izlazna greška kod lokalne datoteke"
#: lib/rpmio.c:796
msgid "Error setting remote server to passive mode"
msgstr "Greška kod stavljanja udaljenog servera u pasivni režim"
#: lib/rpmio.c:799
msgid "File not found on server"
msgstr "Datoteka nije pronađena na serveru"
#: lib/rpmio.c:802
msgid "Abort in progress"
msgstr ""
#: lib/rpmio.c:806
#, fuzzy
msgid "Unknown or unexpected error"
msgstr "Neočekivana ili nepoznata FTP greška"
#: lib/rpmio.c:1339
#, c-format
msgid "logging into %s as %s, pw %s\n"
msgstr ""
#: lib/rpmlead.c:48
#, c-format
msgid "read failed: %s (%d)"
msgstr "neuspelo čitanje: %s (%d)"
#: lib/rpmrc.c:144
#, c-format
msgid "missing second ':' at %s:%d"
msgstr "nedostaje drugo ':' na %s:%d"
#: lib/rpmrc.c:147
#, c-format
msgid "missing architecture name at %s:%d"
msgstr "nedostaje ime arhitekture na %s:%d"
#: lib/rpmrc.c:307
#, c-format
msgid "Incomplete data line at %s:%d"
msgstr "Nepotpuna linija podataka na %s:%d"
#: lib/rpmrc.c:311
#, c-format
msgid "Too many args in data line at %s:%d"
msgstr "Premnogo argumenata u liniji podataka na %s:%d"
#: lib/rpmrc.c:318
#, c-format
msgid "Bad arch/os number: %s (%s:%d)"
msgstr "Loš broj arhitekture/oper.sist.: %s (%s:%d)"
#: lib/rpmrc.c:353
#, c-format
msgid "Incomplete default line at %s:%d"
msgstr "Nepotpuna podrazumevana linija na %s:%d"
#: lib/rpmrc.c:358
#, c-format
msgid "Too many args in default line at %s:%d"
msgstr "Premnogo argumenata u podrazumevanoj liniji na %s:%d"
#: lib/rpmrc.c:547
#, c-format
msgid "Cannot expand %s"
msgstr ""
#: lib/rpmrc.c:562
#, c-format
msgid "Unable to open %s for reading: %s."
msgstr "Ne mogu da otvorim %s za čitanje: %s"
#. XXX Feof(fd)
#: lib/rpmrc.c:607
#, c-format
msgid "Failed to read %s: %s."
msgstr "Neuspelo čitanje %s: %s."
#: lib/rpmrc.c:644
#, fuzzy, c-format
msgid "missing ':' (found 0x%02x) at %s:%d"
msgstr "nedostaje ':' na %s:%d"
#: lib/rpmrc.c:661 lib/rpmrc.c:735
#, c-format
msgid "missing argument for %s at %s:%d"
msgstr "nedostaje argument za %s na %s:%d"
#: lib/rpmrc.c:678 lib/rpmrc.c:700
#, fuzzy, c-format
msgid "%s expansion failed at %s:%d \"%s\""
msgstr "neuspelo otvaranje %s: %s"
#: lib/rpmrc.c:687
#, fuzzy, c-format
msgid "cannot open %s at %s:%d: %s"
msgstr "Ne mogu da otvorim datoteku %s: "
#: lib/rpmrc.c:727
#, c-format
msgid "missing architecture for %s at %s:%d"
msgstr "nedostaje arhitektura za %s na %s:%d"
#: lib/rpmrc.c:794
#, c-format
msgid "bad option '%s' at %s:%d"
msgstr "loša opcija '%s' na %s:%d"
#: lib/rpmrc.c:1162
#, c-format
msgid "Unknown system: %s\n"
msgstr ""
#: lib/rpmrc.c:1163
msgid "Please contact rpm-list@redhat.com\n"
msgstr ""
#: lib/signature.c:107
#, c-format
msgid "sigsize : %d\n"
msgstr ""
#: lib/signature.c:108
#, c-format
msgid "Header + Archive: %d\n"
msgstr ""
#: lib/signature.c:109
#, c-format
msgid "expected size : %d\n"
msgstr ""
#: lib/signature.c:113
msgid "file is not regular -- skipping size check\n"
msgstr ""
#: lib/signature.c:135
#, fuzzy
msgid "No signature\n"
msgstr "%s: Potpis nije na raspolaganju\n"
#: lib/signature.c:138
#, fuzzy
msgid "Old PGP signature\n"
msgstr "napravi PGP potpis"
#: lib/signature.c:150
msgid "Old (internal-only) signature! How did you get that!?"
msgstr "Stari (interni) potpis! Odakle vam!?"
#: lib/signature.c:154
#, fuzzy
msgid "New Header signature\n"
msgstr "ne mogu da pročitam potpis"
#. 8-byte pad
#: lib/signature.c:161 lib/signature.c:203
#, c-format
msgid "Signature size: %d\n"
msgstr ""
#: lib/signature.c:162 lib/signature.c:204
#, c-format
msgid "Signature pad : %d\n"
msgstr ""
#: lib/signature.c:267
#, fuzzy, c-format
msgid "Couldn't exec pgp (%s)"
msgstr "Ne mogu da izvršim PGP"
#: lib/signature.c:278
msgid "pgp failed"
msgstr "PGP omanuo"
#. PGP failed to write signature
#. Just in case
#: lib/signature.c:285
msgid "pgp failed to write signature"
msgstr "PGP nije uspeo da zapiše potpis"
#: lib/signature.c:290
#, c-format
msgid "PGP sig size: %d\n"
msgstr ""
#: lib/signature.c:301 lib/signature.c:378
msgid "unable to read the signature"
msgstr "ne mogu da pročitam potpis"
#: lib/signature.c:306
#, c-format
msgid "Got %d bytes of PGP sig\n"
msgstr ""
#: lib/signature.c:344 lib/signature.c:687
#, fuzzy
msgid "Couldn't exec gpg"
msgstr "Ne mogu da izvršim PGP"
#: lib/signature.c:355
#, fuzzy
msgid "gpg failed"
msgstr "PGP omanuo"
#. GPG failed to write signature
#. Just in case
#: lib/signature.c:362
#, fuzzy
msgid "gpg failed to write signature"
msgstr "PGP nije uspeo da zapiše potpis"
#: lib/signature.c:367
#, c-format
msgid "GPG sig size: %d\n"
msgstr ""
#: lib/signature.c:383
#, c-format
msgid "Got %d bytes of GPG sig\n"
msgstr ""
#: lib/signature.c:410
#, fuzzy
msgid "Generating signature using PGP.\n"
msgstr "napravi PGP potpis"
#: lib/signature.c:416
#, fuzzy
msgid "Generating signature using GPG.\n"
msgstr "napravi PGP potpis"
#: lib/signature.c:493 lib/signature.c:555
msgid "Could not run pgp. Use --nopgp to skip PGP checks."
msgstr "Ne mogu da pokrenem pgp. Koristite --nopgp da preskočite PGP proveru."
#: lib/signature.c:553 lib/signature.c:626
#, fuzzy
msgid "exec failed!\n"
msgstr "%s: Neuspelo otvaranje\n"
#: lib/signature.c:628
#, fuzzy
msgid "Could not run gpg. Use --nogpg to skip GPG checks."
msgstr "Ne mogu da pokrenem pgp. Koristite --nopgp da preskočite PGP proveru."
#: lib/signature.c:716
msgid "Couldn't exec pgp"
msgstr "Ne mogu da izvršim PGP"
#. @notreached@
#. This case should have been screened out long ago.
#: lib/signature.c:720 lib/signature.c:773
msgid "Invalid %%_signature spec in macro file"
msgstr ""
#: lib/signature.c:753
#, fuzzy
msgid "You must set \"%%_gpg_name\" in your macro file"
msgstr "Morate podesiti \"pgp_name:\" u vašoj rpmrc datoteci"
#: lib/signature.c:765
#, fuzzy
msgid "You must set \"%%_pgp_name\" in your macro file"
msgstr "Morate podesiti \"pgp_name:\" u vašoj rpmrc datoteci"
#: lib/transaction.c:389
#, fuzzy, c-format
msgid "excluding file %s%s\n"
msgstr "Pribavljam %s\n"
#: lib/transaction.c:415 lib/transaction.c:499
#, fuzzy, c-format
msgid "excluding directory %s\n"
msgstr "greška kod kreiranja direktorijuma %s: %s"
#: lib/transaction.c:420
#, c-format
msgid "relocating %s to %s\n"
msgstr ""
#: lib/transaction.c:492
#, fuzzy, c-format
msgid "relocating directory %s to %s\n"
msgstr "greška kod kreiranja direktorijuma %s: %s"
#: lib/transaction.c:643
#, c-format
msgid "%s skipped due to missingok flag\n"
msgstr ""
#: lib/uninstall.c:38
#, c-format
msgid "cannot remove %s - directory not empty"
msgstr "ne mogu da uklonim %s - direktorijum nije prazan"
#: lib/uninstall.c:41
#, c-format
msgid "rmdir of %s failed: %s"
msgstr "neuspela komanda rmdir %s: %s"
#: lib/uninstall.c:49
#, c-format
msgid "removal of %s failed: %s"
msgstr "uklanjanje %s nije uspelo: %s"
#: lib/uninstall.c:98
#, fuzzy, c-format
msgid "cannot read packages named %s for uninstall"
msgstr "ne mogu da pročitam zaglavlje na %d za deinstalaciju"
#: lib/uninstall.c:131
#, c-format
msgid "will remove files test = %d\n"
msgstr ""
#: lib/uninstall.c:208
msgid "running postuninstall script (if any)\n"
msgstr ""
#: lib/uninstall.c:222
msgid "removing database entry\n"
msgstr ""
#: lib/uninstall.c:400
msgid "execution of script failed"
msgstr "neuspelo izvršavanje skripta"
#: lib/url.c:85
#, c-format
msgid "warning: u %p ctrl %p nrefs != 0 (%s %s)\n"
msgstr ""
#: lib/url.c:102
#, c-format
msgid "warning: u %p data %p nrefs != 0 (%s %s)\n"
msgstr ""
#: lib/url.c:129
#, c-format
msgid "warning: uCache[%d] %p nrefs(%d) != 1 (%s %s)\n"
msgstr ""
#: lib/url.c:215
#, c-format
msgid "Password for %s@%s: "
msgstr "Lozinka za %s@%s: "
#: lib/url.c:240 lib/url.c:266
#, fuzzy, c-format
msgid "error: %sport must be a number\n"
msgstr "greška: FTP port mora biti broj\n"
#: lib/url.c:402
#, fuzzy
msgid "url port must be a number\n"
msgstr "greška: FTP port mora biti broj\n"
#. XXX Fstrerror
#: lib/url.c:459
#, fuzzy, c-format
msgid "failed to create %s: %s\n"
msgstr "neuspelo kreiranje %s\n"
#: lib/verify.c:38
#, fuzzy
msgid "don't verify files in package"
msgstr "instaliraj paket"
#: lib/verify.c:213
msgid "package lacks both user name and id lists (this should never happen)"
msgstr ""
#: lib/verify.c:231
msgid "package lacks both group name and id lists (this should never happen)"
msgstr ""
#: lib/verify.c:266
#, fuzzy, c-format
msgid "missing %s\n"
msgstr "nedostaje { posle %"
#: lib/verify.c:328
#, c-format
msgid "Unsatisfied dependencies for %s-%s-%s: "
msgstr "Nezadovoljene međuzavisnosti za %s-%s-%s: "
#: lib/verify.c:376
#, fuzzy
msgid "rpmVerify: rpmdbOpen() failed\n"
msgstr "%s: Neuspelo otvaranje\n"
#, fuzzy
#~ msgid "File not found by glob: %s"
#~ msgstr "Datoteka nije pronađena na serveru"
#, fuzzy
#~ msgid "cannot create %s"
#~ msgstr "Ne mogu da otvorim datoteku %s: "
#, fuzzy
#~ msgid "Unable to stat icon: %s"
#~ msgstr "Ne mogu da upišem %s"
#~ msgid "failed to open %s\n"
#~ msgstr "neuspelo otvaranje %s\n"
#, fuzzy
#~ msgid "%s: fdWrite failed: %s\n"
#~ msgstr "%s: Neuspelo otvaranje\n"
#, fuzzy
#~ msgid "failed build prerequisites:\n"
#~ msgstr "loše međuzavisnosti:\n"
#~ msgid "Couldn't read the header/archive"
#~ msgstr "Ne mogu da pročitam zaglavlje/arhivu"
#~ msgid "Couldn't write header/archive to temp file"
#~ msgstr "Ne mogu da upišem zaglavlje/arhivu u privremenu datoteku"
#~ msgid "Couldn't read sigtarget"
#~ msgstr "Ne mogu da pročitam 'sigtarget'"
#~ msgid "Couldn't write package"
#~ msgstr "Ne mogu da upišem paket"
#~ msgid "Unable to write %s"
#~ msgstr "Ne mogu da upišem %s"
#~ msgid "unexpected query specifiers"
#~ msgstr "neočekivani parametri upita"
#~ msgid "--nofiles may only be specified during package verification"
#~ msgstr "--nofiles možete koristiti samo kod provere paketa"
#~ msgid "--clean may only be used with -b and -t"
#~ msgstr "--clean se može koristiti samo sa -b ili -t"
#~ msgid "--rmsource may only be used with -b and -t"
#~ msgstr "--rmsource se može koristiti samo sa -b ili -t"
#~ msgid "--short-circuit may only be used during package building"
#~ msgstr "--short-circuit se može koristiti samo tokom kreiranja paketa"
#, fuzzy
#~ msgid "--short-circuit may only be used with -bc, -bi, -bs, -tc -ti, or -ts"
#~ msgstr "--short-circuit se može koristiti samo sa -bc, -bi, -tc ili -ti"
#, fuzzy
#~ msgid "pgp version 5 not found: "
#~ msgstr "Datoteka nije pronađena na serveru"
#~ msgid "showing package: %d\n"
#~ msgstr "prikazivanje paketa: %d\n"
#, fuzzy
#~ msgid "--prefix is broke, use --relocate /oldpath=/newpath instead"
#~ msgstr "premesti datoteke iz <starog-puta> u <novi-put>"
#~ msgid "error: cannot open file %s\n"
#~ msgstr "greška: ne mogu da otvorim datoteku %s\n"
#~ msgid "error: %s does not appear to be a RPM package\n"
#~ msgstr "greška: čini se da %s nije RPM paket\n"
#, fuzzy
#~ msgid "counting packages to uninstall\n"
#~ msgstr "neodstaje paket za deinstalaciju"
#, fuzzy
#~ msgid "found %d packages to uninstall\n"
#~ msgstr "neodstaje paket za deinstalaciju"
#, fuzzy
#~ msgid "cpio failed on file %s: %d"
#~ msgstr "neuspelo otvaranje %s: %s"
#, fuzzy
#~ msgid "error %d reading header: %s\n"
#~ msgstr "greška kod kreiranja direktorijuma %s: %s"
#, fuzzy
#~ msgid "not installing %s -- linguas\n"
#~ msgstr "Instaliram %s\n"
#, fuzzy
#~ msgid "package %s is now obsolete and will be removed\n"
#~ msgstr "paket %s nije instaliran\n"
#~ msgid "package %s-%s-%s contain shared files\n"
#~ msgstr "paket %s-%s-%s sadrži deljene datoteke\n"
#, fuzzy
#~ msgid "package %s contains no files"
#~ msgstr "paket %s-%s-%s sadrži deljene datoteke\n"
#, fuzzy
#~ msgid "file %s is shared\n"
#~ msgstr "neuspelo otvaranje %s: %s"
#, fuzzy
#~ msgid "no macroname for setenv %s:%d"
#~ msgstr "nedostaje argument za %s na %s:%d"
#, fuzzy
#~ msgid "keeping %s\n"
#~ msgstr "Pribavljam %s\n"
#~ msgid "one type of query may be performed at a time"
#~ msgstr "jedna vrsta upita može biti urađena odjednom"
#~ msgid "--dump may only be used during queries"
#~ msgstr "--dump se može koristiti samo kod upita"
#~ msgid "--dump of queries must be used with -l, -c, or -d"
#~ msgstr "--dump kod upita se mora koristiti sa -l, -c ili -d"
#~ msgid "(none)"
#~ msgstr "(ništa, nijedan)"
#, fuzzy
#~ msgid " --help\t\t- print this message"
#~ msgstr "štampaj ovu poruku"
#, fuzzy
#~ msgid " --version\t- print the version of rpm being used"
#~ msgstr "napiši verziju rpm-a koja se koristi"
#, fuzzy
#~ msgid " -v\t\t - be a little more verbose"
#~ msgstr "budi malko pričljiviji"
#, fuzzy
#~ msgid " -vv\t - be incredibly verbose (for debugging)"
#~ msgstr "budi neverovatno pričljiv (zbog nalaženja grešaka)"
#, fuzzy
#~ msgid " -q - query mode"
#~ msgstr "\t\t\t[--badreloc] datoteka1.rpm ... datotekaN.rpm"
#, fuzzy
#~ msgid " --queryformat <s> - use s as the header format (implies -i)"
#~ msgstr "koristi s kao format zaglavlja (povlači -i)"
#, fuzzy
#~ msgid " -a - query all packages"
#~ msgstr "\t\t\t paket1 ...paketN"
#, fuzzy
#~ msgid " -f <file>+ - query package owning <file>"
#~ msgstr "upit nad paketom koji ima <datoteku>"
#, fuzzy
#~ msgid " -F - like -f, but read file names from stdin"
#~ msgstr "\t\t\t[--badreloc] datoteka1.rpm ... datotekaN.rpm"
#, fuzzy
#~ msgid ""
#~ " -p <packagefile>+ - query (uninstalled) package <packagefile>"
#~ msgstr "upit za (deinstaliran) paket <paketdatoteka>"
#, fuzzy
#~ msgid ""
#~ " -P - like -p, but read package names from stdin"
#~ msgstr "\t\t\t paket1 ...paketN"
#, fuzzy
#~ msgid ""
#~ "\t --whatprovides <i> - query packages which provide <i> capability"
#~ msgstr "upit za pakete koji omogućavaju <i> svojstvo"
#, fuzzy
#~ msgid ""
#~ "\t --whatrequires <i> - query packages which require <i> capability"
#~ msgstr "upit za pakete koji zahtevaju <i> svojstvo"
#, fuzzy
#~ msgid " -i - display package information"
#~ msgstr "\t\t\t paket1 ...paketN"
#, fuzzy
#~ msgid " -l - display package file list"
#~ msgstr "\t\t\t paket1 ...paketN"
#, fuzzy
#~ msgid " -s - show file states (implies -l)"
#~ msgstr "prikaži stanja datoteka (povlači -i)"
#, fuzzy
#~ msgid ""
#~ " -d - list only documentation files (implies -l)"
#~ msgstr "prikaži samo datoteke iz dokumentacije (povlači -i)"
#, fuzzy
#~ msgid ""
#~ " -c - list only configuration files (implies -l)"
#~ msgstr "prikaži samo konfiguracione datoteke (povlači -i)"
#, fuzzy
#~ msgid " (must be used with -l, -c, or -d)"
#~ msgstr "--dump kod upita se mora koristiti sa -l, -c ili -d"
#, fuzzy
#~ msgid " --provides - list capabilbities package provides"
#~ msgstr "pokaži koja svojstva donosi paket"
#, fuzzy
#~ msgid " -R - list package dependencies"
#~ msgstr "\t\t\t paket1 ...paketN"
#, fuzzy
#~ msgid " --scripts - print the various [un]install scripts"
#~ msgstr "ispiši razne skriptove za [de]instalaciju"
#, fuzzy
#~ msgid ""
#~ " --querytags - list the tags that can be used in a query format"
#~ msgstr "ispiši tag-ove koji mogu biti korišćeni u formatu upita"
#, fuzzy
#~ msgid "only one type of query may be performed at a time"
#~ msgstr "jedna vrsta upita može biti urađena odjednom"
#, fuzzy
#~ msgid ""
#~ "--noscripts may only be specified during package installation and "
#~ "uninstallation"
#~ msgstr ""
#~ "--noscripsts možete koristiti samo kod instalacije, uklanjanja ili provere "
#~ "paketa"
#, fuzzy
#~ msgid ""
#~ "--nodeps may only be specified during package installation, uninstallation, "
#~ "and verification"
#~ msgstr ""
#~ "--nodeps možete koristiti samo kod instalacije, uklanjanja ili provere paketa"
#, fuzzy
#~ msgid ""
#~ "--test may only be specified during package installation, uninstallation, "
#~ "and building"
#~ msgstr ""
#~ "--test možete koristiti samo kod instalacije, uklanjanja ili kreiranja paketa"
#, fuzzy
#~ msgid ""
#~ "--root (-r) may only be specified during installation, uninstallation, "
#~ "querying, and database rebuilds"
#~ msgstr ""
#~ "--root (-r) možete navesti samo kod instalacije, uklanjanja, upita ili "
#~ "rekreiranja baze podataka"
#, fuzzy
#~ msgid "--clean may only be used during package building"
#~ msgstr "--sign se može koristiti samo kod kreiranja paketa"
#, fuzzy
#~ msgid "--short-circuit may only be used with -bc or -bi"
#~ msgstr "--short-circuit se može koristiti samo sa -bc, -bi, -tc ili -ti"
#, fuzzy
#~ msgid "--dump may only be used during queryies"
#~ msgstr "--dump se može koristiti samo kod upita"
#~ msgid "build the packages for architecture <arch>"
#~ msgstr "napravi pakete za arhitekturu <arh>"
#~ msgid "build the packages for ositecture <os>"
#~ msgstr "napravi pakete za operativni sistem <os>"
#~ msgid "cannot read database record at %d"
#~ msgstr "ne mogu da pročitam slog baze podataka na %d"
|