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
|
# Romanian translation for GNOME Control Conter
# Copyright (C) 1999 Free Software Foundation, Inc.
# Dan Damian <dand@dnttm.ro>, 1999.
#
# FIXME: De tradus: Threshold, Screensaver, Status, Hints
#
msgid ""
msgstr ""
"Project-Id-Version: control-center 1.0.40\n"
"POT-Creation-Date: 2000-10-08 17:01-0400\n"
"PO-Revision-Date: 1999-09-25 15:10+0300\n"
"Last-Translator: Dan Damian <dand@dnttm.ro>\n"
"Language-Team: Romanian <ro@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=iso-8859-2\n"
"Content-Transfer-Encoding: 8bit\n"
#.
#. * Translatable strings file generated by Glade.
#. * Add this file to your project's POTFILES.in.
#. * DO NOT compile it as part of your application.
#.
#: capplets/new-background-properties/background-properties.glade.h:7
#: capplets/new-keyboard-properties/keyboard-properties.glade.h:7
#: capplets/new-mouse-properties/mouse-properties.glade.h:7
#: capplets/new-sound-properties/sound-properties.glade.h:7
#: capplets/new-ui-properties/ui-properties.glade.h:7
msgid "window1"
msgstr ""
#: capplets/new-background-properties/background-properties.glade.h:8
msgid "Color"
msgstr "Culoare"
#: capplets/new-background-properties/background-properties.glade.h:9
msgid "Color 1"
msgstr "Culoare 1"
#: capplets/new-background-properties/background-properties.glade.h:10
msgid "Color 2"
msgstr "Culoare 2"
#: capplets/new-background-properties/background-properties.glade.h:11
#: capplets/new-background-properties/background-properties.glade.h:12
msgid "Pick a color"
msgstr ""
#: capplets/new-background-properties/background-properties.glade.h:13
msgid "Solid"
msgstr "Solid"
#: capplets/new-background-properties/background-properties.glade.h:14
msgid "Gradient"
msgstr "Degrade"
#: capplets/new-background-properties/background-properties.glade.h:15
msgid "Vertical"
msgstr "Vertical"
#: capplets/new-background-properties/background-properties.glade.h:16
msgid "Horizontal"
msgstr "Orizontal"
#: capplets/new-background-properties/background-properties.glade.h:17
msgid "Wallpaper"
msgstr "Imagine fundal"
#: capplets/new-background-properties/background-properties.glade.h:18
msgid "Tiled"
msgstr "Repetată"
#: capplets/new-background-properties/background-properties.glade.h:19
msgid "Centered"
msgstr "Centrată"
#: capplets/new-background-properties/background-properties.glade.h:20
msgid "Scaled (keep aspect)"
msgstr "Scalată (menține aspectul)"
#: capplets/new-background-properties/background-properties.glade.h:21
msgid "Scaled"
msgstr "Scalată"
#: capplets/new-background-properties/background-properties.glade.h:22
msgid "Disable background selection"
msgstr "Dezactivează selecția fundalului"
#: capplets/new-background-properties/applier.c:465
msgid "Disabled"
msgstr "Dezactivat"
#.
#. * Translatable strings file generated by Glade.
#. * Add this file to your project's POTFILES.in.
#. * DO NOT compile it as part of your application.
#.
#: capplets/new-bell-properties/bell-properties.glade.h:7
#: capplets/new-ui-properties/ui-properties.glade.h:22
msgid "window2"
msgstr ""
#: capplets/new-bell-properties/bell-properties.glade.h:8
msgid "Keyboard Bell"
msgstr "Sunet tastatură"
#: capplets/new-bell-properties/bell-properties.glade.h:9
msgid "Volume"
msgstr "Volum"
#: capplets/new-bell-properties/bell-properties.glade.h:10
msgid "Pitch (Hz)"
msgstr "Înălțime (Hz) "
#: capplets/new-bell-properties/bell-properties.glade.h:11
msgid "Duration (ms)"
msgstr "Durata (ms)"
#: capplets/new-bell-properties/bell-properties.glade.h:12
msgid "Test"
msgstr "Testează "
#: capplets/gnome-edit-properties/gnome-edit-properties.c:203
#: capplets/session-properties/session-properties.c:343
#: capplets/theme-switcher/gui.c:366
#: capplets/wm-properties/wm-properties-capplet.c:644
msgid ""
"No help is available/installed for these settings. Please make sure you\n"
"have the GNOME User's Guide installed on your system."
msgstr ""
"Nu există ajutor disponibil/instalat pentru aceste setări. Vă rog să vă "
"asigurați\n"
"că ați instalat Ghidul Utilizatorului GNOME pe sistemul dvs."
#: capplets/gnome-edit-properties/gnome-edit-properties.c:205
#: capplets/session-properties/session-properties.c:345
#: capplets/theme-switcher/gui.c:368
#: capplets/wm-properties/wm-properties-capplet.c:646
#: new-control-center/capplet-dir-view.c:130
#: new-control-center/capplet-dir-view.c:580
msgid "Close"
msgstr "Închide"
#: capplets/gnome-edit-properties/gnome-edit-properties.c:307
msgid "Gnome editor"
msgstr "Editor Gnome"
#: capplets/gnome-edit-properties/gnome-edit-properties.c:318
msgid "Run In Terminal"
msgstr "Rulează în Terminal"
#: capplets/new-keyboard-properties/keyboard-properties.glade.h:8
msgid "Auto-repeat"
msgstr "Repetare automată"
#: capplets/new-keyboard-properties/keyboard-properties.glade.h:9
msgid "Enable auto-repeat"
msgstr "Activează repetarea automată"
#: capplets/new-keyboard-properties/keyboard-properties.glade.h:10
msgid "Repeat rate"
msgstr "Rată de repetare"
#: capplets/new-keyboard-properties/keyboard-properties.glade.h:11
#, fuzzy
msgid "Repeat delay"
msgstr "Pauză repetare"
#: capplets/new-keyboard-properties/keyboard-properties.glade.h:12
msgid "Keyboard click"
msgstr "Clic tastatură"
#: capplets/new-keyboard-properties/keyboard-properties.glade.h:13
msgid "Click on keypress"
msgstr "Clic la apăsarea tastelor"
#: capplets/new-keyboard-properties/keyboard-properties.glade.h:14
msgid "Click volume"
msgstr "Volum clic"
#: capplets/new-keyboard-properties/keyboard-properties.glade.h:15
#: capplets/new-screensaver-properties/prefs-widget.c:301
#: capplets/theme-switcher/gui.c:230 capplets/theme-switcher/gui.c:302
msgid "Preview"
msgstr "Previzualizare"
#: capplets/new-keyboard-properties/keyboard-properties.glade.h:16
msgid "Test settings"
msgstr "Testează setările "
#. icon box
#: capplets/mime-type/edit-window.c:266
msgid "Select an icon..."
msgstr "Selectează un icon..."
#: capplets/mime-type/edit-window.c:276
msgid "Mime Type: "
msgstr "Tip Mime: "
#: capplets/mime-type/edit-window.c:306
msgid "Add"
msgstr "Adaugă"
#: capplets/mime-type/edit-window.c:314
#: capplets/new-screensaver-properties/prefs-widget.c:272
#: capplets/url-properties/url-properties.c:134
msgid "Remove"
msgstr "Elimină "
#. gtk_container_set_border_width (GTK_CONTAINER (table), GNOME_PAD_SMALL);
#: capplets/mime-type/edit-window.c:341
#: capplets/mime-type/new-mime-window.c:69
msgid "First Regular Expression: "
msgstr "Prima expresie regulată: "
#: capplets/mime-type/edit-window.c:349
#: capplets/mime-type/new-mime-window.c:80
msgid "Second Regular Expression: "
msgstr "A doua expresie regulată: "
#. Actions box
#: capplets/mime-type/edit-window.c:356
msgid "Mime Type Actions"
msgstr "Acțiuni tip Mime"
#: capplets/mime-type/edit-window.c:363
#, c-format
msgid "Example: emacs %f"
msgstr "Exemplu: emacs %f"
#: capplets/mime-type/edit-window.c:368
msgid "Open"
msgstr "Deschide"
#: capplets/mime-type/edit-window.c:374 capplets/mime-type/edit-window.c:390
#: capplets/mime-type/edit-window.c:405
msgid "Select a file..."
msgstr "Selectează un fișier..."
#: capplets/mime-type/edit-window.c:383
msgid "View"
msgstr "Vizualizare"
#: capplets/mime-type/edit-window.c:399
msgid "Edit"
msgstr "Editează"
#. we initialize everything
#: capplets/mime-type/edit-window.c:448
#, c-format
msgid "Set actions for %s"
msgstr "Setează acțiunile pentru %s"
#: capplets/mime-type/mime-data.c:384
msgid "Mime Type"
msgstr "Tip Mime"
#: capplets/mime-type/mime-data.c:385
msgid "Extension"
msgstr "Extensie"
#: capplets/mime-type/mime-data.c:492
msgid "You must enter a mime-type"
msgstr "Trebuie să introduceți un tip Mime"
#: capplets/mime-type/mime-data.c:497
msgid ""
"You must add either a regular-expression or\n"
"a file-name extension"
msgstr ""
"Trebuie să adăugați fie o expresie regulată sau\n"
"o extensie de fișier"
#: capplets/mime-type/mime-data.c:501
msgid ""
"Please put your mime-type in the format:\n"
"CATEGORY/TYPE\n"
"\n"
"For Example:\n"
"image/png"
msgstr ""
"Vă rog să introduceți tipul Mime în formatul:\n"
"CATEGORIE/TIP\n"
"\n"
"De exemplu:\n"
"image/png"
#: capplets/mime-type/mime-data.c:506
msgid "This mime-type already exists"
msgstr "Acest tip Mime există deja"
#: capplets/mime-type/mime-data.c:587
msgid ""
"We are unable to create the directory\n"
"~/.gnome/mime-info\n"
"\n"
"We will not be able to save the state."
msgstr ""
"Nu se poate crea directorul\n"
"~/.gnome/mime-info\n"
"\n"
"Nu se va putea salva situația curentă."
#: capplets/mime-type/mime-data.c:593
msgid ""
"We are unable to access the directory\n"
"~/.gnome/mime-info\n"
"\n"
"We will not be able to save the state."
msgstr ""
"Nu se poate accesa directorul\n"
"~/.gnome/mime-info\n"
"\n"
"Nu se va putea salva situația curentă."
#: capplets/mime-type/mime-data.c:604
msgid ""
"Cannot create the file\n"
"~/.gnome/mime-info/user.mime\n"
"\n"
"We will not be able to save the state"
msgstr ""
"Nu se poate crea fisierul\n"
"~/.gnome/mime-info/user.mime\n"
"\n"
"Nu se va putea salva situația curentă."
#: capplets/mime-type/mime-info.c:427
msgid ""
"We are unable to create the directory\n"
"~/.gnome/mime-info.\n"
"\n"
"We will not be able to save the state."
msgstr ""
"Nu se poate crea directorul\n"
"~/.gnome/mime-info\n"
"\n"
"Nu se va putea salva situația curentă."
#: capplets/mime-type/mime-info.c:433
msgid ""
"We are unable to access the directory\n"
"~/.gnome/mime-info.\n"
"\n"
"We will not be able to save the state."
msgstr ""
"Nu se poate accesa directorul\n"
"~/.gnome/mime-info\n"
"\n"
"Nu se va putea salva situația curentă."
#: capplets/mime-type/mime-info.c:444
msgid ""
"Cannot create the file\n"
"~/.gnome/mime-info/user.keys.\n"
"\n"
"We will not be able to save the state"
msgstr ""
"Nu se poate crea fisierul\n"
"~/.gnome/mime-info/user.keys\n"
"\n"
"Nu se va putea salva situația curentă."
#: capplets/mime-type/mime-type-capplet.c:83
#: capplets/session-properties/session-properties.c:199
#: capplets/wm-properties/wm-properties-capplet.c:1089
msgid "Delete"
msgstr "Șterge"
#: capplets/mime-type/mime-type-capplet.c:93
#: capplets/new-screensaver-properties/prefs-widget.c:266
#: capplets/session-properties/session-properties.c:189
#: capplets/wm-properties/wm-properties-capplet.c:1079
msgid "Add..."
msgstr "Adaugă..."
#: capplets/mime-type/mime-type-capplet.c:97
#: capplets/session-properties/session-properties.c:194
#: capplets/wm-properties/wm-properties-capplet.c:1084
msgid "Edit..."
msgstr "Editează"
#: capplets/mime-type/new-mime-window.c:25
msgid "Add Mime Type"
msgstr "Adaugă un tip Mime"
#: capplets/mime-type/new-mime-window.c:26
msgid ""
"Add a new Mime Type\n"
"For example: image/tiff; text/x-scheme"
msgstr ""
"Adaugă un nou tip Mime\n"
"De exemplu: image/tiff; text/x-scheme"
#: capplets/mime-type/new-mime-window.c:31
msgid "Mime Type:"
msgstr "Tip Mime:"
#: capplets/mime-type/new-mime-window.c:39
msgid "Extensions"
msgstr "Extensii"
#: capplets/mime-type/new-mime-window.c:43
msgid ""
"Type in the extensions for this mime-type.\n"
"For example: .html, .htm"
msgstr ""
"Introduceți extensiile pentru acest tip Mime.\n"
"De exemplu: .html, .htm"
#: capplets/mime-type/new-mime-window.c:50
msgid "Extension:"
msgstr "Extensie:"
#: capplets/mime-type/new-mime-window.c:55
msgid "Regular Expressions"
msgstr "Expresii regulate"
#: capplets/mime-type/new-mime-window.c:59
msgid ""
"You can set up two regular expressions here to identify the Mime Type\n"
"by. These fields are optional."
msgstr ""
"Puteți seta până la două expresii regulate pentru a identifica tipul Mime\n"
"Aceste câmpuri sunt opționale."
#: capplets/new-mouse-properties/mouse-properties.glade.h:8
msgid "Mouse buttons"
msgstr "Butoane mouse"
#: capplets/new-mouse-properties/mouse-properties.glade.h:9
msgid "Left handed"
msgstr "Pentru stângaci"
#: capplets/new-mouse-properties/mouse-properties.glade.h:10
msgid "Right handed"
msgstr "Pentru dreptaci"
#: capplets/new-mouse-properties/mouse-properties.glade.h:11
msgid "Mouse motion"
msgstr "Mișcare mouse"
#: capplets/new-mouse-properties/mouse-properties.glade.h:12
msgid "Acceleration"
msgstr "Accelerare"
#: capplets/new-mouse-properties/mouse-properties.glade.h:13
msgid "Threshold"
msgstr "Threshold"
#: capplets/new-mouse-properties/mouse-properties.glade.h:14
msgid "Slow"
msgstr "Înceată "
#: capplets/new-mouse-properties/mouse-properties.glade.h:15
msgid "Fast"
msgstr "Rapidă "
#: capplets/new-mouse-properties/mouse-properties.glade.h:16
msgid "Large"
msgstr "Mare "
#: capplets/new-mouse-properties/mouse-properties.glade.h:17
msgid "Small"
msgstr "Mic "
#: capplets/new-screensaver-properties/preferences.c:502
msgid "Custom screensaver. No description available"
msgstr ""
#: capplets/new-screensaver-properties/prefs-widget.c:185
#, fuzzy
msgid "Selection"
msgstr "Selectează un icon..."
#: capplets/new-screensaver-properties/prefs-widget.c:199
#, fuzzy
msgid "Disable screensaver"
msgstr "Fără Screensaver"
#: capplets/new-screensaver-properties/prefs-widget.c:209
msgid "Black screen only"
msgstr ""
#: capplets/new-screensaver-properties/prefs-widget.c:218
msgid "One screensaver all the time"
msgstr ""
#: capplets/new-screensaver-properties/prefs-widget.c:228
msgid "Choose randomly from those checked off"
msgstr ""
#: capplets/new-screensaver-properties/prefs-widget.c:238
msgid "Choose randomly among all screensavers"
msgstr ""
#: capplets/new-screensaver-properties/prefs-widget.c:279
msgid "Settings..."
msgstr "Setări..."
#: capplets/new-screensaver-properties/prefs-widget.c:284
#: capplets/new-screensaver-properties/screensaver-prefs-dialog.c:216
#, fuzzy
msgid "Demo"
msgstr "Elimină "
#: capplets/new-screensaver-properties/prefs-widget.c:289
msgid "Demo Next"
msgstr ""
#: capplets/new-screensaver-properties/prefs-widget.c:295
msgid "Demo Previous"
msgstr ""
#: capplets/new-screensaver-properties/prefs-widget.c:318
#: capplets/new-screensaver-properties/screensaver-prefs-dialog.c:204
msgid "Description"
msgstr ""
#: capplets/new-screensaver-properties/prefs-widget.c:335
#, fuzzy
msgid "Screensaver Selection"
msgstr "Setări Screensaver"
#: capplets/new-screensaver-properties/prefs-widget.c:344
msgid "Basic"
msgstr ""
#: capplets/new-screensaver-properties/prefs-widget.c:356
#, fuzzy
msgid "Start screensaver after"
msgstr " de minute după ce screensaver-ul a fost pornit."
#: capplets/new-screensaver-properties/prefs-widget.c:367
#: capplets/new-screensaver-properties/prefs-widget.c:382
#: capplets/new-screensaver-properties/prefs-widget.c:414
#: capplets/new-screensaver-properties/prefs-widget.c:452
#: capplets/new-screensaver-properties/prefs-widget.c:469
#: capplets/new-screensaver-properties/prefs-widget.c:486
#, fuzzy
msgid "minutes"
msgstr " de minute."
#: capplets/new-screensaver-properties/prefs-widget.c:371
msgid "Switch screensavers every"
msgstr ""
#: capplets/new-screensaver-properties/prefs-widget.c:386
msgid "Security"
msgstr ""
#: capplets/new-screensaver-properties/prefs-widget.c:395
#, fuzzy
msgid "Require password to unlock"
msgstr "Necesită parolă"
#: capplets/new-screensaver-properties/prefs-widget.c:404
#, fuzzy
msgid "Only after the screensaver has run for"
msgstr " de minute după ce screensaver-ul a fost pornit."
#: capplets/new-screensaver-properties/prefs-widget.c:422
#, fuzzy
msgid "Power Management"
msgstr "Utilizează power management-ul."
#: capplets/new-screensaver-properties/prefs-widget.c:430
#, fuzzy
msgid "Enable power management"
msgstr "Utilizează power management-ul."
#: capplets/new-screensaver-properties/prefs-widget.c:441
msgid "Go to standby mode after"
msgstr ""
#: capplets/new-screensaver-properties/prefs-widget.c:458
msgid "Go to suspend mode after"
msgstr ""
#: capplets/new-screensaver-properties/prefs-widget.c:475
#, fuzzy
msgid "Shut down monitor after"
msgstr "Închide monitorul la "
#: capplets/new-screensaver-properties/prefs-widget.c:492
msgid "General Properties"
msgstr ""
#: capplets/new-screensaver-properties/prefs-widget.c:507
#: capplets/session-properties/session-properties.c:179
#: capplets/session-properties/startup-programs.c:308
msgid "Priority"
msgstr "Prioritate"
#: capplets/new-screensaver-properties/prefs-widget.c:514
#, fuzzy
msgid "Low"
msgstr "Mică "
#: capplets/new-screensaver-properties/prefs-widget.c:521
#, fuzzy
msgid "High"
msgstr "Dreapta"
#: capplets/new-screensaver-properties/prefs-widget.c:539
msgid "Be verbose"
msgstr ""
#: capplets/new-screensaver-properties/prefs-widget.c:543
msgid "Effects"
msgstr ""
#: capplets/new-screensaver-properties/prefs-widget.c:555
msgid "Install colormap"
msgstr ""
#: capplets/new-screensaver-properties/prefs-widget.c:561
msgid "Fade to black when activating screensaver"
msgstr ""
#: capplets/new-screensaver-properties/prefs-widget.c:567
msgid "Fade desktop back when deactivating screensaver"
msgstr ""
#: capplets/new-screensaver-properties/prefs-widget.c:576
#, fuzzy
msgid "Fade Duration"
msgstr "Durata (ms)"
#: capplets/new-screensaver-properties/prefs-widget.c:596
msgid "Fade Smoothness"
msgstr ""
#: capplets/new-screensaver-properties/prefs-widget.c:617
msgid "Long"
msgstr ""
#: capplets/new-screensaver-properties/prefs-widget.c:627
msgid "Smooth"
msgstr ""
#: capplets/new-screensaver-properties/prefs-widget.c:637
msgid "Short"
msgstr ""
#: capplets/new-screensaver-properties/prefs-widget.c:647
msgid "Jerky"
msgstr ""
#: capplets/new-screensaver-properties/prefs-widget.c:658
msgid "Advanced Properties"
msgstr ""
#: capplets/new-screensaver-properties/screensaver-prefs-dialog.c:185
#: capplets/wm-properties/wm-properties-capplet.c:762
msgid "Name:"
msgstr "Nume:"
#: capplets/new-screensaver-properties/screensaver-prefs-dialog.c:197
#: capplets/session-properties/gsm-client-row.c:62
msgid "Settings"
msgstr "Setări"
#: capplets/new-screensaver-properties/screensaver-prefs-dialog.c:207
msgid "label1"
msgstr ""
#: capplets/new-screensaver-properties/screensaver-prefs-dialog.c:1363
msgid ""
"Cannot find the data to configure this screensaver. Please edit the command "
"line below."
msgstr ""
#: capplets/new-screensaver-properties/screensaver-prefs-dialog.c:1368
msgid "Please enter a command line below."
msgstr ""
#: capplets/new-screensaver-properties/screensaver-prefs-dialog.c:1383
msgid "Visual:"
msgstr ""
#: capplets/new-screensaver-properties/screensaver-prefs-dialog.c:1412
#: capplets/new-screensaver-properties/screensaver-prefs-dialog.c:1708
msgid "Any"
msgstr ""
#: capplets/new-screensaver-properties/selection-dialog.c:99
#, fuzzy
msgid "Add a new screensaver"
msgstr "Screensaver aleator"
#: capplets/new-screensaver-properties/selection-dialog.c:108
msgid "Select the screensaver to run from the list below:"
msgstr ""
#: capplets/new-screensaver-properties/selection-dialog.c:195
msgid "Custom"
msgstr ""
#: capplets/new-screensaver-properties/selection-dialog.c:221
#, fuzzy
msgid "New screensaver"
msgstr "Fără Screensaver"
#: capplets/session-properties/chooser.c:61
#, fuzzy
msgid "Session"
msgstr "Extensie"
#. dialog
#: capplets/session-properties/chooser.c:97
#, fuzzy
msgid "Session Chooser"
msgstr "Salvează sesiunea mai târziu"
#: capplets/session-properties/chooser.c:100
#, fuzzy
msgid "Start Session"
msgstr "Salvează sesiunea acum"
#: capplets/session-properties/chooser.c:103
#, fuzzy
msgid "Cancel Login"
msgstr "Renunță"
#: capplets/session-properties/gsm-client-editor.c:103
msgid "Order: "
msgstr "Ordine: "
#: capplets/session-properties/gsm-client-editor.c:113
msgid "Style: "
msgstr "Stil: "
#: capplets/session-properties/gsm-client-list.c:33
msgid "This button sets the start order of the selected programs.\n"
msgstr "Acest buton setează ordinea de start a programelor selectate.\n"
#: capplets/session-properties/gsm-client-list.c:34
msgid ""
"This button sets the restart style of the selected programs:\n"
"Normal programs are unaffected by logouts but can die;\n"
"Respawn programs are never allowed to die;\n"
"Trash programs are discarded on logout and can die;\n"
"Settings programs are always started on every login."
msgstr ""
"Acest buton setează ordinea de restartare a programelor selectate:\n"
"Programele normale nu vor fi afectate de logout-uri, însă pot muri;\n"
"Programele repornite nu li se permite să moară ;)\n"
"Programele \"gunoi\" nu sunt loate în seamă la logout și pot să moară;\n"
"Programele de setări sunt întotdeauna pornite la fiecare login."
#: capplets/session-properties/gsm-client-list.c:39
msgid ""
"This button produces a key to the program states below:\n"
"Inactive programs are waiting to start or have finished;\n"
"Starting programs are being given time to get running;\n"
"Running programs are normal members of the session;\n"
"Saving programs are saving their session details;\n"
"Programs which make no contact have Unknown states.\n"
msgstr ""
"Acest buton produce o cheie stărilor de program de mai jos:\n"
"Programele inactive așteaptă să pornească sau au terminat;\n"
"Programele ce pornesc le este dat timp să înceapă să ruleze;\n"
"Programele ce ruleaza sunt membri normali ai sesiunii;\n"
"Programele ce salvează vor stoca detaliile lor de sesiune;\n"
"Programele care nu au nici un contact vor avea status necunoscut.\n"
#: capplets/session-properties/gsm-client-list.c:45
msgid "This column gives the command used to start a program."
msgstr "Această coloană indică comanda utilizată pentru pornirea unui program."
#: capplets/session-properties/gsm-client-list.c:138
msgid "Order"
msgstr "Ordine"
#: capplets/session-properties/gsm-client-list.c:139
msgid "Style"
msgstr "Stil"
#: capplets/session-properties/gsm-client-list.c:140
msgid "State"
msgstr "Status"
#: capplets/session-properties/gsm-client-list.c:141
msgid "Program"
msgstr "Program"
#: capplets/session-properties/gsm-client-row.c:34
msgid "Inactive"
msgstr "Inactiv"
#: capplets/session-properties/gsm-client-row.c:35
msgid "Waiting to start or already finished."
msgstr "Așteaptă să pornească sau deja s-a terminat."
#: capplets/session-properties/gsm-client-row.c:37
msgid "Starting"
msgstr "Pornește"
#: capplets/session-properties/gsm-client-row.c:38
msgid "Started but has not yet reported state."
msgstr "Pornit, însă nu a raportat încă status-ul"
#: capplets/session-properties/gsm-client-row.c:40
msgid "Running"
msgstr "Rulează"
#: capplets/session-properties/gsm-client-row.c:41
msgid "A normal member of the session."
msgstr "Un membru normal al sesiunii"
#: capplets/session-properties/gsm-client-row.c:43
msgid "Saving"
msgstr "Salvez"
#: capplets/session-properties/gsm-client-row.c:44
msgid "Saving session details."
msgstr "Salvez detaliile de sesiune."
#: capplets/session-properties/gsm-client-row.c:46
msgid "Unknown"
msgstr "Necunoscut"
#: capplets/session-properties/gsm-client-row.c:47
msgid "State not reported within timeout."
msgstr "Status "
#: capplets/session-properties/gsm-client-row.c:53
msgid "Normal"
msgstr "Normal"
#: capplets/session-properties/gsm-client-row.c:54
msgid "Unaffected by logouts but can die."
msgstr "Neafectat de logout-uri, însă poate muri."
#: capplets/session-properties/gsm-client-row.c:56
msgid "Respawn"
msgstr "Restartat"
#: capplets/session-properties/gsm-client-row.c:57
msgid "Never allowed to die."
msgstr "Nu i se permite să moară."
#: capplets/session-properties/gsm-client-row.c:59
msgid "Trash"
msgstr "Gunoi"
#: capplets/session-properties/gsm-client-row.c:60
msgid "Discarded on logout and can die."
msgstr "Neluat în seamă la logout și poate muri"
#: capplets/session-properties/gsm-client-row.c:63
msgid "Always started on every login."
msgstr "Pornit în totdeauna la fiecare login."
#: capplets/session-properties/gsm-protocol.c:502
msgid "Remove Program"
msgstr "Elimină program"
#. frame for options
#: capplets/session-properties/session-properties.c:139
msgid "Options"
msgstr "Opțiuni"
#: capplets/session-properties/session-properties.c:150
msgid "Prompt on logout"
msgstr "Întreabă la logout"
#: capplets/session-properties/session-properties.c:157
msgid "Automatically save changes to session"
msgstr "Salvează automat schimbările sesiunii"
#. frame for manually started programs
#: capplets/session-properties/session-properties.c:162
msgid "Non-session-managed Startup Programs"
msgstr "Programe Startup, non-session-managed"
#: capplets/session-properties/session-properties.c:180
#: capplets/url-properties/url-properties.c:72
msgid "Command"
msgstr "Comandă "
#: capplets/session-properties/session-properties.c:209
msgid "Browse Currently Running Programs..."
msgstr "Răsfoiește programele ce rulează în mod curent... "
#: capplets/session-properties/session-properties.c:475
msgid "Only display warnings."
msgstr "Afișează doar avertizările."
#: capplets/session-properties/startup-programs.c:292
#: capplets/session-properties/startup-programs.c:299
msgid "Startup Command"
msgstr "Comandă Startup"
#: capplets/session-properties/startup-programs.c:323
msgid ""
"Programs with smaller values are started before programs with higher values. "
"The default value should be OK"
msgstr ""
"Programele cu valori mai mici vor fi pornite înaintea programelor cu valori "
"mai mari. Valoarea implicită ar trebui să fie OK"
#: capplets/session-properties/startup-programs.c:342
msgid "The startup command cannot be empty"
msgstr "Comanda startup nu poate fi goală"
#: capplets/session-properties/startup-programs.c:382
msgid "Add Startup Program"
msgstr "Adaugă un program Startup"
#: capplets/session-properties/startup-programs.c:400
msgid "Edit Startup Program"
msgstr "Editează programul Startup"
#: capplets/new-sound-properties/sound-properties.glade.h:8
msgid "Enable"
msgstr "Activat"
#: capplets/new-sound-properties/sound-properties.glade.h:9
msgid "Enable sound server startup"
msgstr "Activează serverul de sunet la startup"
#: capplets/new-sound-properties/sound-properties.glade.h:10
msgid "Sounds for events"
msgstr "Sunete pentru evenimente"
#: capplets/new-sound-properties/sound-properties.glade.h:11
msgid "General"
msgstr "General"
#: capplets/new-sound-properties/sound-properties.glade.h:12
msgid "Event"
msgstr "Eveniment"
#: capplets/new-sound-properties/sound-properties.glade.h:13
msgid "File to Play"
msgstr "Fișier de redat"
#: capplets/new-sound-properties/sound-properties.glade.h:14
msgid "Sound Events"
msgstr "Evenimente de sunet"
#: capplets/theme-switcher/demo.c:54
msgid "One"
msgstr "Unu"
#: capplets/theme-switcher/demo.c:54
msgid "Two"
msgstr "Doi"
#. just 8 short names that will serve as samples for titles in demo
#: capplets/theme-switcher/demo.c:56
msgid "Eenie"
msgstr "Dă'"
#: capplets/theme-switcher/demo.c:56
msgid "Meenie"
msgstr "și"
#: capplets/theme-switcher/demo.c:57
msgid "Mynie"
msgstr "mie"
#: capplets/theme-switcher/demo.c:57
msgid "Moe"
msgstr "o"
#: capplets/theme-switcher/demo.c:58
msgid "Catcha"
msgstr "pungă"
#: capplets/theme-switcher/demo.c:58
msgid "Tiger"
msgstr "Dacă"
#: capplets/theme-switcher/demo.c:59
msgid "By Its"
msgstr "nu-ti"
#: capplets/theme-switcher/demo.c:59
msgid "Toe"
msgstr "repugnă"
#: capplets/theme-switcher/demo.c:118
msgid "Selected themes from above will be tested by previewing here."
msgstr "Temele selectate de mai sus vor fi testate pentru previzualizare aici."
#. column one
#: capplets/theme-switcher/demo.c:123
msgid "Sample Button"
msgstr "Exemplu de buton"
#: capplets/theme-switcher/demo.c:127
msgid "Sample Check Button"
msgstr "Exemplu de buton bifare"
#: capplets/theme-switcher/demo.c:132
msgid "Sample Text Entry Field"
msgstr "Exemplu de câmp de editare text"
#: capplets/theme-switcher/demo.c:143
msgid "Submenu"
msgstr "Submeniu"
#: capplets/theme-switcher/demo.c:150
msgid "Item 1"
msgstr "Element 1"
#: capplets/theme-switcher/demo.c:153
msgid "Another item"
msgstr "Alt element"
#: capplets/theme-switcher/demo.c:158
msgid "Radio Button 1"
msgstr "Buton radio 1"
#: capplets/theme-switcher/demo.c:164
msgid "Radio Button 2"
msgstr "Buton radio 2"
#: capplets/theme-switcher/gui.c:88
#, c-format
msgid ""
"Error installing theme:\n"
"'%s'\n"
"%s"
msgstr ""
"Eroare la instalarea temei:\n"
"'%s'\n"
"%s"
#: capplets/theme-switcher/gui.c:119
msgid "Select a theme to install"
msgstr "Selectați o temă pentru instalare"
#: capplets/theme-switcher/gui.c:196
msgid "Available Themes"
msgstr "Teme disponibile"
#: capplets/theme-switcher/gui.c:221
msgid ""
"Auto\n"
"Preview"
msgstr ""
"Previzualizare\n"
"automată"
#: capplets/theme-switcher/gui.c:233
msgid ""
"Install new\n"
"theme..."
msgstr ""
"Instalează o nouă \n"
"temă..."
#. Font selector.
#.
#: capplets/theme-switcher/gui.c:239
msgid "User Font"
msgstr "Font utilizator"
#. FIXME - should really get this from X somehow
#. for now we just assume default gtk font
#: capplets/theme-switcher/gui.c:257
msgid "-adobe-helvetica-medium-r-normal--*-120-*-*-*-*-*-*"
msgstr "-adobe-helvetica-medium-r-normal--*-120-*-*-*-*-iso8859-2"
#: capplets/theme-switcher/gui.c:276
msgid "Use custom font."
msgstr "Utilizează un font specific"
#: capplets/theme-switcher/install.c:31
msgid "Home directory doesn't exist!\n"
msgstr "Directorul acasă nu există!\n"
#: capplets/theme-switcher/install.c:41
msgid "Theme does not exist"
msgstr "Tema nu există"
#: capplets/theme-switcher/install.c:73
#, c-format
msgid "Command '%s' failed"
msgstr "Comanda '%s' a eșuat"
#: capplets/theme-switcher/install.c:78
msgid "Unknown file format"
msgstr "Format fișier necunoscut"
#: capplets/new-ui-properties/ui-properties.glade.h:8
msgid "Menu Options"
msgstr "Opțiuni meniu"
#: capplets/new-ui-properties/ui-properties.glade.h:9
msgid "Can detach and move menus"
msgstr "Poate detașa și muta meniuri"
#: capplets/new-ui-properties/ui-properties.glade.h:10
msgid "Menus have relieved border"
msgstr "Meniurile au chenar vizibil"
#: capplets/new-ui-properties/ui-properties.glade.h:11
msgid "Submenus can be torn off"
msgstr "Submeniurile pot fi dezactivate"
#: capplets/new-ui-properties/ui-properties.glade.h:12
msgid "Menu items have icons"
msgstr "Elementele din meniu pot avea icon-uri"
#: capplets/new-ui-properties/ui-properties.glade.h:13
msgid "Statusbar Options"
msgstr "Opțiuni bară de status"
#: capplets/new-ui-properties/ui-properties.glade.h:14
msgid "Statusbar is interactive when possible"
msgstr "Bara de status este inactivă când e posibil"
#: capplets/new-ui-properties/ui-properties.glade.h:15
msgid "Statusbar progress meter is on the right"
msgstr "Indicatorul de progres din bara de status este în dreapta"
#: capplets/new-ui-properties/ui-properties.glade.h:16
msgid "Toolbar Options"
msgstr "Opțiuni bară de scule"
#: capplets/new-ui-properties/ui-properties.glade.h:17
msgid "Can detach and move toolbars"
msgstr "Poate detașa și muta barele de scule"
#: capplets/new-ui-properties/ui-properties.glade.h:18
msgid "Toolbars have relieved border"
msgstr "Barele de scule au chenar vizibil"
#: capplets/new-ui-properties/ui-properties.glade.h:19
msgid "Toolbar buttons have relieved border"
msgstr "Butoanele din barele de scule au chenar vizibil"
#: capplets/new-ui-properties/ui-properties.glade.h:20
msgid "Toolbars have line separators"
msgstr "Barele de scule au linii separatoare"
#: capplets/new-ui-properties/ui-properties.glade.h:21
msgid "Toolbars have text labels"
msgstr "Barele de scule au etichete text"
#: capplets/new-ui-properties/ui-properties.glade.h:23
msgid "Dialog Layout"
msgstr "Aspect dialog"
#: capplets/new-ui-properties/ui-properties.glade.h:24
#, fuzzy
msgid "Dialog Buttons:"
msgstr "Butoane de dialog"
#: capplets/new-ui-properties/ui-properties.glade.h:25
msgid ""
"Default value\n"
"Spread buttons out\n"
"Put buttons on edges\n"
"Left-justify buttons\n"
"Right-justify buttons\n"
msgstr ""
#: capplets/new-ui-properties/ui-properties.glade.h:31
msgid "Dialog buttons have icons"
msgstr "Butoanele de dialog au icon-uri"
#: capplets/new-ui-properties/ui-properties.glade.h:32
msgid "Use statusbar instead of dialog when possible"
msgstr "Utilizează bara de status în locul dialogurilor când este posibil"
#: capplets/new-ui-properties/ui-properties.glade.h:33
msgid "Dialog Behavior"
msgstr "Comportament dialog"
#: capplets/new-ui-properties/ui-properties.glade.h:34
#, fuzzy
msgid "Dialog position:"
msgstr "Poziție dialoguri"
#: capplets/new-ui-properties/ui-properties.glade.h:35
#, fuzzy
msgid "Dialog hints:"
msgstr "Hinturi de dialog"
#: capplets/new-ui-properties/ui-properties.glade.h:36
msgid ""
"Let window manager decide\n"
"Center of the screen\n"
"At the mouse pointer\n"
msgstr ""
#: capplets/new-ui-properties/ui-properties.glade.h:40
#, fuzzy
msgid ""
"Dialogs are like other windows\n"
"Dialogs are treated specially by the window manager\n"
msgstr "Dialogurile sunt tratate special de managerul de ferestre"
#: capplets/new-ui-properties/ui-properties.glade.h:43
msgid "Place dialogs over application window when possible"
msgstr "Plasează dialogurile peste ferestrele aplicațiilor când este posibil"
#: capplets/new-ui-properties/ui-properties.glade.h:44
msgid "window3"
msgstr ""
#: capplets/new-ui-properties/ui-properties.glade.h:45
msgid "GNOME MDI Options"
msgstr "Opțiuni MDI GNOME"
#: capplets/new-ui-properties/ui-properties.glade.h:46
#, fuzzy
msgid "Default MDI Mode:"
msgstr "Mod MDI Implicit"
#: capplets/new-ui-properties/ui-properties.glade.h:47
#, fuzzy
msgid "MDI notebook tab position:"
msgstr "Poziția tab-ului MDI notebook"
#: capplets/new-ui-properties/ui-properties.glade.h:48
msgid ""
"Notebook\n"
"Toplevel\n"
"Modal\n"
msgstr ""
#: capplets/new-ui-properties/ui-properties.glade.h:52
msgid ""
"Left\n"
"Right\n"
"Top\n"
"Bottom\n"
msgstr ""
#: capplets/url-properties/url-properties.c:49
msgid "Error initializing the `url-properties' capplet."
msgstr "Eroare la inițializarea `url-properties' capplet."
#: capplets/url-properties/url-properties.c:72
msgid "Protocol"
msgstr "Protocol"
#: capplets/url-properties/url-properties.c:88
msgid "handler:"
msgstr "handler:"
#. set some commonly used handlers
#: capplets/url-properties/url-properties.c:98
msgid "Netscape"
msgstr "Netscape"
#: capplets/url-properties/url-properties.c:103
msgid "Netscape (new window)"
msgstr "Netscape (fereastră nouă)"
#: capplets/url-properties/url-properties.c:109
msgid "Help browser"
msgstr "Browser ajutor"
#: capplets/url-properties/url-properties.c:114
msgid "Help browser (new window)"
msgstr "Browser ajutor (fereastră nouă)"
#: capplets/url-properties/url-properties.c:126
msgid "Set"
msgstr "Setează "
#: capplets/wm-properties/wm-properties-capplet.c:145
#, c-format
msgid ""
"Starting %s\n"
"(%d seconds left before operation times out)"
msgstr ""
"Pornesc %s\n"
"(%d de secunde au mai rămas până timpul alocat operației va expira)"
#: capplets/wm-properties/wm-properties-capplet.c:306
#, c-format
msgid "%s (Current)"
msgstr "%s (Curent)"
#: capplets/wm-properties/wm-properties-capplet.c:309
#, c-format
msgid "Run Configuration Tool for %s"
msgstr "Rulează unealta de configurare pentru %s"
#: capplets/wm-properties/wm-properties-capplet.c:320
msgid " (Not found)"
msgstr " (Negăsit)"
#: capplets/wm-properties/wm-properties-capplet.c:359
msgid ""
"wm-properties-capplet: Unable to initialize window manager.\n"
"\tAnother window manager is already running and could not be killed\n"
msgstr ""
"wm-properties-capplet: Nu se poate inițializa managerul de ferestre.\n"
"\tAlt manager de ferestre rulează și nu poate fi oprit\n"
#: capplets/wm-properties/wm-properties-capplet.c:363
#, c-format
msgid ""
"wm-properties-capplet: Unable to initialize window manager.\n"
"\t'%s' didn't start\n"
msgstr ""
"wm-properties-capplet: Nu se poate inițializa managerul de ferestre.\n"
"\t'%s' nu a pornit\n"
#: capplets/wm-properties/wm-properties-capplet.c:412
msgid "Previous window manager did not die\n"
msgstr "Managerul de ferestre precedent nu a fost oprit\n"
#: capplets/wm-properties/wm-properties-capplet.c:445
#, fuzzy, c-format
msgid ""
"Could not start '%s'.\n"
"Falling back to previous window manager '%s'\n"
msgstr "Reîntoarcere la managerul de ferestre precedent '%s'\n"
#: capplets/wm-properties/wm-properties-capplet.c:476
msgid ""
"Could not start fallback window manager.\n"
"Please run a window manager manually. You can\n"
"do this by selecting \"Run Program\" in the\n"
"foot menu\n"
msgstr ""
"Nu am putut porni managerul de ferestre de fallback.\n"
"Vă rog să rulați manual un manager de ferestre. Puteți\n"
"face aceasta selectând \"Rulează program\" în meniul\n"
"GNOME\n"
#: capplets/wm-properties/wm-properties-capplet.c:501
#: capplets/wm-properties/wm-properties-capplet.c:751
#: capplets/wm-properties/wm-properties-capplet.c:859
#: capplets/wm-properties/wm-properties-capplet.c:866
#: capplets/wm-properties/wm-properties-capplet.c:1012
msgid "OK"
msgstr "OK"
#: capplets/wm-properties/wm-properties-capplet.c:519
msgid ""
"Your current window manager has been changed. In order for\n"
"this change to be saved, you will need to save your current\n"
"session. You can do so immediately by selecting the \"Save session\n"
"now\" below, or you can save your session later. This can be\n"
"done either selecting \"Save Current Session\" under \"Settings\"\n"
"in the main menu, or by turning on \"Save Current Setup\" when\n"
"you log out.\n"
msgstr ""
"Managerul de ferestre curent a fost schimbat. Pentru ca schimbarea\n"
"să fie salvată, va trebui să salvați sesiunea curentă.\n"
"Aceasta poate fi făcută imediat prin selectarea \"Salvează sesiunea acum\"\n"
"de mai jos, sau puteți să o salvați mai târziu. Aceasta poate fi făcuta\n"
"fie print selectarea \"Salvează sesiunea curentă\" din meniul \"Setări\"\n"
"din meniul principal, sau prin activarea \"Salvează setarea curentă\" în\n"
"momentul în care faceți logout.\n"
#: capplets/wm-properties/wm-properties-capplet.c:526
msgid "Save Session Later"
msgstr "Salvează sesiunea mai târziu"
#: capplets/wm-properties/wm-properties-capplet.c:526
msgid "Save Session Now"
msgstr "Salvează sesiunea acum"
#: capplets/wm-properties/wm-properties-capplet.c:529
msgid ""
"Your current window manager has been changed. In order for\n"
"this change to be saved, you will need to save your current\n"
"session. This can be done by either selecting \"Save Current Session\"\n"
"under \"Settings\" in the main menu, or by turning on\n"
"\"Save Current Setup\" when you log out.\n"
msgstr ""
"Managerul de ferestre curent a fost schimbat. Pentru ca schimbarea\n"
"să fie salvată, va trebui să salvați sesiunea curentă.\n"
"Aceasta poate fi făcuta fie print selectarea \"Salvează sesiunea curentă\" \n"
"din meniul \"Setări\" din meniul principal, sau prin activarea \"Salvează "
"setarea curentă\" \n"
"în momentul în care faceți logout.\n"
#: capplets/wm-properties/wm-properties-capplet.c:750
msgid "Add New Window Manager"
msgstr "Adaugă un nou maanager de ferestre"
#: capplets/wm-properties/wm-properties-capplet.c:751
msgid "Cancel"
msgstr "Renunță"
#: capplets/wm-properties/wm-properties-capplet.c:775
msgid "Command:"
msgstr "Comandă:"
#: capplets/wm-properties/wm-properties-capplet.c:788
msgid "Configuration Command:"
msgstr "Comandă configurare:"
#: capplets/wm-properties/wm-properties-capplet.c:807
msgid "Window manager is session managed"
msgstr "Managerul de ferestre este \"session managed\""
#: capplets/wm-properties/wm-properties-capplet.c:857
msgid "Name cannot be empty"
msgstr "Numele nu poate fi vid"
#: capplets/wm-properties/wm-properties-capplet.c:864
msgid "Command cannot be empty"
msgstr "Comanda nu poate fi vidă"
#: capplets/wm-properties/wm-properties-capplet.c:913
#: capplets/wm-properties/wm-properties-capplet.c:955
msgid "Edit Window Manager"
msgstr "Editează managerul de ferestre"
#: capplets/wm-properties/wm-properties-capplet.c:1011
msgid "You cannot delete the current Window Manager"
msgstr "Nu puteți șterge managerul de ferestre curent"
#: capplets/wm-properties/wm-properties-capplet.c:1153
msgid ""
"an initialization error occurred while starting 'wm-properties-capplet'.\n"
"aborting...\n"
msgstr ""
"o eroare de inițializare s-a produs la pornirea 'wm-properties-capplet'.\n"
"renunț...\n"
#: libcapplet/capplet-widget.c:72
msgid "id of the capplet -- assigned by the control-center"
msgstr "id capplet -- asignat de control-center"
#: libcapplet/capplet-widget.c:72
msgid "ID"
msgstr "ID"
#: libcapplet/capplet-widget.c:74
msgid "Multi-capplet id."
msgstr "Multi-capplet id."
#: libcapplet/capplet-widget.c:74
msgid "CAPID"
msgstr "CAPID"
#: libcapplet/capplet-widget.c:76
msgid "X ID of the socket it's plugged into"
msgstr "X ID-ul socket-ului este conectat la"
#: libcapplet/capplet-widget.c:76
msgid "XID"
msgstr "XID"
#: libcapplet/capplet-widget.c:78
msgid "IOR of the control-center"
msgstr "IOR-ul control-center-ului"
#: libcapplet/capplet-widget.c:78
msgid "IOR"
msgstr "IOR"
#: libcapplet/capplet-widget.c:80
msgid "Initialize session settings"
msgstr "Inițializare setări sesiune"
#: libcapplet/capplet-widget.c:82
msgid "Ignore default action. Used for custom init-session cases"
msgstr ""
"Ignoră acțiunea implicită. Utilizat pentru cazuri init-session specifice"
#: libcapplet/capplet-widget.c:85
msgid "Get an XML description of the capplet's state"
msgstr ""
#: libcapplet/capplet-widget.c:85
msgid "DO_GET"
msgstr ""
#: libcapplet/capplet-widget.c:87
msgid "Read an XML description of the capplet's state and apply it"
msgstr ""
#: libcapplet/capplet-widget.c:88
msgid "DO_SET"
msgstr ""
#: new-control-center/capplet-dir-view.c:107
#, fuzzy
msgid "Help on control-center"
msgstr "IOR-ul control-center-ului"
#: new-control-center/capplet-dir-view.c:108
msgid "Help with the GNOME control-center."
msgstr "Ajutorul GNOME control-center"
#: new-control-center/capplet-dir-view.c:111
#, fuzzy
msgid "About"
msgstr "Despre:"
#: new-control-center/capplet-dir-view.c:112
#, fuzzy
msgid "About the GNOME control-center."
msgstr "Ajutorul GNOME control-center"
#: new-control-center/capplet-dir-view.c:124
msgid "Up"
msgstr ""
#: new-control-center/capplet-dir-view.c:124
msgid "Parent Group"
msgstr ""
#: new-control-center/capplet-dir-view.c:126
msgid "Preferences"
msgstr ""
#: new-control-center/capplet-dir-view.c:127
#, fuzzy
msgid "Control Center Preferences"
msgstr "Centrul de control"
#: new-control-center/capplet-dir-view.c:130
msgid "Close this Window"
msgstr ""
#: new-control-center/capplet-dir-view.c:166
msgid "Control Center"
msgstr "Centrul de control"
#: new-control-center/capplet-dir-view.c:577
msgid ""
"No help is available/installed. Please make sure you\n"
"have the GNOME User's Guide installed on your system."
msgstr ""
"Nu există ajutor disponibil/instalat. Vă rog să vă asigurați\n"
"că ați instalat Ghidul Utilizatorului GNOME pe sistemul dvs."
#: new-control-center/capplet-dir-view.c:596
msgid "GNOME Control Center"
msgstr "Centrul de control GNOME"
#: new-control-center/capplet-dir-view.c:599
msgid "Desktop Properties manager."
msgstr "Managerul de proprietăți desktop"
#~ msgid "Set background image."
#~ msgstr "Setează imaginea de fundal."
#~ msgid "IMAGE-FILE"
#~ msgstr "FIȘIER-IMAGINE"
#~ msgid ""
#~ "an initialization error occurred while starting "
#~ "'background-properties-capplet'.\n"
#~ "aborting...\n"
#~ msgstr ""
#~ "o eroare de inițializare s-a produs la pornirea "
#~ "'background-properties-capplet'.\n"
#~ "renunț...\n"
#~ msgid "Wallpaper Selection"
#~ msgstr "Selecție imagine fundal"
#~ msgid "Can't find an hbox, using a normal file selection"
#~ msgstr "Nu pot găsi un hbox, utilizez o selecție normală de fișier"
#~ msgid " Browse... "
#~ msgstr " Răsfoiește... "
#~ msgid "none"
#~ msgstr "niciuna"
#~ msgid "Set parameters from saved state and exit"
#~ msgstr "Setează parametrii dintre cei salvați și ieși"
#~ msgid "IMAGE"
#~ msgstr "IMAGINE"
#~ msgid "Sets the wallpaper to the value specified"
#~ msgstr "Setează imaginea fundal la valoarea specificată"
#~ msgid "COLOR"
#~ msgstr "CULOARE"
#~ msgid "Specifies the background color"
#~ msgstr "Specifică culoarea de fundal"
#~ msgid "Specifies end background color for gradient"
#~ msgstr "Specifică culoarea de sfârșit a degradeului de fundal"
#~ msgid "ORIENT"
#~ msgstr "ORIENT"
#~ msgid "Gradient orientation: vertical or horizontal"
#~ msgstr "Orientarea degradeului: vertical sau orizontal"
#~ msgid "Use a solid fill for the background"
#~ msgstr "Utilizează umplerea solidă a fundalului"
#~ msgid "Use a gradient fill for the background"
#~ msgstr "Utilizează umplerea în degrade a fundalului"
#~ msgid "MODE"
#~ msgstr "MOD"
#~ msgid "Display wallpaper: tiled, centered, scaled or ratio"
#~ msgstr ""
#~ "Afișează imaginea fundal: repetată, centrată, scalată sau cu menținerea "
#~ "aspectului"
#~ msgid ""
#~ "an initialization error occurred while starting 'bell-properties-capplet'.\n"
#~ "aborting...\n"
#~ msgstr ""
#~ "o eroare de inițializare s-a produs la pornirea 'bell-properties-capplet'.\n"
#~ "renunț...\n"
#~ msgid ""
#~ "an initialization error occurred while starting 'mouse-properties-capplet'.\n"
#~ "aborting...\n"
#~ msgstr ""
#~ "o eroare de inițializare s-a produs la pornirea 'mouse-properties-capplet'.\n"
#~ "renunț...\n"
#~ msgid ""
#~ "an initialization error occurred while starting 'sound-properties-capplet'."
#~ msgstr ""
#~ "o eroare de inițializare s-a produs la pornirea 'sound-properties-capplet'."
#~ msgid "Select sound file"
#~ msgstr "Selectează fișierul de sunet"
#~ msgid "Play"
#~ msgstr "Redare"
#~ msgid ""
#~ "This copy of the GNOME control center was not compiled with sound support"
#~ msgstr ""
#~ "Această copie a Centrului de Control GNOME nu a fost compilată cu suport de "
#~ "sunet"
#~ msgid "The sound file for this event does not exist."
#~ msgstr "Fișierul de sunet pentru acest eveniment nu există."
#~ msgid ""
#~ "The sound file for this event does not exist.\n"
#~ "You may want to install the gnome-audio package\n"
#~ "for a set of default sounds."
#~ msgstr ""
#~ "Fișierul de sunet pentru acest eveniment nu există.\n"
#~ "Poate doriți să instalați pachetul gnome-audio\n"
#~ "pentru un set de sunete implicite."
#~ msgid "Default value"
#~ msgstr "Valoare implicită"
#~ msgid "Spread buttons out"
#~ msgstr "Distribuie butoanele"
#~ msgid "Put buttons on edges"
#~ msgstr "Pune butoanele pe margini"
#~ msgid "Left-justify buttons"
#~ msgstr "Aliniază butoanele la stânga"
#~ msgid "Right-justify buttons"
#~ msgstr "Aliniază butoanele la dreapta"
#~ msgid "Let window manager decide"
#~ msgstr "Lasă managerul de ferestre să decidă"
#~ msgid "Center of the screen"
#~ msgstr "Centrul ecranului"
#~ msgid "At the mouse pointer"
#~ msgstr "La cursorul mouse-ului"
#~ msgid "Dialogs are like other windows"
#~ msgstr "Dialogurile sunt ca și alte ferestre"
#~ msgid "Notebook"
#~ msgstr "Notebook"
#~ msgid "Toplevel"
#~ msgstr "Toplevel"
#~ msgid "Modal"
#~ msgstr "Modal"
#~ msgid "Left"
#~ msgstr "Stânga"
#~ msgid "Top"
#~ msgstr "Sus"
#~ msgid "Bottom"
#~ msgstr "Jos"
#~ msgid ""
#~ "an initialization error occurred while starting "
#~ "'keyboard-properties-capplet'.\n"
#~ "aborting...\n"
#~ msgstr ""
#~ "o eroare de inițializare s-a produs la pornirea "
#~ "'keyboard-properties-capplet'.\n"
#~ "renunț...\n"
#~ msgid "Random Settings"
#~ msgstr "Setări aleatoare"
#~ msgid "%s Settings..."
#~ msgstr "%s Setări..."
#~ msgid "Author:"
#~ msgstr "Autor:"
#~ msgid "Author: UNKNOWN"
#~ msgstr "Autor: NECUNOSCUT"
#~ msgid "RANDOM SCREENSAVER"
#~ msgstr "SCREENSAVER ALEATOR"
#~ msgid "Screen Saver"
#~ msgstr "Screensaver"
#~ msgid ""
#~ "Pressing this button will popup a dialogbox that will help you setup the "
#~ "current screensaver."
#~ msgstr ""
#~ "Apăsând acest buton veți vedea o fereastră de dialog care vă va ajuta să "
#~ "setați screensaver-ul curent."
#~ msgid "Start After "
#~ msgstr "Pornește după "
#~ msgid "Priority:"
#~ msgstr "Prioritate:"
#~ msgid " Normal"
#~ msgstr " Normală "
#~ msgid "Screen Saver Demo"
#~ msgstr "Demo screensaver"
#~ msgid "Try"
#~ msgstr "Încearcă"
#~ msgid "Revert"
#~ msgstr "Anulează"
#~ msgid "Help"
#~ msgstr "Ajutor"
#~ msgid "Sorry, no help is available for these settings."
#~ msgstr "Îmi pare rău, nu este disponibil ajutor pentru aceste setări."
#~ msgid "capplet-command to be run."
#~ msgstr "comanda capplet ce trebuie rulată."
#~ msgid "CAPPLET"
#~ msgstr "CAPPLET"
#~ msgid "Warning:"
#~ msgstr "Atenție:"
#~ msgid "Discard all changes"
#~ msgstr "Anulează toate schimbările"
#~ msgid ""
#~ "The following modules have had changes made, but not committed. If you "
#~ "would like to edit them, please double click on the appropriate entry."
#~ msgstr ""
#~ "Următoarele module au fost modificate, însă nu au fost salvate. Dacă doriți "
#~ "să le editați, vă rog să faceți dublu-clic pe elementul corespunzător."
|