summaryrefslogtreecommitdiffstats
path: root/perl-install/share/compssList
blob: 36b0f4a443729916b718811f2e0bf7fbb0efcbd4 (plain)
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
	                               normal server developer

AVLTree-devel                                  0     0     0
AfterStep                                     22     0    53
AfterStep-APPS                                22     0    35  
Apache-ASP                                   -99     0   -99
ApacheJServ                                  -99     0   -99
Apple-StyleWriter-printer-driver__lpstyl       0     0     0
Aurora					      81    -1    -1
BasiliskII                                    35     0    10
BasiliskII-sheepnet                           33     0     8
BitchX                                        43     0    15
C++2LaTeX                                      0     0    30
Canon-CaPSL-printer-driver__cjet               0     0     0
ClanLib                                       32     0    32
ClanLib-devel				       0     0    25
ClanLib-docs				       0     0    25
ClanLib-gl				       0     0     0
ClanLib-magick				       0     0     0
ClanLib-mikmod				       0     0     0
ClanLib-png                                    0     0     0
Device3Dfx                                    -1    -1    -1
DrakConf                                      84    84    84
drakprofile                                   50     0    50
draksync                                      50     0    50
DrakeLogo                                     20     0     0
ElectricFence                                 10     0    66
Epplets                                       57     0    53
Eterm                                         57     0    53
Eterm-devel                                    0     0     0
FaxMail                                       30     0     0
FileRunner                                    45     0    25
FreeWnn                                      -20   -20   -20
FreeWnn-devel                                -70   -60   -40
GConf                                          0     0     0
GConf-devel                                    0     0    40
GXedit                                        40     0    55
Glide_V2                                      -1    -1    -1
Glide_V2-devel                                -1    -1    -1
Glide_V3                                      -1    -1    -1
Glide_V3-DRI                                  -1    -1    -1
Glide_V3-DRI-devel                            -1    -1    -1
Glide_V3-devel                                -1    -1    -1
Glide_V5                                      -1    -1    -1
Glide_V5-devel                                -1    -1    -1
HTML-Embperl                                   0    40    40
Hermes                                        32     0    42
Hermes-devel                                   0     0    35
ImageMagick                                   56     5    60
ImageMagick-devel                             10     0    60
ImageMagick-lib                                0     0     0
MAKEDEV                                       91    91    91
MandrakeUpdate                                82     0    80
Mesa                                          30     0    70
Mesa-common                                   30     0    70
Mesa-common-devel                              0     0    70
Mesa-demos                                    10     0    15
MySQL                                          2    55    15
MySQL-bench                                    2    50    10
MySQL-client                                   2    52    11
MySQL-devel                                    0     0    15
MySQL-shared                                   2    50    10
ORBit                                          0     0    55
ORBit-devel                                   10     0    55
SDL                                           50     0    25
SDL-devel                                      0     0    25
SDL_image                                      0     0    25
SDL_image-devel                                0     0    25
SDL_mixer				       0     0    25
SDL_mixer-devel				       0     0    25
SDL_net					       0     0    25
SDL_net-devel				       0     0    25
SDL_ttf					       0     0    25
SDL_ttf-devel                                  0     0    25
SVGATextMode                                   0     0     0
SmallEiffel                                    0     0    30
SysVinit                                      15    52    45
TiMidity++                                    51     0    54
WMRack                                        40     0    32
WindowMaker                                   40     0    57
WindowMaker-devel                              0     0    30
WsLib-devel                                    0     0     0
X11R6-contrib                                 55     0    47
XFree86                                       91     0    81
XFree86-100dpi-fonts                          56     0    30
XFree86-3DLabs                               -30   -30   -30
XFree86-75dpi-fonts                           91     0    81
XFree86-8514                                 -30   -30   -30
XFree86-AGX                                  -30   -30   -30
XFree86-FBDev                                -30   -30   -30
XFree86-I128                                 -30   -30   -30
XFree86-ISO8859-2                            -20   -30   -20
XFree86-ISO8859-2-100dpi-fonts               -20   -30   -20
XFree86-ISO8859-2-75dpi-fonts                -20   -30   -20
XFree86-ISO8859-2-Type1-fonts                -20   -30   -20
XFree86-ISO8859-9                            -20   -30   -20
XFree86-ISO8859-9-100dpi-fonts               -20   -30   -20
XFree86-ISO8859-9-75dpi-fonts                -20   -30   -20
XFree86-Mach32                               -30   -30   -30
XFree86-Mach64                               -30   -30   -30
XFree86-Mach8                                -30   -30   -30
XFree86-Mono                                 -30   -30   -30
XFree86-P9000                                -30   -30   -30
XFree86-S3                                   -30   -30   -30
XFree86-S3V                                  -30   -30   -30
XFree86-SVGA                                 -30   -30   -30
XFree86-VGA16                                -30   -30   -30
XFree86-W32                                  -30   -30   -30
XFree86-Xnest                                  0     0    55
XFree86-Xvfb                                   0     0    15
XFree86-cyrillic-fonts                       -20   -30   -20
XFree86-devel                                 12     0    55
XFree86-doc                                  -30   -30   -30
XFree86-glide-module                          -2    -2    -2
XFree86-libs                                  10     0     0
XFree86-server                               -30   -30   -30
XFree86-server-common                        -30   -30   -30
XFree86-static-libs                            0     0    20
XFree86-xfs                                    0     0     0
XaoS                                          40     0    25
XaoS-aalib                                     0     0     0
XaoS-svgalib                                   0     0     0
Xaw3d                                         20     0    70
Xaw3d-devel                                   10     0    60
Zope                                           0    15    30
Zope-components                     	       0    15    30
Zope-core				       0    15    30
Zope-pcgi				       0    15    30
Zope-services				       0    15    30
Zope-zpublisher				       0    15    30
Zope-zserver				       0    15    30
Zope-ztemplates                                0    15    30
aalib                                         25     0    15
aalib-devel                                    0     0    25    
abisuite                                      59     0    45
acon                                         -10   -10   -10
acpid                                          0     0     0
adjtimex                                      22    35    87
adns                                          30    30    30 
adns-devel                                     0     0    30
aktion                                        66     0    15
alsa                                           0     0     0
alsa-lib                                       0     0     0
alsa-lib-devel                                 0     0    20
alsa-source				       0     0     0
alsa-utils				       0     0     0
alsaplayer                                     0     0     0
am-utils                                       0    25    19
ami                                          -20   -20   -20
ami-gnome                                    -20   -20   -20
anacron                                       85    70    85
anonftp                                        0    86    13
apache                                       -99    80   -99
apache-common                                -99     0   -99
apache-devel                                 -99     0   -99
apache-manual                                -99    40   -99
apache-mod_perl                              -99    85   -99
apache-mod_perl-devel                        -99     0   -99
apache-suexec                                -99    75   -99
apcupsd                                       -1    -1    -1
apmd                                          -1    -1    -1
apmd-devel                                    -1    -1    -1
app-defaults-be                              -30   -30   -30
app-defaults-cs                              -30   -30   -30
app-defaults-ga                              -30   -30   -30
app-defaults-ru                              -30   -30   -30
app-defaults-th                              -30   -30   -30
app-defaults-uk                              -30   -30   -30
arpwatch                                       0    50     0
ash                                           10    10    10
aspell                                        49    15    22
aspell-ca                                    -30   -30   -30
aspell-cs                                    -30   -30   -30
aspell-da                                    -30   -30   -30
aspell-de                                    -30   -30   -30
aspell-de_CH                                 -30   -30   -30
aspell-devel                                   0     0    10
aspell-en                                    -30   -30   -30
aspell-en_CA                                 -30   -30   -30
aspell-en_GB                                 -30   -30   -30
aspell-eo                                    -30   -30   -30
aspell-es                                    -30   -30   -30
aspell-fr                                    -30   -30   -30
aspell-it                                    -30   -30   -30
aspell-nl                                    -30   -30   -30
aspell-no                                    -30   -30   -30
aspell-pl                                    -30   -30   -30
aspell-sv                                    -30   -30   -30
at                                            42    96    94
aterm                                         17     0    13
audiofile                                     25     0    26
audiofile-devel                               10     0    26
aumix                                         79     0    79
auth_ldap                                      5    75    20
autoconf                                      15     0    84
autofs                                        48    45    50
autoirpm                                     -60   -60   -60
autologin                                     82     0    82
automake                                      15     0    84
awesfx                                        20     0    13
basesystem                                     0     0     0
bash                                           0     0     0
bash-doc                                      35    50    71
bash1                                         15     5    13
bc                                            40    25    25
bdflush                                        0     0     0
bind                                           0    75     0
bind-devel                                     0     0     0
bind-utils                                    25    35    70
binutils                                      47     0    87
bison                                         10     0    80
blackbox                                      30     0    45
blt                                           10     0    75
bluefish                                      60     0    60
boa                                          -99   -99   -99
bonnie                                         5    45    25
bonobo                                        20     0    20
bonobo-devel                                   0     0    35
bootparamd                                    20    78     0
bug-buddy                                      0     0    20
byacc                                         16     0    80
bzflag                                        -1    -1    -1
bzip2                                         41    85    75
caching-nameserver                             0    70     0
cbb                                           55     0    13
cdecl                                         10     0    70
cdialog                                        3     0    20
cdp                                           40     0    27
cdparanoia                                    45     0    45
cdparanoia-devel                               0     0    30
cdrecord                                      45     0    45
cdrecord-cdda2wav                             44     0    45
cdrecord-devel                                10     0     0
cervisia                                       0     0     0
cfengine                                       0    30     0
chkconfig                                      0    65    10
chkfontpath                                    0     0    50
chromium                                      -1    -1    -1
clanbomber                                    65     0    25 
cleanfeed                                     24    65    21
clisp                                          0     0    15
compat-glibc                                   0     0    40
compat-libs                                    0     0     0
comsat                                         0    30     2
console-tools                                 97    97    97
console-tools-devel                            0     0     0
control-center                                69     0    10
control-center-devel                           0     0     0
control-panel                                  2     0     2
cooledit                                       0     0    30
corewars                                       0    15     0
cpio                                          90    89    90
cproto                                        15     0    61
cracklib                                      10    85    35
cracklib-devel                                 0     0    15
cracklib-dicts                                10    82    35
crontabs                                      95    95    95
csmash                                        -1    -1    -1
ctags                                         10     0    80
cttex                                        -30   -30   -30
cups                                         -99   -99   -99
cups-devel                                     0     0    20
cups-drivers                                 -99   -99   -99
cvs                                           18    60    72
cvsweb                                         0     0    30
cxhextris                                     50     0    36
detect                                        25    25    75 
detect-devel                                   0     0    60
detect-lst                                    25    25    75
dev                                           99    99    99
dev86                                          0     0    40
dev86-devel                                    0     0    40
devfsd                                         0     0     0
dhcp                                         -99    80   -99
dhcp-client                                    0    79     5
dhcp-relay                                     0    10     0
dhcpcd                                         0     0     0
dhcpxd                                         0     0     0
dia                                           30     0    30
dialog                                        10     0    71
diffstat                                      12    50    87
diffutils                                     42    55    87
dip                                           40    45    13
docbook-dtd31-sgml                            30     0    45
docbook-style-dsssl                            5    15    15
docbook-style-dsssl-doc                        4    14    14
dosemu                                        45     0    49
dosemu-freedos                                45     0    49
dosfstools                                    40    15    22
doxygen                                        0     0    40
dpsftp                                        45     0     0
dpsftplib                                     45     0     0
dpsftplib-devel                               45     0    15
drakfloppy                                    84     0    84
drakfont                                      84     0    84
drakxtools                                    86    80    87
dump                                          10    75    87
e2fsprogs                                     98    98    98    
e2fsprogs-devel                                0     0    25
eMusic                                        65     0    50
ed                                            45    10     5
ee                                            58     0    54
efax                                          25    78    30
egcs                                           5     0    50
egcs-c++                                       5     0    50
egcs-cpp                                       5     0    50
egcs-g77                                       5     0    50
egcs-objc                                      5     0    50
egcs-objc-devel                                4     0    20
eggdrop                                       25     0    25
eject                                         92    33    91
elm                                           22     5    13
emacs                                         49    45     0
emacs-X11                                     51     0    69
emacs-el                                       0     0    15
emacs-leim                                    20     0    50
emacs-nox                                     20     0    14
emacs-pcomplete                               20     0    30
emacs-tramp                                   20    20    30
enlightenment                                 41     0    55
enscript                                      20    25    71
eog                                           30     0    20
eperl                                          0     0    10
eshell                                        20     0    30
esound                                         0     0     0
esound-devel                                  12     0     4
etcskel                                       98    98    98
ethemes                                       40     0    35
exmh                                          40     0    36
expect                                        23     0    71
ext2ed                                         5    52    42
ext2resize                                     5    52    42
faces                                         20    75    15
faces-devel                                   10     0     0
faces-xface                                   20     0    15
faq                                           63    49    53
fbset                                         22     0     0
fdutils                                       10     0     0
fetchmail                                     45    99    31
fetchmail-daemon                              20    30    20
fetchmailconf                                 45     0    40
file                                          92    92    94
filesystem                                    99    99    99
fileutils                                     99    99    99
findutils                                     97    97    97
finger                                        40    35    27
finger-server                                  0    30     0
flex                                          13     0    72
fltk                                           0     0     0
fltk-devel                                     0     0    15
fmirror                                       45    35    40
fnlib                                         10     0     7
fnlib-devel                                   10     0     0
fonts-ttf-armenian                           -10     0   -10
fonts-ttf-big5                               -10     0   -10
fonts-ttf-decoratives                         72     0    68
fonts-ttf-gb2312                             -10     0   -10
fonts-ttf-japanese                           -10     0   -10
fonts-ttf-korean                             -10     0   -10
fonts-ttf-west_european                       77     0    74
fonts-type1-baltic                           -15   -15   -15
fortune-mod                                   10     0    10
freeciv                                       54     0    53
freetype                                      10     0     4
freetype-devel                                10     0     0
fribidi                                        0     0     0
fribidi-devel                                  0     0     0
ftp                                           90    92    90
fvwm                                          12     0    15
fvwm2                                         17     0    17
fvwm2-icons                                   17     0    17
fwhois                                        25    45    36
g-print                                       20     0    20
g-wrap                                         0     0    40
g-wrap-devel                                   0     0    20
gaddr                                         45     0    40
gaim                                          35     0    30
gated                                          0    80     0
gatos                                         55     0    49
gawk                                          10    55    87
gawk-doc                                      10    35    50
gcc                                           50    40    90
gcc-c++                                       15     0    74
gcc-chill                                     20     0    65
gcc-colorgcc                                   0     0     0
gcc-cpp                                       47     0    72
gcc-fr                                         0     0     0
gcc-g77                                       15     0    27
gcc-java                                      16     0    65
gcc-libgcj                                    15     0    30
gcc-objc                                      16     0    35
gcombust                                      40     0     0
gd                                            12     0    71
gd-devel                                      10     0    71
gd-utils                                      45     0    64
gdb                                           12     0    94
gdbm                                          12     0    72
gdbm-devel                                    10     0    72
gdk-pixbuf                                    68     0    70
gdk-pixbuf-devel                               0     0    40
gdm                                           67     0    55
gedit                                         68     0    62
gedit-devel                                    0     0     0
genromfs                                      10     0     9
gentoo                                        30     0     0
gettext                                       10    15    71
gettext-devel                                  0     0    35
getty_ps                                      99    99    99
gfcc                                          15     0    31
gftp                                          67     0    62
ggv                                           25     0     0
ghc                                            0     0    35
ghc-prof                                       0     0     2
ghostscript                                   40    70    75
ghostscript-utils                             30    50    55
ghostscript-fonts                             22    55    75
ghostscript-module-SVGALIB                    10     0    63
ghostscript-module-X                          40    60    65
gif2png                                       10     0    20
giftrans                                      42     0    71
gimp                                          69     0    67
gimp-data-extras                              55     0    58
gimp-devel                                    10     0    40
gimp-libgimp                                  10     0    50
gimp-perl                                     30     0    30
git                                           69    35    54
gkrellm                                       15    30    15
gkrellm-devel                                  0     0    20
glade                                         17     0    57
glademm                                        0     0    40
glib                                           1     0     0
glib-devel                                    10     0    87
glibc                                          1    99    96
glibc-devel                                   25     0    76
glibc-profile                                  1     0    54
gltron                                        -1    -1    -1
gmc                                           68     0    59
gmp                                           17     0    71
gmp-devel                                     10     0    71
gnomba                                        24     0    24
gnome-applets                                 68     0    55
gnome-audio                                   60     0    55
gnome-audio-extra                             55     0    50
gnome-chess                                   60     0    55
gnome-core                                    68     0    55
gnome-core-devel                              10     0    55
gnome-games                                   60     0    59
gnome-games-devel                             10     0     0
gnome-guile                                    0     0    50
gnome-guile-devel                             10     0    50
gnome-iconedit                                60     0    55
gnome-libs                                    68     0    55
gnome-libs-devel                              10     0    55
gnome-linuxconf                               74     0    74
gnome-media                                   60     0    58
gnome-network                                 60     0    58
gnome-objc                                     0     0    40
gnome-objc-devel                              10     0    40
gnome-pilot                                   55     0    45
gnome-pilot-conduits                          45     0    35
gnome-pilot-devel                              0    15     0
gnome-pim                                     61     0    70
gnome-pim-conduits                            51     0    60
gnome-pim-devel                               10     0    70
gnome-print                                   62     0    55
gnome-print-devel                             10     0    55
gnome-tiles                                   60     0    55
gnome-toaster                                 65     0    61
gnome-users-guide                             66     0    60
gnome-utils                                   66     0    50
gnome-vfs                                      0     0     0
gnome-vfs-devel                                0     0    30
gnomeicu                                      61     0    58
gnomemm                                        0     0    40
gnomemm-devel                                  0     0    30
gnorpm                                        74     0    71
gnozip                                        50     0    60
gnucash                                       35     0    15
gnucash-devel                                  0     0    12
gnuchess                                      40     0    31
gnumeric                                      67     0    58
gnuplot                                       65     0    53
gnus                                          20     0    14
gob                                            0     0    20
gperf                                         12     0    72
gphoto                                        60     0    58
gpm                                            0    65    87
gpm-devel                                     10     0    55
gprolog                                        5     5    45
gps                                           30    15    30
gqcam                                          0     0     0
gqview                                        55     0    49
grep                                           0    92    94
grip                                          60     0    35
groff                                          0     0    62
groff-for-man                                  0     0     0
groff-gxditview                               22     0    19
groff-perl                                     0     0     0
grpmi                                          0     0     0
grub                                          99    99    99
grub-doc                                       0     0    25
gsl                                           10     0     0
gsl-devel                                      0     0     0
gsu                                           65     0    53
gtk+                                           0     0    70
gtk+-devel                                    10     0    70
gtk+licq                                      45     0    30
gtk+mdk                                        0     0    15
gtk+mdk-devel                                  0     0    15
gtk-engines                                    0     0    70
gtk-themes                                    50     0    20
gtkdialogs                                     0     0     0
gtkeyboard                                    20     0     0
gtkglarea                                     10     0    15
gtkglarea-devel                                0     0    15
gtkgo                                         15     0     5
gtkgraph                                      65     0    35
gtkhtml                                        0     0     0
gtkhtml-devel                                  0     0     0
gtkmm                                         20     0    55
gtkmm-devel                                   20     0    55
gtktalog        			      52     0    25
gtkzip                                        60     0    58
gtop                                          60     0    58
gtulpas                                       10     0    10
guile                                         11     0    75
guile-devel                                   10     0    75
gurpmi                                        82     0    86
gv                                            55     0    49
gzip                                          98    98    98
hackkernel                                     0     0     0
hackkernel-doc                                 0     0     0
hackkernel-headers                             0     0     0
hackkernel-pcmcia-cs                           0     0     0
hackkernel-source                              0     0     0
happy                                          0     0    25
harddrake                                     83     0    83
haskell-GTK                                    0     0    10
haskell-GTK-devel                              0     0    10
hdparm                                        98    98    98
heartbeat                                     -1    25    -1
hexedit                                       91    91    91
howto-html-de				     -30   -30   -30
howto-html-el				     -30   -30   -30
howto-html-en				     -30   -30   -30
howto-html-es				     -30   -30   -30
howto-html-fr				     -30   -30   -30
howto-html-hr				     -30   -30   -30
howto-html-id				     -30   -30   -30
howto-html-it                                -30   -30   -30
howto-html-ja				     -30   -30   -30
howto-html-ko				     -30   -30   -30
howto-html-pl				     -30   -30   -30
howto-html-ro				     -30   -30   -30
howto-html-sl				     -30   -30   -30
howto-html-sv				     -30   -30   -30
howto-html-zh                                -30   -30   -30
howto-utils                                    0     0     0
hugs98                                         0     0    15
hylafax                                        0     0     0
hylafax-client                                 0     0     0
hylafax-server                                 0     0     0
ibtk                                          20     0    13
ical                                          40     0    27
icepref                                       50     0    54
icewm                                         65     0    78
icewm-light                                   90     0    80
imap                                           0    80     6
imap-devel                                     0     0     6
imlib                                         10     0    71
imlib-cfgeditor                               70     0    71
imlib-devel                                   10     0    50
imwheel                                       78    60    73
indent                                        20     0    91
indexhtml                                      0    87    76
inews                                          6    12    15
info                                          20    65    70 
info-install                                   0     0    10
initscripts                                   99    99    99
inn                                            0    55     0
inn-devel                                      0     0     0
intimed                                        0    55    10
ipchains                                      15    98    13
iplog                                         15    15    15               
iproute2                                       0    30     0
ipvsadm                                        0    15     0
ipxutils                                      20    85     9
irda-utils                                    -1    -1    -1
irssi                                         59     0    57
isapnptools                                   43    73    73
isapnptools-devel                              0     0    70
isdn4k-utils                                 -99   -99   -99
isdn4net                                     -99   -99   -99
isicom                                        20     0    13
ispell                                        49    15    22
ispell-af                                    -15   -15   -15
ispell-br                                    -15   -15   -15
ispell-ca                                    -15   -15   -15
ispell-cs                                    -15   -15   -15
ispell-da                                    -15   -15   -15
ispell-de                                    -15   -15   -15
ispell-el                                    -15   -15   -15
ispell-en                                    -15   -15   -15
ispell-eo                                    -15   -15   -15
ispell-es                                    -15   -15   -15
ispell-fi                                    -15   -15   -15
ispell-fr                                    -15   -15   -15
ispell-ga                                    -15   -15   -15
ispell-gd                                    -15   -15   -15
ispell-gv                                    -15   -15   -15
ispell-id                                    -15   -15   -15
ispell-it                                    -15   -15   -15
ispell-nl                                    -15   -15   -15
ispell-no                                    -15   -15   -15
ispell-pl                                    -15   -15   -15
ispell-pt                                    -15   -15   -15
ispell-pt_BR                                 -15   -15   -15
ispell-ro                                    -15   -15   -15
ispell-ru                                    -15   -15   -15
ispell-sk                                    -15   -15   -15
ispell-sl                                    -15   -15   -15
ispell-sv                                    -15   -15   -15
itcl                                          10     0    60
jadetex                                       15     0    45
jed                                           16    18    14
jed-common                                     0    18     0
jed-xjed                                      40     0    22
jikes                                          1     0    65
joe                                           20    20    15
kaffe                                         10     0    60
kdbg                                          15     0    27
kde1-compat                                    0     0     0
kde1-compat-devel                              0     0     0
kdeaddutils                                   73     0    62
kdeaddutils-devel                              1     1    50
kdeadmin                                      72     0    60
kdebase                                       79    40    68
kdebase-devel                                  1     1    60
kdegames                                      71     0    59
kdegraphics                                   77    40    66
kdegraphics-devel                              1     1    60
kdelibs                                        0     0     0
kdelibs-devel                                  1     1    60
kdelibs-sound                                 60     0    55
kdelibs-sound-devel                            1     1    60
kdemultimedia                                 77     0    66
kdemultimedia-devel                            1     1    60
kdenetwork                                    72     0    60
kdenetwork-devel                               1     1    60
kdepim                                        72     0    63
kdesdk                                         0     0    35
kdesupport                                     0     0     0
kdesupport-devel                               0     0    15
kdetoys                                       70     0    65
kdeutils                                      78     0    67
kdiff                                          0     0     0
kdiskcat                                       0     0     0
kdoc                                           0     0    35
kernel                                        99    99    99
kernel-doc                                     5    50    65
kernel-headers                                 1    45    94
kernel-linus                                  -1    -1    -1
kernel-pcmcia-cs                              -1    -1    -1
kernel-secure                                  0     0     0
kernel-smp                                    -1    -1    -1
kernel-source                                  0    45    65
kernel-utils                                   0     5    25
kfilecoder                                     0     0     0
kfirewall                                      0     0     0
kfortune                                       0     0     0
kfsstatus                                      0     0     0
kfun21                                         0     0     0
kimon                                          0     0     0
kinput2-wnn4                                 -15   -15   -15
kisocd                                         0     0     0
kless                                          0     0     0
klilo                                          0     0     0
klyx                                           0     0     0
kmag                                           0     0     0
kmol                                           0     0     0
kmp3                                           0     0     0
kmp3te                                         0     0     0
koffice                                       69     0    55
koffice-devel                                  0     0    35
kon2                                         -12   -60   -15
kover                                         69     0    60
kpacman                                        0     0     0
kreglo                                         0     0     0
krubik                                         0     0     0
ksendfax                                       0     0     0
kslide                                         0     0     0
ktail                                          0     0     0
ktelnet                                        0     0     0
kterm                                        -10   -90   -10
kudzu                                         97     0    97
kudzu-devel                                    0     0    43
kups                                          60     0    50
kups-devel                                     0     0     0
kvideogen                                      0     0     0
kvirc                                         69     0    56
kvoice                                         0     0     0
kvoicecontrol                                  0     0     0
kwebget                                        0     0     0
lame                                          15    40    35
latex2html                                    25     0    50
latte                                          0     0    45
ld.so                                         98    98    98
leafnode                                       0    50     0
less                                          97    97    97
lesstif                                        0     0     0
lesstif-clients				       0     0     0
lesstif-devel				       0     0     0
lesstif-mwm                                    2     0     2
lftp                                          50    78    83
lha                                           40    25    72
libPropList                                   10     0    80
libPropList-devel                              0     0    34
libc                                          10    15    75
libelf                                        10    15    80
libghttp                                      10     0    55
libghttp-devel                                10     0    55
libglade                                      10     0    55
libglade-devel                                10     0    40
libgr                                         10     0    71
libgr-devel                                   10     0    70
libgr-progs                                   10     0     9
libgtop                                       10     0    55
libgtop-devel                                 10     0    55
libjpeg                                       10     0    71
libjpeg-devel                                 10     0    70
libmikmod                                     10     0    55
libmikmod-devel                               10     0    55
libnet                                        97    97    97
libole2                                        0     0     0
libole2-devel                                  0     0     0
libpcap                                       10    80    72
libpcap-devel                                  0     0     0
libpng                                        10     0    71
libpng-devel                                  10     0    71
librep                                        10     0    50
librep-devel                                  10     0    50
libsafe                                        0     0    35
libsigc++                                      0     0    25
libsigc++-devel                                0     0    25
libsigc++-examples                             0     0    25
libstdc++                                     10     0    80
libstdc++-compat                              10     0    60
libstdc++-devel                               10     0    80
libtabe                                      -15   -90   -15
libtabe-devel                                -15   -90   -15
libtermcap                                    10    55    87
libtermcap-devel                              10     0    64
libtiff                                       10     0    72
libtiff-devel                                 10     0    72
libtool                                       10     0    85
libtool-devel                                  0     0     0
libungif                                      10     0    72
libungif-devel                                10     0    72
libungif-progs                                10     0     2
libunicode                                    10     0    80
libunicode-devel                               0     0    50
libwmf                                         0     0    15
libxml                                        10     0    71
libxml-devel                                  10     0    71
libxml2                                       10     0    71
libxml2-devel                                 10     0    71
licq                                          62     0    45
licq-autoreply                                45     0    30
licq-console                                  45     0    30
licq-devel				       0     0    20
licq-forwarder                                45     0    30
licq-rms				      45     0    30
licq-update-hosts                             45     0    30
lilo                                          99    99    99
lilo-doc                                       0     0    30
links                                         20    25    20
linux_logo                                    92    72    92
linuxconf                                     90    79    86
linuxconf-gui                                 -1    -1    -1
linuxconf-lib                                  0     0     0
linuxconf-util                                 0     0     0
linuxconf                                     90    79    86
linuxconf-devel                               10     0    70
lkmpg                                          2     0    65
locales                                       96    76    96
locales-af                                    -1    -1    -1
locales-ar                                    -1    -1    -1
locales-az                                    -1    -1    -1
locales-be				      -1    -1    -1
locales-bg                                    -1    -1    -1
locales-br                                    -1    -1    -1
locales-ca                                    -1    -1    -1
locales-cs                                    -1    -1    -1
locales-cy                                    -1    -1    -1
locales-da                                    -1    -1    -1
locales-de                                    -1    -1    -1
locales-el                                    -1    -1    -1
locales-en                                    -1    -1    -1
locales-eo                                    -1    -1    -1
locales-es                                    -1    -1    -1
locales-et                                    -1    -1    -1
locales-eu                                    -1    -1    -1
locales-fa                                    -1    -1    -1
locales-fi                                    -1    -1    -1
locales-fo                                    -1    -1    -1
locales-ur                                    -1    -1    -1
locales-fr                                    -1    -1    -1
locales-ga                                    -1    -1    -1
locales-gd                                    -1    -1    -1
locales-gl                                    -1    -1    -1
locales-gv                                    -1    -1    -1
locales-he                                    -1    -1    -1
locales-hi				      -1    -1    -1
locales-hr                                    -1    -1    -1
locales-hu                                    -1    -1    -1
locales-hy                                    -1    -1    -1
locales-id                                    -1    -1    -1
locales-is                                    -1    -1    -1
locales-it                                    -1    -1    -1
locales-ja                                    -1    -1    -1
locales-ka                                    -1    -1    -1
locales-kl                                    -1    -1    -1
locales-ko                                    -1    -1    -1
locales-kw                                    -1    -1    -1
locales-lo                                    -1    -1    -1
locales-lt                                    -1    -1    -1
locales-lv                                    -1    -1    -1
locales-mi				      -1    -1    -1
locales-mk                                    -1    -1    -1
locales-ms                                    -1    -1    -1
locales-nl                                    -1    -1    -1
locales-no                                    -1    -1    -1
locales-oc                                    -1    -1    -1
locales-pd                                    -1    -1    -1
locales-ph				      -1    -1    -1
locales-pl                                    -1    -1    -1
locales-pp                                    -1    -1    -1
locales-pt                                    -1    -1    -1
locales-ro                                    -1    -1    -1
locales-ru                                    -1    -1    -1
locales-sk                                    -1    -1    -1
locales-sl                                    -1    -1    -1
locales-sq				      -1    -1    -1
locales-sr                                    -1    -1    -1
locales-sv                                    -1    -1    -1
locales-ta				      -1    -1    -1
locales-tg				      -1    -1    -1
locales-th                                    -1    -1    -1
locales-tr                                    -1    -1    -1
locales-tt                                    -1    -1    -1
locales-uk                                    -1    -1    -1
locales-vi                                    -1    -1    -1
locales-wa                                    -1    -1    -1
locales-yi                                    -1    -1    -1
locales-zh                                    -1    -1    -1
logrotate                                      0    25    15
losetup                                        5    45    35
lout                                          15    35    10
lout-doc                                      31    32    10
lpg                                           40     0    80
lpr                                          -99   -99   -99
lrzsz                                          0    34     0
lslk                                          20    49    54
lsof                                          10     0    67
ltrace                                        10     0     0
lynx                                          42    78    84
lyx                                           50     0    58
m4                                            15     0    80
macutils                                      22     5    19
mailcap                                        5     5     4
mailx                                         92    92    92
make                                          50    50    94
man                                           90    65    72
man-pages                                     90    65    72
man-pages-cs                                 -10   -30   -25
man-pages-de                                 -10   -30   -25
man-pages-es                                 -10   -30   -25
man-pages-fr                                 -10   -30   -25
man-pages-hu                                 -10   -30   -25
man-pages-id                                 -10   -30   -25
man-pages-it                                 -10   -30   -25
man-pages-ja                                 -10   -30   -25
man-pages-ko                                 -10   -30   -25
man-pages-pl                                 -10   -30   -25
man-pages-ru                                 -10   -30   -25
man-pages-zh                                 -10   -30   -25
mandrake-release                              99    99    99
mandrake_desk                                 88     0    88
mandrake_doc-de                              -15   -90	 -25
mandrake_doc-en                              -15   -90	 -25
mandrake_doc-es                              -15   -90	 -25
mandrake_doc-fr                              -15   -90	 -25
mandrake_doc-it                              -15   -90	 -25
mandrake_doc-ru                              -15   -90	 -25
mars-nwe                                       0    35     0
mathplot                                      30     0    20
mawk                                           0    25    80
mc                                            49    45    31
mcserv                                         0    40     9
mek                                           40     0     0
memprof                                        2     5    65
menu                                          90     0    80
menudrake       			      79    75    75
userdrake       			      50     0    40
mercury                                        0     0    45
metamail                                      40    80    50
mgetty                                        24    20     9
mgetty-contrib                                28    20    15
mgetty-sendfax                                28    20    15
mgetty-viewfax                                28    20    15
mgetty-voice                                  28    20    15
mikmod                                        42     0    10
mingetty                                       5    25    15
minicom                                       27     0     4
mirrordir                                     26    99     0
mkbootdisk                                    35    55    60
mkinitrd                                      99    99    99
mkisofs                                       26     0    13
mktemp                                        15    75    65
mkxauth                                        2    99     1
mm                                             0     0    15
mm-devel                                       0     0     0
mod_php                                      -99    35   -99
php-gd                                       -99    15   -99
php-imap                                     -99    15   -99
php-ldap                                     -99    15   -99
php-mysql                                    -99    15   -99
php-pgsql                                    -99    15   -99
php-oracle                                   -99    15   -99
php-dba_gdbm_db2                             -99    15   -99
php-readline                                 -99    15   -99
mod_ssl                                      -99    75   -99
mod_ssl-sxnet                                -99    30   -99
modutils                                      99    99    99
mon                                            0    40     0
mount                                         97    97    97
mouseconfig                                    0     0     0
mozilla-fonts                                  0     0     0
mp3info                                       50    20    50
mpage                                         55    65    80
mpeg_lib        			       0     0     0
mpeg_lib-devel                                 0     0    30
mpeg_lib-devel                        	       0     0     0
mpg123                                        42     0    42
msec                                          98    98    98
mt-st                                         40     0    49
mtools                                        90     0    84
mutt                                          10     0    10
mxp                                            0     0     0
nag                                           35    75    25
nasm                                          20    20    65
nasm-doc                                       0    20    65
nasm-rdoff                                     0    20    65
nc                                             0     0     0
ncftp                                         55     0    49
sftp                                          15    10    15
ncompress                                     42    79    91
ncpfs                                          0     0     0
ncurses                                        0     0    80
ncurses-extraterms                             0     0     0
ncurses-devel                                 10     0    75
nedit                                         45    20    65
net-tools                                     95    96    95
netkit-base                                   82    99    82
netscape-castellano                          -13   -30   -18
netscape-catalan                             -13   -30   -18
netscape-common                                0     0     0
netscape-communicator                         78    60    73
netscape-euskara                             -13   -30   -18
netscape-francais                            -13   -30   -18
netscape-german                              -13   -30   -18
netscape-japanese                            -13   -30   -18
netscape-navigator                             0     0     0
netscape-polish                              -13   -30   -18
netscape-russian                             -13   -30   -18
netscape-spanish                             -13   -30   -18
netscape-walon                               -13   -30   -18
newt                                          10     0    75
newt-devel                                    10     0    75
nfs-utils                                    -99    80    13
nfs-utils-clients                             23    75    23
nist                                          55     0    45
nmap                                           5    40    40
nmap-frontend                                  5    40    40
nmh                                            0     0     0
nscd                                           0    40     0
nss_ldap                                       0    55    25
ntp                                           -1    -1    -1
ntsysv                                         0    65    25
numlock                                      -11   -11   -11
oaf                                            0     0     0
oaf-devel                                      0     0     0
ocaml                                          0     0    35
octave                                         0     0    30
oggvorbis                                     30    10    20
oggvorbis-devel                                0     0    15
oggvorbis-examples                             0     0    15
open                                          20    45    80
openjade                                       5    15    15
openldap                                       0    50    35
openldap-devel                                 0     0    25
openssl                                        0     0     0
openssl-devel                                  0     0     0
oregano                                        0     0     0
p2c                                           10     0    71
p2c-devel                                     10     0    55
pam                                            7    99    91
pam-devel                                      0     0     0
pam-doc                                        0    50    50
pan                                           22     0     0
pango                                         10     0    10
pango-devel                                    0     0    10
parted                                        35    35    35
parted-devel                                   0     0    35
passwd                                        99    99    99
patch                                         14     0    72
pciutils                                      16    55    55
pciutils-devel                                 0     0    20
pdksh                                         10    25     9
penguin-command                               35     0    10
perl                                          20    19    90
perl-Apache-Filter                             0     0     0
perl-Apache-SSI                                0     0     0
perl-Apache-Session                            0     0     0
perl-Compress-Zlib                             0     0     0
perl-Convert-BER                               0     0     0
perl-DBI                                      10     0    65
perl-DBIx-Recordset                            0     0     0
perl-DB_File                                  10     0    50
perl-Data-ShowTable                           10     0    50
perl-Date-Calc                                 0     0     0
perl-DateManip                                 0     0     0
perl-Devel-Symdump                             0     0     0
perl-Digest-MD5                               10     0    70
perl-ExtUtils_F77                              0     0     0
perl-File-Tail                                 0     0     0
perl-GTK                                      10     0    72
perl-GTK-GLArea                               10     0    70
perl-GTK-GdkImlib                             10     0    70
perl-GTK-Glade                                10     0    70
perl-GTK-Gnome                                10     0    70
perl-GTK-GtkHTML                               0     0     0
perl-HTML-Clean                                0     0     0
perl-HTML-Parser                              10     0    55
perl-HTML-SimpleParse                         10     0    50
perl-IO-stringy                                5     0    65
perl-MIME-Base64                               5     0    45
perl-MIME-tools                                5     0    50
perl-MLDBM                                     0     0     0
perl-MP3-Info                                  5     0    40
perl-Magick                                    0     0     0
perl-MailTools                                 5     0    50
perl-Mon                                       0     0     0
perl-Msgcat                                    5     0    50
perl-Mysql                                     5     0    40
perl-Net-Telnet                                0     0     0
perl-Net_SSLeay                                0     0     0
perl-PDL                                      10     0    75
perl-PDL-doc                                   0     0     0
perl-Parse-RecDescent                         10     0    75
perl-Parse-Yapp                                0     0     0
perl-Period                                    0     0     0
perl-RPM                                       0     0     0
perl-Storable                                  0     0     0
perl-Term-Readline-Gnu                        10    10    88
perl-Tie-Cache                                 0     0     0
perl-Time-HiRes                                0     0     0
perl-TimeDate                                  0     0     0
perl-Tk                                        0    15     0
perl-Tk-devel                                  0     0     0
perl-Tk-doc                                    0     0     0
perl-URI                                       5     0    50
perl-XML-Parser                                0     0     0
perl-XML-XSLT                                  0     0     0
perl-base                                      0     0     0
perl-devel                                     0     0    30
perl-libnet                                   10    10    80
perl-libwww-perl                              10    10    80
perl-libxml-enno                               0     0     0
perl-libxml-perl                               0     0     0
perl-Array-RefElem                             0     0     0
perl-Data-DumpXML                              0     0     0
perl-ExtUtils-PerlPP                           0     0     0
perl-File-NCopy                                0     0     0
perl-Image-Size                                0     0     0
perl-Mail-Sendmail                             0     0     0
perl-Net-XWhois                                0     0     0
perl-XML-RSS                                   0     0     0
perlftlib                                     10     0     0
php                                            0    35     5
php-devel                                      0     0     5
php-manual                                     0     0     5
pidentd                                       15    69    87
pilot-link                                    40     0    27
perl-PDA-Pilot                                 0     0     0
pilot-link-devel                              11     0    25
pine                                          40     0    27
pinfo                                         20    20    20
pingus                                        40     0    10
piranha                                        0    10     0
piranha-docs                                   0    10     0
piranha-gui                                    0    10     0
playmidi                                      43     0    19
playmidi-X11                                  53     0    20
plugger                                       40     0    40
pmake                                         22     0    75
pmake-customs                                 12     0    72
popt                                          10     0    80
popt-devel                                     0     0    45
portmap                                        0    91    19
postfix                                       20    88    51
postgresql                                     0    56    23
postgresql-devel                               0     0    23
postgresql-jdbc                                0     0    15
postgresql-odbc                                0     0    23
postgresql-perl                                0     0    23
postgresql-python                              0     0     5
postgresql-server                              0    56    23
postgresql-tcl                                 0     0    23
postgresql-test                                0     0    23
postgresql-tk                                  0     0     5
ppp                                            0     0     0
pppoe-linuxconf                                0     0     0
pptp-adsl-fr                                 -99   -99   -99
pptp-client                                  -99   -99   -99
procinfo                                      24    15    96
procmail                                       2    65    45
procps                                        98    98    98
procps-X11                                    50     0    32
procps-devel                                   0     0     0
proftpd                                      -99   -99   -99
psacct                                        20    70    87
psmisc                                        25    62    56
pspell                                         0     0     0
pspell-devel                                   0     0     0
psutils                                        5    42    15
pth                                            0     0    25
pth-devel                                      0     0    15
publib-devel                                   0     0     0
pump                                           0     0     0
pump-devel                                     0     0     0
pwdb                                          13    90    75
pwdb-devel                                     0     0    50
pygnome                                       12     0    50
pygnome-applet                                10     0    30
pygnome-capplet                               10     0    30
pygnome-libglade                              10     0    30
pygtk                                         13     0    50
pygtk-glarea                                  15     0    25
pygtk-libglade                                16     0    50
pysol                                         27     0    27
python                                        15     0    74
python-devel                                   0     0    65
python-docs                                   31     0    40
python-imaging                                31     0    40
pythonlib                                     17     0    75
qcad                                           5     0     5
qiv                                           78     0    70
qt                                             0     0    55
qt-devel                                      10     0    55
qt-qgl                                        10     0    50
qt-qimgio                                     10     0    50
qt2                                            0     0    45
qt2-devel                                      0     0    45
qt2-doc                                        0     0    30
qtcups                                         0     0     0
qtcups-devel                                   0     0     0
queso                                          0    25    35
quota                                         42    85    37
raidtools                                     25    85     4
rcs                                           12     0    71
rdate                                         10    80     9
rdist                                         10    75     9
readline                                      11     0    70
readline-devel                                11     0    65
recode                                        10     0    72
recode-devel                                   0     0    50
reiserfs-utils                                60    60    60
rep-gtk                                        0     0    20
rep-gtk-gnome                                  0     0    20
rep-gtk-libglade                               0     0    20
rgrep                                         55    55    75
rhs-printfilters                               1     1     0
rmt                                           24     0    24
rocksndiamonds                                35     0    10
rootfiles                                     99    99    99
routed                                         0    90    19
rp-pppoe                                     -99   -99   -99
rpm                                           99    99    99
rpm-build                                     45    45    70
rpm-devel                                     10     0    80
rpm-python                                     0     0    50
rpmdrake                                      84     0    81
rpmlint                                       10    10    60
rpmtools                                       0     0    25
rpmtools-compat                                0     0     0
rpmtools-devel                                 0     0    25
rsh                                           46    99    75
rsh-server                                   -99    55    25
rsync                                         20    99    75
ruby                                           0     0    25
ruby-doc				       0     0    25
ruby-extensions				       0     0    25
ruby-gtk                                       0     0    25
rusers                                        20     0    20
rute                                         -50   -75   -60
rwall                                         -1     0    -1
rwho                                          -1     0    -1
rxvt                                          49     0    80
rxvt-CLE                                     -10   -90   -10
sag                                           39    35    25
samba                                         21    99    23
samba-client                                  55    56    50
samba-common                                   0     0     0
sane                                          45     0    53
sane-devel                                    10     0     2
sash                                           5     5     5
sawfish                                       59     0    57
sawfish-themer                                15     0    15
sawfish-themes                                50     0    50
screen                                        26    43    79
sed                                           97    97    97
sendmail                                     -99   -99   -99
sendmail-cf                                    0     0     0
sendmail-doc                                   0     0     0
setserial                                     42     0    55
setup                                         15    25    15
sfm                                           25     0    25
sgml-common                                    5    15    15
sgml-tools                                     5    15    15
sh-utils                                      97    97    97
shadow-utils                                  98    98    98
shapecfg                                      20    75     8
sharutils                                     43    99    38
sketch                                        45     0     0
slang                                         12     0    75
slang-devel                                   10     0    70
slang-doc                                      0     0    70
slocate                                       99    99    99
slrn                                          10     0    10
slrn-pull                                     35     0    45
smpeg                                         50     0    25
smpeg-devel                                    0     0    25
sndconfig                                     70    40    70
sox                                           41    32    80
sox-devel                                     13     0    70
space_sounds                                  52     0    55
spacecup                                      -1    -1    -1
spec-helper                                    0     0    35
spellutils                                     0     0     0
spruce                                         0     0     0
squid                                          0    45    16
stat                                           5    55    45
statserial                                    15     0    13
strace                                        11     0    87
sudo                                           0    30     0
svgalib                                       10     0    63
svgalib-devel                                 10     0    63
swatch                                        22    65     4
swi-prolog                                     5     5    45
swig                                           0     0    20
swig-devel                                     0     0    10
symlinks                                      23    75    29
sympa                                         -1    40    -1
sysklogd                                      97    97    97
t1lib                                          1     0    29
t1lib-devel                                   10     0    40
taipeifonts                                  -10     0   -10
talk                                          44     0    39
talk-server                                    0     0     0
taper                                         42     0    27
tar                                           97    97    97
tcl                                           12     0    70
tcllib                                         0     0     0
tclx                                          12     0    70
tcp_wrappers                                   0    99     0
tcp_wrappers-devel                             0     0     0
tcpdump                                       10    79     2
tcsh                                           1    25    15
telnet                                        90    79    92
openssh                                       65    75    65
openssh-server                               -99    35   -99
openssh-clients                               65    75    65
openssh-askpass                                0     0     0
openssh-askpass-gnome                          0     0     0
gnupg                                         90    90    90
telnet-server                                -99    28   -99
termcap                                       98    98    98
tetex                                         25     0    50
tetex-afm                                     25     0    40
tetex-doc                                     25     0    40
tetex-dvilj                                   40     0    40
tetex-dvips                                   25     0    40
tetex-latex                                   25     0    40
tetex-latex-heb                              -65   -90   -90
tetex-xdvi                                    25     0    50
texinfo                                       22     0    50
textutils                                     99    99    99
teyjus                                         0     0    35
tftp                                           0    40     2
tftp-server                                    0    40     2
thud                                           0     0     0
time                                          40    65    87
timeconfig                                    55    80    60
timed                                         40    70    36
timetool                                      54     0    57
timidity-instruments                          51     0    54
tin                                           44     0    39
tix                                           15     0    60
tk                                            15     0    60
tkbabel                                       15     0    15
tkcvs                                         15     0    15
tkinter                                       15     0    60
tksysv                                        55     0    60
tmake                                         10     0    25
tmpwatch                                      35    75    60
traceroute                                    40    79    29
transfig                                      16     0    14
tree                                          40    25    10
trn                                           46     0    41
trophy                                        35     0    10
tunelp                                        24    15    28
tuxracer                                      -1    -1    -1
ucd-snmp                                       0    70    45
ucd-snmp-devel                                 0    25    45
ucd-snmp-utils                                 0    37    45
umb-scheme                                    10     0    65
unarj                                         40    45    16
units                                         22     0    10
unixODBC                                       0     0     0
unzip                                         70    75    91
urlview                                       43     0    47
urpmi                                         95    95    95
urw-fonts                                     50     0    34
usbview                                        5     0    10
usermode                                      51     0    58
usernet                                       42    55    37
utempter                                      90     0    73
utempter-devel                                 0     0     0
util-linux                                    98    98    98
uucp                                           0    80     2
uxcook                                         0     0     0
vigmeup                                       23     0    11
vim-X11                                       52     0    26
vim-common                                     0    19     0
vim-enhanced                                  46    78    83
vim-minimal                                   98    98    98
vimguide                                      30     0    25 
vixie-cron                                    97    97    97
vlock                                         40    99    80
vnc                                           44     0    39
vnc-SVGALIB                                   43     0    38
vnc-doc                                       38    35    33
vnc-java                                      38     0    34
vnc-server                                     0    40    28
webmin                                        20    40    20
wget                                          65    75    53
which                                          1    25    25
wine                                          54     0    57
wine-devel                                     0     0     0
wmakerconf                                    47     0    57
wmnet                                         24     0    21
words                                         47    85    42
wu-ftpd                                      -99    85   -99
wv                                            55     0    54
wv-devel                                       0     0     0
x3270                                          1     0     0
xa+cv                                        -10   -20   -10
xalf                                          68     0    55
xanim                                         58     0    54
xbanner                                       15     0    12
xboard                                        54     0    48
xboing                                        53     0    47
xcdroast                                      59     0    53
xchat                                         58     0    52
xcin                                         -10   -10   -10
xcpustate                                     53     0    47
xdaliclock                                    57     0    51
xdelta                                        16     0     5
xdelta-devel                                  10     0     2
xdosemu                                       34     0    37
xearth                                        53     0    56
xemacs                                        57     0     0
xemacs-el                                      0     0    15
xemacs-extras                                 50     0    36
xemacs-info                                   54     0    42
xemacs-mule                                    0     0     0
xfce                                           0     0     0
xfig                                          39     0    33
xfishtank                                     51     0    45
xgammon                                       40     0    31
xinetd                                         0     0     0
xinetd-devel                                   0     0     0
xinitrc                                        0     0     0
xinput                                        10     0    30
xjewel                                        58     0    52
xkobo                                         57     0    51
xli                                           65     0    60
xlispstat                                      2     0    45
xloadimage                                    45     0    30
xlockmore                                     58     0    52
xmailbox                                      53     0    47
xmame                                         25     0    25
xmess                                         25     0    15
xmms                                          64     0    57
xmms-devel                                     0     0    15
xmms-esd                                      46     0    41
xmms-gnome                                    62     0    52
xmms-kjofol-skins                             50     0    50
xmms-mesa                                     -1    -1    -1
xmms-mikmod                                   43     0    38
xmms-more-vis-plugins                         55     0    55
xmms-oggvorbis                                64     0    57
xmms-skins                                    60     0    55
xmms-smpeg                                    50     0    45
xmorph                                        52     0    44
xmovie                                        55     0    35
xntp3                                          0    75    31
xoscope                                       10     0    10
xosview                                       51     0    45
xpaint                                        53     0    47
xpat2                                         43     0    38
xpcd                                          40     0    30
xpcd-gimp                                     30     0    25
xpcd-svga                                      0     0     0
xpdf                                          57     0    51
xpilot                                        59     0    53
xpm                                           52     0    64
xpm-devel                                     10     0    56
xpp                                           60     0    50
xpuzzles                                      50     0    43
xrally                                         5     0     5
xrn                                           55     0    49
xscreensaver                                  68     0    55
xscreensaver-gl                               -1    -1    -1
xsoldier                                      51     0    45
xsysinfo                                      55     0    56
xterm                                         87     0    80
xtoolwait                                     50     0    35
xtraceroute                                   50     0    40
xtrojka                                       51     0    45
xwc                                           65     0    40
xwpe                                           0     0    20
xwpe-X11                                       0     0    20
xwpick                                        55     0    49
xxgdb                                         53     0    47
yodl                                           0     0     0
yp-tools                                       0    40     0
ypbind                                         0    40     0
ypserv                                         0     0     0
ytalk                                         21    75    18
yudit                                         50     0    38
zgv                                           15     0    13
zip                                           70    65    87
zlib                                          16    60    94
zlib-devel                                    10     0    72
zsh                                           20    50    72
zsh-doc                                        0    35    60
jpilot                                        40     0    30
jpilot-Mail                                   12     0    10
jpilot-syncmal                                12     0    10
jpilot-plugin-devel                            0     0     0
Maelstrom                                     50     0    35
auctex                                         5     0     5
bcast                                         15     0    10
mpeg2_movie                                   10     0     8
bg5ps                                        -10   -10   -10
eroaster                                      55     0    45
everybuddy                                    52     0    52
jabber                                         0    30     0
libjabber                                      0     0     0
libjabber-devel                                0     0     0
gabber                                        35    10    20
gdk-pixbuf-gnomecanvas                         0     0     0
gdk-pixbuf-loaders                             0     0     0
gdk-pixbuf-xlib                                0     0     0
htdig                                         20     0    15
libxode                                        0     0     0
libxode-devel                                  0     0     0
libgnet                                        0     0     0
libgnet-devel                                  0     0     0
libetherx                                      0     0     0
libetherx-devel                                0     0     0
screem                                        55     0    60
portsentry                                     0    15     0
ttfprint                                     -10   -10   -10
kde-i18n-Afrikaans                           -12   -51	 -23
kde-i18n-Basque				     -12   -51	 -23
kde-i18n-Brazil				     -12   -51	 -23
kde-i18n-Breton				     -12   -51	 -23
kde-i18n-British			     -12   -51	 -23
kde-i18n-Bulgarian			     -12   -51	 -23
kde-i18n-Catalan			     -12   -51	 -23
kde-i18n-Chinese			     -12   -51	 -23
kde-i18n-Chinese-Big5			     -12   -51	 -23
kde-i18n-Croatian			     -12   -51	 -23
kde-i18n-Czech				     -12   -51	 -23
kde-i18n-Danish				     -12   -51	 -23
kde-i18n-Dutch				     -12   -51	 -23
kde-i18n-Esperanto			     -12   -51	 -23
kde-i18n-Estonian			     -12   -51	 -23
kde-i18n-Finnish			     -12   -51	 -23
kde-i18n-French				     -12   -51	 -23
kde-i18n-Galacian			     -12   -51	 -23
kde-i18n-German				     -12   -51	 -23
kde-i18n-Greek				     -12   -51	 -23
kde-i18n-Hebrew				     -12   -51	 -23
kde-i18n-Hungarian			     -12   -51	 -23
kde-i18n-Icelandic			     -12   -51	 -23
kde-i18n-Italian			     -12   -51	 -23
kde-i18n-Japanese			     -12   -51	 -23
kde-i18n-Korean				     -12   -51	 -23
kde-i18n-Lithuanian			     -12   -51	 -23
kde-i18n-Macedonian			     -12   -51	 -23
kde-i18n-Maori				     -12   -51	 -23
kde-i18n-Norwegian			     -12   -51	 -23
kde-i18n-Norwegian			     -12   -51	 -23
kde-i18n-Polish				     -12   -51	 -23
kde-i18n-Portuguese			     -12   -51	 -23
kde-i18n-Romanian			     -12   -51	 -23
kde-i18n-Russian			     -12   -51	 -23
kde-i18n-Serbian			     -12   -51	 -23
kde-i18n-Slovak				     -12   -51	 -23
kde-i18n-Slovenian			     -12   -51	 -23
kde-i18n-Spanish			     -12   -51	 -23
kde-i18n-Swedish			     -12   -51	 -23
kde-i18n-Tamil				     -12   -51	 -23
kde-i18n-Thai				     -12   -51	 -23
kde-i18n-Turkish			     -12   -51	 -23
kde-i18n-Ukrainian			     -12   -51	 -23
kde-i18n-Walloon			     -12   -51	 -23
kde-i18n-Welsh                               -12   -51	 -23
kde-i18n-Norwegian-Nynorsk                   -12   -51	 -23
linuxconf-lang-cn                            -35   -60   -35
linuxconf-lang-cs		             -35   -60   -35
linuxconf-lang-de		             -35   -60   -35
linuxconf-lang-es			     -35   -60   -35
linuxconf-lang-fi			     -35   -60   -35
linuxconf-lang-fr			     -35   -60   -35
linuxconf-lang-it			     -35   -60   -35
linuxconf-lang-ko			     -35   -60   -35
linuxconf-lang-no			     -35   -60   -35
linuxconf-lang-pt			     -35   -60   -35
linuxconf-lang-ro			     -35   -60   -35
linuxconf-lang-ru-SU			     -35   -60   -35
linuxconf-lang-se			     -35   -60   -35
linuxconf-lang-sk			     -35   -60   -35
linuxconf-lang-zh                            -35   -60   -35
7colors                                       15     0     0
ltris                                         28     0     0
lbreakout                                     35     0     0
fonts-hebrew-elmar                           -30   -30   -30
kwintv                                         0     0     0
xawtv                                          0     0     0
xawtv-misc                                     0     0     0
xawtv-radio                                    0     0     0
wxxt                                           0     0     0
wxxt-devel                                     0     0     0
surfraw                                        0     0     0
R-base                                         0     0     0
gpa                                           20     0     0
gnome-telnet                                   0     0     0
quanta                                        32     0    24
nslint                                         0    12     0
logcheck                                       0    12     0
kisdn-free                                    33     0    30

# commercial                           
ac3d                                          20     0    20
acroread                                      24    15    24
acroread-nppdf                                24    15    24
IglooFTP-PRO                                  20    20    20
interbase                                      0    15    15
interbase-docs                                 0    15    15
civctp-demo                                   22     0    20
compupic                                      19     0    19
commercial-menu                               50    40    50
eus-demo                                      23     0    20
myth2-demo                                    24     0    25
macromedia-flash                              45    15    45
RealPlayer                                    27    15    27
RealPlayer-rpnp                               27    15    27
scol                                          23     0    23
avp-database                                  20    20    20
avp-linux                                     20    20    20
arkeia-arkc                                    0    20     0
arkeia-client                                 20     0    20
arkeia-gui                                    24     0    20
arkeia-server-shareware                        0    30     0
Artstream                                     20     0     0
citrix-icaclient-en                          -70   -70   -70
citrix-icaclient-fr                          -70   -70   -70
citrix-icaclient-ge                          -70   -70   -70
citrix-icaclient-sp                          -70   -70   -70
printpro                                       0     0     0
printpro-agfa                                  0     0     0
printpro-alps                                  0     0     0
printpro-apple                                 0     0     0
printpro-autologic		               0     0     0
printpro-calcomp		               0     0     0
printpro-canon			               0     0     0
printpro-digital		               0     0     0
printpro-efi			               0     0     0
printpro-encad			               0     0     0
printpro-epson			               0     0     0
printpro-hp			               0     0     0
printpro-ibm			               0     0     0
printpro-lexmark		               0     0     0
printpro-lhag			               0     0     0
printpro-linotronic		               0     0     0
printpro-nec			               0     0     0
printpro-oki			               0     0     0
printpro-otheram		               0     0     0
printpro-othernz		               0     0     0
printpro-qms			               0     0     0
printpro-seiko			               0     0     0
printpro-sony			               0     0     0
printpro-tektronix		               0     0     0
printpro-ti			               0     0     0
printpro-varityper		               0     0     0
printpro-xerox                                 0     0     0
emumail4.0                                     0    20     0
EnlightenDSMFree                               0    24     0
EnlightenDSMFree-dsa                           0    24     0
EnlightenDSMFree-gui                           0    24     0
ForteCE-FCS                                    0     0    30
ViaVoice_Outloud_rtk                           0     0    45
ViaVoice_Outloud_sdk                           0     0    45
ViaVoice_runtime                               0     0    45
ViaVoice_sdk                                   0     0    45
jdk-sun                                        0     0    35
jdk-sun-doc                                    0     0    35
jre-sun                                       20     0    35
heretic2-demo                                 24     0    24
heroes3-demo                                  24     0    24
rt2-demo                                      24     0    24
MainActor                                     24     0     0
mupad                                         20     0    20
mtv                                           24     0    24
mtv-fullscreen-extension                      15     0    15
NetPartitioner                                 0    24     0
omnimark                                       0     0    35
rebol-core                                     0     0    30
staroffice-de                                -64   -90   -64
staroffice-en                                -64   -90   -64
staroffice-fr                                -64   -90   -64
staroffice-it                                -64   -90   -64
staroffice-nl                                -64   -90   -64
staroffice-pt                                -64   -90   -64
staroffice-es                                -64   -90   -64
staroffice-sv                                -64   -90   -64
tina-base                                      0     0     0
tina-lesstif                                   0     0     0
tina-oracle80                                  0     0     0
tina-oracle8i                                  0     0     0
tina-server                                    0     0     0
VMware                                        20     0    35
VariCAD                                       24     0    24
ViaVoice_runtime                              26     0    26
<<<<<<< compssList
viavoicemenu				      26     0    26
=======
viavoicemenu                                  26     0    26
>>>>>>> 1.139
kisdn                                          0     0     0
finit" #: drakclock:41 #, c-format msgid "Change Time Zone" msgstr "Canvia el fus horari" #: drakclock:44 #, c-format msgid "Timezone - DrakClock" msgstr "Fus horari - DrakClock" #: drakclock:44 #, c-format msgid "Which is your timezone?" msgstr "En quina zona horària us trobeu?" #: drakclock:45 #, c-format msgid "GMT - DrakClock" msgstr "GMT - DrakClock" #: drakclock:45 #, c-format msgid "Is your hardware clock set to GMT?" msgstr "Està el rellotge del vostre ordinador establert en GTM?" #: drakclock:70 #, c-format msgid "Network Time Protocol" msgstr "Network Time Protocol" #: drakclock:72 #, c-format msgid "" "Your computer can synchronize its clock\n" " with a remote time server using NTP" msgstr "" "El teu ordinador por sincronitzar el seu rellotge\n" " amb un servidor de temps remot usant NTP" #: drakclock:73 #, c-format msgid "Enable Network Time Protocol" msgstr "Habilita el Network Time Protocol" #: drakclock:81 #, c-format msgid "Server:" msgstr "Servidor:" #: drakclock:95 #, c-format msgid "Timezone" msgstr "Fus horari" #: drakclock:111 #, fuzzy, c-format msgid "Please enter a valid NTP server address." msgstr "Si us plau introduïu una adreça IP vàlida." #: drakclock:126 #, c-format msgid "Could not synchronize with %s." msgstr "No s'ha pogut sincronitzar amb %s." #: drakclock:127 drakdvb:149 logdrake:175 scannerdrake:491 #, c-format msgid "Quit" msgstr "Surt" #: drakclock:128 #, fuzzy, c-format msgid "Retry" msgstr "Restaura" #: drakclock:151 drakclock:161 #, c-format msgid "Reset" msgstr "Reinicialitza" #: drakdvb:30 #, fuzzy, c-format msgid "DVB" msgstr "DVD" #: drakdvb:39 harddrake2:98 #, c-format msgid "Channel" msgstr "Canal" #: drakdvb:57 #, c-format msgid "%s already exists and its contents will be lost" msgstr "" #: drakdvb:74 #, c-format msgid "Could not get the list of available channels" msgstr "" #: drakdvb:80 draksec:73 drakups:99 finish-install:105 harddrake2:379 #: scannerdrake:66 scannerdrake:70 scannerdrake:78 scannerdrake:319 #: scannerdrake:368 scannerdrake:504 scannerdrake:508 scannerdrake:530 #: service_harddrake:344 #, c-format msgid "Please wait" msgstr "Espereu si us plau" #: drakdvb:84 #, c-format msgid "Detecting DVB channels, this will take a few minutes" msgstr "" #: drakdvb:85 drakfont:572 drakfont:652 drakfont:736 drakups:217 logdrake:175 #, c-format msgid "Cancel" msgstr "Cancel·la" #: drakdvb:148 #, fuzzy, c-format msgid "Detect Channels" msgstr "Canal" #: drakdvb:150 #, fuzzy, c-format msgid "View Channel" msgstr "Canal" #: drakedm:41 #, c-format msgid "GDM (GNOME Display Manager)" msgstr "GDM (GNOME Display Manager)" #: drakedm:42 #, c-format msgid "KDM (KDE Display Manager)" msgstr "KDM (KDE Display Manager)" #: drakedm:43 #, c-format msgid "XDM (X Display Manager)" msgstr "XDM (X Display Manager)" #: drakedm:54 #, c-format msgid "Choosing a display manager" msgstr "Elecció d'un gestor de pantalla" #: drakedm:55 #, c-format msgid "" "X11 Display Manager allows you to graphically log\n" "into your system with the X Window System running and supports running\n" "several different X sessions on your local machine at the same time." msgstr "" "El gestor de pantalla X11 us permet entrar al sistema de manera\n" "gràfica amb el sistema X Window executant-se, i permet l'execució\n" "simultània de diverses sessions X a la màquina local." #: drakedm:74 #, c-format msgid "The change is done, do you want to restart the dm service?" msgstr "S'ha fet el canvi, voleu reiniciar el servei dm?" #: drakedm:75 #, c-format msgid "" "You are going to close all running programs and lose your current session. " "Are you really sure that you want to restart the dm service?" msgstr "" #: drakfont:187 #, c-format msgid "Search installed fonts" msgstr "Cerca les fonts instal·lades" #: drakfont:189 #, c-format msgid "Unselect fonts installed" msgstr "Desselecciona les fonts instal·lades" #: drakfont:213 #, c-format msgid "No fonts found" msgstr "No s'han trobat fonts" #: drakfont:217 #, c-format msgid "parse all fonts" msgstr "analitza totes les fonts" #: drakfont:222 drakfont:263 drakfont:338 drakfont:379 drakfont:383 #: drakfont:409 drakfont:427 drakfont:435 #, c-format msgid "done" msgstr "fet" #: drakfont:226 #, c-format msgid "Could not find any font in your mounted partitions" msgstr "No s'ha pogut trobar cap font en les particions muntades" #: drakfont:261 #, c-format msgid "Reselect correct fonts" msgstr "Torna a seleccionar les fonts correctes" #: drakfont:264 #, c-format msgid "Could not find any font.\n" msgstr "No s'ha trobat cap font.\n" #: drakfont:274 #, c-format msgid "Search for fonts in installed list" msgstr "Cerca les fonts en la llista de les instal·lades" #: drakfont:298 #, c-format msgid "%s fonts conversion" msgstr "conversió de tipus de lletra %s" #: drakfont:336 #, c-format msgid "Fonts copy" msgstr "Còpia de fonts" #: drakfont:339 #, c-format msgid "True Type fonts installation" msgstr "Instal·lació de les fonts True Type" #: drakfont:347 #, c-format msgid "please wait during ttmkfdir..." msgstr "espereu si us plau durant ttmkfdir..." #: drakfont:348 #, c-format msgid "True Type install done" msgstr "Instal·lació de True Type feta" #: drakfont:354 drakfont:369 #, c-format msgid "type1inst building" msgstr "construcció de type1inst" #: drakfont:363 #, c-format msgid "Ghostscript referencing" msgstr "referenciat Ghostscript" #: drakfont:380 #, c-format msgid "Suppress Temporary Files" msgstr "Suprimeix els fitxers temporals" #: drakfont:425 drakfont:431 #, c-format msgid "Suppress Fonts Files" msgstr "Suprimeix els fitxers de fonts" #: drakfont:439 #, c-format msgid "" "Before installing any fonts, be sure that you have the right to use and " "install them on your system.\n" "\n" "You can install the fonts the normal way. In rare cases, bogus fonts may " "hang up your X Server." msgstr "" "Abans d'instal·lar cap font, assegureu-vos que teniu el dret a usar-les i " "instal·lar-les en el vostre sistema.\n" "\n" "Podeu instal·lar les fonts de la manera habitual. En casos estranys, fonts " "amb errors poden penjar el vostre servidor X." # #: drakfont:478 #, fuzzy, c-format msgid "Font Installation" msgstr "Post-instal·lació" #: drakfont:489 #, c-format msgid "DrakFont" msgstr "DrakFont" #: drakfont:490 drakfont:642 #, c-format msgid "Font List" msgstr "Llista de fonts" #: drakfont:493 #, c-format msgid "Get Windows Fonts" msgstr "Obté fonts de Windows" #: drakfont:499 #, c-format msgid "About" msgstr "Quant a" #: drakfont:500 drakfont:541 #, c-format msgid "Options" msgstr "Opcions" #: drakfont:501 drakfont:721 #, c-format msgid "Uninstall" msgstr "Desinstal·la" #: drakfont:502 #, c-format msgid "Import" msgstr "Importa" #: drakfont:520 #, fuzzy, c-format msgid "Drakfont" msgstr "DrakFont" #: drakfont:522 harddrake2:234 #, c-format msgid "Copyright (C) %s by Mandriva" msgstr "" # #: drakfont:524 #, fuzzy, c-format msgid "Font installer." msgstr "No instal·lat" #: drakfont:526 harddrake2:238 #, c-format msgid "Mandriva Linux" msgstr "Mandriva Linux" #. -PO: put here name(s) and email(s) of translator(s) (eg: "John Smith <jsmith@nowhere.com>") #. -PO: put here name(s) and email(s) of translator(s) (eg: "John Smith <jsmith@nowhere.com>") #: drakfont:533 harddrake2:243 #, c-format msgid "_: Translator(s) name(s) & email(s)\n" msgstr "Albert Astals Cid <astals11@terra.es>\n" #: drakfont:543 #, c-format msgid "Choose the applications that will support the fonts:" msgstr "Escolliu les aplicacions que suportaran les fonts:" #: drakfont:554 #, c-format msgid "Ghostscript" msgstr "Ghostscript" #: drakfont:555 #, c-format msgid "OpenOffice.org" msgstr "" #: drakfont:556 #, c-format msgid "Abiword" msgstr "Abiword" #: drakfont:557 #, c-format msgid "Generic Printers" msgstr "Impressores genèriques" #: drakfont:562 drakfont:572 drakups:210 #, c-format msgid "Ok" msgstr "Bé" #: drakfont:571 #, c-format msgid "Select the font file or directory and click on 'Add'" msgstr "Seleccioneu el fitxer o directori de fonts i feu clic a 'Afegeix'" #: drakfont:572 #, c-format msgid "File Selection" msgstr "Selecció de fitxers" #: drakfont:576 #, c-format msgid "Fonts" msgstr "Tipus de lletra" #: drakfont:640 draksec:166 #, c-format msgid "Import fonts" msgstr "Importa fonts" #: drakfont:646 drakups:299 drakups:361 drakups:381 #, c-format msgid "Add" msgstr "Afegeix" #: drakfont:647 drakfont:735 drakups:301 drakups:363 drakups:383 #, c-format msgid "Remove" msgstr "Elimina" #: drakfont:653 #, c-format msgid "Install" msgstr "Instal·la" #: drakfont:684 #, c-format msgid "Are you sure you want to uninstall the following fonts?" msgstr "" #: drakfont:688 draksec:60 harddrake2:324 #, c-format msgid "Yes" msgstr "Sí" #: drakfont:690 draksec:59 harddrake2:325 #, c-format msgid "No" msgstr "No" #: drakfont:729 #, c-format msgid "Unselect All" msgstr "Desselecciona-ho tot" #: drakfont:732 #, c-format msgid "Select All" msgstr "Selecciona-ho tot" #: drakfont:749 #, c-format msgid "Importing fonts" msgstr "S'estan important les fonts" #: drakfont:753 drakfont:773 #, c-format msgid "Initial tests" msgstr "Comprovacions inicials" #: drakfont:754 #, c-format msgid "Copy fonts on your system" msgstr "Copiar les fonts en el vostre sistema" #: drakfont:755 #, c-format msgid "Install & convert Fonts" msgstr "Instal·la i converteix les Fonts" #: drakfont:756 #, c-format msgid "Post Install" msgstr "Post-instal·lació" #: drakfont:768 #, fuzzy, c-format msgid "Removing fonts" msgstr "S'estan important les fonts" #: drakfont:774 #, c-format msgid "Remove fonts on your system" msgstr "Esborra fonts del sistema" #: drakfont:775 #, c-format msgid "Post Uninstall" msgstr "Post-desinstal·lació" #: drakhelp:17 #, c-format msgid "" " drakhelp 0.1\n" "Copyright (C) %s Mandriva.\n" "This is free software and may be redistributed under the terms of the GNU " "GPL.\n" "\n" "Usage: \n" msgstr "" " drakhelp 0.1\n" "Copyright (C) %s Mandriva.\n" "Aquest programa és programari lliure i pot ser redistribuït sota els termes " "de la GNU GPL.\n" "\n" "Sintaxi: \n" #: drakhelp:22 #, c-format msgid " --help - display this help \n" msgstr " --help - mostra aquesta ajuda \n" #: drakhelp:23 #, c-format msgid "" " --id <id_label> - load the html help page which refers to id_label\n" msgstr "" #: drakhelp:24 #, c-format msgid "" " --doc <link> - link to another web page ( for WM welcome " "frontend)\n" msgstr "" #: drakhelp:52 #, c-format msgid "Mandriva Linux Help Center" msgstr "Centre d'ajuda de Mandriva Linux" #: drakhelp:52 #, c-format msgid "No Help entry for %s\n" msgstr "" #: drakperm:23 #, c-format msgid "System settings" msgstr "Configuració del sistema" #: drakperm:24 #, c-format msgid "Custom settings" msgstr "Arranjament personalitzat" #: drakperm:25 #, c-format msgid "Custom & system settings" msgstr "Arranjament personalitzat del sistema" #: drakperm:33 #, fuzzy, c-format msgid "Security Permissions" msgstr "Permisos" #: drakperm:45 #, c-format msgid "Editable" msgstr "Editable" #: drakperm:50 drakperm:320 #, c-format msgid "Path" msgstr "Camí" #: drakperm:50 drakperm:249 #, c-format msgid "User" msgstr "Usuari" #: drakperm:50 drakperm:249 #, c-format msgid "Group" msgstr "Grup" #: drakperm:50 drakperm:109 drakperm:332 draksec:181 #, c-format msgid "Permissions" msgstr "Permisos" #: drakperm:60 #, c-format msgid "Add a new rule" msgstr "Afegeix una nova regla" #: drakperm:67 drakperm:102 drakperm:128 #, c-format msgid "Edit current rule" msgstr "Edita la regla actual" #: drakperm:110 #, c-format msgid "" "Here you can see files to use in order to fix permissions, owners, and " "groups via msec.\n" "You can also edit your own rules which will owerwrite the default rules." msgstr "" "Aquí podeu veure els fitxers que es faran servir per ajustar els permisos, " "propietaris i grups a través de l'msec.\n" "També podeu editar les vostres pròpies regles, que sobreescriuran les regles " "predeterminades." #: drakperm:112 #, c-format msgid "" "The current security level is %s.\n" "Select permissions to see/edit" msgstr "" "El nivell de seguretat actual és %s.\n" "Esculli els permissos a veure/editar" #: drakperm:124 #, c-format msgid "Up" msgstr "Puja" #: drakperm:124 #, c-format msgid "Move selected rule up one level" msgstr "Puja la regla actual un nivell" #: drakperm:125 #, c-format msgid "Down" msgstr "Baixa" #: drakperm:125 #, c-format msgid "Move selected rule down one level" msgstr "Baixa la regla actual un nivell" #: drakperm:126 #, c-format msgid "Add a rule" msgstr "Afegeix una regla" #: drakperm:126 #, c-format msgid "Add a new rule at the end" msgstr "Afegeix una regla nova al final" #: drakperm:127 #, c-format msgid "Delete" msgstr "Suprimeix" #: drakperm:127 #, c-format msgid "Delete selected rule" msgstr "Elimina la regla seleccionada" #: drakperm:128 drakups:300 drakups:362 drakups:382 #, c-format msgid "Edit" msgstr "Edita" #: drakperm:241 #, c-format msgid "browse" msgstr "navega" #: drakperm:246 #, c-format msgid "user" msgstr "usuari" #: drakperm:246 #, c-format msgid "group" msgstr "grup" #: drakperm:246 #, c-format msgid "other" msgstr "altres" #: drakperm:249 #, c-format msgid "Other" msgstr "Altres" #: drakperm:251 #, c-format msgid "Read" msgstr "Lectura" #. -PO: here %s will be either "user", "group" or "other" #: drakperm:254 #, c-format msgid "Enable \"%s\" to read the file" msgstr "Permet que \"%s\" llegeixi el fitxer" #: drakperm:258 #, c-format msgid "Write" msgstr "Escriptura" #. -PO: here %s will be either "user", "group" or "other" #: drakperm:261 #, c-format msgid "Enable \"%s\" to write the file" msgstr "Permet que \"%s\" escrigui el fitxer" #: drakperm:265 #, c-format msgid "Execute" msgstr "Executa" #. -PO: here %s will be either "user", "group" or "other" #: drakperm:268 #, c-format msgid "Enable \"%s\" to execute the file" msgstr "Permet que \"%s\" executi el fitxer" #: drakperm:271 #, c-format msgid "Sticky-bit" msgstr "Sticky-bit" #: drakperm:271 #, c-format msgid "" "Used for directory:\n" " only owner of directory or file in this directory can delete it" msgstr "" "Usat per al directori:\n" " només el propietari del directori o del fitxer en aquest directori poden " "suprimir-lo" #: drakperm:272 #, c-format msgid "Set-UID" msgstr "Set-UID" #: drakperm:272 #, c-format msgid "Use owner id for execution" msgstr "Usa l'identificador del propietari (UID) per a l'execució" #: drakperm:273 #, c-format msgid "Set-GID" msgstr "Set-GID" #: drakperm:273 #, c-format msgid "Use group id for execution" msgstr "Usa l'identificador del grup (GID) per a l'execució" #: drakperm:290 #, c-format msgid "User:" msgstr "Usuari :" #: drakperm:291 #, c-format msgid "Group:" msgstr "Grup :" #: drakperm:295 #, c-format msgid "Current user" msgstr "Usuari actual" #: drakperm:296 #, c-format msgid "When checked, owner and group will not be changed" msgstr "Si ho marqueu, no es canviaran ni el propietari ni el grup" #: drakperm:306 #, c-format msgid "Path selection" msgstr "Selecció del camí" #: drakperm:326 #, c-format msgid "Property" msgstr "Propietat" #: drakperm:376 #, c-format msgid "" "The first character of the path must be a slash (\"/\"):\n" "\"%s\"" msgstr "" "El primer caràcter de la ruta a de ser una barra (\"/\"):\n" "\"%s\"" #: drakperm:386 #, c-format msgid "Both the username and the group must valid!" msgstr "Tant el nom d'usuari com el grup han de ser vàlids!" #: drakperm:387 #, c-format msgid "User: %s" msgstr "Usuari: %s" #: drakperm:388 #, c-format msgid "Group: %s" msgstr "Grup: %s" #: draksec:54 #, c-format msgid "ALL" msgstr "TOT" #: draksec:55 #, c-format msgid "LOCAL" msgstr "LOCAL" #: draksec:56 #, c-format msgid "NONE" msgstr "CAP" #: draksec:57 #, c-format msgid "Default" msgstr "Predeterminat" #: draksec:58 #, c-format msgid "Ignore" msgstr "Ignora" # #: draksec:91 #, fuzzy, c-format msgid "Security Level and Checks" msgstr "Nivell de seguretat:" #: draksec:114 #, c-format msgid "Configure authentication required to access Mandriva tools" msgstr "" #: draksec:117 #, c-format msgid "No password" msgstr "Sense contrasenya" #: draksec:118 #, c-format msgid "Root password" msgstr "" #: draksec:119 #, c-format msgid "User password" msgstr "" #: draksec:149 draksec:204 #, c-format msgid "Software Management" msgstr "Gestor de programari" #: draksec:150 #, fuzzy, c-format msgid "Mandriva Update" msgstr "Mandriva Online" #: draksec:151 #, c-format msgid "Software Media Manager" msgstr "Gestor de Fonts de Programari" #: draksec:152 #, fuzzy, c-format msgid "Configure 3D Desktop effects" msgstr "Configura un servidor de grups de notícies" #: draksec:153 #, fuzzy, c-format msgid "Graphical Server Configuration" msgstr "Configuració de l'alerta de correu" #: draksec:154 #, fuzzy, c-format msgid "Mouse Configuration" msgstr "Configuració manual" #: draksec:155 #, fuzzy, c-format msgid "Keyboard Configuration" msgstr "Configuració de xarxa" #: draksec:156 #, fuzzy, c-format msgid "UPS Configuration" msgstr "Configuració del controlador del SAI" #: draksec:157 #, fuzzy, c-format msgid "Network Configuration" msgstr "Configuració de l'avís" #: draksec:158 #, c-format msgid "Hosts definitions" msgstr "Definicions d'hostes" #: draksec:159 #, fuzzy, c-format msgid "Network Center" msgstr "Xarxa i Internet" #: draksec:160 #, c-format msgid "Wireless Network Roaming" msgstr "" #: draksec:161 #, c-format msgid "VPN" msgstr "" #: draksec:162 #, c-format msgid "Proxy Configuration" msgstr "Configura el servidor intermediari" #: draksec:163 #, fuzzy, c-format msgid "Connection Sharing" msgstr "Connexió" #: draksec:165 #, c-format msgid "Backups" msgstr "Còpies de seguretat" #: draksec:167 logdrake:52 #, c-format msgid "Logs" msgstr "Registres" #: draksec:168 #, c-format msgid "Services" msgstr "Serveis" #: draksec:169 #, fuzzy, c-format msgid "Users" msgstr "Usuari" #: draksec:171 #, fuzzy, c-format msgid "Boot Configuration" msgstr "Configuració de l'avís" #: draksec:205 #, c-format msgid "Hardware" msgstr "Maquinari" #: draksec:206 #, fuzzy, c-format msgid "Network" msgstr "Opcions de xarxa" #: draksec:207 #, c-format msgid "System" msgstr "Sistema" #: draksec:208 #, c-format msgid "Boot" msgstr "Arrencada" #: draksound:48 #, c-format msgid "No Sound Card detected!" msgstr "No s'ha detectat cap targeta de so!" #. -PO: keep the double empty lines between sections, this is formatted a la LaTeX #: draksound:51 #, c-format msgid "" "No Sound Card has been detected on your machine. Please verify that a Linux-" "supported Sound Card is correctly plugged in.\n" "\n" "\n" "You can visit our hardware database at:\n" "\n" "\n" "http://www.mandrivalinux.com/en/hardware.php3" msgstr "" "No s'ha detectat cap targeta de so en el vostre ordinador. Si us plau, " "verifiqueu que teniu correctament inserida una targeta de so compatible amb " "Linux.\n" "\n" "\n" "Podeu visitar la nostra base de dades de maquinari a:\n" "\n" "\n" "http://www.mandrivalinux.com/en/hardware.php3" #: draksound:58 #, c-format msgid "" "\n" "\n" "\n" "Note: if you've an ISA PnP sound card, you'll have to use the alsaconf or " "the sndconfig program. Just type \"alsaconf\" or \"sndconfig\" in a console." msgstr "" "\n" "\n" "\n" "Nota: si teniu una targeta de so ISA PnP, haureu de fer servir el programa " "alsaconf o sndconfig. Només cal que teclegeu \"alsaconf\" o \"sndconfig\" a " "la consola." #: drakups:71 #, c-format msgid "Connected through a serial port or an usb cable" msgstr "Connectat a través d'un port sèrie o un cable usb" #: drakups:72 #, c-format msgid "Manual configuration" msgstr "Configuració manual" #: drakups:78 #, c-format msgid "Add an UPS device" msgstr "Afegeix un dispositiu SAI" #: drakups:81 #, c-format msgid "" "Welcome to the UPS configuration utility.\n" "\n" "Here, you'll add a new UPS to your system.\n" msgstr "" "Benvingut a la utilitat de configuració de SAI.\n" "\n" "Aquí podreu afegir un nou SAI al vostre sistema.\n" #: drakups:88 #, c-format msgid "" "We're going to add an UPS device.\n" "\n" "Do you want to autodetect UPS devices connected to this machine or to " "manually select them?" msgstr "" "Ara s'afegirà un dispositiu SAI.\n" "\n" "Preferiu autodetectar els dispositius SAI connectats a aquest ordinador o ?" #: drakups:91 #, c-format msgid "Autodetection" msgstr "Detecció automàtica" #: drakups:99 harddrake2:379 #, c-format msgid "Detection in progress" msgstr "Detecció en procés" #: drakups:118 drakups:157 logdrake:457 logdrake:463 #, c-format msgid "Congratulations" msgstr "Felicitats" #: drakups:119 #, c-format msgid "The wizard successfully added the following UPS devices:" msgstr "L'auxiliar ha afegit els següents dispositius SAI amb èxit:" #: drakups:121 #, c-format msgid "No new UPS devices was found" msgstr "No s'ha trobat cap dispositiu SAI nou" #: drakups:126 drakups:138 #, c-format msgid "UPS driver configuration" msgstr "Configuració del controlador del SAI" #: drakups:126 #, c-format msgid "Please select your UPS model." msgstr "Si us plau, escolliu el model del vostre SAI." #: drakups:127 #, c-format msgid "Manufacturer / Model:" msgstr "Fabricant / Model:" #: drakups:138 #, c-format msgid "" "We are configuring the \"%s\" UPS from \"%s\".\n" "Please fill in its name, its driver and its port." msgstr "" "S'està configurant el SAI \"%s\" de \"%s\".\n" "Si us plau introdueix el nom, controlador i port." #: drakups:143 #, c-format msgid "Name:" msgstr "Nom:" #: drakups:143 #, c-format msgid "The name of your ups" msgstr "El nom del vostre SAI" #: drakups:144 #, c-format msgid "Driver:" msgstr "Controlador:" #: drakups:144 #, c-format msgid "The driver that manages your ups" msgstr "El controlador que gestiona el teu SAI" #: drakups:145 #, c-format msgid "Port:" msgstr "Port:" #: drakups:147 #, c-format msgid "The port on which is connected your ups" msgstr "El port al qual està connectat el vostre SAI" #: drakups:157 #, c-format msgid "The wizard successfully configured the new \"%s\" UPS device." msgstr "L'auxiliar ha configurat el nou dispositiu SAI \"%s\" amb èxit." #: drakups:248 #, c-format msgid "UPS devices" msgstr "Dispositius SAI" #: drakups:249 drakups:268 drakups:284 harddrake2:86 harddrake2:113 #: harddrake2:120 #, c-format msgid "Name" msgstr "Nom" #: drakups:249 harddrake2:136 #, c-format msgid "Driver" msgstr "Controlador" #: drakups:249 harddrake2:56 #, c-format msgid "Port" msgstr "Port" #: drakups:267 #, c-format msgid "UPS users" msgstr "Usuaris SAI" #: drakups:283 #, c-format msgid "Access Control Lists" msgstr "Llistes de control d'accés" #: drakups:284 #, c-format msgid "IP address" msgstr "Adreça IP" #: drakups:284 #, c-format msgid "IP mask" msgstr "Màscara IP" #: drakups:296 #, c-format msgid "Rules" msgstr "Regles" #: drakups:297 #, c-format msgid "Action" msgstr "Acció" #: drakups:297 harddrake2:83 #, c-format msgid "Level" msgstr "Nivell" #: drakups:297 #, c-format msgid "ACL name" msgstr "Nom ACL" #: drakups:297 finish-install:195 #, c-format msgid "Password" msgstr "Contrasenya" # #: drakups:329 #, fuzzy, c-format msgid "UPS Management" msgstr "Gestió d'impressores %s" #: drakups:333 drakups:342 #, c-format msgid "DrakUPS" msgstr "DrakUPS" #: drakups:339 #, c-format msgid "Welcome to the UPS configuration tools" msgstr "Benvingut a les eines de configuració SAI" #: drakxtv:67 #, c-format msgid "No TV Card detected!" msgstr "No s'ha detectat cap targeta de TV!" #. -PO: keep the double empty lines between sections, this is formatted a la LaTeX #: drakxtv:69 #, c-format msgid "" "No TV Card has been detected on your machine. Please verify that a Linux-" "supported Video/TV Card is correctly plugged in.\n" "\n" "\n" "You can visit our hardware database at:\n" "\n" "\n" "http://www.mandrivalinux.com/en/hardware.php3" msgstr "" "No s'ha detectat cap targeta de TV en el vostre ordinador. Si us plau " "verifiqueu que teniu correctament inserida una targeta de Vídeo/TV " "compatible amb Linux.\n" "\n" "\n" "Podeu visitar la nostra base de dades de maquinari a:\n" "\n" "\n" "http://www.mandrivalinux.com/en/hardware.php3" #: finish-install:57 #, c-format msgid "Keyboard" msgstr "Teclat" #: finish-install:58 #, c-format msgid "Please, choose your keyboard layout." msgstr "Si us plau, seleccioneu la disposició del vostre teclat." #: finish-install:105 #, c-format msgid "Testing your connection..." msgstr "" #: finish-install:193 finish-install:211 finish-install:223 #, c-format msgid "Encrypted home partition" msgstr "" #: finish-install:193 #, c-format msgid "Please enter a password for the %s user" msgstr "" #: finish-install:196 #, c-format msgid "Password (again)" msgstr "Contrasenya (un altre cop)" #: finish-install:211 #, c-format msgid "Creating encrypted home partition" msgstr "" #: finish-install:223 #, c-format msgid "Formatting encrypted home partition" msgstr "" #: harddrake2:30 #, c-format msgid "Alternative drivers" msgstr "Controladors alternatius" #: harddrake2:31 #, c-format msgid "the list of alternative drivers for this sound card" msgstr "la llista de controladors alternatius per a aquesta targeta de so" #: harddrake2:33 harddrake2:122 #, c-format msgid "Bus" msgstr "Bus" #: harddrake2:34 #, c-format msgid "" "this is the physical bus on which the device is plugged (eg: PCI, USB, ...)" msgstr "" "aquest és el bus físic al qual el dispositiu està connectat (p.ex.: PCI, " "USB...)" #: harddrake2:36 harddrake2:148 #, c-format msgid "Bus identification" msgstr "Identificació del bus" #: harddrake2:37 #, c-format msgid "" "- PCI and USB devices: this lists the vendor, device, subvendor and " "subdevice PCI/USB ids" msgstr "" "- Dispositius PCI i USB: es llisten els identificadors PCI/USB del " "distribuïdor, del dispositiu, del subdistribuïdor i del subdispositiu" #: harddrake2:39 #, c-format msgid "Location on the bus" msgstr "Ubicació en el bus" #: harddrake2:40 #, c-format msgid "" "- pci devices: this gives the PCI slot, device and function of this card\n" "- eide devices: the device is either a slave or a master device\n" "- scsi devices: the scsi bus and the scsi device ids" msgstr "" "- dispositius PCI: dóna la ranura PCI, el dispositiu i la funció d'aquesta " "targeta\n" "- dispositius EIDE: diu si el dispositiu està configurat com a mestre o com " "a esclau\n" "- dispositius SCSI: dóna el bus SCSI i els identificadors SCSI del dispositiu" #: harddrake2:43 #, c-format msgid "Drive capacity" msgstr "Capacitat de la unitat" #: harddrake2:43 #, c-format msgid "special capacities of the driver (burning ability and or DVD support)" msgstr "" "funcions especials del programa de control (capacitat per enregistrar CD o " "preparat per a DVD)" #: harddrake2:44 #, c-format msgid "Description" msgstr "Descripció" #: harddrake2:44 #, c-format msgid "this field describes the device" msgstr "aquest camp descriu el dispositiu" #: harddrake2:45 #, c-format msgid "Old device file" msgstr "Fitxer de dispositiu antic" #: harddrake2:46 #, c-format msgid "old static device name used in dev package" msgstr "nom antic de dispositiu estàtic, usat en el paquet de desenvolupament" #. -PO: here "module" is the "jargon term" for a kernel driver #: harddrake2:49 #, c-format msgid "Module" msgstr "Mòdul" #: harddrake2:49 #, c-format msgid "the module of the GNU/Linux kernel that handles the device" msgstr "el mòdul del nucli GNU/Linux que gestiona aquest dispositiu" #: harddrake2:50 #, c-format msgid "Extended partitions" msgstr "Particions ampliades" #: harddrake2:50 #, c-format msgid "the number of extended partitions" msgstr "el número de particions ampliades" #: harddrake2:51 #, c-format msgid "Geometry" msgstr "Geometria" #: harddrake2:51 #, c-format msgid "Cylinder/head/sectors geometry of the disk" msgstr "" #: harddrake2:52 #, c-format msgid "Disk controller" msgstr "Controlador de disc" #: harddrake2:52 #, c-format msgid "the disk controller on the host side" msgstr "" #: harddrake2:53 #, fuzzy, c-format msgid "Identifier" msgstr "Identificador de disc" #: harddrake2:53 #, fuzzy, c-format msgid "usually the device serial number" msgstr "normalment el número de sèrie del disc" #: harddrake2:54 #, c-format msgid "Media class" msgstr "Tipus de mitjà" #: harddrake2:54 #, c-format msgid "class of hardware device" msgstr "tipus de dispositiu de maquinari" #: harddrake2:55 harddrake2:84 #, c-format msgid "Model" msgstr "Model" #: harddrake2:55 #, c-format msgid "hard disk model" msgstr "model de disc dur" #: harddrake2:56 #, c-format msgid "network printer port" msgstr "port d'impressora de la xarxa" #: harddrake2:57 #, c-format msgid "Primary partitions" msgstr "Particions primàries" #: harddrake2:57 #, c-format msgid "the number of the primary partitions" msgstr "el número de particions primàries" #: harddrake2:58 harddrake2:89 #, c-format msgid "Vendor" msgstr "Venedor" #: harddrake2:58 #, c-format msgid "the vendor name of the device" msgstr "el nom del venedor del dispositiu" #: harddrake2:59 #, c-format msgid "PCI domain" msgstr "" #: harddrake2:59 harddrake2:60 #, fuzzy, c-format msgid "the PCI domain of the device" msgstr "el nom del venedor del dispositiu" #: harddrake2:60 #, fuzzy, c-format msgid "PCI revision" msgstr "Permisos" #: harddrake2:61 #, c-format msgid "Bus PCI #" msgstr "# Bus PCI" #: harddrake2:61 #, c-format msgid "the PCI bus on which the device is plugged" msgstr "el bus PCI al qual el dispositiu està connectat" #: harddrake2:62 #, c-format msgid "PCI device #" msgstr "# dispositiu PCI" #: harddrake2:62 #, c-format msgid "PCI device number" msgstr "Número del dispositiu PCI" #: harddrake2:63 #, c-format msgid "PCI function #" msgstr "Funció PCI #" #: harddrake2:63 #, c-format msgid "PCI function number" msgstr "" #: harddrake2:64 #, c-format msgid "Vendor ID" msgstr "ID del venedor" #: harddrake2:64 #, c-format msgid "this is the standard numerical identifier of the vendor" msgstr "" #: harddrake2:65 #, c-format msgid "Device ID" msgstr "ID del dispositiu" #: harddrake2:65 #, c-format msgid "this is the numerical identifier of the device" msgstr "" #: harddrake2:66 #, c-format msgid "Sub vendor ID" msgstr "Sub ID del venedor" #: harddrake2:66 #, c-format msgid "this is the minor numerical identifier of the vendor" msgstr "" #: harddrake2:67 #, c-format msgid "Sub device ID" msgstr "Sub ID del dispositiu" #: harddrake2:67 #, c-format msgid "this is the minor numerical identifier of the device" msgstr "" #: harddrake2:68 #, c-format msgid "Device USB ID" msgstr "ID dispositiu USB" #: harddrake2:68 #, c-format msgid ".." msgstr ".." #: harddrake2:72 #, c-format msgid "Bogomips" msgstr "Bogomips" #: harddrake2:72 #, c-format msgid "" "the GNU/Linux kernel needs to run a calculation loop at boot time to " "initialize a timer counter. Its result is stored as bogomips as a way to " "\"benchmark\" the cpu." msgstr "" "el nucli GNU/Linux necessita executar un bucle de càlcul durant l'arrencada " "per iniciar un comptador de temps. El seu resultat s'emmagatzema com a " "bogomips com a manera d'\"avaluar\" la CPU." #: harddrake2:73 #, c-format msgid "Cache size" msgstr "Mida de la memòria cau" #: harddrake2:73 #, c-format msgid "size of the (second level) cpu cache" msgstr "mida de la memòria cau de la CPU (segon nivell)" #: harddrake2:74 #, c-format msgid "Cpuid family" msgstr "Família cpuid" #: harddrake2:74 #, c-format msgid "family of the cpu (eg: 6 for i686 class)" msgstr "família de la CPU (p.ex. 6 per a la classe i686)" #: harddrake2:75 #, c-format msgid "Cpuid level" msgstr "Nivell cpuid" #: harddrake2:75 #, c-format msgid "information level that can be obtained through the cpuid instruction" msgstr "nivell d'informació que es pot obtenir mitjançant la instrucció cpuid" #: harddrake2:76 #, c-format msgid "Frequency (MHz)" msgstr "Freqüència (MHz)" #: harddrake2:76 #, c-format msgid "" "the CPU frequency in MHz (Megahertz which in first approximation may be " "coarsely assimilated to number of instructions the cpu is able to execute " "per second)" msgstr "" "freqüència en MHz (megahertz) de la CPU (que, en una primera aproximació " "grollera, es pot considerar com el nombre d'instruccions per segon que la " "CPU pot executar)" #: harddrake2:77 #, c-format msgid "Flags" msgstr "Senyaladors" #: harddrake2:77 #, c-format msgid "CPU flags reported by the kernel" msgstr "Senyaladors de la CPU informats pel nucli." #: harddrake2:78 harddrake2:141 #, fuzzy, c-format msgid "Cores" msgstr "Tanca" #: harddrake2:78 #, c-format msgid "CPU cores" msgstr "" #: harddrake2:79 #, fuzzy, c-format msgid "Core ID" msgstr "ID del venedor" #: harddrake2:80 #, c-format msgid "Physical ID" msgstr "" #: harddrake2:81 #, c-format msgid "ACPI ID" msgstr "" #: harddrake2:82 #, fuzzy, c-format msgid "Siblings" msgstr "Paràmetres" #: harddrake2:83 #, c-format msgid "sub generation of the cpu" msgstr "subgeneració de la CPU" #: harddrake2:84 #, c-format msgid "generation of the cpu (eg: 8 for Pentium III, ...)" msgstr "generació de la CPU (p.ex., 8 per al Pentium III, etc.)" #: harddrake2:85 #, c-format msgid "Model name" msgstr "Nom del model" #: harddrake2:85 #, c-format msgid "official vendor name of the cpu" msgstr "nom oficial del distribuïdor de la cpu" #: harddrake2:86 #, c-format msgid "the name of the CPU" msgstr "nom de la CPU" #: harddrake2:87 #, c-format msgid "Processor ID" msgstr "ID del processador" #: harddrake2:87 #, c-format msgid "the number of the processor" msgstr "número del processador" #: harddrake2:88 #, c-format msgid "Model stepping" msgstr "Pas a pas del model" #: harddrake2:88 #, c-format msgid "stepping of the cpu (sub model (generation) number)" msgstr "stepping de la CPU (número de submodel (generació))" #: harddrake2:89 #, c-format msgid "the vendor name of the processor" msgstr "el nom del distribuïdor del processador" #: harddrake2:90 #, c-format msgid "Write protection" msgstr "Protecció contra escriptura" #: harddrake2:90 #, c-format msgid "" "the WP flag in the CR0 register of the cpu enforce write protection at the " "memory page level, thus enabling the processor to prevent unchecked kernel " "accesses to user memory (aka this is a bug guard)" msgstr "" "el senyalador WP del registre CR0 de la CPU reforça la protecció contra " "escriptura a nivell de la pàgina de memòria, permetent que el processador " "eviti accessos del nucli no comprovats a la memòria de l'usuari (és a dir, " "que és un control contra errors)" #: harddrake2:94 #, c-format msgid "Floppy format" msgstr "Format del disquet" #: harddrake2:94 #, c-format msgid "format of floppies supported by the drive" msgstr "format dels disquets que es poden utilitzar en la unitat" #: harddrake2:98 #, c-format msgid "EIDE/SCSI channel" msgstr "Canal EIDE/SCSI" #: harddrake2:99 #, c-format msgid "Disk identifier" msgstr "Identificador de disc" #: harddrake2:99 #, c-format msgid "usually the disk serial number" msgstr "normalment el número de sèrie del disc" #: harddrake2:100 #, c-format msgid "Target id number" msgstr "" #: harddrake2:100 #, c-format msgid "the SCSI target identifier" msgstr "" # #: harddrake2:101 #, c-format msgid "Logical unit number" msgstr "" #: harddrake2:101 #, c-format msgid "" "the SCSI Logical Unit Number (LUN). SCSI devices connected to a host are " "uniquely identified by a\n" "channel number, a target id and a logical unit number" msgstr "" #. -PO: here, "size" is the size of the ram chip (eg: 128Mo, 256Mo, ...) #: harddrake2:108 #, c-format msgid "Installed size" msgstr "Mida Instal·lada" #: harddrake2:108 #, c-format msgid "Installed size of the memory bank" msgstr "Mida instal·lada del banc de memòria" #: harddrake2:109 #, c-format msgid "Enabled Size" msgstr "" #: harddrake2:109 #, c-format msgid "Enabled size of the memory bank" msgstr "" #: harddrake2:110 harddrake2:119 #, c-format msgid "Type" msgstr "Tipus" #: harddrake2:110 #, c-format msgid "type of the memory device" msgstr "tipus del dispositiu de memòria" #: harddrake2:111 #, c-format msgid "Speed" msgstr "Velocitat" #: harddrake2:111 #, c-format msgid "Speed of the memory bank" msgstr "" #: harddrake2:112 #, c-format msgid "Bank connections" msgstr "" #: harddrake2:113 #, c-format msgid "Socket designation of the memory bank" msgstr "" #: harddrake2:117 #, c-format msgid "Device file" msgstr "Fitxer de dispositiu" #: harddrake2:117 #, c-format msgid "" "the device file used to communicate with the kernel driver for the mouse" msgstr "" #: harddrake2:118 #, c-format msgid "Emulated wheel" msgstr "Rodeta emulada" #: harddrake2:118 #, c-format msgid "whether the wheel is emulated or not" msgstr "si la rodeta s'emula o no" #: harddrake2:119 #, c-format msgid "the type of the mouse" msgstr "el tipus de ratolí" #: harddrake2:120 #, c-format msgid "the name of the mouse" msgstr "el nom del ratolí" #: harddrake2:121 #, c-format msgid "Number of buttons" msgstr "Nombre de botons" #: harddrake2:121 #, c-format msgid "the number of buttons the mouse has" msgstr "el nombre de botons que té el ratolí" #: harddrake2:122 #, c-format msgid "the type of bus on which the mouse is connected" msgstr "tipus de bus a què està connectat el ratolí." #: harddrake2:123 #, c-format msgid "Mouse protocol used by X11" msgstr "Protocol del ratolí usar per X11" #: harddrake2:123 #, c-format msgid "the protocol that the graphical desktop use with the mouse" msgstr "el protocol que usa l'entorn gràfic pel ratolí" #: harddrake2:127 #, c-format msgid "Identification" msgstr "Identificació" #: harddrake2:132 harddrake2:147 #, c-format msgid "Connection" msgstr "Connexió" #: harddrake2:142 #, c-format msgid "Performances" msgstr "" #: harddrake2:149 #, c-format msgid "Device" msgstr "Dispositiu" #: harddrake2:150 #, c-format msgid "Partitions" msgstr "Particions" #: harddrake2:155 #, c-format msgid "Features" msgstr "Característiques" #. -PO: please keep all "/" characters !!! #: harddrake2:178 logdrake:78 #, c-format msgid "/_Options" msgstr "/_Opcions" #: harddrake2:179 harddrake2:208 logdrake:80 #, c-format msgid "/_Help" msgstr "/_Ajuda" #: harddrake2:183 #, c-format msgid "/Autodetect _printers" msgstr "/Detecta les im_pressores automàticament" #: harddrake2:184 #, c-format msgid "/Autodetect _modems" msgstr "/Detecta els _mòdems automàticament" #: harddrake2:185 #, c-format msgid "/Autodetect _jaz drives" msgstr "/Detecta automàticament les unitats _jaz" #: harddrake2:186 #, c-format msgid "/Autodetect parallel _zip drives" msgstr "" #: harddrake2:190 #, fuzzy, c-format msgid "Hardware Configuration" msgstr "Configuració de xarxa" #: harddrake2:197 #, c-format msgid "/_Quit" msgstr "/_Surt" #: harddrake2:210 #, c-format msgid "/_Fields description" msgstr "/Descripció de _camps" #: harddrake2:212 #, c-format msgid "Harddrake help" msgstr "Ajuda del Harddrake" #: harddrake2:213 #, c-format msgid "" "Description of the fields:\n" "\n" msgstr "" "Descripció dels camps:\n" "\n" #: harddrake2:221 #, c-format msgid "Select a device!" msgstr "Seleccioneu un dispositiu!" #: harddrake2:221 #, c-format msgid "" "Once you've selected a device, you'll be able to see the device information " "in fields displayed on the right frame (\"Information\")" msgstr "" "Quan hagueu seleccionat un dispositiu podreu veure'n la informació en els " "camps del marc dret (\"Informació\")" #: harddrake2:227 #, c-format msgid "/_Report Bug" msgstr "/_Informeu d'un error" #: harddrake2:229 #, c-format msgid "/_About..." msgstr "/_Quant a..." #: harddrake2:232 #, fuzzy, c-format msgid "Harddrake" msgstr "Harddrake2" #: harddrake2:236 #, c-format msgid "This is HardDrake, a %s hardware configuration tool." msgstr "" #: harddrake2:269 #, c-format msgid "Detected hardware" msgstr "S'ha detectat el següent maquinari" #: harddrake2:272 scannerdrake:286 #, c-format msgid "Information" msgstr "Informació" #: harddrake2:274 #, c-format msgid "Set current driver options" msgstr "" #: harddrake2:281 #, c-format msgid "Run config tool" msgstr "Executa l'eina de configuració" #: harddrake2:301 #, c-format msgid "" "Click on a device in the left tree in order to display its information here." msgstr "" "Feu clic a un dispositiu de l'arbre de l'esquerra per veure'n aquí la " "informació." #: harddrake2:322 notify-x11-free-driver-switch:13 #, c-format msgid "unknown" msgstr "desconegut" #: harddrake2:323 #, c-format msgid "Unknown" msgstr "Desconegut" #: harddrake2:343 #, c-format msgid "Misc" msgstr "Varis" #: harddrake2:427 #, c-format msgid "secondary" msgstr "secundari" #: harddrake2:427 #, c-format msgid "primary" msgstr "primari" #: harddrake2:431 #, c-format msgid "burner" msgstr "gravador" #: harddrake2:431 #, c-format msgid "DVD" msgstr "DVD" #: harddrake2:535 #, c-format msgid "The following packages need to be installed:\n" msgstr "Cal instal·lar els paquets següents:\n" #: localedrake:38 #, c-format msgid "LocaleDrake" msgstr "LocaleDrake" #: localedrake:46 #, c-format msgid "You should install the following packages: %s" msgstr "Hauríeu d'instal·lar els següents paquets: %s" #. -PO: the following is used to combine packages names. eg: "initscripts, harddrake, yudit" #: localedrake:49 #, c-format msgid ", " msgstr ", " #: logdrake:51 #, c-format msgid "Mandriva Linux Tools Logs" msgstr "" #: logdrake:65 #, c-format msgid "Show only for the selected day" msgstr "Mostrar-ho només per al dia seleccionat" #: logdrake:72 #, c-format msgid "/File/_New" msgstr "/Fitxer/_Nou" #: logdrake:72 #, c-format msgid "<control>N" msgstr "<control>N" #: logdrake:73 #, c-format msgid "/File/_Open" msgstr "/Fitxer/_Obre" #: logdrake:73 #, c-format msgid "<control>O" msgstr "<control>O" #: logdrake:74 #, c-format msgid "/File/_Save" msgstr "/Fitxer/De_sa" #: logdrake:74 #, c-format msgid "<control>S" msgstr "<control>S" #: logdrake:75 #, c-format msgid "/File/Save _As" msgstr "/Fitxer/_Anomena i desa" #: logdrake:76 #, c-format msgid "/File/-" msgstr "/Fitxer/-" #: logdrake:79 #, c-format msgid "/Options/Test" msgstr "/Opcions/Prova" #: logdrake:81 #, c-format msgid "/Help/_About..." msgstr "/Ajuda/_Quant a.." #: logdrake:110 #, c-format msgid "" "_:this is the auth.log log file\n" "Authentication" msgstr "Autenticació" #: logdrake:111 #, c-format msgid "" "_:this is the user.log log file\n" "User" msgstr "Usuari" #: logdrake:112 #, c-format msgid "" "_:this is the /var/log/messages log file\n" "Messages" msgstr "Missatges" #: logdrake:113 #, c-format msgid "" "_:this is the /var/log/syslog log file\n" "Syslog" msgstr "" #: logdrake:117 #, c-format msgid "search" msgstr "cerca" #: logdrake:129 #, c-format msgid "A tool to monitor your logs" msgstr "Eina per veure els registres" #: logdrake:131 #, c-format msgid "Settings" msgstr "Paràmetres" #: logdrake:134 #, c-format msgid "Matching" msgstr "que coincideixin amb" #: logdrake:135 #, c-format msgid "but not matching" msgstr "però que no coincideixin amb" #: logdrake:138 #, c-format msgid "Choose file" msgstr "Escolliu el fitxer" #: logdrake:150 #, c-format msgid "Calendar" msgstr "Calendari" #: logdrake:159 #, c-format msgid "Content of the file" msgstr "Contingut del fitxer" #: logdrake:163 logdrake:407 #, c-format msgid "Mail alert" msgstr "Alerta de correu" #: logdrake:170 #, c-format msgid "The alert wizard has failed unexpectedly:" msgstr "L'auxiliar d'alerta ha fallat inesperadament:" #: logdrake:174 #, c-format msgid "Save" msgstr "Desa" #: logdrake:222 #, c-format msgid "please wait, parsing file: %s" msgstr "espereu si us plau, s'està analitzant el fitxer: %s" #: logdrake:244 #, c-format msgid "Sorry, log file isn't available!" msgstr "" #: logdrake:292 #, c-format msgid "Error while opening \"%s\" log file: %s\n" msgstr "" #: logdrake:385 #, c-format msgid "Apache World Wide Web Server" msgstr "Servidor World Wide Web Apache" #: logdrake:386 #, c-format msgid "Domain Name Resolver" msgstr "Sistema de resolució de nom de domini" #: logdrake:387 #, c-format msgid "Ftp Server" msgstr "Servidor FTP" #: logdrake:388 #, c-format msgid "Postfix Mail Server" msgstr "Servidor de correu Postfix" #: logdrake:389 #, c-format msgid "Samba Server" msgstr "Servidor Samba" #: logdrake:390 #, c-format msgid "SSH Server" msgstr "Servidor SSH" #: logdrake:391 #, c-format msgid "Webmin Service" msgstr "Servei Webmin" #: logdrake:392 #, c-format msgid "Xinetd Service" msgstr "Servei Xinetd" #: logdrake:401 #, c-format msgid "Configure the mail alert system" msgstr "Configura el sistema d'alerta per correu" #: logdrake:402 #, c-format msgid "Stop the mail alert system" msgstr "Atura el sistema d'alerta per correu" #: logdrake:410 #, c-format msgid "Mail alert configuration" msgstr "Configuració de l'alerta de correu" #: logdrake:411 #, c-format msgid "" "Welcome to the mail configuration utility.\n" "\n" "Here, you'll be able to set up the alert system.\n" msgstr "" "Benvingut a la utilitat de configuració del correu.\n" "\n" "Aquí podreu configurar el sistema d'alerta.\n" #: logdrake:414 #, c-format msgid "What do you want to do?" msgstr "Que voleu fer?" #: logdrake:421 #, c-format msgid "Services settings" msgstr "Paràmetre dels serveis" #: logdrake:422 #, c-format msgid "" "You will receive an alert if one of the selected services is no longer " "running" msgstr "Rebreu un avís si algun dels serveis seleccionats ja no funciona" # #: logdrake:429 #, c-format msgid "Load setting" msgstr "" #: logdrake:430 #, c-format msgid "You will receive an alert if the load is higher than this value" msgstr "Rebreu un avís si la càrrega és més gran que aquest valor" #: logdrake:431 #, c-format msgid "" "_: load here is a noun, the load of the system\n" "Load" msgstr "Càrrega" #: logdrake:436 #, c-format msgid "Alert configuration" msgstr "Configuració de l'avís" #: logdrake:437 #, c-format msgid "Please enter your email address below " msgstr "Si us plau, entreu la vostra adreça electrònica" #: logdrake:438 #, c-format msgid "and enter the name (or the IP) of the SMTP server you wish to use" msgstr "i introduïu el nom (o l'adreça IP) del servidor SMTP que voleu usar" #: logdrake:445 #, c-format msgid "\"%s\" neither is a valid email nor is an existing local user!" msgstr "" "\"%s\" no és ni una adreça de correu vàlida ni un usuari local existent!" #: logdrake:450 #, c-format msgid "" "\"%s\" is a local user, but you did not select a local smtp, so you must use " "a complete email address!" msgstr "" "\"%s\" és un usuari local, però no heu escollit un SMTP local, per tant heu " "d'usar una adreça de correu electrònic completa!" #: logdrake:457 #, c-format msgid "The wizard successfully configured the mail alert." msgstr "L'auxiliar ha configurat l'alerta per correu amb èxit." #: logdrake:463 #, c-format msgid "The wizard successfully disabled the mail alert." msgstr "L'auxiliar ha desactivat l'alerta per correu amb èxit." #: logdrake:522 #, c-format msgid "Save as.." msgstr "Anomena i desa..." #: notify-x11-free-driver-switch:20 #, c-format msgid "" "The proprietary driver for your graphic card can not be found, the system is " "now using the free software driver (%s)." msgstr "" #: notify-x11-free-driver-switch:21 #, c-format msgid "Reason: %s." msgstr "" #: scannerdrake:51 #, c-format msgid "" "SANE packages need to be installed to use scanners.\n" "\n" "Do you want to install the SANE packages?" msgstr "" "Es necessita que els paquets de SANE estiguin instal·lats per usar " "escàners.\n" "\n" "Vols instal·lar els paquets SANE?" #: scannerdrake:55 #, c-format msgid "Aborting Scannerdrake." msgstr "S'està avortant Scannerdrake." #: scannerdrake:60 #, c-format msgid "" "Could not install the packages needed to set up a scanner with Scannerdrake." msgstr "" "No s'han pogut instal·lar els paquets necessaris per configurar l'escàner " "amb Scannerdrake." #: scannerdrake:61 #, c-format msgid "Scannerdrake will not be started now." msgstr "Scannerdrake no s'iniciarà ara." #: scannerdrake:67 scannerdrake:505 #, c-format msgid "Searching for configured scanners..." msgstr "S'estan cercant els escàners configurats..." #: scannerdrake:71 scannerdrake:509 #, c-format msgid "Searching for new scanners..." msgstr "S'estan cercant escàners nous..." #: scannerdrake:79 scannerdrake:531 #, c-format msgid "Re-generating list of configured scanners..." msgstr "S'està tornant a generar la llista dels escàners configurats..." #: scannerdrake:101 #, c-format msgid "The %s is not supported by this version of %s." msgstr "El %s no està suportat per aquesta versió de %s." # #: scannerdrake:104 scannerdrake:115 #, fuzzy, c-format msgid "Confirmation" msgstr "Configuració" #: scannerdrake:104 #, c-format msgid "%s found on %s, configure it automatically?" msgstr "S'ha trobat %s en %s, voleu configurar-lo automàticament?" #: scannerdrake:116 #, c-format msgid "%s is not in the scanner database, configure it manually?" msgstr "" "%s no és a la base de dades de l'escàner, voleu configurar-lo manualment?" # #: scannerdrake:130 #, fuzzy, c-format msgid "Scanner configuration" msgstr "Configuració de l'avís" #: scannerdrake:131 #, c-format msgid "Select a scanner model (Detected model: %s, Port: %s)" msgstr "" #: scannerdrake:133 #, c-format msgid "Select a scanner model (Detected model: %s)" msgstr "" #: scannerdrake:134 #, c-format msgid "Select a scanner model (Port: %s)" msgstr "" #: scannerdrake:136 scannerdrake:139 #, c-format msgid " (UNSUPPORTED)" msgstr " (NO SUPORTAT)" #: scannerdrake:142 #, c-format msgid "The %s is not supported under Linux." msgstr "El %s no està suportat per a Linux." #: scannerdrake:169 scannerdrake:183 #, c-format msgid "Do not install firmware file" msgstr "No instal·lis el fitxer de firmware" #: scannerdrake:172 scannerdrake:222 #, fuzzy, c-format msgid "Scanner Firmware" msgstr "Compartició d'escàners" #: scannerdrake:173 scannerdrake:225 #, c-format msgid "" "It is possible that your %s needs its firmware to be uploaded everytime when " "it is turned on." msgstr "" "És possible que el vostre %s necessiti que el firmware s'actualitzi cada cop " "que s'encengui." #: scannerdrake:174 scannerdrake:226 #, c-format msgid "If this is the case, you can make this be done automatically." msgstr "Si aquest és el cas, podeu fer que es faci automàticament." #: scannerdrake:175 scannerdrake:229 #, c-format msgid "" "To do so, you need to supply the firmware file for your scanner so that it " "can be installed." msgstr "" "Per fer-ho, cal que subministreu els fitxers del firmware del vostre " "escànner per tal que es pugui instal·lar." #: scannerdrake:176 scannerdrake:230 #, c-format msgid "" "You find the file on the CD or floppy coming with the scanner, on the " "manufacturer's home page, or on your Windows partition." msgstr "" "Podeu trobar el fitxer al CD o disquet que ve amb l'escànner o a la pàgina " "web del fabricant o a la vostra instal·lació de Windows." #: scannerdrake:178 scannerdrake:237 #, c-format msgid "Install firmware file from" msgstr "Instal·la el fitxer de firmware des de" #: scannerdrake:180 scannerdrake:188 scannerdrake:239 scannerdrake:246 #, c-format msgid "CD-ROM" msgstr "CD-ROM" #: scannerdrake:181 scannerdrake:190 scannerdrake:240 scannerdrake:248 #, c-format msgid "Floppy Disk" msgstr "Disquet" #: scannerdrake:182 scannerdrake:192 scannerdrake:241 scannerdrake:250 #, c-format msgid "Other place" msgstr "Una altra ubicació" #: scannerdrake:198 #, c-format msgid "Select firmware file" msgstr "Seleccioneu el fitxer de firmware" #: scannerdrake:201 scannerdrake:260 #, c-format msgid "The firmware file %s does not exist or is unreadable!" msgstr "El fitxer de firmware %s no existeix o no és pot llegir!" #: scannerdrake:224 #, c-format msgid "" "It is possible that your scanners need their firmware to be uploaded " "everytime when they are turned on." msgstr "" "És possible que el vostre escànner necessiti que el firmware s'actualitzi " "cada cop que s'encengui." #: scannerdrake:228 #, c-format msgid "" "To do so, you need to supply the firmware files for your scanners so that it " "can be installed." msgstr "" "Per fer-ho, cal que subministreu els fitxers del firmware del vostre " "escànner per tal que es pugui instal·lar." #: scannerdrake:231 #, c-format msgid "" "If you have already installed your scanner's firmware you can update the " "firmware here by supplying the new firmware file." msgstr "" #: scannerdrake:233 #, c-format msgid "Install firmware for the" msgstr "" #: scannerdrake:256 #, c-format msgid "Select firmware file for the %s" msgstr "Seleccioneu el fitxer de firmware per %s" #: scannerdrake:274 #, c-format msgid "Could not install the firmware file for the %s!" msgstr "No s'ha pogut instal·lar el fitxer de firmware per %s!" #: scannerdrake:287 #, c-format msgid "The firmware file for your %s was successfully installed." msgstr "El fitxer de firmware pel vostre %s s'ha instal·lat correctament." #: scannerdrake:297 #, c-format msgid "The %s is unsupported" msgstr "No es permet l'ús de %s" #: scannerdrake:302 #, c-format msgid "" "The %s must be configured by system-config-printer.\n" "You can launch system-config-printer from the %s Control Center in Hardware " "section." msgstr "" "La %s s'ha de configurar amb el system-config-printer.\n" "Podeu executar el system-config-printer des del Centre de Control %s en la " "secció Maquinari." #: scannerdrake:320 #, c-format msgid "Setting up kernel modules..." msgstr "" #: scannerdrake:330 scannerdrake:337 scannerdrake:367 #, c-format msgid "Auto-detect available ports" msgstr "Detecta automàticament els ports disponibles" #: scannerdrake:331 scannerdrake:377 #, fuzzy, c-format msgid "Device choice" msgstr "Fitxer de dispositiu" #: scannerdrake:332 scannerdrake:378 #, c-format msgid "Please select the device where your %s is attached" msgstr "Si us plau seleccioneu el dispositiu al qual teniu connectat el %s" #: scannerdrake:333 #, c-format msgid "(Note: Parallel ports cannot be auto-detected)" msgstr "(Nota: els ports paral·lel no es poden detectar automàticament)" #: scannerdrake:335 scannerdrake:380 #, c-format msgid "choose device" msgstr "escolliu un dispositiu" #: scannerdrake:369 #, c-format msgid "Searching for scanners..." msgstr "S'estan cercant els escàners..." #: scannerdrake:405 scannerdrake:412 #, c-format msgid "Attention!" msgstr "Atenció !" #: scannerdrake:406 #, c-format msgid "" "Your %s cannot be configured fully automatically.\n" "\n" "Manual adjustments are required. Please edit the configuration file /etc/" "sane.d/%s.conf. " msgstr "" "El vostre %s no es pot configurar completament de forma automàtica.\n" "\n" "Calen ajustaments manuals. Si us plau editeu el fitxer de configuració /etc/" "sane.d/%s.conf. " #: scannerdrake:407 scannerdrake:416 #, c-format msgid "" "More info in the driver's manual page. Run the command \"man sane-%s\" to " "read it." msgstr "" #: scannerdrake:409 scannerdrake:418 #, c-format msgid "" "After that you may scan documents using \"XSane\" or \"Kooka\" from " "Multimedia/Graphics in the applications menu." msgstr "" "Ara podeu escanejar documents utilitzant \"XSane\" o \"Kooka\" des de " "Multimèdia/Gràfics en el menú d'aplicacions." #: scannerdrake:413 #, c-format msgid "" "Your %s has been configured, but it is possible that additional manual " "adjustments are needed to get it to work. " msgstr "" "El vostre %s ha estat configurat però pot ser possible que calguin " "ajustaments manuals per fer-lo funcionar. " #: scannerdrake:414 #, c-format msgid "" "If it does not appear in the list of configured scanners in the main window " "of Scannerdrake or if it does not work correctly, " msgstr "" #: scannerdrake:415 #, c-format msgid "edit the configuration file /etc/sane.d/%s.conf. " msgstr "editar el fitxer de configuració /etc/sane.d/%s.conf. " #: scannerdrake:420 #, c-format msgid "Congratulations!" msgstr "Felicitats!" #: scannerdrake:421 #, c-format msgid "" "Your %s has been configured.\n" "You may now scan documents using \"XSane\" or \"Kooka\" from Multimedia/" "Graphics in the applications menu." msgstr "" "El vostre %s ha estat configurat.\n" "Ara podeu escanejar documents utilitzant \"XSane\" o \"Kooka\" des de " "Multimèdia/Gràfics en el menú d'aplicacions." #: scannerdrake:446 #, c-format msgid "" "The following scanners\n" "\n" "%s\n" "are available on your system.\n" msgstr "" "Els escàners\n" "\n" "%s\n" "estan disponibles al sistema.\n" #: scannerdrake:447 #, c-format msgid "" "The following scanner\n" "\n" "%s\n" "is available on your system.\n" msgstr "" "L'escàner\n" "\n" "%s\n" "està disponible al sistema.\n" #: scannerdrake:449 scannerdrake:452 #, c-format msgid "There are no scanners found which are available on your system.\n" msgstr "" "No s'ha trobat cap escàner que estigui disponible en el vostre sistema.\n" # #: scannerdrake:460 #, fuzzy, c-format msgid "Scanner Management" msgstr "Gestió d'impressores %s" #: scannerdrake:466 #, c-format msgid "Search for new scanners" msgstr "Cerca escàners nous" #: scannerdrake:472 #, c-format msgid "Add a scanner manually" msgstr "Afegiu un escàner manualment" #: scannerdrake:479 #, c-format msgid "Install/Update firmware files" msgstr "Instal·la/Actualitza fitxers de firmware" #: scannerdrake:485 #, c-format msgid "Scanner sharing" msgstr "Compartició d'escàners" #: scannerdrake:544 scannerdrake:709 #, c-format msgid "All remote machines" msgstr "Totes les màquines remotes" #: scannerdrake:556 scannerdrake:859 #, c-format msgid "This machine" msgstr "Aquesta màquina" #: scannerdrake:595 #, fuzzy, c-format msgid "Scanner Sharing" msgstr "Compartició d'escàners" #: scannerdrake:596 #, c-format msgid "" "Here you can choose whether the scanners connected to this machine should be " "accessible by remote machines and by which remote machines." msgstr "" "Aquí podeu decidir si màquines remotes, i quines d'elles, han de poder " "accedir als escàners connectats a aquesta màquina." #: scannerdrake:597 #, c-format msgid "" "You can also decide here whether scanners on remote machines should be made " "available on this machine." msgstr "" "També podeu decidir aquí si aquesta màquina ha de poder accedir als escàners " "de màquines remotes." #: scannerdrake:600 #, c-format msgid "The scanners on this machine are available to other computers" msgstr "" "Els escàners d'aquesta màquina estan disponibles per a altres ordinadors" #: scannerdrake:602 #, c-format msgid "Scanner sharing to hosts: " msgstr "Compartició d'escàners amb els ordinadors centrals:" #: scannerdrake:607 scannerdrake:624 #, c-format msgid "No remote machines" msgstr "Cap màquina remota" #: scannerdrake:616 #, c-format msgid "Use scanners on remote computers" msgstr "Utilitza els escàners d'ordinadors remots" #: scannerdrake:619 #, c-format msgid "Use the scanners on hosts: " msgstr "Utilitza els escàners dels ordinadors centrals:" #: scannerdrake:646 scannerdrake:718 scannerdrake:868 #, c-format msgid "Sharing of local scanners" msgstr "Compartició d'escàners locals" #: scannerdrake:647 #, c-format msgid "" "These are the machines on which the locally connected scanner(s) should be " "available:" msgstr "" "Aquestes són les màquines en què l'escàner o escàners connectats localment " "han d'estar disponibles:" #: scannerdrake:658 scannerdrake:808 #, c-format msgid "Add host" msgstr "Afegeix un ordinador" #: scannerdrake:664 scannerdrake:814 #, c-format msgid "Edit selected host" msgstr "Edita l'ordinador seleccionat" #: scannerdrake:673 scannerdrake:823 #, c-format msgid "Remove selected host" msgstr "Elimina l'ordinador seleccionat" #: scannerdrake:682 scannerdrake:832 #, c-format msgid "Done" msgstr "Fet" #: scannerdrake:697 scannerdrake:705 scannerdrake:710 scannerdrake:756 #: scannerdrake:847 scannerdrake:855 scannerdrake:860 scannerdrake:906 #, c-format msgid "Name/IP address of host:" msgstr "Nom/Adreça IP de l'ordinador:" #: scannerdrake:719 scannerdrake:869 #, c-format msgid "Choose the host on which the local scanners should be made available:" msgstr "Escolliu l'ordinador on els escàners locals han d'estar disponibles:" #: scannerdrake:730 scannerdrake:880 #, c-format msgid "You must enter a host name or an IP address.\n" msgstr "Heu d'introduir un nom d'ordinador o una adreça IP.\n" #: scannerdrake:741 scannerdrake:891 #, c-format msgid "This host is already in the list, it cannot be added again.\n" msgstr "Aquest ordinador ja és a la llista, no es pot tornar a afegir.\n" #: scannerdrake:796 #, c-format msgid "Usage of remote scanners" msgstr "Utilització d'escàners remots" #: scannerdrake:797 #, c-format msgid "These are the machines from which the scanners should be used:" msgstr "Les màquines des de les quals s'han d'utilitzar els escàners son:" #: scannerdrake:954 #, c-format msgid "" "saned needs to be installed to share the local scanner(s).\n" "\n" "Do you want to install the saned package?" msgstr "" "saned ha d'estar instal·lat per compartir els escàners locals.\n" "\n" "Vols instal·lar el paquet de saned?" #: scannerdrake:958 scannerdrake:962 #, c-format msgid "Your scanner(s) will not be available on the network." msgstr "Els vostre(s) escànner(s) no estaran disponibles a la xarxa." #: scannerdrake:961 #, c-format msgid "Could not install the packages needed to share your scanner(s)." msgstr "" "No s'ha pogut instal·lar els paquets necessaris per compartir els vostres " "escàner(s)." #: service_harddrake:139 #, fuzzy, c-format msgid "The graphic card '%s' is no more supported by the '%s' driver" msgstr "El %s no està suportat per aquesta versió de %s." #: service_harddrake:181 #, c-format msgid "The proprietary kernel driver was not found for '%s' X.org driver" msgstr "" #: service_harddrake:220 #, c-format msgid "Some devices in the \"%s\" hardware class were removed:\n" msgstr "S'han suprimit alguns dispositius en la classe \"%s\" de maquinari:\n" #: service_harddrake:221 #, c-format msgid "- %s was removed\n" msgstr "" #: service_harddrake:224 #, c-format msgid "Some devices were added: %s\n" msgstr "S'han afegit alguns dispositius: %s\n" #: service_harddrake:225 #, c-format msgid "- %s was added\n" msgstr "- s'ha afegit %s\n" #: service_harddrake:344 #, c-format msgid "Hardware probing in progress" msgstr "Comprovació de maquinari en curs" #: service_harddrake_confirm:7 #, c-format msgid "Hardware changes in \"%s\" class (%s seconds to answer)" msgstr "" #: service_harddrake_confirm:8 #, c-format msgid "Do you want to run the appropriate config tool?" msgstr "Voleu executar l'eina de configuració adequada?" #: ../menu/localedrake-system.desktop.in.h:1 #, fuzzy msgid "System Regional Settings" msgstr "Configuració del sistema" #: ../menu/localedrake-system.desktop.in.h:2 msgid "System wide language & country configurator" msgstr "" #: ../menu/harddrake.desktop.in.h:1 msgid "HardDrake" msgstr "HardDrake" #: ../menu/harddrake.desktop.in.h:2 #, fuzzy msgid "Hardware Central Configuration/information tool" msgstr "Configuració de xarxa" #: ../menu/harddrake.desktop.in.h:3 #, fuzzy msgid "Hardware Configuration Tool" msgstr "Configuració de xarxa" #: ../menu/localedrake-user.desktop.in.h:1 #, fuzzy msgid "Language & country configuration" msgstr "Configuració manual" #: ../menu/localedrake-user.desktop.in.h:2 #, fuzzy msgid "Regional Settings" msgstr "Paràmetres" #~ msgid "" #~ "Display theme\n" #~ "under console" #~ msgstr "" #~ "Mostra el tema\n" #~ "sota la consola" #~ msgid "Create new theme" #~ msgstr "Crea un nou tema" #~ msgid "X coordinate of text box" #~ msgstr "Coordinada x de la caixa de text" #~ msgid "Y coordinate of text box" #~ msgstr "Coordinada y de la caixa de text" #~ msgid "Text box width" #~ msgstr "Amplada de la caixa de text" #~ msgid "Text box height" #~ msgstr "Alçada de la caixa de text" #~ msgid "" #~ "The progress bar X coordinate\n" #~ "of its upper left corner" #~ msgstr "" #~ "Coordenada x de la cantonada superior\n" #~ "esquerra de la barra de progrés" #~ msgid "" #~ "The progress bar Y coordinate\n" #~ "of its upper left corner" #~ msgstr "" #~ "Coordenada y de la cantonada superior\n" #~ "esquerra de la barra de progrés" #~ msgid "The width of the progress bar" #~ msgstr "L'amplada de la barra de progrés" #~ msgid "The height of the progress bar" #~ msgstr "L'alçada de la barra de progrés" #~ msgid "X coordinate of the text" #~ msgstr "Coordenada x del text" #~ msgid "Y coordinate of the text" #~ msgstr "Coordenada y del text" #~ msgid "Text box transparency" #~ msgstr "Transparència de la caixa de text" #~ msgid "Progress box transparency" #~ msgstr "Transparència de la barra de progrés" #~ msgid "Text size" #~ msgstr "Mida del text" #~ msgid "Choose progress bar color 1" #~ msgstr "Escolliu el color 1 de la barra de progrés" #~ msgid "Choose progress bar color 2" #~ msgstr "Escolliu el color 2 de la barra de progrés" #~ msgid "Choose progress bar background" #~ msgstr "Escolliu el color de fons de la barra de progrés" #~ msgid "Gradient type" #~ msgstr "Tipus de gradient" #, fuzzy #~ msgid "Text" #~ msgstr "Només text" #~ msgid "Choose text color" #~ msgstr "Escolliu el color del text" #~ msgid "Choose picture" #~ msgstr "Escolliu la imatge" #~ msgid "Text color" #~ msgstr "Color del text" #~ msgid "Background color" #~ msgstr "Color de fons" #~ msgid "Theme name" #~ msgstr "Nom del tema" #~ msgid "Final resolution" #~ msgstr "Resolució definitiva" #~ msgid "Display logo on Console" #~ msgstr "Mostra el logotip a la consola" #~ msgid "Save theme" #~ msgstr "Desa el tema" #, fuzzy #~ msgid "Please enter a theme name" #~ msgstr "Si us plau introduïu un directori a compartir." #, fuzzy #~ msgid "Please select a splash image" #~ msgstr "Si us plau, escolliu el model del vostre SAI." #~ msgid "saving Bootsplash theme..." #~ msgstr "s'està desant el tema Bootsplash..." #~ msgid "Unable to load image file %s" #~ msgstr "No s'ha pogut carregar el fitxer d'imatge %s" #~ msgid "choose image" #~ msgstr "escolliu una imatge" #~ msgid "Color selection" #~ msgstr "Selecció de color" #~ msgid "Coma bug" #~ msgstr "Error Coma" #~ msgid "whether this cpu has the Cyrix 6x86 Coma bug" #~ msgstr "si aquesta CPU té o no l'error Coma Cyrix 6x86" #~ msgid "Fdiv bug" #~ msgstr "Error Fdiv" #~ msgid "" #~ "Early Intel Pentium chips manufactured have a bug in their floating point " #~ "processor which did not achieve the required precision when performing a " #~ "Floating point DIVision (FDIV)" #~ msgstr "" #~ "Els primers xips Pentium d'Intel fabricats tenen un defecte en el seu " #~ "processador de punt flotant que no els permet aconseguir la precisió " #~ "necessària en realitzar una divisió de punt flotant (FDIV)" #~ msgid "Is FPU present" #~ msgstr "FPU és present" #~ msgid "yes means the processor has an arithmetic coprocessor" #~ msgstr "\"sí\" indica que el processador té un coprocessador aritmètic" #~ msgid "Whether the FPU has an irq vector" #~ msgstr "Si l'FPU té o no un vector irq" #~ msgid "" #~ "yes means the arithmetic coprocessor has an exception vector attached" #~ msgstr "" #~ "\"sí\" significa que el coprocessador matemàtic te un vector d'excepció " #~ "adjunt" #~ msgid "F00f bug" #~ msgstr "Error F00f" #~ msgid "" #~ "early pentiums were buggy and freezed when decoding the F00F bytecode" #~ msgstr "" #~ "els primers pentiums eren plens d'errors i es penjaven en decodificar el " #~ "codi de byte F00F " #~ msgid "Halt bug" #~ msgstr "Error d'aturada" #~ msgid "" #~ "Some of the early i486DX-100 chips cannot reliably return to operating " #~ "mode after the \"halt\" instruction is used" #~ msgstr "" #~ "Alguns del primers xips i486DX-100 no poden tornar amb fiabilitat al mode " #~ "d'operació després que s'hagi utilitzat la instrucció \"halt\"" #~ msgid "Bugs" #~ msgstr "Errors" #~ msgid "FPU" #~ msgstr "FPU" #~ msgid "Unknown/Others" #~ msgstr "Desconegut/Altres" #~ msgid "(default value: %s)" #~ msgstr " (valor per defecte: %s)" #~ msgid "Security Level:" #~ msgstr "Nivell de seguretat:" #~ msgid "Security Alerts:" #~ msgstr "Alarmes de seguretat:" #~ msgid "Security Administrator:" #~ msgstr "Administrador de seguretat:" #~ msgid "Basic options" #~ msgstr "Opcions bàsiques" #~ msgid "Network Options" #~ msgstr "Opcions de xarxa" #~ msgid "System Options" #~ msgstr "Opcions de sistema" #~ msgid "Periodic Checks" #~ msgstr "Comprovacions periòdiques" #~ msgid "Please wait, setting security level..." #~ msgstr "Espereu si us plau, s'està configurant el nivell de seguretat..." #~ msgid "Please wait, setting security options..." #~ msgstr "Espereu si us plau, s'estan configurant les opcions de seguretat..." #, fuzzy #~ msgid "" #~ "The following localization packages do not seem to be useful for your " #~ "system:" #~ msgstr "Cal instal·lar els paquets següents:\n" #, fuzzy #~ msgid "Do you want to remove these packages?" #~ msgstr "Voleu executar l'eina de configuració adequada?" #, fuzzy #~ msgid "" #~ "The following hardware packages do not seem to be useful for your system:" #~ msgstr "Cal instal·lar els paquets següents:\n" #~ msgid "Please wait, adding media..." #~ msgstr "Si us plau espereu, s'estan afegint fonts..." #~ msgid "The change is done, but to be effective you must logout" #~ msgstr "" #~ "El canvi està fet, però perquè sigui efectiu heu de sortir de la sessió " #~ "actual" #~ msgid "Restart XFS" #~ msgstr "Reinicia l'XFS" #~ msgid "Copyright (C) 2001-2008 by Mandriva" #~ msgstr "Copyright © 2001-2008 per Mandriva" #~ msgid "Error!" #~ msgstr "S'ha produït un error!" #~ msgid "I can not find needed image file `%s'." #~ msgstr "No he trobat el fitxer d'imatge necessari `%s'." #~ msgid "Auto Install Configurator" #~ msgstr "Configuració de la instal·lació automàtica" #~ msgid "" #~ "You are about to configure an Auto Install floppy. This feature is " #~ "somewhat dangerous and must be used circumspectly.\n" #~ "\n" #~ "With that feature, you will be able to replay the installation you've " #~ "performed on this computer, being interactively prompted for some steps, " #~ "in order to change their values.\n" #~ "\n" #~ "For maximum safety, the partitioning and formatting will never be " #~ "performed automatically, whatever you chose during the install of this " #~ "computer.\n" #~ "\n" #~ "Press ok to continue." #~ msgstr "" #~ "Ara es configurarà un disquet d'instal·lació automàtica. Aquesta " #~ "característica és perillosa i s'ha d'utilitzar amb molta cura.\n" #~ "\n" #~ "Amb aquesta característica, sereu capaç de repetir la instal·lació que ja " #~ "heu fet en aquest ordinador, tot i que se us consultarà en alguns passos, " #~ "perquè pugueu canviar els valors.\n" #~ "\n" #~ "Per màxima seguretat, el particionament i la formatació mai seran " #~ "executats automàticament, independentment del que trieu durant la " #~ "instal·lació d'aquest ordinador.\n" #~ "\n" #~ "Premeu Accepta per continuar." #~ msgid "replay" #~ msgstr "repeteix" #~ msgid "manual" #~ msgstr "manual" #~ msgid "Automatic Steps Configuration" #~ msgstr "Configuració automatitzada dels passos" #~ msgid "" #~ "Please choose for each step whether it will replay like your install, or " #~ "it will be manual" #~ msgstr "" #~ "Si us plau, escolliu per cada pas si es repetirà la vostra instal·lació o " #~ "si serà manual" #~ msgid "Insert a blank floppy in drive %s" #~ msgstr "Inseriu un disquet en blanc a la unitat %s" #~ msgid "Creating auto install floppy" #~ msgstr "S'està creant el disquet d'instal·lació automàtica" #~ msgid "Insert another blank floppy in drive %s (for drivers disk)" #~ msgstr "" #~ "Inseriu un disquet en blanc a la unitat %s (pel disquet de controladors)" #~ msgid "Creating auto install floppy (drivers disk)" #~ msgstr "" #~ "S'està creant el disquet d'instal·lació automàtica (disquet de " #~ "controladors)" #~ msgid "" #~ "\n" #~ "Welcome.\n" #~ "\n" #~ "The parameters of the auto-install are available in the sections on the " #~ "left" #~ msgstr "" #~ "\n" #~ "Benvingut.\n" #~ "\n" #~ "Els paràmetres de la instal·lació automàtica estan disponibles en les " #~ "seccions de l'esquerra" #~ msgid "" #~ "The floppy has been successfully generated.\n" #~ "You may now replay your installation." #~ msgstr "" #~ "El disquet s'ha creat correctament.\n" #~ "Ara podeu repetir la vostra instal·lació." #~ msgid "Auto Install" #~ msgstr "Instal·la automàticament" #~ msgid "Add an item" #~ msgstr "Afegeix un element" #~ msgid "Remove the last item" #~ msgstr "Esborra l'últim element" #~ msgid "Menudrake" #~ msgstr "Menudrake" #~ msgid "Msec" #~ msgstr "Msec" #~ msgid "Urpmi" #~ msgstr "Urpmi" #~ msgid "Userdrake" #~ msgstr "Userdrake"