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
|
# gconf Romanian translation
# Copyright (C) 2001 - 2004 Free Software Foundation, Inc.
# Robert Claudiu Gheorghe <rgheorghe@writeme.com>, 2001.
# Mişu Moldovan <dumol@go.ro>, 2004 (nasty job translating this...)
#
msgid ""
msgstr ""
"Project-Id-Version: gconf\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2004-08-30 08:45+0100\n"
"PO-Revision-Date: 2004-08-30 01:13+0300\n"
"Last-Translator: Mişu Moldovan <dumol@go.ro>\n"
"Language-Team: Română <gnomero-list@lists.sourceforge.net>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: backends/gconf-merge-tree.c:79
#, c-format
msgid "Cannot find directory %s\n"
msgstr "Nu am găsit directorul „%s”\n"
#: backends/gconf-merge-tree.c:95
#, c-format
msgid "Error saving GConf tree to '%s': %s\n"
msgstr "Eroare la salvarea arborelui GConf în „%s”: %s\n"
#: backends/gconf-merge-tree.c:121
#, c-format
msgid "Usage: %s <dir>\n"
msgstr "Utilizare: %s <dir>\n"
#: backends/gconf-merge-tree.c:127
#, c-format
msgid ""
"Usage: %s <dir>\n"
" Merges a markup backend filesystem hierarchy like:\n"
" dir/%%gconf.xml\n"
" subdir1/%%gconf.xml\n"
" subdir2/%%gconf.xml\n"
" to:\n"
" dir/%%gconf-tree.xml\n"
msgstr ""
"Utilizare: %s <dir>\n"
" Reuneşte o ierarhie selectată de fişiere backend Markup precum:\n"
" dir/%%gconf.xml\n"
" subdir1/%%gconf.xml\n"
" subdir2/%%gconf.xml\n"
" în:\n"
" dir/%%gconf-tree.xml\n"
#: backends/markup-backend.c:163
msgid "Unloading text markup backend module."
msgstr "Descarc modulul backend de selectare text."
#: backends/markup-backend.c:226 backends/xml-backend.c:289
#, c-format
msgid "Couldn't find the XML root directory in the address `%s'"
msgstr "Nu am găsit directorul rădăcină XML la adresa „%s”"
#: backends/markup-backend.c:282 backends/xml-backend.c:344
#, c-format
msgid "Could not make directory `%s': %s"
msgstr "Nu am putut crea directorul „%s”: %s"
#: backends/markup-backend.c:382 backends/xml-backend.c:443
#, c-format
msgid ""
"Can't read from or write to the XML root directory in the address \"%s\""
msgstr "Nu pot citi sau scrie în directorul rădăcină XML la adresa „%s”"
#: backends/markup-backend.c:393 backends/xml-backend.c:453
#, c-format
msgid "Directory/file permissions for XML source at root %s are: %o/%o"
msgstr ""
"Drepturile pentru sursele XML în rădăcina %s sunt: %o/%o (directoare/fişiere)"
#: backends/markup-backend.c:732 backends/xml-backend.c:684
msgid ""
"Remove directory operation is no longer supported, just remove all the "
"values in the directory"
msgstr ""
"Operaţiunea de ştergere directoare nu mai este suportată, ştergeţi toate "
"valorile din acel director"
#: backends/markup-backend.c:818 backends/xml-backend.c:770
#, c-format
msgid "Could not open lock directory for %s to remove locks: %s\n"
msgstr ""
"Nu am reuşit să deschid directorul „lock” al %s pentru a şterge fişierele "
"„lock”: %s\n"
#: backends/markup-backend.c:836 backends/xml-backend.c:788
#, c-format
msgid "Could not remove file %s: %s\n"
msgstr "Nu am reuşit să şterg fişierul „%s”: %s\n"
#: backends/markup-backend.c:857
msgid "Initializing Markup backend module"
msgstr "Iniţializez modulul backend Markup"
#: backends/markup-backend.c:931 backends/xml-backend.c:877
#, c-format
msgid "Failed to give up lock on XML directory \"%s\": %s"
msgstr "Deblocarea directorului XML „%s”: %s a eşuat"
#: backends/markup-tree.c:363
msgid "Failed to write some configuration data to disk\n"
msgstr "Scrierea pe disc a unor date de configurare a eşuat\n"
#: backends/markup-tree.c:800 backends/xml-dir.c:1255
#, c-format
msgid "Could not make directory \"%s\": %s"
msgstr "Nu am reuşit să creez directorul „%s”: %s"
#: backends/markup-tree.c:838 backends/markup-tree.c:845
#, c-format
msgid "Could not remove \"%s\": %s\n"
msgstr "Nu am reuşit să şterg „%s”: %s\n"
#: backends/markup-tree.c:1020
#, c-format
msgid "Failed to write \"%s\": %s\n"
msgstr "Nu am reuşit să scriu „%s”: %s\n"
#: backends/markup-tree.c:1703
#, c-format
msgid "Line %d character %d: %s"
msgstr "Linia %d, caracterul %d: %s"
#: backends/markup-tree.c:1916
#, c-format
msgid "Attribute \"%s\" repeated twice on the same <%s> element"
msgstr "Atributul „%s” s-a repetat de două ori pentru acelaşi element <%s>"
#: backends/markup-tree.c:1933 backends/markup-tree.c:1957
#, c-format
msgid "Attribute \"%s\" is invalid on <%s> element in this context"
msgstr "Atributul „%s” este invalid în acest context pentru elementul <%s>"
#: backends/markup-tree.c:1982 gconf/gconf-value.c:110
#, c-format
msgid "Didn't understand `%s' (expected integer)"
msgstr "Nu am înţeles „%s” (aşteptam un întreg)"
#: backends/markup-tree.c:1989 gconf/gconf-value.c:120
#, c-format
msgid "Integer `%s' is too large or small"
msgstr "Întregul „%s” este prea mare sau prea mic"
#: backends/markup-tree.c:2021 gconf/gconf-value.c:185
#, c-format
msgid "Didn't understand `%s' (expected true or false)"
msgstr "Nu am înţeles „%s” (aşteptam true sau false)"
#: backends/markup-tree.c:2045 gconf/gconf-value.c:141
#, c-format
msgid "Didn't understand `%s' (expected real number)"
msgstr "Nu am înţeles „%s” (aşteptam un număr real)"
#: backends/markup-tree.c:2115 backends/markup-tree.c:2144
#: backends/markup-tree.c:2184 backends/markup-tree.c:2208
#: backends/markup-tree.c:2216 backends/markup-tree.c:2271
#: backends/markup-tree.c:2336 backends/markup-tree.c:2444
#: backends/markup-tree.c:2523 backends/markup-tree.c:2635
#, c-format
msgid "No \"%s\" attribute on element <%s>"
msgstr "Nu există atributul „%s” în elementul <%s>"
#: backends/markup-tree.c:2124
#, c-format
msgid "Unknown value \"%s\" for \"%s\" attribute on element <%s>"
msgstr "Valoare necunoscută „%s” pentru atributul „%s” în elementul <%s>"
#: backends/markup-tree.c:2158
#, c-format
msgid "Invalid ltype \"%s\" on <%s>"
msgstr "„ltype” invalid „%s” în <%s>"
#: backends/markup-tree.c:2238
#, c-format
msgid "Invalid first-element type \"%s\" on <%s>"
msgstr "Tip „first-element” invalid „%s” în „%s”"
#: backends/markup-tree.c:2252
#, c-format
msgid "Invalid cdr_type \"%s\" on <%s>"
msgstr "„cdr_type” invalid „%s” în <%s>"
#: backends/markup-tree.c:2288
#, c-format
msgid "Invalid list_type \"%s\" on <%s>"
msgstr "„list_type” invalid „%s” în <%s>"
#: backends/markup-tree.c:2569
msgid "Two <default> elements below a <local_schema>"
msgstr "Două elemente <default> sub <local_schema>"
#: backends/markup-tree.c:2584
msgid "Two <longdesc> elements below a <local_schema>"
msgstr "Două elemente <longdesc> sub <local_schema>"
#: backends/markup-tree.c:2591
#, c-format
msgid "Element <%s> is not allowed below <%s>"
msgstr "Elementul <%s> nu este permis sub <%s>"
#: backends/markup-tree.c:2615 backends/markup-tree.c:2707
#: backends/markup-tree.c:2761 backends/markup-tree.c:2809
#, c-format
msgid "<%s> provided but current element does not have type %s"
msgstr "S-a returnat <%s>, dar elementul curent nu are tipul %s"
#: backends/markup-tree.c:2685
msgid "Two <car> elements given for same pair"
msgstr "Două elemente <car> returnate pentru aceeaşi pereche"
#: backends/markup-tree.c:2699
msgid "Two <cdr> elements given for same pair"
msgstr "Două elemente <cdr> returnate pentru aceeaşi pereche"
#: backends/markup-tree.c:2753
#, c-format
msgid "<li> has wrong type %s"
msgstr "<li> are tipul greşit %s"
#: backends/markup-tree.c:2782
#, c-format
msgid "<%s> provided but parent <entry> does not have a value"
msgstr "S-a returnat <%s>, dar <entry>-ul părinte nu are o valoare"
#: backends/markup-tree.c:2822 backends/markup-tree.c:2844
#: backends/markup-tree.c:2866 backends/markup-tree.c:2883
#, c-format
msgid "Element <%s> is not allowed inside current element"
msgstr "Elementul <%s> nu este permis înăuntrul elementului curent"
#: backends/markup-tree.c:2915
#, c-format
msgid "Outermost element in menu file must be <gconf> not <%s>"
msgstr "Elementul cel mai în afară în meniu trebuie să fie <gconf>, nu <%s>"
#: backends/markup-tree.c:2935 backends/markup-tree.c:2957
#: backends/markup-tree.c:2962
#, c-format
msgid "Element <%s> is not allowed inside a <%s> element"
msgstr "Elementul <%s> nu este permis înăuntrul unui element <%s>"
#: backends/markup-tree.c:3042
#, c-format
msgid "No text is allowed inside element <%s>"
msgstr "Nu se permite text înăuntrul elementului <%s>"
#: backends/markup-tree.c:3720 backends/markup-tree.c:3734
#, c-format
msgid "Failed to open \"%s\": %s\n"
msgstr "Nu am reuşit să deschid „%s”: %s\n"
#: backends/markup-tree.c:3808
#, c-format
msgid "Error writing file \"%s\": %s"
msgstr "Eroare la scrierea fişierului „%s”: %s"
#: backends/markup-tree.c:3815
#, c-format
msgid "Failed to move temporary file \"%s\" to final location \"%s\": %s"
msgstr "Mutarea fişierului temporar „%s” către locaţia finală „%s” a eşuat: %s"
#: backends/xml-backend.c:240
msgid "Unloading XML backend module."
msgstr "Descarc modulul backend XML."
#: backends/xml-backend.c:619
#, c-format
msgid "Error syncing the XML backend directory cache: %s"
msgstr "Eroare la sincronizarea directorului cache pentru backend-ul XML: %s"
#: backends/xml-backend.c:809
msgid "Initializing XML backend module"
msgstr "Iniţializez modulul backend XML"
#: backends/xml-cache.c:286
msgid "Failed to sync XML cache contents to disk"
msgstr "Scrierea pe disc a conţinutului cache-ului XML a eşuat"
#: backends/xml-cache.c:316
#, c-format
msgid ""
"Unable to remove directory `%s' from the XML backend cache, because it has "
"not been successfully synced to disk"
msgstr ""
"Nu am putut şterge directorul „%s” din memoria tampon a modulului backend "
"XML, deoarece nu a fost scris cu succes pe disc"
#: backends/xml-dir.c:171
#, c-format
msgid "Could not stat `%s': %s"
msgstr "Nu am putut face stat pe „%s”: %s"
#: backends/xml-dir.c:181
#, c-format
msgid "XML filename `%s' is a directory"
msgstr "Fişierul XML „%s” este un director"
#: backends/xml-dir.c:416 backends/xml-dir.c:425
#, c-format
msgid "Failed to delete \"%s\": %s"
msgstr "Nu am reuşit să şterg „%s”: %s"
#: backends/xml-dir.c:471
#, c-format
msgid "Failed to write file `%s': %s"
msgstr "Nu am reuşit să scriu în fişierul „%s”: %s"
#: backends/xml-dir.c:484
#, c-format
msgid "Failed to set mode on `%s': %s"
msgstr "Nu am reuşit să setez modul pentru „%s”: %s"
#: backends/xml-dir.c:494
#, c-format
msgid "Failed to write XML data to `%s': %s"
msgstr "Nu am reuşit să scriu datele XML în „%s”: %s"
#: backends/xml-dir.c:504 backends/xml-dir.c:1279
#, c-format
msgid "Failed to close file `%s': %s"
msgstr "Nu am reuşit să inchid fişierul „%s”: %s"
#: backends/xml-dir.c:520 backends/xml-dir.c:530
#, c-format
msgid "Failed to rename `%s' to `%s': %s"
msgstr "Nu am reuşit să redenumesc „%s” în „%s”: %s"
#: backends/xml-dir.c:536
#, c-format
msgid "Failed to restore `%s' from `%s': %s"
msgstr "Nu am reuşit să refac „%s” din „%s”: %s"
#: backends/xml-dir.c:548
#, c-format
msgid "Failed to delete old file `%s': %s"
msgstr "Nu am reuşit să şterg vechiul fişier „%s”: %s"
#. These are all fatal errors
#: backends/xml-dir.c:978
#, c-format
msgid "Failed to stat `%s': %s"
msgstr "Nu am reuşit să fac stat pe „%s”: %s"
#: backends/xml-dir.c:1152
#, c-format
msgid "Duplicate entry `%s' in `%s', ignoring"
msgstr "Intrare duplicat „%s” în „%s”, o ignor"
#: backends/xml-dir.c:1174
#, c-format
msgid "Entry with no name in XML file `%s', ignoring"
msgstr "Intrare fără nume în fişierul „%s”, o ignor"
#: backends/xml-dir.c:1182
#, c-format
msgid "A toplevel node in XML file `%s' is <%s> rather than <entry>, ignoring"
msgstr ""
"Nodul din nivelul cel mai de sus al fişierului XML „%s” este <%s> în loc de "
"<entry>, îl ignor"
#: backends/xml-dir.c:1271
#, c-format
msgid "Failed to create file `%s': %s"
msgstr "Nu am reuşit să creez fişierul „%s”: %s"
#: backends/xml-dir.c:1370
#, c-format
msgid "Failed to parse XML file \"%s\""
msgstr "Nu am reuşit să prelucrez fişierul XML „%s”"
#. There was an error
#: backends/xml-entry.c:154
#, c-format
msgid "Ignoring XML node with name `%s': %s"
msgstr "Ignor nodul XML cu numele „%s”: %s"
#: backends/xml-entry.c:332
#, c-format
msgid "Ignoring schema name `%s', invalid: %s"
msgstr "Ignor schema cu numele „%s”, invalidă: %s"
#: backends/xml-entry.c:380
#, c-format
msgid "Ignoring XML node `%s': %s"
msgstr "Ignor nodul XML „%s”: %s"
#: backends/xml-entry.c:732
#, c-format
msgid "Failed reading default value for schema: %s"
msgstr "Nu am reuşit să citesc valoarea implicită pentru schema: %s"
#: backends/xml-entry.c:952
#, c-format
msgid "No \"type\" attribute for <%s> node"
msgstr "Nu există atributul „type” pentru nodul <%s>"
#: backends/xml-entry.c:966
#, c-format
msgid "A node has unknown \"type\" attribute `%s', ignoring"
msgstr "Un nod are atributul „type” necunoscut „%s”, il ignor"
#: backends/xml-entry.c:981
msgid "No \"value\" attribute for node"
msgstr "Nu există atributul „value” pentru nod"
#: backends/xml-entry.c:1029 backends/xml-entry.c:1105
#, c-format
msgid "Didn't understand XML node <%s> inside an XML list node"
msgstr "Nu am înţeles nodul XML <%s> în interiorul unei liste de noduri XML"
#: backends/xml-entry.c:1063
msgid "Invalid type (list, pair, or unknown) in a list node"
msgstr "Tip invalid (listă, pereche sau necunoscut) într-o listă de noduri"
#: backends/xml-entry.c:1086
#, c-format
msgid "Bad XML node: %s"
msgstr "Nod XML greşit: %s"
#: backends/xml-entry.c:1094
#, c-format
msgid "List contains a badly-typed node (%s, should be %s)"
msgstr "Lista conţine un nod scris incorect (%s, trebuia să fie %s)"
#: backends/xml-entry.c:1146
#, c-format
msgid "Ignoring bad car from XML pair: %s"
msgstr "Ignor un „car” incorect din perechea XML: %s"
#: backends/xml-entry.c:1155 backends/xml-entry.c:1178
msgid "parsing XML file: lists and pairs may not be placed inside a pair"
msgstr ""
"prelucrez fişierul XML: listele şi perechile pot să nu fie plasate în "
"interiorul unei perechi"
#: backends/xml-entry.c:1168
#, c-format
msgid "Ignoring bad cdr from XML pair: %s"
msgstr "Ignor un „cdr” incorect în perechea XML: %s"
#: backends/xml-entry.c:1187
#, c-format
msgid "Didn't understand XML node <%s> inside an XML pair node"
msgstr "Nu am înţeles nodul XML <%s> în interiorul unui nod pereche "
#: backends/xml-entry.c:1205
msgid "Didn't find car and cdr for XML pair node"
msgstr "Nu am găsit „car” şi „cdr” pentru nodul pereche XML"
#: backends/xml-entry.c:1211
msgid "Missing cdr from pair of values in XML file"
msgstr "Lipseşte „cdr” din perechea de valori în fişierul XML"
#: backends/xml-entry.c:1218
msgid "Missing car from pair of values in XML file"
msgstr "Lipseşte „car” din perechea de valori în fişierul XML"
#: backends/xml-entry.c:1223
msgid "Missing both car and cdr values from pair in XML file"
msgstr "Lipsesc „car” şi „cdr” din perechea de valori în fişierul XML"
#: gconf/gconf-backend.c:57
#, c-format
msgid "`%c' is an invalid character in a configuration storage address"
msgstr "„%c” este un caracter invalid într-o adresă de stocare de configurări"
#. -- end debug only
#: gconf/gconf-backend.c:207
#, c-format
msgid "No such file `%s'\n"
msgstr "Nu există fişierul „%s”\n"
#: gconf/gconf-backend.c:252
#, c-format
msgid "Backend `%s' failed return a vtable\n"
msgstr "Backend-ul „%s” a eşuat returnând un „vtable”\n"
#: gconf/gconf-backend.c:267
#, c-format
msgid "Backend `%s' missing required vtable member `%s'\n"
msgstr "Backend-ul „%s” necesită un membru vtable „%s” care lipseşte\n"
#: gconf/gconf-backend.c:293
#, c-format
msgid "Bad address `%s': %s"
msgstr "Adresă incorectă „%s”: %s"
#: gconf/gconf-backend.c:303
#, c-format
msgid "Bad address `%s'"
msgstr "Adresă incorectă „%s”"
#: gconf/gconf-backend.c:328
msgid "GConf won't work without dynamic module support (gmodule)"
msgstr "GConf nu funcţionează fară suportul pentru module dinamice (gmodule)"
#: gconf/gconf-backend.c:337
#, c-format
msgid "Error opening module `%s': %s\n"
msgstr "Eroare la deschiderea modulului „%s”: %s\n"
#: gconf/gconf-backend.c:348
#, c-format
msgid "Error initializing module `%s': %s\n"
msgstr "Eroare la iniţializarea modulului „%s”: %s\n"
#: gconf/gconf-backend.c:379
#, c-format
msgid "Couldn't locate backend module for `%s'"
msgstr "Nu am putut localiza modulul backend pentru „%s”"
#: gconf/gconf-backend.c:416
msgid "Failed to shut down backend"
msgstr "Oprirea backend-ului a eşuat"
#: gconf/gconf-client.c:344 gconf/gconf-client.c:362
#, c-format
msgid "GConf Error: %s\n"
msgstr "Eroare GConf: %s\n"
#: gconf/gconf-client.c:896
#, c-format
msgid "GConf warning: failure listing pairs in `%s': %s"
msgstr "Atenţionare GConf: eroare la listarea perechilor în „%s”: %s"
#: gconf/gconf-client.c:1181
#, c-format
msgid "Expected `%s' got `%s' for key %s"
msgstr "Aşteptam „%s”, dar am primit „%s” pentru cheia %s"
#: gconf/gconf-database.c:211
msgid "Received invalid value in set request"
msgstr "Valoare invalidă recepţionată la cererea de setare"
#: gconf/gconf-database.c:219
#, c-format
msgid "Couldn't make sense of CORBA value received in set request for key `%s'"
msgstr ""
"Valoare CORBA neinteligibilă recepţionată la cererea de setare pentru cheia "
"„%s”"
#: gconf/gconf-database.c:502
msgid "Received request to drop all cached data"
msgstr ""
"Am primit solicitarea de a abandona toate informaţiile din memoria tampon"
#: gconf/gconf-database.c:519
msgid "Received request to sync synchronously"
msgstr "Am primit solicitarea de actualizare sincronă"
#: gconf/gconf-database.c:807
msgid "Fatal error: failed to get object reference for ConfigDatabase"
msgstr ""
"Eroare fatală: am eşuat în obţinerea unei referinţe către un obiect "
"ConfigDatabase"
#: gconf/gconf-database.c:973
#, c-format
msgid "Failed to sync one or more sources: %s"
msgstr "Nu am reuşit să actualizez una sau mai multe surse: %s"
#: gconf/gconf-database.c:1046
#, c-format
msgid ""
"Error obtaining new value for `%s' after change notification from backend `%"
"s': %s"
msgstr ""
"Eroare la obţinerea unei noi valori pentru „%s” după notificarea de "
"schimbare de la backend-ul %s: %s"
#: gconf/gconf-database.c:1119
#, c-format
msgid ""
"Failed to log addition of listener %s (%s);will not be able to restore this "
"listener on gconfd restart, resulting in unreliable notification of "
"configuration changes."
msgstr ""
"Nu am reuşit să înregistrez adăugarea procesului „listener” %s (%s). Nu voi "
"reuşi să refac acest proces la repornirea gconfd, fapt care va conduce la "
"notificări greşite ale schimbării configurărilor."
#: gconf/gconf-database.c:1153
#, c-format
msgid "Listener ID %lu doesn't exist"
msgstr "ID-ul de proces „listener” %lu nu există"
#: gconf/gconf-database.c:1167
#, c-format
msgid ""
"Failed to log removal of listener to logfile (most likely harmless, may "
"result in a notification weirdly reappearing): %s"
msgstr ""
"Nu am reuşit să înregistrez eliminarea procesului „listener” în fişierul de "
"tip log (probabil fără consecinţe grave, poate conduce la reapariţia unor "
"notificări): %s"
#: gconf/gconf-database.c:1299 gconf/gconf-sources.c:1681
#, c-format
msgid "Error getting value for `%s': %s"
msgstr "Eroare la obţinerea valorii pentru „%s”: %s"
#: gconf/gconf-database.c:1349
#, c-format
msgid "Error setting value for `%s': %s"
msgstr "Eroare la stabilirea valorii pentru „%s”: %s"
#: gconf/gconf-database.c:1397
#, c-format
msgid "Error unsetting `%s': %s"
msgstr "Eroare la resetarea „%s”: %s"
#: gconf/gconf-database.c:1426
#, c-format
msgid "Error getting default value for `%s': %s"
msgstr "Eroare la obţinerea valorii implicite pentru „%s”: %s"
#: gconf/gconf-database.c:1484
#, c-format
msgid "Error unsetting \"%s\": %s"
msgstr "Eroare la resetarea „%s”: %s"
#: gconf/gconf-database.c:1515
#, c-format
msgid "Error getting new value for \"%s\": %s"
msgstr "Eroare la obţinerea unei noi valori pentru „%s”: %s"
#: gconf/gconf-database.c:1570
#, c-format
msgid "Error checking existence of `%s': %s"
msgstr "Eroare la verificarea existenţei „%s”: %s"
#: gconf/gconf-database.c:1594
#, c-format
msgid "Error removing directory \"%s\": %s"
msgstr "Eroare la eliminarea directorului „%s”: %s"
#: gconf/gconf-database.c:1621
#, c-format
msgid "Failed to get all entries in `%s': %s"
msgstr "Nu am reuşit sa obţin toate intrările din „%s”: %s"
#: gconf/gconf-database.c:1647
#, c-format
msgid "Error listing dirs in `%s': %s"
msgstr "Eroare la listarea directoarelor în „%s”: %s"
#: gconf/gconf-database.c:1668
#, c-format
msgid "Error setting schema for `%s': %s"
msgstr "Eroare la stabilirea schemei pentru „%s”: %s"
#: gconf/gconf-error.c:25
msgid "Success"
msgstr "Succes"
#: gconf/gconf-error.c:26
msgid "Failed"
msgstr "Eşec"
#: gconf/gconf-error.c:27
msgid "Configuration server couldn't be contacted"
msgstr "Serverul de configurare nu a putut fi contactat"
#: gconf/gconf-error.c:28
msgid "Permission denied"
msgstr "Interzis"
#: gconf/gconf-error.c:29
msgid "Couldn't resolve address for configuration source"
msgstr "Nu am putut rezolva adresa sursei de configurări"
#: gconf/gconf-error.c:30
msgid "Bad key or directory name"
msgstr "Nume greşit de cheie sau de director"
#: gconf/gconf-error.c:31
msgid "Parse error"
msgstr "Eroare la prelucrare"
#: gconf/gconf-error.c:32
msgid "Corrupt data in configuration source database"
msgstr "Date corupte în baza de date a sursei de configurări"
#: gconf/gconf-error.c:33
msgid "Type mismatch"
msgstr "Tip incorect"
#: gconf/gconf-error.c:34
msgid "Key operation on directory"
msgstr "Operaţie de tip cheie pe director"
#: gconf/gconf-error.c:35
msgid "Directory operation on key"
msgstr "Operaţie de tip director pe cheie"
#: gconf/gconf-error.c:36
msgid "Can't overwrite existing read-only value"
msgstr "Nu pot suprascrie o valoare existentă protejată la scriere"
#: gconf/gconf-error.c:37
msgid "Object Activation Framework error"
msgstr "Eroare la suportul de activare a obiectelor"
#: gconf/gconf-error.c:38
msgid "Operation not allowed without configuration server"
msgstr "Operaţiunea nu este permisă fară un server de configurări"
#: gconf/gconf-error.c:39
msgid "Failed to get a lock"
msgstr "Nu am reuşit să blochez"
#: gconf/gconf-error.c:40
msgid "No database available to save your configuration"
msgstr "Nu este disponibilă nici o bază de date pentru salvarea configurărilor"
#: gconf/gconf-internals.c:86
#, c-format
msgid "No '/' in key \"%s\""
msgstr "Nici un „/” în cheia „%s”"
#: gconf/gconf-internals.c:199
#, c-format
msgid "Invalid UTF-8 in string value in '%s'"
msgstr "String UTF-8 invalid în valoarea şirului din „%s”"
#: gconf/gconf-internals.c:258
msgid "Couldn't interpret CORBA value for list element"
msgstr ""
"Nu am reuşit să interpretez valoarea CORBA pentru elementul de tip listă"
#: gconf/gconf-internals.c:260
#, c-format
msgid "Incorrect type for list element in %s"
msgstr "Tip incorect pentru elementul de tip listă în %s"
#: gconf/gconf-internals.c:273
msgid "Received list from gconfd with a bad list type"
msgstr "Am primit lista de la gconfd cu un tip de listă incorect"
#: gconf/gconf-internals.c:454
msgid "Failed to convert object to IOR"
msgstr "Nu am reuşit să convertesc obiectul in IOR"
#: gconf/gconf-internals.c:591
msgid "Invalid UTF-8 in locale for schema"
msgstr "UTF-8 invalid în „locale” pentru schemă"
#: gconf/gconf-internals.c:599
msgid "Invalid UTF-8 in short description for schema"
msgstr "UTF-8 invalid în descrierea scurtă pentru schemă"
#: gconf/gconf-internals.c:607
msgid "Invalid UTF-8 in long description for schema"
msgstr "UTF-8 invalid în descrierea lungă pentru schemă"
#: gconf/gconf-internals.c:615
msgid "Invalid UTF-8 in owner for schema"
msgstr "UTF-8 invalid în deţinătorul schemei"
#: gconf/gconf-internals.c:838
#, c-format
msgid "Couldn't open path file `%s': %s\n"
msgstr "Nu am reuşit să deschid fişierul „%s”: %s\n"
#: gconf/gconf-internals.c:887
#, c-format
msgid "Adding source `%s'\n"
msgstr "Adaug sursa „%s”\n"
#: gconf/gconf-internals.c:899
#, c-format
msgid "Read error on file `%s': %s\n"
msgstr "Eroare de citire la fişierul „%s”: %s\n"
#: gconf/gconf-internals.c:1235 gconf/gconf-internals.c:1301
#: gconf/gconf-value.c:154 gconf/gconf-value.c:253 gconf/gconf-value.c:395
#: gconf/gconf-value.c:1681
msgid "Text contains invalid UTF-8"
msgstr "Textul conţine UTF-8 invalid"
#: gconf/gconf-internals.c:1386
#, c-format
msgid "Expected list, got %s"
msgstr "Aşteptam o listă, am primit %s"
#: gconf/gconf-internals.c:1396
#, c-format
msgid "Expected list of %s, got list of %s"
msgstr "Aşteptam o listă de %s, am primit o listă de %s"
#: gconf/gconf-internals.c:1524
#, c-format
msgid "Expected pair, got %s"
msgstr "Aşteptam o pereche, am primit %s"
#: gconf/gconf-internals.c:1538
#, c-format
msgid "Expected (%s,%s) pair, got a pair with one or both values missing"
msgstr ""
"Aşteptam o pereche (%s,%s), am primit o pereche cu una sau amândouă valorile "
"lipsă"
#: gconf/gconf-internals.c:1554
#, c-format
msgid "Expected pair of type (%s,%s) got type (%s,%s)"
msgstr "Aşteptam o pereche de tipul (%s,%s), am primit una de tipul (%s,%s)"
#: gconf/gconf-internals.c:1670
msgid "Quoted string doesn't begin with a quotation mark"
msgstr "Şirul de caractere „quoted” nu începe cu ghilimele"
#: gconf/gconf-internals.c:1732
msgid "Quoted string doesn't end with a quotation mark"
msgstr "Şirul de caractere „quoted” nu se termină cu ghilimele"
#: gconf/gconf-internals.c:1868
msgid "Encoded value is not valid UTF-8"
msgstr "Valoarea codată nu este validă UTF-8"
#: gconf/gconf-internals.c:2327
#, c-format
msgid "Could not lock temporary file '%s': %s"
msgstr "Nu am reuşit să blochez fişierul temporar „%s”: %s"
#: gconf/gconf-internals.c:2354
#, c-format
msgid "Could not create file '%s', probably because it already exists"
msgstr "Nu am reuşit să creez fişierul „%s”, probabil există deja"
#: gconf/gconf-internals.c:2400
#, c-format
msgid "Failed to create or open '%s'"
msgstr "Nu am reuşit să creez sau să deschid fişierul „%s”"
#: gconf/gconf-internals.c:2410
#, c-format
msgid ""
"Failed to lock '%s': probably another process has the lock, or your "
"operating system has NFS file locking misconfigured (%s)"
msgstr ""
"Nu am reuşit să blochez „%s”: probabil un alt proces îl ţine blocat sau "
"sistemul de operare este greşit configurat pentru „NFS file locking” (%s)"
#: gconf/gconf-internals.c:2440
#, c-format
msgid "IOR file '%s' not opened successfully, no gconfd located: %s"
msgstr "Fişierul IOR „%s” nu a fost deschis cu succes, nu s-a găsit gconfd: %s"
#: gconf/gconf-internals.c:2470
#, c-format
msgid "gconftool or other non-gconfd process has the lock file '%s'"
msgstr "gconftool sau un alt proces non-gconfd are fişierul „lock” „%s”"
#: gconf/gconf-internals.c:2487
msgid "couldn't contact ORB to resolve existing gconfd object reference"
msgstr ""
"nu am reuşit să contactez ORB pentru a rezolva referinţa existentă pentru "
"obiectul gconfd"
#: gconf/gconf-internals.c:2497
#, c-format
msgid "Failed to convert IOR '%s' to an object reference"
msgstr "Nu am reuşit să convertesc IOR-ul „%s” într-o referinţă obiect"
#: gconf/gconf-internals.c:2547
#, c-format
msgid "couldn't create directory `%s': %s"
msgstr "nu am reuşit să creez directorul „%s”: %s"
#: gconf/gconf-internals.c:2606
#, c-format
msgid "Can't write to file `%s': %s"
msgstr "Nu pot scrie în fişierul „%s”: %s"
#: gconf/gconf-internals.c:2647
#, c-format
msgid "We didn't have the lock on file `%s', but we should have"
msgstr "Nu deţinem fişierul „lock” pentru „%s” deşi aşa ar trebui"
#: gconf/gconf-internals.c:2668
#, c-format
msgid "Failed to link '%s' to '%s': %s"
msgstr "Nu am reuşit să leg „%s” de „%s”: %s"
#: gconf/gconf-internals.c:2680
#, c-format
msgid "Failed to remove lock file `%s': %s"
msgstr "Nu am reuşit să şterg fişierul „lock” „%s”: %s"
#: gconf/gconf-internals.c:2699
#, c-format
msgid "Failed to clean up file '%s': %s"
msgstr "Nu am reuşit să curăţ fişierul „%s”: %s"
#: gconf/gconf-internals.c:2713
#, c-format
msgid "Failed to remove lock directory `%s': %s"
msgstr "Nu am reuşit să şterg directorul „lock” „%s”: %s"
#: gconf/gconf-internals.c:2755
#, c-format
msgid "Failed to unlink lock file %s: %s\n"
msgstr "Nu am reuşit să dezleg fişierul „lock” „%s”: %s\n"
#: gconf/gconf-internals.c:2894 gconf/gconfd.c:541
#, c-format
msgid "Failed to stat %s: %s"
msgstr "Nu am reuşit să fac stat pe „%s”: %s"
#: gconf/gconf-internals.c:2916
#, c-format
msgid "Server ping error: %s"
msgstr "Eroare la ping către server: %s"
#: gconf/gconf-internals.c:2941
#, c-format
msgid "Failed to create pipe for communicating with spawned gconf daemon: %s\n"
msgstr ""
"Nu am reuşit să creez un „pipe” pentru comunicarea cu daemonul gconf creat: %"
"s\n"
#: gconf/gconf-internals.c:2965
#, c-format
msgid "Failed to launch configuration server: %s\n"
msgstr "Nu am reuşit să pornesc serverul configurărilor: %s\n"
#: gconf/gconf-internals.c:2990
#, c-format
msgid ""
"Failed to contact configuration server; some possible causes are that you "
"need to enable TCP/IP networking for ORBit, or you have stale NFS locks due "
"to a system crash. See http://www.gnome.org/projects/gconf/ for information. "
"(Details - %s)"
msgstr ""
"Nu am reuşit să contactez serverul configurărilor. Probabil e nevoie să "
"activaţi facilităţile TCP/IP pentru ORBit. Sau poate aveţi „stale locks” NFS "
"datorită unei blocări a sistemului. Pentru mai multe detalii vizitaţi: "
"http://www.gnome.org/projects/gconf/ (Detalii: %s)"
#: gconf/gconf-internals.c:2991
msgid "none"
msgstr "niciuna"
#: gconf/gconf-sanity-check.c:40 gconf/gconftool.c:88
msgid "Help options"
msgstr "Opţiuni ajutor"
#: gconf/gconf-sanity-check.c:76 gconf/gconftool.c:527
#, c-format
msgid ""
"Error on option %s: %s.\n"
"Run '%s --help' to see a full list of available command line options.\n"
msgstr ""
"Eroare la opţiunea %s: %s.\n"
"Încercaţi „%s --help” pentru lista completă a opţiunilor.\n"
#: gconf/gconf-sanity-check.c:141 gconf/gconf-sanity-check.c:166
#, c-format
msgid ""
"Please contact your system administrator to resolve the following problem:\n"
"Could not open or create the file \"%s\"; this indicates that there may be a "
"problem with your configuration, as many programs will need to create files "
"in your home directory. The error was \"%s\" (errno = %d)."
msgstr ""
"Vă rugăm să contactaţi administratorul de sistem pentru a rezolva următoarea "
"problemă:\n"
"Nu am reuşit să deschid sau să creez fişierul „%s”, ceea ce indică o eroare "
"în configurarea directorului propriu, pentru că multe programe au nevoie să "
"creeze fişiere în directorul „home”. Eroarea a fost „%s” (errno = %d)."
#: gconf/gconf-sanity-check.c:180
#, c-format
msgid ""
"Please contact your system administrator to resolve the following problem:\n"
"Could not lock the file \"%s\"; this indicates that there may be a problem "
"with your operating system configuration. If you have an NFS-mounted home "
"directory, either the client or the server may be set up incorrectly. See "
"the rpc.statd and rpc.lockd documentation. A common cause of this error is "
"that the \"nfslock\" service has been disabled.The error was \"%s\" (errno = "
"%d)."
msgstr ""
"Vă rugăm să contactaţi administratorul de sistem pentru a rezolva următoarea "
"problemă:\n"
"Nu am reuşit să fac „lock” pe fişierul „%s”, ceea ce indică o eroare în "
"configurarea sistemului de operare. Dacă aveţi un director „home” montat "
"prin NFS, clientul sau serverul NFS sunt probabil setate greşit. O cauză des "
"întâlnită a acestei erori constă în dezactivarea serviciului „nfslock”. "
"Eroarea a fost „%s” (errno = %d)."
#: gconf/gconf-sanity-check.c:197
#, c-format
msgid "Can't remove file %s: %s\n"
msgstr "Nu pot şterge fişierul „%s”: %s\n"
#: gconf/gconf-sanity-check.c:233
#, c-format
msgid ""
"Please contact your system administrator to resolve the following problem:\n"
"No configuration sources in the configuration file \"%s\"; this means that "
"preferences and other settings can't be saved. %s%s"
msgstr ""
"Vă rugăm să contactaţi administratorul de sistem pentru a rezolva următoarea "
"problemă:\n"
"Nu există surse de configurare în fişierul de configurare „%s”. Aceasta "
"înseamnă că preferinţele şi alte setări nu pot fi salvate. %s%s"
#: gconf/gconf-sanity-check.c:236
msgid "Error reading the file: "
msgstr "Eroare la citirea fişierului: "
#: gconf/gconf-sanity-check.c:259
#, c-format
msgid ""
"Please contact your system administrator to resolve the following problem:\n"
"Could not resolve the address \"%s\" in the configuration file \"%s\": %s"
msgstr ""
"Vă rugăm să contactaţi administratorul de sistem pentru a rezolva următoarea "
"problemă:\n"
"Nu am reuşit să rezolva adresa „%s” în fişierul de configurare „%s”: %s"
#: gconf/gconf-sanity-check.c:320
msgid ""
"The files that contain your preference settings are currently in use.\n"
"\n"
"You might be logged in to a session from another computer, and the other "
"login session is using your preference settings files.\n"
"\n"
"You can continue to use the current session, but this might cause temporary "
"problems with the preference settings in the other session.\n"
"\n"
"Do you want to continue?"
msgstr ""
"Fişierele ce conţin setările de configurare sunt în uz momentan.\n"
"\n"
"S-ar putea să aveţi o sesiune deschisă de pe un alt calculator, iar acea "
"sesiune să vă blocheze fişierele cu setările de configurare.\n"
"\n"
"Puteţi continua să utilizaţi sesiunea curentă, dar aceasta va provoca "
"probleme temporare cu setările de configurare în cealaltă sesiune deschisă.\n"
"\n"
"Doriţi să continuaţi?"
#: gconf/gconf-sanity-check.c:341
msgid "_Log Out"
msgstr "_Deautentificare"
#: gconf/gconf-sanity-check.c:343
msgid "_Continue"
msgstr "_Continuă"
#: gconf/gconf-sanity-check.c:356
#, c-format
msgid "%s Continue (y/n)?"
msgstr "%s continui (d/n)?"
#: gconf/gconf-schema.c:221 gconf/gconf-schema.c:229 gconf/gconf-schema.c:237
#: gconf/gconf-schema.c:245
msgid "Schema contains invalid UTF-8"
msgstr "Schema conţine UTF-8 invalid"
#: gconf/gconf-schema.c:254
msgid ""
"Schema specifies type list but doesn't specify the type of the list elements"
msgstr "Schema specifică tipul „listă”, dar nu şi tipul listei elementelor"
#: gconf/gconf-schema.c:264
msgid ""
"Schema specifies type pair but doesn't specify the type of the car/cdr "
"elements"
msgstr ""
"Schema specifică tipul „pereche”, dar nu şi tipul elementelor „car” sau „cdr”"
#: gconf/gconf-sources.c:368
#, c-format
msgid "Failed to load source \"%s\": %s"
msgstr "Nu am reuşit să încarc sursa „%s”: %s"
#: gconf/gconf-sources.c:408
#, c-format
msgid ""
"Resolved address \"%s\" to a writable configuration source at position %d"
msgstr ""
"Am rezolvat adresa „%s” la poziţia %d într-o sursă de configurări ce poate "
"fi scrisă"
#: gconf/gconf-sources.c:414
#, c-format
msgid ""
"Resolved address \"%s\" to a read-only configuration source at position %d"
msgstr ""
"Am rezolvat adresa „%s” la poziţia %d într-o sursă de configurări protejată "
"la scriere"
#: gconf/gconf-sources.c:421
#, c-format
msgid ""
"Resolved address \"%s\" to a partially writable config source at position %d"
msgstr ""
"Am rezolvat adresa „%s” la poziţia %d într-o sursă de configurări parţial "
"protejată la scriere"
#: gconf/gconf-sources.c:430
msgid ""
"None of the resolved addresses are writable; saving configuration settings "
"will not be possible"
msgstr ""
"Niciuna dintre adresele rezolvate nu poate fi scrisă. Salvarea "
"configurărilor nu este posibilă"
#: gconf/gconf-sources.c:647
#, c-format
msgid "Schema `%s' specified for `%s' stores a non-schema value"
msgstr ""
"Schema „%s” specificată pentru „%s” conţine o valoare de tip non-schemă"
#: gconf/gconf-sources.c:709
msgid "The '/' name can only be a directory, not a key"
msgstr "Numele „/” poate fi doar un director, nu o cheie"
#: gconf/gconf-sources.c:751
#, c-format
msgid ""
"Value for `%s' set in a read-only source at the front of your configuration "
"path"
msgstr ""
"Valoarea pentru „%s” este setată într-o sursă protejată la scriere în faţa "
"căii de configurare"
#: gconf/gconf-sources.c:763
#, c-format
msgid ""
"Unable to store a value at key '%s', as the configuration server has no "
"writable databases. There are some common causes of this problem: 1) your "
"configuration path file %s/path doesn't contain any databases or wasn't "
"found 2) somehow we mistakenly created two gconfd processes 3) your "
"operating system is misconfigured so NFS file locking doesn't work in your "
"home directory or 4) your NFS client machine crashed and didn't properly "
"notify the server on reboot that file locks should be dropped. If you have "
"two gconfd processes (or had two at the time the second was launched), "
"logging out, killing all copies of gconfd, and logging back in may help. If "
"you have stale locks, remove ~/.gconf*/*lock. Perhaps the problem is that "
"you attempted to use GConf from two machines at once, and ORBit still has "
"its default configuration that prevents remote CORBA connections - put "
"\"ORBIIOPIPv4=1\" in /etc/orbitrc. As always, check the user.* syslog for "
"details on problems gconfd encountered. There can only be one gconfd per "
"home directory, and it must own a lockfile in ~/.gconfd and also lockfiles "
"in individual storage locations such as ~/.gconf"
msgstr ""
"Nu am reuşit să stochez valoarea în cheia „%s” deoarece serverul de "
"configurare nu are baze de date în care să pot scrie. Cauze posibile pentru "
"această probleme pot fi: 1) fişierul de configurare %s/path nu conţine nici "
"o bază de date sau nu a fost găsit 2) există două procese gconfd 3) sistemul "
"de operare este greşit configurat şi NFS file locking nu funcţionează pentru "
"directorul „home” 4) sistemul e un client NFS care tocmai a fost restartat "
"după o blocare şi nu a notificat serverul că lock-urile fişierelor trebuie "
"reiniţializate. Dacă aveţi două procese gconfd (sau aveaţi două la momentul "
"în care al doilea a fost lansat), o deautentificare, un „kill” pentru toate "
"instanţele gconfd şi o nouă autentificare ar putea să ajute. Dacă nu aveţi "
"fişiere lock invalide, ştergeţi ~/.gconf*/*lock. Poate problema constă în "
"faptul că încercaţi să utilizaţi GConf de pe două maşini diferite şi ORBit "
"încă are setările imlicite ce nu permit conexiuni CORBA la distanţă (scrieţi "
"„ORBIIOPIPv4=1” în /etc/orbitrc. De asemenea, verificaţi fişierele syslog "
"user.* pentru depanarea problemelor gconfd. Nu poate exista decât un singur "
"gconfd pentru un director „home” şi el trebuie să deţină un fişier lock în "
"~/.gconfd şi alte fişiere lock în locaţii precum ~/.gconf"
#: gconf/gconf-sources.c:1554
#, c-format
msgid "Error finding metainfo: %s"
msgstr "Eroare la căutarea metainfo: %s"
#: gconf/gconf-sources.c:1623
#, c-format
msgid "Error getting metainfo: %s"
msgstr "Eroare la obţinerea metainfo: %s"
#: gconf/gconf-sources.c:1647
#, c-format
msgid "Key `%s' listed as schema for key `%s' actually stores type `%s'"
msgstr ""
"Cheia „%s” listată ca schemă pentru cheia „%s” de fapt conţine tipul „%s”"
#: gconf/gconf-value.c:261
#, c-format
msgid "Didn't understand `%s' (list must start with a '[')"
msgstr "Nu am înţeles „%s” (lista trebuie să înceapă cu un „[”)"
#: gconf/gconf-value.c:274
#, c-format
msgid "Didn't understand `%s' (list must end with a ']')"
msgstr "Nu am înţeles „%s” (lista trebuie să se termine cu un „]”)"
#: gconf/gconf-value.c:325
#, c-format
msgid "Didn't understand `%s' (extra unescaped ']' found inside list)"
msgstr "Nu am înţeles „%s” (în interiorul listei am găsit un „]” unescaped)"
#: gconf/gconf-value.c:356 gconf/gconf-value.c:517
#, c-format
msgid "Didn't understand `%s' (extra trailing characters)"
msgstr "Nu am înţeles „%s” (caractere suplimentare la sfârşit)"
#: gconf/gconf-value.c:403
#, c-format
msgid "Didn't understand `%s' (pair must start with a '(')"
msgstr "Nu am înţeles „%s” (perechile trebuie să înceapă cu „(”)"
#: gconf/gconf-value.c:416
#, c-format
msgid "Didn't understand `%s' (pair must end with a ')')"
msgstr "Nu am înţeles „%s” (perechile trebuie să se termine cu „)”)"
#: gconf/gconf-value.c:446 gconf/gconf-value.c:532
#, c-format
msgid "Didn't understand `%s' (wrong number of elements)"
msgstr "Nu am înţeles „%s” (număr greşit de elemente)"
#: gconf/gconf-value.c:486
#, c-format
msgid "Didn't understand `%s' (extra unescaped ')' found inside pair)"
msgstr "Nu am înţeles „%s” (în interiorul listei am găsit un „)” „unescaped”)"
#: gconf/gconf.c:55
#, c-format
msgid "Key \"%s\" is NULL"
msgstr "Cheia „%s” este NULL"
#: gconf/gconf.c:62
#, c-format
msgid "\"%s\": %s"
msgstr "„%s”: %s"
#: gconf/gconf.c:381
#, c-format
msgid "Server couldn't resolve the address `%s'"
msgstr "Serverul nu a putut rezolva adresa „%s”"
#: gconf/gconf.c:759
msgid "Can't add notifications to a local configuration source"
msgstr "Nu pot adăuga notificări unei surse locale de configurări"
#: gconf/gconf.c:2222
#, c-format
msgid "Adding client to server's list failed, CORBA error: %s"
msgstr "A eşuat adăugarea unui client la lista serverului, eroare CORBA: %s"
#: gconf/gconf.c:2585
msgid "Must begin with a slash (/)"
msgstr "Trebuie să inceapă cu un slash (/)"
#: gconf/gconf.c:2607
msgid "Can't have two slashes (/) in a row"
msgstr "Nu pot avea două slash-uri (/) pe un rând"
#: gconf/gconf.c:2609
msgid "Can't have a period (.) right after a slash (/)"
msgstr "Nu pot avea punct (.) imediat după un slash (/)"
#: gconf/gconf.c:2628
#, c-format
msgid "'%c' is not an ASCII character, so isn't allowed in key names"
msgstr "„%c” nu este caracter ASCII, deci nu este permis în numele cheilor"
#: gconf/gconf.c:2638
#, c-format
msgid "`%c' is an invalid character in key/directory names"
msgstr "„%c” este un caracter invalid in numele cheii sau al directorului"
#: gconf/gconf.c:2652
msgid "Key/directory may not end with a slash (/)"
msgstr "Cheia sau directorul nu se pot termina cu un slash (/)"
#: gconf/gconf.c:3021
#, c-format
msgid "Failure shutting down config server: %s"
msgstr "Încercarea de a închide serverul configurărilor a eşuat: %s"
#: gconf/gconf.c:3082
#, c-format
msgid "Expected float, got %s"
msgstr "Aşteptam o valoare „float”, am obţinut %s"
#: gconf/gconf.c:3117
#, c-format
msgid "Expected int, got %s"
msgstr "Aşteptam o valoare „int”, am obţinut %s"
#: gconf/gconf.c:3152
#, c-format
msgid "Expected string, got %s"
msgstr "Aşteptam un şir, am obţinut %s"
#: gconf/gconf.c:3186
#, c-format
msgid "Expected bool, got %s"
msgstr "Aşteptam o valoare booleană, am obţinut %s"
#: gconf/gconf.c:3219
#, c-format
msgid "Expected schema, got %s"
msgstr "Aşteptam o schemă, am obţinut %s"
#: gconf/gconf.c:3576
#, c-format
msgid "CORBA error: %s"
msgstr "Eroare CORBA: %s"
#: gconf/gconfd.c:298
msgid "Shutdown request received"
msgstr "S-a primit o cerere de închidere"
#: gconf/gconfd.c:330
msgid ""
"gconfd compiled with debugging; trying to load gconf.path from the source "
"directory"
msgstr ""
"gconfd a fost compilat cu opţiuni de depanare, încerc să încarc gconf.path "
"din directorul sursă"
#: gconf/gconfd.c:344
#, c-format
msgid ""
"No configuration files found, trying to use the default config source `%s'"
msgstr ""
"Nu s-a găsit nici un fişier cu configurări, încerc să utilizez sursa de "
"configurări implicită „%s”"
#. We want to stay alive but do nothing, because otherwise every
#. request would result in another failed gconfd being spawned.
#.
#: gconf/gconfd.c:352
#, c-format
msgid ""
"No configuration sources in the source path, configuration won't be saved; "
"edit %s"
msgstr ""
"Nici o sursă de configurări în calea surselor, configurarea nu va fi "
"salvată, editaţi %s"
#: gconf/gconfd.c:365
#, c-format
msgid "Error loading some config sources: %s"
msgstr "Eroare la încărcarea unor fişiere cu configurări: %s"
#: gconf/gconfd.c:377
msgid ""
"No config source addresses successfully resolved, can't load or store config "
"data"
msgstr ""
"Nu s-a rezolvat cu succes nici o adresă a unei surse de configurări. Nu pot "
"încărca sau salva datele de configurare"
#: gconf/gconfd.c:394
msgid ""
"No writable config sources successfully resolved, may not be able to save "
"some configuration changes"
msgstr ""
"Nici o sursă de configurare neprotejată la scriere nu a fost rezolvată cu "
"succes. S-ar putea să nu pot salva unele schimbări ale configurărilor"
#: gconf/gconfd.c:420
#, c-format
msgid "Received signal %d, dumping core. Please report a GConf bug."
msgstr "Am primit semnalul %d, scriu fişierul „core”. Raportaţi bug-ul GConf."
#: gconf/gconfd.c:438
#, c-format
msgid ""
"Received signal %d, shutting down abnormally. Please file a GConf bug report."
msgstr "Am primit semnalul %d, închidere anormală. Raportaţi bug-ul GConf."
#: gconf/gconfd.c:454
#, c-format
msgid "Received signal %d, shutting down cleanly"
msgstr "Am primit semnalul %d, închid normal"
#: gconf/gconfd.c:534
#, c-format
msgid "Failed to open %s: %s"
msgstr "Nu am reuşit să deschid %s: %s"
#: gconf/gconfd.c:550
#, c-format
msgid "Owner of %s is not the current user"
msgstr "Deţinătorul %s nu este utilizatorul curent"
#: gconf/gconfd.c:558
#, c-format
msgid "Bad permissions %lo on directory %s"
msgstr "Drepturi greşite %lo pentru directorul %s"
#. openlog() does not copy logname - what total brokenness.
#. So we free it at the end of main()
#: gconf/gconfd.c:640
#, c-format
msgid "starting (version %s), pid %u user '%s'"
msgstr "încep (versiunea %s), pid %u utilizator „%s”"
#: gconf/gconfd.c:680
msgid "Failed to get object reference for ConfigServer"
msgstr "Nu am reuşit să obţin o referinţă obiect pentru „ConfigServer”"
#: gconf/gconfd.c:693
#, c-format
msgid "Failed to create %s: %s"
msgstr "Nu am reuşit să creez %s: %s"
#: gconf/gconfd.c:700
#, c-format
msgid "Directory %s has a problem, gconfd can't use it"
msgstr "Directorul %s are o problemă, gcond nu poate să-l utilizeze"
#: gconf/gconfd.c:729
#, c-format
msgid ""
"Failed to write byte to pipe file descriptor %d so client program may hang: %"
"s"
msgstr ""
"Nu am reuşit să scriu octetul către descriptorul fişierului „pipe” %d. "
"Programul client s-ar putea să se blocheze: %s"
#: gconf/gconfd.c:739
#, c-format
msgid "Failed to get lock for daemon, exiting: %s"
msgstr "Încercarea de obţine un fişier „lock” pentru daemon a eşuat. Ies: %s"
#: gconf/gconfd.c:777
#, c-format
msgid "Error releasing lockfile: %s"
msgstr "Eroarea la eliminarea fişierului „lock”: %s"
#: gconf/gconfd.c:785
msgid "Exiting"
msgstr "Ies"
#: gconf/gconfd.c:806
msgid "SIGHUP received, reloading all databases"
msgstr "SIGHUP recepţionat, reîncarc toate bazele de date"
#: gconf/gconfd.c:823
msgid "GConf server is not in use, shutting down."
msgstr "Serverul GConf nu este în, închid."
#: gconf/gconfd.c:1142
#, c-format
msgid "Error obtaining new value for `%s': %s"
msgstr "Eroare la obţinerea unei valori noi pentru „%s”: %s"
#: gconf/gconfd.c:1262
#, c-format
msgid "Returning exception: %s"
msgstr "Returnez excepţia: %s"
#: gconf/gconfd.c:1362
#, c-format
msgid ""
"Failed to open gconfd logfile; won't be able to restore listeners after "
"gconfd shutdown (%s)"
msgstr ""
"Nu am reuşit să deschid fişierul înregistrărilor gconfd. Nu voi putea "
"restaura fişierele „listener” după închiderea gconfd (%s)"
#: gconf/gconfd.c:1397
#, c-format
msgid ""
"Failed to close gconfd logfile; data may not have been properly saved (%s)"
msgstr ""
"Nu am reuşit să închid fişierul înregistrărilor gconfd. S-ar putea ca unele "
"date să nu fi fost salvate corect (%s)"
#: gconf/gconfd.c:1459
#, c-format
msgid "Could not open saved state file '%s' for writing: %s"
msgstr ""
"Nu am reuşit să deschid pentru scriere fişierul cu starea salvată „%s”: %s"
#: gconf/gconfd.c:1473
#, c-format
msgid "Could not write saved state file '%s' fd: %d: %s"
msgstr "Nu pot scrie în fişierul cu starea salvată „%s” fd: %d: %s"
#: gconf/gconfd.c:1482
#, c-format
msgid "Failed to close new saved state file '%s': %s"
msgstr "Nu am reuşit să închid noul fişier de salvare stării „%s”: %s"
#: gconf/gconfd.c:1496
#, c-format
msgid "Could not move aside old saved state file '%s': %s"
msgstr "Nu pot înlătura vechiul fişier de salvare a stării „%s”: %s"
#: gconf/gconfd.c:1506
#, c-format
msgid "Failed to move new save state file into place: %s"
msgstr "Nu am reuşit să mut noul fişier de salvare a stării la locul său: %s"
#: gconf/gconfd.c:1515
#, c-format
msgid ""
"Failed to restore original saved state file that had been moved to '%s': %s"
msgstr ""
"Nu am reuşit să restaurez fişierul original de salvare a stării. A fost "
"mutat în „%s”: %s"
#: gconf/gconfd.c:1994
#, c-format
msgid ""
"Unable to restore a listener on address '%s', couldn't resolve the database"
msgstr ""
"Nu am reuşit să restaurez un „listener” la adresa „%s”. Nu am reuşit să "
"rezolva baza de date."
#: gconf/gconfd.c:2040
#, c-format
msgid "Error reading saved state file: %s"
msgstr "Eroare la citirea fişierului cu starea salvată: %s"
#: gconf/gconfd.c:2094
#, c-format
msgid "Unable to open saved state file '%s': %s"
msgstr "Nu reuşesc să deschid fişierul de salvare a stării „%s”: %s"
#: gconf/gconfd.c:2213
#, c-format
msgid ""
"Failed to log addition of listener to gconfd logfile; won't be able to re-"
"add the listener if gconfd exits or shuts down (%s)"
msgstr ""
"Nu am reuşit să înregistrez un „listener” în fişierul gconfd. Nu voi reuşi "
"să readaug acest „listener” dacă gconfd iese sau este închis (%s)"
#: gconf/gconfd.c:2218
#, c-format
msgid ""
"Failed to log removal of listener to gconfd logfile; might erroneously re-"
"add the listener if gconfd exits or shuts down (%s)"
msgstr ""
"Nu am reuşit să înregistrez eliminarea unui „listener” în fişierul gconf. S-"
"ar putea să readaug eronat acest „listener” dacă gconfd iese sau este închis "
"(%s)"
#: gconf/gconfd.c:2241 gconf/gconfd.c:2415
#, c-format
msgid "Failed to get IOR for client: %s"
msgstr "Nu am reuşit sa obţin IOR pentru un client: %s"
#: gconf/gconfd.c:2256
#, c-format
msgid "Failed to open saved state file: %s"
msgstr "Nu am reuşit să deschid fişierul de salvare a stării: %s"
#: gconf/gconfd.c:2269
#, c-format
msgid "Failed to write client add to saved state file: %s"
msgstr ""
"Nu am reuşit să scriu adăugarea unui client în fişierul de salvare a stării: "
"%s"
#: gconf/gconfd.c:2277
#, c-format
msgid "Failed to flush client add to saved state file: %s"
msgstr ""
"Nu am reuşit să finalizez adăugarea unui client în fişierul de salvare a "
"stării: %s"
#: gconf/gconfd.c:2376
msgid ""
"Some client removed itself from the GConf server when it hadn't been added."
msgstr ""
"Un client a încercat să se şteargă de pe serverul GConf, deşi nu a fost "
"adăugat"
#: gconf/gconftool.c:97
msgid "Set a key to a value and sync. Use with --type."
msgstr ""
"Setează o cheie la o anumită valoare şi sincronizează. Se utilizează cu --"
"type."
#: gconf/gconftool.c:106
msgid "Print the value of a key to standard output."
msgstr "Arată valoarea unei chei în ieşirea standard."
#: gconf/gconftool.c:115
msgid ""
"Set a schema and sync. Use with --short-desc, --long-desc, --owner, and --"
"type."
msgstr ""
"Setează o schemă şi sincronizează. Se utilizează cu --short-desc, --long-"
"desc, --owner şi --type."
#: gconf/gconftool.c:125
msgid "Unset the keys on the command line"
msgstr "Resetează chei din linia de comandă"
#: gconf/gconftool.c:134
msgid ""
"Recursively unset all keys at or below the key/directory names on the "
"command line"
msgstr ""
"Resetează recursiv toate cheile din sau dedesubtul cheii sau directorului "
"din linia de comandă"
#: gconf/gconftool.c:143
msgid "Print all key/value pairs in a directory."
msgstr "Arată toate perechile de chei/valori dintr-un director."
#: gconf/gconftool.c:152
msgid "Print all subdirectories in a directory."
msgstr "Arată toate subdirectoarele dintr-un director."
#: gconf/gconftool.c:161
msgid ""
"Dump to standard output an XML description of all entries under a directory, "
"recursively."
msgstr ""
"Arată în ieşirea standard o descriere XML a tuturor intrărilor dintr-un "
"director, recursiv"
#: gconf/gconftool.c:170
msgid ""
"Load from the specified file an XML description of values and set them "
"relative to a directory."
msgstr ""
"Încarcă din fişierul specificat o descriere XML a valorilor şi setează-le "
"relativ la un director."
#: gconf/gconftool.c:179
msgid "Unload a set of values described in an XML file."
msgstr "Descarcă un set de valori descris în fişierul XML."
#: gconf/gconftool.c:188
msgid "Print all subdirectories and entries under a directory, recursively."
msgstr "Arată toate subdirectoarele şi intrările dintr-un director, recursiv."
#: gconf/gconftool.c:197
msgid "Return 0 if the directory exists, 2 if it does not."
msgstr "Returnează 0 dacă directorul există şi 2 dacă nu există."
#: gconf/gconftool.c:206
msgid "Shut down gconfd. DON'T USE THIS OPTION WITHOUT GOOD REASON."
msgstr "Închide gconfd. NU UTILIZAŢI ACEASTĂ OPŢIUNE FĂRĂ UN MOTIV ÎNTEMEIAT."
#: gconf/gconftool.c:215
msgid "Return 0 if gconfd is running, 2 if not."
msgstr "Returneaza 0 dacă gconfd este pornit, 2 dacă nu."
#: gconf/gconftool.c:224
msgid ""
"Launch the config server (gconfd). (Normally happens automatically when "
"needed.)"
msgstr ""
"Porneşte serverul configurărilor (gconfd). (În mod obişnuit se porneşte "
"automat la nevoie.)"
#: gconf/gconftool.c:233
msgid ""
"Specify the type of the value being set, or the type of the value a schema "
"describes. Unique abbreviations OK."
msgstr ""
"Specifică tipul valorii setate sau tipul valorii descrise de o schemă. "
"Abrevierile unice sunt OK."
#: gconf/gconftool.c:234
msgid "int|bool|float|string|list|pair"
msgstr "int|bool|float|string|list|pair"
#: gconf/gconftool.c:242
msgid "Print the data type of a key to standard output."
msgstr "Arată tipul datelor dintr-o cheie în ieşirea standard."
#: gconf/gconftool.c:251
msgid "Get the number of elements in a list key."
msgstr "Obţine numărul elementelor dintr-o listă de chei"
#: gconf/gconftool.c:260
msgid "Get a specific element from a list key, numerically indexed."
msgstr "Obţine un element anume dintr-o listă de chei indexată numeric."
#: gconf/gconftool.c:269
msgid ""
"Specify the type of the list value being set, or the type of the value a "
"schema describes. Unique abbreviations OK."
msgstr ""
"Specifică tipul valorii listei setate sau tipul valorii descrise de schemă. "
"Abrevierile unice sunt OK."
#: gconf/gconftool.c:270 gconf/gconftool.c:279 gconf/gconftool.c:288
msgid "int|bool|float|string"
msgstr "int|bool|float|string"
#: gconf/gconftool.c:278
msgid ""
"Specify the type of the car pair value being set, or the type of the value a "
"schema describes. Unique abbreviations OK."
msgstr ""
"Specifică tipul perechii „car” setată sau tipul valorii descrise de schemă. "
"Abrevierile unice sunt OK."
#: gconf/gconftool.c:287
msgid ""
"Specify the type of the cdr pair value being set, or the type of the value a "
"schema describes. Unique abbreviations OK."
msgstr ""
"Specifică tipul valorii perechii „cdr” setate sau tipul valorii descrise de "
"schemă. Abrevierile unice sunt OK."
#: gconf/gconftool.c:296
msgid "Specify a short half-line description to go in a schema."
msgstr ""
"Specifiă o scurtă descriere de o jumătate de rând ce va intra în schemă."
#: gconf/gconftool.c:297 gconf/gconftool.c:306
msgid "DESCRIPTION"
msgstr "DESCRIERE"
#: gconf/gconftool.c:305
msgid "Specify a several-line description to go in a schema."
msgstr "Specifiă o descriere de câteva rânduri ce va intra în schemă."
#: gconf/gconftool.c:314
msgid "Specify the owner of a schema"
msgstr "Specifică deţinătorul schemei"
#: gconf/gconftool.c:315
msgid "OWNER"
msgstr "DEŢINĂTOR"
#: gconf/gconftool.c:323
msgid "Specify a schema file to be installed"
msgstr "Specifică un fişier schemă ce va fi instalat"
#: gconf/gconftool.c:324
msgid "FILENAME"
msgstr "NUME_FIŞIER"
#: gconf/gconftool.c:332
msgid "Specify a configuration source to use rather than the default path"
msgstr "Specifică o sursă de configurări de utilizat în locul căii implicite"
#: gconf/gconftool.c:333
msgid "SOURCE"
msgstr "SURSĂ"
#: gconf/gconftool.c:341
msgid ""
"Access the config database directly, bypassing server. Requires that gconfd "
"is not running."
msgstr ""
"Accesează baza de date cu configurări direct, evitând serverul. Necesită ca "
"gconfd să nu fie pornit."
#: gconf/gconftool.c:350
msgid ""
"Properly installs schema files on the command line into the database. "
"GCONF_CONFIG_SOURCE environment variable should be set to a non-default "
"config source or set to the empty string to use the default."
msgstr ""
"Instalează corect fişiere schemă în baza de date din linia de comandă. "
"Variabila de mediu GCONF_CONFIG_SOURCE trebuie setată către o sursă de "
"configurări neimplicită sau setată cu o valoare nulă pentru a utiliza sursa "
"implicită."
#: gconf/gconftool.c:359
msgid ""
"Properly uninstalls schema files on the command line from the database. "
"GCONF_CONFIG_SOURCE environment variable should be set to a non-default "
"config source or set to the empty string to use the default."
msgstr ""
"Dezinstalează corect fişiere schemă din baza de date în linia de comandă. "
"Variabila de mediu GCONF_CONFIG_SOURCE trebuie setată către o sursă de "
"configurări neimplicită sau setată cu o valoare nulă pentru a utiliza sursa "
"implicită."
#: gconf/gconftool.c:368
msgid ""
"Torture-test an application by setting and unsetting a bunch of values of "
"different types for keys on the command line."
msgstr ""
"Testează intensiv o aplicaţie setându-i şi resetându-i din linia de comandă "
"o sumă de valori de diferite tipuri pentru cheile sale."
#: gconf/gconftool.c:377
msgid ""
"Torture-test an application by setting and unsetting a bunch of keys inside "
"the directories on the command line."
msgstr ""
"Testează intensiv o aplicaţie setându-i şi resetându-i din linia de comandă "
"o sumă de chei din diferite directoare."
#: gconf/gconftool.c:386
msgid "Get the short doc string for a key"
msgstr "Obţine şirul lung de descriere pentru o cheie"
#: gconf/gconftool.c:395
msgid "Get the long doc string for a key"
msgstr "Obţine şirul scurt de descriere pentru o cheie"
#: gconf/gconftool.c:404
msgid "Get the name of the schema applied to this key"
msgstr "Obţine numele schemei aplicate acestei chei"
#: gconf/gconftool.c:413
msgid "Specify the schema name followed by the key to apply the schema name to"
msgstr ""
"Specifică numele schemei urmat de cheia căreia i se va aplica numeleschemei"
#: gconf/gconftool.c:422
msgid "Remove any schema name applied to the given keys"
msgstr "Şterge orice nume de schemă aplicat cheilor date"
#: gconf/gconftool.c:431
msgid "Ignore schema defaults when reading values."
msgstr "Ignoră setările implicite ale schemei la citirea valorilor."
#: gconf/gconftool.c:440
msgid "Get the name of the default source"
msgstr "Obţine numele sursei implicite"
#: gconf/gconftool.c:449
msgid "Print version"
msgstr "Arată versiunea"
#: gconf/gconftool.c:545
msgid "Can't get and set/unset simultaneously\n"
msgstr "Nu pot obţine şi seta/reseta în acelaşi timp\n"
#: gconf/gconftool.c:555
msgid "Can't set and get/unset simultaneously\n"
msgstr "Nu pot seta şi obţine/reseta în acelaşi timp\n"
#: gconf/gconftool.c:562
msgid "Can't get type and set/unset simultaneously\n"
msgstr "Nu pot obţine tipul şi seta/reseta în acelaşi timp\n"
#: gconf/gconftool.c:573
msgid "Can't use --all-entries with --get or --set\n"
msgstr "Nu se poate utiliza --all-entries cu --get sau --set\n"
#: gconf/gconftool.c:584
msgid "Can't use --all-dirs with --get or --set\n"
msgstr "Nu se poate utiliza --all-dirs cu --get sau --set\n"
#: gconf/gconftool.c:597
msgid ""
"--recursive-list should not be used with --get, --set, --unset, --all-"
"entries, or --all-dirs\n"
msgstr ""
"--recursive-list nu ar trebui utilizat cu --get, --set, --unset, --all-"
"entries sau --all-dirs\n"
#: gconf/gconftool.c:610
msgid ""
"--set_schema should not be used with --get, --set, --unset, --all-entries, --"
"all-dirs\n"
msgstr ""
"--set_schema nu ar trebui utilizat cu --get, --set, --unset, --all-entries, "
"--all-dirs\n"
#: gconf/gconftool.c:616
msgid "Value type is only relevant when setting a value\n"
msgstr "Tipul valorii este relevant doar la setarea unei valori\n"
#: gconf/gconftool.c:622
msgid "Must specify a type when setting a value\n"
msgstr "Trebuie specificat un tip la setarea unei valori\n"
#: gconf/gconftool.c:630
msgid ""
"--ignore-schema-defaults is only relevant with --get, --all-entries, --dump, "
"--recursive-list, --get-list-size or --get-list-element\n"
msgstr ""
"--ignore-schema-defaults este relevant doar cu --get, --all-entries, --dump, "
"--recursive-list, --get-list-size şi --get-list-element\n"
#: gconf/gconftool.c:642 gconf/gconftool.c:655 gconf/gconftool.c:668
#: gconf/gconftool.c:682 gconf/gconftool.c:695 gconf/gconftool.c:708
#: gconf/gconftool.c:722
#, c-format
msgid "%s option must be used by itself.\n"
msgstr "opţiunea %s nu trebuie utilizată cu sine însăşi.\n"
#: gconf/gconftool.c:731
msgid ""
"You must specify a config source with --config-source when using --direct\n"
msgstr ""
"Trebuie specificată o sursă de configurare cu --config-source când se "
"utilizează --direct\n"
#: gconf/gconftool.c:737
#, c-format
msgid "Failed to init GConf: %s\n"
msgstr "Nu reuşesc să iniţializez GConf: %s\n"
#: gconf/gconftool.c:766
msgid "GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL is set, not installing schemas\n"
msgstr "GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL este setat, nu instalez schema\n"
#: gconf/gconftool.c:773
msgid ""
"GCONF_DISABLE_MAKEFILE_SCHEMA_UNINSTALL is set, not uninstalling schemas\n"
msgstr ""
"GCONF_DISABLE_MAKEFILE_SCHEMA_UNINSTALL nu este setat, nu instalez schema\n"
#: gconf/gconftool.c:786
msgid "Must set the GCONF_CONFIG_SOURCE environment variable\n"
msgstr "Trebuie setată variabila de mediu GCONF_CONFIG_SOURCE\n"
#: gconf/gconftool.c:821
#, c-format
msgid "Failed to access configuration source(s): %s\n"
msgstr "Nu am reuşit să accesez sursa/sursele de configurare: %s\n"
#: gconf/gconftool.c:1124
#, c-format
msgid "Shutdown error: %s\n"
msgstr "Eroare la închidere: %s\n"
#: gconf/gconftool.c:1167
msgid "Must specify one or more directories to recursively list.\n"
msgstr ""
"Trebuie să specificaţi unul sau mai multe directoare pentru "
"listarerecursivă.\n"
#: gconf/gconftool.c:1219
msgid "Must specify one or more directories to dump.\n"
msgstr "Trebuie să specificaţi unul sau mai multe directoare pentru scriere.\n"
#: gconf/gconftool.c:1261 gconf/gconftool.c:1527
#, c-format
msgid "Failure listing entries in `%s': %s\n"
msgstr "Nu am reuşit sa toate intrările din „%s”: %s\n"
#: gconf/gconftool.c:1280
msgid "(no value set)"
msgstr "(nu s-a setat nici o valoare)"
#: gconf/gconftool.c:1586
#, c-format
msgid "Failed to spawn the config server (gconfd): %s\n"
msgstr "Nu am reuşit să creez serverul configurărilor (gconfd): %s\n"
#: gconf/gconftool.c:1615
msgid "Must specify a key or keys to get\n"
msgstr "Trebuie să specificaţi o cheie sau mai multe de obţinut\n"
#: gconf/gconftool.c:1650
#, c-format
msgid "Type: %s\n"
msgstr "Tip: %s\n"
#: gconf/gconftool.c:1651
#, c-format
msgid "List Type: %s\n"
msgstr "Tipul listei: %s\n"
#: gconf/gconftool.c:1652
#, c-format
msgid "Car Type: %s\n"
msgstr "Tip „car”: %s\n"
#: gconf/gconftool.c:1653
#, c-format
msgid "Cdr Type: %s\n"
msgstr "Tip „cdr”: %s\n"
#: gconf/gconftool.c:1658
#, c-format
msgid "Default Value: %s\n"
msgstr "Valoare implicită: %s\n"
#: gconf/gconftool.c:1658 gconf/gconftool.c:1660 gconf/gconftool.c:1661
#: gconf/gconftool.c:1662
msgid "Unset"
msgstr "Nesetată"
#: gconf/gconftool.c:1660
#, c-format
msgid "Owner: %s\n"
msgstr "Deţinător: %s\n"
#: gconf/gconftool.c:1661
#, c-format
msgid "Short Desc: %s\n"
msgstr "Descriere scurtă: %s\n"
#: gconf/gconftool.c:1662
#, c-format
msgid "Long Desc: %s\n"
msgstr "Descriere lungă: %s\n"
#: gconf/gconftool.c:1671 gconf/gconftool.c:1895 gconf/gconftool.c:1929
#: gconf/gconftool.c:1974 gconf/gconftool.c:2119
#, c-format
msgid "No value set for `%s'\n"
msgstr "Nici o valoare setată pentru „%s”\n"
#: gconf/gconftool.c:1675 gconf/gconftool.c:1899 gconf/gconftool.c:1933
#: gconf/gconftool.c:1978 gconf/gconftool.c:2123
#, c-format
msgid "Failed to get value for `%s': %s\n"
msgstr "Nu am reuşit să obţin o valoare pentru „%s”: %s\n"
#: gconf/gconftool.c:1718 gconf/gconftool.c:1730
#, c-format
msgid "Don't understand type `%s'\n"
msgstr "Nu înţeleg tipul „%s”\n"
#: gconf/gconftool.c:1742
msgid "Must specify alternating keys/values as arguments\n"
msgstr "Trebuie să specificaţi chei/valori alternative ca argumente\n"
#: gconf/gconftool.c:1762
#, c-format
msgid "No value to set for key: `%s'\n"
msgstr "Nici o valoare setată pentru cheia: „%s”\n"
#: gconf/gconftool.c:1790
msgid "Cannot set schema as value\n"
msgstr "Nu pot seta schema ca valoare\n"
#: gconf/gconftool.c:1800
msgid "When setting a list you must specify a primitive list-type\n"
msgstr ""
"La setarea unei liste este nevoie să specificaţi o primitivă „list-type”\n"
#: gconf/gconftool.c:1814
msgid ""
"When setting a pair you must specify a primitive car-type and cdr-type\n"
msgstr ""
"La setarea unei perechi trebuie să specificaţi o primitivă „car-type” şi "
"„cdr-type”\n"
#: gconf/gconftool.c:1829
#, c-format
msgid "Error: %s\n"
msgstr "Eroare: %s\n"
#: gconf/gconftool.c:1842 gconf/gconftool.c:2874
#, c-format
msgid "Error setting value: %s\n"
msgstr "Eroare la setarea valorii: %s\n"
#: gconf/gconftool.c:1860
#, c-format
msgid "Error syncing: %s\n"
msgstr "Eroare la sincronizare: %s\n"
#: gconf/gconftool.c:1875
msgid "Must specify a key or keys to get type\n"
msgstr "Trebuie să specificaţi o cheie sau cheile pentru obţinerea tipului\n"
#: gconf/gconftool.c:1919
msgid "Must specify a key to lookup size of.\n"
msgstr "Trebuie să specificaţi o cheie pentru verificarea mărimii.\n"
#: gconf/gconftool.c:1944 gconf/gconftool.c:1989
#, c-format
msgid "Key %s is not a list.\n"
msgstr "Cheia %s nu este în listă.\n"
#: gconf/gconftool.c:1964
msgid "Must specify a key from which to get list element.\n"
msgstr ""
"Trebuie să specificaţi o cheie din care să se obţină lista elementelor.\n"
#: gconf/gconftool.c:1995
msgid "Must specify list index.\n"
msgstr "Trebuie să specificaţi indexul listei.\n"
#: gconf/gconftool.c:2002
msgid "List index must be non-negative.\n"
msgstr "Indexul listei nu trebuie să fie non-negativ.\n"
#: gconf/gconftool.c:2011
msgid "List index is out of bounds.\n"
msgstr "Indexul listei este în afara limitelor.\n"
#: gconf/gconftool.c:2037
msgid "Must specify a key or keys on the command line\n"
msgstr "Trebuie să specificaţi o cheie sau mai multe în linia de comandă\n"
#: gconf/gconftool.c:2057
#, c-format
msgid "No schema known for `%s'\n"
msgstr "Nu se cunoaşte o schemă pentru „%s”\n"
#: gconf/gconftool.c:2090
#, c-format
msgid "No doc string stored in schema at '%s'\n"
msgstr "Nu există un şir de documentare stocat în schemă la „%s”\n"
#: gconf/gconftool.c:2095
#, c-format
msgid "Error getting schema at '%s': %s\n"
msgstr "Eroare la obţinerea schemei la „%s”: %s\n"
#: gconf/gconftool.c:2102
#, c-format
msgid "No schema stored at '%s'\n"
msgstr "Nici o schemă stocată la „%s”\n"
#: gconf/gconftool.c:2105
#, c-format
msgid "Value at '%s' is not a schema\n"
msgstr "Valoarea pentru „%s” nu este o schemă\n"
#: gconf/gconftool.c:2161
msgid "Must specify a schema name followed by the key name to apply it to\n"
msgstr ""
"Trebuie să specificaţi un nume de schemă urmat de numele unei cheicărei să-i "
"fie aplicată\n"
#: gconf/gconftool.c:2168
#, c-format
msgid "Error associating schema name '%s' with key name '%s': %s\n"
msgstr "Eroare la asocierea numelui schemei „%s” cu numele cheii „%s”: %s\n"
#: gconf/gconftool.c:2186
msgid "Must specify keys to unapply schema from\n"
msgstr "Trebuie să specificaţi cheile pentru care se resetează schema\n"
#: gconf/gconftool.c:2196
#, c-format
msgid "Error removing schema name from '%s': %s\n"
msgstr "Eroare la ştergerea numelui schemei din „%s”: %s\n"
#: gconf/gconftool.c:2221
msgid "Must specify key (schema name) as the only argument\n"
msgstr "Trebuie să specificaţi cheia (numele schemei) ca ultim argument\n"
#: gconf/gconftool.c:2263
msgid "List type must be a primitive type: string, int, float or bool\n"
msgstr "Tipul listei trebuie să fie o primitivă: string, int, float sau bool\n"
#: gconf/gconftool.c:2283
msgid "Pair car type must be a primitive type: string, int, float or bool\n"
msgstr ""
"Tipul perechii „cat” trebuie să fie o primitivă: string, int, float sau "
"bool\n"
#: gconf/gconftool.c:2303
msgid "Pair cdr type must be a primitive type: string, int, float or bool\n"
msgstr ""
"Tipul perechii „cdr” trebuie să fie o primitivă: string, int, float sau "
"bool\n"
#: gconf/gconftool.c:2318
#, c-format
msgid "Error setting value: %s"
msgstr "Eroare la setarea valorii: %s"
#: gconf/gconftool.c:2332
#, c-format
msgid "Error syncing: %s"
msgstr "Eroare la sincronizare: %s"
#: gconf/gconftool.c:2347
msgid "Must specify one or more directories to get key/value pairs from.\n"
msgstr ""
"Trebuie să specificaţi unul sau mai multe directoare de unde să seobţină "
"perechile chei/valori.\n"
#: gconf/gconftool.c:2361
msgid "Must specify one or more keys to unset.\n"
msgstr "Trebuie să specificaţi una sau mai multe chei de resetat.\n"
#: gconf/gconftool.c:2372
#, c-format
msgid "Error unsetting `%s': %s\n"
msgstr "Eroare la resetare „%s”: %s\n"
#: gconf/gconftool.c:2392
msgid "Must specify one or more keys to recursively unset.\n"
msgstr ""
"Trebuie să specificaţi una sau mai multe chei pentru resetare recursivă.\n"
#: gconf/gconftool.c:2406
#, c-format
msgid "Failure during recursive unset of \"%s\": %s\n"
msgstr "Nu am reuşit să resetez recursiv „%s”: %s\n"
#: gconf/gconftool.c:2426
msgid "Must specify one or more directories to get subdirs from.\n"
msgstr ""
"Trebuie să specificaţi unul sau mai multe directoare din care să se obţină "
"subdirectoarele.\n"
#: gconf/gconftool.c:2460
#, c-format
msgid "Error listing dirs: %s\n"
msgstr "Eroare la listarea directoarelor: %s\n"
#: gconf/gconftool.c:2596
msgid "WARNING: must specify both a <car> and a <cdr> in a <pair>\n"
msgstr "ATENŢIE: specificaţi atât <car>, cât şi <cdr> într-un <pair>\n"
#: gconf/gconftool.c:2623
#, c-format
msgid "WARNING: key specified (%s) for schema under a <value> - ignoring\n"
msgstr "ATENŢIE: cheie specificată (%s) pentru schema sub un <value>, ignor\n"
#: gconf/gconftool.c:2656
msgid "WARNING: must have a child node under <value>\n"
msgstr "ATENŢIE: trebuie să existe un nod copil sub <value>\n"
#: gconf/gconftool.c:2662
#, c-format
msgid "WARNING: node <%s> not understood\n"
msgstr "ATENŢIE: nodul <%s> nu e înţeles\n"
#: gconf/gconftool.c:2680
#, c-format
msgid "WARNING: Failed to parse int value `%s'\n"
msgstr "ATENŢIE: Nu am reuşit să prelucrez valoare int „%s”\n"
#: gconf/gconftool.c:2701
#, c-format
msgid "WARNING: Failed to parse float value `%s'\n"
msgstr "ATENŢIE: Nu am reuşit să prelucrez valoare float „%s”\n"
#: gconf/gconftool.c:2723
#, c-format
msgid "WARNING: Failed to parse string value `%s'\n"
msgstr "ATENŢIE: Nu am reuşit să prelucrez valoarea şirului „%s”\n"
#: gconf/gconftool.c:2744
#, c-format
msgid "WARNING: Failed to parse boolean value `%s'\n"
msgstr "ATENŢIE: Nu am reuşit să valoarea booleană „%s”\n"
#: gconf/gconftool.c:2853 gconf/gconftool.c:3395
#, c-format
msgid "WARNING: failed to associate schema `%s' with key `%s': %s\n"
msgstr "ATENŢIE: nu am reuşit să asociez schema „%s” cu cheia „%s”: %s\n"
#: gconf/gconftool.c:2968
#, c-format
msgid "WARNING: invalid or missing type for schema (%s)\n"
msgstr "ATENŢIE: tip invalid sau lipsă pentru schema (%s)\n"
#: gconf/gconftool.c:2977
#, c-format
msgid "WARNING: invalid or missing list_type for schema (%s)\n"
msgstr "ATENŢIE: „list_type” invalid sau lipsă pentru schema (%s)\n"
#: gconf/gconftool.c:2988 gconf/gconftool.c:3018 gconf/gconftool.c:3047
#, c-format
msgid "WARNING: Failed to parse default value `%s' for schema (%s)\n"
msgstr ""
"ATENŢIE: Nu am reuşit să prelucrez valoarea implicită „%s” pentru schema (%"
"s)\n"
#: gconf/gconftool.c:3006
#, c-format
msgid "WARNING: invalid or missing car_type or cdr_type for schema (%s)\n"
msgstr ""
"ATENŢIE: „car_type” sau „cdr_type” invalid sau lipsă pentru schema (%s)\n"
#: gconf/gconftool.c:3031
msgid "WARNING: You cannot set a default value for a schema\n"
msgstr "ATENŢIE: Nu puteţi seta o valoare implicită pentru o schemă\n"
#: gconf/gconftool.c:3060
msgid "WARNING: gconftool internal error, unknown GConfValueType\n"
msgstr "ATENŢIE: eroare internă gconftool, GConfValueType necunoscut\n"
#: gconf/gconftool.c:3108 gconf/gconftool.c:3129 gconf/gconftool.c:3150
#: gconf/gconftool.c:3171
#, c-format
msgid "WARNING: failed to parse type name `%s'\n"
msgstr "ATENŢIE: nu am reuşit să prelucreze numele tipului „%s”\n"
#: gconf/gconftool.c:3125
#, c-format
msgid ""
"WARNING: list_type can only be int, float, string or bool and not `%s'\n"
msgstr ""
"ATENŢIE: „list_type” poate fi doar int, float, string sau bool şi nu „%s”\n"
#: gconf/gconftool.c:3146
#, c-format
msgid "WARNING: car_type can only be int, float, string or bool and not `%s'\n"
msgstr ""
"ATENŢIE: „car_type” poate fi doar int, float, string sau bool şi nu „%s”\n"
#: gconf/gconftool.c:3167
#, c-format
msgid "WARNING: cdr_type can only be int, float, string or bool and not `%s'\n"
msgstr ""
"ATENŢIE: „cdr_type” poate fi doar int, float, string sau bool şi nu „%s”\n"
#: gconf/gconftool.c:3207
msgid "WARNING: empty <applyto> node"
msgstr "ATENŢIE: nod <applyto> gol"
#: gconf/gconftool.c:3210 gconf/gconftool.c:3468
#, c-format
msgid "WARNING: node <%s> not understood below <schema>\n"
msgstr "ATENŢIE: nod <%s> neînţeles sub <schema>\n"
#: gconf/gconftool.c:3221
msgid "WARNING: no <list_type> specified for schema of type list\n"
msgstr ""
"ATENŢIE: nu s-a specificat un <list_type> pentru schemă sau tipullistei\n"
#: gconf/gconftool.c:3227
msgid "WARNING: no <car_type> specified for schema of type pair\n"
msgstr ""
"ATENŢIE: nu s-a specificat un <car_type> pentru schemă sau tipul de perechi\n"
#: gconf/gconftool.c:3233
msgid "WARNING: no <cdr_type> specified for schema of type pair\n"
msgstr ""
"ATENŢIE: nu s-a specificat un <cdr_type> pentru schemă sau tipul de perechi\n"
#: gconf/gconftool.c:3262
msgid "WARNING: <locale> node has no `name=\"locale\"' attribute, ignoring\n"
msgstr "ATENŢIE: nodul <locale> are un atribut „name=\"locale\", ignor\n"
#: gconf/gconftool.c:3268
#, c-format
msgid ""
"WARNING: multiple <locale> nodes for locale `%s', ignoring all past first\n"
msgstr ""
"ATENŢIE: multiple noduri <locale> pentru locale „%s”, ignor cele de după "
"primul\n"
#: gconf/gconftool.c:3366
#, c-format
msgid "WARNING: Invalid node <%s> in a <locale> node\n"
msgstr "ATENŢIE: Nod invalid <%s> in nodul <locale>\n"
#: gconf/gconftool.c:3403
#, c-format
msgid "Attached schema `%s' to key `%s'\n"
msgstr "Ataşat schema „%s” cheii „%s”\n"
#: gconf/gconftool.c:3477
msgid "You must have at least one <locale> entry in a <schema>\n"
msgstr "Trebuie să aveţi cel puţin o intrare <locale> în <schema>\n"
#: gconf/gconftool.c:3512
#, c-format
msgid "WARNING: failed to install schema `%s' locale `%s': %s\n"
msgstr "ATENŢIE: nu am reuşit să instalez schema „%s” locale „%s”: %s\n"
#: gconf/gconftool.c:3520
#, c-format
msgid "Installed schema `%s' for locale `%s'\n"
msgstr "Instalat schema „%s” pentru locale „%s”\n"
#: gconf/gconftool.c:3530
#, c-format
msgid "WARNING: failed to uninstall schema `%s' locale `%s': %s\n"
msgstr "ATENŢIE: nu am reuşit să dezinstalez schema „%s” locale „%s”: %s\n"
#: gconf/gconftool.c:3538
#, c-format
msgid "Uninstalled schema `%s' from locale `%s'\n"
msgstr "Dezinstalat schema „%s” din locale „%s”\n"
#: gconf/gconftool.c:3576
msgid "WARNING: no key specified for schema\n"
msgstr "ATENŢIE: nu s-a specificat o cheie pentru schemă\n"
#: gconf/gconftool.c:3617
#, c-format
msgid "WARNING: node <%s> not understood below <%s>\n"
msgstr "ATENŢIE: nodul <%s> nu e înţeles mai jos de <%s>\n"
#: gconf/gconftool.c:3648
#, c-format
msgid "Failed to open `%s': %s\n"
msgstr "Nu am reuşit să deschid „%s”: %s\n"
#: gconf/gconftool.c:3655
#, c-format
msgid "Document `%s' is empty?\n"
msgstr "Documentul „%s” e gol?\n"
#: gconf/gconftool.c:3667
#, c-format
msgid "Document `%s' has the wrong type of root node (<%s>, should be <%s>)\n"
msgstr ""
"Documentul „%s” are un tip greşit de nod rădăcină (<%s> în loc de <%s>)\n"
#: gconf/gconftool.c:3680
#, c-format
msgid "Document `%s' has no top level <%s> node\n"
msgstr "Documentul „%s” nu are un nod <%s> la cel mai de sus nivel\n"
#: gconf/gconftool.c:3694
#, c-format
msgid "WARNING: node <%s> below <%s> not understood\n"
msgstr "ATENŢIE: nodul <%s> sub <%s> nu are sens\n"
#: gconf/gconftool.c:3705 gconf/gconftool.c:3740
#, c-format
msgid "Error syncing config data: %s"
msgstr "Eroare la sincronizarea datelor de configurare: %s"
#: gconf/gconftool.c:3724
msgid "Must specify some schema files to install\n"
msgstr "Trebuie să specificaţi fişiere schemă de instalat\n"
#: gconf/gconftool.c:3761
#, c-format
msgid ""
"\n"
"%s\n"
msgstr ""
"\n"
"%s\n"
#: gconf/gconftool.c:3781
#, c-format
msgid "Failed to unset breakage key %s: %s\n"
msgstr "Nu am reuşit să resetez cheia „breakage” %s: %s\n"
#: gconf/gconftool.c:3907
msgid "Must specify some keys to break\n"
msgstr "Trebuie să specificaţi cheile de spart\n"
#: gconf/gconftool.c:3913
#, c-format
msgid ""
"Trying to break your application by setting bad values for key:\n"
" %s\n"
msgstr ""
"Încerc să blochez aplicaţia setând valori invalide pentru cheia: \n"
" %s\n"
#: gconf/gconftool.c:3931
msgid "Must specify some directories to break\n"
msgstr "Trebuie să specificaţi directoarele de spart\n"
#: gconf/gconftool.c:3950
#, c-format
msgid ""
"Trying to break your application by setting bad values for keys in "
"directory:\n"
" %s\n"
msgstr ""
"Încerc să blochez aplicaţia setând valori invalide pentru cheile din "
"directorul:\n"
" %s\n"
|