~ubuntu-branches/ubuntu/quantal/kde-l10n-ro/quantal

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
4559
4560
4561
4562
4563
4564
4565
4566
4567
4568
4569
4570
4571
4572
4573
4574
4575
4576
4577
4578
4579
4580
4581
4582
4583
4584
4585
4586
4587
4588
4589
4590
4591
4592
4593
4594
4595
4596
4597
4598
4599
4600
4601
4602
4603
4604
4605
4606
4607
4608
4609
4610
4611
4612
4613
4614
4615
4616
4617
4618
4619
4620
4621
4622
4623
4624
4625
4626
4627
4628
4629
4630
4631
4632
4633
4634
4635
4636
4637
4638
4639
4640
4641
4642
4643
4644
4645
4646
4647
4648
4649
4650
4651
4652
4653
4654
4655
4656
4657
4658
4659
4660
4661
4662
4663
4664
4665
4666
4667
4668
4669
4670
4671
4672
4673
4674
4675
4676
4677
4678
4679
4680
4681
4682
4683
4684
4685
4686
4687
4688
4689
4690
4691
4692
4693
4694
4695
4696
4697
4698
4699
4700
4701
4702
4703
4704
4705
4706
4707
4708
4709
4710
4711
4712
4713
4714
4715
4716
4717
4718
4719
4720
4721
4722
4723
4724
4725
4726
4727
4728
4729
4730
4731
4732
4733
4734
4735
4736
4737
4738
4739
4740
4741
4742
4743
4744
4745
4746
4747
4748
4749
4750
4751
4752
4753
4754
4755
4756
4757
4758
4759
4760
4761
4762
4763
4764
4765
4766
4767
4768
4769
4770
4771
4772
4773
4774
4775
4776
4777
4778
4779
4780
4781
4782
4783
4784
4785
4786
4787
4788
4789
4790
4791
4792
4793
4794
4795
4796
4797
4798
4799
4800
4801
4802
4803
4804
4805
4806
4807
4808
4809
4810
4811
4812
4813
4814
4815
4816
4817
4818
4819
4820
4821
4822
4823
4824
4825
4826
4827
4828
4829
4830
4831
4832
4833
4834
4835
4836
4837
4838
4839
4840
4841
4842
4843
4844
4845
4846
4847
4848
4849
4850
4851
4852
4853
4854
4855
4856
4857
4858
4859
4860
4861
4862
4863
4864
4865
4866
4867
4868
4869
4870
4871
4872
4873
4874
4875
4876
4877
4878
4879
4880
4881
4882
4883
4884
4885
4886
4887
4888
4889
4890
4891
4892
4893
4894
4895
4896
4897
4898
4899
4900
4901
4902
4903
4904
4905
4906
4907
4908
4909
4910
4911
4912
4913
4914
4915
4916
4917
4918
4919
4920
4921
4922
4923
4924
4925
4926
4927
4928
4929
4930
4931
4932
4933
4934
4935
4936
4937
4938
4939
4940
4941
4942
4943
4944
4945
4946
4947
4948
4949
4950
4951
4952
4953
4954
4955
4956
4957
4958
4959
4960
4961
4962
4963
4964
4965
4966
4967
4968
4969
4970
4971
4972
4973
4974
4975
4976
4977
4978
4979
4980
4981
4982
4983
4984
4985
4986
4987
4988
4989
4990
4991
4992
4993
4994
4995
4996
4997
4998
4999
5000
5001
5002
5003
5004
5005
5006
5007
5008
5009
5010
5011
5012
5013
5014
5015
5016
5017
5018
5019
5020
5021
5022
5023
5024
5025
5026
5027
5028
5029
5030
5031
5032
5033
5034
5035
5036
5037
5038
5039
5040
5041
5042
5043
5044
5045
5046
5047
5048
5049
5050
5051
5052
5053
5054
5055
5056
5057
5058
5059
5060
5061
5062
5063
5064
5065
5066
5067
5068
5069
5070
5071
5072
5073
5074
5075
5076
5077
5078
5079
5080
5081
5082
5083
5084
5085
5086
5087
5088
5089
5090
5091
5092
5093
5094
5095
5096
5097
5098
5099
5100
5101
5102
5103
5104
5105
5106
5107
5108
5109
5110
5111
5112
5113
5114
5115
5116
5117
5118
5119
5120
5121
5122
5123
5124
5125
5126
5127
5128
5129
5130
5131
5132
5133
5134
5135
5136
5137
5138
5139
5140
5141
5142
5143
5144
5145
5146
5147
5148
5149
5150
5151
5152
5153
5154
5155
5156
5157
5158
5159
5160
5161
5162
5163
5164
5165
5166
5167
5168
5169
5170
5171
5172
5173
5174
5175
5176
5177
5178
5179
5180
5181
5182
5183
5184
5185
5186
5187
5188
5189
5190
5191
5192
5193
5194
5195
5196
5197
5198
5199
5200
5201
5202
5203
5204
5205
5206
5207
5208
5209
5210
5211
5212
5213
5214
5215
5216
5217
5218
5219
5220
5221
5222
5223
5224
5225
5226
5227
5228
5229
5230
5231
5232
5233
5234
5235
5236
5237
5238
5239
5240
5241
5242
5243
5244
5245
5246
5247
5248
5249
5250
5251
5252
5253
5254
5255
5256
5257
5258
5259
5260
5261
5262
5263
5264
5265
5266
5267
5268
5269
5270
5271
5272
5273
5274
5275
5276
5277
5278
5279
5280
5281
5282
5283
5284
5285
5286
5287
5288
5289
5290
5291
5292
5293
5294
5295
5296
5297
5298
5299
5300
5301
5302
5303
5304
5305
5306
5307
5308
5309
5310
5311
5312
5313
5314
5315
5316
5317
5318
5319
5320
5321
5322
5323
5324
5325
5326
5327
5328
5329
5330
5331
5332
5333
5334
5335
5336
5337
5338
5339
5340
5341
5342
5343
5344
5345
5346
5347
5348
5349
5350
5351
5352
5353
5354
5355
5356
5357
5358
5359
5360
5361
5362
5363
5364
5365
5366
5367
5368
5369
5370
5371
5372
5373
5374
5375
5376
5377
5378
5379
5380
5381
5382
5383
5384
5385
5386
5387
5388
5389
5390
5391
5392
5393
5394
5395
5396
5397
5398
# Traducerea kget.po în Română
# Copyright (C) 2008 This_file_is_part_of_KDE
# This file is distributed under the same license as the PACKAGE package.
#
# Sergiu Bivol <sergiu-bivol@mail.md>, 2008.
# Sergiu Bivol <sergiu@ase.md>, 2008, 2009.
msgid ""
msgstr ""
"Project-Id-Version: kget\n"
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
"POT-Creation-Date: 2010-12-11 02:15+0100\n"
"PO-Revision-Date: 2009-04-26 16:36+0300\n"
"Last-Translator: Sergiu Bivol <sergiu@ase.md>\n"
"Language-Team: Romanian <kde-i18n-ro@lists.kde.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: Plural-Forms: nplurals=3; plural=n==1 ? 0 : (n==0 || (n%100 > "
"0 && n%100 < 20)) ? 1 : 2;\n"
"X-Generator: Lokalize 0.3\n"

#: conf/pluginselector.cpp:26 conf/preferencesdialog.cpp:82
msgid "Plugins"
msgstr "Module"

#: conf/transfersgrouptree.cpp:110 conf/transfersgrouptree.cpp:115
msgid "New Group"
msgstr "Grup nou"

#: conf/preferencesdialog.cpp:49
msgid "Xml"
msgstr "Xml"

#: conf/preferencesdialog.cpp:51
msgid "Sqlite"
msgstr "Sqlite"

#: conf/preferencesdialog.cpp:54
msgid "Nepomuk"
msgstr ""

#: conf/preferencesdialog.cpp:58
#, fuzzy
#| msgid "Turn off the computer"
msgid "Turn Off Computer"
msgstr "Închide calculatorul"

#: conf/preferencesdialog.cpp:59
#, fuzzy
#| msgid "Turn off the computer"
msgid "Hibernate Computer"
msgstr "Închide calculatorul"

#: conf/preferencesdialog.cpp:60
#, fuzzy
#| msgid "Turn off the computer"
msgid "Suspend Computer"
msgstr "Închide calculatorul"

#: conf/preferencesdialog.cpp:75
msgid "Appearance"
msgstr "Aspect"

#: conf/preferencesdialog.cpp:75
msgid "Change appearance settings"
msgstr "Modifică configurările de aspect"

#: conf/preferencesdialog.cpp:76
msgid "Groups"
msgstr "Grupuri"

#: conf/preferencesdialog.cpp:76
msgid "Manage the groups"
msgstr "Gestionează grupurile"

#. i18n: file: transfer-plugins/bittorrent/btsettingswidget.ui:23
#. i18n: ectx: property (title), widget (QGroupBox, networkGroupBox)
#: conf/preferencesdialog.cpp:77 rc.cpp:454
msgid "Network"
msgstr "Rețea"

#: conf/preferencesdialog.cpp:77
msgid "Network and Downloads"
msgstr "Rețea și descărcări"

#: conf/preferencesdialog.cpp:78
#, fuzzy
#| msgid "Webinterface"
msgid "Web Interface"
msgstr "Interfață web"

#: conf/preferencesdialog.cpp:78
msgid "Control KGet over a Network or the Internet"
msgstr ""

#: conf/preferencesdialog.cpp:79
#, fuzzy
#| msgid "Destination"
msgid "Verification"
msgstr "Destinație"

#: conf/preferencesdialog.cpp:80
#, fuzzy
#| msgid "Interesting"
msgctxt "integration of KGet with other applications"
msgid "Integration"
msgstr "Interesant"

#: conf/preferencesdialog.cpp:81
msgctxt "Advanced Options"
msgid "Advanced"
msgstr "Avansate"

#: conf/preferencesdialog.cpp:81
msgid "Advanced Options"
msgstr "Opțiuni avansate"

#: conf/preferencesdialog.cpp:82
msgid "Transfer Plugins"
msgstr "Module de transfer"

#: conf/integrationpreferences.cpp:32
#, fuzzy
#| msgid "Excluded:"
msgid "Include"
msgstr "Excluse:"

#: conf/integrationpreferences.cpp:33
#, fuzzy
#| msgid "Excluded:"
msgid "Exclude"
msgstr "Excluse:"

#: conf/integrationpreferences.cpp:35 conf/autopastemodel.cpp:209
msgid "Escape sequences"
msgstr ""

#: conf/integrationpreferences.cpp:36 conf/autopastemodel.cpp:209
#, fuzzy
#| msgid "Regular expression:"
msgid "Regular expression"
msgstr "Expresie regulată:"

#: conf/autopastemodel.cpp:174
msgid "Pattern"
msgstr ""

#: conf/autopastemodel.cpp:176
msgid "Syntax"
msgstr ""

#: core/kget.h:366 ui/tray.cpp:41 main.cpp:123 mainwindow.cpp:91
#: mainwindow.cpp:470
msgid "KGet"
msgstr "KGet"

#: core/transfergrouphandler.cpp:97
#, kde-format
msgid "1 Item"
msgid_plural "%1 Items"
msgstr[0] "1 element"
msgstr[1] "%1 elemente"
msgstr[2] "%1 de elemente"

#: core/transfergrouphandler.cpp:113 core/transferhandler.cpp:150
#: ui/transferdetails.cpp:100
#, kde-format
msgid "%1/s"
msgstr "%1/s"

#: core/transfergrouphandler.cpp:169
msgctxt "start transfergroup downloads"
msgid "Start"
msgstr "Pornește"

#: core/transfergrouphandler.cpp:175
msgctxt "stop transfergroup downloads"
msgid "Stop"
msgstr "Oprește"

#: core/kgetglobaljob.cpp:56
#, fuzzy, kde-format
#| msgid "KGet - Download Manager"
msgid "KGet is downloading %1 file"
msgid_plural "KGet is downloading %1 files"
msgstr[0] "KGet - Gestionar descărcări"
msgstr[1] "KGet - Gestionar descărcări"
msgstr[2] "KGet - Gestionar descărcări"

#: core/linkimporter.cpp:90
#, kde-format
msgid "Error trying to get %1"
msgstr ""

#: core/kget.cpp:121
#, fuzzy, kde-format
#| msgid ""
#| "Are you sure that you want to remove\n"
#| "the group named %1?"
msgid "Are you sure that you want to remove the group named %1?"
msgstr ""
"Sigur doriți să eliminați grupul\n"
"cu denumirea %1?"

#: core/kget.cpp:122
#, fuzzy
#| msgid "Rename Group"
msgid "Remove Group"
msgstr "Redenumește grupul"

#: core/kget.cpp:146
#, fuzzy
#| msgid ""
#| "Are you sure that you want to remove\n"
#| "the group named %1?"
msgid "Are you sure that you want to remove the following groups?"
msgstr ""
"Sigur doriți să eliminați grupul\n"
"cu denumirea %1?"

#: core/kget.cpp:148
#, fuzzy
#| msgid "Rename Group"
msgid "Remove groups"
msgstr "Redenumește grupul"

#: core/kget.cpp:256
#, kde-format
msgid ""
"<p>The following transfer has been added to the download list:</p><p style="
"\"font-size: small;\">\\%1</p>"
msgstr ""

#: core/kget.cpp:257 core/kget.cpp:353
#, fuzzy
#| msgid "Downloaded"
msgid "Download added"
msgstr "Descărcat"

#: core/kget.cpp:348
msgid "<p>The following transfer has been added to the download list:</p>"
msgstr ""

#: core/kget.cpp:350
msgid "<p>The following transfers have been added to the download list:</p>"
msgstr ""

#: core/kget.cpp:576
#, kde-format
msgid ""
"The file %1 already exists.\n"
"Overwrite?"
msgstr ""
"Fișierul %1 există deja.\n"
"Îl suprascrieți?"

#: core/kget.cpp:577
msgid "Overwrite existing file?"
msgstr "Suprascrieți fișierul existent?"

#: core/kget.cpp:590 ui/metalinkcreator/metalinkcreator.cpp:173
#, kde-format
msgid "Unable to save to: %1"
msgstr "Imposibil de salvat în: %1"

#: core/kget.cpp:834 ui/contextmenu.cpp:141
msgid "My Downloads"
msgstr "Descărcările mele"

#: core/kget.cpp:898
msgid ""
"<p>The following URL cannot be downloaded, its protocol is not supported by "
"KGet:</p>"
msgid_plural ""
"<p>The following URLs cannot be downloaded, their protocols are not "
"supported by KGet:</p>"
msgstr[0] ""
msgstr[1] ""
msgstr[2] ""

#: core/kget.cpp:908
msgid "Protocol unsupported"
msgstr ""

#. i18n: file: ui/newtransferwidget.ui:17
#. i18n: ectx: property (text), widget (KTitleWidget, titleWidget)
#: core/kget.cpp:962 ui/newtransferdialog.cpp:48 rc.cpp:911
msgid "New Download"
msgstr "Descărcare nouă"

#: core/kget.cpp:962
msgid "Enter URL:"
msgstr "Introduceți URL:"

#: core/kget.cpp:999
msgid "Save As"
msgstr ""

#: core/kget.cpp:1012 core/urlchecker.cpp:320
#, kde-format
msgid ""
"Malformed URL:\n"
"%1"
msgstr ""
"URL eronat\n"
"%1"

#: core/kget.cpp:1019 core/urlchecker.cpp:322
#, kde-format
msgid ""
"Malformed URL, protocol missing:\n"
"%1"
msgstr ""
"URL eronat, protocolul lipsește:\n"
"%1"

#: core/kget.cpp:1030 core/urlchecker.cpp:378
#, kde-format
msgid ""
"You have already completed a download from the location: \n"
"\n"
"%1\n"
"\n"
"Download it again?"
msgstr ""

#: core/kget.cpp:1031 core/urlchecker.cpp:589
#, fuzzy
#| msgid "Download again"
msgid "Download it again?"
msgstr "Descarcă din nou"

#: core/kget.cpp:1043 core/urlchecker.cpp:380
#, kde-format
msgid ""
"You have a download in progress from the location: \n"
"\n"
"%1\n"
"\n"
"Delete it and download again?"
msgstr ""

#: core/kget.cpp:1044 core/urlchecker.cpp:586
#, fuzzy
#| msgid "Download again"
msgid "Delete it and download again?"
msgstr "Descarcă din nou"

#: core/kget.cpp:1067 core/kget.cpp:1074
msgid "Directory is not writable"
msgstr "Directorul nu este inscriptibil"

#: core/kget.cpp:1102
msgid ""
"You have already downloaded that file from another location.\n"
"\n"
"Download and delete the previous one?"
msgstr ""

#: core/kget.cpp:1103 core/urlchecker.cpp:598
#, fuzzy
#| msgid ""
#| "URL already saved:\n"
#| "%1\n"
#| "Download again?"
msgid "File already downloaded. Download anyway?"
msgstr ""
"URL salvat deja:\n"
"%1\n"
"Descărcați din nou?"

#: core/kget.cpp:1112
#, fuzzy
#| msgid "You are already downloading the torrent %1"
msgid "You are already downloading the same file"
msgstr "Acest torent se descarcă deja %1"

#: core/kget.cpp:1116 core/kget.cpp:1119 core/urlchecker.cpp:601
#: core/urlchecker.cpp:702 transfer-plugins/metalink/metalink.cpp:735
#, fuzzy
#| msgid ""
#| "The file %1 already exists.\n"
#| "Overwrite?"
msgid "File already exists"
msgstr ""
"Fișierul %1 există deja.\n"
"Îl suprascrieți?"

#: core/kget.cpp:1220
#, kde-format
msgid "Plugin loader could not load the plugin: %1."
msgstr ""

#: core/kget.cpp:1238
#, kde-format
msgid ""
"Not deleting\n"
"%1\n"
"as it is a directory."
msgstr ""

#: core/kget.cpp:1248
#, kde-format
msgid ""
"Not deleting\n"
"%1\n"
"as it is not a local file."
msgstr ""

#: core/kget.cpp:1351
#, kde-format
msgid ""
"<p>The following file has finished downloading:</p><p style=\"font-size: "
"small;\">\\%1</p>"
msgstr ""

#: core/kget.cpp:1352
msgid "Download completed"
msgstr "Descărcare completă"

#: core/kget.cpp:1355
#, kde-format
msgid ""
"<p>The following transfer has been started:</p><p style=\"font-size: small;"
"\">\\%1</p>"
msgstr ""

#: core/kget.cpp:1356
#, fuzzy
#| msgid "Downloaded"
msgid "Download started"
msgstr "Descărcat"

#: core/kget.cpp:1358 core/datasourcefactory.cpp:286
#: core/datasourcefactory.cpp:612 transfer-plugins/metalink/metalink.cpp:201
#: ui/metalinkcreator/metalinkcreator.cpp:156
#: ui/metalinkcreator/metalinkcreator.cpp:173
msgid "Error"
msgstr "Eroare"

#: core/kget.cpp:1358
#, kde-format
msgid ""
"<p>There has been an error in the following transfer:</p><p style=\"font-"
"size: small;\">\\%1</p><p>The error message is:</p><p style=\"font-size: "
"small;\">\\%2</p>"
msgstr ""

#: core/kget.cpp:1363
#, fuzzy
#| msgctxt "@action:button"
#| msgid "Remove"
msgid "Resolve"
msgstr "Elimină"

#: core/kget.cpp:1411
#, fuzzy
#| msgid "KGet quits now because all downloads have been completed."
msgid "KGet is now closing, as all downloads have completed."
msgstr "KGet se închide acum deoarece toate descărcările s-au încheiat."

#: core/kget.cpp:1415
#, fuzzy
#| msgid ""
#| "The computer will turn off now because all downloads have been completed."
msgid "The computer will now turn off, as all downloads have completed."
msgstr ""
"Calculatorul se va opri acum deoarece toate descărcările s-au încheiat."

#: core/kget.cpp:1415
#, fuzzy
#| msgid "Auto shutdown"
msgctxt "Shutting down computer"
msgid "Shutdown"
msgstr "Închidere automată"

#: core/kget.cpp:1418
#, fuzzy
#| msgid ""
#| "The computer will turn off now because all downloads have been completed."
msgid "The computer will now suspend to disk, as all downloads have completed."
msgstr ""
"Calculatorul se va opri acum deoarece toate descărcările s-au încheiat."

#: core/kget.cpp:1418
msgctxt "Hibernating computer"
msgid "Hibernating"
msgstr ""

#: core/kget.cpp:1421
#, fuzzy
#| msgid ""
#| "The computer will turn off now because all downloads have been completed."
msgid "The computer will now suspend to RAM, as all downloads have completed."
msgstr ""
"Calculatorul se va opri acum deoarece toate descărcările s-au încheiat."

#: core/kget.cpp:1421
#, fuzzy
#| msgctxt "Preview pending"
#| msgid "Pending"
msgctxt "Suspending computer"
msgid "Suspending"
msgstr "În așteptare"

#: core/kget.cpp:1429
#, fuzzy
#| msgid "Aborted"
msgctxt "abort the proposed action"
msgid "Abort"
msgstr "Abandonat"

#: core/kget.cpp:1439
msgid "<p>All transfers have been finished.</p>"
msgstr ""

#: core/kget.cpp:1440
#, fuzzy
#| msgid "Download completed"
msgid "Downloads completed"
msgstr "Descărcare completă"

#: core/filemodel.cpp:280
#, fuzzy
#| msgid "File"
msgctxt "file in a filesystem"
msgid "File"
msgstr "Fișier"

#: core/filemodel.cpp:280
#, fuzzy
#| msgid "Status"
msgctxt "status of the download"
msgid "Status"
msgstr "Stare"

#: core/filemodel.cpp:280
#, fuzzy
#| msgid "Size"
msgctxt "size of the download"
msgid "Size"
msgstr "Dimensiune"

#: core/filemodel.cpp:280
msgctxt "checksum of a file"
msgid "Checksum"
msgstr ""

#: core/filemodel.cpp:280
msgctxt "signature of a file"
msgid "Signature"
msgstr ""

#: core/kgetkjobadapter.cpp:43
#, fuzzy
#| msgid "KGet Transfer List"
msgid "KGet Transfer"
msgstr "Lista de transferuri KGet"

#: core/verifier.cpp:412
#, fuzzy
#| msgctxt "list header: type of file"
#| msgid "File Type"
msgctxt "the type of the hash, e.g. MD5"
msgid "Type"
msgstr "Tip fișier"

#: core/verifier.cpp:414
msgctxt "the used hash for verification"
msgid "Hash"
msgstr ""

#: core/verifier.cpp:416
msgctxt "verification-result of a file, can be true/false"
msgid "Verified"
msgstr ""

#: core/verifier.cpp:1188
msgid "The key to verify the signature is missing, do you want to download it?"
msgstr ""

#: core/verifier.cpp:1206
#, kde-format
msgid ""
"The signature could not be verified for %1. See transfer settings for more "
"information."
msgstr ""

#: core/verifier.cpp:1207
msgid "Signature not verified"
msgstr ""

#: core/verifier.cpp:1312
msgid ""
"No server for downloading keys is specified in settings. Downloading aborted."
msgstr ""

#: core/verifier.cpp:1313 core/verifier.cpp:1333
msgid "No key server"
msgstr ""

#: core/verifier.cpp:1332
msgid ""
"No useful key server found, key not downloaded. Add more servers to the "
"settings or restart KGet and retry downloading."
msgstr ""

#: core/datasourcefactory.cpp:286
msgid "Filesize is larger than maximum file size supported by VFAT."
msgstr ""

#: core/datasourcefactory.cpp:612
#, kde-format
msgctxt "A mirror is removed when the file has the wrong download size"
msgid "%1 removed as it did report a wrong file size."
msgstr ""

#: core/transferhandler.cpp:137
#: transfer-plugins/bittorrent/btdetailswidget.cpp:27
#: transfer-plugins/bittorrent/btdetailswidget.cpp:28
#: transfer-plugins/bittorrent/btdetailswidget.cpp:29
#: transfer-plugins/bittorrent/btdetailswidget.cpp:30
#: transfer-plugins/bittorrent/btdetailswidget.cpp:31
#: transfer-plugins/bittorrent/btdetailswidget.cpp:32
#: transfer-plugins/bittorrent/btdetailswidget.cpp:33
#: transfer-plugins/bittorrent/btdetailswidget.cpp:34
#: transfer-plugins/bittorrent/btdetailswidget.cpp:59
#: transfer-plugins/bittorrent/btdetailswidget.cpp:60
#: transfer-plugins/bittorrent/btdetailswidget.cpp:63
#: transfer-plugins/bittorrent/btdetailswidget.cpp:64
#: transfer-plugins/bittorrent/btdetailswidget.cpp:67
#: transfer-plugins/bittorrent/btdetailswidget.cpp:70
#: transfer-plugins/bittorrent/btdetailswidget.cpp:73
#: transfer-plugins/bittorrent/btdetailswidget.cpp:76
#: ui/transfersviewdelegate.cpp:396
msgctxt "not available"
msgid "n/a"
msgstr "indisponibil"

#: core/transferhandler.cpp:145 ui/transferdetails.cpp:95
msgid "Stalled"
msgstr "Împotmolit"

#: core/transfer.cpp:37
#, fuzzy
#| msgid "Downloading..."
msgid "Downloading...."
msgstr "Descărcare..."

#: core/transfer.cpp:38
msgctxt "transfer state: delayed"
msgid "Delayed"
msgstr "Amînat"

#: core/transfer.cpp:39 core/transfer.cpp:267 core/transfer.cpp:286
#: transfer-plugins/contentfetch/contentfetch.cpp:69
#: transfer-plugins/mmsclient/mmsTransfer.cpp:48
#: transfer-plugins/bittorrent/bttransfer.cpp:298
#: transfer-plugins/mms/mmsTransfer.cpp:52
msgctxt "transfer state: stopped"
msgid "Stopped"
msgstr "Oprit"

#: core/transfer.cpp:40
msgctxt "transfer state: aborted"
msgid "Aborted"
msgstr "Abandonat"

#: core/transfer.cpp:41 transfer-plugins/bittorrent/bttransfer.cpp:216
#: transfer-plugins/bittorrent/bttransfer.cpp:294
msgctxt "transfer state: finished"
msgid "Finished"
msgstr "Încheiat"

#: core/transfer.cpp:43 transfer-plugins/bittorrent/bttransfer.cpp:160
#, fuzzy
#| msgid "Open Destination"
msgctxt "changing the destination of the file"
msgid "Changing destination"
msgstr "Deschide destinația"

#: core/transfertreemodel.cpp:644
msgctxt "name of download"
msgid "Name"
msgstr "Denumire"

#: core/transfertreemodel.cpp:646
msgctxt "status of download"
msgid "Status"
msgstr "Stare"

#: core/transfertreemodel.cpp:648
msgctxt "size of download"
msgid "Size"
msgstr "Dimensiune"

#: core/transfertreemodel.cpp:650
msgctxt "progress of download"
msgid "Progress"
msgstr "Progres"

#: core/transfertreemodel.cpp:652
msgctxt "speed of download"
msgid "Speed"
msgstr "Viteză"

#: core/transfertreemodel.cpp:654
msgctxt "remaining time of download"
msgid "Remaining Time"
msgstr "Timp rămas"

#: core/urlchecker.cpp:254 core/urlchecker.cpp:294
msgid "No download directory specified."
msgstr ""

#: core/urlchecker.cpp:256
msgid "Invalid download directory specified."
msgstr ""

#: core/urlchecker.cpp:258
#, fuzzy
#| msgid "Directory is not writable"
msgid "Download directory is not writeable."
msgstr "Directorul nu este inscriptibil"

#: core/urlchecker.cpp:266 core/urlchecker.cpp:306
#, fuzzy
#| msgid "Destination:"
msgid "No download destination specified."
msgstr "Destinație:"

#: core/urlchecker.cpp:268
#, fuzzy
#| msgid "Destination:"
msgid "Invalid download destination specified."
msgstr "Destinație:"

#: core/urlchecker.cpp:270
#, fuzzy
#| msgid "Destination:"
msgid "Download destination is not writeable."
msgstr "Destinație:"

#: core/urlchecker.cpp:278 core/urlchecker.cpp:318 core/urlchecker.cpp:408
#: core/urlchecker.cpp:422
msgid "No URL specified."
msgstr ""

#: core/urlchecker.cpp:280
#: transfer-plugins/bittorrent/advanceddetails/trackerview.cpp:94
#: transfer-plugins/bittorrent/bttransfer.cpp:256
msgid "Malformed URL."
msgstr "URL invalid."

#: core/urlchecker.cpp:282
#, fuzzy
#| msgid ""
#| "Malformed URL, protocol missing:\n"
#| "%1"
msgid "Malformed URL, protocol missing."
msgstr ""
"URL eronat, protocolul lipsește:\n"
"%1"

#: core/urlchecker.cpp:284
#, fuzzy
#| msgid ""
#| "Malformed URL, protocol missing:\n"
#| "%1"
msgid "Malformed URL, host missing."
msgstr ""
"URL eronat, protocolul lipsește:\n"
"%1"

#: core/urlchecker.cpp:296
#, kde-format
msgid ""
"Invalid download directory specified:\n"
"%1"
msgstr ""

#: core/urlchecker.cpp:298
#, fuzzy, kde-format
#| msgid "Directory is not writable"
msgid ""
"Download directory is not writeable:\n"
"%1"
msgstr "Directorul nu este inscriptibil"

#: core/urlchecker.cpp:308
#, fuzzy, kde-format
#| msgid "Destination:"
msgid ""
"Invalid download destination specified:\n"
"%1"
msgstr "Destinație:"

#: core/urlchecker.cpp:310
#, fuzzy, kde-format
#| msgid "Destination:"
msgid ""
"Download destination is not writeable:\n"
"%1"
msgstr "Destinație:"

#: core/urlchecker.cpp:324
#, fuzzy, kde-format
#| msgid ""
#| "Malformed URL, protocol missing:\n"
#| "%1"
msgid ""
"Malformed URL, host missing:\n"
"%1"
msgstr ""
"URL eronat, protocolul lipsește:\n"
"%1"

#: core/urlchecker.cpp:340 core/urlchecker.cpp:352
#, fuzzy
#| msgid ""
#| "The file %1 already exists.\n"
#| "Overwrite?"
msgid "File already exists. Overwrite it?"
msgstr ""
"Fișierul %1 există deja.\n"
"Îl suprascrieți?"

#: core/urlchecker.cpp:342 core/urlchecker.cpp:368
msgid ""
"You have already downloaded that file from another location.\n"
"Download and delete the previous one?"
msgstr ""

#: core/urlchecker.cpp:344 core/urlchecker.cpp:370
msgid ""
"You are already downloading that file from another location.\n"
"Download and delete the previous one?"
msgstr ""

#: core/urlchecker.cpp:354
msgid ""
"You have already completed a download from that location. Download it again?"
msgstr ""

#: core/urlchecker.cpp:356
msgid ""
"You have a download in progress from that location.\n"
"Delete it and download again?"
msgstr ""

#: core/urlchecker.cpp:366
#, fuzzy, kde-format
#| msgid ""
#| "The file %1 already exists.\n"
#| "Overwrite?"
msgid ""
"File already exists:\n"
"%1\n"
"Overwrite it?"
msgstr ""
"Fișierul %1 există deja.\n"
"Îl suprascrieți?"

#: core/urlchecker.cpp:410
#, fuzzy
#| msgid "Malformed URL."
msgid "Malformed URLs."
msgstr "URL invalid."

#: core/urlchecker.cpp:412
#, fuzzy
#| msgid ""
#| "Malformed URL, protocol missing:\n"
#| "%1"
msgid "Malformed URLs, protocol missing."
msgstr ""
"URL eronat, protocolul lipsește:\n"
"%1"

#: core/urlchecker.cpp:414
#, fuzzy
#| msgid ""
#| "Malformed URL, protocol missing:\n"
#| "%1"
msgid "Malformed URLs, host missing."
msgstr ""
"URL eronat, protocolul lipsește:\n"
"%1"

#: core/urlchecker.cpp:424
#, fuzzy, kde-format
#| msgid ""
#| "Malformed URL:\n"
#| "%1"
msgid ""
"Malformed URLs:\n"
"%1"
msgstr ""
"URL eronat\n"
"%1"

#: core/urlchecker.cpp:426
#, fuzzy, kde-format
#| msgid ""
#| "Malformed URL, protocol missing:\n"
#| "%1"
msgid ""
"Malformed URLs, protocol missing:\n"
"%1"
msgstr ""
"URL eronat, protocolul lipsește:\n"
"%1"

#: core/urlchecker.cpp:428
#, fuzzy, kde-format
#| msgid ""
#| "Malformed URL, protocol missing:\n"
#| "%1"
msgid ""
"Malformed URLs, host missing:\n"
"%1"
msgstr ""
"URL eronat, protocolul lipsește:\n"
"%1"

#: core/urlchecker.cpp:430
#, fuzzy, kde-format
#| msgid "Directory is not writable"
msgid ""
"Destinations are not writable:\n"
"%1"
msgstr "Directorul nu este inscriptibil"

#: core/urlchecker.cpp:454
#, fuzzy
#| msgid ""
#| "The file %1 already exists.\n"
#| "Overwrite?"
msgid "Files exist already. Overwrite them?"
msgstr ""
"Fișierul %1 există deja.\n"
"Îl suprascrieți?"

#: core/urlchecker.cpp:456
msgid ""
"You have already completed downloads at those destinations. Download them "
"again?"
msgstr ""

#: core/urlchecker.cpp:458
msgid ""
"You have downloads in progress to these destinations.\n"
"Delete them and download again?"
msgstr ""

#: core/urlchecker.cpp:466
msgid ""
"You have already completed downloads from these locations. Download them "
"again?"
msgstr ""

#: core/urlchecker.cpp:468
msgid ""
"You have downloads in progress from these locations.\n"
"Delete them and download again?"
msgstr ""

#: core/urlchecker.cpp:477
#, kde-format
msgid ""
"Files exist already:\n"
"%1\n"
"Overwrite them?"
msgstr ""

#: core/urlchecker.cpp:479
#, kde-format
msgid ""
"You have already completed downloads at those destinations: \n"
"\n"
"%1\n"
"\n"
" Download them again?"
msgstr ""

#: core/urlchecker.cpp:481
#, kde-format
msgid ""
"You have downloads in progress to these destinations: \n"
"\n"
"%1\n"
"\n"
"Delete them and download again?"
msgstr ""

#: core/urlchecker.cpp:489
#, kde-format
msgid ""
"You have already completed downloads from these locations: \n"
"\n"
"%1\n"
"\n"
"Download them again?"
msgstr ""

#: core/urlchecker.cpp:491
#, kde-format
msgid ""
"You have downloads in progress from these locations: \n"
"\n"
"%1\n"
"\n"
"Delete them and download again?"
msgstr ""

#: core/urlchecker.cpp:611
#, fuzzy
#| msgid "Description"
msgid "Question"
msgstr "Descriere"

#: core/urlchecker.cpp:613
#, fuzzy
#| msgid "Deselect all"
msgctxt "on a question"
msgid "Yes all"
msgstr "Deselectează tot"

#: core/urlchecker.cpp:614
#, fuzzy
#| msgctxt "Download normally(not as first or last)"
#| msgid "Normal"
msgctxt "on a question"
msgid "No all"
msgstr "Normal"

#: transfer-plugins/mirrorsearch/dlgmirrorsearch.cpp:23
msgid "Insert Engine"
msgstr ""

#. i18n: file: transfer-plugins/mirrorsearch/dlgengineediting.ui:16
#. i18n: ectx: property (text), widget (QLabel, engineNameLabel)
#: transfer-plugins/mirrorsearch/dlgmirrorsearch.cpp:28 rc.cpp:200
msgid "Engine name:"
msgstr "Denumire motor:"

#. i18n: file: transfer-plugins/mirrorsearch/dlgengineediting.ui:30
#. i18n: ectx: property (text), widget (QLabel, urlLabel)
#. i18n: file: ui/metalinkcreator/commondata.ui:170
#. i18n: ectx: property (text), widget (QLabel, label_21)
#. i18n: file: ui/newtransferwidget.ui:59
#. i18n: ectx: property (text), widget (QLabel, urlLabel)
#: transfer-plugins/mirrorsearch/dlgmirrorsearch.cpp:29 rc.cpp:203 rc.cpp:646
#: rc.cpp:914
msgid "URL:"
msgstr "URL:"

#: transfer-plugins/multisegmentkio/transfermultisegkio.cpp:226
#: transfer-plugins/kio/transferKio.cpp:264
#, kde-format
msgid "The download (%1) could not be verified. Do you want to repair it?"
msgstr ""

#: transfer-plugins/multisegmentkio/transfermultisegkio.cpp:229
#: transfer-plugins/kio/transferKio.cpp:267
#, kde-format
msgid "The download (%1) could not be verified. Do you want to redownload it?"
msgstr ""

#: transfer-plugins/multisegmentkio/transfermultisegkio.cpp:233
#: transfer-plugins/kio/transferKio.cpp:271
msgid "Verification failed."
msgstr ""

#: transfer-plugins/kio/transferKio.cpp:93
#, fuzzy
#| msgctxt "transfer state: connecting"
#| msgid "Connecting.."
msgctxt "transfer state: connecting"
msgid "Connecting...."
msgstr "Conectare.."

#: transfer-plugins/contentfetch/dlgscriptediting.cpp:25
#, fuzzy
#| msgid "Add new script"
msgid "Add New Script"
msgstr "Adaugă script nou"

#: transfer-plugins/contentfetch/dlgscriptediting.cpp:37
#, fuzzy
#| msgid "Edit script"
msgid "Edit Script"
msgstr "Modifică scriptul"

#: transfer-plugins/contentfetch/dlgscriptediting.cpp:48
#, fuzzy
#| msgid "Description"
msgid "Set Script File"
msgstr "Descriere"

#: transfer-plugins/contentfetch/dlgcontentfetchsettingwidget.cpp:116
msgctxt "Configure script"
msgid "Configure script"
msgstr "Configurează scriptul"

#: transfer-plugins/contentfetch/contentfetch.cpp:52
msgctxt "Transfer state: processing script"
msgid "Processing script...."
msgstr ""

#: transfer-plugins/contentfetch/contentfetch.cpp:83
msgctxt "Transfer State: Finished"
msgid "Finished"
msgstr "Încheiat"

#: transfer-plugins/contentfetch/contentfetch.cpp:92
msgctxt "Transfer State: Aborted"
msgid "Aborted"
msgstr "Abandonat"

#: transfer-plugins/metalink/metalink.cpp:73
#, fuzzy
#| msgid "Downloading Torrent-File.."
msgid "Downloading Metalink File...."
msgstr "Descărcare fișier-torent.."

#: transfer-plugins/metalink/metalink.cpp:119
msgid ""
"A newer version of this Metalink might exist, do you want to download it?"
msgstr ""

#: transfer-plugins/metalink/metalink.cpp:120
#, fuzzy
#| msgctxt "redownload selected transfer item"
#| msgid "Redownload Selected"
msgid "Redownload Metalink"
msgstr "Redescarcă pe cel ales"

#: transfer-plugins/metalink/metalink.cpp:201
msgid "Download failed, no working URLs were found."
msgstr ""

#: transfer-plugins/metalink/metalink.cpp:509
msgid ""
"The download could not be verified, do you want to repair (if repairing does "
"not work the download would be restarted) it?"
msgstr ""

#: transfer-plugins/metalink/fileselectiondlg.cpp:31
#, fuzzy
#| msgctxt "@action"
#| msgid "Settings"
msgid "File Selection"
msgstr "Configurări"

#: transfer-plugins/checksumsearch/dlgchecksumsearch.cpp:42
msgid "Add item"
msgstr ""

#: transfer-plugins/checksumsearch/dlgchecksumsearch.cpp:70
#, kde-format
msgid "%1 would become %2"
msgstr ""

#: transfer-plugins/checksumsearch/dlgchecksumsearch.cpp:192
#, fuzzy
#| msgid "Change appearance settings"
msgctxt "the string that is used to modify an url"
msgid "Change string"
msgstr "Modifică configurările de aspect"

#: transfer-plugins/checksumsearch/dlgchecksumsearch.cpp:193
#, fuzzy
#| msgid "Change Tracker"
msgctxt "the mode defines how the url should be changed"
msgid "Change mode"
msgstr "Schimbă tracker"

#: transfer-plugins/checksumsearch/dlgchecksumsearch.cpp:194
msgctxt "the type of the checksum e.g. md5"
msgid "Checksum type"
msgstr ""

#: transfer-plugins/checksumsearch/checksumsearch.cpp:30
#, fuzzy
#| msgid "Appearance"
msgid "Append"
msgstr "Aspect"

#: transfer-plugins/checksumsearch/checksumsearch.cpp:30
#, fuzzy
#| msgid "Open file"
msgid "Replace file"
msgstr "Deschide fișier"

#: transfer-plugins/checksumsearch/checksumsearch.cpp:30
msgid "Replace file-ending"
msgstr ""

#: transfer-plugins/mmsclient/mmsTransfer.cpp:38
#: transfer-plugins/mms/mmsTransfer.cpp:36
#, fuzzy
#| msgctxt "The transfer is running"
#| msgid "Running"
msgctxt "transfer state: running"
msgid "Running...."
msgstr "Rulare"

#: transfer-plugins/bittorrent/advanceddetails/peerviewmodel.cpp:152
msgctxt "Choked"
msgid "Yes"
msgstr "Da"

#: transfer-plugins/bittorrent/advanceddetails/peerviewmodel.cpp:152
msgctxt "Not choked"
msgid "No"
msgstr "Nu"

#: transfer-plugins/bittorrent/advanceddetails/peerviewmodel.cpp:153
msgctxt "Snubbed"
msgid "Yes"
msgstr "Da"

#: transfer-plugins/bittorrent/advanceddetails/peerviewmodel.cpp:153
msgctxt "Not snubbed"
msgid "No"
msgstr "Nu"

#: transfer-plugins/bittorrent/advanceddetails/peerviewmodel.cpp:161
#, fuzzy
#| msgctxt "Choked"
#| msgid "Yes"
msgctxt "Interested"
msgid "Yes"
msgstr "Da"

#: transfer-plugins/bittorrent/advanceddetails/peerviewmodel.cpp:161
#, fuzzy
#| msgctxt "Not choked"
#| msgid "No"
msgctxt "Not Interested"
msgid "No"
msgstr "Nu"

#: transfer-plugins/bittorrent/advanceddetails/peerviewmodel.cpp:162
#, fuzzy
#| msgctxt "Choked"
#| msgid "Yes"
msgctxt "Interesting"
msgid "Yes"
msgstr "Da"

#: transfer-plugins/bittorrent/advanceddetails/peerviewmodel.cpp:162
#, fuzzy
#| msgctxt "Not choked"
#| msgid "No"
msgctxt "Not Interesting"
msgid "No"
msgstr "Nu"

#: transfer-plugins/bittorrent/advanceddetails/peerviewmodel.cpp:307
msgid "IP Address"
msgstr "Adresă IP"

#: transfer-plugins/bittorrent/advanceddetails/peerviewmodel.cpp:308
msgid "Client"
msgstr "Client"

#: transfer-plugins/bittorrent/advanceddetails/peerviewmodel.cpp:309
#: transfer-plugins/bittorrent/advanceddetails/chunkdownloadmodel.cpp:213
msgid "Down Speed"
msgstr "Viteză descărcare"

#: transfer-plugins/bittorrent/advanceddetails/peerviewmodel.cpp:310
msgid "Up Speed"
msgstr "Viteză încărcare"

#: transfer-plugins/bittorrent/advanceddetails/peerviewmodel.cpp:311
msgid "Choked"
msgstr "Sufocat"

#: transfer-plugins/bittorrent/advanceddetails/peerviewmodel.cpp:312
msgid "Snubbed"
msgstr ""

#: transfer-plugins/bittorrent/advanceddetails/peerviewmodel.cpp:313
msgid "Availability"
msgstr "Disponibilitate"

#: transfer-plugins/bittorrent/advanceddetails/peerviewmodel.cpp:314
msgid "DHT"
msgstr "DHT"

#: transfer-plugins/bittorrent/advanceddetails/peerviewmodel.cpp:315
msgid "Score"
msgstr "Scor"

#: transfer-plugins/bittorrent/advanceddetails/peerviewmodel.cpp:316
msgid "Upload Slot"
msgstr "Soclu încărcare"

#: transfer-plugins/bittorrent/advanceddetails/peerviewmodel.cpp:317
msgid "Requests"
msgstr "Cereri"

#: transfer-plugins/bittorrent/advanceddetails/peerviewmodel.cpp:318
#: transfer-plugins/bittorrent/advanceddetails/webseedsmodel.cpp:126
msgid "Downloaded"
msgstr "Descărcat"

#: transfer-plugins/bittorrent/advanceddetails/peerviewmodel.cpp:319
msgid "Uploaded"
msgstr "Încărcat"

#: transfer-plugins/bittorrent/advanceddetails/peerviewmodel.cpp:320
msgid "Interested"
msgstr "Interesat"

#: transfer-plugins/bittorrent/advanceddetails/peerviewmodel.cpp:321
msgid "Interesting"
msgstr "Interesant"

#: transfer-plugins/bittorrent/advanceddetails/peerviewmodel.cpp:329
msgid "IP address of the peer"
msgstr "Adresa IP a partenerului"

#: transfer-plugins/bittorrent/advanceddetails/peerviewmodel.cpp:330
msgid "Which client the peer is using"
msgstr "Ce client utilizează partenerul"

#: transfer-plugins/bittorrent/advanceddetails/peerviewmodel.cpp:331
#, fuzzy
#| msgid "Downloaded"
msgid "Download speed"
msgstr "Descărcat"

#: transfer-plugins/bittorrent/advanceddetails/peerviewmodel.cpp:332
#, fuzzy
#| msgid "Uploaded"
msgid "Upload speed"
msgstr "Încărcat"

#: transfer-plugins/bittorrent/advanceddetails/peerviewmodel.cpp:333
msgid ""
"Whether or not the peer has choked us.  If we are choked, the peer will not "
"send us any data."
msgstr ""

#: transfer-plugins/bittorrent/advanceddetails/peerviewmodel.cpp:334
msgid "Snubbed means the peer has not sent us any data in the last 2 minutes"
msgstr ""

#: transfer-plugins/bittorrent/advanceddetails/peerviewmodel.cpp:335
msgid "How much of the torrent's data the peer has"
msgstr ""

#: transfer-plugins/bittorrent/advanceddetails/peerviewmodel.cpp:336
msgid "Whether or not the peer has DHT enabled"
msgstr "Dacă partenerul are activat DHT sau nu"

#: transfer-plugins/bittorrent/advanceddetails/peerviewmodel.cpp:337
msgid ""
"The score of the peer. KTorrent uses this to determine who to upload to."
msgstr ""

#: transfer-plugins/bittorrent/advanceddetails/peerviewmodel.cpp:338
msgid "Only peers which have an upload slot will get data from us"
msgstr ""
"Doar partenerii care au un soclu de încărcare vor obține date de la noi"

#: transfer-plugins/bittorrent/advanceddetails/peerviewmodel.cpp:339
msgid "The number of download and upload requests"
msgstr "Numărul cererilor de încărcare și descărcare"

#: transfer-plugins/bittorrent/advanceddetails/peerviewmodel.cpp:340
msgid "How much data we have downloaded from this peer"
msgstr "Cîte date am descărcat de la acest partener"

#: transfer-plugins/bittorrent/advanceddetails/peerviewmodel.cpp:341
msgid "How much data we have uploaded to this peer"
msgstr "Cîte date am încărcat acestui partener"

#: transfer-plugins/bittorrent/advanceddetails/peerviewmodel.cpp:342
msgid "Whether the peer is interested in downloading data from us"
msgstr "Dacă acest partener este interesat de descărcarea datelor de la noi"

#: transfer-plugins/bittorrent/advanceddetails/peerviewmodel.cpp:343
msgid "Whether we are interested in downloading from this peer"
msgstr "Dacă ne interesează descărcarea de la acest partener"

#: transfer-plugins/bittorrent/advanceddetails/chunkdownloadmodel.cpp:210
msgid "Chunk"
msgstr "Bucată"

#: transfer-plugins/bittorrent/advanceddetails/chunkdownloadmodel.cpp:211
msgid "Progress"
msgstr "Progres"

#: transfer-plugins/bittorrent/advanceddetails/chunkdownloadmodel.cpp:212
msgid "Peer"
msgstr "Partener"

#: transfer-plugins/bittorrent/advanceddetails/chunkdownloadmodel.cpp:214
#: transfer-plugins/bittorrent/advanceddetails/btadvanceddetailswidget.cpp:63
msgid "Files"
msgstr "Fișiere"

#: transfer-plugins/bittorrent/advanceddetails/chunkdownloadmodel.cpp:222
msgid "Number of the chunk"
msgstr "Numărul bucății"

#: transfer-plugins/bittorrent/advanceddetails/chunkdownloadmodel.cpp:223
msgid "Download progress of the chunk"
msgstr "Progresul descărcării bucății"

#: transfer-plugins/bittorrent/advanceddetails/chunkdownloadmodel.cpp:224
msgid "Which peer we are downloading it from"
msgstr "De la care partener o descărcăm"

#: transfer-plugins/bittorrent/advanceddetails/chunkdownloadmodel.cpp:225
#, fuzzy
#| msgid "Download checked"
msgid "Download speed of the chunk"
msgstr "Descarcă cele bifate"

#: transfer-plugins/bittorrent/advanceddetails/chunkdownloadmodel.cpp:226
msgid "Which files the chunk is located in"
msgstr "În ce fișiere este amplasată bucata"

#. i18n: file: transfer-plugins/mirrorsearch/dlgmirrorsearch.ui:32
#. i18n: ectx: property (text), widget (QTreeWidget, enginesTreeWidget)
#: transfer-plugins/bittorrent/advanceddetails/webseedsmodel.cpp:124
#: rc.cpp:191
msgid "URL"
msgstr "URL"

#: transfer-plugins/bittorrent/advanceddetails/webseedsmodel.cpp:125
msgid "Speed"
msgstr "Viteză"

#: transfer-plugins/bittorrent/advanceddetails/webseedsmodel.cpp:127
#: transfer-plugins/bittorrent/advanceddetails/trackermodel.cpp:148
#: ui/history/transferhistory.cpp:245
msgid "Status"
msgstr "Stare"

#: transfer-plugins/bittorrent/advanceddetails/peerview.cpp:52
msgid "Kick Peer"
msgstr "Dă afară un partener"

#: transfer-plugins/bittorrent/advanceddetails/peerview.cpp:53
msgid "Ban Peer"
msgstr "Interzice un partener"

#: transfer-plugins/bittorrent/advanceddetails/webseedstab.cpp:92
#, kde-format
msgid "Cannot add the webseed %1, it is already part of the list of webseeds."
msgstr "Nu se poate adăuga sămânța %1, este deja parte dintre semințe."

#: transfer-plugins/bittorrent/advanceddetails/webseedstab.cpp:109
#, kde-format
msgid "Cannot remove webseed %1, it is part of the torrent."
msgstr "Nu se poate elimina sămânța %1, este parte din torent."

#: transfer-plugins/bittorrent/advanceddetails/torrentfiletreemodel.cpp:376
#: transfer-plugins/bittorrent/advanceddetails/torrentfilelistmodel.cpp:69
msgid "File"
msgstr "Fișier"

#. i18n: file: ui/history/transferhistory.ui:120
#. i18n: ectx: property (text), item, widget (KComboBox, rangeType)
#: transfer-plugins/bittorrent/advanceddetails/torrentfiletreemodel.cpp:377
#: transfer-plugins/bittorrent/advanceddetails/torrentfilelistmodel.cpp:70
#: rc.cpp:760
msgid "Size"
msgstr "Dimensiune"

#: transfer-plugins/bittorrent/advanceddetails/btadvanceddetailswidget.cpp:51
#: transfer-plugins/bittorrent/advanceddetails/btadvanceddetailswidget.cpp:55
#, kde-format
msgid "Advanced Details for %1"
msgstr "Detalii avansate pentru %1"

#: transfer-plugins/bittorrent/advanceddetails/btadvanceddetailswidget.cpp:71
msgid "Trackers"
msgstr "Trackere"

#: transfer-plugins/bittorrent/advanceddetails/btadvanceddetailswidget.cpp:74
msgid "Webseeds"
msgstr "Semințe web"

#: transfer-plugins/bittorrent/advanceddetails/fileview.cpp:66
msgctxt "Open file"
msgid "Open"
msgstr "Deschide"

#: transfer-plugins/bittorrent/advanceddetails/fileview.cpp:68
msgid "Download first"
msgstr "Descarcă mai întâi"

#: transfer-plugins/bittorrent/advanceddetails/fileview.cpp:69
msgid "Download normally"
msgstr "Descarcă normal"

#: transfer-plugins/bittorrent/advanceddetails/fileview.cpp:70
msgid "Download last"
msgstr "Descarcă la final"

#: transfer-plugins/bittorrent/advanceddetails/fileview.cpp:72
msgid "Do Not Download"
msgstr "Nu descărca"

#: transfer-plugins/bittorrent/advanceddetails/fileview.cpp:73
msgid "Delete File(s)"
msgstr "Șterge fișier(e)"

#: transfer-plugins/bittorrent/advanceddetails/fileview.cpp:75
msgid "Move File"
msgstr "Mută fișier"

#: transfer-plugins/bittorrent/advanceddetails/fileview.cpp:77
msgid "Collapse Folder Tree"
msgstr "Colapsare ierarhie directoare"

#: transfer-plugins/bittorrent/advanceddetails/fileview.cpp:78
msgid "Expand Folder Tree"
msgstr "Expandare ierarhie directoare"

#: transfer-plugins/bittorrent/advanceddetails/fileview.cpp:266
#, fuzzy
#| msgid ""
#| "You will lose all data in this file, are you sure you want to do this ?"
msgid "You will lose all data in this file, are you sure you want to do this?"
msgid_plural ""
"You will lose all data in these files, are you sure you want to do this?"
msgstr[0] ""
"O să pierdeți toate datele din acest fișier, sunteți sigur că doriți să "
"faceți asta ?"
msgstr[1] ""
"O să pierdeți toate datele din acest fișier, sunteți sigur că doriți să "
"faceți asta ?"
msgstr[2] ""
"O să pierdeți toate datele din acest fișier, sunteți sigur că doriți să "
"faceți asta ?"

#: transfer-plugins/bittorrent/advanceddetails/fileview.cpp:281
#: transfer-plugins/bittorrent/advanceddetails/fileview.cpp:302
msgid "Select a directory to move the data to."
msgstr "Selectați un director pentru a muta datele acolo."

#: transfer-plugins/bittorrent/advanceddetails/trackermodel.cpp:147
#, fuzzy
#| msgid "Url:"
msgid "Url"
msgstr "Url:"

#: transfer-plugins/bittorrent/advanceddetails/trackermodel.cpp:149
#, fuzzy
#| msgid "Seeders:"
msgid "Seeders"
msgstr "Încărcători:"

#: transfer-plugins/bittorrent/advanceddetails/trackermodel.cpp:150
#, fuzzy
#| msgid "Leechers:"
msgid "Leechers"
msgstr "Descărcători:"

#: transfer-plugins/bittorrent/advanceddetails/trackermodel.cpp:151
#, fuzzy
#| msgid "My Downloads"
msgid "Times Downloaded"
msgstr "Descărcările mele"

#: transfer-plugins/bittorrent/advanceddetails/trackermodel.cpp:152
#, fuzzy
#| msgid "Next Update In:"
msgid "Next Update"
msgstr "Următoarea actualizare în:"

#: transfer-plugins/bittorrent/advanceddetails/iwfiletreemodel.cpp:70
#: transfer-plugins/bittorrent/advanceddetails/iwfilelistmodel.cpp:66
msgid "Priority"
msgstr "Prioritate"

#: transfer-plugins/bittorrent/advanceddetails/iwfiletreemodel.cpp:71
#: transfer-plugins/bittorrent/advanceddetails/iwfilelistmodel.cpp:67
msgid "Preview"
msgstr "Previzualizare"

#: transfer-plugins/bittorrent/advanceddetails/iwfiletreemodel.cpp:73
#: transfer-plugins/bittorrent/advanceddetails/iwfilelistmodel.cpp:69
#, no-c-format
msgctxt "Percent of File Downloaded"
msgid "% Complete"
msgstr "% Complet"

#: transfer-plugins/bittorrent/advanceddetails/iwfiletreemodel.cpp:82
#: transfer-plugins/bittorrent/advanceddetails/iwfilelistmodel.cpp:78
msgctxt "Download first"
msgid "First"
msgstr "Mai întâi"

#: transfer-plugins/bittorrent/advanceddetails/iwfiletreemodel.cpp:83
#: transfer-plugins/bittorrent/advanceddetails/iwfilelistmodel.cpp:79
msgctxt "Download last"
msgid "Last"
msgstr "La urmă"

#: transfer-plugins/bittorrent/advanceddetails/iwfiletreemodel.cpp:88
msgctxt "Download normally(not as first or last)"
msgid "Normal"
msgstr "Normal"

#: transfer-plugins/bittorrent/advanceddetails/iwfiletreemodel.cpp:140
msgctxt "preview available"
msgid "Available"
msgstr "Disponibil"

#: transfer-plugins/bittorrent/advanceddetails/iwfiletreemodel.cpp:142
#: transfer-plugins/bittorrent/advanceddetails/iwfiletreemodel.cpp:165
#: transfer-plugins/bittorrent/advanceddetails/iwfilelistmodel.cpp:137
#: transfer-plugins/bittorrent/advanceddetails/iwfilelistmodel.cpp:160
msgctxt "Preview pending"
msgid "Pending"
msgstr "În așteptare"

#: transfer-plugins/bittorrent/advanceddetails/iwfiletreemodel.cpp:145
#: transfer-plugins/bittorrent/advanceddetails/iwfiletreemodel.cpp:168
#: transfer-plugins/bittorrent/advanceddetails/iwfilelistmodel.cpp:140
#: transfer-plugins/bittorrent/advanceddetails/iwfilelistmodel.cpp:163
msgctxt "No preview available"
msgid "No"
msgstr "Nu"

#: transfer-plugins/bittorrent/advanceddetails/iwfiletreemodel.cpp:150
#: transfer-plugins/bittorrent/advanceddetails/iwfiletreemodel.cpp:170
#: transfer-plugins/bittorrent/advanceddetails/iwfiletreemodel.cpp:176
#: transfer-plugins/bittorrent/advanceddetails/iwfilelistmodel.cpp:144
#: transfer-plugins/bittorrent/advanceddetails/iwfilelistmodel.cpp:167
#, kde-format
msgid "%1 %"
msgstr "%1 %"

#: transfer-plugins/bittorrent/advanceddetails/iwfiletreemodel.cpp:163
#: transfer-plugins/bittorrent/advanceddetails/iwfilelistmodel.cpp:135
#: transfer-plugins/bittorrent/advanceddetails/iwfilelistmodel.cpp:158
msgctxt "Preview available"
msgid "Available"
msgstr "Disponibil"

#. i18n: file: transfer-plugins/bittorrent/advanceddetails/trackerview.ui:21
#. i18n: ectx: property (text), widget (KPushButton, m_add_tracker)
#: transfer-plugins/bittorrent/advanceddetails/trackerview.cpp:86 rc.cpp:314
msgid "Add Tracker"
msgstr "Adaugă tracker"

#: transfer-plugins/bittorrent/advanceddetails/trackerview.cpp:86
msgid "Enter the URL of the tracker:"
msgstr ""

#: transfer-plugins/bittorrent/advanceddetails/trackerview.cpp:101
#, fuzzy, kde-format
#| msgid "There already is a tracker named <b>%1</b> !"
msgid "There already is a tracker named <b>%1</b>."
msgstr "Există deja un tracker numit <b>%1</b> !"

#: transfer-plugins/bittorrent/advanceddetails/iwfilelistmodel.cpp:84
msgctxt "Download Normal (not as first or last)"
msgid "Normal"
msgstr "Normal"

#: transfer-plugins/bittorrent/bttransferfactory.cpp:34
msgid "Cannot initialize libktorrent. Torrent support might not work."
msgstr ""

#: transfer-plugins/bittorrent/bttransferfactory.cpp:86
msgid "&Advanced Details"
msgstr "Detalii &avansate"

#: transfer-plugins/bittorrent/bttransferfactory.cpp:92
msgid "&Scan Files"
msgstr "&Scanează fișierele"

#: transfer-plugins/bittorrent/bttransfer.cpp:132
#, fuzzy
#| msgid "Downloading Torrent-File.."
msgid "Downloading Torrent File...."
msgstr "Descărcare fișier-torent.."

#: transfer-plugins/bittorrent/bttransfer.cpp:174
#: transfer-plugins/bittorrent/bttransfer.cpp:277
#, fuzzy
#| msgid "Downloading..."
msgctxt "transfer state: downloading"
msgid "Downloading...."
msgstr "Descărcare..."

#: transfer-plugins/bittorrent/bttransfer.cpp:251
msgid "Cannot add a tracker to a private torrent."
msgstr "Nu se poate adăuga un tracker la un torent privat."

#: transfer-plugins/bittorrent/bttransfer.cpp:412
#, fuzzy
#| msgid "The directory %1 does not exist"
msgid "Torrent file does not exist"
msgstr "Directorul %1 nu există"

#: transfer-plugins/bittorrent/bttransfer.cpp:417
#, fuzzy
#| msgid "Analyzing torrent.."
msgid "Analyzing torrent...."
msgstr "Analizare torent..."

#: transfer-plugins/bittorrent/bttransfer.cpp:429
msgid "Cannot initialize port..."
msgstr ""

#: transfer-plugins/bittorrent/bttransfer.cpp:498
#, fuzzy
#| msgctxt "Transfer status: seeding"
#| msgid "Seeding.."
msgctxt "Transfer status: seeding"
msgid "Seeding...."
msgstr "Încărcare..."

#: transfer-plugins/bittorrent/scandlg.cpp:101
#: transfer-plugins/bittorrent/scandlg.cpp:160
#: transfer-plugins/bittorrent/scandlg.cpp:243
#, kde-format
msgid "Error scanning data: %1"
msgstr "Eroare la citirea datelor: %1"

#: transfer-plugins/bittorrent/scandlg.cpp:166
#, kde-format
msgid "Scanning data of <b>%1</b> :"
msgstr "Citire date <b>%1</b> :"

#: transfer-plugins/bittorrent/btsettingswidget.cpp:37
#, fuzzy
#| msgid "Select all filtered"
msgid "Select a default torrent folder"
msgstr "Selectează toate filtrate"

#: transfer-plugins/bittorrent/btsettingswidget.cpp:39
msgid "Select a default temporary folder"
msgstr ""

#: ui/metalinkcreator/dragdlg.cpp:67
msgid "Import dropped files"
msgstr ""

#: ui/metalinkcreator/dragdlg.cpp:90 ui/metalinkcreator/filedlg.cpp:61
#: ui/metalinkcreator/filedlg.cpp:172
msgctxt "comma, to seperate members of a list"
msgid ","
msgstr ""

#: ui/metalinkcreator/filedlg.cpp:110
#, fuzzy
#| msgctxt "@action"
#| msgid "Settings"
msgid "File Properties"
msgstr "Configurări"

#: ui/metalinkcreator/filedlg.cpp:122
#, fuzzy
#| msgid "Enter Group Name"
msgid "Enter a filename."
msgstr "Introduceți denumirea grupului"

#: ui/metalinkcreator/filedlg.cpp:125
msgid "The filename exists already, choose a different one."
msgstr ""

#: ui/metalinkcreator/filedlg.cpp:128
#, fuzzy
#| msgid "Enter Group Name"
msgid "Enter at least one URL."
msgstr "Introduceți denumirea grupului"

#: ui/metalinkcreator/filedlg.cpp:132
msgid "Required data entered; also consider entering additional information."
msgstr ""

#: ui/metalinkcreator/metalinkcreator.cpp:90
msgid "Create a Metalink"
msgstr ""

#: ui/metalinkcreator/metalinkcreator.cpp:127
msgid "General optional information for the metalink."
msgstr ""

#: ui/metalinkcreator/metalinkcreator.cpp:156
#, fuzzy, kde-format
#| msgid "Unable to save to: %1"
msgid "Unable to load: %1"
msgstr "Imposibil de salvat în: %1"

#: ui/metalinkcreator/metalinkcreator.cpp:183
#, fuzzy
#| msgid "Open file"
msgid "Metalink Version 4.0 file (*.meta4)"
msgstr "Deschide fișier"

#: ui/metalinkcreator/metalinkcreator.cpp:183
#, fuzzy
#| msgid "Open file"
msgid "Metalink Version 3.0 file (*.metalink)"
msgstr "Deschide fișier"

#: ui/metalinkcreator/metalinkcreator.cpp:189
msgid "Define the saving location."
msgstr ""

#: ui/metalinkcreator/metalinkcreator.cpp:234
msgctxt "file as in file on hard drive"
msgid "Enter at least one file."
msgstr ""

#: ui/linkview/kget_linkview.cpp:37
msgid "Import Links"
msgstr "Importă legături"

#: ui/linkview/kget_linkview.cpp:91
#, fuzzy
#| msgctxt "Check as in mark, not as in verify"
#| msgid "&Download checked"
msgctxt "Download the items which have been selected"
msgid "&Download Checked"
msgstr "&Descarcă cele bifate"

#: ui/linkview/kget_linkview.cpp:128
#, fuzzy
#| msgid "Auxiliar header"
msgid "Auxiliary header"
msgstr "Antet auxiliar"

#: ui/linkview/kget_linkview.cpp:129
msgid "File Name"
msgstr "Denumire fișier"

#. i18n: file: transfer-plugins/contentfetch/dlgcontentfetchsettingwidget.ui:37
#. i18n: ectx: property (text), widget (QTreeWidget, scriptTreeWidget)
#: ui/linkview/kget_linkview.cpp:130 rc.cpp:263
msgid "Description"
msgstr "Descriere"

#: ui/linkview/kget_linkview.cpp:131
msgctxt "list header: type of file"
msgid "File Type"
msgstr "Tip fișier"

#: ui/linkview/kget_linkview.cpp:132
msgid "Location (URL)"
msgstr "Locație (URL)"

#: ui/linkview/kget_linkview.cpp:221
#, kde-format
msgid "Links in: %1 - KGet"
msgstr ""

#: ui/linkview/kget_linkview.cpp:289
#, fuzzy
#| msgid "Select all filtered"
msgid "&Select All Filtered"
msgstr "Selectează toate filtrate"

#. i18n: file: ui/linkview/importlinkdialog.ui:227
#. i18n: ectx: property (text), widget (KPushButton, selectAll)
#: ui/linkview/kget_linkview.cpp:289 rc.cpp:714
#, fuzzy
#| msgid "Select all"
msgid "&Select All"
msgstr "Selectează tot"

#: ui/linkview/kget_linkview.cpp:290
#, fuzzy
#| msgid "Deselect all filtered"
msgid "D&eselect All Filtered"
msgstr "Deselectează toate filtrate"

#. i18n: file: ui/linkview/importlinkdialog.ui:217
#. i18n: ectx: property (text), widget (KPushButton, deselectAll)
#: ui/linkview/kget_linkview.cpp:290 rc.cpp:711
#, fuzzy
#| msgid "Deselect all"
msgid "D&eselect All"
msgstr "Deselectează tot"

#. i18n: file: ui/mirror/mirroradddlg.ui:82
#. i18n: ectx: property (specialValueText), widget (KIntNumInput, priority)
#: ui/mirror/mirrormodel.cpp:214 ui/mirror/mirrormodel.cpp:232 rc.cpp:742
msgid "not specified"
msgstr ""

#: ui/mirror/mirrormodel.cpp:388
#, fuzzy
#| msgid "Error"
msgctxt "Mirror as in server, in url"
msgid "Mirror"
msgstr "Eroare"

#: ui/mirror/mirrormodel.cpp:391
#, fuzzy
#| msgid "Priority"
msgctxt "The priority of the mirror"
msgid "Priority"
msgstr "Prioritate"

#: ui/mirror/mirrormodel.cpp:396
#, fuzzy
#| msgid "Connecting"
msgctxt "Number of paralell connections to the mirror"
msgid "Connections"
msgstr "Se conectează"

#: ui/mirror/mirrormodel.cpp:398
#, fuzzy
#| msgid "Location (URL)"
msgctxt "Location = country"
msgid "Location"
msgstr "Locație (URL)"

#: ui/mirror/mirrorsettings.cpp:44
msgid "Add mirror"
msgstr ""

#: ui/mirror/mirrorsettings.cpp:60 ui/verificationdialog.cpp:50
#, fuzzy
#| msgid "Add Tracker"
msgctxt "Adds the item and reopens the dialog to add a further item"
msgid "Add more"
msgstr "Adaugă tracker"

#: ui/mirror/mirrorsettings.cpp:122
#, kde-format
msgid "%1 has been successfully added."
msgstr ""

#: ui/mirror/mirrorsettings.cpp:163
msgid "Modify the used mirrors."
msgstr ""

#: ui/history/transferhistoryitemdelegate.cpp:41
msgid "Download again"
msgstr "Descarcă din nou"

#: ui/history/transferhistoryitemdelegate.cpp:46
msgctxt "Delete selected history-item"
msgid "Delete selected"
msgstr "Șterge pe cel ales"

#: ui/history/transferhistoryitemdelegate.cpp:51
msgid "Open file"
msgstr "Deschide fișier"

#: ui/history/transferhistorycategorizeddelegate.cpp:45
#: ui/history/transferhistory.cpp:266
msgid "Today"
msgstr "Azi"

#: ui/history/transferhistorycategorizeddelegate.cpp:49
#: ui/history/transferhistory.cpp:267
msgid "Last week"
msgstr "Săptămîna trecută"

#: ui/history/transferhistorycategorizeddelegate.cpp:53
msgid "Last Month"
msgstr "Luna trecută"

#: ui/history/transferhistorycategorizeddelegate.cpp:57
#: ui/history/transferhistory.cpp:269
msgid "A long time ago"
msgstr "Demult"

#: ui/history/transferhistorycategorizeddelegate.cpp:77
msgid "Under 10MiB"
msgstr "Sub 10MiO"

#: ui/history/transferhistorycategorizeddelegate.cpp:80
msgid "Between 10MiB and 50MiB"
msgstr "Între 10MiO și 50MiO"

#: ui/history/transferhistorycategorizeddelegate.cpp:84
msgid "Between 50MiB and 100MiB"
msgstr "Între 50MiO și 100MiO"

#: ui/history/transferhistorycategorizeddelegate.cpp:89
msgid "More than 100MiB"
msgstr "Peste 100MiO"

#: ui/history/transferhistory.cpp:48
msgid "Transfer History"
msgstr "Istoric transferuri"

#: ui/history/transferhistory.cpp:81
msgid "&Open File"
msgstr "&Deschide fișierul"

#: ui/history/transferhistory.cpp:210
msgctxt "The transfer is running"
msgid "Running"
msgstr "Rulare"

#: ui/history/transferhistory.cpp:212
msgctxt "The transfer is stopped"
msgid "Stopped"
msgstr "Oprit"

#: ui/history/transferhistory.cpp:214
msgctxt "The transfer is aborted"
msgid "Aborted"
msgstr "Abandonat"

#: ui/history/transferhistory.cpp:216
msgctxt "The transfer is finished"
msgid "Finished"
msgstr "Terminat"

#: ui/history/transferhistory.cpp:245
#, fuzzy
#| msgid "Source-File"
msgid "Source File"
msgstr "Fișier sursă"

#: ui/history/transferhistory.cpp:245
msgid "Destination"
msgstr "Destinație"

#: ui/history/transferhistory.cpp:245
msgid "Time"
msgstr "Timp"

#: ui/history/transferhistory.cpp:245
msgid "File Size"
msgstr "Dimensiune fișier"

#: ui/history/transferhistory.cpp:255
msgid "Less than 1MiB"
msgstr "Sub 1MiO"

#: ui/history/transferhistory.cpp:257
msgid "Between 1MiB-10MiB"
msgstr "Între 1MiO-10MiO"

#: ui/history/transferhistory.cpp:259
msgid "Between 10MiB-100MiB"
msgstr "Între 10MiO-100MiO"

#: ui/history/transferhistory.cpp:261
msgid "Between 100MiB-1GiB"
msgstr "Între 100MiO-1GiO"

#: ui/history/transferhistory.cpp:263
msgid "More than 1GiB"
msgstr "Peste 1GiO"

#: ui/history/transferhistory.cpp:268
msgid "Last month"
msgstr "Luna trecută"

#: ui/history/transferhistory.cpp:289
msgctxt "the transfer has been finished"
msgid "Finished"
msgstr "Terminat"

#: ui/newtransferdialog.cpp:349
msgid "You have no source URLs selected."
msgstr ""

#: ui/newtransferdialog.cpp:367
msgid "Files that exist already in the current folder have been marked."
msgstr ""

#: ui/newtransferdialog.cpp:486
#, fuzzy
#| msgid "Error"
msgctxt "an error happened in connection with the user input"
msgid "Error:"
msgstr "Eroare"

#: ui/newtransferdialog.cpp:493
msgctxt "a warning happened in connection with the user input"
msgid "Warning:"
msgstr ""

#: ui/tray.cpp:45 extensions/konqueror/kget_plug_in.cpp:55
msgid "Download Manager"
msgstr "Administrator descărcări"

#: ui/signaturedlg.cpp:33
#, fuzzy
#| msgid "Unknown client"
msgctxt "trust level"
msgid "Unknown"
msgstr "Client necunoscut"

#: ui/signaturedlg.cpp:33
msgctxt "trust level"
msgid "Undefined"
msgstr ""

#: ui/signaturedlg.cpp:33
#, fuzzy
#| msgid "Peer"
msgctxt "trust level"
msgid "Never"
msgstr "Partener"

#: ui/signaturedlg.cpp:33
msgctxt "trust level"
msgid "Marginal"
msgstr ""

#: ui/signaturedlg.cpp:33
msgctxt "trust level"
msgid "Full"
msgstr ""

#: ui/signaturedlg.cpp:33
msgctxt "trust level"
msgid "Ultimate"
msgstr ""

#: ui/signaturedlg.cpp:40
#, kde-format
msgctxt ""
"Signature here is meant in cryptographic terms, so the signature of a file."
msgid "Signature of %1."
msgstr ""

#: ui/signaturedlg.cpp:59
msgid "This option is not supported for the current transfer."
msgstr ""

#: ui/signaturedlg.cpp:105
msgid "You need to define a signature."
msgstr ""

#: ui/signaturedlg.cpp:109
msgid ""
"No fingerprint could be found, check if the signature is correct or verify "
"the download."
msgstr ""

#: ui/signaturedlg.cpp:139
msgid "The key has been revoked."
msgstr ""

#: ui/signaturedlg.cpp:143
msgid "The key is disabled."
msgstr ""

#: ui/signaturedlg.cpp:147
msgid "The key is invalid."
msgstr ""

#: ui/signaturedlg.cpp:152
msgid "The key is expired."
msgstr ""

#: ui/signaturedlg.cpp:167
msgid "The key is not to be trusted."
msgstr ""

#: ui/signaturedlg.cpp:173
msgid "The key is to be trusted marginally."
msgstr ""

#: ui/signaturedlg.cpp:179
msgid "The key is to be trusted fully."
msgstr ""

#: ui/signaturedlg.cpp:183
msgid "The key is to be trusted ultimately."
msgstr ""

#: ui/signaturedlg.cpp:189
msgid "Trust level of the key is unclear."
msgstr ""

#: ui/signaturedlg.cpp:219
msgid "Unlimited"
msgstr "Nelimitat"

#: ui/signaturedlg.cpp:233 ui/signaturedlg.cpp:241
msgctxt "pgp signature is verified"
msgid "Verified"
msgstr ""

#: ui/signaturedlg.cpp:236
msgid "The signature has been verified successfully."
msgstr ""

#: ui/signaturedlg.cpp:242
msgid "The signature has been verified successfully:"
msgstr ""

#: ui/signaturedlg.cpp:245
#, fuzzy
#| msgid "File"
msgctxt "pgp signature is not verified"
msgid "Failed"
msgstr "Fișier"

#: ui/signaturedlg.cpp:248
msgid ""
"Caution: Verification failed. Either you entered the wrong signature, or the "
"data has been modified."
msgstr ""

#: ui/signaturedlg.cpp:253
msgid ""
"Verification not possible. Check the entered data, whether gpg-agent is "
"running, or whether you have an Internet connection (for retrieving keys.)"
msgstr ""

#: ui/signaturedlg.cpp:266
msgid "Feature is not supported, as KGet is not compiled with QPGME support."
msgstr ""

#: ui/signaturedlg.cpp:275
#, fuzzy
#| msgid "Error"
msgid "Error:"
msgstr "Eroare"

#: ui/signaturedlg.cpp:277
msgid "Problems:"
msgstr ""

#: ui/signaturedlg.cpp:279
#, fuzzy
#| msgid "Location (URL)"
msgid "Information:"
msgstr "Locație (URL)"

#: ui/transfersview.cpp:126
msgid "Select columns"
msgstr "Alege coloanele"

#: ui/transfersview.cpp:314
#, fuzzy
#| msgid "Transfer details"
msgid "Transfer Details"
msgstr "Detalii transfer"

#: ui/verificationdialog.cpp:37
msgid "Add checksum"
msgstr ""

#: ui/verificationdialog.cpp:82
#, kde-format
msgid "%1 %2 has been successfully added."
msgstr ""

#: ui/verificationdialog.cpp:101
#, fuzzy, kde-format
#| msgid "Transfer-Settings for %1"
msgid "Transfer Verification for %1"
msgstr "Configurări transfer pentru %1"

#: ui/verificationdialog.cpp:214
#, kde-format
msgid "%1 was successfully verified."
msgstr ""

#: ui/verificationdialog.cpp:215
msgid "Verification successful"
msgstr ""

#: ui/renamefile.cpp:32
#, fuzzy
#| msgid "Rename"
msgid "Rename File"
msgstr "Redenumește"

#: ui/renamefile.cpp:41
#, fuzzy, kde-format
#| msgid "Rename"
msgid "Rename %1 to:"
msgstr "Redenumește"

#: ui/renamefile.cpp:44
#, fuzzy
#| msgid "Rename"
msgid "&Rename"
msgstr "Redenumește"

#: ui/contextmenu.cpp:77
msgid "Semantic Desktop"
msgstr ""

#: ui/contextmenu.cpp:150 mainwindow.cpp:207
#, fuzzy
#| msgid "Delete Group"
msgid "Delete Group"
msgid_plural "Delete Groups"
msgstr[0] "Șterge grupul"
msgstr[1] "Șterge grupul"
msgstr[2] "Șterge grupul"

#: ui/contextmenu.cpp:154 mainwindow.cpp:212
#, fuzzy
#| msgid "Rename Group"
msgid "Rename Group..."
msgid_plural "Rename Groups..."
msgstr[0] "Redenumește grupul"
msgstr[1] "Redenumește grupul"
msgstr[2] "Redenumește grupul"

#: ui/droptarget.cpp:84
msgctxt "fix position for droptarget"
msgid "Sticky"
msgstr "Lipicios"

#. i18n: file: conf/dlgadvanced.ui:41
#. i18n: ectx: property (text), item, widget (KComboBox, kcfg_AfterFinishAction)
#: ui/droptarget.cpp:91 rc.cpp:140
msgid "Quit KGet"
msgstr "Părăsește KGet"

#: ui/droptarget.cpp:218 mainwindow.cpp:1119
#, fuzzy
#| msgid "KGet Transfer List"
msgid "The dropped file is a KGet Transfer List"
msgstr "Lista de transferuri KGet"

#: ui/droptarget.cpp:219 mainwindow.cpp:1120
msgid "&Download"
msgstr "&Descarcă"

#: ui/droptarget.cpp:220 mainwindow.cpp:1121
#, fuzzy
#| msgid "KGet Transfer List"
msgid "&Load transfer list"
msgstr "Lista de transferuri KGet"

#: ui/droptarget.cpp:276
msgid "Show Main Window"
msgstr "Arată fereastra principală"

#: ui/droptarget.cpp:277
msgid "Hide Main Window"
msgstr "Ascunde fereastra principală"

#. i18n: file: conf/dlgappearance.ui:33
#. i18n: ectx: property (title), widget (QGroupBox, dropTargetGroup)
#: ui/droptarget.cpp:368 rc.cpp:119
msgid "Drop Target"
msgstr ""

#: ui/droptarget.cpp:369
msgid "You can drag download links into the drop target."
msgstr ""

#: ui/droptarget.cpp:414
#, fuzzy, kde-format
#| msgid "%1 %"
msgctxt "%1 filename, %2 total size, %3 status"
msgid "%1(%2) %3"
msgstr "%1 %"

#: ui/droptarget.cpp:420
#, kde-format
msgctxt "%1 filename, %2 percent complete, %3 downloaded out of %4 total size"
msgid "%1(%2% %3/%4) Speed:%5/s"
msgstr ""

#: ui/droptarget.cpp:428
#, fuzzy, kde-format
#| msgid "%1 %"
msgctxt ""
"%1 filename, %2 percent complete, %3 downloaded out of %4 total size, %5 "
"status"
msgid "%1(%2% %3/%4) %5"
msgstr "%1 %"

#: ui/droptarget.cpp:442
msgid "Ready"
msgstr ""

#: ui/droptarget.cpp:456
msgid ""
"Drop target has been hidden. If you want to show it again, go to Settings-"
">Configure KGet->Look & Feel."
msgstr ""

#: ui/droptarget.cpp:458
msgid "Hiding drop target"
msgstr ""

#: ui/transfersettingsdialog.cpp:32
#, fuzzy, kde-format
#| msgid "Transfer-Settings for %1"
msgid "Transfer Settings for %1"
msgstr "Configurări transfer pentru %1"

#: ui/transfersettingsdialog.cpp:161
msgid ""
"Changing the destination did not work, the destination stays unmodified."
msgstr ""

#: ui/transfersettingsdialog.cpp:161
#, fuzzy
#| msgid "Destination"
msgid "Destination unmodified"
msgstr "Destinație"

#: ui/transferdetails.cpp:74
#, kde-format
msgid "Average speed: %1/s"
msgstr ""

#: ui/transferdetails.cpp:80
#, kde-format
msgid "%1 of %2"
msgstr "%1 din %2"

#: ui/groupsettingsdialog.cpp:25
#, fuzzy, kde-format
#| msgid "Group-Settings for %1"
msgid "Group Settings for %1"
msgstr "Configurări de grup pentru %1"

#: extensions/konqueror/kget_plug_in.cpp:61
msgid "Show Drop Target"
msgstr "Arată ținta lăsării"

#: extensions/konqueror/kget_plug_in.cpp:68
msgid "List All Links"
msgstr "Afișează toate legăturile"

#: extensions/konqueror/kget_plug_in.cpp:73
msgid "List Selected Links"
msgstr ""

#: extensions/konqueror/kget_plug_in.cpp:169
msgid "No downloadable links were found."
msgstr ""

#: extensions/konqueror/kget_plug_in.cpp:170
msgid "No Links"
msgstr "Nicio legătură"

#: extensions/konqueror/kget_plug_in.cpp:180
#, fuzzy
#| msgid "Whether we are interested in downloading from this peer"
msgid "Unable to communicate with the KGet download manager."
msgstr "Dacă ne interesează descărcarea de la acest partener"

#: extensions/konqueror/kget_plug_in.cpp:181
msgid "Communication Error"
msgstr ""

#: extensions/webinterface/httpserver.cpp:36
#, kde-format
msgctxt "@info"
msgid "Unable to start the server: %1."
msgstr "Imposibil de pornit serverul: %1."

#: extensions/webinterface/httpserver.cpp:88
#, kde-format
msgctxt "@item speed of transfer per seconds"
msgid "%1/s"
msgstr "%1/s"

#: extensions/webinterface/httpserver.cpp:175
#, fuzzy
#| msgctxt "@label"
#| msgid "KGet Webinterface"
msgctxt "@label"
msgid "KGet Web Interface"
msgstr "Interfață web KGet"

#: extensions/webinterface/httpserver.cpp:176
msgctxt "@label number"
msgid "Nr"
msgstr "Nr"

#: extensions/webinterface/httpserver.cpp:177
msgctxt "@label"
msgid "File name"
msgstr "Denumire fișier"

#: extensions/webinterface/httpserver.cpp:178
msgctxt "@label Progress of transfer"
msgid "Finished"
msgstr "Încheiat"

#: extensions/webinterface/httpserver.cpp:179
msgctxt "@label Speed of transfer"
msgid "Speed"
msgstr "Viteză"

#: extensions/webinterface/httpserver.cpp:180
msgctxt "@label Status of transfer"
msgid "Status"
msgstr "Stare"

#: extensions/webinterface/httpserver.cpp:181
msgctxt "@action:button start a transfer"
msgid "Start"
msgstr "Pornește"

#: extensions/webinterface/httpserver.cpp:182
msgctxt "@action:button"
msgid "Stop"
msgstr "Oprește"

#: extensions/webinterface/httpserver.cpp:183
msgctxt "@action:button"
msgid "Remove"
msgstr "Elimină"

#: extensions/webinterface/httpserver.cpp:184
msgctxt "@label Download from"
msgid "Source:"
msgstr "Sursă:"

#: extensions/webinterface/httpserver.cpp:185
msgctxt "@label Save download to"
msgid "Saving to:"
msgstr "Salvare la:"

#: extensions/webinterface/httpserver.cpp:186
#, fuzzy
#| msgid "Webinterface"
msgctxt "@label Title in header"
msgid "Web Interface"
msgstr "Interfață web"

#: extensions/webinterface/httpserver.cpp:187
msgctxt "@action"
msgid "Settings"
msgstr "Configurări"

#: extensions/webinterface/httpserver.cpp:188
msgctxt "@action"
msgid "Refresh"
msgstr "Actualizează"

#: extensions/webinterface/httpserver.cpp:189
msgctxt "@action"
msgid "Enter URL: "
msgstr "Introduceți URL: "

#: extensions/webinterface/httpserver.cpp:190
msgctxt "@action:button"
msgid "OK"
msgstr "OK"

#: extensions/webinterface/httpserver.cpp:192
msgctxt "@action Refresh download list every x (seconds)"
msgid "Refresh download list every"
msgstr "Actualizează lista de descărcări la fiecare"

#: extensions/webinterface/httpserver.cpp:193
msgctxt "@action (Refresh very x )seconds"
msgid "seconds"
msgstr "secunde"

#: extensions/webinterface/httpserver.cpp:194
msgctxt "@action:button"
msgid "Save Settings"
msgstr "Salvează setările"

#: extensions/webinterface/httpserver.cpp:195
msgctxt "@title"
msgid "Downloads"
msgstr "Descărcări"

#: extensions/webinterface/httpserver.cpp:197
#, fuzzy
#| msgctxt "@label text in footer"
#| msgid "KGet Webinterface | Valid XHTML 1.0 Strict &amp; CSS"
msgctxt "@label text in footer"
msgid "KGet Web Interface | Valid XHTML 1.0 Strict &amp; CSS"
msgstr "Interfață web KGet | XHTML 1.0 Strict &amp; CSS valid"

#: main.cpp:125
msgid "An advanced download manager for KDE"
msgstr "Administrator avansat de descărcări pentru KDE"

#: main.cpp:127
#, fuzzy
#| msgid ""
#| "(C) 2005 - 2008, The KGet developers\n"
#| "(C) 2001 - 2002, Patrick Charbonnier\n"
#| "(C) 2002, Carsten Pfeiffer\n"
#| "(C) 1998 - 2000, Matej Koss"
msgid ""
"(C) 2005 - 2009, The KGet developers\n"
"(C) 2001 - 2002, Patrick Charbonnier\n"
"(C) 2002, Carsten Pfeiffer\n"
"(C) 1998 - 2000, Matej Koss"
msgstr ""
"(C) 2005 - 2008, Dezvoltatorii KGet\n"
"(C) 2001 - 2002, Patrick Charbonnier\n"
"(C) 2002, Carsten Pfeiffer\n"
"(C) 1998 - 2000, Matej Koss"

#: main.cpp:131
msgid "<a href=\"mailto:kget@kde.org\">kget@kde.org</a>"
msgstr "<a href=\"mailto:kget@kde.org\">kget@kde.org</a>"

#: main.cpp:133
msgid "Lukas Appelhans"
msgstr "Lukas Appelhans"

#: main.cpp:133
#, fuzzy
#| msgid "Developer, Torrent Plugin Author"
msgid "Maintainer, Core Developer, Torrent Plugin Author"
msgstr "Dezvoltator, autorul modulului Torent"

#: main.cpp:134
msgid "Dario Massarin"
msgstr "Dario Massarin"

#: main.cpp:134 main.cpp:135 main.cpp:137
msgid "Core Developer"
msgstr "Dezvoltator principal"

#: main.cpp:135
msgid "Urs Wolfer"
msgstr "Urs Wolfer"

#: main.cpp:136
msgid "Manolo Valdes"
msgstr "Manolo Valdes"

#: main.cpp:136
msgid "Core Developer, Multithreaded Plugin Author"
msgstr ""

#: main.cpp:137
msgid "Matthias Fuchs"
msgstr ""

#: main.cpp:138
msgid "Javier Goday"
msgstr "Javier Goday"

#: main.cpp:138
msgid "Developer"
msgstr "Dezvoltator"

#: main.cpp:139
msgid "Patrick Charbonnier"
msgstr "Patrick Charbonnier"

#: main.cpp:139 main.cpp:140 main.cpp:141
msgid "Former Developer"
msgstr "Fostul dezvoltator"

#: main.cpp:140
msgid "Carsten Pfeiffer"
msgstr "Carsten Pfeiffer"

#: main.cpp:141
msgid "Matej Koss"
msgstr "Matej Koss"

#: main.cpp:142
msgid "Joris Guisson"
msgstr "Joris Guisson"

#: main.cpp:142
msgid "BTCore (KTorrent) Developer"
msgstr "Dezvoltatorul BTCore (KTorrent)"

#: main.cpp:143
msgid "Mensur Zahirovic (Nookie)"
msgstr "Mensur Zahirovic (Nookie)"

#: main.cpp:143
#, fuzzy
#| msgid "Design of Webinterface"
msgid "Design of Web Interface"
msgstr "Proiectarea interfeței web"

#: main.cpp:148
msgid "Start KGet with drop target"
msgstr ""

#: main.cpp:149
msgid "Start KGet with hidden main window"
msgstr ""

#: main.cpp:150
msgid "Start KGet without drop target animation"
msgstr ""

#: main.cpp:152
msgid "Execute Unit Testing"
msgstr ""

#: main.cpp:154
msgid "URL(s) to download"
msgstr "URL(uri) de descărcat"

#: mainwindow.cpp:142
msgid "KGet Transfer List"
msgstr "Lista de transferuri KGet"

#: mainwindow.cpp:149
msgid "Export Transfers"
msgstr "Exportă transferuri"

#: mainwindow.cpp:159
msgid "&New Download..."
msgstr "Descărcare &nouă..."

#: mainwindow.cpp:165
msgid "&Import Transfers..."
msgstr "&Import transferuri..."

#: mainwindow.cpp:171
msgid "&Export Transfers List..."
msgstr "&Export listă de transferuri..."

#: mainwindow.cpp:177
#, fuzzy
#| msgid "&Export Transfers List..."
msgid "&Export Transfers as Plain Text..."
msgstr "&Export listă de transferuri..."

#: mainwindow.cpp:183
msgid "&Create a Metalink"
msgstr ""

#: mainwindow.cpp:187
#, fuzzy
#| msgid "Priority"
msgid "Top Priority"
msgstr "Prioritate"

#: mainwindow.cpp:192
#, fuzzy
#| msgid "Priority"
msgid "Least Priority"
msgstr "Prioritate"

#. i18n: file: conf/dlgintegration.ui:100
#. i18n: ectx: property (text), widget (KPushButton, increase)
#: mainwindow.cpp:197 rc.cpp:179
#, fuzzy
#| msgid "Priority"
msgid "Increase Priority"
msgstr "Prioritate"

#. i18n: file: conf/dlgintegration.ui:107
#. i18n: ectx: property (text), widget (KPushButton, decrease)
#: mainwindow.cpp:202 rc.cpp:182
#, fuzzy
#| msgid "Priority"
msgid "Decrease Priority"
msgstr "Prioritate"

#: mainwindow.cpp:217
#, fuzzy
#| msgid "Set Icon"
msgid "Set Icon..."
msgstr "Stabilește pictograma"

#: mainwindow.cpp:222
msgid "Auto-Paste Mode"
msgstr "Regim de lipire automată"

#: mainwindow.cpp:225
msgid ""
"<b>Auto paste</b> button toggles the auto-paste mode on and off.\n"
"When set, KGet will periodically scan the clipboard for URLs and paste them "
"automatically."
msgstr ""

#: mainwindow.cpp:231
msgid "Use KGet as Konqueror Download Manager"
msgstr "Utilizează KGet ca gestionar de descărcări în Konqueror"

#: mainwindow.cpp:249
#, fuzzy
#| msgid "Remove Webseed"
msgctxt "delete selected transfer item"
msgid "Remove Selected"
msgstr "Eliminare sămânță web"

#: mainwindow.cpp:255
#, fuzzy
#| msgctxt "delete all finished transfers"
#| msgid "Delete all finished"
msgctxt "delete all finished transfers"
msgid "Remove All Finished"
msgstr "Șterge toate încheiate"

#: mainwindow.cpp:260
msgctxt "redownload selected transfer item"
msgid "Redownload Selected"
msgstr "Redescarcă pe cel ales"

#: mainwindow.cpp:265
msgid "Start / Resume All"
msgstr "Pornește / Reia toate"

#: mainwindow.cpp:271
msgid "Start / Resume Selected"
msgstr "Pornește / Reia pe cele alese"

#: mainwindow.cpp:276
msgid "Stop All"
msgstr "Oprește toate"

#: mainwindow.cpp:282
msgid "Stop Selected"
msgstr "Oprește alese"

#: mainwindow.cpp:286
msgid "Start / Resume"
msgstr "Pornește / Reia"

#: mainwindow.cpp:294
msgid "Stop"
msgstr "Oprește"

#. i18n: file: transfer-plugins/mirrorsearch/dlgmirrorsearch.ui:62
#. i18n: ectx: property (text), widget (QPushButton, removeEngineBt)
#. i18n: file: transfer-plugins/contentfetch/dlgcontentfetchsettingwidget.ui:67
#. i18n: ectx: property (text), widget (QPushButton, removeScriptButton)
#: mainwindow.cpp:302 rc.cpp:197 rc.cpp:269
#, fuzzy
#| msgctxt "@action:button"
#| msgid "Remove"
msgid "Remove"
msgstr "Elimină"

#: mainwindow.cpp:311
msgid "Open Destination"
msgstr "Deschide destinația"

#: mainwindow.cpp:316 mainwindow.cpp:452
msgid "Open File"
msgstr "Deschide fișierul"

#: mainwindow.cpp:320
msgid "Show Details"
msgstr "Arată detalii"

#: mainwindow.cpp:325
msgid "Copy URL to Clipboard"
msgstr "Copiază URL în clipboard"

#: mainwindow.cpp:330
#, fuzzy
#| msgid "Transfer History"
msgid "&Transfer History"
msgstr "Istoric transferuri"

#: mainwindow.cpp:336
#, fuzzy
#| msgid "Group Settings"
msgid "&Group Settings"
msgstr "Configurări de grup"

#: mainwindow.cpp:342
#, fuzzy
#| msgid "Transfer details"
msgid "&Transfer Settings"
msgstr "Detalii transfer"

#: mainwindow.cpp:348
msgid "Import &Links..."
msgstr ""

#: mainwindow.cpp:381
msgid ""
"This is the first time you have run KGet.\n"
"Would you like to enable KGet as the download manager for Konqueror?"
msgstr ""
"Este prima oară cînd porniți KGet.\n"
"Doriți să activați KGet ca gestionar de descărcări implicit pentru Konqueror?"

#: mainwindow.cpp:383
msgid "Konqueror Integration"
msgstr "Integrare Konqueror"

#: mainwindow.cpp:383
msgid "Enable"
msgstr "Activează"

#: mainwindow.cpp:384
msgid "Do Not Enable"
msgstr "Nu activa"

#: mainwindow.cpp:451
msgid "All Openable Files"
msgstr "Toate fișierele ce pot fi deschise"

#: mainwindow.cpp:468
#, kde-format
msgctxt "window title including overall download progress in percent"
msgid "KGet - %1%"
msgstr "KGet - %1%"

#: mainwindow.cpp:518
msgid ""
"Some transfers are still running.\n"
"Are you sure you want to close KGet?"
msgstr ""
"Unele transferuri încă rulează.\n"
"Sigur doriți să închideți KGet?"

#: mainwindow.cpp:520
msgid "Confirm Quit"
msgstr "Confirmă ieșirea"

#: mainwindow.cpp:576
msgid "Enter Group Name"
msgstr "Introduceți denumirea grupului"

#: mainwindow.cpp:577
msgid "Group name:"
msgstr "Denumire grup:"

#: mainwindow.cpp:656
#, fuzzy
#| msgid ""
#| "Are you sure that you want to remove\n"
#| "the group named %1?"
msgid "Are you sure you want to delete the selected transfer?"
msgid_plural "Are you sure you want to delete the selected transfers?"
msgstr[0] ""
"Sigur doriți să eliminați grupul\n"
"cu denumirea %1?"
msgstr[1] ""
"Sigur doriți să eliminați grupul\n"
"cu denumirea %1?"
msgstr[2] ""
"Sigur doriți să eliminați grupul\n"
"cu denumirea %1?"

#: mainwindow.cpp:658
#, fuzzy
#| msgid "KGet Transfer List"
msgid "Confirm transfer delete"
msgstr "Lista de transferuri KGet"

#: mainwindow.cpp:998
msgid ""
"KGet has been temporarily disabled as download manager for Konqueror. If you "
"want to disable it forever, go to Settings->Advanced and disable \"Use as "
"download manager for Konqueror\"."
msgstr ""

#: rc.cpp:1
msgctxt "NAME OF TRANSLATORS"
msgid "Your names"
msgstr "Sergiu Bivol"

#: rc.cpp:2
msgctxt "EMAIL OF TRANSLATORS"
msgid "Your emails"
msgstr "sergiu@ase.md"

#. i18n: file: conf/verificationpreferences.ui:17
#. i18n: ectx: property (title), widget (QGroupBox, groupBox)
#: rc.cpp:5
msgid "Checksums"
msgstr ""

#. i18n: file: conf/verificationpreferences.ui:23
#. i18n: ectx: property (text), widget (QLabel, label_2)
#: rc.cpp:8
#, fuzzy
#| msgid "Description"
msgid "Automatic verification:"
msgstr "Descriere"

#. i18n: file: conf/verificationpreferences.ui:42
#. i18n: ectx: property (text), widget (QRadioButton, radioButton_4)
#: rc.cpp:11
msgid "Weak (fastest)"
msgstr ""

#. i18n: file: conf/verificationpreferences.ui:49
#. i18n: ectx: property (text), widget (QRadioButton, radioButton_5)
#: rc.cpp:14
msgid "Strong (recommended)"
msgstr ""

#. i18n: file: conf/verificationpreferences.ui:56
#. i18n: ectx: property (text), widget (QRadioButton, radioButton_6)
#: rc.cpp:17
msgid "Strongest (slowest)"
msgstr ""

#. i18n: file: conf/verificationpreferences.ui:73
#. i18n: ectx: property (text), widget (QLabel, label_3)
#: rc.cpp:20
msgid "Used checksum:"
msgstr ""

#. i18n: file: conf/verificationpreferences.ui:83
#. i18n: ectx: property (title), widget (QGroupBox, signatureGroup)
#. i18n: file: ui/transfersettingsdialog.ui:173
#. i18n: ectx: property (text), widget (KPushButton, signature)
#. i18n: file: ui/signaturedlg.ui:20
#. i18n: ectx: property (title), widget (QGroupBox, sigGroup)
#: rc.cpp:23 rc.cpp:845 rc.cpp:848
msgid "Signature"
msgstr ""

#. i18n: file: conf/verificationpreferences.ui:89
#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SignatureAutomaticVerification)
#: rc.cpp:26
#, fuzzy
#| msgid "Destination"
msgid "Automatic verification"
msgstr "Destinație"

#. i18n: file: conf/verificationpreferences.ui:96
#. i18n: ectx: property (text), widget (QCheckBox, kcfg_SignatureAutomaticDownloading)
#: rc.cpp:29
msgid "Automatic downloading of missing keys"
msgstr ""

#. i18n: file: conf/verificationpreferences.ui:119
#. i18n: ectx: property (text), widget (QLabel, label)
#: rc.cpp:32
#, fuzzy
#| msgid "Seeders:"
msgid "Keyservers:"
msgstr "Încărcători:"

#. i18n: file: conf/verificationpreferences.ui:146
#. i18n: ectx: property (text), widget (KPushButton, up)
#: rc.cpp:35
msgid "Move &Up"
msgstr ""

#. i18n: file: conf/verificationpreferences.ui:153
#. i18n: ectx: property (text), widget (KPushButton, down)
#: rc.cpp:38
msgid "Move &Down"
msgstr ""

#. i18n: file: conf/dlggroups.ui:17
#. i18n: ectx: property (text), widget (QCheckBox, kcfg_DirectoriesAsSuggestion)
#: rc.cpp:41
msgid "Use default folders for groups as suggestion"
msgstr ""

#. i18n: file: conf/dlggroups.ui:45
#. i18n: ectx: property (text), widget (KPushButton, rename)
#. i18n: file: ui/transfersettingsdialog.ui:153
#. i18n: ectx: property (text), widget (KPushButton, rename)
#: rc.cpp:44 rc.cpp:839
msgid "Rename"
msgstr "Redenumește"

#. i18n: file: conf/dlggroups.ui:55
#. i18n: ectx: property (text), widget (KIconButton, selectIcon)
#: rc.cpp:47
#, fuzzy
#| msgid "Select Icon"
msgid "Select Icon..."
msgstr "Selectare pictogramă"

#. i18n: file: conf/dlgnetwork.ui:20
#. i18n: ectx: property (title), widget (QGroupBox, kcfg_LimitDownloads)
#: rc.cpp:50
#, fuzzy
#| msgid "Limit maximum downloads per group"
msgid "Limit Maximum Downloads Per Group"
msgstr "Limitează descărcările maxime per grup"

#. i18n: file: conf/dlgnetwork.ui:29
#. i18n: ectx: property (text), widget (QLabel, lbl_maxnum)
#: rc.cpp:53
#, fuzzy
#| msgid "New Download"
msgid "Number of downloads:"
msgstr "Descărcare nouă"

#. i18n: file: conf/dlgnetwork.ui:46
#. i18n: ectx: property (text), widget (QLabel, lbl_maxnum_2)
#: rc.cpp:56
msgid "Downloads from the same server:"
msgstr "Descărcări de la același server:"

#. i18n: file: conf/dlgnetwork.ui:63
#. i18n: ectx: property (title), widget (QGroupBox, kcfg_SpeedLimit)
#: rc.cpp:59
#, fuzzy
#| msgid "Speed limit"
msgid "Speed Limit"
msgstr "Limită de viteză"

#. i18n: file: conf/dlgnetwork.ui:72
#. i18n: ectx: property (text), widget (QLabel, dllimitlb)
#: rc.cpp:62
#, fuzzy
#| msgid "Download Limit"
msgid "Global download limit:"
msgstr "Limită descărcare"

#. i18n: file: conf/dlgnetwork.ui:79
#. i18n: ectx: property (suffix), widget (QSpinBox, kcfg_GlobalDownloadLimit)
#. i18n: file: conf/dlgnetwork.ui:102
#. i18n: ectx: property (suffix), widget (QSpinBox, kcfg_GlobalUploadLimit)
#. i18n: file: conf/dlgnetwork.ui:125
#. i18n: ectx: property (suffix), widget (QSpinBox, kcfg_TransferSpeedLimit)
#: rc.cpp:65 rc.cpp:71 rc.cpp:77
#, fuzzy
#| msgid "KiB/s"
msgid " KiB/s"
msgstr "KiO/s"

#. i18n: file: conf/dlgnetwork.ui:95
#. i18n: ectx: property (text), widget (QLabel, label_2)
#: rc.cpp:68
#, fuzzy
#| msgid "Upload Limit"
msgid "Global upload limit:"
msgstr "Limită încărcare"

#. i18n: file: conf/dlgnetwork.ui:118
#. i18n: ectx: property (text), widget (QLabel, lb_per_transfer)
#: rc.cpp:74
#, fuzzy
#| msgid "Per Transfer:"
msgid "Per transfer:"
msgstr "Per transfer:"

#. i18n: file: conf/dlgnetwork.ui:141
#. i18n: ectx: property (title), widget (QGroupBox, kcfg_ReconnectOnBroken)
#: rc.cpp:80
#, fuzzy
#| msgid "Reconnect on error or broken connection"
msgid "Reconnect on Error or Broken Connection"
msgstr "Reconectează la eroare sau conexiune întreruptă"

#. i18n: file: conf/dlgnetwork.ui:150
#. i18n: ectx: property (text), widget (QLabel, lb_retries_2)
#: rc.cpp:83
msgid "Number of retries:"
msgstr "Număr de reîncercări:"

#. i18n: file: conf/dlgnetwork.ui:164
#. i18n: ectx: property (text), widget (QLabel, lb_after_2)
#: rc.cpp:86
msgid "Retry after:"
msgstr "Reîncearcă după:"

#. i18n: file: conf/dlgnetwork.ui:171
#. i18n: ectx: property (suffix), widget (QSpinBox, kcfg_ReconnectDelay)
#: rc.cpp:89
#, fuzzy
#| msgid "sec"
msgid " sec"
msgstr "sec"

#. i18n: file: conf/dlgnetwork.ui:193
#. i18n: ectx: property (title), widget (QGroupBox, groupBoxCompleted)
#: rc.cpp:92
msgid "After Completing Downloads"
msgstr "După încheierea descărcărilor"

#. i18n: file: conf/dlgnetwork.ui:199
#. i18n: ectx: property (text), widget (QCheckBox, kcfg_AutoShutdown)
#: rc.cpp:95
msgid "Auto shutdown"
msgstr "Închidere automată"

#. i18n: file: conf/dlgnetwork.ui:206
#. i18n: ectx: property (text), widget (QCheckBox, kcfg_AutoDisconnect)
#: rc.cpp:98
msgid "Auto disconnect"
msgstr "Deconectare automată"

#. i18n: file: conf/dlgwebinterface.ui:19
#. i18n: ectx: property (title), widget (QGroupBox, kcfg_WebinterfaceEnabled)
#: rc.cpp:101
#, fuzzy
#| msgctxt "@label"
#| msgid "KGet Webinterface"
msgid "Enable Web Interface"
msgstr "Interfață web KGet"

#. i18n: file: conf/dlgwebinterface.ui:31
#. i18n: ectx: property (text), widget (QLabel, portLabel)
#. i18n: file: transfer-plugins/bittorrent/btsettingswidget.ui:32
#. i18n: ectx: property (text), widget (QLabel, portLabel)
#: rc.cpp:104 rc.cpp:457
msgid "Port:"
msgstr "Port:"

#. i18n: file: conf/dlgwebinterface.ui:45
#. i18n: ectx: property (text), widget (QLabel, userLabel)
#: rc.cpp:107
msgid "User:"
msgstr ""

#. i18n: file: conf/dlgwebinterface.ui:59
#. i18n: ectx: property (text), widget (QLabel, passwordLabel)
#. i18n: file: transfer-plugins/contentfetch/scripts/youtubedl/youtube_option.ui:87
#. i18n: ectx: property (text), widget (QLabel, passwordLabel)
#: rc.cpp:110 rc.cpp:242
msgid "Password:"
msgstr "Parola:"

#. i18n: file: conf/dlgappearance.ui:17
#. i18n: ectx: property (title), widget (QGroupBox, startupGroup)
#: rc.cpp:113
msgid "Startup"
msgstr ""

#. i18n: file: conf/dlgappearance.ui:23
#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowSplashscreen)
#: rc.cpp:116
msgid "Show splashscreen"
msgstr ""

#. i18n: file: conf/dlgappearance.ui:39
#. i18n: ectx: property (text), widget (QCheckBox, kcfg_AnimateDropTarget)
#: rc.cpp:122
msgid "Enable animations"
msgstr ""

#. i18n: file: conf/dlgappearance.ui:46
#. i18n: ectx: property (text), widget (QCheckBox, kcfg_EnablePopupTooltip)
#: rc.cpp:125
msgid "Enable popup tooltip"
msgstr ""

#. i18n: file: conf/dlgappearance.ui:53
#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ShowDropTarget)
#: rc.cpp:128
msgid "Show drop target"
msgstr ""

#. i18n: file: conf/dlgadvanced.ui:17
#. i18n: ectx: property (text), widget (QCheckBox, kcfg_ExpertMode)
#: rc.cpp:131
msgid "Disable confirmation dialogs (less verbosity)"
msgstr ""

#. i18n: file: conf/dlgadvanced.ui:24
#. i18n: ectx: property (text), widget (QCheckBox, kcfg_EnableSystemTray)
#: rc.cpp:134
msgid "Enable system tray icon"
msgstr ""

#. i18n: file: conf/dlgadvanced.ui:33
#. i18n: ectx: property (text), widget (QCheckBox, kcfg_AfterFinishActionEnabled)
#: rc.cpp:137
msgid "Execute action after all downloads have been finished:"
msgstr ""

#. i18n: file: conf/dlgadvanced.ui:49
#. i18n: ectx: property (text), widget (QLabel, label_2)
#: rc.cpp:143
msgid "At startup:"
msgstr ""

#. i18n: file: conf/dlgadvanced.ui:57
#. i18n: ectx: property (text), item, widget (KComboBox, kcfg_StartupAction)
#: rc.cpp:146
#, fuzzy
#| msgid "My Downloads"
msgid "Restore Download State"
msgstr "Descărcările mele"

#. i18n: file: conf/dlgadvanced.ui:62
#. i18n: ectx: property (text), item, widget (KComboBox, kcfg_StartupAction)
#: rc.cpp:149
#, fuzzy
#| msgid "My Downloads"
msgid "Start All Downloads"
msgstr "Descărcările mele"

#. i18n: file: conf/dlgadvanced.ui:67
#. i18n: ectx: property (text), item, widget (KComboBox, kcfg_StartupAction)
#: rc.cpp:152
#, fuzzy
#| msgid "My Downloads"
msgid "Stop All Downloads"
msgstr "Descărcările mele"

#. i18n: file: conf/dlgadvanced.ui:77
#. i18n: ectx: property (title), widget (QGroupBox, groupBox)
#: rc.cpp:155
msgid "History"
msgstr ""

#. i18n: file: conf/dlgadvanced.ui:83
#. i18n: ectx: property (text), widget (QLabel, label)
#: rc.cpp:158
msgid "History backend:"
msgstr ""

#. i18n: file: conf/dlgadvanced.ui:96
#. i18n: ectx: property (title), widget (QGroupBox, kcfg_EnableKUIServerIntegration)
#: rc.cpp:161
msgid "Enable KDE global progress tracking"
msgstr ""

#. i18n: file: conf/dlgadvanced.ui:108
#. i18n: ectx: property (text), widget (QRadioButton, kcfg_ExportSingleTransfer)
#: rc.cpp:164
msgid "Show every single download "
msgstr ""

#. i18n: file: conf/dlgadvanced.ui:115
#. i18n: ectx: property (text), widget (QRadioButton, kcfg_ExportGlobalJob)
#: rc.cpp:167
msgid "Show overall progress"
msgstr ""

#. i18n: file: conf/dlgintegration.ui:17
#. i18n: ectx: property (text), widget (QLabel, label_4)
#: rc.cpp:170
#, fuzzy
#| msgid "An advanced download manager for KDE"
msgid "Use as download manager for Konqueror:"
msgstr "Administrator avansat de descărcări pentru KDE"

#. i18n: file: conf/dlgintegration.ui:31
#. i18n: ectx: property (title), widget (QGroupBox, kcfg_AutoPaste)
#: rc.cpp:173
msgid "Monitor clipboard for files to download"
msgstr ""

#. i18n: file: conf/dlgintegration.ui:43
#. i18n: ectx: property (text), widget (QLabel, label_5)
#: rc.cpp:176
msgid "Case insensitive:"
msgstr ""

#. i18n: file: transfer-plugins/mirrorsearch/dlgmirrorsearch.ui:16
#. i18n: ectx: property (text), widget (KTitleWidget, ktitlewidget)
#: rc.cpp:185
msgid "Search Engines"
msgstr "Motoare de căutare"

#. i18n: file: transfer-plugins/mirrorsearch/dlgmirrorsearch.ui:27
#. i18n: ectx: property (text), widget (QTreeWidget, enginesTreeWidget)
#: rc.cpp:188
#, fuzzy
#| msgctxt "@label"
#| msgid "File name"
msgid "Engine Name"
msgstr "Denumire fișier"

#. i18n: file: transfer-plugins/mirrorsearch/dlgmirrorsearch.ui:55
#. i18n: ectx: property (text), widget (QPushButton, newEngineBt)
#: rc.cpp:194
msgid "New Engine..."
msgstr ""

#. i18n: file: transfer-plugins/multisegmentkio/dlgmultisegkio.ui:22
#. i18n: ectx: property (text), widget (QLabel, label)
#. i18n: file: transfer-plugins/metalink/dlgmetalink.ui:56
#. i18n: ectx: property (text), widget (QLabel, label_3)
#: rc.cpp:206 rc.cpp:296
#, fuzzy
#| msgid "Number of retries:"
msgid "Number of connections per URL:"
msgstr "Număr de reîncercări:"

#. i18n: file: transfer-plugins/multisegmentkio/dlgmultisegkio.ui:44
#. i18n: ectx: property (text), widget (QCheckBox, enginesCheckBox)
#: rc.cpp:209
msgid "Use search engines"
msgstr ""

#. i18n: file: transfer-plugins/multisegmentkio/dlgmultisegkio.ui:51
#. i18n: ectx: property (text), widget (QCheckBox, verificationCheckBox)
#: rc.cpp:212
msgid "Search for verification information"
msgstr ""

#. i18n: file: transfer-plugins/contentfetch/scripts/youtubedl/youtube_option.ui:16
#. i18n: ectx: property (title), widget (QGroupBox, fileSettingGroupBox)
#: rc.cpp:215
#, fuzzy
#| msgctxt "@action"
#| msgid "Settings"
msgid "File Settings"
msgstr "Configurări"

#. i18n: file: transfer-plugins/contentfetch/scripts/youtubedl/youtube_option.ui:25
#. i18n: ectx: property (text), widget (QLabel, fileNameLabel)
#. i18n: file: ui/metalinkcreator/filedlg.ui:54
#. i18n: ectx: property (text), widget (QLabel, label_10)
#: rc.cpp:218 rc.cpp:526
#, fuzzy
#| msgctxt "@label"
#| msgid "File name"
msgid "Filename:"
msgstr "Denumire fișier"

#. i18n: file: transfer-plugins/contentfetch/scripts/youtubedl/youtube_option.ui:33
#. i18n: ectx: property (text), item, widget (KComboBox, fileNameComboBox)
#: rc.cpp:221
msgid "Use Normalized Name"
msgstr ""

#. i18n: file: transfer-plugins/contentfetch/scripts/youtubedl/youtube_option.ui:38
#. i18n: ectx: property (text), item, widget (KComboBox, fileNameComboBox)
#: rc.cpp:224
msgid "Use Literal Name"
msgstr ""

#. i18n: file: transfer-plugins/contentfetch/scripts/youtubedl/youtube_option.ui:46
#. i18n: ectx: property (text), widget (QLabel, qualityLabel)
#: rc.cpp:227
msgid "Quality:"
msgstr ""

#. i18n: file: transfer-plugins/contentfetch/scripts/youtubedl/youtube_option.ui:54
#. i18n: ectx: property (text), item, widget (KComboBox, qualityComboBox)
#: rc.cpp:230
msgid "Best Quality (.mp4)"
msgstr ""

#. i18n: file: transfer-plugins/contentfetch/scripts/youtubedl/youtube_option.ui:59
#. i18n: ectx: property (text), item, widget (KComboBox, qualityComboBox)
#: rc.cpp:233
msgid "Normal Quality (.flv)"
msgstr ""

#. i18n: file: transfer-plugins/contentfetch/scripts/youtubedl/youtube_option.ui:70
#. i18n: ectx: property (toolTip), widget (QGroupBox, loginGroupBox)
#: rc.cpp:236
msgid ""
"Provide login info of your YouTube account in order to access restricted "
"media."
msgstr ""

#. i18n: file: transfer-plugins/contentfetch/scripts/youtubedl/youtube_option.ui:73
#. i18n: ectx: property (title), widget (QGroupBox, loginGroupBox)
#: rc.cpp:239
msgid "Login Info"
msgstr ""

#. i18n: file: transfer-plugins/contentfetch/scripts/youtubedl/youtube_option.ui:101
#. i18n: ectx: property (text), widget (QLabel, usernameLabel)
#: rc.cpp:245
#, fuzzy
#| msgid "Rename"
msgid "Username:"
msgstr "Redenumește"

#. i18n: file: transfer-plugins/contentfetch/scripts/youtubedl/youtube_option.ui:113
#. i18n: ectx: property (toolTip), widget (QCheckBox, useNetrcCheck)
#: rc.cpp:248
msgid ".netrc must have a hostname called 'youtube'."
msgstr ""

#. i18n: file: transfer-plugins/contentfetch/scripts/youtubedl/youtube_option.ui:116
#. i18n: ectx: property (text), widget (QCheckBox, useNetrcCheck)
#: rc.cpp:251
msgid "User .netrc file"
msgstr ""

#. i18n: file: transfer-plugins/contentfetch/dlgcontentfetchsettingwidget.ui:16
#. i18n: ectx: property (text), widget (KTitleWidget, ktitlewidget)
#: rc.cpp:254
msgid "User Scripts"
msgstr ""

#. i18n: file: transfer-plugins/contentfetch/dlgcontentfetchsettingwidget.ui:27
#. i18n: ectx: property (text), widget (QTreeWidget, scriptTreeWidget)
#: rc.cpp:257
msgid "Path"
msgstr ""

#. i18n: file: transfer-plugins/contentfetch/dlgcontentfetchsettingwidget.ui:32
#. i18n: ectx: property (text), widget (QTreeWidget, scriptTreeWidget)
#: rc.cpp:260
msgid "RegExp"
msgstr ""

#. i18n: file: transfer-plugins/contentfetch/dlgcontentfetchsettingwidget.ui:60
#. i18n: ectx: property (text), widget (QPushButton, newScriptButton)
#: rc.cpp:266
msgid "New Script...."
msgstr ""

#. i18n: file: transfer-plugins/contentfetch/dlgcontentfetchsettingwidget.ui:74
#. i18n: ectx: property (text), widget (QPushButton, editScriptButton)
#: rc.cpp:272
msgid "Edit...."
msgstr ""

#. i18n: file: transfer-plugins/contentfetch/dlgcontentfetchsettingwidget.ui:81
#. i18n: ectx: property (text), widget (QPushButton, configureScriptButton)
#: rc.cpp:275
msgid "Configure...."
msgstr ""

#. i18n: file: transfer-plugins/contentfetch/dlgscriptediting.ui:29
#. i18n: ectx: property (text), widget (QLabel, scriptUrlRegexpLabel)
#: rc.cpp:278
msgid "Regexp:"
msgstr ""

#. i18n: file: transfer-plugins/contentfetch/dlgscriptediting.ui:36
#. i18n: ectx: property (text), widget (QLabel, scriptPathLabel)
#: rc.cpp:281
#, fuzzy
#| msgid "Port:"
msgid "Path:"
msgstr "Port:"

#. i18n: file: transfer-plugins/contentfetch/dlgscriptediting.ui:43
#. i18n: ectx: property (text), widget (QLabel, scriptDescriptionLabel)
#. i18n: file: ui/metalinkcreator/commondata.ui:32
#. i18n: ectx: property (text), widget (QLabel, label_7)
#: rc.cpp:284 rc.cpp:607
#, fuzzy
#| msgid "Description"
msgid "Description:"
msgstr "Descriere"

#. i18n: file: transfer-plugins/metalink/fileselection.ui:17
#. i18n: ectx: property (text), widget (KTitleWidget, ktitlewidget)
#: rc.cpp:287
msgid "Select the files you want to be downloaded."
msgstr ""

#. i18n: file: transfer-plugins/metalink/dlgmetalink.ui:22
#. i18n: ectx: property (text), widget (QLabel, label)
#: rc.cpp:290
#, fuzzy
#| msgid "New Download"
msgid "Number of simultaneous file downloads:"
msgstr "Descărcare nouă"

#. i18n: file: transfer-plugins/metalink/dlgmetalink.ui:39
#. i18n: ectx: property (text), widget (QLabel, label_2)
#: rc.cpp:293
#, fuzzy
#| msgid "Number of retries:"
msgid "Number of mirrors per file:"
msgstr "Număr de reîncercări:"

#. i18n: file: transfer-plugins/checksumsearch/checksumsearchadddlg.ui:19
#. i18n: ectx: property (text), widget (QLabel, label_1)
#: rc.cpp:299
#, fuzzy
#| msgid "Change appearance settings"
msgid "Change string:"
msgstr "Modifică configurările de aspect"

#. i18n: file: transfer-plugins/checksumsearch/checksumsearchadddlg.ui:33
#. i18n: ectx: property (text), widget (QLabel, label_2)
#: rc.cpp:302
msgid "Mode:"
msgstr "Regim:"

#. i18n: file: transfer-plugins/checksumsearch/checksumsearchadddlg.ui:43
#. i18n: ectx: property (text), widget (QLabel, label_3)
#: rc.cpp:305
msgid "Checksum type:"
msgstr ""

#. i18n: file: transfer-plugins/checksumsearch/checksumsearchadddlg.ui:77
#. i18n: ectx: property (text), widget (QLabel, label_4)
#: rc.cpp:308
msgid "Result:"
msgstr ""

#. i18n: file: transfer-plugins/checksumsearch/checksumsearchadddlg.ui:84
#. i18n: ectx: property (text), widget (QLabel, label)
#: rc.cpp:311
msgid "label"
msgstr ""

#. i18n: file: transfer-plugins/bittorrent/advanceddetails/trackerview.ui:28
#. i18n: ectx: property (text), widget (KPushButton, m_remove_tracker)
#: rc.cpp:317
msgid "Remove Tracker"
msgstr "Elimină tracker"

#. i18n: file: transfer-plugins/bittorrent/advanceddetails/trackerview.ui:35
#. i18n: ectx: property (text), widget (KPushButton, m_change_tracker)
#: rc.cpp:320
msgid "Change Tracker"
msgstr "Schimbă tracker"

#. i18n: file: transfer-plugins/bittorrent/advanceddetails/trackerview.ui:42
#. i18n: ectx: property (text), widget (QPushButton, m_scrape)
#: rc.cpp:323
#, fuzzy
#| msgid "Update Tracker"
msgid "Update Trackers"
msgstr "Actualizare tracker"

#. i18n: file: transfer-plugins/bittorrent/advanceddetails/trackerview.ui:62
#. i18n: ectx: property (text), widget (KPushButton, m_restore_defaults)
#: rc.cpp:326
msgid "Restore Defaults"
msgstr "Restaurare valori implicite"

#. i18n: file: transfer-plugins/bittorrent/advanceddetails/webseedstab.ui:21
#. i18n: ectx: property (toolTip), widget (KLineEdit, m_webseed)
#: rc.cpp:329
msgid ""
"<html><head><meta name=\"qrichtext\" content=\"1\" /><style type=\"text/css"
"\">\n"
"p, li { white-space: pre-wrap; }\n"
"</style></head><body style=\" font-family:'Bitstream Vera Sans'; font-"
"size:8pt; font-weight:400; font-style:normal;\">\n"
"<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-"
"right:0px; -qt-block-indent:0; text-indent:0px;\">Webseed to add to the "
"torrent.</p>\n"
"<p style=\"-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; "
"margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\"></"
"p>\n"
"<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-"
"right:0px; -qt-block-indent:0; text-indent:0px;\"><span style=\" font-"
"weight:600;\">Note: </span>Only http webseeds are supported.</p></body></"
"html>"
msgstr ""

#. i18n: file: transfer-plugins/bittorrent/advanceddetails/webseedstab.ui:28
#. i18n: ectx: property (text), widget (QPushButton, m_add)
#: rc.cpp:337
msgid "Add Webseed"
msgstr "Adăugare parteneri"

#. i18n: file: transfer-plugins/bittorrent/advanceddetails/webseedstab.ui:50
#. i18n: ectx: property (text), widget (QPushButton, m_remove)
#: rc.cpp:340
msgid "Remove Webseed"
msgstr "Eliminare sămânță web"

#. i18n: file: transfer-plugins/bittorrent/advanceddetails/chunkdownloadview.ui:13
#. i18n: ectx: property (windowTitle), widget (QWidget, ChunkDownloadView)
#. i18n: file: transfer-plugins/bittorrent/btdetailswidgetfrm.ui:154
#. i18n: ectx: property (title), widget (QGroupBox, groupBox)
#: rc.cpp:343 rc.cpp:421
msgid "Chunks"
msgstr "Bucăți"

#. i18n: file: transfer-plugins/bittorrent/advanceddetails/chunkdownloadview.ui:23
#. i18n: ectx: property (text), widget (QLabel, textLabel1)
#: rc.cpp:346
msgid "Total:"
msgstr "Total:"

#. i18n: file: transfer-plugins/bittorrent/advanceddetails/chunkdownloadview.ui:59
#. i18n: ectx: property (text), widget (QLabel, textLabel5)
#: rc.cpp:349
msgid "Currently downloading:"
msgstr "Se descarcă:"

#. i18n: file: transfer-plugins/bittorrent/advanceddetails/chunkdownloadview.ui:95
#. i18n: ectx: property (text), widget (QLabel, textLabel3)
#. i18n: file: transfer-plugins/bittorrent/btdetailswidgetfrm.ui:163
#. i18n: ectx: property (text), widget (QLabel, label_3)
#: rc.cpp:352 rc.cpp:424
msgid "Downloaded:"
msgstr "Descărcate:"

#. i18n: file: transfer-plugins/bittorrent/advanceddetails/chunkdownloadview.ui:131
#. i18n: ectx: property (text), widget (QLabel, textLabel1_4)
#. i18n: file: transfer-plugins/bittorrent/btdetailswidgetfrm.ui:205
#. i18n: ectx: property (text), widget (QLabel, label_6)
#: rc.cpp:355 rc.cpp:442
msgid "Excluded:"
msgstr "Excluse:"

#. i18n: file: transfer-plugins/bittorrent/advanceddetails/chunkdownloadview.ui:167
#. i18n: ectx: property (text), widget (QLabel, textLabel1_4_2)
#: rc.cpp:358
msgid "Left:"
msgstr "Rămase:"

#. i18n: file: transfer-plugins/bittorrent/advanceddetails/chunkdownloadview.ui:203
#. i18n: ectx: property (text), widget (QLabel, textLabel1_8)
#: rc.cpp:361
msgid "Size:"
msgstr "Mărime:"

#. i18n: file: transfer-plugins/bittorrent/scandlg.ui:16
#. i18n: ectx: property (text), widget (QLabel, torrent_label)
#: rc.cpp:364
#, fuzzy
#| msgid "Scanning data of <b>%1</b> :"
msgid "Scanning data of torrent:"
msgstr "Citire date <b>%1</b> :"

#. i18n: file: transfer-plugins/bittorrent/scandlg.ui:30
#. i18n: ectx: property (text), widget (QLabel, textLabel2)
#: rc.cpp:367
msgid "Number of chunks found:"
msgstr ""

#. i18n: file: transfer-plugins/bittorrent/scandlg.ui:40
#. i18n: ectx: property (text), widget (QLabel, textLabel3)
#: rc.cpp:370
msgid "Number of chunks failed:"
msgstr ""

#. i18n: file: transfer-plugins/bittorrent/scandlg.ui:50
#. i18n: ectx: property (text), widget (QLabel, label)
#: rc.cpp:373
msgid "Number of chunks not downloaded:"
msgstr ""

#. i18n: file: transfer-plugins/bittorrent/scandlg.ui:57
#. i18n: ectx: property (text), widget (QLabel, label_2)
#: rc.cpp:376
msgid "Number of chunks downloaded:"
msgstr ""

#. i18n: file: transfer-plugins/bittorrent/scandlg.ui:77
#. i18n: ectx: property (text), widget (QLabel, chunks_found)
#. i18n: file: transfer-plugins/bittorrent/scandlg.ui:102
#. i18n: ectx: property (text), widget (QLabel, chunks_failed)
#. i18n: file: transfer-plugins/bittorrent/scandlg.ui:124
#. i18n: ectx: property (text), widget (QLabel, chunks_not_downloaded)
#. i18n: file: transfer-plugins/bittorrent/scandlg.ui:137
#. i18n: ectx: property (text), widget (QLabel, chunks_downloaded)
#: rc.cpp:379 rc.cpp:382 rc.cpp:385 rc.cpp:388
msgid "0"
msgstr "0"

#. i18n: file: transfer-plugins/bittorrent/scandlg.ui:183
#. i18n: ectx: property (text), widget (KPushButton, cancel)
#: rc.cpp:391
msgid "Cancel"
msgstr "Renunță"

#. i18n: file: transfer-plugins/bittorrent/btdetailswidgetfrm.ui:29
#. i18n: ectx: property (title), widget (QGroupBox, groupBox_3)
#: rc.cpp:394
msgid "Stats"
msgstr ""

#. i18n: file: transfer-plugins/bittorrent/btdetailswidgetfrm.ui:47
#. i18n: ectx: property (text), widget (QLabel, label_7)
#: rc.cpp:397
msgid "Seeders:"
msgstr "Încărcători:"

#. i18n: file: transfer-plugins/bittorrent/btdetailswidgetfrm.ui:60
#. i18n: ectx: property (text), widget (QLabel, seederLabel)
#. i18n: file: transfer-plugins/bittorrent/btdetailswidgetfrm.ui:86
#. i18n: ectx: property (text), widget (QLabel, dlSpeedLabel)
#. i18n: file: transfer-plugins/bittorrent/btdetailswidgetfrm.ui:112
#. i18n: ectx: property (text), widget (QLabel, leecherLabel)
#. i18n: file: transfer-plugins/bittorrent/btdetailswidgetfrm.ui:138
#. i18n: ectx: property (text), widget (QLabel, ulSpeedLabel)
#. i18n: file: transfer-plugins/bittorrent/btdetailswidgetfrm.ui:170
#. i18n: ectx: property (text), widget (QLabel, chunksDownloadedLabel)
#. i18n: file: transfer-plugins/bittorrent/btdetailswidgetfrm.ui:184
#. i18n: ectx: property (text), widget (QLabel, chunksLeftLabel)
#. i18n: file: transfer-plugins/bittorrent/btdetailswidgetfrm.ui:198
#. i18n: ectx: property (text), widget (QLabel, chunksAllLabel)
#. i18n: file: transfer-plugins/bittorrent/btdetailswidgetfrm.ui:212
#. i18n: ectx: property (text), widget (QLabel, chunksExcludedLabel)
#: rc.cpp:400 rc.cpp:406 rc.cpp:412 rc.cpp:418 rc.cpp:427 rc.cpp:433
#: rc.cpp:439 rc.cpp:445
msgid "<n>"
msgstr ""

#. i18n: file: transfer-plugins/bittorrent/btdetailswidgetfrm.ui:73
#. i18n: ectx: property (text), widget (QLabel, label_9)
#: rc.cpp:403
#, fuzzy
#| msgid "Downloaded"
msgid "Download speed:"
msgstr "Descărcat"

#. i18n: file: transfer-plugins/bittorrent/btdetailswidgetfrm.ui:99
#. i18n: ectx: property (text), widget (QLabel, label_8)
#: rc.cpp:409
msgid "Leechers:"
msgstr "Descărcători:"

#. i18n: file: transfer-plugins/bittorrent/btdetailswidgetfrm.ui:125
#. i18n: ectx: property (text), widget (QLabel, label_10)
#: rc.cpp:415
#, fuzzy
#| msgid "Uploaded"
msgid "Upload speed:"
msgstr "Încărcat"

#. i18n: file: transfer-plugins/bittorrent/btdetailswidgetfrm.ui:177
#. i18n: ectx: property (text), widget (QLabel, label_5)
#: rc.cpp:430
msgctxt "chunks left"
msgid "Left:"
msgstr ""

#. i18n: file: transfer-plugins/bittorrent/btdetailswidgetfrm.ui:191
#. i18n: ectx: property (text), widget (QLabel, label_4)
#: rc.cpp:436
msgctxt "all chunks"
msgid "All:"
msgstr ""

#. i18n: file: transfer-plugins/bittorrent/btdetailswidgetfrm.ui:240
#. i18n: ectx: property (text), widget (QLabel, label_11)
#. i18n: file: ui/transferdetailsfrm.ui:51
#. i18n: ectx: property (text), widget (QLabel, sourceLabel)
#: rc.cpp:448 rc.cpp:790
msgctxt "source-file"
msgid "Source:"
msgstr "Sursă:"

#. i18n: file: transfer-plugins/bittorrent/btdetailswidgetfrm.ui:247
#. i18n: ectx: property (text), widget (QLabel, label_2)
#. i18n: file: ui/transferdetailsfrm.ui:44
#. i18n: ectx: property (text), widget (QLabel, destLabel)
#: rc.cpp:451 rc.cpp:787
msgid "Saving to:"
msgstr "Salvare la:"

#. i18n: file: transfer-plugins/bittorrent/btsettingswidget.ui:49
#. i18n: ectx: property (text), widget (QLabel, uploadLimitLabel)
#: rc.cpp:460
msgid "Upload limit per transfer:"
msgstr ""

#. i18n: file: transfer-plugins/bittorrent/btsettingswidget.ui:56
#. i18n: ectx: property (specialValueText), widget (QSpinBox, uploadBox)
#. i18n: file: transfer-plugins/bittorrent/btsettingswidget.ui:76
#. i18n: ectx: property (specialValueText), widget (QSpinBox, downloadBox)
#: rc.cpp:463 rc.cpp:472
msgid "No Limit"
msgstr "Fără limită"

#. i18n: file: transfer-plugins/bittorrent/btsettingswidget.ui:59
#. i18n: ectx: property (suffix), widget (QSpinBox, uploadBox)
#. i18n: file: transfer-plugins/bittorrent/btsettingswidget.ui:79
#. i18n: ectx: property (suffix), widget (QSpinBox, downloadBox)
#: rc.cpp:466 rc.cpp:475
msgid "KiB"
msgstr "KiO"

#. i18n: file: transfer-plugins/bittorrent/btsettingswidget.ui:69
#. i18n: ectx: property (text), widget (QLabel, downloadLabel)
#: rc.cpp:469
#, fuzzy
#| msgid "Download Limit"
msgid "Download limit per transfer:"
msgstr "Limită descărcare"

#. i18n: file: transfer-plugins/bittorrent/btsettingswidget.ui:89
#. i18n: ectx: property (text), widget (QCheckBox, utpBox)
#: rc.cpp:478
msgid "Enable UTP protocol"
msgstr ""

#. i18n: file: transfer-plugins/bittorrent/btsettingswidget.ui:105
#. i18n: ectx: property (title), widget (QGroupBox, folderGroupBox)
#: rc.cpp:481
msgid "Folders"
msgstr "Dosare"

#. i18n: file: transfer-plugins/bittorrent/btsettingswidget.ui:117
#. i18n: ectx: property (text), widget (QLabel, torrentFolderLabel)
#: rc.cpp:484
msgid "Default torrent folder:"
msgstr ""

#. i18n: file: transfer-plugins/bittorrent/btsettingswidget.ui:137
#. i18n: ectx: property (text), widget (QLabel, tempFolderLabel)
#: rc.cpp:487
msgid "Default temporary folder"
msgstr ""

#. i18n: file: transfer-plugins/bittorrent/btsettingswidget.ui:154
#. i18n: ectx: property (text), widget (QCheckBox, preallocBox)
#: rc.cpp:490
#, fuzzy
#| msgid "Allocating diskspace"
msgid "Pre-allocate disk space"
msgstr "Se alocă spațiu pe disc"

#. i18n: file: ui/metalinkcreator/dragdlg.ui:21
#. i18n: ectx: attribute (title), widget (QWidget, Seite)
#: rc.cpp:493
#, fuzzy
#| msgid "General"
msgctxt "General options."
msgid "General"
msgstr "General"

#. i18n: file: ui/metalinkcreator/dragdlg.ui:27
#. i18n: ectx: property (text), widget (QCheckBox, partialChecksums)
#: rc.cpp:496
msgid "Create partial checksums"
msgstr ""

#. i18n: file: ui/metalinkcreator/dragdlg.ui:40
#. i18n: ectx: property (text), widget (QLabel, label)
#: rc.cpp:499
#, fuzzy
#| msgid "General"
msgid "General URL:"
msgstr "General"

#. i18n: file: ui/metalinkcreator/dragdlg.ui:66
#. i18n: ectx: property (text), widget (QLabel, label_3)
#: rc.cpp:502
msgid ""
"Automatically create checksums for the selected types. Keep in mind that "
"this might take a while."
msgstr ""

#. i18n: file: ui/metalinkcreator/dragdlg.ui:92
#. i18n: ectx: property (text), widget (QLabel, label_4)
#: rc.cpp:505
msgid ""
"Enter URLs here if all the dropped files are on that server and in the same "
"directory. For each dropped file the URL would consist of the entered part "
"and the filename."
msgstr ""

#. i18n: file: ui/metalinkcreator/dragdlg.ui:102
#. i18n: ectx: property (title), widget (QGroupBox, groupBox)
#: rc.cpp:508
msgid "Types of the checksums:"
msgstr ""

#. i18n: file: ui/metalinkcreator/dragdlg.ui:115
#. i18n: ectx: property (text), widget (QLabel, label_2)
#: rc.cpp:511
msgid "Create checksums:"
msgstr ""

#. i18n: file: ui/metalinkcreator/dragdlg.ui:132
#. i18n: ectx: attribute (title), widget (QWidget, Seite_2)
#: rc.cpp:514
msgctxt "These entries are optional."
msgid "Optional"
msgstr ""

#. i18n: file: ui/metalinkcreator/dragdlg.ui:144
#. i18n: ectx: property (text), widget (QLabel, label_5)
#: rc.cpp:517
msgid "Optional data:"
msgstr ""

#. i18n: file: ui/metalinkcreator/dragdlg.ui:169
#. i18n: ectx: property (text), widget (QLabel, label_6)
#: rc.cpp:520
msgid "Enter information that all chosen files share."
msgstr ""

#. i18n: file: ui/metalinkcreator/filedlg.ui:24
#. i18n: ectx: attribute (title), widget (QWidget, tab_3)
#: rc.cpp:523
#, fuzzy
#| msgid "Requests"
msgid "Required"
msgstr "Cereri"

#. i18n: file: ui/metalinkcreator/filedlg.ui:95
#. i18n: ectx: property (text), widget (QLabel, label_9)
#: rc.cpp:529
msgid "Used Mirrors:"
msgstr ""

#. i18n: file: ui/metalinkcreator/filedlg.ui:103
#. i18n: ectx: attribute (title), widget (QWidget, tab_4)
#: rc.cpp:532
msgid "Recommended"
msgstr ""

#. i18n: file: ui/metalinkcreator/filedlg.ui:111
#. i18n: ectx: property (text), widget (QLabel, label_11)
#: rc.cpp:535
msgid "File size (in bytes):"
msgstr ""

#. i18n: file: ui/metalinkcreator/filedlg.ui:121
#. i18n: ectx: property (validChars), widget (KRestrictedLine, size)
#: rc.cpp:538
msgid "0123456789"
msgstr ""

#. i18n: file: ui/metalinkcreator/filedlg.ui:152
#. i18n: ectx: property (text), widget (QLabel, label_2)
#. i18n: file: ui/signaturedlg.ui:44
#. i18n: ectx: property (text), widget (QLabel, label_8)
#: rc.cpp:541 rc.cpp:854
#, fuzzy
#| msgid "Description"
msgid "Verification:"
msgstr "Descriere"

#. i18n: file: ui/metalinkcreator/filedlg.ui:199
#. i18n: ectx: attribute (title), widget (QWidget, Seite)
#: rc.cpp:544
msgid "Optional"
msgstr ""

#. i18n: file: ui/metalinkcreator/introduction.ui:17
#. i18n: ectx: property (text), widget (QLabel, label_2)
#: rc.cpp:547
msgid ""
"This assistant allows you to create metalinks from scratch or base them on "
"existing metalinks. A lot of the fields are optional or recommended, so "
"enter them if desired. The minimum is a save location, at least one file and "
"one URL."
msgstr ""

#. i18n: file: ui/metalinkcreator/introduction.ui:48
#. i18n: ectx: property (text), widget (QLabel, label)
#: rc.cpp:550
msgid "Save created Metalink at:"
msgstr ""

#. i18n: file: ui/metalinkcreator/introduction.ui:78
#. i18n: ectx: property (text), widget (QRadioButton, createButton)
#: rc.cpp:553
msgid "Create new Metalink"
msgstr ""

#. i18n: file: ui/metalinkcreator/introduction.ui:88
#. i18n: ectx: property (text), widget (QRadioButton, loadButton)
#: rc.cpp:556
msgid "Load existing Metalink:"
msgstr ""

#. i18n: file: ui/metalinkcreator/introduction.ui:98
#. i18n: ectx: property (filter), widget (KUrlRequester, load)
#: rc.cpp:559
#, fuzzy
#| msgid "Open file"
msgid "*.metalink *.meta4|Metalink file (*.metalink *.meta4)"
msgstr "Deschide fișier"

#. i18n: file: ui/metalinkcreator/generalwidget.ui:23
#. i18n: ectx: property (text), widget (QLabel, label_5)
#: rc.cpp:562
msgid "General information:"
msgstr ""

#. i18n: file: ui/metalinkcreator/generalwidget.ui:30
#. i18n: ectx: property (text), widget (QLabel, label_7)
#: rc.cpp:565
msgid "Here you can enter optional general information on the metalink."
msgstr ""

#. i18n: file: ui/metalinkcreator/generalwidget.ui:61
#. i18n: ectx: property (text), widget (QLabel, label_2)
#: rc.cpp:568
msgid "Origin:"
msgstr ""

#. i18n: file: ui/metalinkcreator/generalwidget.ui:68
#. i18n: ectx: property (clickMessage), widget (KLineEdit, origin)
#: rc.cpp:571
msgid "Web URL to the metalink"
msgstr ""

#. i18n: file: ui/metalinkcreator/generalwidget.ui:75
#. i18n: ectx: property (toolTip), widget (QLabel, labelDynamic)
#: rc.cpp:574
msgid "Dynamic means that updated metalinks can be found at \"Origin\"."
msgstr ""

#. i18n: file: ui/metalinkcreator/generalwidget.ui:78
#. i18n: ectx: property (text), widget (QLabel, labelDynamic)
#: rc.cpp:577
msgid "Dynamic:"
msgstr ""

#. i18n: file: ui/metalinkcreator/generalwidget.ui:110
#. i18n: ectx: property (title), widget (QGroupBox, publishedGroupBox)
#: rc.cpp:580
#, fuzzy
#| msgid "Next Update In:"
msgid "Metalink published"
msgstr "Următoarea actualizare în:"

#. i18n: file: ui/metalinkcreator/generalwidget.ui:122
#. i18n: ectx: property (text), widget (QLabel, label_30)
#. i18n: file: ui/metalinkcreator/generalwidget.ui:223
#. i18n: ectx: property (text), widget (QLabel, label_29)
#: rc.cpp:583 rc.cpp:601
#, fuzzy
#| msgid "Remaining Time:"
msgid "Date and time:"
msgstr "Timp rămas:"

#. i18n: file: ui/metalinkcreator/generalwidget.ui:132
#. i18n: ectx: property (text), widget (QCheckBox, use_publishedtimeoffset)
#. i18n: file: ui/metalinkcreator/generalwidget.ui:213
#. i18n: ectx: property (text), widget (QCheckBox, use_updatedtimeoffset)
#: rc.cpp:586 rc.cpp:598
msgid "Timezone offset:"
msgstr ""

#. i18n: file: ui/metalinkcreator/generalwidget.ui:149
#. i18n: ectx: property (text), widget (QLabel, label)
#. i18n: file: ui/metalinkcreator/generalwidget.ui:206
#. i18n: ectx: property (text), widget (QLabel, label_8)
#: rc.cpp:589 rc.cpp:595
msgid "Negative offset:"
msgstr ""

#. i18n: file: ui/metalinkcreator/generalwidget.ui:178
#. i18n: ectx: property (title), widget (QGroupBox, updatedGroupBox)
#: rc.cpp:592
#, fuzzy
#| msgid "Next Update In:"
msgid "Metalink updated"
msgstr "Următoarea actualizare în:"

#. i18n: file: ui/metalinkcreator/commondata.ui:22
#. i18n: ectx: property (text), widget (QLabel, label)
#: rc.cpp:604
msgid "Identity"
msgstr ""

#. i18n: file: ui/metalinkcreator/commondata.ui:46
#. i18n: ectx: property (text), widget (QLabel, label_2)
#: rc.cpp:610
#, fuzzy
#| msgid "Description"
msgid "Version:"
msgstr "Descriere"

#. i18n: file: ui/metalinkcreator/commondata.ui:56
#. i18n: ectx: property (text), widget (QLabel, label_12)
#: rc.cpp:613
msgid "Logo:"
msgstr ""

#. i18n: file: ui/metalinkcreator/commondata.ui:63
#. i18n: ectx: property (clickMessage), widget (KLineEdit, logo)
#: rc.cpp:616
msgid "URL to the logo"
msgstr ""

#. i18n: file: ui/metalinkcreator/commondata.ui:73
#. i18n: ectx: property (toolTip), widget (QLabel, label_13)
#: rc.cpp:619
msgid "The language of the file"
msgstr ""

#. i18n: file: ui/metalinkcreator/commondata.ui:76
#. i18n: ectx: property (text), widget (QLabel, label_13)
#: rc.cpp:622
msgid "Language:"
msgstr ""

#. i18n: file: ui/metalinkcreator/commondata.ui:86
#. i18n: ectx: property (text), widget (QLabel, label_14)
#: rc.cpp:625
msgid "Operating systems:"
msgstr ""

#. i18n: file: ui/metalinkcreator/commondata.ui:93
#. i18n: ectx: property (clickMessage), widget (KLineEdit, os)
#: rc.cpp:628
msgid "Supported OSes, separated with commas"
msgstr ""

#. i18n: file: ui/metalinkcreator/commondata.ui:103
#. i18n: ectx: property (text), widget (QLabel, label_18)
#: rc.cpp:631
msgid "Copyright:"
msgstr ""

#. i18n: file: ui/metalinkcreator/commondata.ui:141
#. i18n: ectx: property (text), widget (QLabel, label_20)
#: rc.cpp:634
msgid "Publisher:"
msgstr ""

#. i18n: file: ui/metalinkcreator/commondata.ui:150
#. i18n: ectx: property (text), widget (QLabel, label_8)
#: rc.cpp:637
#, fuzzy
#| msgid "Name"
msgid "Name:"
msgstr "Denumire"

#. i18n: file: ui/metalinkcreator/commondata.ui:157
#. i18n: ectx: property (toolTip), widget (KLineEdit, pub_name)
#. i18n: file: ui/metalinkcreator/commondata.ui:177
#. i18n: ectx: property (toolTip), widget (KLineEdit, pub_url)
#: rc.cpp:640 rc.cpp:649
msgid "publisher"
msgstr ""

#. i18n: file: ui/metalinkcreator/commondata.ui:160
#. i18n: ectx: property (clickMessage), widget (KLineEdit, pub_name)
#: rc.cpp:643
#, fuzzy
#| msgid "IP address of the peer"
msgid "Name of the publisher"
msgstr "Adresa IP a partenerului"

#. i18n: file: ui/metalinkcreator/commondata.ui:180
#. i18n: ectx: property (clickMessage), widget (KLineEdit, pub_url)
#: rc.cpp:652
#, fuzzy
#| msgid "IP address of the peer"
msgid "URL to the publisher"
msgstr "Adresa IP a partenerului"

#. i18n: file: ui/metalinkcreator/files.ui:23
#. i18n: ectx: property (text), widget (QLabel, label)
#: rc.cpp:655
#, fuzzy
#| msgid "Files"
msgctxt "Files as in files on a server"
msgid "Files:"
msgstr "Fișiere"

#. i18n: file: ui/metalinkcreator/files.ui:55
#. i18n: ectx: property (text), widget (KPushButton, add_local_file)
#: rc.cpp:658
msgid "Add local files"
msgstr ""

#. i18n: file: ui/metalinkcreator/files.ui:86
#. i18n: ectx: property (text), widget (QLabel, label_2)
#: rc.cpp:661
msgid ""
"Add at least one file. Adding local files adds a lot of information "
"automatically."
msgstr ""

#. i18n: file: ui/metalinkcreator/files.ui:102
#. i18n: ectx: property (text), widget (QLabel, label_3)
#: rc.cpp:664
msgid "Adding local files..."
msgstr ""

#. i18n: file: ui/metalinkcreator/files.ui:119
#. i18n: ectx: property (text), widget (QLabel, needUrl)
#: rc.cpp:667
msgid "You need to set mirrors for the entries with an icon."
msgstr ""

#. i18n: file: ui/linkview/importlinkdialog.ui:19
#. i18n: ectx: property (text), widget (QLabel, label)
#: rc.cpp:670
msgid "&File with links to import:"
msgstr "&Fișier cu legături de importat:"

#. i18n: file: ui/linkview/importlinkdialog.ui:35
#. i18n: ectx: property (text), widget (KPushButton, importLinks)
#: rc.cpp:673
#, fuzzy
#| msgid "Import Links"
msgid "&Import Links"
msgstr "Importă legături"

#. i18n: file: ui/linkview/importlinkdialog.ui:49
#. i18n: ectx: property (text), widget (QLabel, label_2)
#: rc.cpp:676
msgid "Show:"
msgstr "Arată:"

#. i18n: file: ui/linkview/importlinkdialog.ui:56
#. i18n: ectx: property (text), widget (KPushButton, showAll)
#: rc.cpp:679
msgctxt "filter: show all file types"
msgid "&All"
msgstr "To&ate"

#. i18n: file: ui/linkview/importlinkdialog.ui:75
#. i18n: ectx: property (text), widget (KPushButton, showVideos)
#: rc.cpp:683
msgid "&Videos"
msgstr "&Video"

#. i18n: file: ui/linkview/importlinkdialog.ui:91
#. i18n: ectx: property (text), widget (KPushButton, showImages)
#: rc.cpp:687
msgid "Ima&ges"
msgstr "Ima&gini"

#. i18n: file: ui/linkview/importlinkdialog.ui:107
#. i18n: ectx: property (text), widget (KPushButton, showAudio)
#: rc.cpp:691
msgid "A&udio"
msgstr "A&udio"

#. i18n: file: ui/linkview/importlinkdialog.ui:123
#. i18n: ectx: property (text), widget (KPushButton, showArchives)
#: rc.cpp:695
msgid "A&rchives"
msgstr "A&rhive"

#. i18n: file: ui/linkview/importlinkdialog.ui:145
#. i18n: ectx: property (toolTip), widget (KLineEdit, textFilter)
#: rc.cpp:699
msgid "You can use wildcards for filtering."
msgstr "Puteți utiliza metacaractere pentru filtrare"

#. i18n: file: ui/linkview/importlinkdialog.ui:148
#. i18n: ectx: property (clickMessage), widget (KLineEdit, textFilter)
#: rc.cpp:702
msgid "Filter files here...."
msgstr "Filtrați fișierele aici..."

#. i18n: file: ui/linkview/importlinkdialog.ui:159
#. i18n: ectx: property (text), item, widget (KComboBox, filterMode)
#: rc.cpp:705
msgid "Contains"
msgstr "Conține"

#. i18n: file: ui/linkview/importlinkdialog.ui:164
#. i18n: ectx: property (text), item, widget (KComboBox, filterMode)
#: rc.cpp:708
#, fuzzy
#| msgid "Does not contain"
msgid "Does Not Contain"
msgstr "Nu conține"

#. i18n: file: ui/linkview/importlinkdialog.ui:237
#. i18n: ectx: property (text), widget (KPushButton, invertSelection)
#: rc.cpp:717
#, fuzzy
#| msgid "Inver&t selection"
msgid "Inver&t Selection"
msgstr "In&versează selecția"

#. i18n: file: ui/linkview/importlinkdialog.ui:247
#. i18n: ectx: property (text), widget (KPushButton, checkSelected)
#: rc.cpp:720
#, fuzzy
#| msgctxt "Check as in mark, not as in verify"
#| msgid "Chec&k selected"
msgctxt "Check as in mark, not as in verify"
msgid "Chec&k Selected"
msgstr "Bifea&ză cele selectate"

#. i18n: file: ui/linkview/importlinkdialog.ui:254
#. i18n: ectx: property (text), widget (QCheckBox, showWebContent)
#: rc.cpp:723
msgid "Show &web content"
msgstr "Arată conținut &web"

#. i18n: file: ui/mirror/mirroradddlg.ui:29
#. i18n: ectx: property (text), widget (QLabel, labelMirror)
#: rc.cpp:727
#, fuzzy
#| msgid "Error: "
msgid "Mirror:"
msgstr "Eroare: "

#. i18n: file: ui/mirror/mirroradddlg.ui:36
#. i18n: ectx: property (text), widget (QLabel, labelConnections)
#: rc.cpp:730
#, fuzzy
#| msgid "Number of retries:"
msgid "Number of connections:"
msgstr "Număr de reîncercări:"

#. i18n: file: ui/mirror/mirroradddlg.ui:43
#. i18n: ectx: property (clickMessage), widget (KLineEdit, url)
#: rc.cpp:733
#, fuzzy
#| msgid "Enter URL:"
msgid "Enter a URL"
msgstr "Introduceți URL:"

#. i18n: file: ui/mirror/mirroradddlg.ui:63
#. i18n: ectx: property (text), widget (QLabel, labelPriority)
#: rc.cpp:736
#, fuzzy
#| msgid "Priority"
msgid "Priority:"
msgstr "Prioritate"

#. i18n: file: ui/mirror/mirroradddlg.ui:70
#. i18n: ectx: property (toolTip), widget (KIntNumInput, priority)
#: rc.cpp:739
msgid "Optional: The priority of the mirror, 1 highest 999999 lowest."
msgstr ""

#. i18n: file: ui/mirror/mirroradddlg.ui:89
#. i18n: ectx: property (text), widget (QLabel, labelLocation)
#: rc.cpp:745
#, fuzzy
#| msgid "Location (URL)"
msgid "Location:"
msgstr "Locație (URL)"

#. i18n: file: ui/history/transferhistory.ui:26
#. i18n: ectx: property (text), widget (QPushButton, clearButton)
#: rc.cpp:748
msgid "Clear History"
msgstr "Curăță istoricul"

#. i18n: file: ui/history/transferhistory.ui:46
#. i18n: ectx: property (title), widget (KButtonGroup, viewmodesgroup)
#: rc.cpp:751
msgctxt "View modes"
msgid "View Modes"
msgstr "Regimuri vizualizare"

#. i18n: file: ui/history/transferhistory.ui:99
#. i18n: ectx: property (title), widget (KButtonGroup, kbuttongroup_2)
#: rc.cpp:754
#, fuzzy
#| msgid "Select Icon"
msgid "Select Ranges"
msgstr "Selectare pictogramă"

#. i18n: file: ui/history/transferhistory.ui:115
#. i18n: ectx: property (text), item, widget (KComboBox, rangeType)
#: rc.cpp:757
msgid "Date"
msgstr "Dată"

#. i18n: file: ui/history/transferhistory.ui:125
#. i18n: ectx: property (text), item, widget (KComboBox, rangeType)
#: rc.cpp:763
msgid "Host"
msgstr "Gazdă"

#. i18n: file: ui/history/transferhistory.ui:136
#. i18n: ectx: property (title), widget (KButtonGroup, kbuttongroup_3)
#: rc.cpp:766
#, fuzzy
#| msgid "Filter history"
msgid "Filter History"
msgstr "Istoric fișiere"

#. i18n: file: ui/history/transferhistory.ui:165
#. i18n: ectx: property (text), widget (KLineEdit, searchBar)
#: rc.cpp:769
msgctxt "delete selected transfer"
msgid "Delete Selected"
msgstr "Șterge pe cel ales"

#. i18n: file: ui/history/transferhistory.ui:170
#. i18n: ectx: property (text), widget (KLineEdit, searchBar)
#: rc.cpp:772
msgid "Download"
msgstr "Descărcare"

#. i18n: file: ui/verificationadddlg.ui:17
#. i18n: ectx: property (text), widget (QLabel, successLabel)
#: rc.cpp:775
msgid "TextLabel"
msgstr ""

#. i18n: file: ui/verificationadddlg.ui:29
#. i18n: ectx: property (text), widget (QLabel, label)
#: rc.cpp:778
msgctxt "hash type as in md5t, sha1 etc."
msgid "Hash type:"
msgstr ""

#. i18n: file: ui/verificationadddlg.ui:36
#. i18n: ectx: property (text), widget (QLabel, label_2)
#: rc.cpp:781
#, fuzzy
#| msgid "Port:"
msgctxt "hash as a hash of type md5, sha1 etc."
msgid "Hash:"
msgstr "Port:"

#. i18n: file: ui/verificationadddlg.ui:43
#. i18n: ectx: property (clickMessage), widget (KLineEdit, newHash)
#: rc.cpp:784
msgid "Enter a hash key"
msgstr ""

#. i18n: file: ui/transferdetailsfrm.ui:114
#. i18n: ectx: property (text), widget (QLabel, statusLabel)
#: rc.cpp:794
msgid "Status:"
msgstr "Stare:"

#. i18n: file: ui/transferdetailsfrm.ui:165
#. i18n: ectx: property (text), widget (QLabel, label)
#: rc.cpp:800
#, fuzzy
#| msgid "Remaining Time"
msgid "Remaining Time:"
msgstr "Timp rămas"

#. i18n: file: ui/transfersettingsdialog.ui:23
#. i18n: ectx: property (text), widget (KTitleWidget, ktitlewidget)
#: rc.cpp:803
#, fuzzy
#| msgid "Transfer details"
msgid "Transfer Settings"
msgstr "Detalii transfer"

#. i18n: file: ui/transfersettingsdialog.ui:35
#. i18n: ectx: property (text), widget (QLabel, label)
#: rc.cpp:806
#, fuzzy
#| msgid "Destination:"
msgid "Download Destination:"
msgstr "Destinație:"

#. i18n: file: ui/transfersettingsdialog.ui:52
#. i18n: ectx: property (specialValueText), widget (QSpinBox, uploadSpin)
#. i18n: file: ui/transfersettingsdialog.ui:74
#. i18n: ectx: property (specialValueText), widget (QSpinBox, downloadSpin)
#. i18n: file: ui/transfersettingsdialog.ui:96
#. i18n: ectx: property (specialValueText), widget (QDoubleSpinBox, ratioSpin)
#: rc.cpp:809 rc.cpp:815 rc.cpp:821
#, fuzzy
#| msgid "No Links"
msgctxt "No value has been set"
msgid "Not set"
msgstr "Nicio legătură"

#. i18n: file: ui/transfersettingsdialog.ui:55
#. i18n: ectx: property (suffix), widget (QSpinBox, uploadSpin)
#. i18n: file: ui/transfersettingsdialog.ui:77
#. i18n: ectx: property (suffix), widget (QSpinBox, downloadSpin)
#. i18n: file: ui/groupsettingsdialog.ui:91
#. i18n: ectx: property (suffix), widget (QSpinBox, downloadBox)
#. i18n: file: ui/groupsettingsdialog.ui:117
#. i18n: ectx: property (suffix), widget (QSpinBox, uploadBox)
#: rc.cpp:812 rc.cpp:818 rc.cpp:902 rc.cpp:908
#, fuzzy
#| msgid "KiB"
msgid " KiB"
msgstr "KiO"

#. i18n: file: ui/transfersettingsdialog.ui:103
#. i18n: ectx: property (text), widget (QLabel, labelUpload)
#: rc.cpp:824
#, fuzzy
#| msgid "Upload Limit"
msgid "Upload Limit:"
msgstr "Limită încărcare"

#. i18n: file: ui/transfersettingsdialog.ui:110
#. i18n: ectx: property (text), widget (QLabel, labelDownload)
#: rc.cpp:827
#, fuzzy
#| msgid "Download Limit"
msgid "Download Limit:"
msgstr "Limită descărcare"

#. i18n: file: ui/transfersettingsdialog.ui:117
#. i18n: ectx: property (text), widget (QLabel, labelShareRatio)
#: rc.cpp:830
#, fuzzy
#| msgid "Maximum share ratio:"
msgid "Maximum Share Ratio:"
msgstr "Rata maximă de partajare:"

#. i18n: file: ui/transfersettingsdialog.ui:140
#. i18n: ectx: property (toolTip), widget (KPushButton, mirrors)
#: rc.cpp:833
msgid "Modify the mirrors used for downloading."
msgstr ""

#. i18n: file: ui/transfersettingsdialog.ui:143
#. i18n: ectx: property (text), widget (KPushButton, mirrors)
#: rc.cpp:836
#, fuzzy
#| msgid "Error"
msgctxt "The available mirrors (servers) for downloading"
msgid "Mirrors"
msgstr "Eroare"

#. i18n: file: ui/transfersettingsdialog.ui:163
#. i18n: ectx: property (text), widget (KPushButton, verification)
#: rc.cpp:842
#, fuzzy
#| msgid "Destination"
msgctxt "verification of the download (e.g. by using MD5)"
msgid "Verification"
msgstr "Destinație"

#. i18n: file: ui/signaturedlg.ui:26
#. i18n: ectx: property (text), widget (QLabel, label_7)
#: rc.cpp:851
msgid "PGP signature:"
msgstr ""

#. i18n: file: ui/signaturedlg.ui:80
#. i18n: ectx: property (title), widget (QGroupBox, keyGroup)
#: rc.cpp:857
msgid "Key"
msgstr ""

#. i18n: file: ui/signaturedlg.ui:92
#. i18n: ectx: property (text), widget (QLabel, label)
#: rc.cpp:860
msgid "Issuer:"
msgstr ""

#. i18n: file: ui/signaturedlg.ui:115
#. i18n: ectx: property (text), widget (QLabel, label_2)
#: rc.cpp:863
msgid "E-Mail:"
msgstr "E-Mail:"

#. i18n: file: ui/signaturedlg.ui:132
#. i18n: ectx: property (text), widget (QLabel, label_9)
#: rc.cpp:866
msgid "Comment:"
msgstr ""

#. i18n: file: ui/signaturedlg.ui:146
#. i18n: ectx: property (text), widget (QLabel, label_3)
#: rc.cpp:869
#, fuzzy
#| msgid "Destination:"
msgid "Creation:"
msgstr "Destinație:"

#. i18n: file: ui/signaturedlg.ui:163
#. i18n: ectx: property (text), widget (QLabel, label_4)
#: rc.cpp:872
#, fuzzy
#| msgid "Destination:"
msgid "Expiration:"
msgstr "Destinație:"

#. i18n: file: ui/signaturedlg.ui:191
#. i18n: ectx: property (text), widget (QLabel, label_5)
#: rc.cpp:875
msgid "Trust:"
msgstr ""

#. i18n: file: ui/signaturedlg.ui:219
#. i18n: ectx: property (text), widget (QLabel, label_6)
#: rc.cpp:878
msgid "Fingerprint:"
msgstr ""

#. i18n: file: ui/signaturedlg.ui:254
#. i18n: ectx: property (text), widget (KPushButton, verify)
#: rc.cpp:881
msgid "Verify"
msgstr ""

#. i18n: file: ui/groupsettingsdialog.ui:32
#. i18n: ectx: property (text), widget (KTitleWidget, ktitlewidget)
#: rc.cpp:884
msgid "Group Settings"
msgstr "Configurări de grup"

#. i18n: file: ui/groupsettingsdialog.ui:44
#. i18n: ectx: property (text), widget (QLabel, label)
#: rc.cpp:887
msgid "Default folder:"
msgstr "Dosar implicit:"

#. i18n: file: ui/groupsettingsdialog.ui:58
#. i18n: ectx: property (toolTip), widget (QLabel, label_2)
#: rc.cpp:890
msgid "Moves all transfers with the regular expression to this group"
msgstr ""

#. i18n: file: ui/groupsettingsdialog.ui:61
#. i18n: ectx: property (text), widget (QLabel, label_2)
#: rc.cpp:893
msgid "Regular expression:"
msgstr "Expresie regulată:"

#. i18n: file: ui/groupsettingsdialog.ui:68
#. i18n: ectx: property (clickMessage), widget (KLineEdit, regExpEdit)
#: rc.cpp:896
msgid "*movies*"
msgstr "*filme*"

#. i18n: file: ui/groupsettingsdialog.ui:75
#. i18n: ectx: property (text), widget (QCheckBox, downloadCheck)
#: rc.cpp:899
#, fuzzy
#| msgid "Maximum download speed"
msgid "Maximum download speed:"
msgstr "Viteza maximă de descărcare"

#. i18n: file: ui/groupsettingsdialog.ui:101
#. i18n: ectx: property (text), widget (QCheckBox, uploadCheck)
#: rc.cpp:905
#, fuzzy
#| msgid "Maximum upload speed"
msgid "Maximum upload speed:"
msgstr "Viteza maximă de încărcare"

#. i18n: file: ui/newtransferwidget.ui:66
#. i18n: ectx: property (text), widget (QLabel, label_2)
#: rc.cpp:917
msgid "Destination:"
msgstr "Destinație:"

#. i18n: file: ui/newtransferwidget.ui:76
#. i18n: ectx: property (text), widget (QLabel, groupLabel)
#: rc.cpp:920
#, fuzzy
#| msgid "Transfers:"
msgid "Transfer group:"
msgstr "Transferuri:"

#. i18n: file: ui/verificationdialog.ui:42
#. i18n: ectx: property (toolTip), widget (KPushButton, verify)
#: rc.cpp:923
msgid "Verify the finished download with the selected checksum."
msgstr ""

#. i18n: file: ui/verificationdialog.ui:45
#. i18n: ectx: property (text), widget (KPushButton, verify)
#: rc.cpp:926
msgid "&Verify"
msgstr ""

#. i18n: file: ui/verificationdialog.ui:71
#. i18n: ectx: property (text), widget (QLabel, label_3)
#: rc.cpp:929
msgid "Verifying:"
msgstr ""

#. i18n: file: ui/kgetui.rc:4
#. i18n: ectx: Menu (file)
#: rc.cpp:932
msgid "&File"
msgstr "&Fișier"

#. i18n: file: ui/kgetui.rc:17
#. i18n: ectx: Menu (Downloads)
#: rc.cpp:935
msgid "&Downloads"
msgstr "&Descărcări"

#. i18n: file: ui/kgetui.rc:34
#. i18n: ectx: Menu (settings)
#: rc.cpp:938
msgid "&Settings"
msgstr "&Configurări"

#. i18n: file: ui/kgetui.rc:38
#. i18n: ectx: Menu (help)
#: rc.cpp:941
msgid "&Help"
msgstr "&Ajutor"

#. i18n: file: ui/kgetui.rc:41
#. i18n: ectx: ToolBar (kget_toolbar)
#: rc.cpp:944
msgid "Main Toolbar"
msgstr "Bara de unelte principală"

#. i18n: file: extensions/konqueror/kget_plug_in.rc:4
#. i18n: ectx: Menu (tools)
#: rc.cpp:947
msgid "&Tools"
msgstr "&Unelte"

#. i18n: file: conf/kget.kcfg:39
#. i18n: ectx: label, entry (ShowSplashscreen), group (Appearance)
#: rc.cpp:950
msgid "Sets to show the splashscreen while KGet is loading"
msgstr ""

#. i18n: file: conf/kget.kcfg:184
#. i18n: ectx: label, entry (HistoryColumnWidths), group (Geometry)
#: rc.cpp:953
msgid "The width of the columns in the history view"
msgstr ""

#. i18n: file: transfer-plugins/mirrorsearch/kget_mirrorsearchfactory.kcfg:12
#. i18n: ectx: label, entry (SearchEnginesNameList), group (SearchEngines)
#. i18n: file: transfer-plugins/checksumsearch/kget_checksumsearchfactory.kcfg:9
#. i18n: ectx: label, entry (SearchStrings), group (ChecksumSearch)
#: rc.cpp:959 rc.cpp:982
msgid "List of the available search engines"
msgstr ""

#. i18n: file: transfer-plugins/mirrorsearch/kget_mirrorsearchfactory.kcfg:16
#. i18n: ectx: label, entry (SearchEnginesUrlList), group (SearchEngines)
#. i18n: file: transfer-plugins/contentfetch/kget_contentfetchfactory.kcfg:13
#. i18n: ectx: label, entry (PathList), group (UserScripts)
#. i18n: file: transfer-plugins/checksumsearch/kget_checksumsearchfactory.kcfg:13
#. i18n: ectx: label, entry (UrlChangeModeList), group (ChecksumSearch)
#. i18n: file: transfer-plugins/checksumsearch/kget_checksumsearchfactory.kcfg:17
#. i18n: ectx: label, entry (ChecksumTypeList), group (ChecksumSearch)
#: rc.cpp:962 rc.cpp:968 rc.cpp:985 rc.cpp:988
msgid "List of the available search engine URLs"
msgstr ""

#. i18n: file: transfer-plugins/contentfetch/kget_contentfetchfactory.kcfg:9
#. i18n: ectx: label, entry (UrlRegexpList), group (UserScripts)
#: rc.cpp:965
msgid "List of the Regexp to match input URL"
msgstr ""

#. i18n: file: transfer-plugins/contentfetch/kget_contentfetchfactory.kcfg:21
#. i18n: ectx: label, entry (DescriptionList), group (UserScripts)
#: rc.cpp:971
msgid "List of descriptions for user scripts"
msgstr ""

#. i18n: file: transfer-plugins/contentfetch/kget_contentfetchfactory.kcfg:25
#. i18n: ectx: label, entry (EnableList), group (UserScripts)
#: rc.cpp:974
msgid "List of whether the script is enabled"
msgstr ""

#, fuzzy
#~| msgid "An error occurred.."
#~ msgid "An error occurred...."
#~ msgstr "A intervenit o eroare..."

#~ msgid "Remove Tag"
#~ msgstr "Elimină marcajul"

#, fuzzy
#~| msgid "Add Tracker"
#~ msgid "Add Tag"
#~ msgstr "Adaugă tracker"

#, fuzzy
#~| msgid "Manage the groups"
#~ msgid "Tag Settings for the groups"
#~ msgstr "Gestionează grupurile"

#, fuzzy
#~| msgctxt "@action"
#~| msgid "Settings"
#~ msgid "Tag Settings"
#~ msgstr "Configurări"

#, fuzzy
#~| msgctxt "Preview available"
#~| msgid "Available"
#~ msgid "Available tags:"
#~ msgstr "Disponibil"

#, fuzzy
#~| msgid "Whether we are interested in downloading from this peer"
#~ msgid "Unable to continue: KGet cannot download using this protocol."
#~ msgstr "Dacă ne interesează descărcarea de la acest partener"

#~ msgid "OK"
#~ msgstr "OK"

#~ msgid "Announcing"
#~ msgstr "Se anunță"

#, fuzzy
#~| msgid "Error: "
#~ msgid "Error: %1"
#~ msgstr "Eroare: "

#~ msgid "Unknown client"
#~ msgstr "Client necunoscut"

#~ msgid "1 day "
#~ msgid_plural "%1 days "
#~ msgstr[0] "1 zi "
#~ msgstr[1] "%1 zile "
#~ msgstr[2] "%1 de zile "

#~ msgid "Cannot open log file %1 : %2"
#~ msgstr "Nu am putut deschide jurnalul %1 : %2"

#~ msgid "Cannot write to %1 : %2"
#~ msgstr "Nu am putut scrie în %1 : %2"

#~ msgid "Cannot read from %1"
#~ msgstr "Nu am putut citi din %1"

#, fuzzy
#~| msgid "Cannot create directory %1: %2"
#~ msgid "Cannot create directory %1"
#~ msgstr "Nu am putut crea directorul %1 : %2"

#~ msgid "Cannot symlink %1 to %2: %3"
#~ msgstr "Nu am putut crea legătura %1 spre %2 : %3"

#~ msgid "Cannot move %1 to %2: %3"
#~ msgstr "Nu am putut muta %1 în %2 : %3"

#~ msgid "Cannot copy %1 to %2: %3"
#~ msgstr "Nu am putut copia %1 în %2 : %3"

#~ msgid "Cannot delete %1: %2"
#~ msgstr "Nu am putut șterge %1 : %2"

#~ msgid "Cannot create %1: %2"
#~ msgstr "Nu am putut crea %1 : %2"

#~ msgid "Cannot calculate the filesize of %1: %2"
#~ msgstr "Nu am putut calcula dimensiunea fișierului %1 : %2"

#~ msgid "Cannot calculate the filesize : %1"
#~ msgstr "Nu am putut calcula dimensiunea fișierului : %1"

#~ msgid "Cannot open %1 : %2"
#~ msgstr "Nu am putut deschide %1 : %2"

#~ msgid "Cannot expand file: %1"
#~ msgstr "Nu am putut expanda fișierul: %1"

#~ msgid "Cannot seek in file : %1"
#~ msgstr "Nu am putut căuta în fișierul: %1"

#~ msgid "General"
#~ msgstr "General"

#, fuzzy
#~| msgid "Connecting"
#~ msgid "Connections"
#~ msgstr "Se conectează"

#, fuzzy
#~| msgid "Trackers"
#~ msgid "Tracker"
#~ msgstr "Trackere"

#~ msgid "Disk Input/Output"
#~ msgstr "Intrări/ieșiri disc"

#~ msgid "Not connected"
#~ msgstr "Neconectat"

#, fuzzy
#~| msgid "No Links"
#~ msgid "Not in use"
#~ msgstr "Nicio legătură"

#~ msgid "Connection closed"
#~ msgstr "Conexiune închisă"

#~ msgid "Resolving proxy %1:%2"
#~ msgstr "Se rezolvă proxy-ul %1:%2"

#~ msgid "Resolving hostname %1"
#~ msgstr "Re rezolvă numele computerului %1"

#~ msgid "Error: request failed: %1"
#~ msgstr "Eroare: cererea a eșuat %1"

#~ msgid "Connected"
#~ msgstr "Conectat"

#~ msgid "Error: Failed to connect to webseed"
#~ msgstr "Eroare: conectarea la sămânța web a eșuat"

#~ msgid "Connecting"
#~ msgstr "Se conectează"

#~ msgid "Failed to connect to webseed"
#~ msgstr "Conectarea la sămânța web a eșuat"

#~ msgid "Failed to resolve hostname of webseed"
#~ msgstr "Rezolvarea numelui pentru computerul seminței web a eșuat"

#~ msgid "Error: failed to connect, server not responding"
#~ msgstr "Eroare: a eșuat conectarea, serverul nu răspunde"

#~ msgid "Error: request timed out"
#~ msgstr "Eroare: cererea a expirat"

#~ msgid "Redirected without a new location."
#~ msgstr "Redirectare fără o locație nouă ! "

#, fuzzy
#~| msgid "%1 peers"
#~ msgid "1 peer"
#~ msgid_plural "%1 peers"
#~ msgstr[0] "%1 parteneri"
#~ msgstr[1] "%1 parteneri"
#~ msgstr[2] "%1 parteneri"

#~ msgid "Illegal token: %1"
#~ msgstr "Element ilegal : %1"

#~ msgid "Decode error"
#~ msgstr "Erroare la decodificare"

#~ msgid "Unexpected end of input"
#~ msgstr "Final neașteptat al intrării"

#~ msgid "Cannot convert %1 to an int"
#~ msgstr "Nu se poate converti %1 la un număr întreg"

#, fuzzy
#~| msgid "Torrent is incomplete!"
#~ msgid "Torrent is incomplete."
#~ msgstr "Torentul este incomplet!"

#~ msgid "Failed to open %1 : %2"
#~ msgstr "Nu am putut deschide %1 : %2"

#~ msgid "Failed to create %1 : %2"
#~ msgstr "Nu am putut crea %1 : %2"

#~ msgid "Cannot open index file %1 : %2"
#~ msgstr "Nu am putut deschide fișierul index %1 : %2"

#~ msgid "Cannot create file %1 : %2"
#~ msgstr "Nu am putut crea fișierul %1 : %2"

#~ msgid "Failed to write first chunk to DND file : %1"
#~ msgstr "Nu am putut scrie prima bucată în fișierul DND: %1"

#~ msgid "Failed to write last chunk to DND file : %1"
#~ msgstr "Nu am putut scrie ultima bucată în fișierul DND: %1"

#~ msgid "Cannot open %1 for writing : readonly filesystem"
#~ msgstr ""
#~ "Nu am putut deschide %1 pentru scriere : sistem de fișiere protejat la "
#~ "scriere."

#~ msgid "Cannot expand file %1 : %2"
#~ msgstr "Nu am putut expanda fișierul %1 : %2"

#~ msgid "Error : Reading past the end of the file %1"
#~ msgstr "Eroare: am depășit capătul fișierului %1"

#~ msgid "Failed to seek file %1 : %2"
#~ msgstr "Am eșuat la căutarea în fișierul %1 : %2"

#~ msgid "Error reading from %1"
#~ msgstr "Eroare la citirea din %1 "

#~ msgid "Failed to write to file %1 : %2"
#~ msgstr "Eroare la scrierea în %1 : %2"

#~ msgid "Cannot preallocate diskspace : %1"
#~ msgstr "Nu am putut prealoca spațiu pe disc : %1"

#~ msgid "Cannot open file %1 : %2"
#~ msgstr "Nu am putut deschide fișierul %1 : %2"

#, fuzzy
#~| msgid "Corrupted torrent!"
#~ msgid "Corrupted torrent."
#~ msgstr "Torent corupt!"

#~ msgid " Unable to open torrent file %1 : %2"
#~ msgstr "Nu am putut deschide torentul %1 : %2"

#~ msgid "Parse Error"
#~ msgstr "Eroare la parcurgere"

#, fuzzy
#~| msgid ""
#~| "An error occurred while loading the torrent <b>%1</b>.<br/>The torrent "
#~| "is probably corrupt or is not a torrent file."
#~ msgid ""
#~ "An error occurred while loading the torrent <b>%1</b>:<br/><b>%2</b><br/"
#~ ">The torrent is probably corrupt or is not a valid torrent file."
#~ msgstr ""
#~ "A apărut o eroare în timpul ce se încărca torentul <b>%1</b>.<br/"
#~ ">Torentul este probabil corupt sau nu este valid."

#, fuzzy
#~| msgid ""
#~| "An error occurred while loading the torrent <b>%1</b>.<br/>The torrent "
#~| "is probably corrupt or is not a torrent file."
#~ msgid ""
#~ "An error occurred while loading the torrent:<br/><b>%1</b><br/>The "
#~ "torrent is probably corrupt or is not a valid torrent file."
#~ msgstr ""
#~ "A apărut o eroare în timpul ce se încărca torentul <b>%1</b>.<br/"
#~ ">Torentul este probabil corupt sau nu este valid."

#~ msgid "Unable to create %1 : %2"
#~ msgstr "Nu am putut crea %1 : %2"

#~ msgid ""
#~ "You are already downloading this torrent %1, the list of trackers of both "
#~ "torrents has been merged."
#~ msgstr ""
#~ "Deja se descarcă acest torent %1, lista trackerelor celor două torente a "
#~ "fost unificată"

#~ msgid "You are already downloading the torrent %1"
#~ msgstr "Acest torent se descarcă deja %1"

#~ msgid "Not started"
#~ msgstr "Nepornit"

#~ msgid "Seeding completed"
#~ msgstr "Încărcare completă"

#, fuzzy
#~| msgid "Seeding"
#~ msgctxt "Status of a torrent file"
#~ msgid "Seeding"
#~ msgstr "Încărcare"

#~ msgid "Downloading"
#~ msgstr "Se descarcă"

#~ msgid "Stopped"
#~ msgstr "Oprit"

#~ msgid "Allocating diskspace"
#~ msgstr "Se alocă spațiu pe disc"

#, fuzzy
#~| msgid "Currently downloading:"
#~ msgid "Queued for downloading"
#~ msgstr "Se descarcă:"

#~ msgid "Checking data"
#~ msgstr "Se verifică datele"

#~ msgid "Stopped. No space left on device."
#~ msgstr "Oprit. Nu a mai rămas spațiu pe disc."

#~ msgid "Cannot open file %1: %2"
#~ msgstr "Nu am putut deschide fișierul %1: %2"

#~ msgid "Cannot create index file: %1"
#~ msgstr "Nu am putut crea fișierul index: %1"

#~ msgid "Redirect without a redirect location"
#~ msgstr "Redirectare fără o locație nouă ! "

#, fuzzy
#~| msgid "Failed to resolve hostname of webseed"
#~ msgid "Unable to resolve hostname %1"
#~ msgstr "Rezolvarea numelui pentru computerul seminței web a eșuat"

#~ msgid "Cannot bind to udp port %1 or the 10 following ports."
#~ msgstr "Nu am putut utiliza portul UDP %1 sau următoarele 10 porturi"

#~ msgid "Invalid response from tracker"
#~ msgstr "Răspuns invalid de la tracker"

#~ msgid "Invalid data from tracker"
#~ msgstr "Date invalide de la tracker"

#~ msgid "Invalid tracker URL"
#~ msgstr "URL invalid pentru tracker"

#~ msgid "Cannot open file : %1 : %2"
#~ msgstr "Nu am putut deschide fișierul:%1:%2"

#, fuzzy
#~| msgid "Group name already in use"
#~ msgid "Group Name Already in Use"
#~ msgstr "Numele grupului se utilizează deja"

#~ msgid "Add"
#~ msgstr "Adaugă"

#~ msgid "Delete"
#~ msgstr "Șterge"

#~ msgid "Configure..."
#~ msgstr "Configurare..."

#~ msgid "Details for: %1"
#~ msgstr "Detalii pentru: %1"

#~ msgid "All downloads"
#~ msgstr "Toate descărcările"

#~ msgid "Finished downloads"
#~ msgstr "Descărcări încheiate"

#~ msgid "Transfers:"
#~ msgstr "Transferuri:"

#~ msgid "Downloads"
#~ msgstr "Descărcări"

#~ msgid "Transfer details:"
#~ msgstr "Detalii transfer:"

#~ msgid "License:"
#~ msgstr "Licență:"

#, fuzzy
#~| msgid "Number of the chunk"
#~ msgid "Name of the license"
#~ msgstr "Numărul bucății"

#, fuzzy
#~| msgid "Number of the chunk"
#~ msgid "URL to the license"
#~ msgstr "Numărul bucății"

#~ msgctxt "The transfer is delayed"
#~ msgid "Delayed"
#~ msgstr "Amînat"

#~ msgid ""
#~ "Destination file \n"
#~ "%1\n"
#~ "already exists.\n"
#~ "Do you want to overwrite it?"
#~ msgstr ""
#~ "Fișierul destinație \n"
#~ "%1\n"
#~ "există deja.\n"
#~ "Doriți să-l suprascrieți?"

#, fuzzy
#~| msgid "Overwrite existing file?"
#~ msgid "Overwrite destination"
#~ msgstr "Suprascrieți fișierul existent?"

#~ msgid "Cannot remove torrent default tracker."
#~ msgstr "Nu se poate șterge trackerul implicit."

#~ msgid "You cannot add trackers to a private torrent"
#~ msgstr "Nu se pot adăuga trackere la un torent privat."

#~ msgid "Cannot migrate %1 : %2"
#~ msgstr "Nu s-a putut migra %1 : %2"

#~ msgid ""
#~ "The torrent %1 was started with a previous version of KTorrent. To make "
#~ "sure this torrent still works with this version of KTorrent, we will "
#~ "migrate this torrent. You will be asked for a location to save the "
#~ "torrent to. If you press cancel, we will select your home directory."
#~ msgstr ""
#~ "Torentul %1 a fost pornit cu o versiune anterioară de KTorrent. Pentru a "
#~ "fi siguri ca torentul va continua să funcționeze cu această versiune de "
#~ "KTorrent, vom migra acest torent. O să vi se ceară o locație pentru a "
#~ "salva torentul. Dacă anulați operația, se va selecta directorul personal."

#~ msgid "Select Folder to Save To"
#~ msgstr "Selectați directorul unde se va salva"

#~ msgid "Queued"
#~ msgstr "În coadă"

#~ msgid "Current Tracker"
#~ msgstr "Tracker curent"

#~ msgid "Manual Announce"
#~ msgstr "Anunț manual"

#, fuzzy
#~| msgid "Score"
#~ msgid "Scrape"
#~ msgstr "Scor"

#~ msgid "Available Trackers"
#~ msgstr "Trackere disponibile"

#, fuzzy
#~| msgctxt "@action"
#~| msgid "Enter URL: "
#~ msgid "Enter an url"
#~ msgstr "Introduceți URL: "

#~ msgctxt "delete selected transfer item"
#~ msgid "Delete Selected"
#~ msgstr "Șterge pe cel ales"

#, fuzzy
#~| msgid "Clear History"
#~ msgid "We are sorry"
#~ msgstr "Curăță istoricul"

#~ msgid "Rename transfer"
#~ msgstr "Redenumește transferul"

#~ msgid "Download URL again?"
#~ msgstr "Descărcați URL-ul din nou?"

#, fuzzy
#~| msgid "File"
#~ msgctxt "file in a filsystem"
#~ msgid "File"
#~ msgstr "Fișier"

#, fuzzy
#~| msgid ""
#~| "Are you sure that you want to remove\n"
#~| "the group named %1?"
#~ msgid "Are you sure that you want to remove all selected groups?"
#~ msgstr ""
#~ "Sigur doriți să eliminați grupul\n"
#~ "cu denumirea %1?"

#~ msgid "Name"
#~ msgstr "Denumire"

#~ msgid "Remaining Time"
#~ msgstr "Timp rămas"

#~ msgid "KGet - Download Manager"
#~ msgstr "KGet - Gestionar descărcări"

#~ msgctxt "@label transfer source"
#~ msgid "Source:"
#~ msgstr "Sursă:"

#, fuzzy
#~| msgid ""
#~| "You will lose all data in these files, are you sure you want to do this ?"
#~ msgid ""
#~ "You will lose all data in these files, are you sure you want to do this?"
#~ msgstr ""
#~ "Veți pierde toate datele din aceste fișiere, sigur doriți să faceți asta?"

#~ msgid "Maintainer, Core Developer"
#~ msgstr "Responsabil, dezvoltator principal"

#~ msgid "Cannot expand file : %1"
#~ msgstr "Nu am putut expanda fișierul : %1"

#~ msgid "Peers"
#~ msgstr "Parteneri"

#~ msgid "Torrent has no announce or nodes field"
#~ msgstr "Torentul nu conține câmpul de anunț sau de noduri"

#, fuzzy
#~| msgid ""
#~| "An error occurred while loading the torrent.<br/>The torrent is probably "
#~| "corrupt or is not a torrent file."
#~ msgid ""
#~ "An error occurred while loading the torrent.\n"
#~ "The torrent is probably corrupt or is not a torrent file."
#~ msgstr ""
#~ "A apărut o eroare în timp ce se încărca torentul.<br/>Torentul este "
#~ "probabil corupt sau nu este valid."

#, fuzzy
#~| msgid "Select all"
#~ msgid "&Select all"
#~ msgstr "Selectează tot"

#~ msgid "&Transfer History..."
#~ msgstr "Istoric &transferuri..."

#, fuzzy
#~| msgid "Downloaded"
#~ msgid "Download Speed:"
#~ msgstr "Descărcat"

#, fuzzy
#~| msgid "Uploaded"
#~ msgid "Upload Speed:"
#~ msgstr "Încărcat"

#~ msgid "&Import links"
#~ msgstr "&Importă legături"

#~ msgid "The group name is empty"
#~ msgstr "Numele grupului e gol"

#, fuzzy
#~| msgid "You can not delete this group!"
#~ msgid "You can not delete this group."
#~ msgstr "Nu puteți șterge acest grup!"

#, fuzzy
#~| msgid "Delete"
#~ msgid "&Delete"
#~ msgstr "Șterge"

#~ msgid "&Cancel"
#~ msgstr "&Renunță"

#~ msgid "Downloading.."
#~ msgstr "Descărcare.."

#~ msgid "Advanced-Details for %1"
#~ msgstr "Detalii avansate pentru %1"

#~ msgctxt "transfer state: downloading"
#~ msgid "Downloading.."
#~ msgstr "Descărcare.."

#~ msgctxt "@label Title in header"
#~ msgid "Webinterface"
#~ msgstr "Interfață web"

#~ msgid "Assigned Peers"
#~ msgstr "Parteneri atribuiți"

#~ msgid "%1 GB"
#~ msgstr "%1 GO"

#~ msgid "%1 MB"
#~ msgstr "%1 MO"

#~ msgid "%1 KB"
#~ msgstr "%1 KO"

#~ msgid "%1 B"
#~ msgstr "%1 O"

#~ msgid "%1 KB/s"
#~ msgstr "%1 KO/s"