summaryrefslogtreecommitdiffstats
path: root/perl-install/drakxtools.spec
blob: aaf268ebca3b589cccab2af333354c391fa33535 (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
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
Summary: The drakxtools (XFdrake, diskdrake, keyboarddrake, mousedrake...)
Name:    drakxtools
Version: 9.1
Release: 15mdk
Url: http://www.mandrakelinux.com/en/drakx.php3
Source0: %name-%version.tar.bz2
License: GPL
Group: System/Configuration/Other
# Temporary requires for tools that still use gtk+1 (mainly drakfloppy and net_monitor)
Requires: perl-GTK >= 0.6123, perl-GTK-GdkImlib, perl-GTK-GdkPixbuf
Requires: %{name}-newt = %version-%release, perl-GTK2 >= 0.0.cvs.2003.03.04.1-2mdk, XFree86-100dpi-fonts, XFree86-75dpi-fonts, /usr/X11R6/bin/xtest, font-tools, usermode >= 1.44-4mdk, perl-MDK-Common >= 1.0.4-14mdk, font-tools
Conflicts: drakconf < 9.1-3mdk 
BuildRequires: gettext, libgtk+-x11-2.0-devel, ldetect-devel >= 0.4.8, ncurses-devel, newt-devel, perl-devel, libext2fs-devel, perl-MDK-Common-devel
BuildRoot: %_tmppath/%name-buildroot
Provides: draksec
Obsoletes: draksec

%package newt
Summary: The drakxtools (XFdrake, diskdrake, keyboarddrake, mousedrake...)
Group: System/Configuration/Other
Requires: perl-base >= 1:5.8.0-10mdk, urpmi, modutils >= 2.3.11, ldetect-lst >= 0.1.7-3mdk, usermode-consoleonly >= 1.44-4mdk, msec >= 0.38
Obsoletes: diskdrake setuptool
Obsoletes: mouseconfig kbdconfig printtool drakfloppy
Provides: diskdrake setuptool mouseconfig kbdconfig printtool

%package http
Summary: The drakxtools via http
Group: System/Configuration/Other
Requires: %{name}-newt = %version-%release, perl-Net_SSLeay, perl-Authen-PAM, perl-CGI
PreReq: rpm-helper

%package -n harddrake
Summary: Main Hardware Configuration/Information Tool
Group: System/Configuration/Hardware
Requires: %{name}-newt = %version-%release
Obsoletes: kudzu, kudzu-devel, libdetect0, libdetect0-devel, libdetect-lst, libdetect-lst-devel, detect, detect-lst
Provides: kudzu, kudzu-devel, libdetect0, libdetect0-devel, libdetect-lst, libdetect-lst-devel, detect, detect-lst
Prereq: rpm-helper

%package -n harddrake-ui
Summary: Main Hardware Configuration/Information Tool
Group: System/Configuration/Hardware
Requires: %name = %version-%release

%description
Contains many Mandrake applications simplifying users and
administrators life on a Mandrake Linux machine. Nearly all of
them work both under XFree (graphical environment) and in console
(text environment), allowing easy distant work.

adduserdrake: help you adding a user

ddcxinfos: get infos from the graphic card and print XF86Config
modlines

diskdrake: DiskDrake makes hard disk partitioning easier. It is
graphical, simple and powerful. Different skill levels are available
(newbie, advanced user, expert). It's written entirely in Perl and
Perl/Gtk. It uses resize_fat which is a perl rewrite of the work of
Andrew Clausen (libresize).

drakautoinst: help you configure an automatic installation replay

drakbackup: backup and restore your system

drakboot: configures your boot configuration (Lilo/GRUB,
Bootsplash, X, autologin)

drakbug: interactive bug report tool

drakbug_report: help find bugs in DrakX

drakconnect: LAN/Internet connection configuration. It handles
ethernet, ISDN, DSL, cable, modem.

drakfloppy: boot disk creator

drakfont: import fonts in the system

drakgw: internet connection sharing

drakproxy: proxies configuration

draksec: security options managment / msec frontend

draksound: sound card configuration

draksplash: bootsplash themes creation

drakTermServ: mandrake terminal server configurator

drakxservices: SysV service and dameaons configurator

drakxtv: auto configure tv card for xawtv grabber

keyboarddrake: configure your keyboard (both console and X)

liveupdate: live update software

logdrake: show extracted information from the system logs

lsnetdrake: display available nfs and smb shares

lspcidrake: display your pci information, *and* the corresponding
kernel module

localedrake: language configurator, available both for root
(system wide) and users (user only)

mousedrake: autodetect and configure your mouse

printerdrake: detect and configure your printer

scannerdrake: scanner configurator

drakfirewall: simple firewall configurator

XFdrake: menu-driven program which walks you through setting up
your X server; it autodetects both monitor and video card if
possible


%description newt
See package %name

%description http
This add the capability to be runned behind a web server to the drakx tools.
See package %name


%description -n harddrake
The harddrake service is a hardware probing tool run at system boot
time to determine what hardware has been added or removed from the
system.
It then offer to run needed config tool to update the OS
configuration.


%description -n harddrake-ui
This is the main configuration tool for hardware that calls all the
other configuration tools.
It offers a nice GUI that show the hardware configuration splitted by
hardware classes.


%prep
%setup -q

%build
%make rpcinfo-flushed ddcprobe serial_probe 
%make

%install
rm -rf $RPM_BUILD_ROOT

%make PREFIX=$RPM_BUILD_ROOT install
mkdir -p $RPM_BUILD_ROOT/{%_initrddir,%_sysconfdir/{X11/xinit.d,sysconfig/harddrake2}}
touch $RPM_BUILD_ROOT/etc/sysconfig/harddrake2/previous_hw

mv $RPM_BUILD_ROOT%_sbindir/net_monitor \
   $RPM_BUILD_ROOT%_sbindir/net_monitor.real
ln -sf %_bindir/consolehelper $RPM_BUILD_ROOT%_sbindir/net_monitor
mkdir -p $RPM_BUILD_ROOT%_sysconfdir/{pam.d,security/console.apps}
cp pam.net_monitor $RPM_BUILD_ROOT%_sysconfdir/pam.d/net_monitor
cp apps.net_monitor $RPM_BUILD_ROOT%_sysconfdir/security/console.apps/net_monitor

dirs1="usr/lib/libDrakX usr/share/libDrakX"
(cd $RPM_BUILD_ROOT ; find $dirs1 usr/bin usr/sbin ! -type d -printf "/%%p\n")|egrep -v 'bin/.*harddrake' > %{name}.list
(cd $RPM_BUILD_ROOT ; find $dirs1 -type d -printf "%%%%dir /%%p\n") >> %{name}.list

perl -ni -e '/XFdrake|bootlook|drakbackup|drakfont|gtk|icons|logdrake|net_monitor|pixmaps/ ? print STDERR $_ : print' %{name}.list 2> %{name}-gtk.list
perl -ni -e '/http/ ? print STDERR $_ : print' %{name}.list 2> %{name}-http.list

#mdk menu entry
mkdir -p $RPM_BUILD_ROOT/%_menudir
cat > $RPM_BUILD_ROOT%_menudir/harddrake-ui <<EOF
?package(harddrake-ui):\
	needs="X11"\
	section="Configuration/Hardware"\
	title="HardDrake"\
	longtitle="Hardware Central Configuration/information tool"\
	command="/usr/sbin/harddrake2"\
	icon="harddrake.png"
EOF

cat > $RPM_BUILD_ROOT%_datadir/harddrake/convert <<EOF
#!/usr/bin/perl
use Storable;
 
my \$last_boot_config = "/etc/sysconfig/harddrake2/previous_hw";
 
my \$config = do \$last_boot_config;
store \$config, \$last_boot_config;
EOF

cat > $RPM_BUILD_ROOT%_sysconfdir/X11/xinit.d/harddrake2 <<EOF
#!/bin/sh
exec /usr/share/harddrake/service_harddrake X11
EOF

cat > $RPM_BUILD_ROOT%_datadir/harddrake/confirm <<EOF
#!/usr/bin/perl
use lib qw(/usr/lib/libDrakX);
use interactive;

my \$in = interactive->vnew;
my \$res = \$in->ask_okcancel(\$ARGV[0], \$ARGV[1], 1);
\$in->exit(\$res);
EOF

chmod +x $RPM_BUILD_ROOT{%_datadir/harddrake/*,%_sysconfdir/X11/xinit.d/harddrake2}
# temporary fix until we reenable this feature
rm -f $RPM_BUILD_ROOT%_sysconfdir/X11/xinit.d/harddrake2

%find_lang libDrakX
cat libDrakX.lang >> %name.list

%clean
rm -rf $RPM_BUILD_ROOT

%post
[[ ! -e %_sbindir/kbdconfig ]] && %__ln_s -f keyboarddrake %_sbindir/kbdconfig
[[ ! -e %_sbindir/mouseconfig ]] && %__ln_s -f mousedrake %_sbindir/mouseconfig
[[ ! -e %_bindir/printtool ]] && %__ln_s -f ../sbin/printerdrake %_bindir/printtool
:

%postun
for i in %_sbindir/kbdconfig %_sbindir/mouseconfig %_bindir/printtool;do
    [[ -L $i ]] && %__rm -f $i
done

%post http
%_post_service drakxtools_http

%preun http
%_preun_service drakxtools_http

%post -n harddrake-ui
%update_menus

%postun -n harddrake-ui
%clean_menus

%post -n harddrake
%_post_service harddrake

%preun -n harddrake
%_preun_service harddrake

%postun -n harddrake
file /etc/sysconfig/harddrake2/previous_hw | fgrep -q perl && %_datadir/harddrake/convert || :

%files newt -f %name.list
%defattr(-,root,root)
%config(noreplace) /etc/security/fileshare.conf
%doc diskdrake/diskdrake.html
%attr(4755,root,root) %_sbindir/fileshareset

%files -f %{name}-gtk.list
%defattr(-,root,root)
%config(noreplace) %_sysconfdir/pam.d/net_monitor
%config(noreplace) %_sysconfdir/security/console.apps/net_monitor
/usr/X11R6/bin/*

%files -n harddrake
%defattr(-,root,root)
%config(noreplace) %_initrddir/harddrake
%dir /etc/sysconfig/harddrake2/
%config(noreplace) /etc/sysconfig/harddrake2/previous_hw
%_datadir/harddrake/*
#%_sysconfdir/X11/xinit.d/harddrake2

%files -n harddrake-ui
%defattr(-,root,root)
%dir /etc/sysconfig/harddrake2/
%_sbindir/harddrake2
%_datadir/pixmaps/harddrake2
%_menudir/harddrake-ui
%_iconsdir/large/harddrake.png
%_iconsdir/mini/harddrake.png
%_iconsdir/harddrake.png


%files http -f %{name}-http.list
%defattr(-,root,root)
%dir %_sysconfdir/drakxtools_http
%config(noreplace) %_sysconfdir/pam.d/miniserv
%config(noreplace) %_sysconfdir/init.d/drakxtools_http
%config(noreplace) %_sysconfdir/drakxtools_http/conf
%config(noreplace) %_sysconfdir/drakxtools_http/authorised_progs
%config(noreplace) %_sysconfdir/logrotate.d/drakxtools-http

%changelog
* Thu Mar  6 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.1-15mdk
- fix infamous #2672
- let draksec fit in 800x600
- fix drakwizard ("next" button being packed too far) (pixel)

* Wed Mar  5 2003 Guillaume Cottenceau <gc@mandrakesoft.com> 9.1-14mdk
- localedrake: fix behaviour when only one lang is available (clicking
  on "cancel" on the country selection didn't cancel it)
- drakconnect: fixes in isdn configuration (flepied)
- drakperm (tv):
  o fix #1776
  o fix small memory leak (tree iterators)
  o restore edit dialog on doble click
- logdrake: restore "pre gtk+-2 port" search  behavior (tv)
  o empty log buffer on search startup
  o freeze buffer while searching
  o scroll down the log buffer on filling
- localedrake: don't categorize langs, for better looking (since
  most people will have very few of them) (gc)
- fixed wizard mode not taken into account for drakconnect in
  drakconf. (francois)
- fixed expert mode in drakconnect for dhcp for cleaning
  variables. (francois)
- fixed not to use invalid ethX. (francois)

* Mon Mar  3 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.1-13mdk
- drakboot: fix #2091, #2480

* Mon Mar  3 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.1-12mdk
- drakperm: fix rules saving
- printerdrake: various fixes (till)

* Fri Feb 28 2003 Guillaume Cottenceau <gc@mandrakesoft.com> 9.1-11mdk
- drakconnect is no more supporting profiles. (francois)
- drakconnect support for sagem Fast 800 used by free.fr (francois)
- drakconnect support for ltmodem. (francois)
 
* Thu Feb 27 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.1-10mdk
- harddrake service: 
  o offer to configure cdrom/dvd/burners/floppies/
    and the like mount points
  o configure firewire controllers
- diskdrake fixes (pixel)
- drakconnect fixes (francois)

* Thu Feb 27 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.1-9mdk
- drakconnect: 
  o fix lan configuration window filling
  o fix net configuration window sizing
- drakperm: make it fit better in both embedded and non embedded modes
- drakgw: fix embedding
- logdrake: fix scrolling for embedded explanations
- mousedrake: fix embedding  (gc)

* Thu Feb 27 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.1-8mdk
- drakfloppy gtk+2 port
- drakboot:
  o cleanups
  o disable autologin settings when autologin is disabled
  o make embedded app look bettero
- harddrake2: 
  o fix #1858 (usb adsl speed touch modem misdetection)
  o provides "options" and "help" pull down menu when embedded
  o detect firewire controllers
- drakedm: strip empty lines
- lot of network fixes (francois)
- drakbackup gtk+2 port fixes: #1753, #1754, #1933, #2159 (stew)

* Tue Feb 25 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.1-7mdk
- drakfloppy: 
  o fix #1761
  o only list physically present floppies
- harddrake gui:
  o better support for zip devices
  o removable devices cleanups
  o display dvd/burning capacities
- harddrake service:
  o do not flash the screen if nothing has to be configured
  o removable devices cleanups
- fix #1802 (pixel)

* Mon Feb 24 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.1-6mdk
- fix logdrake's mail alerts (services alert, don't crash)
- drakperm: fix #1771, non editable combo1
- drakfloppy: fix #1760
- drakxservices: fix #502

* Mon Feb 24 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.1-5mdk
- clean up tools embeddeding in the mcc
  o make it hard to freeze the mcc
  o make tools loo better when embedded (no embedded wait messages,
    ...)
- harddrake2:
  o add "/dev" to devfs paths
  o do not offer to configure module when there's no module or when
    driver is an url or a graphic server
  o fix embedding

* Fri Feb 21 2003 Damien Chaumette <dchaumette@mandrakesoft.com> 9.1-4mdk
- drakconnect fixes

* Thu Feb 20 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.1-3mdk
- drakboot: fix #1922
- drakgw, drakboot: remove gtk+ warnings
- harddrake2: fix latest l10n bugs
- disdkrake fixes (pixel)
- drakconnect: dhcp fix (poulpy)
- printerdrake fix (pixel)

* Thu Feb 20 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.1-2mdk
- logdrake: fix #1829
- translation updates
- scannerdrake:fix embedding
- drakxtv: workaround a drakx bug which don't always add bttv to
  /etc/modules (fix #)
- printerdrake:
  o fix embedding
  o hide the icon when embedded to get more space
  o various improvements (till)
- drakfont: fc-cache enhancement (pablo)
- drakTermServ: fix #1774, #1775 (stew)
- newt bindind: better trees managment on console (pixel)
- diskdrake fixes (pixel)
- xfdrake: log failure sources (pixel)

* Tue Feb 18 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.1-1mdk
- fix "nothing to edit" in drakperm (#1769)
- fix draksec help
- drakedm: fix badly generated config file by 3rd party progs
- i18n fixes (pablo, gc)
- scannerdrake updates (till)
- diskdrake fixes: raid, ... (pixel)
- printerdrake fixes (till)
- drakconnect fix (poulpy)

* Mon Feb 17 2003 Till Kamppeter <till@mandrakesoft.com> 9.1-0.34mdk
- Fixed automatic print queue generation for HP DeskJet 990C.

* Mon Feb 17 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.1-0.33mdk
- fix wizard mode (pixel)

* Mon Feb 17 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.1-0.32mdk
- harddrake: fix #1718
- translation snapshot

* Sun Feb 16 2003 Till Kamppeter <till@mandrakesoft.com> 9.1-0.31mdk
- Various fixes/improvements on printerdrake:
  o Restructured function "main()"
  o Auto-generation of print queues during installation
  o Support for unknown printers in auto-detection and auto-generation of
    print queues
  o Fixed display of printer help pages
  o Fixed determination of default printer

* Fri Feb 14 2003 Damien Chaumette <dchaumette@mandrakesoft.com> 9.1-0.30mdk
- drakperm fixes
- drakfont fixes

* Thu Feb 13 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.1-0.29mdk
- fix gc breakage

* Thu Feb 13 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.1-0.28mdk
- vastly improved scannerdrake (till):
  o fixed scsi/usb/parrallel scanners detection
  o new known scanners
  o support scanners with multiple ports 
  o better configuration files
  o fix "SnapScan" <-> "snapscan" bug
  o fix "HP scanners had no manufacturer field"
- drakxservices fixes (pixel)

* Wed Feb 12 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.1-0.27mdk
- fix embedded drakconnect: 
  o no crash on expert "configure" buttons
  o better behaviour when buttons are hidden/showx
- harddrake/draksound: card list update
- pixel:
  o diskdrake: 
    * discrimate hpfs and ntfs
    * more precise message when formatting / fsck'ing / mounting
	 partitions
    * hide passwords for smb mount points
  o XFdrake: fix #707
- drakperm: first gtk+2 port fixes, still more to come (pouly & me)
- fix drakbug help (daouda)
- drakconnect fixes (frederic lepied)
- updated translations (pablo)

* Fri Feb  7 2003 Damien Chaumette <dchaumette@mandrakesoft.com> 9.1-0.26mdk
- drakconnect : dhcp & zeroconf fixes
- drakfont : full Gtk2

* Thu Feb  6 2003 Damien Chaumette <dchaumette@mandrakesoft.com> 9.1-0.25mdk
- drakconnect fixes

* Thu Feb  6 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.1-0.24mdk
- fix drakfloppy
- diskdrake: s/fat/windows/ because of ntfs
- poulpy:
  o drakfont updates
  o drakconnect fixes
- translation updates (pablo & co)
- add drakedm to choose display manager
- drakhelp: install help on demand (deush)
- harddrake2: fix for rtl languages

* Wed Feb  5 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.1-0.23mdk
- draksec cleanups
- fix harddrake2 embedding in mcc
- update translations (pablo)

* Tue Feb  4 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.1-0.22mdk
- add support for adiusbadsl 1.0.2 (fponsinet)
- faster draksec shutdown

* Mon Feb  3 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.1-0.21mdk
- draksec:
  o gui look nicer
  o add help for check cron 
  o fix "first notebook page do not show up"
  o do not be listed in drakxtools-http
  o faster startup
- sanitize draxktools-http service script
- diskdrake: ntfs resizing bug fixes (pixel)

* Fri Jan 31 2003 Damien Chaumette <dchaumette@mandrakesoft.com> 9.1-0.20mdk
- drakconnect: add more zeroconf support

* Thu Jan 30 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.1-0.19mdk
- printerdrake: fixes for new foomatic
- requires a recent enought perl-GTK2
- harddrake2:
  o fix misdetection of nvnet part of nvforce2 chips
  o move nforce system controllers in bridge class (which is renamed
    "bridges and system controllers")
  o mark class names as being translatable
- logdrake works again in both embedded and non embedded cases
- translation updates, add Tajiki (pablo)
- interactive: add support for trees on console (pixel)
- diskdrake: ntfs resizing support (pixel) (acked by ntfsresize author)

* Wed Jan 29 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.1-0.18mdk
- fix locales managment for non interactive tools (aka pure gtk+ tools)
- harddrake2:
  o restore cd/dvd burners detection
  o fix doble detection of pci modems
  o don't display vendor & description when we don't have them for ata disks
  o fix ghost modem detection
  o logdrake is embeddable again

* Tue Jan 28 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.1-0.17mdk
- drakfont updates (poulpy):
  o fix progress bar,
  o about box,
  o ugly border when embedded.
- printerdrake: various fixes for local printer (till)
- small fix in drakgw (florin)

* Mon Jan 27 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.1-0.16mdk
- fix wait messages (gc)
- vietnamese translation update

* Mon Jan 27 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.1-0.15mdk
- diskdrake:
  o make sub window be modal
  o fix text mode (pixel)
- drakconnect: 
  o don't log actions not done
  o fix modem detection (poulpy)
  o cleanups (poulpy, pixel)
- draksound: remove last source of "unlisted driver" because of hand
  edited /etc/modules.conf
- drakxtv: add test mode
- fix encoding conversions for non latin1 (gc)
- harddrake2:
  o use new help system
  o make sub window be modal
  o configure sound slots on bootstrapping
- logdrake:
  o don't display "wait while parsing" window when embedded in mcc
  o log all drakx tools (not only the first one)
- mousedrake: cleanups (pixel, gc)
- printerdrake: updates for new foomatic (till)
- requires old perl-gtk for drakfloppy and net_monitor which works
  again
- translation updates (pablo)
- xfdrake: various fixes (pixel)

* Fri Jan 24 2003 Damien Chaumette <dchaumette@mandrakesoft.com> 9.1-0.14mdk
- drakconnect :
  o get back serial modem detection

* Thu Jan 23 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.1-0.13mdk
- fix standalone apps error on --help
- many enhancements to draksound:
  o no more unlisted message
  o "how to debug sound problem" window
  o offer to pick any driver if no detected sound card (for eg isa
    card owners) or if no alternative driver 
  o handle proprietary drivers
  o fix unchrooted chkconfig call
- draksec: display help in tooltips
- drakconnect :
  o cleaning (poulpy, me)
  o zeroconf support (poulpy)
- big interactive cleanup for drakx and focus handling (pixel)
- boot floppy fixes (pixel)
- diskdrake: don't display twice the same mount point (pixel)
- keyboardrake:
  o cleanups (pixel)
  o update supported keyboard layouts ... (pablo)
- xfdrake: (pixel)
  o cleanups
  o don't use anymore qiv to render background while testing X config
- add drakpxe (francois)
- printerdrake:
  o updates (till)
  o fix chrooted services (me)
- translation updates (many people)
- mousedrake: fix scrolling test (gc)
- ugtk2: fix some (small) memory leaks (gc)
- ppc updates (stew)
- english sentences proofreading (pablo, stew)
- fix gtk+-2 port of mousedrake (me), 

* Fri Jan 17 2003 Damien Chaumette <dchaumette@mandrakesoft.com> 9.1-0.12mdk
- drakconnect : 
  o little dhcp behavior rework
  o fix /etc/hosts localdomain
 
* Thu Jan 16 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.1-0.11mdk
- snapshot

* Thu Jan 09 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.1-0.10mdk
- draksound : fix and update driver list
- printerdrake: fix staroffice/ooffice configuration (till)

* Tue Jan 07 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.1-0.9mdk
- fix wizards

* Tue Jan  7 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.1-0.8mdk
- update french translation
- harddrake: treat usb hubs as usb controllers
- logdrake: set it non editable
- printerdrake:
  o simplify gimp-print configuration 
  o let it work
- various cleanups (pixel)
- standalone tools: first help system bits (deush)

* Mon Jan  6 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.1-0.7mdk
- printerdrake fixes

* Thu Jan  2 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.1-0.6mdk
- embedding fixes
- wizard fixes
- fix permissions setting
- internals cleanups
- drakconnect & printerdrake fixes
- gtk+-2 fixes
- faster xfdrake startup
- translations update
- fix redefinition warnings

* Mon Dec 30 2002 Stefan van der Eijk <stefan@eijk.nu> 9.1-0.5mdk
- BuildRequires: perl-MDK-Common-devel

* Thu Dec 19 2002 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.1-0.4mdk
- gtk+2 snapshot

* Wed Dec 04 2002 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.1-0.3mdk
- snapshot for mcc

* Mon Nov 18 2002 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.1-0.2mdk
- more printerdrake redesign
- more perl_checker fixes
- standalone : provide a common cli options/help manager
- logdrake : use my_gtk to transparently handle embedding and ease future gtk2 port
- kill dead code

* Fri Nov 15 2002 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.1-0.1mdk
- bump version
- add missing printer/ directory
- typo fix in drakxtv

* Thu Nov 14 2002 Thierry Vignaud <tvignaud@mandrakesoft.com> 1.1.12-1mdk
- printerdrake cleanups
- various perl lifting
- harddrake:
  o display floppy driver type as well as mouse type & network printer port
  o fix vendor/model spliting for eide disks when there's neither
    space nor separator
  o v4l card lists : resync with latest bttv & saa7134 drivers

* Mon Nov 11 2002 Pixel <pixel@mandrakesoft.com> 1.1.11-3mdk
- bug fix (most drakxtools)

* Sun Nov 10 2002 Pixel <pixel@mandrakesoft.com> 1.1.11-2mdk
- bug fix (printerdrake, netconnect)

* Thu Nov  7 2002 Thierry Vignaud <tvignaud@mandrakesoft.com> 1.1.11-1mdk
- harddrake:
  o only display "selected" fields, skip other (aka only display
    fields we described)
  o print name and value of skipped fields on console
  o only display help topics related to currently displayed fields in
    right "information" frame
  o if no device selected, display a message explaining the help dialog
  o don't display modem when there're none
  o describe most cpu fields
  o simplify the coloring logic

- detect_devices :
  o getModem() : simplify
  o getCPUs() : fix cpu fields parsing

* Wed Nov  6 2002 Thierry Vignaud <tvignaud@mandrakesoft.com> 1.1.10-4mdk
- s/_(/N(/

* Tue Nov 05 2002 Thierry Vignaud <tvignaud@mandrakesoft.com> 1.1.10-3mdk
- rebuild for newt

* Mon Nov  4 2002 Thierry Vignaud <tvignaud@mandrakesoft.com> 1.1.10-2mdk
- snapshot

* Wed Oct 16 2002 Thierry Vignaud <tvignaud@mandrakesoft.com> 1.1.10-1mdk
- harddrake :
  o try to discriminate webcams from video cards
  o fix not displayed unknow devices
- detection engin :
  o update eide vendors list
  o detect cpus
  o adsl work (damien)
- drakbug:
  o make ui faster
  o fix displayed result when the package isn't installed
- drakTermServ : fixes (stew)
- smb updates (stew)
- fix broken danish translations (wrong unicode encoding) (pablo)
- update other translations by the way (pablo)

* Fri Sep 20 2002 Thierry Vignaud <tvignaud@mandrakesoft.com> 1.1.9-53mdk
- remove useless warnings from harddrake

* Fri Sep 20 2002 Thierry Vignaud <tvignaud@mandrakesoft.com> 1.1.9-52mdk
- fix draksec

* Fri Sep 20 2002 Thierry Vignaud <tvignaud@mandrakesoft.com> 1.1.9-51mdk
- printerdrake: various fixes (till)
- drabug:
	o fix spurious '1' file creation
	o don't print error messages when a program isn't found

* Tue Sep 17 2002 Thierry Vignaud <tvignaud@mandrakesoft.com> 1.1.9-50mdk
- draksec:
	o add ignore option to pull-down list
	o remove not anymore used libsafe option
	o save items
	o reread already set item

* Tue Sep 17 2002 Warly <warly@mandrakesoft.com> 1.1.9-49mdk
- printerdrake fix for webfetch

* Mon Sep 16 2002 Guillaume Cottenceau <gc@mandrakesoft.com> 1.1.9-48mdk
- fix die wizcancel in non wizard mode (dams sucks?)

* Sat Sep 14 2002 Thierry Vignaud <tvignaud@mandrakesoft.com> 1.1.9-47mdk
- fix printerdrake network scanning for printers/print servers hangs
  on with firewalled machines (till)
- fix printerdrake curl dependancy break urpmi (till)
- obsoletes drakfloppy (daouda)

* Thu Sep 12 2002 Damien Chaumette <dchaumette@mandrakesoft.com> 1.1.9-46mdk
- fix broken net_monitor

* Thu Sep 12 2002 Guillaume Cottenceau <gc@mandrakesoft.com> 1.1.9-45mdk
- try to fix drakgw & drakfirewall thx to pixel and florin
- fix drakfloppy and logdrake (tv)

* Wed Sep 11 2002 Damien Chaumette <dchaumette@mandrakesoft.com> 1.1.9-44mdk
- drakconnect :
  o fix RTC, ISDN detection
  o fix pcmcia cards detection / module list
  o check DNS and Gateway IPs

* Mon Sep  9 2002 Thierry Vignaud <tvignaud@mandrakesoft.com> 1.1.9-43mdk
- move back draksec to drakxtools
- harddrake:
  o don't pollute sbin namespace with one shot scripts
  o add run wrapper script for harddrake service
  o disable ?dm part
- draksound:
  o really display default driver
  o wait message while switching
- update translations

* Sat Sep  7 2002 Daouda LO <daouda@mandrakesoft.com> 1.1.9-42mdk
- cvs up before packaging (fix messy drakboot conf). 

* Fri Sep  6 2002 Thierry Vignaud <tvignaud@mandrakesoft.com> 1.1.9-41mdk
- fix harddrake service, run non essential checks after dm start

* Fri Sep  6 2002 Thierry Vignaud <tvignaud@mandrakesoft.com> 1.1.9-40mdk
- harddrake:
  o fix usb mouse detection
  o list --test in -h|--help
  o enhanced draksound :
    * blacklist cs46xx and cs4281 drivers : we won't unload these
 	 drivers since they're know to oopses the kernel but just warn
 	 the user
    * chroot aware - can be used in drakx
    * workaround alsaconf's aliases
    * add an help button that describe ALSA and OSS
    * display current driver, its type (OSS or ALSA), and the default
  	 driver for the card
    * if there's no (usb|pci) sound card, print a note about sndconfig
      for isa pnp cards

* Fri Sep 06 2002 David BAUDENS <baudens@mandrakesoft.com> 1.1.9-39mdk
- Re-add old obsolete Aurora's images needed by drakboot (this is stupid)

* Fri Sep 06 2002 David BAUDENS <baudens@mandrakesoft.com> 1.1.9-38mdk
- Update mdk_logo.png
- Update drakbackup icons

* Fri Sep  6 2002 Thierry Vignaud <tvignaud@mandrakesoft.com> 1.1.9-37mdk
- drakperm, drakbackup: fix embedded mode

* Fri Sep  6 2002 Thierry Vignaud <tvignaud@mandrakesoft.com> 1.1.9-36mdk
- gtkicons_labels_widget() :
  o add support for mcc' big icon animation
  o cleanups
  o simplify notebook redrawing vs flick/icon_aligment

* Thu Sep  5 2002 Guillaume Cottenceau <gc@mandrakesoft.com> 1.1.9-35mdk
- Update banners (David Baudens)
- my_gtk snapshot for rpmdrake (gc)

* Wed Sep  4 2002 Stew Benedict <sbenedict@mandrakesoft.com> 1.1.9-34mdk
- add perl-Expect requires for drakbackup (now enabled)

* Wed Sep  4 2002 Thierry Vignaud <tvignaud@mandrakesoft.com> 1.1.9-33mdk
- harddrake: fix scrolling tree

* Wed Sep  4 2002 Thierry Vignaud <tvignaud@mandrakesoft.com> 1.1.9-32mdk
- embbed drakbackup

* Wed Sep  4 2002 Guillaume Cottenceau <gc@mandrakesoft.com> 1.1.9-31mdk
- snapshot for gtktext_insert with color/font capabilities (rpmdrake)

* Tue Sep  3 2002 Thierry Vignaud <tvignaud@mandrakesoft.com> 1.1.9-30mdk
- ugtk:
	o better fix for glib warning that don't make drakx feel mad
	o make icons more transparent when selected in mcc

* Mon Sep  2 2002 Thierry Vignaud <tvignaud@mandrakesoft.com> 1.1.9-29mdk
- harddrake:
  o use new icons
  o add menu icon
- mcc: ensure all binaries're there
- ugtk: remove all glib warnings

* Mon Sep  2 2002 Thierry Vignaud <tvignaud@mandrakesoft.com> 1.1.9-28mdk
- tinyfirewall is now drakfirewall (daouda)

* Fri Aug 30 2002 Thierry Vignaud <tvignaud@mandrakesoft.com> 1.1.9-27mdk
- ugtk: add alpha blendering support for mcc's icons through pixbufs
  o readd gdkpixbuf support
  o ensure imlib is used by default to load files, not gdk-pixbuf
  o compose_with_back(): load a png icon into a pixbuf and call
    compose_pixbufs with background pixbuf
  o compose_pixbufs(): render transparent icon onto background into a
    new pixbuf
  o merge gtkcreate_png_pixbuf() from gdk-pixbuf-0-branch : load an
    icon into a pixbuf
    gdk-pixbuf-0-branch also uses it to simplify a lot of code
  o gtkicons_labels_widget() :
    * add a new background pixbuf parameter that'll be composited with icons
    * render icons with alpha blender in right area
    * kill imlib_counter
    * kill imlib usage for 
    * kill dead code (was dead since i fixed mcc memory leaks)
- fix init-script-without-chkconfig-{post,preun}

* Thu Aug 29 2002 Thierry Vignaud <tvignaud@mandrakesoft.com> 1.1.9-26mdk
- harddrake: 
	o quit button really work in embedded mode
	o move so called eide raid controllers from unknown to ata
	  controllers
- logdrake: add a scrollbar when embedded in mcc

* Thu Aug 29 2002 Guillaume Cottenceau <gc@mandrakesoft.com> 1.1.9-25mdk
- snapshot (drakupdate_fstab --auto feature (pixel), logdrake don't
  display too much information in explanations to save space for what's
  useful)

* Thu Aug 29 2002 Guillaume Cottenceau <gc@mandrakesoft.com> 1.1.9-24mdk
- snapshot for display_info availability in ask_browse for rpmdrake

* Thu Aug 29 2002 Pixel <pixel@mandrakesoft.com> 1.1.9-23mdk
- drakupdate_fstab first appearance

* Wed Aug 28 2002 Thierry Vignaud <tvignaud@mandrakesoft.com> 1.1.9-22mdk
- harddrake: don't display the menu bar in embedded mode, but a "quit"
  button

* Tue Aug 27 2002 Thierry Vignaud <tvignaud@mandrakesoft.com> 1.1.9-21mdk
- drakconnect fixes (damien)

* Fri Aug 23 2002 Thierry Vignaud <tvignaud@mandrakesoft.com> 1.1.9-20mdk
- draksound: display right message ("no alternative") when no
  alternative rather than "no known module"
- fixes for multiple NIC boxes (florin)

* Fri Aug 23 2002 Thierry Vignaud <tvignaud@mandrakesoft.com> 1.1.9-19mdk
- draksound: use right sound slot

* Fri Aug 23 2002 Thierry Vignaud <tvignaud@mandrakesoft.com> 1.1.9-18mdk
- ugtk: fix most mcc memory leaks (pending ones seems related to perl-gtk)
- tinyfirewall: misc fixes (pixel)

* Fri Aug 23 2002 Pixel <pixel@mandrakesoft.com> 1.1.9-17mdk
- snapshot (including new tinyfirewall)

* Thu Aug 22 2002 Guillaume Cottenceau <gc@mandrakesoft.com> 1.1.9-16mdk
- snapshot (for rpmdrake)

* Wed Aug 21 2002 Thierry Vignaud <tvignaud@mandrakesoft.com> 1.1.9-15mdk
- add draksound
- mousedrake: default usbmouse link to input/mice rather than
  input/mouse0, thus giving support for multiple mouse, wacom tables,
  ...

* Wed Aug 21 2002 Pixel <pixel@mandrakesoft.com> 1.1.9-14mdk
- fix dangling waiting watch mousecursor (well, please test!)
- adding draksplash (nathan)

* Mon Aug 19 2002 Pixel <pixel@mandrakesoft.com> 1.1.9-13mdk
- snapshot (including better XFdrake)

* Wed Aug 14 2002 Pixel <pixel@mandrakesoft.com> 1.1.9-12mdk
- snapshot (fix diskdrake making a hell of fstab)

* Tue Aug 13 2002 Pixel <pixel@mandrakesoft.com> 1.1.9-11mdk
- snapshot (including "diskdrake --dav")

* Mon Aug 12 2002 Pixel <pixel@mandrakesoft.com> 1.1.9-10mdk
- snapshot (various bug fixes including no-floppy-box-segfault)

* Fri Aug  9 2002 Thierry Vignaud <tvignaud@mandrakesoft.com> 1.1.9-9mdk
- harddrake:
	o module configuration window:
		* read current options
		* don't display ranges, we cannot really know when a range
            is needed and so display them in wrong cases
		* read & parse modules.conf only when configuring the
            module, not on each click in the tree
		* don't display ranges, we cannot really know when a range
       	  is needed and so display them in wrong cases (kill code,
       	  enable us to simplify modparm::parameters after

* Fri Aug  9 2002 Pixel <pixel@mandrakesoft.com> 1.1.9-8mdk
- snapshot

* Tue Aug  6 2002 Thierry Vignaud <tvignaud@mandrakesoft.com> 1.1.9-7mdk
- harddrake, scannerdrake: add scsi scanner detection support
- harddrake: detect external modems

* Tue Aug  6 2002 Pixel <pixel@mandrakesoft.com> 1.1.9-6mdk
- rebuild for perl thread-multi

* Mon Aug  5 2002 Guillaume Cottenceau <gc@mandrakesoft.com> 1.1.9-5mdk
- snapshot for rpmdrake

* Fri Aug  2 2002 Guillaume Cottenceau <gc@mandrakesoft.com> 1.1.9-4mdk
- have interactive::gtk::exit in my_gtk so that my_gtk apps can call
  it and then fix the problem of clock mouse cursor on exit

* Thu Aug  1 2002 Pixel <pixel@mandrakesoft.com> 1.1.9-3mdk
- keyboarddrake now handles choosing toggle key (XkbOptions)

* Thu Aug  1 2002 Thierry Vignaud <tvignaud@mandrakesoft.com> 1.1.9-2mdk
- remove obsoleted drakconf
- various fixes
- [ugtk::gtkcreate_png] suppress all gtk warnings
- updated vietnamese translation (pablo)
- [interactive::gtk] fix many warnings when {icon} is not given (pixel)

* Thu Aug  1 2002 Guillaume Cottenceau <gc@mandrakesoft.com> 1.1.9-1mdk
- integrate patches in my_gtk and ugtk for new rpmdrake:
  - [ugtk] add "gtkentry" so that we can create an entry and set
    initial value in one call
  - [my_gtk::main] don't set the events, to fix keyboard focus
    problem in entries when embedded
  - [my_gtk::_create_window] add $::noBorder, to not have a frame
    in the main window, so that it's possible to end up with
    windows with no border
  - [my_gtk] add ask_dir which is a ask_file with only the dir list
  - [my_gtk] add ask_browse_tree_info to the export tags, and:
    - add support for parents with no leaves, so that then we can
      partially build the trees (for speedup)
    - add "delete_all" and "delete_category" callbacks
    - use Gtk::CList::clear when removing all the nodes, much
      speedup
- Titi, harddrake :
	o workaround for the busy mouse cursor set by
	  gtkset_mousecursor_wait() in my_gtk::destroy
	o remove debugging prints
	o cleanups
    - drakx: various cleanups

* Thu Aug  1 2002 Thierry Vignaud <tvignaud@mandrakesoft.com> 1.1.8-16mdk
- my_gtk:
	o splitup it into my_gtk and ugtk as done by dams
	o resync with dams
	o increase the icon blinkage from 50ms to 100ms
- harddrake: 
	o use new embedded managment

* Thu Aug  1 2002 Pixel <pixel@mandrakesoft.com> 1.1.8-15mdk
- harddrake (titi):
	o add embedded mode for drakconf
	o print less gtk warnings
	o module configuration window
- fix mousedrake
- fix XFdrake in embedded
- enhance XFdrake
- don't require detect-lst (titi)
- printerdrake work in progress (till)

* Wed Jul 31 2002 Thierry Vignaud <tvignaud@mandrakesoft.com> 1.1.8-14mdk
- harddrake:
	o fix pcmcia network card detection (unknown => ethernet)
	o fix scsi detection :
		* fix SCSI controllers detection (unknown => scsi controllers)
		* fix misdetection of scsi devices as scsi host adapter
		* fix double scsi devices detection (both unknown and real
		  category)
- updated translations
- fix mousedrake (pixel)
- drakbug, drakbackup: spell/i18n fixes (pixel, me)
- xfdrake: fixes (pixel)
- new draksex (stew)
- diskdrake: (pixel)
	o fix LVM on RAID
	o explain the pb when maximal number of primary partitions is reached

* Mon Jul 29 2002 Thierry Vignaud <tvignaud@mandrakesoft.com> 1.1.8-13mdk
- harddrake:
	o service: fix config file conversion
	o harddrake::ui :
	  * s/channel/Channel/
	  * bus_id is for usb devices too
	  * remove obsolete fields info and name
	  * add nbuttons, device, old_device descriptions
- updated XFdrake (gtk resolution chooser work, i810 fixes, ...) (pixel)
- remove "Requires: groff" (nobody know why it's there) (Pixel)
- updated translations (nl/id/vi)
- standalone/logdrake: (deush)
	o don't display services that are not installed
	o word wrap string correctly
	o cleanup
- bootloader.pm: (pixel)
	o let the bootloader::mkinitrd error be seen by the GUI
	o fix dying when mkinitrd doesn't create an initrd
- interactive.pm: error messages fixes (pixel)
- diskdrake: add 0x35 partition table id meaning JFS (under OS/2)
  (thank to Mika Laitio)
- printerdrake: first step of automatic HP multi-function device
  configuration with HPOJ 0.9. (till)
- drakTermServ (stew)
	o Check for/install terminal-server and friends.
	o More intelligent error message when mkisofs fails.
	o  Cleanup code for use strict.
	o Fix crash when no backup dhcpd.conf.
- drakbackup: (stew)
	o Numerous GUI crash fixes, oddities. 
	o Install	needed packages.
	o Fix email, daemon modes.
	o Add rsync, webdav, cd, tape capabilities. 
	o Consolidate net method setup screens.
	o Add CD device capability query.

* Thu Jul 25 2002 Thierry Vignaud <tvignaud@mandrakesoft.com> 1.1.8-12mdk
- simplify harddrake service:
	o we don't need to set media_type, we don't use it
	o mouse and mass storage media use the same key, let merge their
	  code path
	o merge timeout and cancel cases

- harddrake::data : only do one probeall here (there's still many in
  detect_devices, probing caching should go there)

- harddrake:ui : 
	o add a fields data structure:
		* put together field translation and field description
		* this enable to get rid of %reverse_fields usage & creation
		* this ensure all field names & translations are marked
		  translatables for gettext
		* move $wait declaration around its usage and explicit its
            destruction
		* remove usb debugging message needed to trace the null
		  description bug i fixed in ldetect
		* simplify the device fields rendering "because of" the
            above
		* simplify the help window creation/display/destruction
		  (only one statement left)
	o explicitely call interactive->exit
	o remove all "no signal to disconnect" gtk+ warnings 


* Thu Jul 25 2002 Thierry Vignaud <tvignaud@mandrakesoft.com> 1.1.8-11mdk
- rebuild against new libldetect (fix (null) descriptions)
- new XFdrake (pixel)
- harddrake:
	o devfs names
	o scanner support;
		* don't account scanners as unknown devices
		* split scannerdrake:val into vendor and description
		* don't display bogus "val:%HASH"
- updated translations (fr, pl)
- tools can be runned on console again

* Tue Jul 23 2002 Thierry Vignaud <tvignaud@mandrakesoft.com> 1.1.8-10mdk
- harddrake :
	o remove - between vendor and model for ibm eide disks
	o network devices are configurable again now
- draksec : typo fix (deush)

* Tue Jul 23 2002 Thierry Vignaud <tvignaud@mandrakesoft.com> 1.1.8-9mdk
- harddrake :
	o don't show "cancel" button in about and help windows
	o service: convert config file from plain perl to Storable binary
	  file (faster startup)
- general reorganization cleanup:
    o move interactive_* into interactive::*
    o move partition_table_* into partition_table::*
- XFdrake: more cleanups (pixel)

* Sun Jul 21 2002 Pixel <pixel@mandrakesoft.com> 1.1.8-8mdk
- new snapshot (beware of XFdrake)

* Thu Jul 18 2002 Thierry Vignaud <tvignaud@mandrakesoft.com> 1.1.8-7mdk
- remove last draknet reference in harddrake::ui
- disable diagnostics and strict mode

* Thu Jul 18 2002 Thierry Vignaud <tvignaud@mandrakesoft.com> 1.1.8-6mdk
- able to restart WindowMaker if needed
- draknet is dead; vival el drakconnect
- devices managment:
	o no need to write /etc/sysconfig/harddrake2/previous_hw in
  	  %%post since harddrake2 service doesn't configure anything if
  	  previous config was empty
	o fix usb mac mouse detection
	o move scsi/ata controllers, burners, dvd, ... from
	  unknown/others into their own"non configurable" sections
	o fix problems with usb-interface
- XFdrake: big cleanup
- general cleanups
- translation updates

* Thu Jul 11 2002 Thierry Vignaud <tvignaud@mandrakesoft.com> 1.1.8-5mdk
- drakx :
	o code enhancement: increase coherency around the whole drakx
	  code regarding devices
	o decrease the debug verbosity
- harddrake2 :
	o i18n:
		* move $version out of translatable strings
	o ui:
		* increase default main window size
		* put back the hw tree root
		* eide devices: split info between vendor and model strings
- spec :
	o fix parrallel build
	o list and describe all gui tools from drakxtools

* Wed Jul 10 2002 Thierry Vignaud <tvignaud@mandrakesoft.com> 1.1.8-4mdk
- fix perl depandancy

* Tue Jul 09 2002 Thierry Vignaud <tvignaud@mandrakesoft.com> 1.1.8-3mdk
- harddrake2:
	o no need to 'use strict' in "binary" => remove warnings 
	o fix boot freeze on hw change: initscript was running us with
	  stdout redirected to /dev/null; just use a small sh wrapper to
	  fix it
	o harddrake::bttv: only log in standalone mode
	o display channel of eide devices 

- spec:
	o reorder entries in description
	o list all entries in first line of description
	o fix post: add start argument

* Mon Jul 08 2002 Thierry Vignaud <tvignaud@mandrakesoft.com> 1.1.8-2mdk
- spec :
  o enhance descriptions
  o various spec clean
  o harddrake :
 	* obsoletes/provides libdetect-lst, libdetect-lst-devel, detect,
	  detect-lst, kudzu-devel
	* split package between harddrake and harddrake-ui to minimize
    	  the harddrake service dependancies
	* add missing /etc/sysconfig/harddrake2
- harddrake2 :
  o cache detect_devices::probeall(1) so that hw probe is run once
  o hw configuration :
  	* eide devices: split up info field into vendor and model fields
  o ui:
	* enhanced help
	* mice:
		- s/nbuttons/Number of buttons/ 
		- delete qw(MOUSETYPE XMOUSETYPE unsafe)
	* complete help
	* center the main window
	* remove drakx decorations
	* don't display "run config tool" button if no configurator
	  availlable
  o logic:
	* skip configuration on firt run
	* don't restart harddrake on install
	* skip hw classes without configurator (which'll have a
	  configurator after porting updfstab)
  o service :
	* only do the job at startup
	* add "please wait" message
	* really don't cry when no previous config

* Mon Jul 08 2002 Thierry Vignaud <tvignaud@mandrakesoft.com> 1.1.8-1mdk
- snapshot
- new entries: 
	o harddrake2 : new hardware detection && configuration tool
	o drakbugreport: bug reporting tool a la Kde (not working!)
	o drakTermServ : configuration tool for diskless stations.
- updated programs :
	o drakxtv: if runned by root, offer to configure bttv for most tv cards
	o disdrake:
		* enhanced raid & lvm support,
		* check if programs (ie jfsprogs) are installed
		* cleanups
	o Xconfigurator: bug fix
- general : better supermout support, use new libldetect, various bug fixes

* Tue Jun 18 2002 Frederic Lepied <flepied@mandrakesoft.com> 1.1.7-99mdk
- added new draksec from Christian and a new way to build the packages (make rpm)

* Mon Apr 15 2002 Thierry Vignaud <tvignaud@mandrakesoft.com> 1.1.7-98mdk
- snapshot
- add drakxtv description
- drakxtv : now auto guess the country and the freq table

* Fri Mar 15 2002 dam's <damien@mandrakesoft.com> 1.1.7-97mdk
- snapshot. final release 1

* Tue Mar 12 2002 dam's <damien@mandrakesoft.com> 1.1.7-96mdk
- added onboot options foreach network cards
- resolv.conf and domain name bug fixed

* Tue Mar 12 2002 dam's <damien@mandrakesoft.com> 1.1.7-95mdk
- included drakproxy
- corrected various timeout (net_monitor, internet connection tests)
- snapshot

* Mon Mar 11 2002 Pixel <pixel@mandrakesoft.com> 1.1.7-94mdk
- various

* Fri Mar  8 2002 dam's <damien@mandrakesoft.com> 1.1.7-93mdk
- drakfont GUI corrected
- new drakproxy

* Fri Mar 08 2002 Franois Pons <fpons@mandrakesoft.com> 1.1.7-92mdk
- fixes for NVIDIA drivers support in XFdrake.

* Thu Mar  7 2002 dam's <damien@mandrakesoft.com> 1.1.7-91mdk
- lot of bugfixes
- (dams)
	* standalone/net_monitor: make gc happy
	* modparm.pm, share/po/fr.po: corrected
	* standalone/draknet: corrected network/internet restart when already
	connected
	* standalone/drakfont: corrected bad system command
	* standalone/drakautoinst: corrected HASH and ARRAY label
- (gc)
	* standalone/drakgw: 
	  - call net_monitor to disable internet connection before
	    network-restart
	  - user return value when status'ing the
	  initscripts rather than grepping their text output
- (pixel)
	* standalone/fileshareset (nfs_exports::update_server): ensure portmap
	is running

* Wed Mar  6 2002 Pixel <pixel@mandrakesoft.com> 1.1.7-90mdk
- corrected font in wizard (dams)
- localedrake: (pixel)
  * fix dummy entries in .i18n for chineese
  * take sysconfig/i18n into account when no .i18n
  * when called by kcontrol with --apply, don't modify kde config files,
    kcontrol takes care of it more nicely
- diskdrake: translate actions in text mode (pixel)
- drakxtv fixed (titi)

* Sun Mar  3 2002 Pixel <pixel@mandrakesoft.com> 1.1.7-89mdk
- (gtkicons_labels_widget): pass the widget instead of directly passing the font
  (for drakconf)

* Sun Mar  3 2002 Pixel <pixel@mandrakesoft.com> 1.1.7-88mdk
- (gtkicons_labels_widget): pass the style instead of directly passing the font
  (for drakconf)

* Fri Mar  1 2002 Pixel <pixel@mandrakesoft.com> 1.1.7-87mdk
- new snapshot (including a modified localedrake)

* Thu Feb 28 2002 dam's <damien@mandrakesoft.com> 1.1.7-86mdk
- corrected modinfo path. isa modules options should now work.

* Thu Feb 28 2002 dam's <damien@mandrakesoft.com> 1.1.7-85mdk
- corrected spec so that net_monitor.real get included too.

* Thu Feb 28 2002 dam's <damien@mandrakesoft.com> 1.1.7-84mdk
- snapshot

* Wed Feb 27 2002 dam's <damien@mandrakesoft.com> 1.1.7-83mdk
- snapshot

* Tue Feb 26 2002 Pixel <pixel@mandrakesoft.com> 1.1.7-82mdk
- move XFdrake to drakxtools from drakxtools-newt 
(otherwise it doesn't work, since it needs perl-GTK & xtest)

* Tue Feb 26 2002 dam's <damien@mandrakesoft.com> 1.1.7-81mdk
- added groff require

* Tue Feb 26 2002 dam's <damien@mandrakesoft.com> 1.1.7-80mdk
- isa card modules correction. Should work in post install
- drakfont correction

* Sat Feb 23 2002 Pixel <pixel@mandrakesoft.com> 1.1.7-79mdk
- require latest perl-MDK-Common
- corrected icon paths (thanks to garrick)
- don't create devices when /dev is devfs mounted (thanks to Andrej Borsenkow)

* Fri Feb 22 2002 dam's <damien@mandrakesoft.com> 1.1.7-78mdk
- corrected icon paths

* Thu Feb 21 2002 Guillaume Cottenceau <gc@mandrakesoft.com> 1.1.7-77mdk
- now we can live without kdesu ; and drakxtools-newt only requires
  usermode-consoleonly

* Tue Feb 19 2002 Pixel <pixel@mandrakesoft.com> 1.1.7-76mdk
- fix diskdrake --nfs & --smb

* Tue Feb 19 2002 dam's <damien@mandrakesoft.com> 1.1.7-75mdk
- required specific version of perl MDK Common

* Tue Feb 19 2002 dam's <damien@mandrakesoft.com> 1.1.7-74mdk
- various things not described by the last packager
- new png/wpm search policy in my_gtk

* Mon Feb 18 2002 Pixel <pixel@mandrakesoft.com> 1.1.7-73mdk
- snapshot

* Sat Feb 16 2002 Pixel <pixel@mandrakesoft.com> 1.1.7-72mdk
- localedrake now handles KDE
- diskdrake now handles XFS on LVM live resizing (growing only)

* Fri Feb 15 2002 dam's <damien@mandrakesoft.com> 1.1.7-71mdk
- snapshot

* Thu Feb 14 2002 dam's <damien@mandrakesoft.com> 1.1.7-70mdk
- snapshot

* Mon Feb 11 2002 dam's <damien@mandrakesoft.com> 1.1.7-69mdk
- fixed bad stuff.so in drakxtools

* Fri Feb  8 2002 dam's <damien@mandrakesoft.com> 1.1.7-68mdk
- new gfx
- various fix
- major printerdrake updates

* Thu Feb 07 2002 Thierry Vignaud <tvignaud@mandrakesoft.com> 1.1.7-67mdk
- add drakxtv

* Thu Feb  7 2002 dam's <damien@mandrakesoft.com> 1.1.7-66mdk
- new package, various wizard, mygtk, disdrake improvment.

* Wed Feb  6 2002 dam's <damien@mandrakesoft.com> 1.1.7-65mdk
- logdrake updates
- wizard fix

* Tue Jan 29 2002 dam's <damien@mandrakesoft.com> 1.1.7-64mdk
- last mygtk, drakbackup...
- disdrake fixed
- snapshot

* Sun Jan 27 2002 Pixel <pixel@mandrakesoft.com> 1.1.7-63mdk
- cleanup drakxtools-newt (move all gtk stuff to drakxtools)
- reworked and split diskdrake
- add logdrake

* Fri Jan 25 2002 dam's <damien@mandrakesoft.com> 1.1.7-62mdk
- bug corrections, improvements
- new advertising engine
- new gtkicons_labels_widget

* Tue Jan 22 2002 dam's <damien@mandrakesoft.com> 1.1.7-61mdk
- new gtkicons_labels_widget for new mcc.

* Fri Jan 18 2002 Guillaume Cottenceau <gc@mandrakesoft.com> 1.1.7-60mdk
- first support for 'Explanations'

* Fri Jan 18 2002 Sebastien Dupont <sdupont@mandrakesoft.com>  1.1.7-59mdk
- Drakbackup without unstable options for qa. 
- DrakFont update warning message (qa).

* Wed Jan 16 2002 Pixel <pixel@mandrakesoft.com> 1.1.7-58mdk
- ensure lsnetdrake is included

* Tue Jan 15 2002 Sebastien Dupont <sdupont@mandrakesoft.com>  1.1.7-57mdk
- Drakbackup daemon, backend mode (-show-conf -daemon -debug -help -version) and report mail corrections.
- DrakFont gi and progress bar problems.

* Tue Jan 14 2002 Sebastien Dupont <sdupont@mandrakesoft.com>  1.1.7-56mdk
- New drakbackup version, ftp backup work, new pixmaps.
- DrakFont with new pixmaps. 

* Mon Jan 14 2002 Stefan van der Eijk <stefan@eijk.nu> 1.1.7-55mdk
- BuildRequires

* Fri Jan 11 2002 dam's <damien@mandrakesoft.com> 1.1.7-54mdk
- snapshot

* Wed Jan  9 2002 dam's <damien@mandrakesoft.com> 1.1.7-53mdk
- snapshot
- new code in my_gtk

* Tue Jan  8 2002 Sebastien Dupont <sdupont@mandrakesoft.com>  1.1.7-52mdk
- New drakbackup version, incremental backup and restore should work. 

* Sat Dec 22 2001 Sebastien Dupont <sdupont@mandrakesoft.com> 1.1.7-51mdk
- fix  conflicts in drakbackup cvs version.

* Sat Dec 22 2001 Sebastien Dupont <sdupont@mandrakesoft.com> 1.1.7-50mdk
- new drakbackup version.

* Mon Dec 10 2001 Sebastien Dupont <sdupont@mandrakesoft.com> 1.1.7-49mdk
- fix drakfont path problem.
- new version of drakbakup

* Wed Dec  5 2001 dam's <damien@mandrakesoft.com> 1.1.7-48mdk
- corrected syntax error

* Tue Dec  4 2001 dam's <damien@mandrakesoft.com> 1.1.7-47mdk
- avoid network test freeze
- added drackbackup
- snapshot

* Fri Nov 30 2001 Pixel <pixel@mandrakesoft.com> 1.1.7-46mdk
- add diskdrake --fileshare

* Thu Nov 29 2001 Pixel <pixel@mandrakesoft.com> 1.1.7-45mdk
- new diskdrake including fileshareset/filesharelist stuff

* Mon Nov 26 2001 Pixel <pixel@mandrakesoft.com> 1.1.7-44mdk
- use the CVS, not my devel (instable) version

* Fri Nov 23 2001 Pixel <pixel@mandrakesoft.com> 1.1.7-43mdk
- any.pm fixed

* Mon Nov 19 2001 Yves Duret <yduret@mandrakesoft.com> 1.1.7-42mdk
- scannerdrake update to add dynamic support

* Mon Nov 12 2001 Yves Duret <yduret@mandrakesoft.com> 1.1.7-41mdk
- scannerdrake update with new fat ScannerDB

* Mon Nov  5 2001 dam's <damien@mandrakesoft.com> 1.1.7-40mdk
- corrected typo in drakautoinst

* Fri Nov  2 2001 dam's <damien@mandrakesoft.com> 1.1.7-39mdk
- release

* Fri Oct 26 2001 dam's <damien@mandrakesoft.com> 1.1.7-38mdk
- drakautoinst & drakfont updated

* Thu Oct 25 2001 dam's <damien@mandrakesoft.com> 1.1.7-37mdk
- big improvement on drakautoinst
- draknet : connection script updated 

* Thu Oct 18 2001 dam's <damien@mandrakesoft.com> 1.1.7-36mdk
- draknet/net_monitor corrected
- corrected bad stuff.so

* Tue Oct 16 2001 dam's <damien@mandrakesoft.com> 1.1.7-35mdk
- make rplint happier

* Wed Oct 10 2001 Yves Duret <yduret@mandrakesoft.com> 1.1.7-34mdk
- snapshot with scanner stuff

* Mon Sep 24 2001 dam's <damien@mandrakesoft.com> 1.1.7-33mdk
- snapshot

* Mon Sep 24 2001 dam's <damien@mandrakesoft.com> 1.1.7-32mdk
- Last translations.

* Mon Sep 24 2001 dam's <damien@mandrakesoft.com> 1.1.7-31mdk
- snapshot. draknet bugfix.

* Sun Sep 23 2001 dam's <damien@mandrakesoft.com> 1.1.7-30mdk
- snapshot. Included last printer and draknet corrections.

* Fri Sep 21 2001 dam's <damien@mandrakesoft.com> 1.1.7-29mdk
- typo in adsl.pm, Xconfigurator fix.

* Thu Sep 20 2001 dam's <damien@mandrakesoft.com> 1.1.7-28mdk
- snapshot. draknet works now. 

* Wed Sep 19 2001 dam's <damien@mandrakesoft.com> 1.1.7-27mdk
- snapshot

* Mon Sep 17 2001 Pixel <pixel@mandrakesoft.com> 1.1.7-26mdk
- snapshot

* Mon Sep 17 2001 Pixel <pixel@mandrakesoft.com> 1.1.7-25mdk
- snapshot

* Sat Sep 15 2001 dam's <damien@mandrakesoft.com> 1.1.7-24mdk
- snapshot with printer, draknet & install fixes

* Fri Sep 14 2001 Franois Pons <fpons@mandrakesoft.com> 1.1.7-23mdk
- snapshot with latest XFdrake fixes.

* Fri Sep 14 2001 dam's <damien@mandrakesoft.com> 1.1.7-22mdk
- snapshot

* Thu Sep 13 2001 Franois Pons <fpons@mandrakesoft.com> 1.1.7-21mdk
- fix Xinerama for Matrox cards (restore XFree86 4.1.0 without DRI).
- removed Modeline 1024x768 in 97.6 Hz which troubles XF4 a lot.

* Thu Sep 13 2001 Franois Pons <fpons@mandrakesoft.com> 1.1.7-20mdk
- snapshot with XFdrake fixes (G550 support, no DRI with Xinerama,
  no XFree86 3.3.6 proposed wiht dual head).

* Wed Sep 12 2001 dam's <damien@mandrakesoft.com> 1.1.7-19mdk
- snapshot

* Wed Sep 12 2001 dam's <damien@mandrakesoft.com> 1.1.7-18mdk
- snapshot.

* Mon Sep 10 2001 Guillaume Cottenceau <gc@mandrakesoft.com> 1.1.7-17mdk
- remove dependency on "perl" since pixel added Data::Dumper in perl-base

* Mon Sep 10 2001 dam's <damien@mandrakesoft.com> 1.1.7-16mdk
- new snapshot, bug corrections.

* Thu Sep  6 2001 Guillaume Cottenceau <gc@mandrakesoft.com> 1.1.7-15mdk
- drakgw should be working now

* Tue Sep 04 2001 Yves Duret <yduret@mandrakesoft.com> 1.1.7-14mdk
- snaphsot, better interaction with mcc (diskdrake printerdrake).

* Tue Sep  4 2001 dam's <damien@mandrakesoft.com> 1.1.7-13mdk
- snapshot.

* Thu Aug 30 2001 dam's <damien@mandrakesoft.com> 1.1.7-12mdk
- snapshot. locales corected, nicer wizards.

* Thu Aug 30 2001 Franois Pons <fpons@mandrakesoft.com> 1.1.7-11mdk
- new snapshot, mousedrake fixes again.

* Wed Aug 29 2001 Franois Pons <fpons@mandrakesoft.com> 1.1.7-10mdk
- new snapshot, mousedrake fixes.

* Fri Aug 24 2001 dam's <damien@mandrakesoft.com> 1.1.7-9mdk
- snapshot for 8.1 beta2.

* Fri Aug 24 2001 dam's <damien@mandrakesoft.com> 1.1.7-8mdk
- bugfix.
- new snapshot. mousedrake experimental.

* Thu Aug 23 2001 Yves Duret <yduret@mandrakesoft.com> 1.1.7-7mdk
- fix drakboot bug
- macros to fix some rpmlint warnings

* Wed Aug 22 2001 Guillaume Cottenceau <gc@mandrakesoft.com> 1.1.7-6mdk
- put a require on "perl" which is needed for Data::Dumper in drakautoinst

* Wed Aug 22 2001 dam's <damien@mandrakesoft.com> 1.1.7-5mdk
- snapshot. draknet improvments, bug fixes.

* Mon Aug 20 2001 Pixel <pixel@mandrakesoft.com> 1.1.7-4mdk
- new fstab munching code

* Sat Aug 18 2001 Pixel <pixel@mandrakesoft.com> 1.1.7-3mdk
- new diskdrake (with interactive version => newt)
- drakxtools-http fix

* Tue Aug 14 2001 dam's <damien@mandrakesoft.com> 1.1.7-2mdk
- added doc (it's a shame...)

* Tue Aug 14 2001 Guillaume Cottenceau <gc@mandrakesoft.com> 1.1.7-1mdk
- add drakautoinst

* Mon Aug 13 2001 dam's <damien@mandrakesoft.com> 1.1.6-3mdk
- snapshot

* Tue Aug  7 2001 dam's <damien@mandrakesoft.com> 1.1.6-2mdk
- added draknet_splash pixmap

* Tue Aug  7 2001 Pixel <pixel@mandrakesoft.com> 1.1.6-1mdk
- add drakxtools_http

* Fri Aug  3 2001 dam's <damien@mandrakesoft.com> 1.1.5-106mdk
- added network/*.pm

* Tue Jul 31 2001 Pixel <pixel@mandrakesoft.com> 1.1.5-105mdk
- add require perl-MDK-Common
- fix for cp -rf (fuck FreeBSD (c))

* Tue Jul 31 2001 Pixel <pixel@mandrakesoft.com> 1.1.5-104mdk
- fix my error: %%files with 2 times "-f <file>" doesn't work :-(

* Mon Jul 30 2001 dam's <damien@mandrakesoft.com> 1.1.5-103mdk
- updated with cooker install.
- added require on XFree86-75dpi-fonts
- merged with pixel specfile to handle mo.

* Mon May  7 2001 Yves Duret <yduret@mandrakesoft.com> 1.1.5-102mdk
- updated bootloader.pm according to new lilo package (lilo-{menu,graphic,text})

* Wed Apr 25 2001 Franois Pons <fpons@mandrakesoft.com> 1.1.5-101mdk
- updated with oem update for DrakX.
- minor bug correction on printerdrake.
- added minor features to XFdrake.

* Wed Apr 18 2001 dam's <damien@mandrakesoft.com> 1.1.5-100mdk
- added require on usermode.
- added source 2 and 3.
- snapshot. netconnect corrections. final package

* Tue Apr 17 2001 dam's <damien@mandrakesoft.com> 1.1.5-99mdk
- snapshot. mousedrake corrected. RC6

* Tue Apr 17 2001 dam's <damien@mandrakesoft.com> 1.1.5-98mdk
- snapshot. autologin corrected. RC5

* Tue Apr 17 2001 dam's <damien@mandrakesoft.com> 1.1.5-97mdk
- snapshot. RC4

* Tue Apr 17 2001 dam's <damien@mandrakesoft.com> 1.1.5-96mdk
- snapshot. RC3

* Mon Apr 16 2001 dam's <damien@mandrakesoft.com> 1.1.5-95mdk
- snapshot. RC2

* Mon Apr 16 2001 dam's <damien@mandrakesoft.com> 1.1.5-94mdk
- snapshot. RC

* Mon Apr 16 2001 dam's <damien@mandrakesoft.com> 1.1.5-93mdk
- draknet and tinyfirewall fixes

* Sun Apr 15 2001 Yves Duret <yduret@mandrakesoft.com> 1.1.5-92mdk
- bootlook fix & layout

* Fri Apr 13 2001 dam's <damien@mandrakesoft.com> 1.1.5-91mdk
- snapshot

* Fri Apr 13 2001 dam's <damien@mandrakesoft.com> 1.1.5-90mdk
- snapshot

* Thu Apr 12 2001 Pixel <pixel@mandrakesoft.com> 1.1.5-89mdk
- snapshot

* Thu Apr 12 2001 dam's <damien@mandrakesoft.com> 1.1.5-88mdk
- snapshot. pcmcia network corrected

* Thu Apr 12 2001 dam's <damien@mandrakesoft.com> 1.1.5-87mdk
- snapshot. Better network configuration

* Thu Apr 12 2001 dam's <damien@mandrakesoft.com> 1.1.5-86mdk
- snapshot.

* Wed Apr 11 2001 Franois Pons <fpons@mandrakesoft.com> 1.1.5-85mdk
- really fix printerdrake and snap.

* Wed Apr 11 2001 Franois Pons <fpons@mandrakesoft.com> 1.1.5-84mdk
- fix printerdrake and snap.

* Tue Apr 10 2001 dam's <damien@mandrakesoft.com> 1.1.5-83mdk
- bug correction.

* Mon Apr  9 2001 Yves Duret <yduret@mandrakesoft.com> 1.1.5-82mdk
- snap as always

* Mon Apr  9 2001 Yves Duret <yduret@mandrakesoft.com> 1.1.5-81mdk
- snaphshot again and again

* Mon Apr  9 2001 dam's <damien@mandrakesoft.com> 1.1.5-80mdk
- snapshot. bug fix

* Sun Apr  8 2001 dam's <damien@mandrakesoft.com> 1.1.5-79mdk
- snapshot. bug fix.

* Sun Apr  8 2001 dam's <damien@mandrakesoft.com> 1.1.5-78mdk
- added require on XFree86-100dpi-fonts
- various debugging
- new tinyfirewall

* Sun Apr  8 2001 dam's <damien@mandrakesoft.com> 1.1.5-77mdk
- snapshot
- net_monitor added.

* Fri Apr  6 2001 dam's <damien@mandrakesoft.com> 1.1.5-76mdk
- corrected compilation error.

* Fri Apr  6 2001 yves <yduret@mandrakesoft.com> 1.1.5-75mdk
- snapshot : drakgw updated, boot config fix

* Thu Apr  5 2001 dam's <damien@mandrakesoft.com> 1.1.5-74mdk
- snapshot.

* Mon Apr  2 2001 dam's <damien@mandrakesoft.com> 1.1.5-73mdk
- snapshot.

* Mon Apr  2 2001 dam's <damien@mandrakesoft.com> 1.1.5-72mdk
- snapshot, typo fixs.

* Fri Mar 30 2001 Yves Duret <yduret@mandrakesoft.com> 1.1.5-71mdk
- snapshot & fixes

* Fri Mar 30 2001 Yves Duret <yduret@mandrakesoft.com> 1.1.5-70mdk
- snapshot : boot coonfig updated

* Thu Mar 29 2001 dam's <damien@mandrakesoft.com> 1.1.5-69mdk
- snapshot

* Thu Mar 29 2001 dam's <damien@mandrakesoft.com> 1.1.5-68mdk
- snapshot.

* Thu Mar 29 2001 Pixel <pixel@mandrakesoft.com> 1.1.5-67mdk
- new snapshot (XFdrake should be working)

* Wed Mar 28 2001 dam's <damien@mandrakesoft.com> 1.1.5-66mdk
- corrected tinyfirewall last step

* Wed Mar 28 2001 Franois Pons <fpons@mandrakesoft.com> 1.1.5-65mdk
- fixed wrong generation of second mouse support

* Wed Mar 28 2001 Franois Pons <fpons@mandrakesoft.com> 1.1.5-64mdk
- fixed multi-mouse support for XF3
- fixed XFdrake (read old config file before so probe overwrite)

* Wed Mar 28 2001 dam's <damien@mandrakesoft.com> 1.1.5-63mdk
- added draksec embedded mode
- corrected tinyfirewall for 2.4 kernels
- corrected bad translations in draknet

* Tue Mar 27 2001 dam's <damien@mandrakesoft.com> 1.1.5-62mdk
- idem.

* Sat Mar 24 2001 dam's <damien@mandrakesoft.com> 1.1.5-61mdk
- corrected tinyfirewall

* Fri Mar 23 2001 dam's <damien@mandrakesoft.com> 1.1.5-60mdk
- snapshot
- corrected require.

* Fri Mar 23 2001 dam's <damien@mandrakesoft.com> 1.1.5-59mdk
- added ldetect in require.
- tinyfirewall included.

* Thu Mar 22 2001 Yves Duret <yduret@mandrakesoft.com> 1.1.5-58mdk
- updated drakboot, new snapshot

* Thu Mar 22 2001 dam's <damien@mandrakesoft.com> 1.1.5-57mdk
- draknet without mail conf, new snapshot.

* Thu Mar 22 2001 Pixel <pixel@mandrakesoft.com> 1.1.5-56mdk
- new version that will work with perl-base (at least XFdrake)

* Thu Mar 22 2001 Pixel <pixel@mandrakesoft.com> 1.1.5-55mdk
- require perl-base not perl, it should be enough

* Thu Mar 22 2001 dam's <damien@mandrakesoft.com> 1.1.5-54mdk
- first release with tinyfirewall. Not stable.
- corrected gmon pb, I suck.

* Tue Mar 20 2001 dam's <damien@mandrakesoft.com> 1.1.5-53mdk
- corrected bad links.

* Tue Mar 20 2001 dam's <damien@mandrakesoft.com> 1.1.5-52mdk
- no crash anymore.

* Tue Mar 20 2001 dam's <damien@mandrakesoft.com> 1.1.5-51mdk
- updated draknet. new snapshot.

* Wed Mar 14 2001 dam's <damien@mandrakesoft.com> 1.1.5-50mdk
- some minor label improvements.

* Tue Mar 13 2001 Yves Duret <yduret@mandrakesoft.com> 1.1.5-49mdk
- updated bootlook
- macros

* Mon Mar 12 2001 dam's <damien@mandrakesoft.com> 1.1.5-48mdk
- correted wizard pixmaps name

* Mon Mar 12 2001 dam's <damien@mandrakesoft.com> 1.1.5-47mdk
- new and shinny drakxservices

* Tue Mar  6 2001 dam's <damien@mandrakesoft.com> 1.1.5-46mdk
- XFdrake works + other improvements

* Thu Mar  1 2001 dam's <damien@mandrakesoft.com> 1.1.5-45mdk
- updated embedded mode.

* Wed Feb 28 2001 dam's <damien@mandrakesoft.com> 1.1.5-44mdk
- XFdrake : new look.
- draknet : some corrections.
- install : some improvements

* Mon Feb 26 2001 dam's <damien@mandrakesoft.com> 1.1.5-43mdk
- corrected draknet, and some other stuff

* Mon Feb 26 2001 dam's <damien@mandrakesoft.com> 1.1.5-42mdk
- new draknet, with wizard and profiles.
- drakboot short-circuited.
- new pixmaps policy.

* Fri Feb 23 2001 Pixel <pixel@mandrakesoft.com> 1.1.5-41mdk
- require perl-GTK-GdkImlib, fix XFdrake and draknet with no perl-GTK

* Fri Feb 23 2001 Pixel <pixel@mandrakesoft.com> 1.1.5-40mdk
- split in drakxtools and drakxtools-newt

* Thu Feb  8 2001 dam's <damien@mandrakesoft.com> 1.1.5-39mdk
- install() and SHAR_PATH bug fixed in standalone.pm

* Thu Feb  8 2001 dam's <damien@mandrakesoft.com> 1.1.5-38mdk
- bug fix.

* Thu Feb  8 2001 dam's <damien@mandrakesoft.com> 1.1.5-37mdk
- bug correction inclusion.

* Wed Feb  7 2001 dam's <damien@mandrakesoft.com> 1.1.5-36mdk
- snapshot. Included embedded mode (for control-center), and wizard mode.

* Mon Dec 18 2000 Pixel <pixel@mandrakesoft.com> 1.1.5-35mdk
- new version (lspcidrake not here anymore, requires ldetect-lst => don't
include pcitable/... anymore)


* Tue Nov 14 2000 Pixel <pixel@mandrakesoft.com> 1.1.5-34mdk
- snapshot
- get rid of the rpmlib dependency

* Sat Oct 21 2000 dam's <damien@mandrakesoft.com> 1.1.5-33mdk
- RC1_fixed tagged cvs version.
- Video cards handling enhanced
- isa isdn-cards and non detected isdn pci-cards spported.

* Thu Oct 19 2000 dam's <damien@mandrakesoft.com> 1.1.5-32mdk
- snapshot.

* Mon Oct  9 2000 dam's <damien@mandrakesoft.com> 1.1.5-31mdk
- snapshot.

* Fri Oct  6 2000 dam's <damien@mandrakesoft.com> 1.1.5-30mdk
- snapshot.

* Fri Oct  6 2000 dam's <damien@mandrakesoft.com> 1.1.5-29.1mdk
- snapshot. not fully stable.

* Thu Oct  5 2000 dam's <damien@mandrakesoft.com> 1.1.5-29mdk
- snapshot.

* Thu Oct 05 2000 Franois Pons <fpons@mandrakesoft.com> 1.1.5-28mdk
- snapshot.

* Tue Oct 03 2000 Franois Pons <fpons@mandrakesoft.com> 1.1.5-27mdk
- snapshot.

* Sun Oct  1 2000 dam's <damien@mandrakesoft.com> 1.1.5-26mdk
- snapshot.

* Sat Sep 30 2000 dam's <damien@mandrakesoft.com> 1.1.5-25mdk
- snapshot.

* Sat Sep 30 2000 dam's <damien@mandrakesoft.com> 1.1.5-24mdk
- snapshot. draknet frozen.

* Fri Sep 29 2000 dam's <damien@mandrakesoft.com> 1.1.5-23mdk
- snapshot.

* Thu Sep 28 2000 dam's <damien@mandrakesoft.com> 1.1.5-22mdk
- modified spec.
- snapshot
- liveupdate

* Wed Sep 27 2000 Pixel <pixel@mandrakesoft.com> 1.1.5-21mdk
- snapshot

* Tue Sep 26 2000 dam's <damien@mandrakesoft.com> 1.1.5-20mdk
- snapshot

* Mon Sep 25 2000 dam's <damien@mandrakesoft.com> 1.1.5-19mdk
- snapshot.

* Fri Sep 22 2000 Guillaume Cottenceau <gc@mandrakesoft.com> 1.1.5-18mdk
- new snapshot
- remove BuildRequires kudzu-devel, I suck bigtime..

* Thu Sep 21 2000 Guillaume Cottenceau <gc@mandrakesoft.com> 1.1.5-17mdk
- new snapshot
- BuildRequires kudzu-devel since ddcprobe/ddcxinfos.c uses /usr/include/vbe.h

* Wed Sep 20 2000 dam's <damien@mandrakesoft.com> 1.1.5-16mdk
- cvs snapshot. See changelog file

* Wed Sep 20 2000 dam's <damien@mandrakesoft.com> 1.1.5-15mdk
- cvs snapshot. See changelog file

* Fri Sep 15 2000 dam's <damien@mandrakesoft.com> 1.1.5-14mdk
- cvs snapshot.
- draknet : better dsl configuration.

* Thu Sep 14 2000 dam's <damien@mandrakesoft.com> 1.1.5-13mdk
- cvs snapshot.
- draknet : wizard mode. isdn_db.txt moved to /usr/share. No makedev.sh any more

* Mon Sep 11 2000 Pixel <pixel@mandrakesoft.com> 1.1.5-12mdk
- add handling for gnome and kde2 in Xdrakres

* Thu Sep  7 2000 dam's <damien@mandrakesoft.com> 1.1.5-11mdk
- corrected draknet launch error.

* Thu Sep  7 2000 dam's <damien@mandrakesoft.com> 1.1.5-10mdk
- ISDN connection should work. test it!

* Tue Sep  5 2000 Pixel <pixel@mandrakesoft.com> 1.1.5-9mdk
- setAutologin fixed in XFdrake

* Tue Sep  5 2000 Pixel <pixel@mandrakesoft.com> 1.1.5-8mdk
- adduserdrake fixed

* Sat Sep  2 2000 Pixel <pixel@mandrakesoft.com> 1.1.5-7mdk
- fix some typos in standalone/keyboarddrake
- add require perl

* Sat Sep  2 2000 Pixel <pixel@mandrakesoft.com> 1.1.5-6mdk
- add %%lang tags

* Tue Aug 29 2000 dam's <damien@mandrakesoft.com> 1.1.5-5mdk
- draknet : isa cards better recognized.

* Mon Aug 28 2000 dam's <damien@mandrakesoft.com> 1.1.5-4mdk
- corrected draknet. Please test it!

* Sun Aug 27 2000 dam's <damien@mandrakesoft.com> 1.1.5-3mdk
- Added draknet in standalone

* Fri Aug 18 2000 Guillaume Cottenceau <gc@mandrakesoft.com> 1.1.5-2mdk
- add requires to modutils >= 2.3.11 because drakgw is reading
  /etc/modules.conf which has been introduced in 2.3.11

* Fri Aug 18 2000 Guillaume Cottenceau <gc@mandrakesoft.com> 1.1.5-1mdk
- added `drakgw' in standalone (Internet Connection Sharing tool)

* Fri Aug 11 2000 Pixel <pixel@mandrakesoft.com> 1.1.4-3mdk
- new snapshot

* Thu Aug 10 2000 Pixel <pixel@mandrakesoft.com> 1.1.4-2mdk
- add noreplace for diskdrake.rc

* Thu Aug 10 2000 Pixel <pixel@mandrakesoft.com> 1.1.4-1mdk
- new snapshot

* Mon Aug 07 2000 Frederic Lepied <flepied@mandrakesoft.com> 1.1.3-2mdk
- automatically added BuildRequires

* Fri Jul 21 2000 Pixel <pixel@mandrakesoft.com> 1.1.3-1mdk
- new version, BM

* Wed Jul 05 2000 Thierry Vignaud <tvignaud@mandrakesoft.com> 1.1.2-2mdk
- build against new libbz2

* Mon Jun 26 2000 Pixel <pixel@mandrakesoft.com> 1.1.2-1mdk
- new version

* Tue Jun 13 2000 Pixel <pixel@mandrakesoft.com> 1.1.1-13mdk
- hopefully fix XFdrake and DDR nvidia cards (silly xfree that is)

* Mon Jun  5 2000 Pixel <pixel@mandrakesoft.com> 1.1.1-12mdk
- fix sbus missing

* Sat Jun  3 2000 Pixel <pixel@mandrakesoft.com> 1.1.1-10mdk
- fix draksec calling init.sh instead of msec

* Thu May 25 2000 Chmouel Boudjnah <chmouel@mandrakesoft.com> 1.1.1-9mdk
- Don't display x86 stuff on drakboot when we are on others arch.

* Thu May 25 2000 Franois Pons <fpons@mandrakesoft.com> 1.1.1-8mdk
- update with first version for sparc and sparc64.
- fix for printer configuration for SAMBA and NCP (security issue).

* Tue May  9 2000 Pixel <pixel@mandrakesoft.com> 1.1.1-7mdk
- many small fixes (bis)

* Tue May  2 2000 Pixel <pixel@mandrakesoft.com> 1.1.1-6mdk
- many small fixes

* Wed Apr 26 2000 Pixel <pixel@mandrakesoft.com> 1.1.1-5mdk
- new version (fix in adduserdrake, enhance interactive_newt)

* Wed Apr 19 2000 Pixel <pixel@mandrakesoft.com> 1.1.1-4mdk
- llseek works, not lseek64 :(  (need more testing)

* Wed Apr 19 2000 Franois Pons <fpons@mandrakesoft.com> 1.1.1-3mdk
- updated with CVS of DrakX.

* Fri Mar 31 2000 Pixel <pixel@mandrakesoft.com> 1.1.1-2mdk
- obsoletes setuptool, link setuptool to drakxconf

* Fri Mar 31 2000 Pixel <pixel@mandrakesoft.com> 1.1.1-1mdk
- new version (added drakboot for lilo/grub, XFdrake -xf4 for XFree4)

* Sat Mar 25 2000 Pixel <pixel@mandrakesoft.com> 1.1-1mdk
- new group
- new version

* Wed Jan 12 2000 Franois PONS <fpons@mandrakesoft.com>
- complete update with DrakX, small fixe on printerdrake again.

* Wed Jan 12 2000 Franois PONS <fpons@mandrakesoft.com>
- corrected missing generic postscript and text driver for
  printderdrake.

* Wed Jan 12 2000 Franois PONS <fpons@mandrakesoft.com>
- corrected bad resolution setting in printerdrake.

* Wed Jan 12 2000 Franois PONS <fpons@mandrakesoft.com>
- fixed print on STDOUT in printerdrake.
- corrected printerdrake against not available drivers in gs.

* Mon Jan 10 2000 Pixel <pixel@mandrakesoft.com>
- new version (bis)
- printerdrake install rhs-printfilters via urpmi if needed

* Fri Jan 07 2000 Franois PONS <fpons@mandrakesoft.com>
- updated XFdrake and PrinterDrake.

* Fri Jan  7 2000 Pixel <pixel@mandrakesoft.com>
- fixed a bug causing no i18n for rpmdrake
- add require urpmi

* Thu Jan  6 2000 Pixel <pixel@mandrakesoft.com>
- fix an error case in XFdrake

* Tue Jan  4 2000 Pixel <pixel@mandrakesoft.com>
- adduserdrake accept user names on command line
- minor fixes

* Fri Dec 31 1999 Pixel <pixel@mandrakesoft.com>
- 32mdk

* Wed Dec 29 1999 Pixel <pixel@mandrakesoft.com>
- make rpmlint happier
- minor fixes

* Mon Dec 27 1999 Pixel <pixel@mandrakesoft.com>
- better XFdrake and minor fixes

* Fri Dec 24 1999 Pixel <pixel@mandrakesoft.com>
- new version (better adduserdrake and more)
- add /usr/bin/* (for lspcidrake)

* Wed Dec 22 1999 Pixel <pixel@mandrakesoft.com>
- do not try display :0 if DISPLAY is unset

* Mon Dec 20 1999 Pixel <pixel@mandrakesoft.com>
- fixed a bug in drakxservices
- XFdrake now install XFree86 and XFree86-75dpi-fonts if needed
- XFdrake now calls /etc/rc.d/init.d/xfs start if needed
- minor fix

* Sat Dec 18 1999 Pixel <pixel@mandrakesoft.com>
- added kpackage's icons for rpmdrake

* Thu Dec 16 1999 Pixel <pixel@mandrakesoft.com>
- bzip2 .po's
- mount /proc in XFdrake to avoid freeze when called by kudzu
- added Xdrakres

* Thu Dec 16 1999 Chmouel Boudjnah <chmouel@mandrakesoft.com>
- Remove the netdrake ghost.

* Thu Dec 16 1999 Pixel <pixel@mandrakesoft.com>
- fix draksec
- many changes in libDrakX

* Sat Dec 11 1999 Pixel <pixel@mandrakesoft.com>
- adduserdrake added and some more

* Thu Dec  9 1999 Pixel <pixel@linux-mandrake.com>
- added drakxconf, drakxservices
- handle non root via kdesu if X
- warning go to syslog

* Wed Dec  8 1999 Chmouel Boudjnah <chmouel@mandrakesoft.com>
- Add %post and %postun to link redhat tools to our tools.
- Obsoletes: Xconfigurator mouseconfig kbdconfig printtool
- A lots of changes/fix.

* Thu Dec  2 1999 Pixel <pixel@linux-mandrake.com>
- keyboarddrake added, and many changes
- fixed typos

* Fri Nov 26 1999 Pixel <pixel@linux-mandrake.com>
- new version (printerdrake) (did i say lspcidrake was there too?)

* Wed Nov 24 1999 Pixel <pixel@linux-mandrake.com>
- new version
- fixed *.o bundled in the %source

* Sun Nov 21 1999 Pixel <pixel@mandrakesoft.com>
- removed %config for diskdrake.rc (should i?)
- removed xtest from the requires
- added %config for diskdrake.rc (should i?)
- strip .so and ddcxinfos (nice rpmlint :)

* Sat Nov 20 1999 Pixel <pixel@mandrakesoft.com>
- added MonitorsDB to %files (silly me:-!)

* Thu Nov 18 1999 Pixel <pixel@mandrakesoft.com>
- precised the required version for perl-GTK

* Thu Nov 18 1999 Pixel <pixel@mandrakesoft.com>
- First version


# end of file
o configure the network, or to do it later, in which case\n"
+"clicking the \"Cancel\" button will take you to the next step.\n"
"\n"
-"Because hardware detection does not always detect a piece of hardware,\n"
-"DrakX will ask you to confirm if a PCI SCSI card is present. Click \"Yes\"\n"
-"if you know that there is a SCSI card installed in your machine. You will\n"
-"be presented with a list of SCSI cards to choose from. Click \"No\" if you\n"
-"have no SCSI hardware. If you are unsure, you can check the list of\n"
-"hardware detected in your machine by selecting \"See hardware info\" and\n"
-"clicking \"OK\". Examine the hardware list and then click on the \"OK\"\n"
-"button to return to the SCSI interface question.\n"
+"When configuring your network, the available connections options are:\n"
+"traditional modem, ISDN modem, ADSL connection, cable modem, and finally a\n"
+"simple LAN connection (Ethernet).\n"
"\n"
-"If you have to manually specify your adapter, DrakX will ask if you want to\n"
-"specify options for it. You should allow DrakX to probe the hardware for\n"
-"the card-specific options which the hardware needs to initialize. This\n"
-"usually works well.\n"
+"We will not detail each configuration option - just make sure that you have\n"
+"all the parameters, such as IP address, default gateway, DNS servers, etc.\n"
+"from your Internet Service Provider or system administrator.\n"
"\n"
-"If DrakX is not able to probe for the options which need to be passed, you\n"
-"will need to manually provide options to the driver."
+"You can consult the ``Starter Guide'' chapter about Internet connections\n"
+"for details about the configuration, or simply wait until your system is\n"
+"installed and use the program described there to configure your connection."
msgstr ""
-#: ../../help.pm_.c:781
+#: ../../help.pm:1
+#, c-format
msgid ""
-"You can add additional entries for yaboot, either for other operating\n"
-"systems, alternate kernels, or for an emergency boot image.\n"
+"If you told the installer that you wanted to individually select packages,\n"
+"it will present a tree containing all packages classified by groups and\n"
+"subgroups. While browsing the tree, you can select entire groups,\n"
+"subgroups, or individual packages.\n"
"\n"
-"For other OSes, the entry consists only of a label and the \"root\"\n"
-"partition.\n"
+"Whenever you select a package on the tree, a description appears on the\n"
+"right to let you know the purpose of the package.\n"
+"\n"
+"!! If a server package has been selected, either because you specifically\n"
+"chose the individual package or because it was part of a group of packages,\n"
+"you will be asked to confirm that you really want those servers to be\n"
+"installed. By default Mandrake Linux will automatically start any installed\n"
+"services at boot time. Even if they are safe and have no known issues at\n"
+"the time the distribution was shipped, it is entirely possible that that\n"
+"security holes are discovered after this version of Mandrake Linux was\n"
+"finalized. If you do not know what a particular service is supposed to do\n"
+"or why it is being installed, then click \"No\". Clicking \"Yes \" will\n"
+"install the listed services and they will be started automatically by\n"
+"default during boot. !!\n"
"\n"
-"For Linux, there are a few possible options:\n"
+"The \"Automatic dependencies\" option is used to disable the warning dialog\n"
+"which appears whenever the installer automatically selects a package to\n"
+"resolve a dependency issue. Some packages have relationships between each\n"
+"other such that installation of a package requires that some other program\n"
+"is already installed. The installer can determine which packages are\n"
+"required to satisfy a dependency to successfully complete the installation.\n"
"\n"
-" * Label: this is simply the name you will have to type at the yaboot\n"
-"prompt to select this boot option;\n"
+"The tiny floppy disk icon at the bottom of the list allows you to load a\n"
+"package list created during a previous installation. This is useful if you\n"
+"have a number of machines that you wish to configure identically. Clicking\n"
+"on this icon will ask you to insert a floppy disk previously created at the\n"
+"end of another installation. See the second tip of last step on how to\n"
+"create such a floppy."
+msgstr ""
+
+#: ../../help.pm:1
+#, c-format
+msgid ""
+"It is now time to specify which programs you wish to install on your\n"
+"system. There are thousands of packages available for Mandrake Linux, and\n"
+"to make it simpler to manage the packages have been placed into groups of\n"
+"similar applications.\n"
"\n"
-" * Image: this would be the name of the kernel to boot. Typically, vmlinux\n"
-"or a variation of vmlinux with an extension;\n"
+"Packages are sorted into groups corresponding to a particular use of your\n"
+"machine. Mandrake Linux has four predefined installations available. You\n"
+"can think of these installation classes as containers for various packages.\n"
+"You can mix and match applications from the various containers, so a\n"
+"``Workstation'' installation can still have applications from the\n"
+"``Development'' container installed.\n"
"\n"
-" * Root: the \"root\" device or ``/'' for your Linux installation;\n"
+" * \"Workstation\": if you plan to use your machine as a workstation,\n"
+"select one or more of the applications that are in the workstation\n"
+"container.\n"
"\n"
-" * Append: on Apple hardware, the kernel append option is used quite often\n"
-"to assist in initializing video hardware, or to enable keyboard mouse\n"
-"button emulation for the often lacking 2nd and 3rd mouse buttons on a stock\n"
-"Apple mouse. The following are some examples:\n"
+" * \"Development\": if plan on using your machine for programming, choose\n"
+"the appropriate packages from the container.\n"
"\n"
-" video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111\n"
-"hda=autotune\n"
+" * \"Server\": if your machine is intended to be a server, select which of\n"
+"the more common services you wish to install on your machine.\n"
"\n"
-" video=atyfb:vmode:12,cmode:24 adb_buttons=103,111\n"
+" * \"Graphical Environment\": this is where you will choose your preferred\n"
+"graphical environment. At least one must be selected if you want to have a\n"
+"graphical interface available.\n"
"\n"
-" * Initrd: this option can be used either to load initial modules, before\n"
-"the boot device is available, or to load a ramdisk image for an emergency\n"
-"boot situation;\n"
+"Moving the mouse cursor over a group name will display a short explanatory\n"
+"text about that group. If you unselect all groups when performing a regular\n"
+"installation (as opposed to an upgrade), a dialog will pop up proposing\n"
+"different options for a minimal installation:\n"
"\n"
-" * Initrd-size: the default ramdisk size is generally 4,096 bytes. If you\n"
-"need to allocate a large ramdisk, this option can be used;\n"
+" * \"With X\": install the minimum number of packages possible to have a\n"
+"working graphical desktop.\n"
"\n"
-" * Read-write: normally the \"root\" partition is initially brought up in\n"
-"read-only, to allow a filesystem check before the system becomes ``live''.\n"
-"Here, you can override this option;\n"
+" * \"With basic documentation\": installs the base system plus basic\n"
+"utilities and their documentation. This installation is suitable for\n"
+"setting up a server.\n"
"\n"
-" * NoVideo: should the Apple video hardware prove to be exceptionally\n"
-"problematic, you can select this option to boot in ``novideo'' mode, with\n"
-"native frame buffer support;\n"
+" * \"Truly minimal install\": will install the absolute minimum number of\n"
+"packages necessary to get a working Linux system. With this installation\n"
+"you will only have a command line interface. The total size of this\n"
+"installation is 65 megabytes.\n"
"\n"
-" * Default: selects this entry as being the default Linux selection,\n"
-"selectable by just pressing ENTER at the yaboot prompt. This entry will\n"
-"also be highlighted with a ``*'', if you press [Tab] to see the boot\n"
-"selections."
+"You can check the \"Individual package selection\" box, which is useful if\n"
+"you are familiar with the packages being offered or if you want to have\n"
+"total control over what will be installed.\n"
+"\n"
+"If you started the installation in \"Upgrade\" mode, you can unselect all\n"
+"groups to avoid installing any new package. This is useful for repairing or\n"
+"updating an existing system."
msgstr ""
-#: ../../help.pm_.c:828
+#: ../../help.pm:1
+#, c-format
msgid ""
-"Yaboot is a bootloader for NewWorld MacIntosh hardware. It is able to boot\n"
-"either GNU/Linux, MacOS or MacOSX if present on your computer. Normally,\n"
-"these other operating systems are correctly detected and installed. If this\n"
-"is not the case, you can add an entry by hand in this screen. Be careful to\n"
-"choose the correct parameters.\n"
+"The Mandrake Linux installation is distributed on several CD-ROMs. DrakX\n"
+"knows if a selected package is located on another CD-ROM so it will eject\n"
+"the current CD and ask you to insert the correct CD as required."
+msgstr ""
+"تثبيت Mandrake Linux موزع على العديد من الأقراص. DrakX\n"
+"يعلم إذا كانت حزمة ما في قرص آخر و سيخرج القرص\n"
+"الحالي و سيطلب منك أن تدخل قرصاً مختلفا كما هو مطلوب."
+
+#: ../../help.pm:1
+#, c-format
+msgid ""
+"Here are Listed the existing Linux partitions detected on your hard drive.\n"
+"You can keep the choices made by the wizard, since they are good for most\n"
+"common installations. If you make any changes, you must at least define a\n"
+"root partition (\"/\"). Do not choose too small a partition or you will not\n"
+"be able to install enough software. If you want to store your data on a\n"
+"separate partition, you will also need to create a \"/home\" partition\n"
+"(only possible if you have more than one Linux partition available).\n"
"\n"
-"Yaboot's main options are:\n"
+"Each partition is listed as follows: \"Name\", \"Capacity\".\n"
"\n"
-" * Init Message: a simple text message displayed before the boot prompt;\n"
+"\"Name\" is structured: \"hard drive type\", \"hard drive number\",\n"
+"\"partition number\" (for example, \"hda1\").\n"
"\n"
-" * Boot Device: indicates where you want to place the information required\n"
-"to boot to GNU/Linux. Generally, you set up a bootstrap partition earlier\n"
-"to hold this information;\n"
+"\"Hard drive type\" is \"hd\" if your hard drive is an IDE hard drive and\n"
+"\"sd\" if it is a SCSI hard drive.\n"
"\n"
-" * Open Firmware Delay: unlike LILO, there are two delays available with\n"
-"yaboot. The first delay is measured in seconds and at this point, you can\n"
-"choose between CD, OF boot, MacOS or Linux;\n"
+"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
+"hard drives:\n"
"\n"
-" * Kernel Boot Timeout: this timeout is similar to the LILO boot delay.\n"
-"After selecting Linux, you will have this delay in 0.1 second before your\n"
-"default kernel description is selected;\n"
+" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
"\n"
-" * Enable CD Boot?: checking this option allows you to choose ``C'' for CD\n"
-"at the first boot prompt;\n"
+" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
"\n"
-" * Enable OF Boot?: checking this option allows you to choose ``N'' for\n"
-"Open Firmware at the first boot prompt;\n"
+" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
"\n"
-" * Default OS: you can select which OS will boot by default when the Open\n"
-"Firmware Delay expires."
+" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
+"\n"
+"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
+"\"second lowest SCSI ID\", etc."
msgstr ""
-
-#: ../../help.pm_.c:860
-msgid ""
-"Here are presented various parameters concerning your machine. Depending on\n"
-"your installed hardware, you may (or may not), see the following entries:\n"
+"في الأعلى ستجد تقسيمات لينكس الموجودة و التي تم ايجادها على القرص الصلب "
+"الخاص بك.\n"
+"يمكنك أن تُبقي إختيارات المعالج, و هي جيدة لأغلب أنواع التثبيت.\n"
+"إذا قمت بعمل أي تغييرات فيجب عليك أن تعرف التقسيم الجذر (\"/\"). لا تختر\n"
+"تقسيمات ضغيرة جدا و إلا لن تستطيع تثبيت برامج كافية. إذا كنت تريد تخزين "
+"البيانات\n"
+"على تقسيم مستقل فستحتاج الى عمل تقسيم لـ\"/home\"\n"
+"(ممكن فقط إذا كان لديك أكثر من تقسيم للينكس).\n"
"\n"
-" * \"Mouse\": check the current mouse configuration and click on the button\n"
-"to change it if necessary;\n"
+"كل تقسيم مُعطى بالسكل التالي: \"الإسم\", \"السعة\".\n"
"\n"
-" * \"Keyboard\": check the current keyboard map configuration and click on\n"
-"the button to change that if necessary;\n"
+"\"الإسم\" مركب بالسكل التالي: \"نوع القرص الصلب\", \"رقم القرص الصلب\",\n"
+"\"رقم التقسيم\" (مثلا, \"hda1\").\n"
"\n"
-" * \"Timezone\": DrakX, by default, guesses your time zone from the\n"
-"language you have chosen. But here again, as for the choice of a keyboard,\n"
-"you may not be in the country for which the chosen language should\n"
-"correspond. Hence, you may need to click on the \"Timezone\" button in\n"
-"order to configure the clock according to the time zone you are in;\n"
+"\"رقم القرص الصلب\" دائما هو حرف بعد \"hd\" أو \"sd\". بالنسبة للأقراص "
+"الصلبة\n"
+"من نوع IDE فإن:\n"
+" * \"a\" تعني \"القرص الصلب الأساسي على متحكم IDE الأساسي\",\n"
"\n"
-" * \"Printer\": clicking on the \"No Printer\" button will open the printer\n"
-"configuration wizard. Consult the correpsonding chapter of the ``Starter\n"
-"Guide'' for more information on how to setup a new printer. The interface\n"
-"presented there is similar to the one used at installation time;\n"
+" * \"b\" تعني \"القرص الصلب الثانوي على متحكم IDE الأساسي\",\n"
"\n"
-" * \"Sound card\": if a sound card is detected on your system, it will be\n"
-"displayed here.\n"
+" * \"c\" تعني \"القرص الصلب الأساسي على متحكم IDE الثانوي\",\n"
"\n"
-" * \"TV card\": if a TV card is detected on your system, it will be\n"
-"displayed here.\n"
+" * \"d\" تعني \"القرص الصلب الثانوي على متحكم IDE الثانوي\",\n"
"\n"
-" * \"ISDN card\": if an ISDN card is detected on your system, it will be\n"
-"displayed here. You can click on the button to change the parameters\n"
-"associated to it."
-msgstr ""
+"أما بالنسبة لأقراص سكزي SCSI فالحرف \"a\" يعني \"أقل معرف SCSI\", و الحرف \"b"
+"\"\n"
+"يعني \"ثاني أقل معرف SCSI\", الخ."
-#: ../../help.pm_.c:891
+#: ../../help.pm:1
+#, c-format
msgid ""
-"Choose the hard drive you want to erase in order to install your new\n"
-"Mandrake Linux partition. Be careful, all data present on it will be lost\n"
-"and will not be recoverable!"
+"GNU/Linux is a multi-user system, meaning each user can have their own\n"
+"preferences, their own files and so on. You can read the ``Starter Guide''\n"
+"to learn more about multi-user systems. But unlike \"root\", which is the\n"
+"system administrator, the users you add at this point will not be\n"
+"authorized to change anything except their own files and their own\n"
+"configuration, protecting the system from unintentional or malicious\n"
+"changes that impact the system as a whole. You will have to create at least\n"
+"one regular user for yourself -- this is the account which you should use\n"
+"for routine, day-to-day use. Although it is very easy to log in as \"root\"\n"
+"to do anything and everything, it may also be very dangerous! A mistake\n"
+"could mean that your system would not work any more. If you make a serious\n"
+"mistake as a regular user, the worst that will happen is that you will lose\n"
+"some information, but not affect the entire system.\n"
+"\n"
+"The first field asks you for a real name. Of course, this is not mandatory\n"
+"-- you can actually enter whatever you like. DrakX will use the first word\n"
+"you typed in and copy it to the \"User name\" field, which is the name this\n"
+"user will enter to log onto the system. If you like, you may override the\n"
+"default and change the username. The next step is to enter a password. From\n"
+"a security point of view, a non-privileged (regular) user password is not\n"
+"as crucial as the \"root\" password, but that is no reason to neglect it by\n"
+"making it blank or too simple: after all, your files could be the ones at\n"
+"risk.\n"
+"\n"
+"Once you click on \"Accept user\", you can add other users. Add a user for\n"
+"each one of your friends: your father or your sister, for example. Click\n"
+"\"Next ->\" when you have finished adding users.\n"
+"\n"
+"Clicking the \"Advanced\" button allows you to change the default \"shell\"\n"
+"for that user (bash by default).\n"
+"\n"
+"When you are finished adding all users, you will be asked to choose a user\n"
+"that can automatically log into the system when the computer boots up. If\n"
+"you are interested in that feature (and do not care much about local\n"
+"security), choose the desired user and window manager, then click \"Next\n"
+"->\". If you are not interested in this feature, uncheck the \"Do you want\n"
+"to use this feature?\" box."
msgstr ""
-#: ../../help.pm_.c:896
+#: ../../help.pm:1
+#, c-format
msgid ""
-"Click on \"OK\" if you want to delete all data and partitions present on\n"
-"this hard drive. Be careful, after clicking on \"OK\", you will not be able\n"
-"to recover any data and partitions present on this hard drive, including\n"
-"any Windows data.\n"
-"\n"
-"Click on \"Cancel\" to stop this operation without losing any data and\n"
-"partitions present on this hard drive."
+"Before continuing, you should carefully read the terms of the license. It\n"
+"covers the entire Mandrake Linux distribution. If you do agree with all the\n"
+"terms in it, check the \"Accept\" box. If not, simply turn off your\n"
+"computer."
msgstr ""
-#: ../../install2.pm_.c:111
+#: ../../install2.pm:1
+#, c-format
+msgid "You must also format %s"
+msgstr "عليك أيضا تجهيز %s"
+
+#: ../../install2.pm:1
#, c-format
msgid ""
"Can't access kernel modules corresponding to your kernel (file %s is "
"missing), this generally means your boot floppy in not in sync with the "
"Installation medium (please create a newer boot floppy)"
msgstr ""
+"تعذر الوصول الى وحدات النواة الخاصة بنواة النظام (الملف %s مفقود), بشكل عام "
+"يعني هذا أن قرص الإقلاع المرن ليس محدّثاً مع وسيط التثبيت (فضلاً قم بإنشاء قرص "
+"اقلاع جديد)"
-#: ../../install2.pm_.c:167
+#: ../../install_any.pm:1
#, c-format
-msgid "You must also format %s"
+msgid ""
+"An error occurred - no valid devices were found on which to create new "
+"filesystems. Please check your hardware for the cause of this problem"
msgstr ""
+"لقد ظهر خطأ - لم يتم ايجاد أجهزة صالحة يمكن انشاء أنظمة ملفات جديدة. تأكد من "
+"العتاد الخاص بك لمعرفة شبب هذه المشكلة"
-#: ../../install_any.pm_.c:423
+#: ../../install_any.pm:1 ../../partition_table.pm:1
#, c-format
-msgid ""
-"You have selected the following server(s): %s\n"
-"\n"
-"\n"
-"These servers are activated by default. They don't have any known security\n"
-"issues, but some new could be found. In that case, you must make sure to "
-"upgrade\n"
-"as soon as possible.\n"
-"\n"
-"\n"
-"Do you really want to install these servers?\n"
-msgstr ""
+msgid "Error reading file %s"
+msgstr "خطأ في قراءة الملف %s"
-#: ../../install_any.pm_.c:441
+#: ../../install_any.pm:1
#, c-format
msgid ""
-"The following packages will be removed to allow upgrading your system: %s\n"
-"\n"
-"\n"
-"Do you really want to remove these packages?\n"
+"To use this saved packages selection, boot installation with ``linux "
+"defcfg=floppy''"
msgstr ""
+"لاستخدام اختياراتك المحفوظة للحزم, قم ببدء التثبيت مع خيار ``linux "
+"defcfg=floppy''"
-#: ../../install_any.pm_.c:471
-msgid "Can't use broadcast with no NIS domain"
-msgstr "NIS لا تسطيع ا ستعمال هذ ا البرنامج مع"
+#: ../../install_any.pm:1
+#, c-format
+msgid "This floppy is not FAT formatted"
+msgstr "هذا القرص المرن غير مجهز على نظام ملفات FAT"
-#: ../../install_any.pm_.c:879
+#: ../../install_any.pm:1
#, c-format
msgid "Insert a FAT formatted floppy in drive %s"
-msgstr ""
+msgstr "أدخل قرص مرن مجهز على نظام ملفات FAT في السواقة %s"
-#: ../../install_any.pm_.c:883
-msgid "This floppy is not FAT formatted"
-msgstr ""
+#: ../../install_any.pm:1
+#, c-format
+msgid "Can't use broadcast with no NIS domain"
+msgstr "Can't use broadcast with no NIS domain"
-#: ../../install_any.pm_.c:895
+#: ../../install_any.pm:1
+#, c-format
msgid ""
-"To use this saved packages selection, boot installation with ``linux "
-"defcfg=floppy''"
+"The following packages will be removed to allow upgrading your system: %s\n"
+"\n"
+"\n"
+"Do you really want to remove these packages?\n"
msgstr ""
+"سيتم حذف هذه الحزم لكي تتم ترقية النظام: %s\n"
+"\n"
+"\n"
+"هل تريد حذف هذه الحزم فعلاً؟\n"
-#: ../../install_any.pm_.c:918 ../../partition_table.pm_.c:767
+#: ../../install_any.pm:1 ../../interactive.pm:1 ../../my_gtk.pm:1
+#: ../../ugtk2.pm:1 ../../modules/interactive.pm:1
#, c-format
-msgid "Error reading file %s"
-msgstr ""
+msgid "No"
+msgstr "لا"
-#: ../../install_any.pm_.c:1040
-msgid ""
-"An error occurred - no valid devices were found on which to create new "
-"filesystems. Please check your hardware for the cause of this problem"
-msgstr ""
+#: ../../install_any.pm:1 ../../interactive.pm:1 ../../my_gtk.pm:1
+#: ../../ugtk2.pm:1 ../../modules/interactive.pm:1 ../../standalone/drakgw:1
+#, c-format
+msgid "Yes"
+msgstr "نعم"
-#: ../../install_interactive.pm_.c:21
+#: ../../install_any.pm:1
#, c-format
msgid ""
-"Some hardware on your computer needs ``proprietary'' drivers to work.\n"
-"You can find some information about them at: %s"
+"You have selected the following server(s): %s\n"
+"\n"
+"\n"
+"These servers are activated by default. They don't have any known security\n"
+"issues, but some new ones could be found. In that case, you must make sure\n"
+"to upgrade as soon as possible.\n"
+"\n"
+"\n"
+"Do you really want to install these servers?\n"
msgstr ""
+"لقد اخترت الخادمات التالية: %s\n"
+"\n"
+"\n"
+"هذه الخادمات مفعّلة افتراضياً, و لا يوجد لهم مشاكل أمنية\n"
+"معروفة, و لكن قد تكتشف بعض المشاكل الجديدة. في هذه الحالة, تأكد من أن\n"
+"تقوم بالترقية في أقرب وقت ممكن.\n"
+"\n"
+"\n"
+"هل أنت متأكد أنك تريد تثبيت هذه الخادمات الآن؟\n"
-#: ../../install_interactive.pm_.c:56
-msgid ""
-"You must have a root partition.\n"
-"For this, create a partition (or click on an existing one).\n"
-"Then choose action ``Mount point'' and set it to `/'"
-msgstr ""
+#: ../../install_gtk.pm:1
+#, c-format
+msgid "System configuration"
+msgstr "تهيئة النظام"
-#: ../../install_interactive.pm_.c:61
-msgid "You must have a swap partition"
-msgstr ""
+#: ../../install_gtk.pm:1
+#, c-format
+msgid "System installation"
+msgstr "تثبيت النظام"
-#: ../../install_interactive.pm_.c:62
-msgid ""
-"You don't have a swap partition.\n"
-"\n"
-"Continue anyway?"
-msgstr "استمرّ بأيّة حال"
+#: ../../install_interactive.pm:1
+#, c-format
+msgid "Bringing down the network"
+msgstr "جاري اغلاق الشبكة"
-#: ../../install_interactive.pm_.c:65 ../../install_steps.pm_.c:169
-msgid "You must have a FAT partition mounted in /boot/efi"
-msgstr ""
+#: ../../install_interactive.pm:1
+#, c-format
+msgid "Bringing up the network"
+msgstr "جاري تشغيل الشبكة"
-#: ../../install_interactive.pm_.c:90
-msgid "Use free space"
-msgstr "استعمل مكانا حرا"
+#: ../../install_interactive.pm:1
+#, c-format
+msgid "Partitioning failed: %s"
+msgstr "فشلت التجزئة: %s"
-#: ../../install_interactive.pm_.c:92
-msgid "Not enough free space to allocate new partitions"
-msgstr ""
+#: ../../install_interactive.pm:1
+#, c-format
+msgid "The DrakX Partitioning wizard found the following solutions:"
+msgstr "عثر معالج التجزئة في DrakX على الحلول التالية:"
-#: ../../install_interactive.pm_.c:100
-msgid "Use existing partitions"
-msgstr ""
+#: ../../install_interactive.pm:1
+#, c-format
+msgid "I can't find any room for installing"
+msgstr "لا يمكنني ايجاد مساحة فارغة للتثبيت"
-#: ../../install_interactive.pm_.c:102
-msgid "There is no existing partition to use"
+#: ../../install_interactive.pm:1
+#, c-format
+msgid ""
+"You can now partition %s.\n"
+"When you are done, don't forget to save using `w'"
msgstr ""
+"يمكنك الآن تجزئة %s.\n"
+"عندما تنتهي لا تنسى الحفظ باستخدام `w'"
-#: ../../install_interactive.pm_.c:109
-msgid "Use the Windows partition for loopback"
-msgstr ""
+#: ../../install_interactive.pm:1
+#, c-format
+msgid "Use fdisk"
+msgstr "استخدم fdisk"
-#: ../../install_interactive.pm_.c:112
-msgid "Which partition do you want to use for Linux4Win?"
-msgstr ""
+#: ../../install_interactive.pm:1
+#, c-format
+msgid "Custom disk partitioning"
+msgstr "تجزئة مخصصة"
-#: ../../install_interactive.pm_.c:114
-msgid "Choose the sizes"
-msgstr ""
+#: ../../install_interactive.pm:1
+#, c-format
+msgid "ALL existing partitions and their data will be lost on drive %s"
+msgstr "كل التجزئات و بياناتها ستضيع من على السواقة %s"
-#: ../../install_interactive.pm_.c:115
-msgid "Root partition size in MB: "
-msgstr ""
+#: ../../install_interactive.pm:1
+#, c-format
+msgid "You have more than one hard drive, which one do you install linux on?"
+msgstr "لديك أكثر من قرص صلب, في أيهم تريد تثبيت لينكس؟"
-#: ../../install_interactive.pm_.c:116
-msgid "Swap partition size in MB: "
-msgstr ""
+#: ../../install_interactive.pm:1
+#, c-format
+msgid "Erase entire disk"
+msgstr "امسح كل القرص"
-#: ../../install_interactive.pm_.c:126
-msgid "Use the free space on the Windows partition"
-msgstr ""
+#: ../../install_interactive.pm:1
+#, c-format
+msgid "Remove Windows(TM)"
+msgstr "احذف Windows(TM)"
-#: ../../install_interactive.pm_.c:129
-msgid "Which partition do you want to resize?"
-msgstr ""
+#: ../../install_interactive.pm:1
+#, c-format
+msgid "There is no FAT partition to resize (or not enough space left)"
+msgstr "لا توجد تجزئة FAT قابل لتغيير حجمها (أو لا توجد مساحة كافية متبقية)"
+
+#: ../../install_interactive.pm:1
+#, c-format
+msgid "FAT resizing failed: %s"
+msgstr "فشل تغيير حجم FAT: %s"
-#: ../../install_interactive.pm_.c:131
+#: ../../install_interactive.pm:1
+#, c-format
msgid "Resizing Windows partition"
-msgstr ""
+msgstr "جاري تغيير حجم تجزئة Windows"
-#: ../../install_interactive.pm_.c:134
+#: ../../install_interactive.pm:1 ../../diskdrake/interactive.pm:1
#, c-format
-msgid ""
-"The FAT resizer is unable to handle your partition, \n"
-"the following error occured: %s"
-msgstr ""
+msgid "Resizing"
+msgstr "جاري تغيير الحجم"
-#: ../../install_interactive.pm_.c:137
-msgid ""
-"Your Windows partition is too fragmented. Please reboot your computer under "
-"Windows, run the ``defrag'' utility, then restart the Mandrake Linux "
-"installation."
-msgstr ""
+#: ../../install_interactive.pm:1
+#, c-format
+msgid "partition %s"
+msgstr "التجزئة %s"
+
+#: ../../install_interactive.pm:1
+#, c-format
+msgid "Which size do you want to keep for Windows on"
+msgstr "على أي مساحة تريد حفظ Windows"
-#: ../../install_interactive.pm_.c:138
+#: ../../install_interactive.pm:1
+#, c-format
msgid ""
"WARNING!\n"
"\n"
@@ -3723,294 +2720,176 @@ msgid ""
"installation. You should also backup your data.\n"
"When sure, press Ok."
msgstr ""
+"تحذير!\n"
+"\n"
+"DrakX سيقوم الآن بتغيير حجم تجزئة Windows. كن حذراً:\n"
+"هذه العملية خطرة. فإذا لم تكن فعلت ذلك,\n"
+"يجب عليك أولاً الخروج من التثبيت, ثم شغّل scandisk\n"
+"في Windows (و اختيارياً defrag), ثم أعد\n"
+"التثبيت. يجب عليك كذلك عمل نسخة احتياطية من بياناتك.\n"
+"عندما تكون متأكداً, انقر موافق."
-#: ../../install_interactive.pm_.c:148
-msgid "Which size do you want to keep for Windows on"
-msgstr ""
-
-#: ../../install_interactive.pm_.c:149
-#, c-format
-msgid "partition %s"
-msgstr ""
-
-#: ../../install_interactive.pm_.c:156
+#: ../../install_interactive.pm:1
#, c-format
-msgid "FAT resizing failed: %s"
-msgstr ""
-
-#: ../../install_interactive.pm_.c:171
msgid ""
-"There is no FAT partition to resize or to use as loopback (or not enough "
-"space left)"
-msgstr ""
-
-#: ../../install_interactive.pm_.c:177
-msgid "Erase entire disk"
-msgstr ""
-
-#: ../../install_interactive.pm_.c:177
-msgid "Remove Windows(TM)"
-msgstr ""
-
-#: ../../install_interactive.pm_.c:180
-msgid "You have more than one hard drive, which one do you install linux on?"
+"Your Windows partition is too fragmented. Please reboot your computer under "
+"Windows, run the ``defrag'' utility, then restart the Mandrake Linux "
+"installation."
msgstr ""
+"Your Windows partition is too fragmented. Please reboot your computer under "
+"Windows, run the ``defrag'' utility, then restart the Mandrake Linux "
+"installation."
-#: ../../install_interactive.pm_.c:183
+#: ../../install_interactive.pm:1
#, c-format
-msgid "ALL existing partitions and their data will be lost on drive %s"
-msgstr ""
-
-#: ../../install_interactive.pm_.c:191
-msgid "Custom disk partitioning"
-msgstr ""
-
-#: ../../install_interactive.pm_.c:195
-msgid "Use fdisk"
-msgstr ""
+msgid "Computing the size of the Windows partition"
+msgstr "جاري حساب مساحة تجزئة Windows"
-#: ../../install_interactive.pm_.c:198
+#: ../../install_interactive.pm:1
#, c-format
msgid ""
-"You can now partition %s.\n"
-"When you are done, don't forget to save using `w'"
-msgstr ""
-
-#: ../../install_interactive.pm_.c:227
-msgid "You don't have enough free space on your Windows partition"
-msgstr ""
-
-#: ../../install_interactive.pm_.c:243
-msgid "I can't find any room for installing"
-msgstr ""
-
-#: ../../install_interactive.pm_.c:246
-msgid "The DrakX Partitioning wizard found the following solutions:"
+"The FAT resizer is unable to handle your partition, \n"
+"the following error occured: %s"
msgstr ""
+"لم تتمكن أداة تغيير حجم FAT من التعامل مع تجزئتك, \n"
+"ظهر الخطأ التالي: %s"
-#: ../../install_interactive.pm_.c:250
+#: ../../install_interactive.pm:1
#, c-format
-msgid "Partitioning failed: %s"
-msgstr ""
-
-#: ../../install_interactive.pm_.c:260
-msgid "Bringing up the network"
-msgstr ""
-
-#: ../../install_interactive.pm_.c:265
-msgid "Bringing down the network"
-msgstr ""
-
-#: ../../install_steps.pm_.c:76
-msgid ""
-"An error occurred, but I don't know how to handle it nicely.\n"
-"Continue at your own risk."
-msgstr ""
+msgid "Which partition do you want to resize?"
+msgstr "أي تجزئة تريد تغيير حجمها؟"
-#: ../../install_steps.pm_.c:211
+#: ../../install_interactive.pm:1
#, c-format
-msgid "Duplicate mount point %s"
-msgstr ""
-
-#: ../../install_steps.pm_.c:380
-msgid ""
-"Some important packages didn't get installed properly.\n"
-"Either your cdrom drive or your cdrom is defective.\n"
-"Check the cdrom on an installed computer using \"rpm -qpl Mandrake/RPMS/*.rpm"
-"\"\n"
-msgstr ""
+msgid "Use the free space on the Windows partition"
+msgstr "استخدم المساحة الفارغة على تجزئة Windows"
-#: ../../install_steps.pm_.c:450
+#: ../../install_interactive.pm:1
#, c-format
-msgid "Welcome to %s"
-msgstr ""
-
-#: ../../install_steps.pm_.c:543 ../../install_steps.pm_.c:769
-msgid "No floppy drive available"
+msgid "There is no FAT partition to use as loopback (or not enough space left)"
msgstr ""
+"لا توجد تجزئة FAT لاستخدامها كـ loopback (أو لا توجد مساحة كافية متبقية)"
-#: ../../install_steps_auto_install.pm_.c:76
-#: ../../install_steps_stdio.pm_.c:22
+#: ../../install_interactive.pm:1
#, c-format
-msgid "Entering step `%s'\n"
-msgstr ""
-
-#: ../../install_steps_gtk.pm_.c:146
-msgid ""
-"Your system is low on resources. You may have some problem installing\n"
-"Mandrake Linux. If that occurs, you can try a text install instead. For "
-"this,\n"
-"press `F1' when booting on CDROM, then enter `text'."
-msgstr ""
-
-#: ../../install_steps_gtk.pm_.c:157 ../../install_steps_interactive.pm_.c:237
-msgid "Install Class"
-msgstr ""
-
-#: ../../install_steps_gtk.pm_.c:160
-msgid "Please choose one of the following classes of installation:"
-msgstr ""
-
-#: ../../install_steps_gtk.pm_.c:236 ../../install_steps_interactive.pm_.c:683
-msgid "Package Group Selection"
-msgstr ""
-
-#: ../../install_steps_gtk.pm_.c:269 ../../install_steps_interactive.pm_.c:698
-msgid "Individual package selection"
-msgstr ""
+msgid "Swap partition size in MB: "
+msgstr "حجم تجزئة التبديل بالميغابايت"
-#: ../../install_steps_gtk.pm_.c:292 ../../install_steps_interactive.pm_.c:621
+#: ../../install_interactive.pm:1
#, c-format
-msgid "Total size: %d / %d MB"
-msgstr ""
-
-#: ../../install_steps_gtk.pm_.c:334
-msgid "Bad package"
-msgstr ""
+msgid "Root partition size in MB: "
+msgstr "حجم التجزئة الجذرية بالميغابايت"
-#: ../../install_steps_gtk.pm_.c:335
+#: ../../install_interactive.pm:1
#, c-format
-msgid "Name: %s\n"
-msgstr ""
+msgid "Choose the sizes"
+msgstr "اختر الأحجام"
-#: ../../install_steps_gtk.pm_.c:336
+#: ../../install_interactive.pm:1
#, c-format
-msgid "Version: %s\n"
-msgstr ""
+msgid "Which partition do you want to use for Linux4Win?"
+msgstr "أي تجزئة تريد استخدامها من أجل Linux4Win"
-#: ../../install_steps_gtk.pm_.c:337
+#: ../../install_interactive.pm:1
#, c-format
-msgid "Size: %d KB\n"
-msgstr ""
+msgid "Use the Windows partition for loopback"
+msgstr "استخدم تجزئة Windows كـ loopback"
-#: ../../install_steps_gtk.pm_.c:338
+#: ../../install_interactive.pm:1
#, c-format
-msgid "Importance: %s\n"
-msgstr ""
-
-#: ../../install_steps_gtk.pm_.c:360
-msgid ""
-"You can't select this package as there is not enough space left to install it"
-msgstr ""
-
-#: ../../install_steps_gtk.pm_.c:365
-msgid "The following packages are going to be installed"
-msgstr ""
+msgid "There is no existing partition to use"
+msgstr "لا توجد تجزئة لاستخدامها"
-#: ../../install_steps_gtk.pm_.c:366
-msgid "The following packages are going to be removed"
-msgstr ""
+#: ../../install_interactive.pm:1
+#, c-format
+msgid "Use existing partitions"
+msgstr "استخدم التجزئات الموجودة"
-#: ../../install_steps_gtk.pm_.c:378
-msgid "You can't select/unselect this package"
-msgstr ""
+#: ../../install_interactive.pm:1
+#, c-format
+msgid "Not enough free space to allocate new partitions"
+msgstr "لا توجد مساحة فارغة لعمل التجزئات الجديدة"
-#: ../../install_steps_gtk.pm_.c:390
-msgid "This is a mandatory package, it can't be unselected"
-msgstr ""
+#: ../../install_interactive.pm:1
+#, c-format
+msgid "Use free space"
+msgstr "استعمل مكانا حرا"
-#: ../../install_steps_gtk.pm_.c:392
-msgid "You can't unselect this package. It is already installed"
-msgstr ""
+#: ../../install_interactive.pm:1 ../../install_steps.pm:1
+#, c-format
+msgid "You must have a FAT partition mounted in /boot/efi"
+msgstr "لديك تجزئة FAT تم تحميلها على /boot/efi"
-#: ../../install_steps_gtk.pm_.c:395
+#: ../../install_interactive.pm:1
+#, c-format
msgid ""
-"This package must be upgraded.\n"
-"Are you sure you want to deselect it?"
-msgstr ""
-
-#: ../../install_steps_gtk.pm_.c:398
-msgid "You can't unselect this package. It must be upgraded"
-msgstr ""
-
-#: ../../install_steps_gtk.pm_.c:403
-msgid "Show automatically selected packages"
-msgstr ""
-
-#: ../../install_steps_gtk.pm_.c:404 ../../install_steps_interactive.pm_.c:261
-#: ../../install_steps_interactive.pm_.c:265
-#: ../../standalone/drakbackup_.c:4211
-msgid "Install"
-msgstr ""
-
-#: ../../install_steps_gtk.pm_.c:407
-msgid "Load/Save on floppy"
-msgstr ""
-
-#: ../../install_steps_gtk.pm_.c:408
-msgid "Updating package selection"
-msgstr ""
-
-#: ../../install_steps_gtk.pm_.c:413
-msgid "Minimal install"
-msgstr ""
-
-#: ../../install_steps_gtk.pm_.c:428 ../../install_steps_interactive.pm_.c:529
-msgid "Choose the packages you want to install"
-msgstr ""
-
-#: ../../install_steps_gtk.pm_.c:444 ../../install_steps_interactive.pm_.c:767
-msgid "Installing"
-msgstr ""
-
-#: ../../install_steps_gtk.pm_.c:450
-msgid "Estimating"
-msgstr ""
-
-#: ../../install_steps_gtk.pm_.c:457
-msgid "Time remaining "
-msgstr ""
-
-#: ../../install_steps_gtk.pm_.c:469
-msgid "Please wait, preparing installation..."
+"You don't have a swap partition.\n"
+"\n"
+"Continue anyway?"
msgstr ""
+"ليست لديك تجزئة تبديل.\n"
+"\n"
+"هل تريد المتابعة على أي حال؟"
-#: ../../install_steps_gtk.pm_.c:551
+#: ../../install_interactive.pm:1
#, c-format
-msgid "%d packages"
+msgid ""
+"You must have a root partition.\n"
+"For this, create a partition (or click on an existing one).\n"
+"Then choose action ``Mount point'' and set it to `/'"
msgstr ""
+"يجب أن تكون لديك تجزئة جذرية.\n"
+"لهذا الغرض انشئ تجزئة (أو انقر على تجزئة موجودة).\n"
+"ثم اختر ``نقطة التحميل'' و اجعلها `/'"
-#: ../../install_steps_gtk.pm_.c:556
+#: ../../install_interactive.pm:1
#, c-format
-msgid "Installing package %s"
-msgstr ""
-
-#: ../../install_steps_gtk.pm_.c:593 ../../install_steps_interactive.pm_.c:195
-#: ../../install_steps_interactive.pm_.c:791
-#: ../../standalone/drakautoinst_.c:197
-msgid "Accept"
-msgstr "قبول"
-
-#: ../../install_steps_gtk.pm_.c:593 ../../install_steps_interactive.pm_.c:195
-#: ../../install_steps_interactive.pm_.c:791
-msgid "Refuse"
+msgid ""
+"Some hardware on your computer needs ``proprietary'' drivers to work.\n"
+"You can find some information about them at: %s"
msgstr ""
+"بعض العتاد الموجود على جهازك يحتاج الى مشغلات ``تجارية'' كي تعمل.\n"
+"يمكنك ايجاد مزيد من المعلومات عنها في: %s"
-#: ../../install_steps_gtk.pm_.c:594 ../../install_steps_interactive.pm_.c:792
+#: ../../install_messages.pm:1
#, c-format
msgid ""
-"Change your Cd-Rom!\n"
+"Congratulations, installation is complete.\n"
+"Remove the boot media and press return to reboot.\n"
"\n"
-"Please insert the Cd-Rom labelled \"%s\" in your drive and press Ok when "
-"done.\n"
-"If you don't have it, press Cancel to avoid installation from this Cd-Rom."
-msgstr ""
-
-#: ../../install_steps_gtk.pm_.c:608 ../../install_steps_gtk.pm_.c:612
-#: ../../install_steps_interactive.pm_.c:804
-#: ../../install_steps_interactive.pm_.c:808
-msgid "Go on anyway?"
-msgstr ""
-
-#: ../../install_steps_gtk.pm_.c:608 ../../install_steps_interactive.pm_.c:804
-msgid "There was an error ordering packages:"
+"\n"
+"For information on fixes which are available for this release of Mandrake "
+"Linux,\n"
+"consult the Errata available from:\n"
+"\n"
+"\n"
+"%s\n"
+"\n"
+"\n"
+"Information on configuring your system is available in the post\n"
+"install chapter of the Official Mandrake Linux User's Guide."
msgstr ""
+"تهانينا, التثبيت قد انتهى.\n"
+"احذف وسيط الإقلاع و اضغط زر ادخل لإعادة التشغيل.\n"
+"\n"
+"\n"
+"لمعلومات حول الإصلاحات المتوفرة لهذا الإصدار من Mandrake Linux,\n"
+"زر صفحة تصحيح الأخطاء المتوفرة من:\n"
+"\n"
+"\n"
+"%s\n"
+"\n"
+"\n"
+"المعلومات حول تهيئة النظام متوفرة في فصل\n"
+"ما بعد التثبيت في دليل مستخدم Mandrake الرسمي."
-#: ../../install_steps_gtk.pm_.c:612 ../../install_steps_interactive.pm_.c:808
-msgid "There was an error installing packages:"
-msgstr ""
+#: ../../install_messages.pm:1
+#, c-format
+msgid "http://www.mandrakelinux.com/en/91errata.php3"
+msgstr "http://www.mandrakelinux.com/en/91errata.php3"
-#: ../../install_steps_interactive.pm_.c:10
+#: ../../install_messages.pm:1
+#, c-format
msgid ""
"\n"
"Warning\n"
@@ -4042,19 +2921,8 @@ msgid ""
"copyright laws applicable to software programs.\n"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:67
-msgid "An error occurred"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:85
-msgid "Do you really want to leave the installation?"
-msgstr "هل تريد فعلا مغادرة التثبيت؟"
-
-#: ../../install_steps_interactive.pm_.c:112
-msgid "License agreement"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:113
+#: ../../install_messages.pm:1
+#, c-format
msgid ""
"Introduction\n"
"\n"
@@ -4175,4343 +3043,9697 @@ msgid ""
"For any question on this document, please contact MandrakeSoft S.A. \n"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:197
-msgid "Are you sure you refuse the licence?"
-msgstr ""
+#: ../../install_steps_auto_install.pm:1 ../../install_steps_stdio.pm:1
+#, c-format
+msgid "Entering step `%s'\n"
+msgstr "Entering step `%s'\n"
-#: ../../install_steps_interactive.pm_.c:217
-#: ../../install_steps_interactive.pm_.c:995
-#: ../../standalone/keyboarddrake_.c:25
-msgid "Keyboard"
-msgstr "لوحة المفاتيح"
+#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
+#, c-format
+msgid "Go on anyway?"
+msgstr "هل تريد المتابعة على أي حال؟"
-#: ../../install_steps_interactive.pm_.c:218
-msgid "Please choose your keyboard layout."
-msgstr "رجاء, اختر لوحة المفاتيح."
+#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
+#, c-format
+msgid "There was an error installing packages:"
+msgstr "كان هناك خطأ في تثبيت الحزم:"
-#: ../../install_steps_interactive.pm_.c:219
-msgid "Here is the full list of keyboards available"
-msgstr ""
+#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
+#, c-format
+msgid "There was an error ordering packages:"
+msgstr "كان هناك خطأ في ترتيب الحزم:"
-#: ../../install_steps_interactive.pm_.c:237
-msgid "Which installation class do you want?"
+#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
+#, c-format
+msgid ""
+"Change your Cd-Rom!\n"
+"\n"
+"Please insert the Cd-Rom labelled \"%s\" in your drive and press Ok when "
+"done.\n"
+"If you don't have it, press Cancel to avoid installation from this Cd-Rom."
msgstr ""
+"غير القرص المدمج!\n"
+"\n"
+"فضلاً أدخل القرص المدمج المسمى \"%s\" في السواقة و انقر موافق عندما تنتهي.\n"
+"اذا لم يكن القرص لديك, اضغط الغاء لتجنب التثبيت من هذا القرص المدمج."
-#: ../../install_steps_interactive.pm_.c:241
-msgid "Install/Update"
-msgstr ""
+#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
+#, c-format
+msgid "Refuse"
+msgstr "ارفض"
-#: ../../install_steps_interactive.pm_.c:241
-msgid "Is this an install or an update?"
-msgstr ""
+#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
+#: ../../standalone/drakautoinst:1
+#, c-format
+msgid "Accept"
+msgstr "اقبل"
-#: ../../install_steps_interactive.pm_.c:250
-msgid "Recommended"
-msgstr ""
+#: ../../install_steps_gtk.pm:1
+#, c-format
+msgid "Installing package %s"
+msgstr "جاري تثبيت الحزمة %s"
-#: ../../install_steps_interactive.pm_.c:253
-#: ../../install_steps_interactive.pm_.c:256
-msgid "Expert"
-msgstr "Expert"
+#: ../../install_steps_gtk.pm:1
+#, c-format
+msgid "%d packages"
+msgstr "%d حزم"
-#: ../../install_steps_interactive.pm_.c:261
-#: ../../install_steps_interactive.pm_.c:265
-msgid "Upgrade"
-msgstr "ترقية"
+#: ../../install_steps_gtk.pm:1
+#, c-format
+msgid "No details"
+msgstr "لا تفاصيل"
-#: ../../install_steps_interactive.pm_.c:261
-#: ../../install_steps_interactive.pm_.c:265
-msgid "Upgrade packages only"
-msgstr ""
+#: ../../install_steps_gtk.pm:1 ../../diskdrake/hd_gtk.pm:1
+#: ../../diskdrake/smbnfs_gtk.pm:1
+#, c-format
+msgid "Details"
+msgstr "تفاصيل"
-#: ../../install_steps_interactive.pm_.c:282
-msgid "Please choose the type of your mouse."
-msgstr "رجاء اختر لغة نوع الفأرة."
+#: ../../install_steps_gtk.pm:1
+#, c-format
+msgid "Please wait, preparing installation..."
+msgstr "انتر من فضلك, جاري التحضير للتثبيت..."
-#: ../../install_steps_interactive.pm_.c:288 ../../standalone/mousedrake_.c:52
-msgid "Mouse Port"
-msgstr ""
+#: ../../install_steps_gtk.pm:1
+#, c-format
+msgid "Time remaining "
+msgstr "الوقت المتبقي"
-#: ../../install_steps_interactive.pm_.c:289 ../../standalone/mousedrake_.c:53
-msgid "Please choose on which serial port your mouse is connected to."
-msgstr ""
+#: ../../install_steps_gtk.pm:1
+#, c-format
+msgid "Estimating"
+msgstr "جاري الحساب التقريبي"
-#: ../../install_steps_interactive.pm_.c:297
-msgid "Buttons emulation"
-msgstr ""
+#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
+#, c-format
+msgid "Installing"
+msgstr "جاري التثبيت"
-#: ../../install_steps_interactive.pm_.c:299
-msgid "Button 2 Emulation"
-msgstr ""
+#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
+#, c-format
+msgid "Choose the packages you want to install"
+msgstr "اختر الحزم التي تريد تثبيتها"
-#: ../../install_steps_interactive.pm_.c:300
-msgid "Button 3 Emulation"
-msgstr ""
+#: ../../install_steps_gtk.pm:1
+#, c-format
+msgid "Minimal install"
+msgstr "تثبيت مصغّر"
-#: ../../install_steps_interactive.pm_.c:321
-msgid "Configuring PCMCIA cards..."
-msgstr ""
+#: ../../install_steps_gtk.pm:1
+#, c-format
+msgid "Updating package selection"
+msgstr "جاري تحديث اختيار الحزم"
-#: ../../install_steps_interactive.pm_.c:321
-msgid "PCMCIA"
-msgstr "PCMCIA"
+#: ../../install_steps_gtk.pm:1
+#, c-format
+msgid "Load/Save on floppy"
+msgstr "حمّل/احفظ على قرص مرن"
-#: ../../install_steps_interactive.pm_.c:328
-msgid "Configuring IDE"
-msgstr ""
+#: ../../install_steps_gtk.pm:1 ../../interactive.pm:1 ../../my_gtk.pm:1
+#: ../../ugtk2.pm:1 ../../interactive/newt.pm:1
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "<- Previous"
+msgstr "<- السابق "
-#: ../../install_steps_interactive.pm_.c:328
-msgid "IDE"
-msgstr "IDE"
+#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "Install"
+msgstr "ثبّت"
-#: ../../install_steps_interactive.pm_.c:345
-msgid "No partition available"
-msgstr ""
+#: ../../install_steps_gtk.pm:1
+#, c-format
+msgid "Show automatically selected packages"
+msgstr "أظهر الحزم المختارة ألياً"
-#: ../../install_steps_interactive.pm_.c:348
-msgid "Scanning partitions to find mount points"
-msgstr ""
+#: ../../install_steps_gtk.pm:1
+#, c-format
+msgid "You can't unselect this package. It must be upgraded"
+msgstr "لا يمكنك ازالة اختيار هذه الحزمة. يجب ترقيتها"
-#: ../../install_steps_interactive.pm_.c:356
-msgid "Choose the mount points"
+#: ../../install_steps_gtk.pm:1
+#, c-format
+msgid ""
+"This package must be upgraded.\n"
+"Are you sure you want to deselect it?"
msgstr ""
+"يجب ترقية هذه الحزمة.\n"
+"هل أنت متأكد أنك لا تريد اختيارها؟"
+
+#: ../../install_steps_gtk.pm:1
+#, c-format
+msgid "You can't unselect this package. It is already installed"
+msgstr "لا يمكن ازالة اختيار هذه الحزم. انها مثبتة مسبقاً"
-#: ../../install_steps_interactive.pm_.c:386
+#: ../../install_steps_gtk.pm:1
+#, c-format
+msgid "This is a mandatory package, it can't be unselected"
+msgstr "هذه الحزمة الزامية, لا يمكن عدم اختيارها"
+
+#: ../../install_steps_gtk.pm:1
+#, c-format
+msgid "You can't select/unselect this package"
+msgstr "لا يمكنك اختيار/ازالة اختيار هذه الحزمة"
+
+#: ../../install_steps_gtk.pm:1
+#, c-format
+msgid "The following packages are going to be removed"
+msgstr "سيتم حذف الحزم التالية"
+
+#: ../../install_steps_gtk.pm:1
+#, c-format
+msgid "The following packages are going to be installed"
+msgstr "سيتم تثبيت الحزم التالية"
+
+#: ../../install_steps_gtk.pm:1
+#, c-format
msgid ""
-"No free space for 1MB bootstrap! Install will continue, but to boot your "
-"system, you'll need to create the bootstrap partition in DiskDrake"
-msgstr ""
+"You can't select this package as there is not enough space left to install it"
+msgstr "لا يمكنك اختيار هذه الحزمة لأنه لا يوجد مساحة كافية متبقية لتثبيتها"
-#: ../../install_steps_interactive.pm_.c:395
-msgid "No root partition found to perform an upgrade"
-msgstr ""
+#: ../../install_steps_gtk.pm:1
+#, c-format
+msgid "Importance: %s\n"
+msgstr "الأهمية: %s\n"
-#: ../../install_steps_interactive.pm_.c:396
-msgid "Root Partition"
-msgstr ""
+#: ../../install_steps_gtk.pm:1
+#, c-format
+msgid "Size: %d KB\n"
+msgstr "الحجم: %d كيلوبايت\n"
-#: ../../install_steps_interactive.pm_.c:397
-msgid "What is the root partition (/) of your system?"
-msgstr ""
+#: ../../install_steps_gtk.pm:1
+#, c-format
+msgid "Version: %s\n"
+msgstr "الإصدار: %s\n"
-#: ../../install_steps_interactive.pm_.c:411
-msgid "You need to reboot for the partition table modifications to take place"
-msgstr ""
+#: ../../install_steps_gtk.pm:1
+#, c-format
+msgid "Name: %s\n"
+msgstr "الإسم: %s\n"
-#: ../../install_steps_interactive.pm_.c:435
-msgid "Choose the partitions you want to format"
-msgstr ""
+#: ../../install_steps_gtk.pm:1
+#, c-format
+msgid "Bad package"
+msgstr "حزمة سيئة"
-#: ../../install_steps_interactive.pm_.c:436
-msgid "Check bad blocks?"
-msgstr ""
+#: ../../install_steps_gtk.pm:1 ../../mouse.pm:1 ../../services.pm:1
+#: ../../diskdrake/hd_gtk.pm:1 ../../standalone/drakbackup:1
+#, c-format
+msgid "Other"
+msgstr "أخرى"
-#: ../../install_steps_interactive.pm_.c:463
-msgid "Formatting partitions"
-msgstr ""
+#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
+#, c-format
+msgid "Total size: %d / %d MB"
+msgstr "الحجم الإجمالي: %d / %d ميغابايت"
-#: ../../install_steps_interactive.pm_.c:465
+#: ../../install_steps_gtk.pm:1 ../../interactive.pm:1 ../../my_gtk.pm:1
+#: ../../ugtk2.pm:1 ../../interactive/newt.pm:1
+#: ../../printer/printerdrake.pm:1
#, c-format
-msgid "Creating and formatting file %s"
-msgstr ""
+msgid "Next ->"
+msgstr "التالي ->"
-#: ../../install_steps_interactive.pm_.c:470
+#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
#, c-format
-msgid ""
-"Failed to check filesystem %s. Do you want to repair the errors? (beware, "
-"you can loose data)"
-msgstr ""
+msgid "Individual package selection"
+msgstr "اختيار مفرد للحزم"
-#: ../../install_steps_interactive.pm_.c:472
-msgid "Not enough swap space to fulfill installation, please add some"
-msgstr ""
+#: ../../install_steps_gtk.pm:1 ../../ugtk2.pm:1
+#: ../../Xconfig/resolution_and_depth.pm:1 ../../diskdrake/hd_gtk.pm:1
+#: ../../interactive/gtk.pm:1 ../../standalone/drakTermServ:1
+#: ../../standalone/drakbackup:1 ../../standalone/drakbug:1
+#, c-format
+msgid "Help"
+msgstr "مساعدة"
-#: ../../install_steps_interactive.pm_.c:479
-msgid "Looking for available packages and rebuilding rpm database..."
-msgstr ""
+#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
+#, c-format
+msgid "Package Group Selection"
+msgstr "اختيار مجموعات الحزم"
-#: ../../install_steps_interactive.pm_.c:480
-msgid "Looking for available packages..."
+#: ../../install_steps_gtk.pm:1
+#, c-format
+msgid ""
+"Your system is low on resources. You may have some problem installing\n"
+"Mandrake Linux. If that occurs, you can try a text install instead. For "
+"this,\n"
+"press `F1' when booting on CDROM, then enter `text'."
msgstr ""
+"النظام لديك قليل الموارد. قد تقابل بعض المشاكل قي تثبيت\n"
+"Mandrake Linux. اذا حدث ذلك, يمكنك التثبيت في وضع نصي, لهذا الغرض,\n"
+"اضغط `F1' عند الإقلاع من القرص المدمج, و اكتب `text'."
-#: ../../install_steps_interactive.pm_.c:483
-#, fuzzy
-msgid "Looking at packages already installed..."
-msgstr "اختر الحزم التي ستُثبَّت"
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "Save packages selection"
+msgstr "احفظ اختيار الحزم"
-#: ../../install_steps_interactive.pm_.c:487
-msgid "Finding packages to upgrade..."
-msgstr ""
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "Automated"
+msgstr "آلي"
-#: ../../install_steps_interactive.pm_.c:505
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "Replay"
+msgstr "اعادة"
+
+#: ../../install_steps_interactive.pm:1
#, c-format
msgid ""
-"Your system does not have enough space left for installation or upgrade (%d "
-"> %d)"
+"The auto install can be fully automated if wanted,\n"
+"in that case it will take over the hard drive!!\n"
+"(this is meant for installing on another box).\n"
+"\n"
+"You may prefer to replay the installation.\n"
msgstr ""
+"التثبيت الآلي قد يتم بشكل تلقائي اذا أردت ذلك,\n"
+"في هذه الحالة سيستولي على كل القرص الصلب لديك!!\n"
+"(هذا بالنسبة للتثبيت على جهاز آخر).\n"
+"\n"
+"ربما تفضل اعادة عملية التثبيت.\n"
-#: ../../install_steps_interactive.pm_.c:541
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "Generate auto install floppy"
+msgstr "انشئ قرص تثبيت آلي"
+
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "Reboot"
+msgstr "اعادة التشغيل"
+
+#: ../../install_steps_interactive.pm:1
+#, c-format
msgid ""
-"Please choose load or save package selection on floppy.\n"
-"The format is the same as auto_install generated floppies."
+"Some steps are not completed.\n"
+"\n"
+"Do you really want to quit now?"
msgstr ""
+"بعض الخطوات لم يتم تكملتها.\n"
+"\n"
+"هل تريد الخروج الآن فعلاً؟"
-#: ../../install_steps_interactive.pm_.c:543
-msgid "Load from floppy"
-msgstr ""
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "Creating auto install floppy..."
+msgstr "جاري انشاء قرص التثبيت الآلي..."
-#: ../../install_steps_interactive.pm_.c:543
-msgid "Save on floppy"
-msgstr ""
+#: ../../install_steps_interactive.pm:1 ../../standalone/drakautoinst:1
+#, c-format
+msgid "Insert a blank floppy in drive %s"
+msgstr "أدخل قرص مرن فارغ في السواقة %s"
-#: ../../install_steps_interactive.pm_.c:547
-msgid "Loading from floppy"
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid ""
+"You may need to change your Open Firmware boot-device to\n"
+" enable the bootloader. If you don't see the bootloader prompt at\n"
+" reboot, hold down Command-Option-O-F at reboot and enter:\n"
+" setenv boot-device %s,\\\\:tbxi\n"
+" Then type: shut-down\n"
+"At your next boot you should see the bootloader prompt."
msgstr ""
+"You may need to change your Open Firmware boot-device to\n"
+" enable the bootloader. If you don't see the bootloader prompt at\n"
+" reboot, hold down Command-Option-O-F at reboot and enter:\n"
+" setenv boot-device %s,\\\\:tbxi\n"
+" Then type: shut-down\n"
+"At your next boot you should see the bootloader prompt."
-#: ../../install_steps_interactive.pm_.c:547
-msgid "Package selection"
-msgstr ""
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "Installation of bootloader failed. The following error occured:"
+msgstr "فشل تثبيت محمّل الإقلاع. ظهر الخطأ التالي:"
-#: ../../install_steps_interactive.pm_.c:552
-msgid "Insert a floppy containing package selection"
-msgstr ""
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "Installing bootloader"
+msgstr "جاري تثبين محمّل الإقلاع"
-#: ../../install_steps_interactive.pm_.c:634
-msgid "Selected size is larger than available space"
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid ""
+"Error installing aboot, \n"
+"try to force installation even if that destroys the first partition?"
msgstr ""
+"خطأ أثناء تثبيت aboot, \n"
+"حاول الإجبار على التثبيت حتى و لو أدي ذلك لتدمير التجزئة الأولى؟"
-#: ../../install_steps_interactive.pm_.c:649
-msgid "Type of install"
-msgstr ""
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "Do you want to use aboot?"
+msgstr "هل تريد استخدام aboot؟"
-#: ../../install_steps_interactive.pm_.c:650
+#: ../../install_steps_interactive.pm:1
+#, c-format
msgid ""
-"You haven't selected any group of packages.\n"
-"Please choose the minimal installation you want:"
+"You appear to have an OldWorld or Unknown\n"
+" machine, the yaboot bootloader will not work for you.\n"
+"The install will continue, but you'll\n"
+" need to use BootX or some other means to boot your machine"
msgstr ""
+"You appear to have an OldWorld or Unknown\n"
+" machine, the yaboot bootloader will not work for you.\n"
+"The install will continue, but you'll\n"
+" need to use BootX or some other means to boot your machine"
-#: ../../install_steps_interactive.pm_.c:653
-msgid "With X"
-msgstr ""
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "Preparing bootloader..."
+msgstr "جاري تحضير محمّل الإقلاع..."
-#: ../../install_steps_interactive.pm_.c:655
-msgid "With basic documentation (recommended!)"
-msgstr ""
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "Domain Admin Password"
+msgstr "كلمة المرور لمدير النطاق"
-#: ../../install_steps_interactive.pm_.c:656
-msgid "Truly minimal install (especially no urpmi)"
-msgstr ""
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "Domain Admin User Name"
+msgstr "اسم المستخدم لمدير النطاق"
+
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "Windows Domain"
+msgstr "نطاق Windows"
-#: ../../install_steps_interactive.pm_.c:741
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "Authentication Windows Domain"
+msgstr "تحقق نطاق Windows"
+
+#: ../../install_steps_interactive.pm:1
+#, c-format
msgid ""
-"If you have all the CDs in the list below, click Ok.\n"
-"If you have none of those CDs, click Cancel.\n"
-"If only some CDs are missing, unselect them, then click Ok."
+"For this to work for a W2K PDC, you will probably need to have the admin "
+"run: C:\\>net localgroup \"Pre-Windows 2000 Compatible Access\" everyone /"
+"add and reboot the server.\n"
+"You will also need the username/password of a Domain Admin to join the "
+"machine to the Windows(TM) domain.\n"
+"If networking is not yet enabled, Drakx will attempt to join the domain "
+"after the network setup step.\n"
+"Should this setup fail for some reason and domain authentication is not "
+"working, run 'smbpasswd -j DOMAIN -U USER%%PASSWORD' using your Windows(tm) "
+"Domain, and Admin Username/Password, after system boot.\n"
+"The command 'wbinfo -t' will test whether your authentication secrets are "
+"good."
msgstr ""
+"For this to work for a W2K PDC, you will probably need to have the admin "
+"run: C:\\>net localgroup \"Pre-Windows 2000 Compatible Access\" everyone /"
+"add and reboot the server.\n"
+"You will also need the username/password of a Domain Admin to join the "
+"machine to the Windows(TM) domain.\n"
+"If networking is not yet enabled, Drakx will attempt to join the domain "
+"after the network setup step.\n"
+"Should this setup fail for some reason and domain authentication is not "
+"working, run 'smbpasswd -j DOMAIN -U USER%%PASSWORD' using your Windows(tm) "
+"Domain, and Admin Username/Password, after system boot.\n"
+"The command 'wbinfo -t' will test whether your authentication secrets are "
+"good."
-#: ../../install_steps_interactive.pm_.c:746
+#: ../../install_steps_interactive.pm:1
#, c-format
-msgid "Cd-Rom labeled \"%s\""
-msgstr ""
+msgid "NIS Server"
+msgstr "خادم NIS"
-#: ../../install_steps_interactive.pm_.c:767
-msgid "Preparing installation"
-msgstr ""
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "NIS Domain"
+msgstr "نطاق NIS"
-#: ../../install_steps_interactive.pm_.c:776
+#: ../../install_steps_interactive.pm:1
#, c-format
-msgid ""
-"Installing package %s\n"
-"%d%%"
-msgstr ""
+msgid "Authentication NIS"
+msgstr "تحقق NIS"
-#: ../../install_steps_interactive.pm_.c:822
-msgid "Post-install configuration"
-msgstr ""
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "NIS"
+msgstr "NIS"
-#: ../../install_steps_interactive.pm_.c:828
+#: ../../install_steps_interactive.pm:1
#, c-format
-msgid "Please insert the Boot floppy used in drive %s"
-msgstr ""
+msgid "LDAP Server"
+msgstr "خادم LDAP"
-#: ../../install_steps_interactive.pm_.c:834
+#: ../../install_steps_interactive.pm:1
#, c-format
-msgid "Please insert the Update Modules floppy in drive %s"
-msgstr ""
+msgid "LDAP Base dn"
+msgstr "LDAP Base dn"
-#: ../../install_steps_interactive.pm_.c:861
-msgid ""
-"You now have the opportunity to download updated packages. These packages\n"
-"have been released after the distribution was released. They may\n"
-"contain security or bug fixes.\n"
-"\n"
-"To download these packages, you will need to have a working Internet \n"
-"connection.\n"
-"\n"
-"Do you want to install the updates ?"
-msgstr ""
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "Authentication LDAP"
+msgstr "تحقق LDAP"
-#: ../../install_steps_interactive.pm_.c:876
-msgid ""
-"Contacting Mandrake Linux web site to get the list of available mirrors..."
-msgstr ""
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "LDAP"
+msgstr "LDAP"
-#: ../../install_steps_interactive.pm_.c:881
-msgid "Choose a mirror from which to get the packages"
-msgstr ""
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "Local files"
+msgstr "ملفات محلية"
-#: ../../install_steps_interactive.pm_.c:890
-msgid "Contacting the mirror to get the list of available packages..."
-msgstr ""
+#: ../../install_steps_interactive.pm:1 ../../network/modem.pm:1
+#: ../../standalone/drakconnect:1 ../../standalone/logdrake:1
+#, c-format
+msgid "Authentication"
+msgstr "التحقق"
-#: ../../install_steps_interactive.pm_.c:918
-msgid "Which is your timezone?"
-msgstr ""
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "This password is too short (it must be at least %d characters long)"
+msgstr "كلمة المرو هذه قصيرة جداً (يجب أن تكون %d رموز على الأقل)"
-#: ../../install_steps_interactive.pm_.c:923
-msgid "Hardware clock set to GMT"
-msgstr ""
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "No password"
+msgstr "لا كلمة مرور"
-#: ../../install_steps_interactive.pm_.c:924
-msgid "Automatic time synchronization (using NTP)"
-msgstr ""
+#: ../../install_steps_interactive.pm:1 ../../steps.pm:1
+#, c-format
+msgid "Set root password"
+msgstr "عيّن كلمة مرور المستخدم الجذر"
-#: ../../install_steps_interactive.pm_.c:931
-msgid "NTP Server"
-msgstr "خادم NTP"
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "You have not configured X. Are you sure you really want this?"
+msgstr "لم تقم بتهيئة خادم X. هل أنت متأكد أنك تريد ذلك؟"
-#: ../../install_steps_interactive.pm_.c:965
-#: ../../install_steps_interactive.pm_.c:972
-msgid "Remote CUPS server"
-msgstr ""
+#: ../../install_steps_interactive.pm:1 ../../services.pm:1
+#, c-format
+msgid "Services: %d activated for %d registered"
+msgstr "الخدمات: %d منشّطة لـ %d مسجلة"
-#: ../../install_steps_interactive.pm_.c:966
-msgid "No printer"
-msgstr ""
+#: ../../install_steps_interactive.pm:1 ../../services.pm:1
+#, c-format
+msgid "Services"
+msgstr "الخدمات"
-#: ../../install_steps_interactive.pm_.c:982
-msgid "Do you have an ISA sound card?"
-msgstr "بطاقة الصّوت ISA هل عندك عند"
+#: ../../install_steps_interactive.pm:1 ../../services.pm:1
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "System"
+msgstr "النظام"
-#: ../../install_steps_interactive.pm_.c:984
-msgid "Run \"sndconfig\" after installation to configure your sound card"
-msgstr ""
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "Bootloader"
+msgstr "محمّل الإقلاع"
+
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "Boot"
+msgstr "الإقلاع"
+
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "disabled"
+msgstr "معطل"
+
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "activated"
+msgstr "منشّط"
+
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "Firewall"
+msgstr "جدار ناري"
+
+#: ../../install_steps_interactive.pm:1 ../../steps.pm:1
+#, c-format
+msgid "Security"
+msgstr "الأمن"
+
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "Security Level"
+msgstr "مستوى الأمن"
+
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "not configured"
+msgstr "غير معدّ"
-#: ../../install_steps_interactive.pm_.c:986
+#: ../../install_steps_interactive.pm:1 ../../standalone/drakbackup:1
+#, c-format
+msgid "Network"
+msgstr "الشبكة"
+
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "Network & Internet"
+msgstr "الشبكة و الإنترنت"
+
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "Graphical interface"
+msgstr "الواجهة الرسومية"
+
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "Hardware"
+msgstr "العتاد"
+
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "TV card"
+msgstr "بطاقة التلفاز"
+
+#: ../../install_steps_interactive.pm:1
+#, c-format
msgid "No sound card detected. Try \"harddrake\" after installation"
-msgstr ""
+msgstr "لم يتم ايجاد بطاقة الصوت. حاول تشغيل \"harddrake\" بعد التثبيت"
-#: ../../install_steps_interactive.pm_.c:991 ../../steps.pm_.c:27
-msgid "Summary"
-msgstr ""
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "Run \"sndconfig\" after installation to configure your sound card"
+msgstr "شغّل \"sndconfig\" بعد التثبيت لتهيئة بطاقة الصوت الخاصة بك"
-#: ../../install_steps_interactive.pm_.c:994
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "Do you have an ISA sound card?"
+msgstr "هل لديك بطاقة صوت ISA؟"
+
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "Sound card"
+msgstr "بطاقة الصوت"
+
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "Remote CUPS server"
+msgstr "خادم CUPS بعيد"
+
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "No printer"
+msgstr "لا طابعة"
+
+#: ../../install_steps_interactive.pm:1 ../../harddrake/data.pm:1
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Printer"
+msgstr "طابعة"
+
+#: ../../install_steps_interactive.pm:1 ../../harddrake/data.pm:1
+#, c-format
msgid "Mouse"
msgstr "الفأرة"
-#: ../../install_steps_interactive.pm_.c:996
+#: ../../install_steps_interactive.pm:1
+#, c-format
msgid "Timezone"
-msgstr ""
+msgstr "المنطقة الزمنية"
-#: ../../install_steps_interactive.pm_.c:997
-#: ../../printer/printerdrake.pm_.c:2759 ../../printer/printerdrake.pm_.c:2844
-msgid "Printer"
-msgstr "طابعة"
+#: ../../install_steps_interactive.pm:1 ../../standalone/keyboarddrake:1
+#, c-format
+msgid "Keyboard"
+msgstr "لوحة المفاتيح"
-#: ../../install_steps_interactive.pm_.c:999
-msgid "ISDN card"
-msgstr ""
+#: ../../install_steps_interactive.pm:1 ../../steps.pm:1
+#, c-format
+msgid "Summary"
+msgstr "ملخص"
-#: ../../install_steps_interactive.pm_.c:1003
-#: ../../install_steps_interactive.pm_.c:1009
-msgid "Sound card"
-msgstr ""
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "NTP Server"
+msgstr "خادم NTP"
-#: ../../install_steps_interactive.pm_.c:1012
-msgid "TV card"
-msgstr ""
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "Automatic time synchronization (using NTP)"
+msgstr "تزامن وقت آلي (باستخدام NTP)"
-#: ../../install_steps_interactive.pm_.c:1055
-#: ../../install_steps_interactive.pm_.c:1080
-#: ../../install_steps_interactive.pm_.c:1084
-msgid "LDAP"
-msgstr ""
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "Hardware clock set to GMT"
+msgstr "ساعة الجهاز مضبوطة على توقيت غرينتش"
-#: ../../install_steps_interactive.pm_.c:1056
-#: ../../install_steps_interactive.pm_.c:1080
-#: ../../install_steps_interactive.pm_.c:1093
-msgid "NIS"
-msgstr ""
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "Which is your timezone?"
+msgstr "ما هي منطقتك الزمنية؟"
-#: ../../install_steps_interactive.pm_.c:1057
-#: ../../install_steps_interactive.pm_.c:1080
-#: ../../install_steps_interactive.pm_.c:1101
-#: ../../install_steps_interactive.pm_.c:1107
-#, fuzzy
-msgid "Windows Domain"
-msgstr "احصل على خطوط Windows"
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "Contacting the mirror to get the list of available packages..."
+msgstr "جاري الإتصال بالمرآة للحصول على قائمة بالحزم المتوفرة..."
-#: ../../install_steps_interactive.pm_.c:1058
-#: ../../install_steps_interactive.pm_.c:1080
-msgid "Local files"
-msgstr ""
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "Choose a mirror from which to get the packages"
+msgstr "اختر مرآة سيتم من خلالها تنزيل الحزم"
-#: ../../install_steps_interactive.pm_.c:1067
-#: ../../install_steps_interactive.pm_.c:1068 ../../steps.pm_.c:24
-msgid "Set root password"
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid ""
+"Contacting Mandrake Linux web site to get the list of available mirrors..."
msgstr ""
+"جاري الإتصال بموقع Mandrake Linux للحصول على قائمة بالمرايا المتوفرة..."
-#: ../../install_steps_interactive.pm_.c:1069
-msgid "No password"
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid ""
+"You now have the opportunity to download updated packages. These packages\n"
+"have been updated after the distribution was released. They may\n"
+"contain security or bug fixes.\n"
+"\n"
+"To download these packages, you will need to have a working Internet \n"
+"connection.\n"
+"\n"
+"Do you want to install the updates ?"
msgstr ""
+"تستطيع الآن تنزيل الحزم المحدّثة. هذه الحزم\n"
+"تم تحديثها بعد اصدار التوزيعة. قد\n"
+"تحتوي على اصلاحات أمنية أو اصلاحات لعيوب برمجية.\n"
+"\n"
+"لتنزيل هذه الحزم, تحتاج الى أن تكون لديك اتصال \n"
+"بالإنترنت.\n"
+"\n"
+"هل تريد تنزيل هذه التحديثات ؟"
-#: ../../install_steps_interactive.pm_.c:1074
+#: ../../install_steps_interactive.pm:1
#, c-format
-msgid "This password is too short (it must be at least %d characters long)"
-msgstr ""
+msgid "Please insert the Update Modules floppy in drive %s"
+msgstr "فضلاً أدخل قرص وحدات التحديث في السواقة %s"
-#: ../../install_steps_interactive.pm_.c:1080 ../../network/modem.pm_.c:72
-#: ../../standalone/drakconnect_.c:623 ../../standalone/logdrake_.c:144
-msgid "Authentication"
-msgstr "التحقق"
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "Please insert the Boot floppy used in drive %s"
+msgstr "فضلاً أدخل قرص الإقلاع الذي تستخدمه في السواقة %s"
-#: ../../install_steps_interactive.pm_.c:1088
-msgid "Authentication LDAP"
-msgstr ""
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "Post-install configuration"
+msgstr "تهيئة ما بعد التثبيت"
-#: ../../install_steps_interactive.pm_.c:1089
-msgid "LDAP Base dn"
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid ""
+"Installing package %s\n"
+"%d%%"
msgstr ""
+"جاري تثبيت الحزمة %s\n"
+"%d%%"
-#: ../../install_steps_interactive.pm_.c:1090
-msgid "LDAP Server"
-msgstr "خادم LDAP"
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "Preparing installation"
+msgstr "جاري التحضير للتثبيت"
-#: ../../install_steps_interactive.pm_.c:1096
-msgid "Authentication NIS"
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "Cd-Rom labeled \"%s\""
+msgstr "القرص المدمج المسمى \"%s\""
+
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid ""
+"If you have all the CDs in the list below, click Ok.\n"
+"If you have none of those CDs, click Cancel.\n"
+"If only some CDs are missing, unselect them, then click Ok."
msgstr ""
+"اذا كانت لديك قل الأقراص في القائمة أدناه, اضغط موافق.\n"
+"اذا لم تمكن لديك أي من هذه الأقراص, اضغط الغاء.\n"
+"اذا كانت بعض هذه الأقراص مفقودة, قم بازالة اختيارهاثم اضغط موافق."
-#: ../../install_steps_interactive.pm_.c:1097
-msgid "NIS Domain"
-msgstr "NIS Domain"
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "Truly minimal install (especially no urpmi)"
+msgstr "تثبيت مصغّر فعلاً (خصوصاً بدون urpmi)"
-#: ../../install_steps_interactive.pm_.c:1098
-msgid "NIS Server"
-msgstr " الخادم NIS"
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "With basic documentation (recommended!)"
+msgstr "مع وثائق المساعدة الأساسية (مفضّل)"
-#: ../../install_steps_interactive.pm_.c:1104
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "With X"
+msgstr "مع X"
+
+#: ../../install_steps_interactive.pm:1
+#, c-format
msgid ""
-"For this to work for a W2K PDC, you will probably need to have the admin "
-"run: C:\\>net localgroup \"Pre-Windows 2000 Compatible Access\" everyone /"
-"add and reboot the server.\n"
-"You will also need the username/password of a Domain Admin to join the "
-"machine to the Windows(TM) domain.\n"
-"If networking is not yet enabled, Drakx will attempt to join the domain "
-"after the network setup step.\n"
-"Should this setup fail for some reason and domain authentication is not "
-"working, run 'smbpasswd -j DOMAIN -U USER%PASSWORD' using your Windows(tm) "
-"Domain, and Admin Username/Password, after system boot.\n"
-"The command 'wbinfo -t' will test whether your authentication secrets are "
-"good."
+"You haven't selected any group of packages.\n"
+"Please choose the minimal installation you want:"
msgstr ""
+"لم تختر أي مجموعة من الحزم.\n"
+"فضلاً اختر التثبيت المصغر الذي تريده:"
-#: ../../install_steps_interactive.pm_.c:1106
-#, fuzzy
-msgid "Authentication Windows Domain"
-msgstr "التحقق"
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "Type of install"
+msgstr "نوع التثبيت"
-#: ../../install_steps_interactive.pm_.c:1108
-#, fuzzy
-msgid "Domain Admin User Name"
-msgstr "Domain name"
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "Selected size is larger than available space"
+msgstr "الحجم المختار أكبر من المساحة المتوفرة"
-#: ../../install_steps_interactive.pm_.c:1109
-msgid "Domain Admin Password"
-msgstr ""
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "Insert a floppy containing package selection"
+msgstr "أدخهل القرص المرن المحتوى على اختيارات الحزم"
-#: ../../install_steps_interactive.pm_.c:1144
-msgid ""
-"A custom bootdisk provides a way of booting into your Linux system without\n"
-"depending on the normal bootloader. This is useful if you don't want to "
-"install\n"
-"SILO on your system, or another operating system removes SILO, or SILO "
-"doesn't\n"
-"work with your hardware configuration. A custom bootdisk can also be used "
-"with\n"
-"the Mandrake rescue image, making it much easier to recover from severe "
-"system\n"
-"failures.\n"
-"\n"
-"If you want to create a bootdisk for your system, insert a floppy in the "
-"first\n"
-"drive and press \"Ok\"."
-msgstr ""
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "Loading from floppy"
+msgstr "جاري التحميل من القرص المرن"
-#: ../../install_steps_interactive.pm_.c:1160
-msgid "First floppy drive"
-msgstr ""
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "Package selection"
+msgstr "اختيار الحزم"
-#: ../../install_steps_interactive.pm_.c:1161
-msgid "Second floppy drive"
-msgstr "المدخل المرن الثّاني"
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "Save on floppy"
+msgstr "احفظ على قرص مرن"
-#: ../../install_steps_interactive.pm_.c:1162
-#: ../../printer/printerdrake.pm_.c:2397
-msgid "Skip"
-msgstr "تخطي"
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "Load from floppy"
+msgstr "حمّل من قرص مرن"
-#: ../../install_steps_interactive.pm_.c:1167
+#: ../../install_steps_interactive.pm:1
#, c-format
msgid ""
-"A custom bootdisk provides a way of booting into your Linux system without\n"
-"depending on the normal bootloader. This is useful if you don't want to "
-"install\n"
-"LILO (or grub) on your system, or another operating system removes LILO, or "
-"LILO doesn't\n"
-"work with your hardware configuration. A custom bootdisk can also be used "
-"with\n"
-"the Mandrake rescue image, making it much easier to recover from severe "
-"system\n"
-"failures. Would you like to create a bootdisk for your system?\n"
-"%s"
+"Please choose load or save package selection on floppy.\n"
+"The format is the same as auto_install generated floppies."
msgstr ""
+"فضلاُ اختر حفظ أو تحميل اختياراتك للحزم من القرص المرن.\n"
+"النسق مشابه لأقراص التثبيت الآلي المرنة."
-#: ../../install_steps_interactive.pm_.c:1173
+#: ../../install_steps_interactive.pm:1
+#, c-format
msgid ""
-"\n"
-"\n"
-"(WARNING! You're using XFS for your root partition,\n"
-"creating a bootdisk on a 1.44 Mb floppy will probably fail,\n"
-"because XFS needs a very large driver)."
-msgstr ""
+"Your system does not have enough space left for installation or upgrade (%d "
+"> %d)"
+msgstr "لا يوجد في نظامك مساحة متبقة تكفي للتثبيت أو الترقية (%d > %d)"
-#: ../../install_steps_interactive.pm_.c:1181
-msgid "Sorry, no floppy drive available"
-msgstr "آسف , لا مدخل مرن متاح"
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "Finding packages to upgrade..."
+msgstr "جاري البحث عن الحزم التي ستتم ترقيتها..."
-#: ../../install_steps_interactive.pm_.c:1185
-msgid "Choose the floppy drive you want to use to make the bootdisk"
-msgstr ""
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "Looking at packages already installed..."
+msgstr "جاري التعرف على الحزم المثبتة مسبقاً..."
-#: ../../install_steps_interactive.pm_.c:1189
+#: ../../install_steps_interactive.pm:1
#, c-format
-msgid "Insert a floppy in %s"
-msgstr "أدخل قرص مرن بالدّاخل %s"
+msgid "Looking for available packages..."
+msgstr "جاري العثور على الحزم المتوفرة..."
-#: ../../install_steps_interactive.pm_.c:1192
-msgid "Creating bootdisk..."
-msgstr " إنشاء قرص الا قلا ع "
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "Looking for available packages and rebuilding rpm database..."
+msgstr "جاري البحث عن الحزم المتوفرة و اعداة بناء قاعدة بيانات rpm..."
-#: ../../install_steps_interactive.pm_.c:1199
-msgid "Preparing bootloader..."
-msgstr " bootloader إعداد "
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "Not enough swap space to fulfill installation, please add some"
+msgstr "لا توجد مساحة تبديل كافية للقيام بالتثبيت, فضلاً زد مساحة التبديل"
-#: ../../install_steps_interactive.pm_.c:1210
+#: ../../install_steps_interactive.pm:1
+#, c-format
msgid ""
-"You appear to have an OldWorld or Unknown\n"
-" machine, the yaboot bootloader will not work for you.\n"
-"The install will continue, but you'll\n"
-" need to use BootX to boot your machine"
+"Failed to check filesystem %s. Do you want to repair the errors? (beware, "
+"you can loose data)"
msgstr ""
+"تعذر التأكد من صحة نظام المفات %s. هل تريد تصحيح الأخطاء (كن حذراً, يمكن أن "
+"تخسر بيانات)"
-#: ../../install_steps_interactive.pm_.c:1216
-msgid "Do you want to use aboot?"
-msgstr " aboot هل تريد أن تستخدم "
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "Check bad blocks?"
+msgstr "تحقق من البلوكات السيئة؟"
-#: ../../install_steps_interactive.pm_.c:1219
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "Choose the partitions you want to format"
+msgstr "اختر التجزئات التي تريد تجهيزها"
+
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "You need to reboot for the partition table modifications to take place"
+msgstr "تحتاج الى اعداة التثبيت لتفعيل التعديلات على جدول التجزئات"
+
+#: ../../install_steps_interactive.pm:1
+#, c-format
msgid ""
-"Error installing aboot, \n"
-"try to force installation even if that destroys the first partition?"
+"No free space for 1MB bootstrap! Install will continue, but to boot your "
+"system, you'll need to create the bootstrap partition in DiskDrake"
msgstr ""
+"No free space for 1MB bootstrap! Install will continue, but to boot your "
+"system, you'll need to create the bootstrap partition in DiskDrake"
-#: ../../install_steps_interactive.pm_.c:1226
-msgid "Installing bootloader"
-msgstr "bootloader التّركيب "
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "Choose the mount points"
+msgstr "اختر نقاط التحميل"
-#: ../../install_steps_interactive.pm_.c:1232
-msgid "Installation of bootloader failed. The following error occured:"
-msgstr ""
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "Scanning partitions to find mount points"
+msgstr "جاري عمل مسح للتجزئات لإيجاد نقاط التحميل"
-#: ../../install_steps_interactive.pm_.c:1240
+#: ../../install_steps_interactive.pm:1
#, c-format
-msgid ""
-"You may need to change your Open Firmware boot-device to\n"
-" enable the bootloader. If you don't see the bootloader prompt at\n"
-" reboot, hold down Command-Option-O-F at reboot and enter:\n"
-" setenv boot-device %s,\\\\:tbxi\n"
-" Then type: shut-down\n"
-"At your next boot you should see the bootloader prompt."
-msgstr ""
+msgid "No partition available"
+msgstr "لا توجد تجزئة"
-#: ../../install_steps_interactive.pm_.c:1274
-#: ../../standalone/drakautoinst_.c:76
+#: ../../install_steps_interactive.pm:1
#, c-format
-msgid "Insert a blank floppy in drive %s"
-msgstr ""
+msgid "Configuring IDE"
+msgstr "جاري تهيئة IDE"
-#: ../../install_steps_interactive.pm_.c:1278
-msgid "Creating auto install floppy..."
-msgstr ""
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "IDE"
+msgstr "IDE"
-#: ../../install_steps_interactive.pm_.c:1289
-msgid ""
-"Some steps are not completed.\n"
-"\n"
-"Do you really want to quit now?"
-msgstr ""
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "Configuring PCMCIA cards..."
+msgstr "جاري تهيئة بطاقات PCMCIA..."
-#: ../../install_steps_interactive.pm_.c:1300
+#: ../../install_steps_interactive.pm:1
#, c-format
-msgid ""
-"Congratulations, installation is complete.\n"
-"Remove the boot media and press return to reboot.\n"
-"\n"
-"\n"
-"For information on fixes which are available for this release of Mandrake "
-"Linux,\n"
-"consult the Errata available from:\n"
-"\n"
-"\n"
-"%s\n"
-"\n"
-"\n"
-"Information on configuring your system is available in the post\n"
-"install chapter of the Official Mandrake Linux User's Guide."
-msgstr ""
+msgid "PCMCIA"
+msgstr "PCMCIA"
-#: ../../install_steps_interactive.pm_.c:1313
-#, fuzzy
-msgid "http://www.mandrakelinux.com/en/90errata.php3"
-msgstr "http://www.mandrakesoft.com/sales/contact"
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "Button 3 Emulation"
+msgstr "محاكاة الزر 3"
-#: ../../install_steps_interactive.pm_.c:1318
-msgid "Generate auto install floppy"
-msgstr ""
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "Button 2 Emulation"
+msgstr "محاكاة الزر 2"
-#: ../../install_steps_interactive.pm_.c:1320
-msgid ""
-"The auto install can be fully automated if wanted,\n"
-"in that case it will take over the hard drive!!\n"
-"(this is meant for installing on another box).\n"
-"\n"
-"You may prefer to replay the installation.\n"
-msgstr ""
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "Buttons emulation"
+msgstr "محاكاة الأزرار"
-#: ../../install_steps_interactive.pm_.c:1325
-msgid "Automated"
-msgstr ""
+#: ../../install_steps_interactive.pm:1 ../../standalone/mousedrake:1
+#, c-format
+msgid "Please choose which serial port your mouse is connected to."
+msgstr "فضلاً اختر المنفذ التسلسلي الموصلة به الفأرة"
-#: ../../install_steps_interactive.pm_.c:1325
-msgid "Replay"
-msgstr ""
+#: ../../install_steps_interactive.pm:1 ../../standalone/mousedrake:1
+#, c-format
+msgid "Mouse Port"
+msgstr "منفذ الفأرة"
-#: ../../install_steps_interactive.pm_.c:1328
-msgid "Save packages selection"
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "Please choose your type of mouse."
+msgstr "فضلاً اختر نوع الفأرة."
+
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "Upgrade"
+msgstr "ترقية"
+
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "Upgrade %s"
+msgstr "ترقية %s"
+
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "Is this an install or an upgrade?"
+msgstr "هل هذا تثبيت أم ترقية؟"
+
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "Install/Upgrade"
+msgstr "تثبيت/ترقية"
+
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "Here is the full list of keyboards available"
+msgstr "ها هي قائمة كاملة بكل لوحات المفاتيح المتوفرة"
+
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "Please choose your keyboard layout."
+msgstr "رجاء, اختر لوحة المفاتيح."
+
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "License agreement"
+msgstr "اتفاقية الترخيص"
+
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "default:LTR"
+msgstr "default:RTL"
+
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "An error occurred"
+msgstr "ظهر خطأ"
+
+#: ../../install_steps_newt.pm:1
+#, c-format
+msgid ""
+" <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen "
msgstr ""
+" <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen "
-#: ../../install_steps_newt.pm_.c:20
+#: ../../install_steps_newt.pm:1
#, c-format
msgid "Mandrake Linux Installation %s"
+msgstr "تثبيت Mandrake Linux %s"
+
+#: ../../install_steps.pm:1
+#, c-format
+msgid "No floppy drive available"
+msgstr "لا توجد سواقة أقراص مرنة"
+
+#: ../../install_steps.pm:1
+#, c-format
+msgid "Welcome to %s"
+msgstr "أهلا بكم في %s"
+
+#: ../../install_steps.pm:1
+#, c-format
+msgid ""
+"Some important packages didn't get installed properly.\n"
+"Either your cdrom drive or your cdrom is defective.\n"
+"Check the cdrom on an installed computer using \"rpm -qpl Mandrake/RPMS/*.rpm"
+"\"\n"
msgstr ""
+"لم يتم تثبيت بعض الحزم المهمة بشل صحيح.\n"
+"إما أن سواقة القرص المدمج أو أن القرص المدمج نفسه به عيب ما.\n"
+"تأكد من صحة القرص المدمج على كمبيوتر مثبّت باستخدام الأمر \"rpm -qpl Mandrake/"
+"RPMS/*.rpm\"\n"
-#. -PO This string must fit in a 80-char wide text screen
-#: ../../install_steps_newt.pm_.c:33
+#: ../../install_steps.pm:1
+#, c-format
+msgid "Duplicate mount point %s"
+msgstr "نقطة تحميل مكررّة %s"
+
+#: ../../install_steps.pm:1
+#, c-format
msgid ""
-" <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen "
+"An error occurred, but I don't know how to handle it nicely.\n"
+"Continue at your own risk."
msgstr ""
+"ظهر خطأ و لا أعرف كيف أتعامل معه بأسلوب جيد.\n"
+"تابع على مسؤوليتك."
-#: ../../interactive.pm_.c:87
-msgid "kdesu missing"
-msgstr "kdesu missing"
+#: ../../interactive.pm:1 ../../harddrake/sound.pm:1
+#: ../../standalone/drakxtv:1 ../../standalone/harddrake2:1
+#: ../../standalone/service_harddrake:1
+#, c-format
+msgid "Please wait"
+msgstr "من فضلك انتظر"
-#: ../../interactive.pm_.c:89 ../../interactive.pm_.c:100
-msgid "consolehelper missing"
-msgstr "consolehelper missing"
+#: ../../interactive.pm:1 ../../my_gtk.pm:1 ../../ugtk2.pm:1
+#: ../../Xconfig/resolution_and_depth.pm:1 ../../interactive/http.pm:1
+#: ../../interactive/newt.pm:1 ../../interactive/stdio.pm:1
+#: ../../standalone/drakbackup:1 ../../standalone/draksec:1
+#, c-format
+msgid "Ok"
+msgstr "موافق"
-#: ../../interactive.pm_.c:152
-msgid "Choose a file"
-msgstr "إختر ملف"
+#: ../../interactive.pm:1 ../../my_gtk.pm:1 ../../ugtk2.pm:1
+#: ../../interactive/newt.pm:1
+#, c-format
+msgid "Finish"
+msgstr "إنتهاء"
+
+#: ../../interactive.pm:1 ../../standalone/draksec:1
+#, c-format
+msgid "Basic"
+msgstr "أساسي"
-#: ../../interactive.pm_.c:318
+#: ../../interactive.pm:1
+#, c-format
msgid "Advanced"
msgstr "متقدم"
-#: ../../interactive.pm_.c:319 ../../security/main.pm_.c:117
-msgid "Basic"
-msgstr "Basic"
-
-#: ../../interactive/newt.pm_.c:194 ../../my_gtk.pm_.c:158
-#: ../../printer/printerdrake.pm_.c:2055 ../../ugtk2.pm_.c:434
-msgid "<- Previous"
-msgstr "<-سابق "
+#: ../../interactive.pm:1 ../../interactive/gtk.pm:1
+#, c-format
+msgid "Remove"
+msgstr "احذف"
-#: ../../interactive/newt.pm_.c:194 ../../interactive/newt.pm_.c:196
-#: ../../standalone/drakbackup_.c:4060 ../../standalone/drakbackup_.c:4087
-#: ../../standalone/drakbackup_.c:4117 ../../standalone/drakbackup_.c:4143
-msgid "Next"
-msgstr "التالي"
+#: ../../interactive.pm:1 ../../interactive/gtk.pm:1
+#, c-format
+msgid "Modify"
+msgstr "تعديل"
-#: ../../interactive/stdio.pm_.c:29 ../../interactive/stdio.pm_.c:149
-msgid "Bad choice, try again\n"
-msgstr ""
+#: ../../interactive.pm:1 ../../interactive/gtk.pm:1
+#: ../../standalone/drakbackup:1 ../../standalone/drakfont:1
+#, c-format
+msgid "Add"
+msgstr "اضافة"
-#: ../../interactive/stdio.pm_.c:30 ../../interactive/stdio.pm_.c:150
+#: ../../interactive.pm:1
#, c-format
-msgid "Your choice? (default %s) "
-msgstr "اختيارك ? (default %s) "
+msgid "Choose a file"
+msgstr "إختر ملف"
-#: ../../interactive/stdio.pm_.c:54
+#: ../../keyboard.pm:1
#, c-format
msgid ""
-"Entries you'll have to fill:\n"
-"%s"
+"Here you can choose the key or key combination that will \n"
+"allow switching between the different keyboard layouts\n"
+"(eg: latin and non latin)"
msgstr ""
+"هنا يمكنك اختيار اختصارات لوحة المفاتيح التي \n"
+"ستسمح لك بالتبديل بين لغات لوحة المفاتيح المختلفة\n"
+"(مثلاً: لاتيني و غير لاتيني)"
-#: ../../interactive/stdio.pm_.c:70
+#: ../../keyboard.pm:1
#, c-format
-msgid "Your choice? (0/1, default `%s') "
-msgstr ""
+msgid "Right \"Windows\" key"
+msgstr "مفتاح \"Windows\" الأيمن"
-#: ../../interactive/stdio.pm_.c:95
+#: ../../keyboard.pm:1
#, c-format
-msgid "Button `%s': %s"
-msgstr "Button `%s': %s"
+msgid "Left \"Windows\" key"
+msgstr "مفتاح \"Windows\" الأيسر"
-#: ../../interactive/stdio.pm_.c:96
-msgid "Do you want to click on this button?"
-msgstr "هل تريد الضغط على هذا الزر؟ "
+#: ../../keyboard.pm:1
+#, c-format
+msgid "\"Menu\" key"
+msgstr "مفتاح \"Menu\""
-#: ../../interactive/stdio.pm_.c:105
-msgid " enter `void' for void entry"
-msgstr ""
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Alt and Shift keys simultaneously"
+msgstr "مفاتيح Alt و Shift في نفس الوقت"
-#: ../../interactive/stdio.pm_.c:105
+#: ../../keyboard.pm:1
#, c-format
-msgid "Your choice? (default `%s'%s) "
-msgstr "اختيارك ? (default `%s'%s) "
+msgid "Ctrl and Alt keys simultaneously"
+msgstr "مفاتيح Ctrl و Alt في نفس الوقت"
-#: ../../interactive/stdio.pm_.c:123
+#: ../../keyboard.pm:1
#, c-format
-msgid "=> There are many things to choose from (%s).\n"
-msgstr ""
+msgid "CapsLock key"
+msgstr "مفتاح CapsLock"
-#: ../../interactive/stdio.pm_.c:126
-msgid ""
-"Please choose the first number of the 10-range you wish to edit,\n"
-"or just hit Enter to proceed.\n"
-"Your choice? "
-msgstr ""
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Control and Shift keys simultaneously"
+msgstr "مفاتيح Control و Shift في نفس الوقت"
-#: ../../interactive/stdio.pm_.c:139
+#: ../../keyboard.pm:1
#, c-format
-msgid ""
-"=> Notice, a label changed:\n"
-"%s"
-msgstr ""
+msgid "Both Shift keys simultaneously"
+msgstr "مفتاحيّ Shift في نفس الوقت"
-#: ../../interactive/stdio.pm_.c:146
-msgid "Re-submit"
-msgstr "إعادة تسليم"
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Right Alt key"
+msgstr "مفتاح Alt الأيمن"
-#: ../../keyboard.pm_.c:153 ../../keyboard.pm_.c:188
-msgid "Czech (QWERTZ)"
-msgstr "التشيكية (QWERTZ)"
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Yugoslavian (latin)"
+msgstr "اليوغوسلافية (لاتيني)"
-#: ../../keyboard.pm_.c:154 ../../keyboard.pm_.c:190
-msgid "German"
-msgstr "الألمانية"
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Vietnamese \"numeric row\" QWERTY"
+msgstr "افيتنامية \"صف رقمي\" QWERTY"
-#: ../../keyboard.pm_.c:155
-msgid "Dvorak"
-msgstr "Dvorak"
+#: ../../keyboard.pm:1
+#, c-format
+msgid "US keyboard (international)"
+msgstr "لوحة مفاتيح أمريكية (دولي)"
-#: ../../keyboard.pm_.c:156 ../../keyboard.pm_.c:198
-msgid "Spanish"
-msgstr "الإسبانية"
+#: ../../keyboard.pm:1
+#, c-format
+msgid "US keyboard"
+msgstr "لوحة المفاتيح الأمريكية"
-#: ../../keyboard.pm_.c:157 ../../keyboard.pm_.c:199
-msgid "Finnish"
-msgstr "الفنلندية"
+#: ../../keyboard.pm:1
+#, c-format
+msgid "UK keyboard"
+msgstr "لوحة المفاتيح البريطانية"
-#: ../../keyboard.pm_.c:158 ../../keyboard.pm_.c:200
-msgid "French"
-msgstr "الفرنسية"
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Ukrainian"
+msgstr "الأوكرانية"
-#: ../../keyboard.pm_.c:159 ../../keyboard.pm_.c:233
-msgid "Norwegian"
-msgstr "النرويجية"
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Turkish (modern \"Q\" model)"
+msgstr "التركية (طراز \"Q\" الحديث)"
-#: ../../keyboard.pm_.c:160
-msgid "Polish"
-msgstr "البولندية"
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Turkish (traditional \"F\" model)"
+msgstr "التّركية (طراز \"F\" التقليدي)"
-#: ../../keyboard.pm_.c:161 ../../keyboard.pm_.c:241
-msgid "Russian"
-msgstr "الروسية"
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Tajik keyboard"
+msgstr "لوحة المفاتيح الطاجيكية"
-#: ../../keyboard.pm_.c:163 ../../keyboard.pm_.c:243
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Thai keyboard"
+msgstr "لوحة المفاتيح التايلاندية"
+
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Tamil (Typewriter-layout)"
+msgstr "التاميل (آلة كاتبة)"
+
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Tamil (ISCII-layout)"
+msgstr "التاميل (ISCII)"
+
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Serbian (cyrillic)"
+msgstr "الصربية (سيريلي)"
+
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Slovakian (QWERTY)"
+msgstr "السلوفاكية (QWERTY)"
+
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Slovakian (QWERTZ)"
+msgstr "السلوفاكية (QWERTZ)"
+
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Slovenian"
+msgstr "السلوفينية"
+
+#: ../../keyboard.pm:1
+#, c-format
msgid "Swedish"
msgstr "السويدية"
-#: ../../keyboard.pm_.c:164 ../../keyboard.pm_.c:259
-msgid "UK keyboard"
-msgstr "لوحة المفاتيح البريطانية"
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Russian (Yawerty)"
+msgstr "الرّوسية (Yawerty)"
-#: ../../keyboard.pm_.c:165 ../../keyboard.pm_.c:260
-msgid "US keyboard"
-msgstr "لوحة المفاتيح الأمريكية"
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Russian"
+msgstr "الروسية"
-#: ../../keyboard.pm_.c:167
-msgid "Albanian"
-msgstr "الألبانيةّ"
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Romanian (qwerty)"
+msgstr "الرومانية (qwertz)"
-#: ../../keyboard.pm_.c:168
-msgid "Armenian (old)"
-msgstr "الأرمينية (قديم)"
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Romanian (qwertz)"
+msgstr "الرومانية (qwertz)"
-#: ../../keyboard.pm_.c:169
-msgid "Armenian (typewriter)"
-msgstr "الأرمينية (آلة كاتبة)"
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Canadian (Quebec)"
+msgstr "الكنديّة (كيبيك)"
-#: ../../keyboard.pm_.c:170
-msgid "Armenian (phonetic)"
-msgstr "الأرمينيةّ (صوتي)"
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Portuguese"
+msgstr "البرتغالية"
-#: ../../keyboard.pm_.c:175
-msgid "Azerbaidjani (latin)"
-msgstr "الأذربيجانية (لاتيني)"
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Polish (qwertz layout)"
+msgstr "البولندية (qwertz layout)"
-#: ../../keyboard.pm_.c:177
-msgid "Belgian"
-msgstr "البلجيكية"
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Polish (qwerty layout)"
+msgstr "البولندية (qwerty layout)"
-#: ../../keyboard.pm_.c:178
-#, fuzzy
-msgid "Bengali"
-msgstr "تمكين"
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Norwegian"
+msgstr "النرويجية"
-#: ../../keyboard.pm_.c:179
-msgid "Bulgarian (phonetic)"
-msgstr "البلغارية (صوتية)"
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Dutch"
+msgstr "الهولندية"
-#: ../../keyboard.pm_.c:180
-msgid "Bulgarian (BDS)"
-msgstr "البلغارية (BDS)"
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Maltese (US)"
+msgstr "المالطية (أمريكا)"
-#: ../../keyboard.pm_.c:181
-msgid "Brazilian (ABNT-2)"
-msgstr "البرازيليةّ (ABNT-2)"
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Maltese (UK)"
+msgstr "المالطية (بريطانيا)"
-#: ../../keyboard.pm_.c:184
-#, fuzzy
-msgid "Bosnian"
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Mongolian (cyrillic)"
+msgstr "المنغولية (سيريلية)"
+
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Myanmar (Burmese)"
+msgstr "ميانمار (البورمية)"
+
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Macedonian"
+msgstr "المقدونية"
+
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Malayalam"
+msgstr "المالايالام"
+
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Latvian"
+msgstr "اللاتفية"
+
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Lithuanian \"phonetic\" QWERTY"
+msgstr "الليتوانية \"صوتي\" QWERTY"
+
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Lithuanian \"number row\" QWERTY"
+msgstr "الليتوانية \"صف رقمي\" QWERTY"
+
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Lithuanian AZERTY (new)"
+msgstr "الليتوانية AZERTY (جديد)"
+
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Lithuanian AZERTY (old)"
+msgstr "الليتوانية AZERTY (قديم)"
+
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Laotian"
+msgstr "اللاوسية"
+
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Latin American"
+msgstr "الأمريكية اللاتينية"
+
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Korean keyboard"
+msgstr "لوحة المفاتيح الكورية"
+
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Japanese 106 keys"
+msgstr "اليابانية 106 مفاتيح"
+
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Inuktitut"
+msgstr "اينوكتيتوت"
+
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Italian"
+msgstr "الإيطالية"
+
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Icelandic"
+msgstr "الآيسلاندية"
+
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Iranian"
+msgstr "الإيرانيّة"
+
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Israeli (Phonetic)"
+msgstr "العبرية (صوتية)"
+
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Israeli"
+msgstr "العبرية"
+
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Croatian"
+msgstr "الكرواتية"
+
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Hungarian"
+msgstr "المجرية"
+
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Gurmukhi"
+msgstr "غورموكهي"
+
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Gujarati"
+msgstr "غوجاراتي"
+
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Greek"
+msgstr "اليونانية"
+
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Georgian (\"Latin\" layout)"
+msgstr "الجورجيةّ (التصميم اللاتيني)"
+
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Georgian (\"Russian\" layout)"
+msgstr "الجورجية (التصميم الروسي)"
+
+#: ../../keyboard.pm:1
+#, c-format
+msgid "French"
+msgstr "الفرنسية"
+
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Finnish"
+msgstr "الفنلندية"
+
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Spanish"
+msgstr "الإسبانية"
+
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Estonian"
msgstr "الإستونية"
-#: ../../keyboard.pm_.c:185
-msgid "Belarusian"
-msgstr "البيلاروسية"
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Dvorak (Swedish)"
+msgstr "Dvorak (سويدية)"
-#: ../../keyboard.pm_.c:186
-msgid "Swiss (German layout)"
-msgstr "السويسرية (تصميم ألماني)"
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Dvorak (Norwegian)"
+msgstr "Dvorak (نرويجيةّ)"
-#: ../../keyboard.pm_.c:187
-msgid "Swiss (French layout)"
-msgstr "السويسرية (تصميم فرنسي) "
+# U+200F (RTL mark) has been inserted between "Dvorak" and "(US)", so
+# it displays on screen as "(US) Dvorak", following the same schema
+# as others "Dvorak (xxxx)" with xxx in Arabic that display as "(xxxx) Dvorak"
+# that way the entry is also listed together with the other "Dvorak" entries.
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Dvorak (US)"
+msgstr "Dvorak‏ (US)"
+
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Danish"
+msgstr "الدنماركية"
-#: ../../keyboard.pm_.c:189
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Devanagari"
+msgstr "ديفانغاري"
+
+#: ../../keyboard.pm:1
+#, c-format
+msgid "German (no dead keys)"
+msgstr "الألمانية (لا مفاتيح ميتة)"
+
+#: ../../keyboard.pm:1
+#, c-format
+msgid "German"
+msgstr "الألمانية"
+
+#: ../../keyboard.pm:1
+#, c-format
msgid "Czech (QWERTY)"
msgstr "التشيكية (QWERTY)"
-#: ../../keyboard.pm_.c:191
-msgid "German (no dead keys)"
-msgstr " الألمانيةّ (no dead keys)"
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Czech (QWERTZ)"
+msgstr "التشيكية (QWERTZ)"
-#: ../../keyboard.pm_.c:192
-msgid "Devanagari"
-msgstr ""
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Swiss (French layout)"
+msgstr "السويسرية (تصميم فرنسي)"
-#: ../../keyboard.pm_.c:193
-msgid "Danish"
-msgstr "الدنماركية"
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Swiss (German layout)"
+msgstr "السويسرية (تصميم ألماني)"
-#: ../../keyboard.pm_.c:194
-msgid "Dvorak (US)"
-msgstr "Dvorak (US)"
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Belarusian"
+msgstr "البيلاروسية"
-#: ../../keyboard.pm_.c:195
-msgid "Dvorak (Norwegian)"
-msgstr "Dvorak (نرويجيةّ) "
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Bosnian"
+msgstr "البوسنية"
-#: ../../keyboard.pm_.c:196
-msgid "Dvorak (Swedish)"
-msgstr "Dvorak (سويدية)"
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Brazilian (ABNT-2)"
+msgstr "البرازيلية (ABNT-2)"
-#: ../../keyboard.pm_.c:197
-msgid "Estonian"
-msgstr "الإستونية"
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Bulgarian (BDS)"
+msgstr "البلغارية (BDS)"
-#: ../../keyboard.pm_.c:201
-msgid "Georgian (\"Russian\" layout)"
-msgstr "الجورجية (التصميم الروسي)"
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Bulgarian (phonetic)"
+msgstr "البلغارية (صوتية)"
-#: ../../keyboard.pm_.c:202
-msgid "Georgian (\"Latin\" layout)"
-msgstr "الجورجيةّ (التصميم اللاتيني)"
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Bengali"
+msgstr "البنغالية"
-#: ../../keyboard.pm_.c:203
-msgid "Greek"
-msgstr "اليونانية"
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Belgian"
+msgstr "البلجيكية"
-#: ../../keyboard.pm_.c:204
-msgid "Gujarati"
-msgstr ""
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Azerbaidjani (latin)"
+msgstr "الأذربيجانية (لاتيني)"
-#: ../../keyboard.pm_.c:205
-msgid "Gurmukhi"
-msgstr ""
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Armenian (phonetic)"
+msgstr "الأرمينية (صوتي)"
-#: ../../keyboard.pm_.c:206
-msgid "Hungarian"
-msgstr "المجرية الهنغارية"
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Armenian (typewriter)"
+msgstr "الأرمينية (آلة كاتبة)"
-#: ../../keyboard.pm_.c:207
-msgid "Croatian"
-msgstr "الكرواتية"
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Armenian (old)"
+msgstr "الأرمينية (قديم)"
-#: ../../keyboard.pm_.c:208
-msgid "Israeli"
-msgstr "العبرية"
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Albanian"
+msgstr "الألبانيةّ"
-#: ../../keyboard.pm_.c:209
-msgid "Israeli (Phonetic)"
-msgstr "العبرية (صوتية)"
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Polish"
+msgstr "البولندية"
-#: ../../keyboard.pm_.c:210
-msgid "Iranian"
-msgstr "الإيرانيّة"
+#: ../../keyboard.pm:1
+#, c-format
+msgid "Dvorak"
+msgstr "Dvorak"
-#: ../../keyboard.pm_.c:211
-msgid "Icelandic"
-msgstr "الآيسلاندية"
+#: ../../lang.pm:1
+#, c-format
+msgid "Zimbabwe"
+msgstr "زيمبابوي"
-#: ../../keyboard.pm_.c:212
-msgid "Italian"
-msgstr "الإيطالية"
+#: ../../lang.pm:1
+#, c-format
+msgid "Zambia"
+msgstr "زامبيا"
-#: ../../keyboard.pm_.c:213
-msgid "Inuktitut"
-msgstr ""
+#: ../../lang.pm:1 ../../standalone/drakxtv:1
+#, c-format
+msgid "South Africa"
+msgstr "جنوب أفريقيا "
-#: ../../keyboard.pm_.c:214
-msgid "Japanese 106 keys"
-msgstr "اليابانية 106 مفاتيح"
+#: ../../lang.pm:1
+#, c-format
+msgid "Serbia"
+msgstr "صربيا"
-#: ../../keyboard.pm_.c:217
-msgid "Korean keyboard"
-msgstr "لوحة المفاتيح الكورية"
+#: ../../lang.pm:1
+#, c-format
+msgid "Mayotte"
+msgstr "مايوت"
-#: ../../keyboard.pm_.c:218
-msgid "Latin American"
-msgstr "الأمريكية اللاتينية"
+#: ../../lang.pm:1
+#, c-format
+msgid "Yemen"
+msgstr "اليمن"
-#: ../../keyboard.pm_.c:219
-#, fuzzy
-msgid "Laotian"
-msgstr "اللاتفية"
+#: ../../lang.pm:1
+#, c-format
+msgid "Samoa"
+msgstr "ساموا"
-#: ../../keyboard.pm_.c:220
-msgid "Lithuanian AZERTY (old)"
-msgstr "اللّيتوانيةّ AZERTY ( قديم ) "
+#: ../../lang.pm:1
+#, c-format
+msgid "Wallis and Futuna"
+msgstr "واليس و فوتونا"
-#: ../../keyboard.pm_.c:222
-msgid "Lithuanian AZERTY (new)"
-msgstr "اللّيتوانيّة AZERTY ( جديد ) "
+#: ../../lang.pm:1
+#, c-format
+msgid "Vanuatu"
+msgstr "فاناتو"
-#: ../../keyboard.pm_.c:223
-msgid "Lithuanian \"number row\" QWERTY"
-msgstr "اللّيتوانيةّ \"number row\" QWERTY"
+#: ../../lang.pm:1
+#, c-format
+msgid "Vietnam"
+msgstr "فييتنام"
-#: ../../keyboard.pm_.c:224
-msgid "Lithuanian \"phonetic\" QWERTY"
-msgstr " اللّيتوانيةّ \"phonetic\" QWERTY"
+#: ../../lang.pm:1
+#, c-format
+msgid "Virgin Islands (U.S.)"
+msgstr "الجزر العذراء (الولايات المتحدة)"
-#: ../../keyboard.pm_.c:225
-msgid "Latvian"
-msgstr "اللاتفية"
+#: ../../lang.pm:1
+#, c-format
+msgid "Virgin Islands (British)"
+msgstr "الجزر العذراء (بريطانيا)"
-#: ../../keyboard.pm_.c:226
-msgid "Malayalam"
-msgstr ""
+#: ../../lang.pm:1
+#, c-format
+msgid "Venezuela"
+msgstr "فينزويلا"
-#: ../../keyboard.pm_.c:227
-msgid "Macedonian"
-msgstr "المقدونية"
+#: ../../lang.pm:1
+#, c-format
+msgid "Saint Vincent and the Grenadines"
+msgstr "سانت فينسنت و الغرينادين"
-#: ../../keyboard.pm_.c:228
-msgid "Myanmar (Burmese)"
-msgstr ""
+#: ../../lang.pm:1
+#, c-format
+msgid "Vatican"
+msgstr "الفاتيكان"
-#: ../../keyboard.pm_.c:229
-#, fuzzy
-msgid "Mongolian (cyrillic)"
-msgstr "الصّربيةّ (cyrillic)"
+#: ../../lang.pm:1
+#, c-format
+msgid "Uzbekistan"
+msgstr "أوزبكستان"
-#: ../../keyboard.pm_.c:230
-msgid "Maltese (UK)"
-msgstr ""
+#: ../../lang.pm:1
+#, c-format
+msgid "Uruguay"
+msgstr "أوروغواي"
-#: ../../keyboard.pm_.c:231
-msgid "Maltese (US)"
-msgstr ""
+#: ../../lang.pm:1
+#, c-format
+msgid "United States Minor Outlying Islands"
+msgstr "جزر الولايات المتحدة"
-#: ../../keyboard.pm_.c:232
-msgid "Dutch"
-msgstr "الهولنديّة"
+#: ../../lang.pm:1
+#, c-format
+msgid "Uganda"
+msgstr "أوغندا"
-#: ../../keyboard.pm_.c:234
-msgid "Polish (qwerty layout)"
-msgstr "البولندية (qwerty layout)"
+#: ../../lang.pm:1
+#, c-format
+msgid "Ukraine"
+msgstr "أوكرانيا"
-#: ../../keyboard.pm_.c:235
-msgid "Polish (qwertz layout)"
-msgstr "البولندية (qwertz layout)"
+#: ../../lang.pm:1
+#, c-format
+msgid "Tanzania"
+msgstr "تنزانيا"
-#: ../../keyboard.pm_.c:236
-msgid "Portuguese"
-msgstr "البرتغالية"
+#: ../../lang.pm:1
+#, c-format
+msgid "Taiwan"
+msgstr "تايوان"
-#: ../../keyboard.pm_.c:237
-msgid "Canadian (Quebec)"
-msgstr "الكنديّة (كيبيك)"
+#: ../../lang.pm:1
+#, c-format
+msgid "Tuvalu"
+msgstr "توفالو"
-#: ../../keyboard.pm_.c:239
-msgid "Romanian (qwertz)"
-msgstr "الرّومانيّة (qwertz)"
+#: ../../lang.pm:1
+#, c-format
+msgid "Trinidad and Tobago"
+msgstr "ترينياد و توباجو"
-#: ../../keyboard.pm_.c:240
-msgid "Romanian (qwerty)"
-msgstr "الرّومانيةّ (qwertz)"
+#: ../../lang.pm:1
+#, c-format
+msgid "Turkey"
+msgstr "تركيا"
-#: ../../keyboard.pm_.c:242
-msgid "Russian (Yawerty)"
-msgstr "الرّوسيةّ (Yawerty)"
+#: ../../lang.pm:1
+#, c-format
+msgid "Tonga"
+msgstr "تونجو"
-#: ../../keyboard.pm_.c:244
-msgid "Slovenian"
-msgstr "السلوفينية"
+#: ../../lang.pm:1
+#, c-format
+msgid "Tunisia"
+msgstr "تونس"
-#: ../../keyboard.pm_.c:245
-msgid "Slovakian (QWERTZ)"
-msgstr "السلوفاكية (QWERTZ)"
+#: ../../lang.pm:1
+#, c-format
+msgid "Turkmenistan"
+msgstr "تركمانستان"
-#: ../../keyboard.pm_.c:246
-msgid "Slovakian (QWERTY)"
-msgstr "السلوفاكية (QWERTZ)"
+#: ../../lang.pm:1
+#, c-format
+msgid "East Timor"
+msgstr "تيمور الشرقية"
-#: ../../keyboard.pm_.c:248
-msgid "Serbian (cyrillic)"
-msgstr "الصّربيةّ (cyrillic)"
+#: ../../lang.pm:1
+#, c-format
+msgid "Tokelau"
+msgstr "توكلاو"
-#: ../../keyboard.pm_.c:250
-msgid "Tamil (Unicode)"
-msgstr "التاميل (Unicode)"
+#: ../../lang.pm:1
+#, c-format
+msgid "Tajikistan"
+msgstr "طاجكستان"
-#: ../../keyboard.pm_.c:251
-msgid "Tamil (TSCII)"
-msgstr "التاميل (TSCII)"
+#: ../../lang.pm:1
+#, c-format
+msgid "Thailand"
+msgstr "تايلاند"
-#: ../../keyboard.pm_.c:252
-msgid "Thai keyboard"
-msgstr "لوحة المفاتيح التّايلانديّة"
+#: ../../lang.pm:1
+#, c-format
+msgid "Togo"
+msgstr "توجو"
-#: ../../keyboard.pm_.c:254
-msgid "Tajik keyboard"
-msgstr "لوحة مفاتيح الطّاجيكيّة"
+#: ../../lang.pm:1
+#, c-format
+msgid "French Southern Territories"
+msgstr "مناطق جنوب فرنسا"
-#: ../../keyboard.pm_.c:255
-msgid "Turkish (traditional \"F\" model)"
-msgstr "التّركيّ (traditional \"F\" model)"
+#: ../../lang.pm:1
+#, c-format
+msgid "Chad"
+msgstr "تشاد"
-#: ../../keyboard.pm_.c:256
-msgid "Turkish (modern \"Q\" model)"
-msgstr "التّركيّ (modern \"Q\" model)"
+#: ../../lang.pm:1
+#, c-format
+msgid "Turks and Caicos Islands"
+msgstr "جزر الترك و الكايكوس"
-#: ../../keyboard.pm_.c:258
-msgid "Ukrainian"
-msgstr "الأوكرانية"
+#: ../../lang.pm:1
+#, c-format
+msgid "Swaziland"
+msgstr "سوازيلاند"
-#: ../../keyboard.pm_.c:261
-msgid "US keyboard (international)"
-msgstr "( "
+#: ../../lang.pm:1
+#, c-format
+msgid "Syria"
+msgstr "سورية"
-#: ../../keyboard.pm_.c:262
-msgid "Vietnamese \"numeric row\" QWERTY"
-msgstr "الفيتناميّ \"numeric row\" QWERTY"
+#: ../../lang.pm:1
+#, c-format
+msgid "El Salvador"
+msgstr "السلفادور"
-#: ../../keyboard.pm_.c:263
-msgid "Yugoslavian (latin)"
-msgstr "( يوغسلافيّ ( اللّاتينيّة "
+#: ../../lang.pm:1
+#, c-format
+msgid "Sao Tome and Principe"
+msgstr "ساو تومي و البرينسيب"
-#: ../../keyboard.pm_.c:270
-msgid "Right Alt key"
-msgstr "مفتاح Alt key"
+#: ../../lang.pm:1
+#, c-format
+msgid "Suriname"
+msgstr "سورينام"
-#: ../../keyboard.pm_.c:271
-msgid "Both Shift keys simultaneously"
-msgstr ""
+#: ../../lang.pm:1
+#, c-format
+msgid "Somalia"
+msgstr "الصومال"
-#: ../../keyboard.pm_.c:272
-msgid "Control and Shift keys simultaneously"
-msgstr ""
+#: ../../lang.pm:1
+#, c-format
+msgid "Senegal"
+msgstr "السنغال"
-#: ../../keyboard.pm_.c:273
-msgid "CapsLock key"
-msgstr "مفتاح CapsLock"
+#: ../../lang.pm:1
+#, c-format
+msgid "San Marino"
+msgstr "سان مارينو"
-#: ../../keyboard.pm_.c:274
-msgid "Ctrl and Alt keys simultaneously"
-msgstr "Ctrl and Alt keys simultaneously"
+#: ../../lang.pm:1
+#, c-format
+msgid "Sierra Leone"
+msgstr "سيراليون"
-#: ../../keyboard.pm_.c:275
-msgid "Alt and Shift keys simultaneously"
-msgstr "Alt and Shift keys simultaneously"
+#: ../../lang.pm:1
+#, c-format
+msgid "Slovakia"
+msgstr "سلوفاكيا"
-#: ../../keyboard.pm_.c:276
-msgid "\"Menu\" key"
-msgstr "\"Menu\" key"
+#: ../../lang.pm:1
+#, c-format
+msgid "Svalbard and Jan Mayen Islands"
+msgstr "جزر سفالبارد و جان ماين"
-#: ../../keyboard.pm_.c:277
-msgid "Left \"Windows\" key"
-msgstr "Left \"Windows\" key"
+#: ../../lang.pm:1
+#, c-format
+msgid "Slovenia"
+msgstr "سلوفينيا"
-#: ../../keyboard.pm_.c:278
-msgid "Right \"Windows\" key"
-msgstr "Right \"Windows\" key"
+#: ../../lang.pm:1
+#, c-format
+msgid "Saint Helena"
+msgstr "سانت هيلانة"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Singapore"
+msgstr "سنغافورة"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Sudan"
+msgstr "السودان"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Seychelles"
+msgstr "جزر سيشل"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Solomon Islands"
+msgstr "جزر سليمان"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Saudi Arabia"
+msgstr "السعودية"
-#: ../../loopback.pm_.c:32
+#: ../../lang.pm:1
+#, c-format
+msgid "Rwanda"
+msgstr "رواندا"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Russia"
+msgstr "روسيا"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Romania"
+msgstr "رومانيا"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Reunion"
+msgstr "ريونيون"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Qatar"
+msgstr "قطر"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Palau"
+msgstr "بالاو"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Paraguay"
+msgstr "البارجواي"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Portugal"
+msgstr "البرتغال"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Palestine"
+msgstr "فلسطين"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Puerto Rico"
+msgstr "بورتوريكو"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Pitcairn"
+msgstr "بيتكايرن"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Saint Pierre and Miquelon"
+msgstr "سانت بيير و ميكيلون"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Poland"
+msgstr "بولندا"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Pakistan"
+msgstr "باكستان"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Philippines"
+msgstr "الفيليبين"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Papua New Guinea"
+msgstr "بابوا غينيا الجديدة"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "French Polynesia"
+msgstr "بولينيسيا الفرنسية"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Peru"
+msgstr "بيرو"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Panama"
+msgstr "بنما"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Oman"
+msgstr "عمان"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "New Zealand"
+msgstr "نيوزيلندا"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Niue"
+msgstr "نيوي"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Nauru"
+msgstr "ناورو"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Nepal"
+msgstr "نيبال"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Nicaragua"
+msgstr "نيكاراغوا"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Nigeria"
+msgstr "نيجيريا"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Norfolk Island"
+msgstr "جزيرة نورفولك"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Niger"
+msgstr "النيجر"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "New Caledonia"
+msgstr "نيوكاليدونيا"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Namibia"
+msgstr "ناميبيا"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Mozambique"
+msgstr "موزمبيق"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Malaysia"
+msgstr "ماليزيا"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Mexico"
+msgstr "المكسيك"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Malawi"
+msgstr "مالاوي"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Maldives"
+msgstr "جزر المالديف"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Mauritius"
+msgstr "موريشيوس"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Malta"
+msgstr "مالطة"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Montserrat"
+msgstr "مونتسيرات"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Mauritania"
+msgstr "موريتانيا"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Martinique"
+msgstr "مارتينيك"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Northern Mariana Islands"
+msgstr "جزر ماريانا الشمالية"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Mongolia"
+msgstr "منغوليا"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Myanmar"
+msgstr "ميانمار"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Mali"
+msgstr "مالي"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Macedonia"
+msgstr "مقدونيا"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Marshall Islands"
+msgstr "جزر مارشال"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Madagascar"
+msgstr "مدغشقر"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Moldova"
+msgstr "مولدوفا"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Monaco"
+msgstr "موناكو"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Morocco"
+msgstr "المغرب"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Libya"
+msgstr "ليبيا"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Latvia"
+msgstr "لاتفيا"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Luxembourg"
+msgstr "لوكسمبورغ"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Lithuania"
+msgstr "ليتوانيا"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Lesotho"
+msgstr "ليسوتو"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Liberia"
+msgstr "ليبريا"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Sri Lanka"
+msgstr "سريلانكا"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Liechtenstein"
+msgstr "ليشتنشتاين"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Saint Lucia"
+msgstr "سانت لوسيا"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Lebanon"
+msgstr "لبنان"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Laos"
+msgstr "لاوس"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Kazakhstan"
+msgstr "كازاخستان"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Cayman Islands"
+msgstr "جزر كايمان"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Kuwait"
+msgstr "الكويت"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Korea"
+msgstr "كوريا"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Korea (North)"
+msgstr "كوريا الشمالية"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Saint Kitts and Nevis"
+msgstr "سانت كيتس و نيفيس"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Comoros"
+msgstr "جزر القمر"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Kiribati"
+msgstr "كيريباتي"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Cambodia"
+msgstr "كمبوديا"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Kyrgyzstan"
+msgstr "قيرغيزستان"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Kenya"
+msgstr "كينيا"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Japan"
+msgstr "اليابان"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Jordan"
+msgstr "الأردن"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Jamaica"
+msgstr "جامايكا"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Iceland"
+msgstr "آيسلندا"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Iran"
+msgstr "ايران"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Iraq"
+msgstr "العراق"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "British Indian Ocean Territory"
+msgstr "منطقة جزر المحيط الهادي البريطانية"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "India"
+msgstr "الهند"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Israel"
+msgstr "اسرائيل"
+
+#: ../../lang.pm:1 ../../standalone/drakxtv:1
+#, c-format
+msgid "Ireland"
+msgstr "أيرلندا"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Indonesia"
+msgstr "اندونيسيا"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Hungary"
+msgstr "المجر"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Haiti"
+msgstr "هايتي"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Croatia"
+msgstr "كرواتيا"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Honduras"
+msgstr "هندوراس"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Heard and McDonald Islands"
+msgstr "جزر هيرد و ماكدونالد"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Hong Kong"
+msgstr "هونج كونج"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Guyana"
+msgstr "غويانا"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Guinea-Bissau"
+msgstr "غينيا-بيساو"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Guam"
+msgstr "غوام"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Guatemala"
+msgstr "غواتيمالا"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "South Georgia and the South Sandwich Islands"
+msgstr "جوجيا الجنوبية و جزر ساندويتش الجنوبية"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Equatorial Guinea"
+msgstr "غينيا الإستوائية"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Guadeloupe"
+msgstr "غواديلوب"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Guinea"
+msgstr "غينيا"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Gambia"
+msgstr "غامبيا"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Greenland"
+msgstr "غرينلاند"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Gibraltar"
+msgstr "جبل طارق"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Ghana"
+msgstr "غانا"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "French Guiana"
+msgstr "غويانا الفرنسية"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Georgia"
+msgstr "جورجيا"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Grenada"
+msgstr "عرينادا"
+
+#: ../../lang.pm:1 ../../network/tools.pm:1
+#, c-format
+msgid "United Kingdom"
+msgstr "المملكة المتحدة"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Gabon"
+msgstr "الغابون"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Faroe Islands"
+msgstr "جزر الفيرو"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Micronesia"
+msgstr "ميكرونيزيا"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Falkland Islands (Malvinas)"
+msgstr "جزر فوكلاند"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Fiji"
+msgstr "فيجي"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Finland"
+msgstr "فنلندا"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Ethiopia"
+msgstr "اثيوبيا"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Spain"
+msgstr "أسبانيا"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Eritrea"
+msgstr "اريتريا"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Western Sahara"
+msgstr "الصحراء الغربية"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Egypt"
+msgstr "مصر"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Estonia"
+msgstr "استونيا"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Ecuador"
+msgstr "الإكوادور"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Algeria"
+msgstr "الجزائر"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Dominican Republic"
+msgstr "جمهورية الدومينيكان"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Dominica"
+msgstr "دومينيكا"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Denmark"
+msgstr "الدنمارك"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Djibouti"
+msgstr "جيبوتي"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Cyprus"
+msgstr "قبرص"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Christmas Island"
+msgstr "جزر الكريسماس"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Cape Verde"
+msgstr "كيب فيردي"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Cuba"
+msgstr "كوبا"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Colombia"
+msgstr "كولومبيا"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "China"
+msgstr "الصين"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Cameroon"
+msgstr "الكاميرون"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Chile"
+msgstr "تشيلي"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Cook Islands"
+msgstr "جزر الكوك"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Cote d'Ivoire"
+msgstr "كوت ديفوار"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Switzerland"
+msgstr "السويسرية"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Congo (Brazzaville)"
+msgstr "الكونغو برازافيل"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Central African Republic"
+msgstr "جمهورية وسط أفريقية"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Congo (Kinshasa)"
+msgstr "الكونغو كينشاسا"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Cocos (Keeling) Islands"
+msgstr "جزر الكوكوس"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Canada"
+msgstr "كندا"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Belize"
+msgstr "بيليز"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Belarus"
+msgstr "روسيا البيضاء"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Botswana"
+msgstr "بوتسوانا"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Bouvet Island"
+msgstr "جزيرة بوفيه"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Bhutan"
+msgstr "بوتان"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Bahamas"
+msgstr "جزر الباهاما"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Brazil"
+msgstr "البرازيل"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Bolivia"
+msgstr "بوليفيا"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Brunei Darussalam"
+msgstr "سلطنة بروناي"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Bermuda"
+msgstr "برمودا"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Benin"
+msgstr "بنين"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Burundi"
+msgstr "بوروندي"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Bahrain"
+msgstr "البحرين"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Bulgaria"
+msgstr "بلغاريا"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Burkina Faso"
+msgstr "بوركينافاسو"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Bangladesh"
+msgstr "بنغلاديش"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Barbados"
+msgstr "باربادوس"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Bosnia and Herzegovina"
+msgstr "البوسنة و الهرسك"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Azerbaijan"
+msgstr "أذربيجان"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Aruba"
+msgstr "أروبا"
+
+#: ../../lang.pm:1 ../../standalone/drakxtv:1
+#, c-format
+msgid "Australia"
+msgstr "أوستراليا"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "American Samoa"
+msgstr "ساموا الأمريكية"
+
+#: ../../lang.pm:1 ../../standalone/drakxtv:1
+#, c-format
+msgid "Argentina"
+msgstr "الأرجنتين "
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Antarctica"
+msgstr "القطب الجنوبي"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Angola"
+msgstr "أنغولا"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Netherlands Antilles"
+msgstr "أنتيل هولندا"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Armenia"
+msgstr "أرمينيا"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Albania"
+msgstr "ألبانيا"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Anguilla"
+msgstr "أنغويلا"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Antigua and Barbuda"
+msgstr "أنتيغوا و باربودا"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "United Arab Emirates"
+msgstr "الإمارات العربية المتحدة"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Andorra"
+msgstr "أندورا"
+
+#: ../../lang.pm:1
+#, c-format
+msgid "Afghanistan"
+msgstr "أفغانستان"
+
+#: ../../loopback.pm:1
#, c-format
msgid "Circular mounts %s\n"
msgstr "Circular mounts %s\n"
-#: ../../lvm.pm_.c:103
+#: ../../lvm.pm:1
+#, c-format
msgid "Remove the logical volumes first\n"
-msgstr ""
+msgstr "احذف logical volumes أولاً\n"
-#: ../../modules.pm_.c:290
+#: ../../modules.pm:1
+#, c-format
msgid ""
"PCMCIA support no longer exists for 2.2 kernels. Please use a 2.4 kernel."
msgstr ""
+"دعم PCMCIA غير موجود بعد الآن لإصدار النواة 2.2. فضلا استخدم الإصدار 2.4"
-#: ../../modules/interactive.pm_.c:16
-msgid "You can configure each parameter of the module here."
-msgstr ""
-
-#: ../../modules/parameters.pm_.c:18
-#, fuzzy
-msgid "modinfo is not available"
-msgstr "آسف , لا مدخل مرن متاح"
-
-#: ../../modules/parameters.pm_.c:50
-#, fuzzy
-msgid "a number"
-msgstr "رقم التّليفون "
+#: ../../mouse.pm:1
+#, c-format
+msgid "MOVE YOUR WHEEL!"
+msgstr "حرك عجلة الفأرة!"
-#: ../../modules/parameters.pm_.c:52
+#: ../../mouse.pm:1
#, c-format
-msgid "%d comma separated numbers"
-msgstr ""
+msgid "To activate the mouse,"
+msgstr "لتنشيط الفأرة,"
-#: ../../modules/parameters.pm_.c:52
+#: ../../mouse.pm:1
#, c-format
-msgid "%d comma separated strings"
-msgstr ""
+msgid "Please test the mouse"
+msgstr "من فضلك اختبر الفأرة"
-#: ../../modules/parameters.pm_.c:54
-msgid "comma separated numbers"
-msgstr ""
+#: ../../mouse.pm:1
+#, c-format
+msgid "No mouse"
+msgstr "لا فأرة"
-#: ../../modules/parameters.pm_.c:54
-#, fuzzy
-msgid "comma separated strings"
-msgstr "تجهيز التجزئات"
+#: ../../mouse.pm:1
+#, c-format
+msgid "none"
+msgstr "لا شئ"
-#: ../../mouse.pm_.c:25
-msgid "Sun - Mouse"
-msgstr "Sun - Mouse"
+#: ../../mouse.pm:1
+#, c-format
+msgid "3 buttons"
+msgstr "3 أزرار"
-#: ../../mouse.pm_.c:32
-msgid "Logitech MouseMan+"
-msgstr "Logitech MouseMan+"
+#: ../../mouse.pm:1
+#, c-format
+msgid "2 buttons"
+msgstr "زرّين"
-#: ../../mouse.pm_.c:33
-msgid "Generic PS2 Wheel Mouse"
-msgstr "Generic PS2 Wheel Mouse"
+#: ../../mouse.pm:1
+#, c-format
+msgid "1 button"
+msgstr "زر واحد"
-#: ../../mouse.pm_.c:34
-msgid "GlidePoint"
-msgstr "GlidePoint"
+#: ../../mouse.pm:1
+#, c-format
+msgid "busmouse"
+msgstr "busmouse"
-#: ../../mouse.pm_.c:36 ../../mouse.pm_.c:65
+#: ../../mouse.pm:1
+#, c-format
msgid "Kensington Thinking Mouse"
msgstr "Kensington Thinking Mouse"
-#: ../../mouse.pm_.c:37 ../../mouse.pm_.c:61
+#: ../../mouse.pm:1
+#, c-format
+msgid "Logitech Mouse (serial, old C7 type)"
+msgstr "Logitech Mouse (serial, old C7 type)"
+
+#: ../../mouse.pm:1
+#, c-format
+msgid "MM HitTablet"
+msgstr "MM HitTablet"
+
+#: ../../mouse.pm:1
+#, c-format
+msgid "MM Series"
+msgstr "MM Series"
+
+#: ../../mouse.pm:1
+#, c-format
msgid "Genius NetMouse"
msgstr "Genius NetMouse"
-#: ../../mouse.pm_.c:38
-msgid "Genius NetScroll"
-msgstr "Genius NetScroll"
+#: ../../mouse.pm:1
+#, c-format
+msgid "Logitech MouseMan+/FirstMouse+"
+msgstr "Logitech MouseMan+/FirstMouse+"
-#: ../../mouse.pm_.c:39 ../../mouse.pm_.c:48
-#, fuzzy
-msgid "Microsoft Explorer"
+#: ../../mouse.pm:1
+#, c-format
+msgid "Logitech CC Series"
+msgstr "Logitech CC Series"
+
+#: ../../mouse.pm:1
+#, c-format
+msgid "Mouse Systems"
+msgstr "Mouse Systems"
+
+#: ../../mouse.pm:1
+#, c-format
+msgid "Logitech MouseMan"
+msgstr "Logitech MouseMan"
+
+#: ../../mouse.pm:1
+#, c-format
+msgid "Microsoft IntelliMouse"
msgstr "Microsoft IntelliMouse"
-#: ../../mouse.pm_.c:44 ../../mouse.pm_.c:70
-msgid "1 button"
-msgstr "1 button"
+#: ../../mouse.pm:1
+#, c-format
+msgid "Generic 3 Button Mouse"
+msgstr "Generic 3 Button Mouse"
-#: ../../mouse.pm_.c:45 ../../mouse.pm_.c:53
+#: ../../mouse.pm:1
+#, c-format
msgid "Generic 2 Button Mouse"
msgstr "Generic 2 Button Mouse"
-#: ../../mouse.pm_.c:47
-msgid "Wheel"
-msgstr "Wheel"
-
-#: ../../mouse.pm_.c:51
+#: ../../mouse.pm:1
+#, c-format
msgid "serial"
msgstr "serial"
-#: ../../mouse.pm_.c:54
-msgid "Generic 3 Button Mouse"
-msgstr "Generic 3 Button Mouse"
+#: ../../mouse.pm:1
+#, c-format
+msgid "Microsoft Explorer"
+msgstr "Microsoft Explorer"
-#: ../../mouse.pm_.c:55
-msgid "Microsoft IntelliMouse"
-msgstr "Microsoft IntelliMouse"
+#: ../../mouse.pm:1
+#, c-format
+msgid "Wheel"
+msgstr "Wheel"
-#: ../../mouse.pm_.c:56
-msgid "Logitech MouseMan"
-msgstr "Logitech MouseMan"
+#: ../../mouse.pm:1 ../../Xconfig/monitor.pm:1
+#, c-format
+msgid "Generic"
+msgstr "Generic"
-#: ../../mouse.pm_.c:57
-msgid "Mouse Systems"
-msgstr "Mouse Systems"
+#: ../../mouse.pm:1
+#, c-format
+msgid "Genius NetScroll"
+msgstr "Genius NetScroll"
-#: ../../mouse.pm_.c:59
-msgid "Logitech CC Series"
-msgstr "Logitech CC Series"
+#: ../../mouse.pm:1
+#, c-format
+msgid "GlidePoint"
+msgstr "GlidePoint"
-#: ../../mouse.pm_.c:60
-msgid "Logitech MouseMan+/FirstMouse+"
-msgstr "Logitech MouseMan+/FirstMouse+"
+#: ../../mouse.pm:1
+#, c-format
+msgid "Generic PS2 Wheel Mouse"
+msgstr "Generic PS2 Wheel Mouse"
-#: ../../mouse.pm_.c:62
-msgid "MM Series"
-msgstr "MM Series"
+#: ../../mouse.pm:1
+#, c-format
+msgid "Logitech MouseMan+"
+msgstr "Logitech MouseMan+"
-#: ../../mouse.pm_.c:63
-msgid "MM HitTablet"
-msgstr "MM HitTablet"
+#: ../../mouse.pm:1 ../../security/level.pm:1
+#, c-format
+msgid "Standard"
+msgstr "القياسي"
-#: ../../mouse.pm_.c:64
-msgid "Logitech Mouse (serial, old C7 type)"
-msgstr "Logitech Mouse (serial, old C7 type)"
+#: ../../mouse.pm:1
+#, c-format
+msgid "Sun - Mouse"
+msgstr "Sun - Mouse"
-#: ../../mouse.pm_.c:68
-msgid "busmouse"
-msgstr "busmouse"
+#: ../../my_gtk.pm:1 ../../ugtk2.pm:1
+#, c-format
+msgid "Toggle between flat and group sorted"
+msgstr "Toggle between flat and group sorted"
-#: ../../mouse.pm_.c:71
-msgid "2 buttons"
-msgstr "2 buttons"
+#: ../../my_gtk.pm:1 ../../ugtk2.pm:1
+#, c-format
+msgid "Collapse Tree"
+msgstr "Collapse Tree"
-#: ../../mouse.pm_.c:72
-msgid "3 buttons"
-msgstr "3 buttons"
+#: ../../my_gtk.pm:1 ../../ugtk2.pm:1
+#, c-format
+msgid "Expand Tree"
+msgstr "Expand Tree"
-#: ../../mouse.pm_.c:75
-msgid "none"
-msgstr "ولا واحد"
+#: ../../my_gtk.pm:1 ../../services.pm:1 ../../ugtk2.pm:1
+#, c-format
+msgid "Info"
+msgstr "المعلومات"
-#: ../../mouse.pm_.c:77
-msgid "No mouse"
-msgstr "No mouse"
+#: ../../my_gtk.pm:1 ../../ugtk2.pm:1
+#, c-format
+msgid "Is this correct?"
+msgstr "هل هذا صحيح ? "
-#: ../../mouse.pm_.c:490
-msgid "Please test the mouse"
-msgstr "من فضلك اختبر الفأرة"
+#: ../../my_gtk.pm:1
+#, c-format
+msgid "-adobe-utopia-regular-r-*-*-25-*-*-*-p-*-iso8859-*,*-r-*"
+msgstr "-adobe-utopia-regular-r-*-*-25-*-*-*-p-*-iso8859-*,*-r-*"
-#: ../../mouse.pm_.c:491
-msgid "To activate the mouse,"
-msgstr "To activate the mouse,"
+#: ../../partition_table.pm:1
+#, c-format
+msgid "Error writing to file %s"
+msgstr "خطأ أثناء الكتابة الى الملف %s"
-#: ../../mouse.pm_.c:492
-msgid "MOVE YOUR WHEEL!"
-msgstr " WHEEL! حرّك "
+#: ../../partition_table.pm:1
+#, c-format
+msgid "Bad backup file"
+msgstr "ملف نسخ احتياطي سيئ"
-#: ../../my_gtk.pm_.c:65
-#, fuzzy
-msgid "-adobe-utopia-regular-r-*-*-25-*-*-*-p-*-iso8859-*,*-r-*"
-msgstr "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
+#: ../../partition_table.pm:1
+#, c-format
+msgid "Restoring from file %s failed: %s"
+msgstr "فشلت الإستعادة من الملف %s: %s"
-#: ../../my_gtk.pm_.c:159 ../../ugtk2.pm_.c:435
-msgid "Finish"
-msgstr "إنتهاء"
+#: ../../partition_table.pm:1
+#, c-format
+msgid ""
+"You have a hole in your partition table but I can't use it.\n"
+"The only solution is to move your primary partitions to have the hole next "
+"to the extended partitions."
+msgstr ""
+"توجد مساحة فارغة في جدول التجزئات لديك لكني لا أستطيع استخدامها.\n"
+"الحل الوحيد هو أن تنقل التجزئات الأساسية لتحصل على المساحة بين التجزئات "
+"الممتدة."
-#: ../../my_gtk.pm_.c:159 ../../printer/printerdrake.pm_.c:2057
-#: ../../ugtk2.pm_.c:435
-msgid "Next ->"
-msgstr "التالي ->"
+#: ../../partition_table.pm:1
+#, c-format
+msgid "Extended partition not supported on this platform"
+msgstr "التجزئات الممتدة غير مدعومة على هذه البيئة"
-#: ../../my_gtk.pm_.c:287 ../../ugtk2.pm_.c:926
-msgid "Is this correct?"
-msgstr "هل هذا صحيح ? "
+#: ../../partition_table.pm:1
+#, c-format
+msgid "mount failed: "
+msgstr "فشل التحميل: "
-#: ../../my_gtk.pm_.c:359 ../../services.pm_.c:227 ../../ugtk2.pm_.c:1011
-msgid "Info"
-msgstr "المعلومات"
+#: ../../pkgs.pm:1
+#, c-format
+msgid "maybe"
+msgstr "ربما"
-#: ../../my_gtk.pm_.c:380 ../../ugtk2.pm_.c:1036
-msgid "Expand Tree"
-msgstr "Expand Tree"
+#: ../../pkgs.pm:1
+#, c-format
+msgid "nice"
+msgstr "ظريف"
-#: ../../my_gtk.pm_.c:381 ../../ugtk2.pm_.c:1037
-msgid "Collapse Tree"
-msgstr "Collapse Tree"
+#: ../../pkgs.pm:1
+#, c-format
+msgid "very nice"
+msgstr "ظريف جداً"
-#: ../../my_gtk.pm_.c:382 ../../ugtk2.pm_.c:1038
-msgid "Toggle between flat and group sorted"
-msgstr ""
+#: ../../pkgs.pm:1
+#, c-format
+msgid "important"
+msgstr "مهم"
-#: ../../network/adsl.pm_.c:23
-msgid "use pppoe"
-msgstr "use pppoe"
+#: ../../pkgs.pm:1
+#, c-format
+msgid "must have"
+msgstr "يجب أن يكون لديك"
-#: ../../network/adsl.pm_.c:24
-msgid "use pptp"
-msgstr "use pptp"
+#: ../../raid.pm:1
+#, c-format
+msgid "Not enough partitions for RAID level %d\n"
+msgstr "التجزئات ليست كافية لمستوى RAID %d\n"
-#: ../../network/adsl.pm_.c:25
-msgid "use dhcp"
-msgstr "use dhcp"
+#: ../../raid.pm:1
+#, c-format
+msgid "mkraid failed"
+msgstr "فشل mkraid"
-#: ../../network/adsl.pm_.c:26
-msgid "Alcatel speedtouch usb"
-msgstr "Alcatel speedtouch usb"
+#: ../../raid.pm:1
+#, c-format
+msgid "mkraid failed (maybe raidtools are missing?)"
+msgstr "فشل mkraid (ربما تكون حزمة raidtools مفقودة؟)"
-#: ../../network/adsl.pm_.c:27
-msgid "Sagem (using pppoe) usb"
-msgstr ""
+#: ../../raid.pm:1
+#, c-format
+msgid "Can't add a partition to _formatted_ RAID md%d"
+msgstr "لا يمكن اضافة تجزئة الى RAID _المجهز_ md%d"
-#: ../../network/adsl.pm_.c:29 ../../network/ethernet.pm_.c:36
-msgid "Connect to the Internet"
-msgstr "وصّل إلى الإنترنت "
+#: ../../services.pm:1
+#, c-format
+msgid "Stop"
+msgstr "توقف"
-#: ../../network/adsl.pm_.c:30
-msgid ""
-"The most common way to connect with adsl is pppoe.\n"
-"Some connections use pptp, a few ones use dhcp.\n"
-"If you don't know, choose 'use pppoe'"
-msgstr ""
+#: ../../services.pm:1
+#, c-format
+msgid "Start"
+msgstr "ابدأ"
-#: ../../network/adsl.pm_.c:166
+#: ../../services.pm:1
+#, c-format
+msgid "On boot"
+msgstr "عند الإقلاع"
+
+#: ../../services.pm:1
+#, c-format
msgid ""
-"You need the alcatel microcode.\n"
-"Download it at\n"
-"http://www.speedtouchdsl.com/dvrreg_lx.htm\n"
-"and copy the mgmt.o in /usr/share/speedtouch"
+"No additional information\n"
+"about this service, sorry."
msgstr ""
+"عفواً, لا توجد معلومات\n"
+"اضافية حزل هذه الحزمة."
-#: ../../network/drakfirewall.pm_.c:12
-#, fuzzy
-msgid "Web Server"
-msgstr "خادم"
+#: ../../services.pm:1
+#, c-format
+msgid "Services and deamons"
+msgstr "الخدمات و المراقبات"
-#: ../../network/drakfirewall.pm_.c:17
-#, fuzzy
-msgid "Domain Name Server"
-msgstr "Domain name"
+#: ../../services.pm:1
+#, c-format
+msgid "stopped"
+msgstr "متوقفة"
-#: ../../network/drakfirewall.pm_.c:32
-#, fuzzy
-msgid "Mail Server"
+#: ../../services.pm:1
+#, c-format
+msgid "running"
+msgstr "تعمل"
+
+#: ../../services.pm:1
+#, c-format
+msgid "Choose which services should be automatically started at boot time"
+msgstr "اختر أي خدمات تريدها أن تبدأ آلياً عند التثبيت"
+
+#: ../../services.pm:1
+#, c-format
+msgid "Database Server"
msgstr "خادم قواعد بيانات"
-#: ../../network/drakfirewall.pm_.c:37
-#, fuzzy
-msgid "POP and IMAP Server"
-msgstr "خادم LDAP"
+#: ../../services.pm:1
+#, c-format
+msgid "Remote Administration"
+msgstr "ادارة عن بعد"
-#: ../../network/drakfirewall.pm_.c:111
-#, fuzzy
-msgid "No network card"
-msgstr "لا بطاقة شبكة وجدت "
+#: ../../services.pm:1
+#, c-format
+msgid "File sharing"
+msgstr "مشاركة الملفات"
-#: ../../network/drakfirewall.pm_.c:129
-#, fuzzy
+#: ../../services.pm:1
+#, c-format
+msgid "Internet"
+msgstr "الإنترنت"
+
+#: ../../services.pm:1
+#, c-format
+msgid "Printing"
+msgstr "الطباعة"
+
+#: ../../services.pm:1
+#, c-format
+msgid "Starts the X Font Server (this is mandatory for XFree to run)."
+msgstr "تبدأ خادم خطوط X (هذا الزامي لكي يعمل XFree)"
+
+#: ../../services.pm:1
+#, c-format
+msgid "Load the drivers for your usb devices."
+msgstr "حمّل مشغلات أجهزة USB."
+
+#: ../../services.pm:1
+#, c-format
msgid ""
-"drakfirewall configurator\n"
-"\n"
-"This configures a personal firewall for this Mandrake Linux machine.\n"
-"For a powerful dedicated firewall solution, please look to the\n"
-"specialized MandrakeSecurity Firewall distribution."
+"Syslog is the facility by which many daemons use to log messages\n"
+"to various system log files. It is a good idea to always run syslog."
msgstr ""
-"أداة تهيئة الجدار الناري البسيط\n"
-"\n"
-"هذه الأداة تسمح لك بتهيئة جدار ناري شخصي لنظام Mandrake Linux هذا.\n"
-"إذا كنت تريد جدارا ناريا متخصصا, الق نظرة على\n"
-"توزيعة MandrakeSecurity Firewall."
+"Syslog هي الوسيلة التي تستخدمها العديد من المراقبات لتسجيل الرسائل\n"
+"الى ملفات سجلات عديدة. انها فكرة جيدة أن تقوم دائماً بتشغيل syslog."
-#: ../../network/drakfirewall.pm_.c:135
+#: ../../services.pm:1
+#, c-format
+msgid "Launch the sound system on your machine"
+msgstr "يشغل نظام الصوت على جهازك"
+
+#: ../../services.pm:1
+#, c-format
msgid ""
-"drakfirewall configurator\n"
-"\n"
-"Make sure you have configured your Network/Internet access with\n"
-"drakconnect before going any further."
+"The rwho protocol lets remote users get a list of all of the users\n"
+"logged into a machine running the rwho daemon (similiar to finger)."
msgstr ""
+"بروتوكول rwho يسمح للمستخدمين البعيدين بالحصول على قائمة بكل المستخدمين\n"
+"الذين سجلوا الدخول الى جهاز يشغّل مراقب rwho (مماثل لـ finger)."
-#: ../../network/drakfirewall.pm_.c:152
-msgid "Which services would you like to allow the Internet to connect to?"
+#: ../../services.pm:1
+#, c-format
+msgid ""
+"The rusers protocol allows users on a network to identify who is\n"
+"logged in on other responding machines."
msgstr ""
+"بروتوكول rusers يسمح للمستخدمين على الشبكة أن يتعرفوا على من\n"
+"سجل الدخول الى الأجهزة المستجيبة الأخرى."
-#: ../../network/drakfirewall.pm_.c:153
+#: ../../services.pm:1
+#, c-format
msgid ""
-"You can enter miscellaneous ports. \n"
-"Valid examples are: 139/tcp 139/udp.\n"
-"Have a look at /etc/services for information."
+"The rstat protocol allows users on a network to retrieve\n"
+"performance metrics for any machine on that network."
msgstr ""
+"بروتوكول rstat يسمح للمستخدمين على الشبكة باسترجاع\n"
+"احصائيات آداء أي جهاز على هذه الشبكة."
-#: ../../network/drakfirewall.pm_.c:159
+#: ../../services.pm:1
#, c-format
msgid ""
-"Invalid port given: %s.\n"
-"The proper format is \"port/tcp\" or \"port/udp\", \n"
-"where port is between 1 and 65535."
+"The routed daemon allows for automatic IP router table updated via\n"
+"the RIP protocol. While RIP is widely used on small networks, more complex\n"
+"routing protocols are needed for complex networks."
msgstr ""
+"مراقب routed يسمح بتحديث جدول موجه IP الآلي (IP router table) عن طريق\n"
+"بروتوكول RIP. بينما يستخدم RIP على الشبكات الصغيرة, تحتاج الشبكات الأكبر\n"
+"الى بروتوكولات توجيه معقدة أكثر."
-#: ../../network/drakfirewall.pm_.c:167
-msgid "Everything (no firewall)"
+#: ../../services.pm:1
+#, c-format
+msgid ""
+"Assign raw devices to block devices (such as hard drive\n"
+"partitions), for the use of applications such as Oracle"
msgstr ""
+"عين الأجهزة الخام الى أجهزة في وضع الكليشيه (مثل تجزئات\n"
+"الأقراص الصلبة), للاستخام في تطبيقات مثل Oracle"
-#: ../../network/drakfirewall.pm_.c:169
-#, fuzzy
-msgid "Other ports"
-msgstr "أخرى"
-
-#: ../../network/ethernet.pm_.c:37
+#: ../../services.pm:1
+#, c-format
msgid ""
-"Which dhcp client do you want to use?\n"
-"Default is dhcp-client"
+"Saves and restores system entropy pool for higher quality random\n"
+"number generation."
msgstr ""
-"تريد أن تستخدم dhcp أيّ عميل ?\n"
-" Default is dhcp-client"
+"Saves and restores system entropy pool for higher quality random\n"
+"number generation."
-#: ../../network/ethernet.pm_.c:88
+#: ../../services.pm:1
+#, c-format
msgid ""
-"No ethernet network adapter has been detected on your system.\n"
-"I cannot set up this connection type."
+"Postfix is a Mail Transport Agent, which is the program that moves mail from "
+"one machine to another."
msgstr ""
+"Postfix هو عميل لنقل البريد, أي البرنامج الذي ينقل البريد من جهاز الى آخر."
-#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:234
-msgid "Choose the network interface"
-msgstr "اختر السّطح البينيّ للشبكة "
+#: ../../services.pm:1
+#, c-format
+msgid ""
+"The portmapper manages RPC connections, which are used by\n"
+"protocols such as NFS and NIS. The portmap server must be running on "
+"machines\n"
+"which act as servers for protocols which make use of the RPC mechanism."
+msgstr ""
+"يقوم portmapper بإدارة اتصالات RPC, و التي تستخدم عن طريق\n"
+"بروتوكولات مثل NFS و NIS. خادم portmap من اللازم أن يعمل على الأجهزة\n"
+"التي تعمل كخادمات تستخدم البروتوكولات التي تستفيد من آلية عمل RPC."
-#: ../../network/ethernet.pm_.c:93
+#: ../../services.pm:1
+#, c-format
msgid ""
-"Please choose which network adapter you want to use to connect to Internet"
+"PCMCIA support is usually to support things like ethernet and\n"
+"modems in laptops. It won't get started unless configured so it is safe to "
+"have\n"
+"it installed on machines that don't need it."
msgstr ""
+"دعم PCMCIA مهم لدعم أشياء مثل بطاقات الإيثرنت و\n"
+"المودمات على الأجهزة الدفترية. لن يتم بدء هذه الخدمة الا عند تهيئتها لذا فلا "
+"مسكلة عند تشغيله\n"
+"على الأجهزة التي لا تحتاجه."
-#: ../../network/ethernet.pm_.c:176
-msgid "no network card found"
-msgstr "لا بطاقة شبكة وجدت "
+#: ../../services.pm:1
+#, c-format
+msgid "Support the OKI 4w and compatible winprinters."
+msgstr "دعم طابعات OKI 4w و الطابعات المتوافقة."
-#: ../../network/ethernet.pm_.c:200 ../../network/network.pm_.c:349
-msgid "Configuring network"
-msgstr "ا عداد شبكة"
+#: ../../services.pm:1
+#, c-format
+msgid ""
+"Automatically switch on numlock key locker under console\n"
+"and XFree at boot."
+msgstr ""
+"تقوم بتشغيل مفتاح numlock آلياً في سطر الأوامر\n"
+"و XFree عند الإقلاع."
-#: ../../network/ethernet.pm_.c:201
+#: ../../services.pm:1
+#, c-format
msgid ""
-"Please enter your host name if you know it.\n"
-"Some DHCP servers require the hostname to work.\n"
-"Your host name should be a fully-qualified host name,\n"
-"such as ``mybox.mylab.myco.com''."
+"NFS is a popular protocol for file sharing across TCP/IP\n"
+"networks. This service provides NFS file locking functionality."
msgstr ""
+"NFS بروتوكول شائع لمشاركة الملفات على شبكات\n"
+"TCP/IP. هذه الخدمة تسمح لك بالتحكم بالملفات عن طريق NFS."
-#: ../../network/ethernet.pm_.c:205 ../../network/network.pm_.c:354
-msgid "Host name"
-msgstr "Host اسم "
+#: ../../services.pm:1
+#, c-format
+msgid ""
+"NFS is a popular protocol for file sharing across TCP/IP networks.\n"
+"This service provides NFS server functionality, which is configured via the\n"
+"/etc/exports file."
+msgstr ""
+"NFS بروتوكول شائع لمشاركة الملفات على شبكات TCP/IP.\n"
+"هذه الخدمة توفر وظائف NFS للأجهزة الخادمة, و التي يتم تهيئتها عن طريق\n"
+"ملف /etc/exports."
-#: ../../network/isdn.pm_.c:21 ../../network/isdn.pm_.c:44
-#: ../../network/netconnect.pm_.c:89 ../../network/netconnect.pm_.c:103
-#: ../../network/netconnect.pm_.c:156 ../../network/netconnect.pm_.c:171
-#: ../../network/netconnect.pm_.c:222 ../../network/netconnect.pm_.c:245
-#: ../../network/netconnect.pm_.c:253
-msgid "Network Configuration Wizard"
-msgstr "معالج إعداد الشبكة"
+#: ../../services.pm:1
+#, c-format
+msgid ""
+"Activates/Deactivates all network interfaces configured to start\n"
+"at boot time."
+msgstr ""
+"تنشط/تخمد كل واجهات الشبكة المهيئة كي تبدأ\n"
+"عند بدء الإقلاع."
-#: ../../network/isdn.pm_.c:22
-msgid "External ISDN modem"
-msgstr "External ISDN modem"
+#: ../../services.pm:1
+#, c-format
+msgid ""
+"Mounts and unmounts all Network File System (NFS), SMB (Lan\n"
+"Manager/Windows), and NCP (NetWare) mount points."
+msgstr ""
+"تحمّل و تزيل تحميل كل نقاط تحميل أنظمة ملفات الشبكة (NFS)و SMB (مدير\n"
+"الشبكة المحلية/Windows) و NCP (NetWare)."
-#: ../../network/isdn.pm_.c:22
-msgid "Internal ISDN card"
-msgstr "Internal ISDN card"
+#: ../../services.pm:1
+#, c-format
+msgid ""
+"named (BIND) is a Domain Name Server (DNS) that is used to resolve host "
+"names to IP addresses."
+msgstr ""
+"named (BIND) هو خادم أسماء نطاق (DNS) و الذي يستخدم لمعرفة أسماء المستضيفات "
+"أو عناوين IP."
-#: ../../network/isdn.pm_.c:22
-msgid "What kind is your ISDN connection?"
+#: ../../services.pm:1
+#, c-format
+msgid ""
+"Linux Virtual Server, used to build a high-performance and highly\n"
+"available server."
msgstr ""
+"Linux Virtual Server, يستخدم لعمل خادم عالي الأداء\n"
+"و يعتمد عليه."
-#: ../../network/isdn.pm_.c:45
+#: ../../services.pm:1
+#, c-format
msgid ""
-"Which ISDN configuration do you prefer?\n"
-"\n"
-"* The Old configuration uses isdn4net. It contains powerful\n"
-" tools, but is tricky to configure, and not standard.\n"
-"\n"
-"* The New configuration is easier to understand, more\n"
-" standard, but with less tools.\n"
-"\n"
-"We recommand the light configuration.\n"
+"lpd is the print daemon required for lpr to work properly. It is\n"
+"basically a server that arbitrates print jobs to printer(s)."
msgstr ""
+"lpd هو مراقب الطباعة الذي يحتاجه أمر lpr للعمل بشل صحيح. أساساً\n"
+"هو خادم يوصل وظائف الطباعة الى الطابعات."
-#: ../../network/isdn.pm_.c:54
-msgid "New configuration (isdn-light)"
-msgstr "إعداد جديد (isdn-light)"
+#: ../../services.pm:1
+#, c-format
+msgid ""
+"Linuxconf will sometimes arrange to perform various tasks\n"
+"at boot-time to maintain the system configuration."
+msgstr ""
+"Linuxconf يقوم في بعض الأحيان بالترتيب لعمل بعض الأعمال\n"
+"عند الإقلاع للمحافظة على اعدادات النظام."
-#: ../../network/isdn.pm_.c:54
-msgid "Old configuration (isdn4net)"
-msgstr "إعداد قديم (isdn4net)"
+#: ../../services.pm:1
+#, c-format
+msgid "Automatic detection and configuration of hardware at boot."
+msgstr "تحقق و تهيئة آلية للعتاد عند الإقلاع."
-#: ../../network/isdn.pm_.c:166 ../../network/isdn.pm_.c:184
-#: ../../network/isdn.pm_.c:196 ../../network/isdn.pm_.c:202
-#: ../../network/isdn.pm_.c:209 ../../network/isdn.pm_.c:219
-msgid "ISDN Configuration"
-msgstr "ISDN إعداد "
+#: ../../services.pm:1
+#, c-format
+msgid ""
+"Automatic regeneration of kernel header in /boot for\n"
+"/usr/include/linux/{autoconf,version}.h"
+msgstr ""
+"اعادة توليد آلية لترويسة النواة في دليل /boot لـ\n"
+"/usr/include/linux/{autoconf,version}.h"
-#: ../../network/isdn.pm_.c:166
+#: ../../services.pm:1
+#, c-format
msgid ""
-"Select your provider.\n"
-"If it isn't listed, choose Unlisted."
+"This package loads the selected keyboard map as set in\n"
+"/etc/sysconfig/keyboard. This can be selected using the kbdconfig utility.\n"
+"You should leave this enabled for most machines."
msgstr ""
+"هذه الحزمة تقوم بتحميل خريطة لوحة المفاتيح المختارة كما\n"
+"تم تعيينها في /etc/sysconfig/keyboard. يمكن اختيار لوخة المفاتيح باستخدام "
+"أداة kbdconfig.\n"
+"يجب تركها ممكّنة في أغلب الأجهزة."
-#: ../../network/isdn.pm_.c:179
-msgid "Europe protocol"
+#: ../../services.pm:1
+#, c-format
+msgid ""
+"Launch packet filtering for Linux kernel 2.2 series, to set\n"
+"up a firewall to protect your machine from network attacks."
msgstr ""
+"Launch packet filtering for Linux kernel 2.2 series, to set\n"
+"up a firewall to protect your machine from network attacks."
-#: ../../network/isdn.pm_.c:179
-msgid "Europe protocol (EDSS1)"
+#: ../../services.pm:1
+#, c-format
+msgid ""
+"The internet superserver daemon (commonly called inetd) starts a\n"
+"variety of other internet services as needed. It is responsible for "
+"starting\n"
+"many services, including telnet, ftp, rsh, and rlogin. Disabling inetd "
+"disables\n"
+"all of the services it is responsible for."
msgstr ""
+"مراقب الإنترنت الأساسي (يسمى عادةً بـ inetd) يبدأ\n"
+"مجموعة من خدمات الإنترنت الأخرى عند الحاجة. انه مسؤول عن بدء\n"
+"العديد من الخدمات, بما فيها telnet, ftp, rsh, و rlogin. تعطيل inetd سيعطل\n"
+"كل الخدمات المذكورة."
-#: ../../network/isdn.pm_.c:181
-msgid "Protocol for the rest of the world"
+#: ../../services.pm:1
+#, c-format
+msgid ""
+"Apache is a World Wide Web server. It is used to serve HTML files and CGI."
+msgstr "Apache هو خادم ويب. و يُستخدم لخدمة ملفات HTML و CGI."
+
+#: ../../services.pm:1
+#, c-format
+msgid ""
+"HardDrake runs a hardware probe, and optionally configures\n"
+"new/changed hardware."
msgstr ""
+"HardDrake يقوم بالتحقق من العتاد, و يقوم بتهيئة العتاد\n"
+"الجديد/المتغير بشكل اختياري."
-#: ../../network/isdn.pm_.c:181
+#: ../../services.pm:1
+#, c-format
msgid ""
-"Protocol for the rest of the world\n"
-"No D-Channel (leased lines)"
+"GPM adds mouse support to text-based Linux applications such the\n"
+"Midnight Commander. It also allows mouse-based console cut-and-paste "
+"operations,\n"
+"and includes support for pop-up menus on the console."
msgstr ""
+"يقوم GPM بإضافة دعم الفأرة لتطبيقات لينكس في الوضع النصي مثل\n"
+"Midnight Commander. اضافة الى ذلك فإنه يسمح بعمليات القص و اللصق في سطر "
+"الأوامر,\n"
+"كما يتضمن دعم القوائم المختصرة في سطر الأوامر."
-#: ../../network/isdn.pm_.c:185
-msgid "Which protocol do you want to use?"
+#: ../../services.pm:1
+#, c-format
+msgid ""
+"cron is a standard UNIX program that runs user-specified programs\n"
+"at periodic scheduled times. vixie cron adds a number of features to the "
+"basic\n"
+"UNIX cron, including better security and more powerful configuration options."
msgstr ""
+"cron هو برنامج UNIX القياسي لتشغيل البرامج المحددة من قبل المستخدم\n"
+"عند أدوقات محددة دورياً. vixie cron يضيف عدداً من المزايا الى UNIX\n"
+"cron الأساسي, بما فيها حماية أمنية أفضل, و خيارات تهيئة أقوى."
-#: ../../network/isdn.pm_.c:196
+#: ../../services.pm:1
#, c-format
-msgid "Found \"%s\" interface do you want to use it ?"
+msgid ""
+"Runs commands scheduled by the at command at the time specified when\n"
+"at was run, and runs batch commands when the load average is low enough."
msgstr ""
+"تشغل الأوامر المُجدولة عن طريق أمر at عند الوقت المحدد\n"
+"لتشغيل at, و تقوم بتشغيل الأوامر الدقعية عندما يكون متوسط التحميل قليلاَ."
-#: ../../network/isdn.pm_.c:203
-msgid "What kind of card do you have?"
+#: ../../services.pm:1
+#, c-format
+msgid ""
+"apmd is used for monitoring battery status and logging it via syslog.\n"
+"It can also be used for shutting down the machine when the battery is low."
msgstr ""
+"تُستخدم apmd لمراقبة حالة البطارية و تسجيلها عن طريق syslog.\n"
+"يمكن كذلك استخدامها لإغلاق الجهاز عند ضعف البطارية."
-#: ../../network/isdn.pm_.c:204
-msgid "I don't know"
-msgstr "لا أعرف "
+#: ../../services.pm:1
+#, c-format
+msgid "Anacron is a periodic command scheduler."
+msgstr "Anacron أداة لتشغيل الأوامر في أوقات محددة."
-#: ../../network/isdn.pm_.c:204
-msgid "ISA / PCMCIA"
-msgstr "ISA / PCMCIA"
+#: ../../services.pm:1
+#, c-format
+msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
+msgstr "تشغّل نظام الصوت ALSA (Advanced Linux Sound Arachitecture)"
-#: ../../network/isdn.pm_.c:204
-msgid "PCI"
-msgstr "PCI"
+#: ../../standalone.pm:1
+#, c-format
+msgid "Installing packages..."
+msgstr "جاري تركيب الجزم..."
-#: ../../network/isdn.pm_.c:210
+#: ../../standalone.pm:1
+#, c-format
msgid ""
"\n"
-"If you have an ISA card, the values on the next screen should be right.\n"
+"Usage: %s [--auto] [--beginner] [--expert] [-h|--help] [--noauto] [--"
+"testing] [-v|--version] "
+msgstr ""
"\n"
-"If you have a PCMCIA card, you have to know the \"irq\" and \"io\" of your "
-"card.\n"
+"Usage: %s [--auto] [--beginner] [--expert] [-h|--help] [--noauto] [--"
+"testing] [-v|--version] "
+
+#: ../../standalone.pm:1
+#, c-format
+msgid ""
+" [everything]\n"
+" XFdrake [--noauto] monitor\n"
+" XFdrake resolution"
msgstr ""
+" [everything]\n"
+" XFdrake [--noauto] monitor\n"
+" XFdrake resolution"
-#: ../../network/isdn.pm_.c:214
-msgid "Abort"
-msgstr "إنهاء"
+#: ../../standalone.pm:1
+#, c-format
+msgid ""
+"[--manual] [--device=dev] [--update-sane=sane_desc_dir] [--update-usbtable] "
+"[--dynamic=dev]"
+msgstr ""
+"[--manual] [--device=dev] [--update-sane=sane_desc_dir] [--update-usbtable] "
+"[--dynamic=dev]"
-#: ../../network/isdn.pm_.c:214
-msgid "Continue"
-msgstr "تابع"
+#: ../../standalone.pm:1
+#, c-format
+msgid ""
+"[OPTION]...\n"
+" --no-confirmation don't ask first confirmation question in "
+"MandrakeUpdate mode\n"
+" --no-verify-rpm don't verify packages signatures\n"
+" --changelog-first display changelog before filelist in the "
+"description window\n"
+" --merge-all-rpmnew propose to merge all .rpmnew/.rpmsave files found"
+msgstr ""
+"[OPTION]...\n"
+" --no-confirmation don't ask first confirmation question in "
+"MandrakeUpdate mode\n"
+" --no-verify-rpm don't verify packages signatures\n"
+" --changelog-first display changelog before filelist in the "
+"description window\n"
+" --merge-all-rpmnew propose to merge all .rpmnew/.rpmsave files found"
-#: ../../network/isdn.pm_.c:220
-msgid "Which is your ISDN card?"
-msgstr "ISDN ما هية بطاقتك"
+#: ../../standalone.pm:1
+#, c-format
+msgid " [--skiptest] [--cups] [--lprng] [--lpd] [--pdq]"
+msgstr " [--skiptest] [--cups] [--lprng] [--lpd] [--pdq]"
-#: ../../network/isdn.pm_.c:239
+#: ../../standalone.pm:1
+#, c-format
msgid ""
-"I have detected an ISDN PCI card, but I don't know its type. Please select a "
-"PCI card on the next screen."
+"[OPTIONS]\n"
+"Network & Internet connection and monitoring application\n"
+"\n"
+"--defaultintf interface : show this interface by default\n"
+"--connect : connect to internet if not already connected\n"
+"--disconnect : disconnect to internet if already connected\n"
+"--force : used with (dis)connect : force (dis)connection.\n"
+"--status : returns 1 if connected 0 otherwise, then exit.\n"
+"--quiet : don't be interactive. To be used with (dis)connect."
msgstr ""
+"[OPTIONS]\n"
+"Network & Internet connection and monitoring application\n"
+"\n"
+"--defaultintf interface : show this interface by default\n"
+"--connect : connect to internet if not already connected\n"
+"--disconnect : disconnect to internet if already connected\n"
+"--force : used with (dis)connect : force (dis)connection.\n"
+"--status : returns 1 if connected 0 otherwise, then exit.\n"
+"--quiet : don't be interactive. To be used with (dis)connect."
-#: ../../network/isdn.pm_.c:248
-msgid "No ISDN PCI card found. Please select one on the next screen."
+#: ../../standalone.pm:1
+#, c-format
+msgid "[--file=myfile] [--word=myword] [--explain=regexp] [--alert]"
+msgstr "[--file=myfile] [--word=myword] [--explain=regexp] [--alert]"
+
+#: ../../standalone.pm:1
+#, c-format
+msgid "[keyboard]"
+msgstr "[keyboard]"
+
+#: ../../standalone.pm:1
+#, c-format
+msgid ""
+"[OPTIONS]...\n"
+"Mandrake Terminal Server Configurator\n"
+"--enable : enable MTS\n"
+"--disable : disable MTS\n"
+"--start : start MTS\n"
+"--stop : stop MTS\n"
+"--adduser : add an existing system user to MTS (requires username)\n"
+"--deluser : delete an existing system user from MTS (requires "
+"username)\n"
+"--addclient : add a client machine to MTS (requires MAC address, IP, "
+"nbi image name)\n"
+"--delclient : delete a client machine from MTS (requires MAC address, "
+"IP, nbi image name)"
msgstr ""
+"[OPTIONS]...\n"
+"Mandrake Terminal Server Configurator\n"
+"--enable : enable MTS\n"
+"--disable : disable MTS\n"
+"--start : start MTS\n"
+"--stop : stop MTS\n"
+"--adduser : add an existing system user to MTS (requires username)\n"
+"--deluser : delete an existing system user from MTS (requires "
+"username)\n"
+"--addclient : add a client machine to MTS (requires MAC address, IP, "
+"nbi image name)\n"
+"--delclient : delete a client machine from MTS (requires MAC address, "
+"IP, nbi image name)"
-#: ../../network/modem.pm_.c:57
-msgid "Please choose which serial port your modem is connected to."
+#: ../../standalone.pm:1
+#, c-format
+msgid ""
+"Font Importation and monitoring "
+"application \n"
+"--windows_import : import from all available windows partitions.\n"
+"--xls_fonts : show all fonts that already exist from xls\n"
+"--strong : strong verification of font.\n"
+"--install : accept any font file and any directry.\n"
+"--uninstall : uninstall any font or any directory of font.\n"
+"--replace : replace all font if already exist\n"
+"--application : 0 none application.\n"
+" : 1 all application available supported.\n"
+" : name_of_application like so for staroffice \n"
+" : and gs for ghostscript for only this one."
msgstr ""
+"Font Importation and monitoring "
+"application \n"
+"--windows_import : import from all available windows partitions.\n"
+"--xls_fonts : show all fonts that already exist from xls\n"
+"--strong : strong verification of font.\n"
+"--install : accept any font file and any directry.\n"
+"--uninstall : uninstall any font or any directory of font.\n"
+"--replace : replace all font if already exist\n"
+"--application : 0 none application.\n"
+" : 1 all application available supported.\n"
+" : name_of_application like so for staroffice \n"
+" : and gs for ghostscript for only this one."
-#: ../../network/modem.pm_.c:67
-msgid "Dialup options"
-msgstr "Dialup options"
+#: ../../standalone.pm:1
+#, c-format
+msgid ""
+"[OPTIONS] [PROGRAM_NAME]\n"
+"\n"
+"OPTIONS:\n"
+" --help - print this help message.\n"
+" --report - program should be one of mandrake tools\n"
+" --incident - program should be one of mandrake tools"
+msgstr ""
+"[OPTIONS] [PROGRAM_NAME]\n"
+"\n"
+"OPTIONS:\n"
+" --help - print this help message.\n"
+" --report - program should be one of mandrake tools\n"
+" --incident - program should be one of mandrake tools"
-#: ../../network/modem.pm_.c:68 ../../standalone/drakconnect_.c:619
-msgid "Connection name"
+#: ../../standalone.pm:1
+#, c-format
+msgid ""
+"[--config-info] [--daemon] [--debug] [--default] [--show-conf]\n"
+"Backup and Restore application\n"
+"\n"
+"--default : save default directories.\n"
+"--debug : show all debug messages.\n"
+"--show-conf : list of files or directories to backup.\n"
+"--config-info : explain configuration file options (for non-X "
+"users).\n"
+"--daemon : use daemon configuration. \n"
+"--help : show this message.\n"
+"--version : show version number.\n"
msgstr ""
+"[--config-info] [--daemon] [--debug] [--default] [--show-conf]\n"
+"Backup and Restore application\n"
+"\n"
+"--default : save default directories.\n"
+"--debug : show all debug messages.\n"
+"--show-conf : list of files or directories to backup.\n"
+"--config-info : explain configuration file options (for non-X "
+"users).\n"
+"--daemon : use daemon configuration. \n"
+"--help : show this message.\n"
+"--version : show version number.\n"
-#: ../../network/modem.pm_.c:69 ../../standalone/drakconnect_.c:620
-msgid "Phone number"
-msgstr "رقم التّليفون "
+#: ../../standalone.pm:1
+#, c-format
+msgid ""
+"This program is free software; you can redistribute it and/or modify\n"
+"it under the terms of the GNU General Public License as published by\n"
+"the Free Software Foundation; either version 2, or (at your option)\n"
+"any later version.\n"
+"\n"
+"This program is distributed in the hope that it will be useful,\n"
+"but WITHOUT ANY WARRANTY; without even the implied warranty of\n"
+"MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n"
+"GNU General Public License for more details.\n"
+"\n"
+"You should have received a copy of the GNU General Public License\n"
+"along with this program; if not, write to the Free Software\n"
+"Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.\n"
+msgstr ""
+" هذا البرنامج هو برنامج حر; يمكنك اعادة توزيعة و/أو تعديله\n"
+" تحت بنود رخصة GNU العمومية الشاملة (GPL) كما نُشِرت عن طريق\n"
+" جمعية البرمجيات الحرة; إما اإصدار الثاني من الترخيص أو\n"
+" أي نسخة تالية (حسب اختيارك).\n"
+"\n"
+" هذا البرنامج يُوزَّع على أمل أن يكون مفيدا,\n"
+" لكن دون أي ضمان’; حتى بدون الضمانة المفهومة\n"
+" للإتجار أو المناسبة لغرض معين. انظر\n"
+" رخصة GNU العمومية الشاملة للتفاصيل.\n"
+"\n"
+" يجب أن تكون قد تسلمت نسخة من ترخيص GNU العمومية الشاملة\n"
+" مع البرنامج; في حالة عدم تسلم الرخصة راسل جمعية البرمجيات الحرة على العنوان "
+"التالي\n"
+" Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA "
+"02111-1307,\n"
+" USA.\n"
-#: ../../network/modem.pm_.c:70 ../../standalone/drakconnect_.c:621
-msgid "Login ID"
-msgstr "Login ID"
+#: ../../steps.pm:1
+#, c-format
+msgid "Exit install"
+msgstr "الخروج من التثبيت"
-#: ../../network/modem.pm_.c:72 ../../standalone/drakconnect_.c:623
-msgid "CHAP"
-msgstr "CHAP"
+#: ../../steps.pm:1
+#, c-format
+msgid "Install system updates"
+msgstr "تثبيت تحديثات النظام"
-#: ../../network/modem.pm_.c:72 ../../standalone/drakconnect_.c:623
-msgid "PAP"
-msgstr "PAP"
+#: ../../steps.pm:1
+#, c-format
+msgid "Configure services"
+msgstr "تهيئة الخدمات"
-#: ../../network/modem.pm_.c:72 ../../standalone/drakconnect_.c:623
-msgid "Script-based"
-msgstr "Script-based"
+#: ../../steps.pm:1
+#, c-format
+msgid "Configure X"
+msgstr "تهيئة X"
-#: ../../network/modem.pm_.c:72 ../../standalone/drakconnect_.c:623
-msgid "Terminal-based"
-msgstr "Terminal-based"
+#: ../../steps.pm:1
+#, c-format
+msgid "Install bootloader"
+msgstr "تثبيت محمِّل الإقلاع"
-#: ../../network/modem.pm_.c:73 ../../standalone/drakconnect_.c:624
-msgid "Domain name"
-msgstr "Domain name"
+#: ../../steps.pm:1
+#, c-format
+msgid "Configure networking"
+msgstr "تهيئة الشبكة"
-#: ../../network/modem.pm_.c:74 ../../standalone/drakconnect_.c:625
-msgid "First DNS Server (optional)"
-msgstr "( خادم ا الأوّل ( اختياريّ "
+#: ../../steps.pm:1
+#, c-format
+msgid "Add a user"
+msgstr "أضف مستخدم"
-#: ../../network/modem.pm_.c:75 ../../standalone/drakconnect_.c:626
-msgid "Second DNS Server (optional)"
+#: ../../steps.pm:1
+#, c-format
+msgid "Install system"
+msgstr "تثبيت النظام"
+
+#: ../../steps.pm:1
+#, c-format
+msgid "Choose packages to install"
+msgstr "اختر الحزم التي ستُثبَّت"
+
+#: ../../steps.pm:1
+#, c-format
+msgid "Format partitions"
+msgstr "تجهيز التجزئات"
+
+#: ../../steps.pm:1
+#, c-format
+msgid "Partitioning"
+msgstr "تجزئة الأقراص"
+
+#: ../../steps.pm:1
+#, c-format
+msgid "Choose your keyboard"
+msgstr "اختر لوحة المفاتيح الخاصة بك"
+
+#: ../../steps.pm:1
+#, c-format
+msgid "Select installation class"
+msgstr "اختر نوع التثبيت"
+
+#: ../../steps.pm:1
+#, c-format
+msgid "Hard drive detection"
+msgstr "التحقق من الأقراص الصلبة"
+
+#: ../../steps.pm:1
+#, c-format
+msgid "Configure mouse"
+msgstr "إعداد الفأرة"
+
+#: ../../steps.pm:1
+#, c-format
+msgid "License"
+msgstr "الترخيص"
+
+#: ../../steps.pm:1
+#, c-format
+msgid "Choose your language"
+msgstr "اختر لغتك"
+
+#: ../../ugtk2.pm:1
+#, c-format
+msgid "utopia 25"
+msgstr "utopia 25"
+
+#: ../../ugtk2.pm:1 ../../ugtk.pm:1 ../../standalone/logdrake:1
+#, c-format
+msgid "logdrake"
+msgstr "logdrake"
+
+#: ../../ugtk.pm:1
+#, c-format
+msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
+msgstr "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
+
+#: ../../Xconfig/card.pm:1
+#, c-format
+msgid "Xpmac (installation display driver)"
+msgstr "Xpmac (مشغل عرض التثبيت)"
+
+#: ../../Xconfig/card.pm:1
+#, c-format
+msgid ""
+"Your card can have 3D hardware acceleration support with XFree %s,\n"
+"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
msgstr ""
+"يمكن لبطاقتك التمتع بدعم للرسوم ثلاثية الأبعاد مع XFree %s, \n"
+"لاحظ أن هذا الدعم تجريبي و قد يتسبب في ايقاف جهازك."
+
+#: ../../Xconfig/card.pm:1
+#, c-format
+msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
+msgstr "XFree %s مع دعم تجريبي للرسوم ثلاثية الأبعاد"
-#: ../../network/modem.pm_.c:95
+#: ../../Xconfig/card.pm:1
+#, c-format
+msgid "Your card can have 3D hardware acceleration support with XFree %s."
+msgstr "يمكن لبطاقتك الحصول على دعم للتسريع ثلاثي الأبعاد مع XFree %s"
+
+#: ../../Xconfig/card.pm:1 ../../Xconfig/various.pm:1
+#, c-format
+msgid "XFree %s with 3D hardware acceleration"
+msgstr "XFree %s مع تسريع ثلاثي الأبعاد"
+
+#: ../../Xconfig/card.pm:1
+#, c-format
msgid ""
-"Your modem isn't supported by the system.\n"
-"Take a look at http://www.linmodems.org"
+"Your card can have 3D hardware acceleration support but only with XFree %s,\n"
+"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER.\n"
+"Your card is supported by XFree %s which may have a better support in 2D."
msgstr ""
+"يمكن لبطاقتك التمتع بدعم للتسريع ثلاثي الأبعاد لكن فقط مع XFree %s, \n"
+"لاحظ أن هذا الدعم تجريبي و قد يتسبب في ايقاف جهازك.\n"
+"بطاقتك مدعومة عن طريق XFree %s التي يمكن أن تكون مدعومة بشكل أفضل في وضعية "
+"الرسوم ثنائية الأبعاد."
-#: ../../network/modem.pm_.c:97
+#: ../../Xconfig/card.pm:1
#, c-format
msgid ""
-"\"%s\" based winmodem detected, do you want to install needed software ?"
+"Your card can have 3D hardware acceleration support but only with XFree %s.\n"
+"Your card is supported by XFree %s which may have a better support in 2D."
msgstr ""
+"يمكن لبطاقتك الحصول على دعم للتسريع ثلاثي الأبعاد لكن فقط مع XFree %s.\n"
+"بطاقتك مدعومة عن طريق XFree %s التي يمكن أن تكون مدعومة بشل أفضل في الوضع "
+"ثنائي الأبعاد."
-#: ../../network/modem.pm_.c:97
-#, fuzzy
-msgid "Do nothing"
-msgstr "لكن ليس موائمة"
+#: ../../Xconfig/card.pm:1 ../../Xconfig/various.pm:1
+#, c-format
+msgid "XFree %s"
+msgstr "XFree %s"
-#: ../../network/modem.pm_.c:97
-#, fuzzy
-msgid "Install rpm"
-msgstr "تثبيت النظام"
+#: ../../Xconfig/card.pm:1
+#, c-format
+msgid "Configure only card \"%s\"%s"
+msgstr "قم بإعداد البطاقة \"%s\"%s فقط"
-#: ../../network/modem.pm_.c:97
-#, fuzzy
-msgid "Title"
-msgstr "الجدول"
+#: ../../Xconfig/card.pm:1
+#, c-format
+msgid "Use Xinerama extension"
+msgstr "استخدام امتداد Xinerama"
+
+#: ../../Xconfig/card.pm:1
+#, c-format
+msgid "Configure all heads independently"
+msgstr "اعداد كل الرؤوس بشكل مستقل"
+
+#: ../../Xconfig/card.pm:1
+#, c-format
+msgid "Which configuration of XFree do you want to have?"
+msgstr "أي اعداد لـXFree تريد؟"
+
+#: ../../Xconfig/card.pm:1
+#, c-format
+msgid "XFree configuration"
+msgstr "إعداد XFree"
+
+#: ../../Xconfig/card.pm:1
+#, c-format
+msgid "Select the memory size of your graphics card"
+msgstr "إختر حجم ذاكرة بطاقة الشاشة"
-#: ../../network/netconnect.pm_.c:29
+#: ../../Xconfig/card.pm:1
+#, c-format
msgid ""
-"\n"
-"You can disconnect or reconfigure your connection."
+"Your system supports multiple head configuration.\n"
+"What do you want to do?"
msgstr ""
+"نظامك يدعم الإعداد متعدد الرؤوس.\n"
+"ماذا تريد أن تفعل؟"
+
+#: ../../Xconfig/card.pm:1
+#, c-format
+msgid "Multi-head configuration"
+msgstr "إعداد متعدد الرؤوس"
+
+#: ../../Xconfig/card.pm:1
+#, c-format
+msgid "Choose an X server"
+msgstr "إختر خادم X"
+
+#: ../../Xconfig/card.pm:1
+#, c-format
+msgid "X server"
+msgstr "خادم X"
+
+#: ../../Xconfig/card.pm:1
+#, c-format
+msgid "64 MB or more"
+msgstr "64 ميغابايت أو أكثر"
+
+#: ../../Xconfig/card.pm:1
+#, c-format
+msgid "32 MB"
+msgstr "32 ميغابايت"
+
+#: ../../Xconfig/card.pm:1
+#, c-format
+msgid "16 MB"
+msgstr "16 ميغابايت"
+
+#: ../../Xconfig/card.pm:1
+#, c-format
+msgid "8 MB"
+msgstr "8 ميغابايت"
+
+#: ../../Xconfig/card.pm:1
+#, c-format
+msgid "4 MB"
+msgstr "4 ميغابايت"
+
+#: ../../Xconfig/card.pm:1
+#, c-format
+msgid "2 MB"
+msgstr "2 ميغابايت"
+
+#: ../../Xconfig/card.pm:1
+#, c-format
+msgid "1 MB"
+msgstr "1 ميغابايت"
+
+#: ../../Xconfig/card.pm:1
+#, c-format
+msgid "512 kB"
+msgstr "512 كيلوبايت"
+
+#: ../../Xconfig/card.pm:1
+#, c-format
+msgid "256 kB"
+msgstr "256 كيلوبايت"
-#: ../../network/netconnect.pm_.c:29 ../../network/netconnect.pm_.c:32
+#: ../../Xconfig/main.pm:1
+#, c-format
msgid ""
+"Keep the changes?\n"
+"The current configuration is:\n"
"\n"
-"You can reconfigure your connection."
+"%s"
msgstr ""
+"هل تريد حفظ التغييرات؟\n"
+"الإعداد الحالي هو:\n"
+"\n"
+"%s"
-#: ../../network/netconnect.pm_.c:29
-msgid "You are currently connected to internet."
-msgstr ""
+#: ../../Xconfig/main.pm:1 ../../diskdrake/dav.pm:1
+#: ../../diskdrake/interactive.pm:1 ../../diskdrake/removable.pm:1
+#: ../../diskdrake/smbnfs_gtk.pm:1
+#, c-format
+msgid "Options"
+msgstr "خيارات"
-#: ../../network/netconnect.pm_.c:32
+#: ../../Xconfig/main.pm:1
+#, c-format
+msgid "Test"
+msgstr "اختبار"
+
+#: ../../Xconfig/main.pm:1 ../../Xconfig/resolution_and_depth.pm:1
+#, c-format
+msgid "Resolution"
+msgstr "دقة العرض"
+
+#: ../../Xconfig/main.pm:1 ../../Xconfig/monitor.pm:1
+#, c-format
+msgid "Monitor"
+msgstr "الشاشة"
+
+#: ../../Xconfig/main.pm:1
+#, c-format
+msgid "Graphic Card"
+msgstr "بطاقة الشاشة"
+
+#: ../../Xconfig/main.pm:1 ../../diskdrake/dav.pm:1
+#: ../../printer/printerdrake.pm:1 ../../standalone/drakperm:1
+#: ../../standalone/draksplash:1 ../../standalone/harddrake2:1
+#: ../../standalone/logdrake:1 ../../standalone/scannerdrake:1
+#, c-format
+msgid "Quit"
+msgstr "خروج"
+
+#: ../../Xconfig/monitor.pm:1
+#, c-format
+msgid "Vertical refresh rate"
+msgstr "نسبة الإنعاش الرأسي"
+
+#: ../../Xconfig/monitor.pm:1
+#, c-format
+msgid "Horizontal refresh rate"
+msgstr "نسبة الإنعاش الأفقي"
+
+#: ../../Xconfig/monitor.pm:1
+#, c-format
msgid ""
+"The two critical parameters are the vertical refresh rate, which is the "
+"rate\n"
+"at which the whole screen is refreshed, and most importantly the horizontal\n"
+"sync rate, which is the rate at which scanlines are displayed.\n"
"\n"
-"You can connect to Internet or reconfigure your connection."
+"It is VERY IMPORTANT that you do not specify a monitor type with a sync "
+"range\n"
+"that is beyond the capabilities of your monitor: you may damage your "
+"monitor.\n"
+" If in doubt, choose a conservative setting."
msgstr ""
+"المعاملان المهمان جدا هما نسبة الإنعاش الأفقي, و هي النسبة التي\n"
+"يتم فيها انعاش الشاشة كاملة, و الأهم هو نسبة التزامن الأفقي\n"
+"و التي في خلالها يتم عرض خطوط المسح.\n"
+"\n"
+"من *المهم جدا* أن لا تحدد نوع شاشة مع متوسط تزامن\n"
+"أكبر من مقدرة شاشتك لأنك بهذا قد تدمر شاشتك.\n"
+" اذا لم تكن متأكدا يمكنك اختيار اعدادات عادية."
-#: ../../network/netconnect.pm_.c:32
-msgid "You are not currently connected to Internet."
-msgstr ""
+#: ../../Xconfig/monitor.pm:1
+#, c-format
+msgid "Plug'n Play probing failed. Please select the correct monitor"
+msgstr "تعذر التأكد من وجود Plug 'n Play. فضلاً اختر الشاشة الصحيحة"
-#: ../../network/netconnect.pm_.c:36
-msgid "Connect"
-msgstr "اتصل"
+#: ../../Xconfig/monitor.pm:1 ../../standalone/harddrake2:1
+#, c-format
+msgid "Vendor"
+msgstr "المصنع"
-#: ../../network/netconnect.pm_.c:37
-msgid "Disconnect"
-msgstr "اقطع الإتصال"
+#: ../../Xconfig/monitor.pm:1
+#, c-format
+msgid "Plug'n Play"
+msgstr "Plug'n Play"
-#: ../../network/netconnect.pm_.c:38
-msgid "Configure the connection"
-msgstr "قم بإعداد الإتصال"
+#: ../../Xconfig/monitor.pm:1
+#, c-format
+msgid "Choose a monitor"
+msgstr "إختر شاشة"
-#: ../../network/netconnect.pm_.c:41
-msgid "Internet connection & configuration"
-msgstr ""
+#: ../../Xconfig/resolution_and_depth.pm:1
+#, c-format
+msgid "Graphics card: %s"
+msgstr "بطاقة الشاشة: %s"
-#: ../../network/netconnect.pm_.c:94
+#: ../../Xconfig/resolution_and_depth.pm:1
#, c-format
-msgid "We are now going to configure the %s connection."
+msgid "Choose the resolution and the color depth"
+msgstr "اختر دقة العرض و عمق الألوام"
+
+#: ../../Xconfig/resolution_and_depth.pm:1
+#, c-format
+msgid "Resolutions"
+msgstr "دقة العرض"
+
+#: ../../Xconfig/resolution_and_depth.pm:1
+#, c-format
+msgid "4 billion colors (32 bits)"
+msgstr "4 بليون لون (32 بت)"
+
+#: ../../Xconfig/resolution_and_depth.pm:1
+#, c-format
+msgid "16 million colors (24 bits)"
+msgstr "16 مليون لون (24 بت)"
+
+#: ../../Xconfig/resolution_and_depth.pm:1
+#, c-format
+msgid "65 thousand colors (16 bits)"
+msgstr "65 ألف لون (16 بت)"
+
+#: ../../Xconfig/resolution_and_depth.pm:1
+#, c-format
+msgid "32 thousand colors (15 bits)"
+msgstr "32 ألف لون (15 بت)"
+
+#: ../../Xconfig/resolution_and_depth.pm:1
+#, c-format
+msgid "256 colors (8 bits)"
+msgstr "256 لون (8 بت)"
+
+#: ../../Xconfig/test.pm:1
+#, c-format
+msgid "Is this the correct setting?"
+msgstr "هل هذا هو الإعداد الصحيح؟"
+
+#: ../../Xconfig/test.pm:1
+#, c-format
+msgid "Leaving in %d seconds"
+msgstr "ستتم المغادرة في %d ثوان"
+
+#: ../../Xconfig/test.pm:1
+#, c-format
+msgid ""
+"An error occurred:\n"
+"%s\n"
+"Try to change some parameters"
msgstr ""
+"ظهر خطأ:\n"
+"%s\n"
+"حاول تغيير بعض المعاملات"
+
+#: ../../Xconfig/test.pm:1
+#, c-format
+msgid "Warning: testing this graphic card may freeze your computer"
+msgstr "تحذير: اختبار بطاقة العرض هذه قد يتسب في ايقاف جهازك"
+
+#: ../../Xconfig/test.pm:1
+#, c-format
+msgid "Do you want to test the configuration?"
+msgstr "هل تريد تجربة الإعداد؟"
-#: ../../network/netconnect.pm_.c:103
+#: ../../Xconfig/test.pm:1
+#, c-format
+msgid "Test of the configuration"
+msgstr "اختبار الإعداد"
+
+#: ../../Xconfig/various.pm:1
+#, c-format
+msgid "What norm is your TV using?"
+msgstr "أي نظام يستخدمه جهاز التلفاز لديك؟"
+
+#: ../../Xconfig/various.pm:1
#, c-format
msgid ""
+"Your graphic card seems to have a TV-OUT connector.\n"
+"It can be configured to work using frame-buffer.\n"
"\n"
+"For this you have to plug your graphic card to your TV before booting your "
+"computer.\n"
+"Then choose the \"TVout\" entry in the bootloader\n"
"\n"
+"Do you have this feature?"
+msgstr ""
+"بطاقة الرسوم الخاصة بك يبدو أنها تحتوي على موصل للتلفاز.\n"
+"يمكن تهيئة البطاقة للعمل باستخدام الـ frame-buffer.\n"
"\n"
-"We are now going to configure the %s connection.\n"
-"\n"
+"لهذا الغرض يجب عليك توصيل بطاقة الرسوم بالتلفاز قبل بدء تشغيل الكمبيوتر.\n"
+"ثم اختر \"TVout\" من محمّل الإقلاع\n"
"\n"
-"Press OK to continue."
-msgstr ""
-
-#: ../../network/netconnect.pm_.c:132 ../../network/netconnect.pm_.c:272
-#: ../../network/netconnect.pm_.c:292 ../../network/tools.pm_.c:77
-msgid "Network Configuration"
-msgstr ""
+"هل لديك هذه الميزة؟"
-#: ../../network/netconnect.pm_.c:133
+#: ../../Xconfig/various.pm:1
+#, c-format
msgid ""
-"Because you are doing a network installation, your network is already "
-"configured.\n"
-"Click on Ok to keep your configuration, or cancel to reconfigure your "
-"Internet & Network connection.\n"
+"I can setup your computer to automatically start the graphical interface "
+"(XFree) upon booting.\n"
+"Would you like XFree to start when you reboot?"
msgstr ""
+"يمكنني جعل جهازك يبدأ X بشكل آلي بعد الإقلاع.\n"
+"هل تريد X أن بيدأ بعد إعادة تشغيل جهازك؟"
+
+#: ../../Xconfig/various.pm:1
+#, c-format
+msgid "Graphical interface at startup"
+msgstr "واجهة رسومية عند بدء التشغيل"
+
+#: ../../Xconfig/various.pm:1
+#, c-format
+msgid "XFree86 driver: %s\n"
+msgstr "مشغل XFree86: %s\n"
+
+#: ../../Xconfig/various.pm:1
+#, c-format
+msgid "XFree86 server: %s\n"
+msgstr "خادم XFree86: %s\n"
+
+#: ../../Xconfig/various.pm:1
+#, c-format
+msgid "Resolution: %s\n"
+msgstr "دقة العرض: %s\n"
+
+#: ../../Xconfig/various.pm:1
+#, c-format
+msgid "Color depth: %s\n"
+msgstr "عمق الألوان: %s\n"
+
+#: ../../Xconfig/various.pm:1
+#, c-format
+msgid "Graphics memory: %s kB\n"
+msgstr "ذاكرة بطاقة الشاشة: %s كيلوبايت\n"
+
+#: ../../Xconfig/various.pm:1
+#, c-format
+msgid "Graphics card: %s\n"
+msgstr "بطاقة الشاشة: %s\n"
+
+#: ../../Xconfig/various.pm:1
+#, c-format
+msgid "Monitor VertRefresh: %s\n"
+msgstr "انعاش الشاشة الرأسي: %s\n"
+
+#: ../../Xconfig/various.pm:1
+#, c-format
+msgid "Monitor HorizSync: %s\n"
+msgstr "تزامن الشاشة الأفقي: %s\n"
+
+#: ../../Xconfig/various.pm:1
+#, c-format
+msgid "Monitor: %s\n"
+msgstr "الشاشة: %s\n"
+
+#: ../../Xconfig/various.pm:1
+#, c-format
+msgid "Mouse device: %s\n"
+msgstr "جهاز الفأرة: %s\n"
+
+#: ../../Xconfig/various.pm:1
+#, c-format
+msgid "Mouse type: %s\n"
+msgstr "نوع الفأرة: %s\n"
+
+#: ../../Xconfig/various.pm:1
+#, c-format
+msgid "Keyboard layout: %s\n"
+msgstr "لوحة المفاتيح: %s\n"
+
+#: ../../diskdrake/dav.pm:1 ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Options: %s"
+msgstr "الخيارات: %s"
+
+#: ../../diskdrake/dav.pm:1 ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Mount point: "
+msgstr "نقطة التحميل: "
+
+#: ../../diskdrake/dav.pm:1
+#, c-format
+msgid "Server: "
+msgstr "الخادم: "
+
+#: ../../diskdrake/dav.pm:1
+#, c-format
+msgid "The URL must begin with http:// or https://"
+msgstr "العنوان يجب أن يبدأ بـ http:// أو https://"
+
+#: ../../diskdrake/dav.pm:1
+#, c-format
+msgid "Please enter the WebDAV server URL"
+msgstr "رجاء أدخل عنوان خادم WebDav"
+
+#: ../../diskdrake/dav.pm:1 ../../diskdrake/interactive.pm:1
+#: ../../diskdrake/removable.pm:1 ../../diskdrake/smbnfs_gtk.pm:1
+#, c-format
+msgid "Mount point"
+msgstr "نقطة التحميل"
+
+#: ../../diskdrake/dav.pm:1
+#, c-format
+msgid "Server"
+msgstr "خادم"
-#: ../../network/netconnect.pm_.c:157
+#: ../../diskdrake/dav.pm:1 ../../diskdrake/interactive.pm:1
+#: ../../diskdrake/smbnfs_gtk.pm:1
+#, c-format
+msgid "Mount"
+msgstr "حمل"
+
+#: ../../diskdrake/dav.pm:1 ../../diskdrake/interactive.pm:1
+#: ../../diskdrake/smbnfs_gtk.pm:1
+#, c-format
+msgid "Unmount"
+msgstr "احذف التحميل"
+
+#: ../../diskdrake/dav.pm:1
+#, c-format
+msgid "New"
+msgstr "جديد"
+
+#: ../../diskdrake/dav.pm:1
+#, c-format
msgid ""
-"Welcome to The Network Configuration Wizard.\n"
-"\n"
-"We are about to configure your internet/network connection.\n"
-"If you don't want to use the auto detection, deselect the checkbox.\n"
+"WebDAV is a protocol that allows you to mount a web server's directory\n"
+"locally, and treat it like a local filesystem (provided the web server is\n"
+"configured as a WebDAV server). If you would like to add WebDAV mount\n"
+"points, select \"New\"."
msgstr ""
+"WebDAV هو برتوكول يسمج لك بتحميل دليل في خادم الويب بشكل\n"
+"محلي, و معاملته كنظام ملفات محلي (يجب أن يكون خادم الويب معدّ\n"
+"كخادم WebDAV). اذا كنت تريد اضافة نقاط تحميل\n"
+"WebDAV, اختر \"جديد\"."
-#: ../../network/netconnect.pm_.c:163
-msgid "Choose the profile to configure"
-msgstr ""
+#: ../../diskdrake/hd_gtk.pm:1
+#, c-format
+msgid "Use ``%s'' instead"
+msgstr "استخدم ``%s'' بدلا من ذلك"
-#: ../../network/netconnect.pm_.c:164
-msgid "Use auto detection"
-msgstr ""
+#: ../../diskdrake/hd_gtk.pm:1 ../../diskdrake/interactive.pm:1
+#: ../../diskdrake/removable.pm:1 ../../standalone/harddrake2:1
+#, c-format
+msgid "Type"
+msgstr "النوع"
-#: ../../network/netconnect.pm_.c:165 ../../printer/printerdrake.pm_.c:2966
-#: ../../standalone/drakconnect_.c:271 ../../standalone/drakconnect_.c:274
-#: ../../standalone/drakfloppy_.c:118
-msgid "Expert Mode"
-msgstr "وضعية الخبير"
+#: ../../diskdrake/hd_gtk.pm:1
+#, c-format
+msgid "Use ``Unmount'' first"
+msgstr "استخدم ``ازالة التحميل'' أولا"
-#: ../../network/netconnect.pm_.c:171 ../../printer/printerdrake.pm_.c:364
-msgid "Detecting devices..."
-msgstr ""
+#: ../../diskdrake/hd_gtk.pm:1 ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Delete"
+msgstr "إلغاء"
-#: ../../network/netconnect.pm_.c:214
-msgid "Normal modem connection"
-msgstr ""
+#: ../../diskdrake/hd_gtk.pm:1 ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Create"
+msgstr "انشاء تجزئة"
-#: ../../network/netconnect.pm_.c:214
+#: ../../diskdrake/hd_gtk.pm:1
#, c-format
-msgid "detected on port %s"
-msgstr ""
+msgid "Filesystem types:"
+msgstr "أنواع أنظمة الملفات:"
-#: ../../network/netconnect.pm_.c:215
-#, fuzzy
-msgid "Winmodem connection"
-msgstr "وصلة انترنت"
+#: ../../diskdrake/hd_gtk.pm:1 ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Empty"
+msgstr "فارغ"
-#: ../../network/netconnect.pm_.c:215 ../../network/netconnect.pm_.c:217
-#, fuzzy
-msgid "detected"
-msgstr "detected %s"
+#: ../../diskdrake/hd_gtk.pm:1
+#, c-format
+msgid "Windows"
+msgstr "Windows"
-#: ../../network/netconnect.pm_.c:216
-msgid "ISDN connection"
-msgstr "ISDN connection"
+#: ../../diskdrake/hd_gtk.pm:1
+#, c-format
+msgid "HFS"
+msgstr "HFS"
-#: ../../network/netconnect.pm_.c:216
+#: ../../diskdrake/hd_gtk.pm:1
#, c-format
-msgid "detected %s"
-msgstr "detected %s"
+msgid "SunOS"
+msgstr "SunOS"
-#: ../../network/netconnect.pm_.c:217
-msgid "ADSL connection"
-msgstr "وصلة ADSL"
+#: ../../diskdrake/hd_gtk.pm:1
+#, c-format
+msgid "Swap"
+msgstr "التبديل"
-#: ../../network/netconnect.pm_.c:218
-msgid "Cable connection"
-msgstr ""
+#: ../../diskdrake/hd_gtk.pm:1
+#, c-format
+msgid "Journalised FS"
+msgstr "Journalised FS"
-#: ../../network/netconnect.pm_.c:218
-msgid "cable connection detected"
-msgstr ""
+#: ../../diskdrake/hd_gtk.pm:1
+#, c-format
+msgid "Ext2"
+msgstr "Ext2"
-#: ../../network/netconnect.pm_.c:219
-msgid "LAN connection"
-msgstr "وصلة LAN"
+#
+#: ../../diskdrake/hd_gtk.pm:1
+#, c-format
+msgid "No hard drives found"
+msgstr "نعذر ايجاد أقراص صلبة"
-#: ../../network/netconnect.pm_.c:219
-msgid "ethernet card(s) detected"
-msgstr ""
+#: ../../diskdrake/hd_gtk.pm:1
+#, c-format
+msgid "Please click on a partition"
+msgstr "فضلا اضغط على تجزئة"
-#: ../../network/netconnect.pm_.c:222
-msgid "Choose the connection you want to configure"
+#: ../../diskdrake/hd_gtk.pm:1
+#, c-format
+msgid ""
+"You have one big MicroSoft Windows partition.\n"
+"I suggest you first resize that partition\n"
+"(click on it, then click on \"Resize\")"
msgstr ""
+"لديك تجزئة Microsofr Windows كبيرة.\n"
+"اقترح أن تغير حجم هذه التجزئة\n"
+"(اضغط عليها ثم اختر \"تغيير الحجم\")"
-#: ../../network/netconnect.pm_.c:246
+#: ../../diskdrake/hd_gtk.pm:1
+#, c-format
+msgid "Choose action"
+msgstr "اختر حدث"
+
+#: ../../diskdrake/hd_gtk.pm:1
+#, c-format
+msgid "Wizard"
+msgstr "المعالج"
+
+#: ../../diskdrake/hd_gtk.pm:1
+#, c-format
msgid ""
-"You have configured multiple ways to connect to the Internet.\n"
-"Choose the one you want to use.\n"
-"\n"
+"If you plan to use aboot, be carefull to leave a free space (2048 sectors is "
+"enough)\n"
+"at the beginning of the disk"
msgstr ""
+"اذا كنت تريد استخدام aboot, فلا تنسى أن تترك مساحة فارغة في\n"
+"بداية القرص (2048 قطاعات كافية)"
-#: ../../network/netconnect.pm_.c:247
-msgid "Internet connection"
-msgstr "وصلة انترنت"
+#: ../../diskdrake/hd_gtk.pm:1
+#, c-format
+msgid "Please make a backup of your data first"
+msgstr "رجاء قم بعمل نسخة احتياطية من بياناتك أولا"
-#: ../../network/netconnect.pm_.c:253
-msgid "Do you want to start the connection at boot?"
-msgstr ""
+#: ../../diskdrake/hd_gtk.pm:1 ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Read carefully!"
+msgstr "اقرأ جيدا!"
-#: ../../network/netconnect.pm_.c:267
-msgid "Network configuration"
-msgstr "ا عداد الشّبكة "
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Encryption key (again)"
+msgstr "مفاتح التشفير (مرة أخرى)"
-#: ../../network/netconnect.pm_.c:268
-msgid "The network needs to be restarted"
-msgstr ""
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Encryption key"
+msgstr "مفاتح التشفير"
+
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "The encryption keys do not match"
+msgstr "مفاتيح التشفير غير متطابقة"
+
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "This encryption key is too simple (must be at least %d characters long)"
+msgstr "مفتاح التشفير هذا بسيط جدا (يجب أن يكون %d حرفا على الأقل)"
+
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Choose your filesystem encryption key"
+msgstr "اختر مفتاح تشفير نظام الملفات"
+
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Filesystem encryption key"
+msgstr "مفتاح تشفير نظام الملفات"
+
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Type: "
+msgstr "النوع: "
+
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "on channel %d id %d\n"
+msgstr "على القناة %d id %d\n"
+
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Partition table type: %s\n"
+msgstr "نوع جدول التقسيم: %s\n"
+
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "LVM-disks %s\n"
+msgstr "أقراص LVM %s\n"
+
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Info: "
+msgstr "معلومات: "
+
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
+msgstr "الهندسة: %s اسطوانة, %s رأس, %s قطاع\n"
+
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Size: %s\n"
+msgstr "الحجم: %s\n"
+
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Read-only"
+msgstr "للقراءة فقط"
-#: ../../network/netconnect.pm_.c:272
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Device: "
+msgstr "الجهاز: "
+
+#: ../../diskdrake/interactive.pm:1
#, c-format
msgid ""
-"A problem occured while restarting the network: \n"
"\n"
-"%s"
+"This special Bootstrap\n"
+"partition is for\n"
+"dual-booting your system.\n"
msgstr ""
+"\n"
+"تجزئة الإقلاع\n"
+"هذه هي\n"
+"للإقلاع المزدوج في نظامك.\n"
-#: ../../network/netconnect.pm_.c:282
+#: ../../diskdrake/interactive.pm:1
+#, c-format
msgid ""
-"Congratulations, the network and Internet configuration is finished.\n"
-"The configuration will now be applied to your system.\n"
"\n"
+"Chances are, this partition is\n"
+"a Driver partition. You should\n"
+"probably leave it alone.\n"
msgstr ""
+"\n"
+"Chances are, this partition is\n"
+"a Driver partition. You should\n"
+"probably leave it alone.\n"
-#: ../../network/netconnect.pm_.c:286
-msgid ""
-"After this is done, we recommend that you restart your X environment to "
-"avoid any hostname-related problems."
-msgstr ""
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Loopback file name: %s"
+msgstr "اسم ملف Loopback: %s"
-#: ../../network/netconnect.pm_.c:287
-msgid ""
-"Problems occured during configuration.\n"
-"Test your connection via net_monitor or mcc. If your connection doesn't "
-"work, you might want to relaunch the configuration."
-msgstr ""
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "RAID-disks %s\n"
+msgstr "أقراص RAID %s\n"
+
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Chunk size %s\n"
+msgstr "حجم Chunk %s\n"
+
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Level %s\n"
+msgstr "المستوى %s\n"
-#: ../../network/network.pm_.c:278
+#: ../../diskdrake/interactive.pm:1
+#, c-format
msgid ""
-"WARNING: this device has been previously configured to connect to the "
-"Internet.\n"
-"Simply accept to keep this device configured.\n"
-"Modifying the fields below will override this configuration."
+"Partition booted by default\n"
+" (for MS-DOS boot, not for lilo)\n"
msgstr ""
+"التجزئة التي يتم اقلاعها افتراضيا\n"
+" (لـ MS-DOS و ليس لـ lilo)\n"
-#: ../../network/network.pm_.c:283
+#: ../../diskdrake/interactive.pm:1
+#, c-format
msgid ""
-"Please enter the IP configuration for this machine.\n"
-"Each item should be entered as an IP address in dotted-decimal\n"
-"notation (for example, 1.2.3.4)."
+"Loopback file(s):\n"
+" %s\n"
msgstr ""
+"ملف(ات) Loopback:\n"
+" %s\n"
-#: ../../network/network.pm_.c:293 ../../network/network.pm_.c:294
+#: ../../diskdrake/interactive.pm:1
#, c-format
-msgid "Configuring network device %s"
-msgstr ""
+msgid "RAID md%s\n"
+msgstr "RAID md%s\n"
-#: ../../network/network.pm_.c:294
+#: ../../diskdrake/interactive.pm:1
#, c-format
-msgid " (driver %s)"
-msgstr "(driver %s)"
+msgid "Mounted\n"
+msgstr "محمل\n"
-#: ../../network/network.pm_.c:296 ../../standalone/drakconnect_.c:228
-#: ../../standalone/drakconnect_.c:464
-msgid "IP address"
-msgstr "IP address"
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Not formatted\n"
+msgstr "غير مجهز\n"
-#: ../../network/network.pm_.c:297 ../../standalone/drakconnect_.c:465
-#: ../../standalone/drakgw_.c:291
-msgid "Netmask"
-msgstr "Netmask"
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Formatted\n"
+msgstr "مجهز\n"
-#: ../../network/network.pm_.c:298
-msgid "(bootp/dhcp)"
-msgstr "(bootp/dhcp)"
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Cylinder %d to %d\n"
+msgstr "الاسطوانة %d الى %d\n"
-#: ../../network/network.pm_.c:298
-msgid "Automatic IP"
-msgstr "Automatic IP"
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid ", %s sectors"
+msgstr ", %s قطاع"
-#: ../../network/network.pm_.c:299
-msgid "Start at boot"
-msgstr "ابدأ عند الإقلاع"
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Size: %s"
+msgstr "الحجم: %s"
-#: ../../network/network.pm_.c:320 ../../printer/printerdrake.pm_.c:812
-msgid "IP address should be in format 1.2.3.4"
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Start: sector %s\n"
+msgstr "البداية: قطاع %s\n"
+
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Name: "
+msgstr "الاسم: "
+
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "DOS drive letter: %s (just a guess)\n"
+msgstr "حرف سواقة DOS: %s (مجرد تخمين)\n"
+
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "partition %s is now known as %s"
+msgstr "التجزئة %s معروفة الآن بالإسم %s"
+
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Removing %s"
+msgstr "جاري ازالة %s"
+
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Copying %s"
+msgstr "جاري نسخ %s"
+
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Moving files to the new partition"
+msgstr "جاري نقل الملفات الى التجزئة الجديدة"
+
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid ""
+"Directory %s already contains data\n"
+"(%s)"
msgstr ""
+"الدليل %s يحتوي مسبقا على بعض البيانات\n"
+"(%s)"
+
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Hide files"
+msgstr "خبئ الملفات"
+
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Move files to the new partition"
+msgstr "انقل الملفات الى تجزئة جديدة"
+
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "After formatting partition %s, all data on this partition will be lost"
+msgstr "بعد تهيئة التقسيم %s, فإن كل البيانات الموجودة على التجزئة ستفقد"
+
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "You'll need to reboot before the modification can take place"
+msgstr "ستحتاج الى اعادة التشغيل قبل أن يتم تفعيل التعديلات"
-#: ../../network/network.pm_.c:326
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Partition table of drive %s is going to be written to disk!"
+msgstr "جدول اتتقسيم للقرص %s سيتم كتابته الى القرص!"
+
+#: ../../diskdrake/interactive.pm:1
+#, c-format
msgid ""
-"Freq should have the suffix k, M or G (for example, \"2.46G\" for 2.46 GHz "
-"frequency), or add enough '0'."
+"You've selected a software RAID partition as root (/).\n"
+"No bootloader is able to handle this without a /boot partition.\n"
+"Please be sure to add a /boot partition"
msgstr ""
+"لقد اخترت تجزئة RAID برمجية كتجزئة جذرية (/).\n"
+"لا يستطيع أي محمّل اقلاع التعامل مع ذلك بدون تجزئة /boot.\n"
+"فضلاً تأكد من اضافة تجزئة /boot"
-#: ../../network/network.pm_.c:330
+#: ../../diskdrake/interactive.pm:1
+#, c-format
msgid ""
-"Rate should have the suffix k, M or G (for example, \"11M\" for 11M), or add "
-"enough '0'."
+"The partition you've selected to add as root (/) is physically located "
+"beyond\n"
+"the 1024th cylinder of the hard drive, and you have no /boot partition.\n"
+"If you plan to use the LILO boot manager, be careful to add a /boot partition"
msgstr ""
+"التجزئة التي اخترتها كتجزئة جذرية (/) موجودة مادياً بعد\n"
+"الإسطوانة 1024 من القرص الصلب, و ليست لديك تجزئة /boot.\n"
+"اذا كنت تنوي استخدام LILO كمدير اقلاع فلا تنسى اضافة تجزئة /boot"
-#: ../../network/network.pm_.c:350
+#: ../../diskdrake/interactive.pm:1
+#, c-format
msgid ""
-"Please enter your host name.\n"
-"Your host name should be a fully-qualified host name,\n"
-"such as ``mybox.mylab.myco.com''.\n"
-"You may also enter the IP address of the gateway if you have one"
+"Sorry I won't accept to create /boot so far onto the drive (on a cylinder > "
+"1024).\n"
+"Either you use LILO and it won't work, or you don't use LILO and you don't "
+"need /boot"
msgstr ""
+"عفواً, لن أقبل انشاء دليل /boot بهذا البعد على القرص (على أسطوانة أكبر من "
+"1024).\n"
+"إما أن تستخدم LILO و لن يعمل هذا, أو لا تستخدم LILO و لن تحتاج الى /boot"
-#: ../../network/network.pm_.c:355
-msgid "DNS server"
-msgstr "الخادم DNS"
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "The package %s is needed. Install it?"
+msgstr "الحزمة %s يجب أن تُثبّت. هل تريد تثبيتها؟"
-#: ../../network/network.pm_.c:356
+#: ../../diskdrake/interactive.pm:1
#, c-format
-msgid "Gateway (e.g. %s)"
-msgstr "Gateway (e.g. %s)"
+msgid "What type of partitioning?"
+msgstr "أي نوع من التجزئة؟"
-#: ../../network/network.pm_.c:358
-msgid "Gateway device"
-msgstr "Gateway device"
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Be careful: this operation is dangerous."
+msgstr "كن حذرا: هذه العملية خطيرة"
-#: ../../network/network.pm_.c:363
-msgid "DNS server address should be in format 1.2.3.4"
-msgstr ""
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "chunk size"
+msgstr "حجم chunk"
-#: ../../network/network.pm_.c:367
-msgid "Gateway address should be in format 1.2.3.4"
-msgstr ""
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "level"
+msgstr "المستوى"
-#: ../../network/network.pm_.c:381
-msgid "Proxies configuration"
-msgstr "Proxies اعداد"
+#: ../../diskdrake/interactive.pm:1 ../../standalone/drakfloppy:1
+#, c-format
+msgid "device"
+msgstr "وحدة"
-#: ../../network/network.pm_.c:382
-msgid "HTTP proxy"
-msgstr "HTTP proxy"
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Various"
+msgstr "متنوعة"
-#: ../../network/network.pm_.c:383
-msgid "FTP proxy"
-msgstr "FTP proxy"
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Mount options"
+msgstr "خيارات التحميل"
-#: ../../network/network.pm_.c:384
-msgid "Track network card id (useful for laptops)"
-msgstr ""
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "File already exists. Use it?"
+msgstr "الملف موجود مسبقا, هل تريد استخدامه؟"
-#: ../../network/network.pm_.c:387
-msgid "Proxy should be http://..."
-msgstr ""
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "File is already used by another loopback, choose another one"
+msgstr "هذا الملف مستخدم من loopback أخرى, اختر ملفا آخر"
-#: ../../network/network.pm_.c:388
-msgid "Url should begin with 'ftp:' or 'http:'"
-msgstr ""
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Give a file name"
+msgstr "اعط اسم ملف"
-#: ../../network/shorewall.pm_.c:26
-msgid "Firewalling configuration detected!"
-msgstr "تم اكتشاف إعداد للجدار الناري!"
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Filesystem type: "
+msgstr "نوع نظام المفات: "
-#: ../../network/shorewall.pm_.c:27
-msgid ""
-"Warning! An existing firewalling configuration has been detected. You may "
-"need some manual fix after installation."
-msgstr ""
-"تحذير! تم إيجاد إعداد جدار ناري موجود مسبقا. ربما تحتاج الى اصلاح يدوي بعد "
-"التثبيت."
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Size in MB: "
+msgstr "الحجم باليغابايت: "
-#: ../../network/tools.pm_.c:57
-msgid "Internet configuration"
-msgstr "اعداد Internet "
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Loopback file name: "
+msgstr "اسم ملف Loopback: "
-#: ../../network/tools.pm_.c:58
-msgid "Do you want to try to connect to the Internet now?"
-msgstr ""
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Loopback"
+msgstr "Loopback"
-#: ../../network/tools.pm_.c:61 ../../standalone/drakconnect_.c:193
-msgid "Testing your connection..."
-msgstr ""
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "This partition can't be used for loopback"
+msgstr "هذه التجزئة لا يمكن استخدامها لـloopback"
-#: ../../network/tools.pm_.c:70
-msgid "The system is now connected to Internet."
-msgstr ""
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "LVM name?"
+msgstr "اسم LVM؟"
-#: ../../network/tools.pm_.c:71
-msgid "For security reason, it will be disconnected now."
-msgstr ""
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "new"
+msgstr "جديد"
+
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Choose an existing LVM to add to"
+msgstr "اختر LVM l,جود للاضافة"
+
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Choose an existing RAID to add to"
+msgstr "اختر RAID موجود للاضافة"
+
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Moving partition..."
+msgstr "جاري نقل التجزئة..."
-#: ../../network/tools.pm_.c:72
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Moving"
+msgstr "جاري النقل"
+
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Which sector do you want to move it to?"
+msgstr "أي قطاع تريد نقله؟"
+
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Sector"
+msgstr "القطاع"
+
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Which disk do you want to move it to?"
+msgstr "أي قرص تريد نقله؟"
+
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Move"
+msgstr "نقل"
+
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "New size in MB: "
+msgstr "الحجم الجديد بالميغابايت: "
+
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Choose the new size"
+msgstr "اختر الحجم الجديد"
+
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Resize"
+msgstr "تغيير الحجم"
+
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "After resizing partition %s, all data on this partition will be lost"
+msgstr "بعد تغيير حجم التجزئة %s, فإن كل البيانات على هذه التجزئة ستفقد"
+
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "All data on this partition should be backed-up"
+msgstr "كل البيانات على هذه التجزئة يجب حفظها احتياطيا"
+
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "This partition is not resizeable"
+msgstr "هذا التقسيم غير قابل لتغيير الحجم"
+
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Computing FAT filesystem bounds"
+msgstr "جاري حساب روابط نظام ملفات FAT"
+
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Where do you want to mount %s?"
+msgstr "أين تريد تحميل الجهاز %s؟"
+
+#: ../../diskdrake/interactive.pm:1
+#, c-format
msgid ""
-"The system doesn't seem to be connected to internet.\n"
-"Try to reconfigure your connection."
+"Can't unset mount point as this partition is used for loop back.\n"
+"Remove the loopback first"
msgstr ""
+"لم يمكن ازالة تعيين نقطة التحميل نظرا لأن هذه التجزئة مستخدمة لـloop back.\n"
+"قم بإزالة الـloopback أولا"
-#: ../../network/tools.pm_.c:96
-msgid "Connection Configuration"
-msgstr ""
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Where do you want to mount device %s?"
+msgstr "أين تريد تحميل الجهاز %s؟"
-#: ../../network/tools.pm_.c:97
-msgid "Please fill or check the field below"
-msgstr ""
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Where do you want to mount the loopback file %s?"
+msgstr "أين تريد تحميل ملف loopback %s؟"
-#: ../../network/tools.pm_.c:99 ../../standalone/drakconnect_.c:605
-msgid "Card IRQ"
-msgstr ""
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Switching from ext2 to ext3"
+msgstr "جاري التغيير من ext2 الى ext3"
-#: ../../network/tools.pm_.c:100 ../../standalone/drakconnect_.c:606
-msgid "Card mem (DMA)"
-msgstr "Card mem (DMA)"
+#: ../../diskdrake/interactive.pm:1 ../../diskdrake/removable.pm:1
+#, c-format
+msgid "Which filesystem do you want?"
+msgstr "أي نظام ملفات تريد؟"
-#: ../../network/tools.pm_.c:101 ../../standalone/drakconnect_.c:607
-msgid "Card IO"
-msgstr "Card IO"
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Change partition type"
+msgstr "غير نوع التجزئة"
-#: ../../network/tools.pm_.c:102 ../../standalone/drakconnect_.c:608
-msgid "Card IO_0"
-msgstr "Card IO_0"
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid ""
+"After changing type of partition %s, all data on this partition will be lost"
+msgstr "بعد تغيير نوع التجزئة %s, فإنك ستسخر كل البيانات على التجزئة"
-#: ../../network/tools.pm_.c:103 ../../standalone/drakconnect_.c:609
-msgid "Card IO_1"
-msgstr "Card IO_1"
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Remove the loopback file?"
+msgstr "هل تريد ازالة ملف loopback؟"
-#: ../../network/tools.pm_.c:104 ../../standalone/drakconnect_.c:610
-msgid "Your personal phone number"
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid ""
+"You can't create a new partition\n"
+"(since you reached the maximal number of primary partitions).\n"
+"First remove a primary partition and create an extended partition."
msgstr ""
+"لا يمكنك انشاء تجزئة جديدة\n"
+"(لأنك وصلت الى العدد الأقصى من التجزئات الأساسية).\n"
+"أولاً اخذف تجزئة أساسية و قم بإنشاء تجزئة ممتدة."
-#: ../../network/tools.pm_.c:105 ../../standalone/drakconnect_.c:611
-msgid "Provider name (ex provider.net)"
-msgstr ""
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Preference: "
+msgstr "التفضيل: "
-#: ../../network/tools.pm_.c:106 ../../standalone/drakconnect_.c:612
-msgid "Provider phone number"
-msgstr ""
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Start sector: "
+msgstr "قطاع البداية: "
-#: ../../network/tools.pm_.c:107 ../../standalone/drakconnect_.c:613
-msgid "Provider dns 1 (optional)"
-msgstr ""
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Create a new partition"
+msgstr "انشئ تجزئة جديدة"
-#: ../../network/tools.pm_.c:108 ../../standalone/drakconnect_.c:614
-msgid "Provider dns 2 (optional)"
-msgstr ""
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Use for loopback"
+msgstr "استخدم لـloopback"
-#: ../../network/tools.pm_.c:109
-msgid "Choose your country"
-msgstr "إختر بلدك"
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Modify RAID"
+msgstr "تعديل RAID"
-#: ../../network/tools.pm_.c:110 ../../standalone/drakconnect_.c:617
-msgid "Dialing mode"
-msgstr ""
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Remove from LVM"
+msgstr "ازالة من LVM"
-#: ../../network/tools.pm_.c:111 ../../standalone/drakconnect_.c:629
-msgid "Connection speed"
-msgstr "سرعة الإتصال"
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Remove from RAID"
+msgstr "ازالة من RAID"
-#: ../../network/tools.pm_.c:112 ../../standalone/drakconnect_.c:630
-msgid "Connection timeout (in sec)"
-msgstr "الوقت الأقصى للاتصال (بالثواني)"
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Add to LVM"
+msgstr "اضافة الى LVM"
-#: ../../network/tools.pm_.c:113 ../../standalone/drakconnect_.c:615
-msgid "Account Login (user name)"
-msgstr ""
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Add to RAID"
+msgstr "اضافة الى RAID"
-#: ../../network/tools.pm_.c:114 ../../standalone/drakconnect_.c:616
-#: ../../standalone/drakconnect_.c:647
-msgid "Account Password"
-msgstr "Account Password"
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Format"
+msgstr "تنسيق"
-#: ../../network/tools.pm_.c:118 ../../network/tools.pm_.c:132
-msgid "United Kingdom"
-msgstr ""
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Detailed information"
+msgstr "معلومات مفصّلة"
-#: ../../partition_table.pm_.c:603
-msgid "mount failed: "
-msgstr "فشل التحميل: "
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Trying to rescue partition table"
+msgstr "جاري محاولة انقاذ جدول التقسيم"
-#: ../../partition_table.pm_.c:667
-msgid "Extended partition not supported on this platform"
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid ""
+"Insert a floppy in drive\n"
+"All data on this floppy will be lost"
msgstr ""
+"أدخل قرصا مرنا في السواقة\n"
+"كل البيانات على القرص ستمحى"
+
+#: ../../diskdrake/interactive.pm:1 ../../harddrake/sound.pm:1
+#: ../../network/modem.pm:1
+#, c-format
+msgid "Warning"
+msgstr "تحذير"
+
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Select file"
+msgstr "اختر ملف"
-#: ../../partition_table.pm_.c:685
+#: ../../diskdrake/interactive.pm:1
+#, c-format
msgid ""
-"You have a hole in your partition table but I can't use it.\n"
-"The only solution is to move your primary partitions to have the hole next "
-"to the extended partitions."
+"The backup partition table has not the same size\n"
+"Still continue?"
msgstr ""
+"جدول التقسيم المحفوظ ليس بنفس الحجم\n"
+"لا زلت تريد الإكمال؟"
-#: ../../partition_table.pm_.c:774
+#: ../../diskdrake/interactive.pm:1
#, c-format
-msgid "Restoring from file %s failed: %s"
-msgstr ""
+msgid "Removable media automounting"
+msgstr "التحميل الآلي للوسائط القابلة للإزالة"
-#: ../../partition_table.pm_.c:776
-msgid "Bad backup file"
-msgstr ""
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Reload partition table"
+msgstr "إعادة تحميل جدول التقسيم"
-#: ../../partition_table.pm_.c:796
+#: ../../diskdrake/interactive.pm:1
#, c-format
-msgid "Error writing to file %s"
-msgstr ""
+msgid "Rescue partition table"
+msgstr "إنقاذ جدول التقسيم"
+
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Restore partition table"
+msgstr "استعادة جدول التقسيم"
-#: ../../partition_table/raw.pm_.c:192
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Save partition table"
+msgstr "حفظ جدول التقسيم"
+
+#: ../../diskdrake/interactive.pm:1
+#, c-format
msgid ""
-"Something bad is happening on your drive. \n"
-"A test to check the integrity of data has failed. \n"
-"It means writing anything on the disk will end up with random trash"
-msgstr ""
+"To have more partitions, please delete one to be able to create an extended "
+"partition"
+msgstr "لكي تمتلك تجزئات أكثر, يرجى الغاء تجزئة كي تتمكن من عمل تجزئة ممتدة"
-#: ../../pkgs.pm_.c:26
-msgid "must have"
-msgstr ""
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "I can't add any more partition"
+msgstr "لا يمكنني اضافة أي تجزئة أخرى"
-#: ../../pkgs.pm_.c:27
-msgid "important"
-msgstr ""
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "All primary partitions are used"
+msgstr "كل التجزئات الرئيسية مستخدمة"
-#: ../../pkgs.pm_.c:28
-msgid "very nice"
-msgstr ""
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Hard drive information"
+msgstr "معلومات القرص الصلب"
-#: ../../pkgs.pm_.c:29
-msgid "nice"
-msgstr ""
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Auto allocate"
+msgstr "تحديد آلي"
-#: ../../pkgs.pm_.c:30
-msgid "maybe"
-msgstr ""
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Clear all"
+msgstr "أمسح الكل"
-#: ../../printer/data.pm_.c:18
-msgid "PDQ - Print, Don't Queue"
-msgstr "PDQ - Print, Don't Queue"
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Do you want to save /etc/fstab modifications"
+msgstr "هل تريد حفظ تعديلات /etc/fstab"
-#: ../../printer/data.pm_.c:19
-msgid "PDQ"
-msgstr "PDQ"
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Quit without writing the partition table?"
+msgstr "هل تريد الخروج بدون كتابة جدول التقسيم؟"
-#: ../../printer/data.pm_.c:30
-msgid "LPD - Line Printer Daemon"
-msgstr "LPD - Line Printer Daemon"
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Quit without saving"
+msgstr "الخروج بدون الحفظ"
-#: ../../printer/data.pm_.c:31
-msgid "LPD"
-msgstr "LPD"
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Continue anyway?"
+msgstr "هل تريد الاكمال على أي حال؟"
-#: ../../printer/data.pm_.c:51
-msgid "LPRng - LPR New Generation"
-msgstr "LPRng - LPR New Generation"
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Toggle to expert mode"
+msgstr "النتقال الى وضعية الخبير"
-#: ../../printer/data.pm_.c:52
-msgid "LPRng"
-msgstr "LPRng"
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Toggle to normal mode"
+msgstr "الانتقال الى الوضع العادي"
-#: ../../printer/data.pm_.c:75
-msgid "CUPS - Common Unix Printing System"
-msgstr "CUPS - Common Unix Printing System"
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Undo"
+msgstr "تراجع"
-#: ../../printer/data.pm_.c:76 ../../printer/main.pm_.c:677
-msgid "CUPS"
-msgstr "CUPS"
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Exit"
+msgstr "خروج"
-#: ../../printer/detect.pm_.c:80 ../../printer/detect.pm_.c:213
-#: ../../printer/detect.pm_.c:250
-#, fuzzy
-msgid "Unknown Model"
-msgstr "غير معروف"
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Choose a partition"
+msgstr "إختر تجزئة"
-#: ../../printer/main.pm_.c:26
-msgid "Local printer"
-msgstr "طابعة محلية"
+#: ../../diskdrake/interactive.pm:1
+#, c-format
+msgid "Choose another partition"
+msgstr "إختر شاشة"
-#: ../../printer/main.pm_.c:27
-msgid "Remote printer"
-msgstr "طابعة بعيدة"
+#: ../../diskdrake/removable.pm:1
+#, c-format
+msgid "Change type"
+msgstr "غيّر النوع"
-#: ../../printer/main.pm_.c:28
-msgid "Printer on remote CUPS server"
-msgstr ""
+#: ../../diskdrake/smbnfs_gtk.pm:1
+#, c-format
+msgid "Search servers"
+msgstr "ابحث في أجهزة الخادم"
-#: ../../printer/main.pm_.c:29 ../../printer/printerdrake.pm_.c:835
-msgid "Printer on remote lpd server"
-msgstr ""
+#: ../../diskdrake/smbnfs_gtk.pm:1
+#, c-format
+msgid "Domain"
+msgstr "النطاق"
-#: ../../printer/main.pm_.c:30
-msgid "Network printer (TCP/Socket)"
-msgstr "طابعة شبكة (TCP/Socket)"
+#: ../../diskdrake/smbnfs_gtk.pm:1 ../../standalone/drakbackup:1
+#, c-format
+msgid "Username"
+msgstr "اسم المستخدم"
-#: ../../printer/main.pm_.c:31
-msgid "Printer on SMB/Windows 95/98/NT server"
+#: ../../diskdrake/smbnfs_gtk.pm:1
+#, c-format
+msgid ""
+"Please enter your username, password and domain name to access this host."
msgstr ""
+"فضلاً أدخل اسم المستخدم, كلمة المرور و النطاق الخاص بك للدخول الى هذا "
+"المستضيف."
-#: ../../printer/main.pm_.c:32
-msgid "Printer on NetWare server"
-msgstr ""
+#: ../../diskdrake/smbnfs_gtk.pm:1
+#, c-format
+msgid "Domain Authentication Required"
+msgstr "Domain Authentication Required"
-#: ../../printer/main.pm_.c:33 ../../printer/printerdrake.pm_.c:839
-msgid "Enter a printer device URI"
-msgstr ""
+#: ../../diskdrake/smbnfs_gtk.pm:1
+#, c-format
+msgid "Another one"
+msgstr "آخر"
-#: ../../printer/main.pm_.c:34
-msgid "Pipe job into a command"
-msgstr ""
+#: ../../diskdrake/smbnfs_gtk.pm:1
+#, c-format
+msgid "Which username"
+msgstr "أي اسم مستخدم"
-#: ../../printer/main.pm_.c:290 ../../printer/main.pm_.c:478
-#: ../../printer/main.pm_.c:794 ../../printer/printerdrake.pm_.c:3228
-msgid "Unknown model"
-msgstr ""
+#: ../../diskdrake/smbnfs_gtk.pm:1
+#, c-format
+msgid "Can't login using username %s (bad password?)"
+msgstr "تعذر الدخول باستخدام اسم المستخدم %s (كلمة مرور سيئة؟)"
-#: ../../printer/main.pm_.c:317
-msgid "Local Printers"
-msgstr "الطابعات المحلية"
+#: ../../harddrake/data.pm:1
+#, c-format
+msgid "cpu # "
+msgstr "cpu # "
-#: ../../printer/main.pm_.c:319 ../../printer/main.pm_.c:678
-msgid "Remote Printers"
-msgstr "الطابعات البعيدة"
+#: ../../harddrake/data.pm:1
+#, c-format
+msgid "SMBus controllers"
+msgstr "متحكمات SMBus"
-#: ../../printer/main.pm_.c:326 ../../printer/printerdrake.pm_.c:381
+#: ../../harddrake/data.pm:1
#, c-format
-msgid " on parallel port \\/*%s"
-msgstr ""
+msgid "USB controllers"
+msgstr "متحكمات USB"
-#: ../../printer/main.pm_.c:329 ../../printer/printerdrake.pm_.c:383
+#: ../../harddrake/data.pm:1
#, c-format
-msgid ", USB printer \\/*%s"
-msgstr ""
+msgid "SCSI controllers"
+msgstr "متحكمات SCSI"
-#: ../../printer/main.pm_.c:334
+#: ../../harddrake/data.pm:1
#, c-format
-msgid ", multi-function device on parallel port \\/*%s"
-msgstr ""
+msgid "(E)IDE/ATA controllers"
+msgstr "متحكمات (E)IDE/ATA"
-#: ../../printer/main.pm_.c:337
-msgid ", multi-function device on USB"
-msgstr ""
+#: ../../harddrake/data.pm:1
+#, c-format
+msgid "Joystick"
+msgstr "عصا الألعاب"
-#: ../../printer/main.pm_.c:339
-msgid ", multi-function device on HP JetDirect"
-msgstr ""
+#: ../../harddrake/data.pm:1
+#, c-format
+msgid "Scanner"
+msgstr "الماسح الضوئي"
-#: ../../printer/main.pm_.c:341
-msgid ", multi-function device"
-msgstr ""
+#: ../../harddrake/data.pm:1 ../../standalone/harddrake2:1
+#, c-format
+msgid "Unknown/Others"
+msgstr "غير معروف/أخرى"
-#: ../../printer/main.pm_.c:344
+#: ../../harddrake/data.pm:1
#, c-format
-msgid ", printing to %s"
-msgstr ""
+msgid "Bridges and system controllers"
+msgstr "متحكمات النظام"
-#: ../../printer/main.pm_.c:346
+#: ../../harddrake/data.pm:1
#, c-format
-msgid " on LPD server \"%s\", printer \"%s\""
-msgstr ""
+msgid "Modem"
+msgstr "المودم"
-#: ../../printer/main.pm_.c:348
+#: ../../harddrake/data.pm:1
#, c-format
-msgid ", TCP/IP host \"%s\", port %s"
-msgstr ""
+msgid "Ethernetcard"
+msgstr "بطاقة ايثرنت"
-#: ../../printer/main.pm_.c:352
+#: ../../harddrake/data.pm:1
#, c-format
-msgid " on SMB/Windows server \"%s\", share \"%s\""
-msgstr ""
+msgid "Processors"
+msgstr "المعالجات"
-#: ../../printer/main.pm_.c:356
+#: ../../harddrake/data.pm:1
#, c-format
-msgid " on Novell server \"%s\", printer \"%s\""
-msgstr ""
+msgid "Webcam"
+msgstr "كاميرات الويب"
-#: ../../printer/main.pm_.c:358
+#: ../../harddrake/data.pm:1
#, c-format
-msgid ", using command %s"
-msgstr ""
+msgid "Soundcard"
+msgstr "بطاقة الصوت"
-#: ../../printer/main.pm_.c:475 ../../printer/printerdrake.pm_.c:1603
-msgid "Raw printer (No driver)"
-msgstr ""
+#: ../../harddrake/data.pm:1
+#, c-format
+msgid "Other MultiMedia devices"
+msgstr "أجهز وسائط متعددة أخرى"
-#: ../../printer/main.pm_.c:647
+#: ../../harddrake/data.pm:1
#, c-format
-msgid "(on %s)"
-msgstr ""
+msgid "Tvcard"
+msgstr "بطاقة التلفاز"
-#: ../../printer/main.pm_.c:649
-msgid "(on this machine)"
-msgstr ""
+#: ../../harddrake/data.pm:1
+#, c-format
+msgid "Videocard"
+msgstr "بطاقة الفيديو"
-#: ../../printer/main.pm_.c:674
+#: ../../harddrake/data.pm:1 ../../standalone/drakbackup:1
#, c-format
-msgid "On CUPS server \"%s\""
-msgstr "على خادم CUPS \"%s\""
+msgid "Tape"
+msgstr "شريط البيانات"
-#: ../../printer/main.pm_.c:680 ../../printer/printerdrake.pm_.c:2888
-#: ../../printer/printerdrake.pm_.c:2899 ../../printer/printerdrake.pm_.c:3120
-#: ../../printer/printerdrake.pm_.c:3171 ../../printer/printerdrake.pm_.c:3197
-#: ../../printer/printerdrake.pm_.c:3352 ../../printer/printerdrake.pm_.c:3354
-msgid " (Default)"
-msgstr ""
+#: ../../harddrake/data.pm:1
+#, c-format
+msgid "DVD-ROM"
+msgstr "DVD-ROM"
-#: ../../printer/printerdrake.pm_.c:27
-msgid "Select Printer Connection"
-msgstr ""
+#: ../../harddrake/data.pm:1
+#, c-format
+msgid "CD/DVD burners"
+msgstr "أجهزة نسخ CD/DVD"
-#: ../../printer/printerdrake.pm_.c:28
-msgid "How is the printer connected?"
-msgstr ""
+#: ../../harddrake/data.pm:1
+#, c-format
+msgid "CDROM"
+msgstr "القرص المدمج"
+
+#: ../../harddrake/data.pm:1
+#, c-format
+msgid "Disk"
+msgstr "القرص"
+
+#: ../../harddrake/data.pm:1
+#, c-format
+msgid "Zip"
+msgstr "Zip"
+
+#: ../../harddrake/data.pm:1
+#, c-format
+msgid "Floppy"
+msgstr "القرص المرن"
-#: ../../printer/printerdrake.pm_.c:30
+#: ../../harddrake/sound.pm:1
+#, c-format
+msgid "Let me pick any driver"
+msgstr "اسمح لي أن أختار مشغل"
+
+#: ../../harddrake/sound.pm:1
+#, c-format
+msgid "Driver:"
+msgstr "المشغل:"
+
+#: ../../harddrake/sound.pm:1
+#, c-format
msgid ""
+"If you really think that you know which driver is the right one for your "
+"card\n"
+"you can pick one in the above list.\n"
"\n"
-"Printers on remote CUPS servers you do not have to configure here; these "
-"printers will be automatically detected."
+"The current driver for your \"%s\" sound card is \"%s\" "
msgstr ""
+"اذا كنت تعتقد فعلاً أنك تعرف ما هو المشغل الصحيح لبطاقتك\n"
+"يمكنك اختياره من القائمة أعلاه.\n"
+"\n"
+"المشغل الحالي لبطاقة الصوت \"%s\" الخاصة بك هو \"%s\" "
-#: ../../printer/printerdrake.pm_.c:38
-msgid "Printer auto-detection (Local, TCP/Socket, and SMB printers)"
+#: ../../harddrake/sound.pm:1
+#, c-format
+msgid "Choosing an arbitratry driver"
+msgstr "جاري اختيار مشغل عام"
+
+#: ../../harddrake/sound.pm:1
+#, c-format
+msgid ""
+"The classic bug sound tester is to run the following commands:\n"
+"\n"
+"\n"
+"- \"lspcidrake -v | fgrep AUDIO\" will tell you which driver your card use\n"
+"by default\n"
+"\n"
+"- \"grep snd-slot /etc/modules.conf\" will tell you what driver it\n"
+"currently uses\n"
+"\n"
+"- \"/sbin/lsmod\" will enable you to check if its module (driver) is\n"
+"loaded or not\n"
+"\n"
+"- \"/sbin/chkconfig --list sound\" and \"/sbin/chkconfig --list alsa\" will\n"
+"tell you if sound and alsa services're configured to be run on\n"
+"initlevel 3\n"
+"\n"
+"- \"aumix -q\" will tell you if the sound volume is muted or not\n"
+"\n"
+"- \"/sbin/fuser -v /dev/dsp\" will tell which program uses the sound card.\n"
msgstr ""
+"The classic bug sound tester is to run the following commands:\n"
+"\n"
+"\n"
+"- \"lspcidrake -v | fgrep AUDIO\" will tell you which driver your card use\n"
+"by default\n"
+"\n"
+"- \"grep snd-slot /etc/modules.conf\" will tell you what driver it\n"
+"currently uses\n"
+"\n"
+"- \"/sbin/lsmod\" will enable you to check if its module (driver) is\n"
+"loaded or not\n"
+"\n"
+"- \"/sbin/chkconfig --list sound\" and \"/sbin/chkconfig --list alsa\" will\n"
+"tell you if sound and alsa services're configured to be run on\n"
+"initlevel 3\n"
+"\n"
+"- \"aumix -q\" will tell you if the sound volume is muted or not\n"
+"\n"
+"- \"/sbin/fuser -v /dev/dsp\" will tell which program uses the sound card.\n"
-#: ../../printer/printerdrake.pm_.c:81 ../../printer/printerdrake.pm_.c:2950
-msgid "CUPS configuration"
-msgstr " CUPS اعدادات"
+#: ../../harddrake/sound.pm:1
+#, c-format
+msgid "Sound trouble shooting"
+msgstr "حل مشاكل الصوت"
-#: ../../printer/printerdrake.pm_.c:82 ../../printer/printerdrake.pm_.c:2951
-msgid "Specify CUPS server"
-msgstr "الخادم CUPS حدّد"
+#: ../../harddrake/sound.pm:1
+#, c-format
+msgid "Error: The \"%s\" driver for your sound card is unlisted"
+msgstr "خطأ: مشغل \"%s\" لبطاقة الصوت الخاصة بك غير موجود في القائمة"
+
+#: ../../harddrake/sound.pm:1
+#, c-format
+msgid "Unkown driver"
+msgstr "مشغل غير معروف"
-#: ../../printer/printerdrake.pm_.c:83
+#: ../../harddrake/sound.pm:1
+#, c-format
+msgid "There's no known driver for your sound card (%s)"
+msgstr "لا يوجد مشغل معروف لبطاقة الصوت (%s)"
+
+#: ../../harddrake/sound.pm:1
+#, c-format
+msgid "No known driver"
+msgstr "لا يوجد مشغل معروف"
+
+#: ../../harddrake/sound.pm:1
+#, c-format
msgid ""
-"To get access to printers on remote CUPS servers in your local network you "
-"do not have to configure anything; the CUPS servers inform your machine "
-"automatically about their printers. All printers currently known to your "
-"machine are listed in the \"Remote printers\" section in the main window of "
-"Printerdrake. When your CUPS server is not in your local network, you have "
-"to enter the CUPS server IP address and optionally the port number to get "
-"the printer information from the server, otherwise leave these fields blank."
+"There's no free driver for your sound card (%s), but there's a proprietary "
+"driver at \"%s\"."
msgstr ""
+"لا يوجد مشغل مفتوح المصدر لبطاقة الصوت (%s), لكن هناك مشغل تجاري في \"%s\"."
+
+#: ../../harddrake/sound.pm:1
+#, c-format
+msgid "No open source driver"
+msgstr "لا يوجد مشغل مفتوح المصدر"
+
+#: ../../harddrake/sound.pm:1 ../../standalone/drakconnect:1
+#, c-format
+msgid "Please Wait... Applying the configuration"
+msgstr "يرجى الإنتظار... جاري تطبيق الإعدادات"
-#: ../../printer/printerdrake.pm_.c:84
+#: ../../harddrake/sound.pm:1
+#, c-format
msgid ""
+"The old \"%s\" driver is blacklisted.\n"
"\n"
-"Normally, CUPS is automatically configured according to your network "
-"environment, so that you can access the printers on the CUPS servers in your "
-"local network. If this does not work correctly, turn off \"Automatic CUPS "
-"configuration\" and edit your file /etc/cups/cupsd.conf manually. Do not "
-"forget to restart CUPS afterwards (command: \"service cups restart\")."
+"It has been reported to oops the kernel on unloading.\n"
+"\n"
+"The new \"%s\" driver'll only be used on next bootstrap."
msgstr ""
+"مشغل \"%s\" القديم على القائمة السوداء.\n"
+"\n"
+"في بعض الحالات قيل أنه يسبب انهيار في النواة عند ازالة التحميل.\n"
+"\n"
+"مشغل \"%s\" الجديد سيتم استخدامه عند تشغيل الجهاز في المرة القادمة."
+
+#: ../../harddrake/sound.pm:1
+#, c-format
+msgid "Trouble shooting"
+msgstr "حل المشاكل"
-#: ../../printer/printerdrake.pm_.c:88
-msgid "The IP address should look like 192.168.1.20"
+#: ../../harddrake/sound.pm:1
+#, c-format
+msgid ""
+"OSS (Open Sound System) was the first sound API. It's an OS independant "
+"sound API (it's available on most unices systems) but it's a very basic and "
+"limited API.\n"
+"What's more, OSS drivers all reinvent the wheel.\n"
+"\n"
+"ALSA (Advanced Linux Sound Architecture) is a modularized architecture "
+"which\n"
+"supports quite a large range of ISA, USB and PCI cards.\n"
+"\n"
+"It also provides a much higher API than OSS.\n"
+"\n"
+"To use alsa, one can either use:\n"
+"- the old compatibility OSS api\n"
+"- the new ALSA api that provides many enhanced features but requires using "
+"the ALSA library.\n"
msgstr ""
-#: ../../printer/printerdrake.pm_.c:92 ../../printer/printerdrake.pm_.c:1041
-msgid "The port number should be an integer!"
+#: ../../harddrake/sound.pm:1
+#, c-format
+msgid ""
+"\n"
+"\n"
+"Your card currently use the %s\"%s\" driver (default driver for your card is "
+"\"%s\")"
msgstr ""
+"\n"
+"\n"
+"بطاقتك تستخدم المشغل %s\"%s\" حالياً (المشغل الحالي لبطاقتك هو \"%s\")"
-#: ../../printer/printerdrake.pm_.c:99
-msgid "CUPS server IP"
-msgstr "عنوان IP لخادم CUPS"
+#: ../../harddrake/sound.pm:1
+#, c-format
+msgid ""
+"Here you can select an alternative driver (either OSS or ALSA) for your "
+"sound card (%s)."
+msgstr "يمكنك هنا اختيار مشغل بديل (ALSA أو OSS) لبطاقة الصوت (%s)."
-#: ../../printer/printerdrake.pm_.c:100 ../../printer/printerdrake.pm_.c:1061
-#: ../../standalone/harddrake2_.c:63
-msgid "Port"
-msgstr "البوابة"
+#: ../../harddrake/sound.pm:1
+#, c-format
+msgid "Sound configuration"
+msgstr "اعدادات الصوت"
-#: ../../printer/printerdrake.pm_.c:102
-msgid "Automatic CUPS configuration"
-msgstr "تهيئة CUPS آلية"
+#: ../../harddrake/sound.pm:1
+#, c-format
+msgid ""
+"There's no known OSS/ALSA alternative driver for your sound card (%s) which "
+"currently uses \"%s\""
+msgstr "لا يوجد مشغل بديل (ALSA أو OSS) لبطاقة الصوت (%s) التي تستخدم \"%s\""
-#: ../../printer/printerdrake.pm_.c:159
-msgid "Checking your system..."
-msgstr ""
+#: ../../harddrake/sound.pm:1
+#, c-format
+msgid "No alternative driver"
+msgstr "لا مشغل بديل"
-#: ../../printer/printerdrake.pm_.c:159 ../../printer/printerdrake.pm_.c:226
-#: ../../printer/printerdrake.pm_.c:1477 ../../printer/printerdrake.pm_.c:1481
-#: ../../printer/printerdrake.pm_.c:1598 ../../printer/printerdrake.pm_.c:2133
-#: ../../printer/printerdrake.pm_.c:2284 ../../printer/printerdrake.pm_.c:2343
-#: ../../printer/printerdrake.pm_.c:2415 ../../printer/printerdrake.pm_.c:2436
-#: ../../printer/printerdrake.pm_.c:2625 ../../printer/printerdrake.pm_.c:2630
-#: ../../printer/printerdrake.pm_.c:2636 ../../printer/printerdrake.pm_.c:2701
-#: ../../printer/printerdrake.pm_.c:2720 ../../printer/printerdrake.pm_.c:2731
-#: ../../printer/printerdrake.pm_.c:2764 ../../printer/printerdrake.pm_.c:2809
-#: ../../printer/printerdrake.pm_.c:2825 ../../printer/printerdrake.pm_.c:2911
-#: ../../printer/printerdrake.pm_.c:2989 ../../printer/printerdrake.pm_.c:3281
-#: ../../printer/printerdrake.pm_.c:3328 ../../printer/printerdrake.pm_.c:3369
-#: ../../standalone/printerdrake_.c:47
-msgid "Printerdrake"
-msgstr "Printerdrake"
+#: ../../harddrake/v4l.pm:1
+#, c-format
+msgid "enable radio support"
+msgstr "تمكين دعم الراديو"
-#: ../../printer/printerdrake.pm_.c:167
-msgid ""
-"There are no printers found which are directly connected to your machine"
-msgstr ""
+#: ../../harddrake/v4l.pm:1
+#, c-format
+msgid "Radio support:"
+msgstr "دعم الراديو:"
+
+#: ../../harddrake/v4l.pm:1
+#, c-format
+msgid "PLL setting:"
+msgstr "اعداد PLL:"
+
+#: ../../harddrake/v4l.pm:1
+#, c-format
+msgid "number of capture buffers for mmap'ed capture"
+msgstr "number of capture buffers for mmap'ed capture"
+
+#: ../../harddrake/v4l.pm:1
+#, c-format
+msgid "Number of capture buffers:"
+msgstr "Number of capture buffers:"
+
+#: ../../harddrake/v4l.pm:1
+#, c-format
+msgid "Tuner type:"
+msgstr "نوع التونر:"
+
+#: ../../harddrake/v4l.pm:1
+#, c-format
+msgid "Card model:"
+msgstr "نوع البطاقة"
-#: ../../printer/printerdrake.pm_.c:179
+#: ../../harddrake/v4l.pm:1
+#, c-format
msgid ""
-"The following printers\n"
-"\n"
+"For most modern TV cards, the bttv module of the GNU/Linux kernel just auto-"
+"detect the rights parameters.\n"
+"If your card is misdetected, you can force the right tuner and card types "
+"here. Just select your tv card parameters if needed."
msgstr ""
+"لأغلب بطاقات التلفاز الحديثة, وحدة bttv لنواة لينكس يمكنها التحقق آلياً من "
+"المعاملات الصحيحة.\n"
+"اذا تم التعرف على البطاقة بشكل خاطئ, يمكنك ادخال التونر و نوع البطاقة الصحيح "
+"هنا. فقط اختر المعاملات المناسبة لبطاقة الشاشة."
-#: ../../printer/printerdrake.pm_.c:180
+#: ../../harddrake/v4l.pm:1
+#, c-format
+msgid "Unknown|Generic"
+msgstr "غير معروف|عام"
+
+#: ../../harddrake/v4l.pm:1
+#, c-format
+msgid "Unknown|CPH06X (bt878) [many vendors]"
+msgstr "غير معروف|CPH06X (bt878) [مصنعون كثيرون]"
+
+#: ../../harddrake/v4l.pm:1
+#, c-format
+msgid "Unknown|CPH05X (bt878) [many vendors]"
+msgstr "غير معروف|CPH05X (bt878) [مصنعون كثيرون]"
+
+#: ../../harddrake/v4l.pm:1
+#, c-format
+msgid "Auto-detect"
+msgstr "تحقق آلي"
+
+#: ../../interactive/newt.pm:1
+#, c-format
+msgid "Do"
+msgstr "افعل"
+
+#: ../../interactive/stdio.pm:1
+#, c-format
+msgid "Your choice? (default %s) "
+msgstr "اختيارك ? (default %s) "
+
+#: ../../interactive/stdio.pm:1
+#, c-format
+msgid "Bad choice, try again\n"
+msgstr "اختيار سيئ, حاول مرة أخرى\n"
+
+#: ../../interactive/stdio.pm:1
+#, c-format
+msgid "Re-submit"
+msgstr "إعادة تسليم"
+
+#: ../../interactive/stdio.pm:1
+#, c-format
msgid ""
-"The following printer\n"
-"\n"
+"=> Notice, a label changed:\n"
+"%s"
msgstr ""
+"=> Notice, a label changed:\n"
+"%s"
-#: ../../printer/printerdrake.pm_.c:182
+#: ../../interactive/stdio.pm:1
+#, c-format
msgid ""
-"\n"
-"and one unknown printer are "
+"Please choose the first number of the 10-range you wish to edit,\n"
+"or just hit Enter to proceed.\n"
+"Your choice? "
msgstr ""
+"Please choose the first number of the 10-range you wish to edit,\n"
+"or just hit Enter to proceed.\n"
+"Your choice? "
+
+#: ../../interactive/stdio.pm:1
+#, c-format
+msgid "=> There are many things to choose from (%s).\n"
+msgstr "=> There are many things to choose from (%s).\n"
+
+#: ../../interactive/stdio.pm:1
+#, c-format
+msgid "Your choice? (default `%s'%s) "
+msgstr "Your choice? (default `%s'%s) "
+
+#: ../../interactive/stdio.pm:1
+#, c-format
+msgid " enter `void' for void entry"
+msgstr " enter `void' for void entry"
+
+#: ../../interactive/stdio.pm:1
+#, c-format
+msgid "Do you want to click on this button?"
+msgstr "Do you want to click on this button?"
-#: ../../printer/printerdrake.pm_.c:184
+#: ../../interactive/stdio.pm:1
+#, c-format
+msgid "Button `%s': %s"
+msgstr "Button `%s': %s"
+
+#: ../../interactive/stdio.pm:1
+#, c-format
+msgid "Your choice? (0/1, default `%s') "
+msgstr "Your choice? (0/1, default `%s') "
+
+#: ../../interactive/stdio.pm:1
#, c-format
msgid ""
-"\n"
-"and %d unknown printers are "
+"Entries you'll have to fill:\n"
+"%s"
msgstr ""
+"Entries you'll have to fill:\n"
+"%s"
-#: ../../printer/printerdrake.pm_.c:187
+#: ../../modules/interactive.pm:1
+#, c-format
msgid ""
-"\n"
-"are "
+"Loading module %s failed.\n"
+"Do you want to try again with other parameters?"
msgstr ""
+"فشل تحميل الوحدة %s.\n"
+"هل تريد المحاولة ثانية بمعاملات أخرى؟"
-#: ../../printer/printerdrake.pm_.c:187
+#: ../../modules/interactive.pm:1
+#, c-format
+msgid "Specify options"
+msgstr "حدد الخيارات"
+
+#: ../../modules/interactive.pm:1
+#, c-format
+msgid "Autoprobe"
+msgstr "تحقق آلي"
+
+#: ../../modules/interactive.pm:1
+#, c-format
msgid ""
-"\n"
-"is "
+"In some cases, the %s driver needs to have extra information to work\n"
+"properly, although it normally works fine without them. Would you like to "
+"specify\n"
+"extra options for it or allow the driver to probe your machine for the\n"
+"information it needs? Occasionally, probing will hang a computer, but it "
+"should\n"
+"not cause any damage."
msgstr ""
+"في بعض الأحيان يحتاج مشغل %s معلومات اضافية لكي يعمل\n"
+"بشكل صحيح, الا أنه يمكنه العمل جيدا بدونها. هل تريد تحديد\n"
+"خيارات اضافية له أو تسمح للمشغل بالتحقق في جهازك\n"
+"عن المعلومات التي سيحتاجها؟ في بعض الأحيان, قد يتسبب التحقق في تعليق الجهاز, "
+"لكن\n"
+"لا يجب أن يتسبب ذلك في أي مشاكل."
-#: ../../printer/printerdrake.pm_.c:189
-#, fuzzy
-msgid "directly connected to your system"
-msgstr "انسخ الخطوط الى نظامك"
+#. -PO: the %s is the driver type (scsi, network, sound,...)
+#: ../../modules/interactive.pm:1
+#, c-format
+msgid "Which %s driver should I try?"
+msgstr "أي مشغل %s يجب أن استخدمه؟"
-#: ../../printer/printerdrake.pm_.c:192
+#: ../../modules/interactive.pm:1
+#, c-format
+msgid "Module options:"
+msgstr "خيارات الوحدة:"
+
+#: ../../modules/interactive.pm:1
+#, c-format
msgid ""
-"\n"
-"There is one unknown printer directly connected to your system"
+"You may now provide options to module %s.\n"
+"Options are in format ``name=value name2=value2 ...''.\n"
+"For instance, ``io=0x300 irq=7''"
msgstr ""
+"يمكنك الآن اعطاء الخيارات للوحدة %s.\n"
+"الخيارات في هيئة ``name=value name2=value2 ...'' \n"
+"مثلا, ``io=0x300 irq=7''"
-#: ../../printer/printerdrake.pm_.c:194
+#: ../../modules/interactive.pm:1
#, c-format
msgid ""
-"\n"
-"There are %d unknown printers directly connected to your system"
+"You may now provide options to module %s.\n"
+"Note that any address should be entered with the prefix 0x like '0x123'"
msgstr ""
+"يمكنك الآن اعطاء الخيارات للوحدة %s.\n"
+"لاحظ أن أي عنوان يجب ادخاله مسبوقاً بـ 0x مثل '0x123'"
-#: ../../printer/printerdrake.pm_.c:200
-#, fuzzy
-msgid " (Make sure that all your printers are connected and turned on).\n"
-msgstr "رجاء اختر المنفذ الموصلة إليه طابعتك."
+#: ../../modules/interactive.pm:1
+#, c-format
+msgid "(module %s)"
+msgstr "(الوحدة %s)"
+
+#. -PO: the first %s is the card type (scsi, network, sound,...)
+#. -PO: the second is the vendor+model name
+#: ../../modules/interactive.pm:1
+#, c-format
+msgid "Installing driver for %s card %s"
+msgstr "جاري تثبيت مشغل %s للبطاقة %s"
+
+#: ../../modules/interactive.pm:1
+#, c-format
+msgid "See hardware info"
+msgstr "عرض معلومات العتاد"
+
+#: ../../modules/interactive.pm:1
+#, c-format
+msgid "Do you have any %s interfaces?"
+msgstr "هل لديك أي واجهات %s؟"
+
+#: ../../modules/interactive.pm:1
+#, c-format
+msgid "Do you have another one?"
+msgstr "هل عندك واحدة أخرى؟"
+
+#: ../../modules/interactive.pm:1
+#, c-format
+msgid "Found %s %s interfaces"
+msgstr "تم ايجاد %s %s واجهات"
-#: ../../printer/printerdrake.pm_.c:214
+#: ../../modules/interactive.pm:1
+#, c-format
+msgid "You can configure each parameter of the module here."
+msgstr "يمكنك تهيئة كل معامل للوحدة هنا."
+
+#: ../../modules/parameters.pm:1
+#, c-format
+msgid "comma separated strings"
+msgstr "حرفيات مفصولة بالفاصلة"
+
+#: ../../modules/parameters.pm:1
+#, c-format
+msgid "comma separated numbers"
+msgstr "أرقام مفصولة بالفاصلة"
+
+#: ../../modules/parameters.pm:1
+#, c-format
+msgid "%d comma separated strings"
+msgstr "%d حرفيات مفصولة بالفاصلة"
+
+#: ../../modules/parameters.pm:1
+#, c-format
+msgid "%d comma separated numbers"
+msgstr "%d أرقام مفصولة بالفاصلة"
+
+#: ../../modules/parameters.pm:1
+#, c-format
+msgid "a number"
+msgstr "رقم"
+
+#: ../../network/adsl.pm:1
+#, c-format
msgid ""
-"Do you want to enable printing on the printers mentioned above or on "
-"printers in the local network?\n"
+"You need the alcatel microcode.\n"
+"Download it at\n"
+"http://www.speedtouchdsl.com/dvrreg_lx.htm\n"
+"and copy the mgmt.o in /usr/share/speedtouch"
msgstr ""
+"تحتاج الى alcatel microcode.\n"
+"قم بتنزيلها على\n"
+"http://www.speedtouchdsl.com/dvreg_lx.htm\n"
+"و انسخ الملف mgmt.o الى /usr/share/speedtouch"
-#: ../../printer/printerdrake.pm_.c:215
-#, fuzzy
-msgid "Do you want to enable printing on printers in the local network?\n"
+#: ../../network/adsl.pm:1
+#, c-format
+msgid ""
+"The most common way to connect with adsl is pppoe.\n"
+"Some connections use pptp, a few use dhcp.\n"
+"If you don't know, choose 'use pppoe'"
msgstr ""
-"هل تريد تعيين هذه الطابعة (\"%s\")\n"
-"كطابعة افتراضية؟"
+"الطريقة الأكثر شيوعاً للإتصال بـ adsl هي pppoe.\n"
+"بعض الإتصالات تستخدم pptp, و القليل تستخدم dhcp.\n"
+"اذا لم تكن تعلم, اختر 'استخدم pppoe'"
-#: ../../printer/printerdrake.pm_.c:217
-#, fuzzy
-msgid "Do you want to enable printing on the printers mentioned above?\n"
-msgstr "هل تريد تجربة إعداد طابعة أخرى؟"
+#: ../../network/adsl.pm:1 ../../network/ethernet.pm:1
+#, c-format
+msgid "Connect to the Internet"
+msgstr "وصّل إلى الإنترنت "
-#: ../../printer/printerdrake.pm_.c:218
-msgid "Are you sure that you want to set up printing on this machine?\n"
+#: ../../network/adsl.pm:1
+#, c-format
+msgid "Sagem (using pppoe) usb"
+msgstr "Sagem (using pppoe) usb"
+
+#: ../../network/adsl.pm:1
+#, c-format
+msgid "Alcatel speedtouch usb"
+msgstr "Alcatel speedtouch usb"
+
+#: ../../network/adsl.pm:1
+#, c-format
+msgid "use dhcp"
+msgstr "استخدم dhcp"
+
+#: ../../network/adsl.pm:1
+#, c-format
+msgid "use pptp"
+msgstr "استخدم pptp"
+
+#: ../../network/adsl.pm:1
+#, c-format
+msgid "use pppoe"
+msgstr "استخدم pppoe"
+
+#: ../../network/drakfirewall.pm:1
+#, c-format
+msgid "Other ports"
+msgstr "منافذ أخرى"
+
+#: ../../network/drakfirewall.pm:1
+#, c-format
+msgid "Everything (no firewall)"
+msgstr "كل شئ (لا جدار ناري)"
+
+#: ../../network/drakfirewall.pm:1
+#, c-format
+msgid ""
+"Invalid port given: %s.\n"
+"The proper format is \"port/tcp\" or \"port/udp\", \n"
+"where port is between 1 and 65535."
msgstr ""
+"تم اعطاء منفذ غير صالح: %s.\n"
+"النسق الصحيح هو \"port/tcp\" أو \"port/udp\", \n"
+"في حين يكون المنفذ (port) بين 1 و 65535."
-#: ../../printer/printerdrake.pm_.c:219
+#: ../../network/drakfirewall.pm:1
#, c-format
msgid ""
-"NOTE: Depending on the printer model and the printing system up to %d MB of "
-"additional software will be installed."
+"You can enter miscellaneous ports. \n"
+"Valid examples are: 139/tcp 139/udp.\n"
+"Have a look at /etc/services for information."
msgstr ""
+"يمكنك ادخال منافذ متنوعة. \n"
+"أمثلة صالحة هي: 139/tcp 139/udp.\n"
+"الق نظرة على /etc/services لمزيد من المعلومات."
-#: ../../printer/printerdrake.pm_.c:258 ../../printer/printerdrake.pm_.c:270
-#: ../../printer/printerdrake.pm_.c:328 ../../printer/printerdrake.pm_.c:2933
-#: ../../printer/printerdrake.pm_.c:3060
-msgid "Add a new printer"
-msgstr "أضف طابعة جديدة"
+#: ../../network/drakfirewall.pm:1
+#, c-format
+msgid "Which services would you like to allow the Internet to connect to?"
+msgstr "أي خدمة تريد السماح للإنترنت أن تتصل بها؟"
-#: ../../printer/printerdrake.pm_.c:259
+#: ../../network/drakfirewall.pm:1
+#, c-format
msgid ""
+"drakfirewall configurator\n"
"\n"
-"Welcome to the Printer Setup Wizard\n"
+"Make sure you have configured your Network/Internet access with\n"
+"drakconnect before going any further."
+msgstr ""
+"أداة تهيئة DrakFirewall\n"
"\n"
-"This wizard allows you to install local or remote printers to be used from "
-"this machine and also from other machines in the network.\n"
+"تأكد من أنك قمت بتهيئة اتصالك بالشبكة/الإنترنت باستخدام\n"
+"drakconnect قبل المتابعة."
+
+#: ../../network/drakfirewall.pm:1
+#, c-format
+msgid ""
+"drakfirewall configurator\n"
"\n"
-"It asks you for all necessary information to set up the printer and gives "
-"you access to all available printer drivers, driver options, and printer "
-"connection types."
+"This configures a personal firewall for this Mandrake Linux machine.\n"
+"For a powerful and dedicated firewall solution, please look to the\n"
+"specialized MandrakeSecurity Firewall distribution."
msgstr ""
+"أداة تهيئة drakfirewall\n"
+"\n"
+"هذه الأداة تسمح لك بتهيئة جدار ناري شخصي لنظام Mandrake Linux هذا.\n"
+"إذا كنت تريد جدارا ناريا متخصصا, الق نظرة على\n"
+"توزيعة MandrakeSecurity Firewall."
-#: ../../printer/printerdrake.pm_.c:272
+#: ../../network/drakfirewall.pm:1
+#, c-format
+msgid "No network card"
+msgstr "لا توجد بطاقة شبكة"
+
+#: ../../network/drakfirewall.pm:1
+#, c-format
+msgid "POP and IMAP Server"
+msgstr "خادم POP و IMAP"
+
+#: ../../network/drakfirewall.pm:1
+#, c-format
+msgid "Mail Server"
+msgstr "خادم بريد"
+
+#: ../../network/drakfirewall.pm:1
+#, c-format
+msgid "Domain Name Server"
+msgstr "خادم اسم النطاق"
+
+#: ../../network/drakfirewall.pm:1
+#, c-format
+msgid "Web Server"
+msgstr "خادم الويب"
+
+#: ../../network/ethernet.pm:1 ../../network/network.pm:1
+#, c-format
+msgid "Zeroconf host name must not contain a ."
+msgstr "يجب أن يحتوي اسم مستضيف Zeroconf على ."
+
+#: ../../network/ethernet.pm:1 ../../network/network.pm:1
+#, c-format
+msgid "Zeroconf Host name"
+msgstr "اسم مستضيف Zeroconf"
+
+#: ../../network/ethernet.pm:1 ../../network/network.pm:1
+#, c-format
+msgid "Host name"
+msgstr "اسم المستضيف"
+
+#: ../../network/ethernet.pm:1 ../../network/network.pm:1
+#, c-format
msgid ""
"\n"
-"Welcome to the Printer Setup Wizard\n"
-"\n"
-"This wizard will help you to install your printer(s) connected to this "
-"computer, connected directly to the network or to a remote Windows machine.\n"
"\n"
-"If you have printer(s) connected to this machine, Please plug it/them in on "
-"this computer and turn it/them on so that it/they can be auto-detected. Also "
-"your network printer(s) and you Windows machines must be connected and "
-"turned on.\n"
+"Enter a Zeroconf host name without any dot if you don't\n"
+"want to use the default host name."
+msgstr ""
"\n"
-"Note that auto-detecting printers on the network takes longer than the auto-"
-"detection of only the printers connected to this machine. So turn off the "
-"auto-detection of network and/or Windows-hosted printers when you don't need "
-"it.\n"
"\n"
-" Click on \"Next\" when you are ready, and on \"Cancel\" when you do not "
-"want to set up your printer(s) now."
+"أدخل اسم مستضيف Zeroconf بدون أي نقاط اذا لم تكن تريد\n"
+"استخدام اسم المستضيف الإفتراضي."
+
+#: ../../network/ethernet.pm:1
+#, c-format
+msgid ""
+"Please enter your host name if you know it.\n"
+"Some DHCP servers require the hostname to work.\n"
+"Your host name should be a fully-qualified host name,\n"
+"such as ``mybox.mylab.myco.com''."
msgstr ""
+"فضلاً أدخل اسم المستضيف اذا كنت تعرفه.\n"
+"بعض خادمات DHCP تحتاج الى اسم المستضيق كي تعمل.\n"
+"يجب أن يكون اسم المستضيف صالحاً و كاملاً,\n"
+"مثل ``mybox.mylab.myco.com''."
-#: ../../printer/printerdrake.pm_.c:281 ../../printer/printerdrake.pm_.c:298
+#: ../../network/ethernet.pm:1 ../../network/network.pm:1
+#, c-format
+msgid "Configuring network"
+msgstr "جاري اعداد الشبكة"
+
+#: ../../network/ethernet.pm:1
+#, c-format
+msgid "no network card found"
+msgstr "لا بطاقة شبكة وجدت "
+
+#: ../../network/ethernet.pm:1
+#, c-format
msgid ""
-"\n"
-"Welcome to the Printer Setup Wizard\n"
-"\n"
-"This wizard will help you to install your printer(s) connected to this "
-"computer.\n"
-"\n"
-"If you have printer(s) connected to this machine, Please plug it/them in on "
-"this computer and turn it/them on so that it/they can be auto-detected.\n"
-"\n"
-" Click on \"Next\" when you are ready, and on \"Cancel\" when you do not "
-"want to set up your printer(s) now."
+"Please choose which network adapter you want to use to connect to Internet."
+msgstr "فضلاً اختر موائم الإنترنت الذي تريد استخدامه للإتصال بالإنترنت."
+
+#: ../../network/ethernet.pm:1 ../../standalone/drakgw:1
+#: ../../standalone/drakpxe:1
+#, c-format
+msgid "Choose the network interface"
+msgstr "اختر واجهة الشبكة"
+
+#: ../../network/ethernet.pm:1
+#, c-format
+msgid ""
+"No ethernet network adapter has been detected on your system.\n"
+"I cannot set up this connection type."
msgstr ""
+"لم يتم اكتشاف أي موائم شبكة ايثرنت على نظامك.\n"
+"لا يمكنني اعداد نوع الإتصال هذا."
-#: ../../printer/printerdrake.pm_.c:289
+#: ../../network/ethernet.pm:1
+#, c-format
msgid ""
-"\n"
-"Welcome to the Printer Setup Wizard\n"
-"\n"
-"This wizard will help you to install your printer(s) connected to this "
-"computer or connected directly to the network.\n"
-"\n"
-"If you have printer(s) connected to this machine, Please plug it/them in on "
-"this computer and turn it/them on so that it/they can be auto-detected. Also "
-"your network printer(s) must be connected and turned on.\n"
-"\n"
-"Note that auto-detecting printers on the network takes longer than the auto-"
-"detection of only the printers connected to this machine. So turn off the "
-"auto-detection of network printers when you don't need it.\n"
-"\n"
-" Click on \"Next\" when you are ready, and on \"Cancel\" when you do not "
-"want to set up your printer(s) now."
+"Which dhcp client do you want to use?\n"
+"Default is dhcp-client."
msgstr ""
+"أي عميل DHCP تريد أن تستخدم؟\n"
+"الإفتراضي هو dhcp-client."
-#: ../../printer/printerdrake.pm_.c:307
-#, fuzzy
-msgid "Auto-detect printers connected to this machine"
-msgstr "تحقق من الطابعات آليا"
+#: ../../network/isdn.pm:1
+#, c-format
+msgid "No ISDN PCI card found. Please select one on the next screen."
+msgstr "لم يتم ايجاد بطاقات ISDN PCI. فضلاً اختر واحدة في الشاشة التالية."
-#: ../../printer/printerdrake.pm_.c:310
-msgid "Auto-detect printers connected directly to the local network"
+#: ../../network/isdn.pm:1
+#, c-format
+msgid ""
+"I have detected an ISDN PCI card, but I don't know its type. Please select a "
+"PCI card on the next screen."
msgstr ""
+"تم اكتشاف بطاقة ISDN PCI, لكن لم يتم التعرف على نوعها. فضلاً اختر بطاقة PCI "
+"في الشاشة التالية."
-#: ../../printer/printerdrake.pm_.c:313
-msgid "Auto-detect printers connected to machines running Microsoft Windows"
-msgstr ""
+#: ../../network/isdn.pm:1
+#, c-format
+msgid "Which of the following is your ISDN card?"
+msgstr "أي من الآتي هي بطاقة ISDN الخاصة بك؟"
-#: ../../printer/printerdrake.pm_.c:329
+#: ../../network/isdn.pm:1
+#, c-format
+msgid "ISDN Configuration"
+msgstr "تهيئة ISDN"
+
+#: ../../network/isdn.pm:1
+#, c-format
+msgid "Abort"
+msgstr "إنهاء"
+
+#: ../../network/isdn.pm:1
+#, c-format
+msgid "Continue"
+msgstr "تابع"
+
+#: ../../network/isdn.pm:1
+#, c-format
msgid ""
"\n"
-"Congratulations, your printer is now installed and configured!\n"
-"\n"
-"You can print using the \"Print\" command of your application (usually in "
-"the \"File\" menu).\n"
+"If you have an ISA card, the values on the next screen should be right.\n"
"\n"
-"If you want to add, remove, or rename a printer, or if you want to change "
-"the default option settings (paper input tray, printout quality, ...), "
-"select \"Printer\" in the \"Hardware\" section of the Mandrake Control "
-"Center."
+"If you have a PCMCIA card, you have to know the \"irq\" and \"io\" of your "
+"card.\n"
msgstr ""
+"\n"
+"اذا كانت لديك بطاقة ISA, فإن القيم التي ستعرض على الشاشة التالية يجب أن تكون "
+"صحيحة.\n"
+"\n"
+"اذا كانت لديك بطاقة PCMCIA, يجب عليك أن تعرف قيم \"irq\" و \"io\" الخاصة "
+"ببطاقتك.\n"
-#: ../../printer/printerdrake.pm_.c:364 ../../printer/printerdrake.pm_.c:538
-#: ../../printer/printerdrake.pm_.c:742 ../../printer/printerdrake.pm_.c:978
-#, fuzzy
-msgid "Printer auto-detection"
-msgstr "تحقق آلي"
+#: ../../network/isdn.pm:1
+#, c-format
+msgid "I don't know"
+msgstr "لا أعرف "
-#: ../../printer/printerdrake.pm_.c:385
+#: ../../network/isdn.pm:1
#, c-format
-msgid ", network printer \"%s\", port %s"
-msgstr ""
+msgid "PCI"
+msgstr "PCI"
-#: ../../printer/printerdrake.pm_.c:387
+#: ../../network/isdn.pm:1
#, c-format
-msgid ", printer \"%s\" on SMB/Windows server \"%s\""
-msgstr ""
+msgid "ISA / PCMCIA"
+msgstr "ISA / PCMCIA"
-#: ../../printer/printerdrake.pm_.c:391
+#: ../../network/isdn.pm:1
#, c-format
-msgid "Detected %s"
-msgstr "تم التحقق من %s"
+msgid "What kind of card do you have?"
+msgstr "ما هو نوع البطاقة لديك؟"
-#: ../../printer/printerdrake.pm_.c:395 ../../printer/printerdrake.pm_.c:423
-#: ../../printer/printerdrake.pm_.c:440
+#: ../../network/isdn.pm:1
#, c-format
-msgid "Printer on parallel port \\/*%s"
-msgstr ""
+msgid "Found \"%s\" interface do you want to use it ?"
+msgstr "تم ايجاد الواجهة \"%s\" هل تريد استخدامها؟"
-#: ../../printer/printerdrake.pm_.c:397 ../../printer/printerdrake.pm_.c:425
-#: ../../printer/printerdrake.pm_.c:443
+#: ../../network/isdn.pm:1
#, c-format
-msgid "USB printer \\/*%s"
-msgstr ""
+msgid "Which protocol do you want to use?"
+msgstr "ما هو البروتوكول الذي تريد استخدامه؟"
-#: ../../printer/printerdrake.pm_.c:399
-#, fuzzy, c-format
-msgid "Network printer \"%s\", port %s"
-msgstr "طابعة شبكة (TCP/Socket)"
+#: ../../network/isdn.pm:1
+#, c-format
+msgid "Protocol for the rest of the world"
+msgstr "بروتوكول لبقية العالم"
-#: ../../printer/printerdrake.pm_.c:401
+#: ../../network/isdn.pm:1
#, c-format
-msgid "Printer \"%s\" on SMB/Windows server \"%s\""
+msgid ""
+"Protocol for the rest of the world\n"
+"No D-Channel (leased lines)"
msgstr ""
+"بروتوكول لبقية العالم\n"
+"لا D-Channel (خطوط مؤجرة)"
-#: ../../printer/printerdrake.pm_.c:525 ../../printer/printerdrake.pm_.c:547
-msgid "Local Printer"
-msgstr "طابعة محلية"
+#: ../../network/isdn.pm:1
+#, c-format
+msgid "European protocol"
+msgstr "البروتوكول الأوروبي"
+
+#: ../../network/isdn.pm:1
+#, c-format
+msgid "European protocol (EDSS1)"
+msgstr "البروتوكول الأوروبي (EDSS1)"
-#: ../../printer/printerdrake.pm_.c:526
+#: ../../network/isdn.pm:1
+#, c-format
msgid ""
-"No local printer found! To manually install a printer enter a device name/"
-"file name in the input line (Parallel Ports: /dev/lp0, /dev/lp1, ..., "
-"equivalent to LPT1:, LPT2:, ..., 1st USB printer: /dev/usb/lp0, 2nd USB "
-"printer: /dev/usb/lp1, ...)."
+"Select your provider.\n"
+"If it isn't listed, choose Unlisted."
msgstr ""
+"اختر موفر الخدمة الخاص بك.\n"
+"ان لم يكن موجوداً في القائمة, اختر غير موجود."
-#: ../../printer/printerdrake.pm_.c:530
-msgid "You must enter a device or file name!"
-msgstr ""
+#: ../../network/isdn.pm:1
+#, c-format
+msgid "External ISDN modem"
+msgstr "مودم ISDN خارجي"
-#
-#: ../../printer/printerdrake.pm_.c:539
-#, fuzzy
-msgid "No printer found!"
+#: ../../network/isdn.pm:1
+#, c-format
+msgid "Internal ISDN card"
+msgstr "بطاقة ISDN داخلية"
+
+#: ../../network/isdn.pm:1
+#, c-format
+msgid "What kind is your ISDN connection?"
+msgstr "ما هو نوع وصلة ISDN لديك؟"
+
+#: ../../network/isdn.pm:1 ../../network/netconnect.pm:1
+#, c-format
+msgid "Network Configuration Wizard"
+msgstr "معالج إعداد الشبكة"
+
+#: ../../network/isdn.pm:1
+#, c-format
+msgid "Old configuration (isdn4net)"
+msgstr "إعداد قديم (isdn4net)"
+
+#: ../../network/isdn.pm:1
+#, c-format
+msgid "New configuration (isdn-light)"
+msgstr "إعداد جديد (isdn-light)"
+
+#: ../../network/isdn.pm:1
+#, c-format
+msgid ""
+"Which ISDN configuration do you prefer?\n"
+"\n"
+"* The Old configuration uses isdn4net. It contains powerful\n"
+" tools, but is tricky to configure, and not standard.\n"
+"\n"
+"* The New configuration is easier to understand, more\n"
+" standard, but with less tools.\n"
+"\n"
+"We recommand the light configuration.\n"
msgstr ""
-"لم يتم ايحاد طابعة محلية!\n"
+"ما هي تهيئة ISDN التي تفضلها؟\n"
"\n"
+"* التهيئة القديمة تستخدم isdn4net. و هي تحتوي على أدوات\n"
+" قوية و لكنها صعبة التهيئة, و غير قياسية.\n"
+"\n"
+"* التهيئة الجديدة أسهل في الفهم, و أكثر\n"
+" قياسية, و لكن مع أدوات أقل.\n"
+"\n"
+"نحن نفضّل لك التهيئة الخفيفة.\n"
-#: ../../printer/printerdrake.pm_.c:548
-#, fuzzy
-msgid "Available printers"
-msgstr "طابعة محلية"
+#: ../../network/modem.pm:1
+#, c-format
+msgid "Do nothing"
+msgstr "لا تفعل شيئاً"
-#: ../../printer/printerdrake.pm_.c:552
+#: ../../network/modem.pm:1
+#, c-format
+msgid "Install rpm"
+msgstr "ثبت rpm"
+
+#: ../../network/modem.pm:1
+#, c-format
msgid ""
-"The following printer was auto-detected, if it is not the one you want to "
-"configure, enter a device name/file name in the input line"
-msgstr ""
+"\"%s\" based winmodem detected, do you want to install needed software ?"
+msgstr "تم ايجاد الوينمودم \"%s\", هل تريد تثبيت البرامج المطلوبة ؟"
-#: ../../printer/printerdrake.pm_.c:553
+#: ../../network/modem.pm:1
+#, c-format
+msgid "Title"
+msgstr "العنوان"
+
+#: ../../network/modem.pm:1
+#, c-format
msgid ""
-"Here is a list of all auto-detected printers. Please choose the printer you "
-"want to set up or enter a device name/file name in the input line"
+"Your modem isn't supported by the system.\n"
+"Take a look at http://www.linmodems.org"
msgstr ""
+"المودم لديك غير مدعوم من النظام.\n"
+"الق نظرة على http://www.linmodems.org"
+
+#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
+#, c-format
+msgid "Second DNS Server (optional)"
+msgstr "خادم DNS الثاني (اختياري)"
+
+#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
+#, c-format
+msgid "First DNS Server (optional)"
+msgstr "خادم DNS الأول (اختياري)"
+
+#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
+#, c-format
+msgid "Domain name"
+msgstr "اسم النطاق"
-#: ../../printer/printerdrake.pm_.c:555
+#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
+#, c-format
+msgid "CHAP"
+msgstr "CHAP"
+
+#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
+#, c-format
+msgid "Script-based"
+msgstr "Script-based"
+
+#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
+#, c-format
+msgid "Terminal-based"
+msgstr "Terminal-based"
+
+#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
+#, c-format
+msgid "PAP"
+msgstr "PAP"
+
+#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
+#, c-format
+msgid "Login ID"
+msgstr "اسم الدخول"
+
+#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
+#, c-format
+msgid "Phone number"
+msgstr "رقم التّليفون "
+
+#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
+#, c-format
+msgid "Connection name"
+msgstr "اسم الإتصال"
+
+#: ../../network/modem.pm:1
+#, c-format
+msgid "Dialup options"
+msgstr "خيارات الإتصال"
+
+#: ../../network/modem.pm:1
+#, c-format
+msgid "Please choose which serial port your modem is connected to."
+msgstr "فضلاً اختر المنفذ التسلسلي المرتبط به المودم لديك."
+
+#: ../../network/netconnect.pm:1 ../../network/tools.pm:1
+#, c-format
+msgid "Network Configuration"
+msgstr "اعدادات الشبكة"
+
+#: ../../network/netconnect.pm:1
+#, c-format
msgid ""
-"The following printer was auto-detected. The configuration of the printer "
-"will work fully automatically. If your printer was not correctly detected or "
-"if you prefer a customized printer configuration, turn on \"Manual "
-"configuration\"."
+"Problems occured during configuration.\n"
+"Test your connection via net_monitor or mcc. If your connection doesn't "
+"work, you might want to relaunch the configuration."
msgstr ""
+"ظهرت مشاكل أثناء التثبيت.\n"
+"اختبر الوصلة باستخدام net_monitor أو mcc. اذا لم تعمل الوصلة, فقد تريد اعادة "
+"التهيئة."
-#: ../../printer/printerdrake.pm_.c:556
+#: ../../network/netconnect.pm:1
+#, c-format
msgid ""
-"Here is a list of all auto-detected printers. Please choose the printer you "
-"want to set up. The configuration of the printer will work fully "
-"automatically. If your printer was not correctly detected or if you prefer a "
-"customized printer configuration, turn on \"Manual configuration\"."
+"After this is done, we recommend that you restart your X environment to "
+"avoid any hostname-related problems."
msgstr ""
+"بعد عمل ذلك, ننصح بإعادة تشغيل بيئة X لديك لتفادي أي مشاكل تتعلق بإسم "
+"المستضيف."
-#: ../../printer/printerdrake.pm_.c:558
+#: ../../network/netconnect.pm:1
+#, c-format
msgid ""
-"Please choose the port where your printer is connected to or enter a device "
-"name/file name in the input line"
+"Congratulations, the network and Internet configuration is finished.\n"
+"The configuration will now be applied to your system.\n"
+"\n"
msgstr ""
+"تهانينا, انتهت تهيئة الشبكة و الإنترنت.\n"
+"سيتم تطبيق التهيئة على نظامك الآن.\n"
+"\n"
-#: ../../printer/printerdrake.pm_.c:559
-msgid "Please choose the port where your printer is connected to."
-msgstr "رجاء اختر المنفذ الموصلة إليه طابعتك."
-
-#: ../../printer/printerdrake.pm_.c:561
+#: ../../network/netconnect.pm:1
+#, c-format
msgid ""
-" (Parallel Ports: /dev/lp0, /dev/lp1, ..., equivalent to LPT1:, LPT2:, ..., "
-"1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."
+"A problem occured while restarting the network: \n"
+"\n"
+"%s"
msgstr ""
+"ظهرت مشكلة أثناء اعادة تشغيل الشبكة: \n"
+"\n"
+"%s"
-#: ../../printer/printerdrake.pm_.c:565
-msgid "You must choose/enter a printer/device!"
-msgstr ""
+#: ../../network/netconnect.pm:1
+#, c-format
+msgid "The network needs to be restarted. Do you want to restart it ?"
+msgstr "يجب اعادة تشغيل الشبكة. هل تريد اعادة تشغيلها ؟"
-#: ../../printer/printerdrake.pm_.c:584
-msgid "Manual configuration"
-msgstr "إعداد يدوي"
+#: ../../network/netconnect.pm:1
+#, c-format
+msgid "Network configuration"
+msgstr "اعدادات الشبكة"
-#: ../../printer/printerdrake.pm_.c:633
-msgid "Remote lpd Printer Options"
-msgstr ""
+#: ../../network/netconnect.pm:1
+#, c-format
+msgid "Do you want to start the connection at boot?"
+msgstr "هل تريد بدء الوصلة عند الإقلاع؟"
-#: ../../printer/printerdrake.pm_.c:634
-msgid ""
-"To use a remote lpd printer, you need to supply the hostname of the printer "
-"server and the printer name on that server."
-msgstr ""
+#: ../../network/netconnect.pm:1
+#, c-format
+msgid "Internet connection"
+msgstr "وصلة انترنت"
-#: ../../printer/printerdrake.pm_.c:635
-msgid "Remote host name"
+#: ../../network/netconnect.pm:1
+#, c-format
+msgid ""
+"You have configured multiple ways to connect to the Internet.\n"
+"Choose the one you want to use.\n"
+"\n"
msgstr ""
+"لقد قمت بتهيئة طرق متعددة للإتصال بالإنترنت.\n"
+"اختر الطريقة التي تريد استخدامها.\n"
+"\n"
-#: ../../printer/printerdrake.pm_.c:636
-msgid "Remote printer name"
-msgstr ""
+#: ../../network/netconnect.pm:1
+#, c-format
+msgid "Choose the connection you want to configure"
+msgstr "اختر الوصلة التي تريد تهيئتها"
-#: ../../printer/printerdrake.pm_.c:639
-msgid "Remote host name missing!"
-msgstr ""
+#: ../../network/netconnect.pm:1
+#, c-format
+msgid "ethernet card(s) detected"
+msgstr "تم اكتشاف بطاقة/بطاقات ايثرنت"
-#: ../../printer/printerdrake.pm_.c:643
-msgid "Remote printer name missing!"
-msgstr ""
+#: ../../network/netconnect.pm:1
+#, c-format
+msgid "LAN connection"
+msgstr "وصلة LAN"
-#: ../../printer/printerdrake.pm_.c:665 ../../printer/printerdrake.pm_.c:1170
-#, fuzzy, c-format
-msgid "Detected model: %s %s"
-msgstr "تم التحقق من %s"
+#: ../../network/netconnect.pm:1
+#, c-format
+msgid "cable connection detected"
+msgstr "تم اكتشاف وصلة كيبل"
-#: ../../printer/printerdrake.pm_.c:742 ../../printer/printerdrake.pm_.c:978
-#, fuzzy
-msgid "Scanning network..."
-msgstr "جاري بدء الشبكة..."
+#: ../../network/netconnect.pm:1
+#, c-format
+msgid "Cable connection"
+msgstr "وصلة كيبل"
-#: ../../printer/printerdrake.pm_.c:751 ../../printer/printerdrake.pm_.c:772
+#: ../../network/netconnect.pm:1
#, c-format
-msgid ", printer \"%s\" on server \"%s\""
-msgstr ""
+msgid "detected"
+msgstr "تم اكتشافه"
-#: ../../printer/printerdrake.pm_.c:754 ../../printer/printerdrake.pm_.c:775
-#, fuzzy, c-format
-msgid "Printer \"%s\" on server \"%s\""
-msgstr "جاري الطباعة على الطابعة \"%s\""
+#: ../../network/netconnect.pm:1
+#, c-format
+msgid "ADSL connection"
+msgstr "وصلة ADSL"
-#: ../../printer/printerdrake.pm_.c:795
-msgid "SMB (Windows 9x/NT) Printer Options"
-msgstr ""
+#: ../../network/netconnect.pm:1
+#, c-format
+msgid "detected %s"
+msgstr "تم اكتساف %s"
-#: ../../printer/printerdrake.pm_.c:796
-msgid ""
-"To print to a SMB printer, you need to provide the SMB host name (Note! It "
-"may be different from its TCP/IP hostname!) and possibly the IP address of "
-"the print server, as well as the share name for the printer you wish to "
-"access and any applicable user name, password, and workgroup information."
-msgstr ""
+#: ../../network/netconnect.pm:1
+#, c-format
+msgid "ISDN connection"
+msgstr "وصلة ISDN"
-#: ../../printer/printerdrake.pm_.c:797
-msgid ""
-" If the desired printer was auto-detected, simply choose it from the list "
-"and then add user name, password, and/or workgroup if needed."
-msgstr ""
+#: ../../network/netconnect.pm:1
+#, c-format
+msgid "Winmodem connection"
+msgstr "وصلة Winmodem"
-#: ../../printer/printerdrake.pm_.c:799
-msgid "SMB server host"
-msgstr ""
+#: ../../network/netconnect.pm:1
+#, c-format
+msgid "detected on port %s"
+msgstr "تم اكتشافه على المنفذ %s"
-#: ../../printer/printerdrake.pm_.c:800
-msgid "SMB server IP"
-msgstr ""
+#: ../../network/netconnect.pm:1
+#, c-format
+msgid "Normal modem connection"
+msgstr "وصلة مودم عادية"
-#: ../../printer/printerdrake.pm_.c:801
-msgid "Share name"
-msgstr ""
+#: ../../network/netconnect.pm:1 ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Detecting devices..."
+msgstr "جاري التحقق من الأجهزة..."
-#: ../../printer/printerdrake.pm_.c:804
-msgid "Workgroup"
-msgstr "مجموعة العمل"
+#: ../../network/netconnect.pm:1 ../../printer/printerdrake.pm:1
+#: ../../standalone/drakconnect:1 ../../standalone/drakfloppy:1
+#, c-format
+msgid "Expert Mode"
+msgstr "وضعية الخبير"
-#: ../../printer/printerdrake.pm_.c:806
-#, fuzzy
-msgid "Auto-detected"
-msgstr "تحقق آلي"
+#: ../../network/netconnect.pm:1
+#, c-format
+msgid "Use auto detection"
+msgstr "استخدم التحقق الآلي"
-#: ../../printer/printerdrake.pm_.c:816
-msgid "Either the server name or the server's IP must be given!"
-msgstr ""
+#: ../../network/netconnect.pm:1
+#, c-format
+msgid "Choose the profile to configure"
+msgstr "اختر التشكيل الذي تريد تهيئته"
-#: ../../printer/printerdrake.pm_.c:820
-msgid "Samba share name missing!"
+#: ../../network/netconnect.pm:1
+#, c-format
+msgid ""
+"Welcome to The Network Configuration Wizard.\n"
+"\n"
+"We are about to configure your internet/network connection.\n"
+"If you don't want to use the auto detection, deselect the checkbox.\n"
msgstr ""
+"أهلاً بك في معالج تهيئة الشبكة.\n"
+"\n"
+"نحن على وشك تهيئة وصلة الشبكة/الإنترنت الخاصة بك.\n"
+"اذا لم تريد استخدام التحقق الآلي, احذف التأشير من على الصندوق.\n"
-#: ../../printer/printerdrake.pm_.c:826
-msgid "SECURITY WARNING!"
+#: ../../network/netconnect.pm:1
+#, c-format
+msgid ""
+"Because you are doing a network installation, your network is already "
+"configured.\n"
+"Click on Ok to keep your configuration, or cancel to reconfigure your "
+"Internet & Network connection.\n"
msgstr ""
+"لأنك تقوم بالتثبيت عبر الشبكة, فقد تمت تهيئة الشبكة مسبقاً.\n"
+"انقر موافق لحفظ التهيئة الخاصة بك, أو انقر الغاء لإعادة تهيئة وصلات الإنترنت "
+"و الشبكة.\n"
-#: ../../printer/printerdrake.pm_.c:827
+#: ../../network/netconnect.pm:1
#, c-format
msgid ""
-"You are about to set up printing to a Windows account with password. Due to "
-"a fault in the architecture of the Samba client software the password is put "
-"in clear text into the command line of the Samba client used to transmit the "
-"print job to the Windows server. So it is possible for every user on this "
-"machine to display the password on the screen by issuing commands as \"ps "
-"auxwww\".\n"
"\n"
-"We recommend to make use of one of the following alternatives (in all cases "
-"you have to make sure that only machines from your local network have access "
-"to your Windows server, for example by means of a firewall):\n"
"\n"
-"Use a password-less account on your Windows server, as the \"GUEST\" account "
-"or a special account dedicated for printing. Do not remove the password "
-"protection from a personal account or the administrator account.\n"
"\n"
-"Set up your Windows server to make the printer available under the LPD "
-"protocol. Then set up printing from this machine with the \"%s\" connection "
-"type in Printerdrake.\n"
+"We are now going to configure the %s connection.\n"
+"\n"
"\n"
+"Press OK to continue."
msgstr ""
+"\n"
+"\n"
+"\n"
+"نحن الآن سنقوم بتهيئة الوصلة %s.\n"
+"\n"
+"اضغط موافق للمتابعة."
-#: ../../printer/printerdrake.pm_.c:837
+#: ../../network/netconnect.pm:1
+#, c-format
+msgid "We are now going to configure the %s connection."
+msgstr "نحن الآن سنقوم بتهيئة الوصلة %s."
+
+#: ../../network/netconnect.pm:1
+#, c-format
+msgid "Internet connection & configuration"
+msgstr "وصلة الإنترنت و الإعدادات"
+
+#: ../../network/netconnect.pm:1
+#, c-format
+msgid "Configure the connection"
+msgstr "قم بإعداد الإتصال"
+
+#: ../../network/netconnect.pm:1
+#, c-format
+msgid "Disconnect"
+msgstr "اقطع الإتصال"
+
+#: ../../network/netconnect.pm:1
+#, c-format
+msgid "Connect"
+msgstr "اتصل"
+
+#: ../../network/netconnect.pm:1
#, c-format
msgid ""
-"Set up your Windows server to make the printer available under the IPP "
-"protocol and set up printing from this machine with the \"%s\" connection "
-"type in Printerdrake.\n"
"\n"
+"You can reconfigure your connection."
msgstr ""
+"\n"
+"يمكنك اعادة تهيئة الوصلة."
-#: ../../printer/printerdrake.pm_.c:840
+#: ../../network/netconnect.pm:1
+#, c-format
msgid ""
-"Connect your printer to a Linux server and let your Windows machine(s) "
-"connect to it as a client.\n"
"\n"
-"Do you really want to continue setting up this printer as you are doing now?"
+"You can connect to the Internet or reconfigure your connection."
msgstr ""
+"\n"
+"يمكنك الآن الإتصال بالإنترنت أو اعادة تهيئة الوصلة."
-#: ../../printer/printerdrake.pm_.c:911
-msgid "NetWare Printer Options"
-msgstr ""
+#: ../../network/netconnect.pm:1
+#, c-format
+msgid "You are not currently connected to the Internet."
+msgstr "أنت لست متصل بالإنترنت حالياً"
-#: ../../printer/printerdrake.pm_.c:912
+#: ../../network/netconnect.pm:1
+#, c-format
msgid ""
-"To print on a NetWare printer, you need to provide the NetWare print server "
-"name (Note! it may be different from its TCP/IP hostname!) as well as the "
-"print queue name for the printer you wish to access and any applicable user "
-"name and password."
+"\n"
+"You can disconnect or reconfigure your connection."
msgstr ""
+"\n"
+"يمكنك قطع الإتصال أو اعادة تهيئة الوصلة."
-#: ../../printer/printerdrake.pm_.c:913
-msgid "Printer Server"
-msgstr ""
+#: ../../network/netconnect.pm:1
+#, c-format
+msgid "You are currently connected to the Internet."
+msgstr "أنت متصل بالإنترنت حالياً"
-#: ../../printer/printerdrake.pm_.c:914
-msgid "Print Queue Name"
-msgstr ""
+#: ../../network/network.pm:1
+#, c-format
+msgid "URL should begin with 'ftp:' or 'http:'"
+msgstr "يجب أن يبدأ العنوان بـ 'ftp:' أو 'http:'"
-#: ../../printer/printerdrake.pm_.c:919
-msgid "NCP server name missing!"
-msgstr ""
+#: ../../network/network.pm:1
+#, c-format
+msgid "Proxy should be http://..."
+msgstr "البروكسي يجب أن يكون http://..."
-#: ../../printer/printerdrake.pm_.c:923
-msgid "NCP queue name missing!"
-msgstr ""
+#: ../../network/network.pm:1
+#, c-format
+msgid "FTP proxy"
+msgstr "بروكسي FTP"
-#: ../../printer/printerdrake.pm_.c:987 ../../printer/printerdrake.pm_.c:1007
+#: ../../network/network.pm:1
#, c-format
-msgid ", host \"%s\", port %s"
-msgstr ""
+msgid "HTTP proxy"
+msgstr "بروكسي HTTP"
-#: ../../printer/printerdrake.pm_.c:990 ../../printer/printerdrake.pm_.c:1010
+#: ../../network/network.pm:1
#, c-format
-msgid "Host \"%s\", port %s"
-msgstr ""
+msgid "Proxies configuration"
+msgstr "اعدادات البروكسي"
-#: ../../printer/printerdrake.pm_.c:1030
-msgid "TCP/Socket Printer Options"
+#: ../../network/network.pm:1
+#, c-format
+msgid "Gateway address should be in format 1.2.3.4"
+msgstr "عنوان البوابات يجب أن تكون على النسق 1.2.3.4"
+
+#: ../../network/network.pm:1
+#, c-format
+msgid "DNS server address should be in format 1.2.3.4"
+msgstr "عنوان خادم DNS يجب أن يكون على النسق 1.2.3.4"
+
+#: ../../network/network.pm:1
+#, c-format
+msgid "Gateway device"
+msgstr "جهاز البوابة"
+
+#: ../../network/network.pm:1
+#, c-format
+msgid "Gateway (e.g. %s)"
+msgstr "البوابة (مثلاً %s)"
+
+#: ../../network/network.pm:1
+#, c-format
+msgid "DNS server"
+msgstr "خادم DNS"
+
+#: ../../network/network.pm:1
+#, c-format
+msgid ""
+"Please enter your host name.\n"
+"Your host name should be a fully-qualified host name,\n"
+"such as ``mybox.mylab.myco.com''.\n"
+"You may also enter the IP address of the gateway if you have one."
msgstr ""
+"فضلاً أدخل اسم المستضيف.\n"
+"يجب أن يكون اسم المستضيف صالحاً و كاملاً,\n"
+"مثل ``mybox.mylab.myco.com''.\n"
+"يمكنك أيضاً ادخال عنوان IP الخاص بالبوابة ان وُجدت."
-#: ../../printer/printerdrake.pm_.c:1032
+#: ../../network/network.pm:1
+#, c-format
msgid ""
-"Choose one of the auto-detected printers from the list or enter the hostname "
-"or IP and the optional port number (default is 9100) into the input fields."
+"Rate should have the suffix k, M or G (for example, \"11M\" for 11M), or add "
+"enough '0' (zeroes)."
msgstr ""
+"Rate should have the suffix k, M or G (for example, \"11M\" for 11M), or add "
+"enough '0' (zeroes)."
-#: ../../printer/printerdrake.pm_.c:1033
+#: ../../network/network.pm:1
+#, c-format
msgid ""
-"To print to a TCP or socket printer, you need to provide the host name or IP "
-"of the printer and optionally the port number (default is 9100). On HP "
-"JetDirect servers the port number is usually 9100, on other servers it can "
-"vary. See the manual of your hardware."
+"Freq should have the suffix k, M or G (for example, \"2.46G\" for 2.46 GHz "
+"frequency), or add enough '0' (zeroes)."
msgstr ""
+"Freq should have the suffix k, M or G (for example, \"2.46G\" for 2.46 GHz "
+"frequency), or add enough '0' (zeroes)."
-#: ../../printer/printerdrake.pm_.c:1037
-#, fuzzy
-msgid "Printer host name or IP missing!"
-msgstr "اسم مستضيف الطابعة"
+#: ../../network/network.pm:1 ../../printer/printerdrake.pm:1
+#, c-format
+msgid "IP address should be in format 1.2.3.4"
+msgstr "عنوان IP يجب أن يكون على النسق 1.2.3.4"
-#: ../../printer/printerdrake.pm_.c:1059
-#, fuzzy
-msgid "Printer host name or IP"
-msgstr "اسم مستضيف الطابعة"
+#: ../../network/network.pm:1
+#, c-format
+msgid "Start at boot"
+msgstr "ابدأ عند الإقلاع"
-#: ../../printer/printerdrake.pm_.c:1107 ../../printer/printerdrake.pm_.c:1109
-msgid "Printer Device URI"
-msgstr ""
+#: ../../network/network.pm:1
+#, c-format
+msgid "Network Hotplugging"
+msgstr "Network Hotplugging"
+
+#: ../../network/network.pm:1
+#, c-format
+msgid "Track network card id (useful for laptops)"
+msgstr "تتبع هوية بطاقة الشبكة (مفيد للجاسبات الدفترية)"
+
+#: ../../network/network.pm:1
+#, c-format
+msgid "(bootp/dhcp/zeroconf)"
+msgstr "(bootp/dhcp/zeroconf)"
+
+#: ../../network/network.pm:1
+#, c-format
+msgid "Automatic IP"
+msgstr "Automatic IP"
+
+#: ../../network/network.pm:1 ../../standalone/drakconnect:1
+#: ../../standalone/drakgw:1
+#, c-format
+msgid "Netmask"
+msgstr "Netmask"
+
+#: ../../network/network.pm:1 ../../standalone/drakconnect:1
+#, c-format
+msgid "IP address"
+msgstr "عنوان IP"
+
+#: ../../network/network.pm:1
+#, c-format
+msgid " (driver %s)"
+msgstr " (driver %s)"
+
+#: ../../network/network.pm:1
+#, c-format
+msgid "Configuring network device %s"
+msgstr "جاري تهيئة جهاز الشبكة %s"
-#: ../../printer/printerdrake.pm_.c:1108
+#: ../../network/network.pm:1
+#, c-format
msgid ""
-"You can specify directly the URI to access the printer. The URI must fulfill "
-"either the CUPS or the Foomatic specifications. Note that not all URI types "
-"are supported by all the spoolers."
+"Please enter the IP configuration for this machine.\n"
+"Each item should be entered as an IP address in dotted-decimal\n"
+"notation (for example, 1.2.3.4)."
msgstr ""
+"فضلاً أدخل تهيئة IP الخاصة بهذه الماكينة.\n"
+"كل مادة يجب ادخالها كعنوان IP بشكل منقوط\n"
+"(مثلاً, 1.2.3.4)."
-#: ../../printer/printerdrake.pm_.c:1123
-msgid "A valid URI must be entered!"
+#: ../../network/network.pm:1
+#, c-format
+msgid ""
+"WARNING: this device has been previously configured to connect to the "
+"Internet.\n"
+"Simply accept to keep this device configured.\n"
+"Modifying the fields below will override this configuration."
msgstr ""
+"تحذير: تمت تهيئة هذا الجهاز سابقاً للإتصال بالإنترنت.\n"
+"بكل بساطة اقبل أن تُبقي هذا الجهاز معدّ.\n"
+"تعديل الحقول أدناه سيغيّر هذه التهيئة."
-#: ../../printer/printerdrake.pm_.c:1463
+#: ../../network/shorewall.pm:1
+#, c-format
msgid ""
-"Every printer needs a name (for example \"printer\"). The Description and "
-"Location fields do not need to be filled in. They are comments for the users."
+"Warning! An existing firewalling configuration has been detected. You may "
+"need some manual fixes after installation."
msgstr ""
+"تحذير! تم إيجاد إعداد جدار ناري موجود مسبقا. ربما تحتاج الى اصلاح يدوي بعد "
+"التثبيت."
-#: ../../printer/printerdrake.pm_.c:1464
-msgid "Name of printer"
-msgstr ""
+#: ../../network/shorewall.pm:1
+#, c-format
+msgid "Firewalling configuration detected!"
+msgstr "تم اكتشاف إعداد للجدار الناري!"
-#: ../../printer/printerdrake.pm_.c:1465 ../../standalone/harddrake2_.c:38
-msgid "Description"
-msgstr "الوصف"
+#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
+#, c-format
+msgid "Account Password"
+msgstr "كلمة المرور للحساب"
-#: ../../printer/printerdrake.pm_.c:1466
-msgid "Location"
-msgstr "المكان"
+#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
+#, c-format
+msgid "Account Login (user name)"
+msgstr "اسم المدخول للحساب"
-#: ../../printer/printerdrake.pm_.c:1478 ../../printer/printerdrake.pm_.c:1599
-msgid "Reading printer database..."
-msgstr ""
+#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
+#, c-format
+msgid "Connection timeout (in sec)"
+msgstr "الوقت الأقصى للاتصال (بالثواني)"
-#: ../../printer/printerdrake.pm_.c:1482
-msgid "Preparing printer database..."
-msgstr ""
+#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
+#, c-format
+msgid "Connection speed"
+msgstr "سرعة الإتصال"
-#: ../../printer/printerdrake.pm_.c:1578
-msgid "Your printer model"
-msgstr ""
+#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
+#, c-format
+msgid "Dialing mode"
+msgstr "وضعية الإتصال"
-#: ../../printer/printerdrake.pm_.c:1579
+#: ../../network/tools.pm:1
+#, c-format
+msgid "Choose your country"
+msgstr "إختر بلدك"
+
+#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
+#, c-format
+msgid "Provider dns 2 (optional)"
+msgstr "DNS الثاني للموفر (اختياري)"
+
+#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
+#, c-format
+msgid "Provider dns 1 (optional)"
+msgstr "DNS الأول للموفر (اختياري)"
+
+#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
+#, c-format
+msgid "Provider phone number"
+msgstr "رقم هاتف الموفر"
+
+#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
+#, c-format
+msgid "Provider name (ex provider.net)"
+msgstr "اسم الموفر (مثلاً provider.net)"
+
+#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
+#, c-format
+msgid "Your personal phone number"
+msgstr "رقم الهاتف الشخصي الخاص بك"
+
+#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
+#, c-format
+msgid "Card IO_1"
+msgstr "Card IO_1"
+
+#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
+#, c-format
+msgid "Card IO_0"
+msgstr "Card IO_0"
+
+#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
+#, c-format
+msgid "Card IO"
+msgstr "Card IO"
+
+#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
+#, c-format
+msgid "Card mem (DMA)"
+msgstr "Card mem (DMA)"
+
+#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
+#, c-format
+msgid "Card IRQ"
+msgstr "Card IRQ"
+
+#: ../../network/tools.pm:1
+#, c-format
+msgid "Please fill or check the field below"
+msgstr "فضلاً املأ أو أشّر على الحقل أدناه"
+
+#: ../../network/tools.pm:1
+#, c-format
+msgid "Connection Configuration"
+msgstr "اعدادات الوصلة"
+
+#: ../../network/tools.pm:1
#, c-format
msgid ""
-"Printerdrake has compared the model name resulting from the printer auto-"
-"detection with the models listed in its printer database to find the best "
-"match. This choice can be wrong, especially when your printer is not listed "
-"at all in the database. So check whether the choice is correct and click "
-"\"The model is correct\" if so and if not, click \"Select model manually\" "
-"so that you can choose your printer model manually on the next screen.\n"
-"\n"
-"For your printer Printerdrake has found:\n"
-"\n"
-"%s"
+"The system doesn't seem to be connected to the Internet.\n"
+"Try to reconfigure your connection."
msgstr ""
+"لا يبدو أن النظام متصل بالإنترنت.\n"
+"حاول اعادة تهيئة الوصلة."
-#: ../../printer/printerdrake.pm_.c:1584 ../../printer/printerdrake.pm_.c:1587
-msgid "The model is correct"
-msgstr ""
+#: ../../network/tools.pm:1
+#, c-format
+msgid "For security reasons, it will be disconnected now."
+msgstr "لأسباب أمنية, سيتم قطع الإتصال الآن."
-#: ../../printer/printerdrake.pm_.c:1585 ../../printer/printerdrake.pm_.c:1586
-#: ../../printer/printerdrake.pm_.c:1589
-msgid "Select model manually"
-msgstr "تم اختيار النّموذج يدويًّا"
+#: ../../network/tools.pm:1
+#, c-format
+msgid "The system is now connected to the Internet."
+msgstr "النظام الآن متصل بالإنترنت"
-#: ../../printer/printerdrake.pm_.c:1606
-msgid "Printer model selection"
-msgstr "إختيار وحدات الطابعة"
+#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
+#, c-format
+msgid "Testing your connection..."
+msgstr "جاري اختبار الوصلة..."
-#: ../../printer/printerdrake.pm_.c:1607
-msgid "Which printer model do you have?"
-msgstr "ما هو نوع الطابعة لديك؟"
+#: ../../network/tools.pm:1
+#, c-format
+msgid "Do you want to try to connect to the Internet now?"
+msgstr "هل تريد أن تحاول أن تتصل بالإنترنت الآن؟"
-#: ../../printer/printerdrake.pm_.c:1608
+#: ../../network/tools.pm:1
+#, c-format
+msgid "Internet configuration"
+msgstr "اعدادات الإنترنت"
+
+#: ../../partition_table/raw.pm:1
+#, c-format
msgid ""
-"\n"
-"\n"
-"Please check whether Printerdrake did the auto-detection of your printer "
-"model correctly. Search the correct model in the list when the cursor is "
-"standing on a wrong model or on \"Raw printer\"."
+"Something bad is happening on your drive. \n"
+"A test to check the integrity of data has failed. \n"
+"It means writing anything on the disk will end up with random, corrupted "
+"data."
msgstr ""
+"هناك شئ سيئ يحصل للقرص. \n"
+"لقد فشل اختبار للتأكد من صحة البيانات. \n"
+"هذا يعني أن كتابة أي شئ على هذا القرص سينتهي ببيانات عشوائية و فاسدة."
+
+#: ../../printer/cups.pm:1 ../../printer/printerdrake.pm:1
+#, c-format
+msgid " (Default)"
+msgstr " (افتراضي)"
+
+#: ../../printer/cups.pm:1
+#, c-format
+msgid "On CUPS server \"%s\""
+msgstr "على خادم CUPS \"%s\""
+
+#: ../../printer/cups.pm:1 ../../printer/main.pm:1
+#, c-format
+msgid "Remote Printers"
+msgstr "الطابعات البعيدة"
+
+#: ../../printer/cups.pm:1 ../../printer/data.pm:1
+#, c-format
+msgid "CUPS"
+msgstr "CUPS"
+
+#: ../../printer/cups.pm:1
+#, c-format
+msgid "(on this machine)"
+msgstr "(على هذا الجهاز)"
+
+#: ../../printer/cups.pm:1
+#, c-format
+msgid "(on %s)"
+msgstr "(على %s)"
+
+#: ../../printer/data.pm:1
+#, c-format
+msgid "CUPS - Common Unix Printing System"
+msgstr "CUPS - Common Unix Printing System"
+
+#: ../../printer/data.pm:1
+#, c-format
+msgid "LPRng"
+msgstr "LPRng"
+
+#: ../../printer/data.pm:1
+#, c-format
+msgid "LPRng - LPR New Generation"
+msgstr "LPRng - LPR New Generation"
+
+#: ../../printer/data.pm:1
+#, c-format
+msgid "LPD"
+msgstr "LPD"
+
+#: ../../printer/data.pm:1
+#, c-format
+msgid "LPD - Line Printer Daemon"
+msgstr "LPD - Line Printer Daemon"
+
+#: ../../printer/data.pm:1
+#, c-format
+msgid "PDQ"
+msgstr "PDQ"
+
+#: ../../printer/data.pm:1
+#, c-format
+msgid "PDQ - Print, Don't Queue"
+msgstr "PDQ - Print, Don't Queue"
+
+#: ../../printer/detect.pm:1
+#, c-format
+msgid "Unknown Model"
+msgstr "طراز غير معروف"
+
+#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Unknown model"
+msgstr "طراز غير معروف"
+
+#: ../../printer/main.pm:1
+#, c-format
+msgid "Host %s"
+msgstr "المستضيف %s"
-#: ../../printer/printerdrake.pm_.c:1611
+#: ../../printer/main.pm:1
+#, c-format
+msgid "Network %s"
+msgstr "الشبكة %s"
+
+#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Interface \"%s\""
+msgstr "الواجهة \"%s\""
+
+#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Local network(s)"
+msgstr "الشبكة/الشبكات المحلية"
+
+#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Raw printer (No driver)"
+msgstr "طابعة خام (لا مشغل)"
+
+#: ../../printer/main.pm:1
+#, c-format
+msgid ", using command %s"
+msgstr ", باستخدام الأمر %s"
+
+#: ../../printer/main.pm:1
+#, c-format
+msgid " on Novell server \"%s\", printer \"%s\""
+msgstr " على خادم Novell \"%s\", الطابعة \"%s\""
+
+#: ../../printer/main.pm:1
+#, c-format
+msgid " on SMB/Windows server \"%s\", share \"%s\""
+msgstr "على خادم SMB/Windows \"%s\", المشاركة \"%s\""
+
+#: ../../printer/main.pm:1
+#, c-format
+msgid ", TCP/IP host \"%s\", port %s"
+msgstr ", مستضيف TCP/IP \"%s\", المنفذ \"%s\""
+
+#: ../../printer/main.pm:1
+#, c-format
+msgid " on LPD server \"%s\", printer \"%s\""
+msgstr "على خادم LPD \"%s\", الطابعة \"%s\""
+
+#: ../../printer/main.pm:1
+#, c-format
+msgid ", printing to %s"
+msgstr ", جاري الطباعة الى %s"
+
+#: ../../printer/main.pm:1
+#, c-format
+msgid ", multi-function device"
+msgstr ", جهاز متعدد الوظائف"
+
+#: ../../printer/main.pm:1
+#, c-format
+msgid ", multi-function device on HP JetDirect"
+msgstr ", جهاز متعدد الوظائف على HP JetDirect"
+
+#: ../../printer/main.pm:1
+#, c-format
+msgid ", multi-function device on USB"
+msgstr ", جهاز متعدد الوظائف على منفذ USB"
+
+#: ../../printer/main.pm:1
+#, c-format
+msgid ", multi-function device on parallel port \\#%s"
+msgstr ", جهاز متعدد الوظائف على المنفذ المتوازي \\#%s"
+
+#: ../../printer/main.pm:1
+#, c-format
+msgid ", USB printer"
+msgstr ", طابعة USB"
+
+#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
+#, c-format
+msgid ", USB printer \\#%s"
+msgstr ", طابعة USB \\#%s"
+
+#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
+#, c-format
+msgid " on parallel port \\#%s"
+msgstr " على المنفذ المتوازي \\#%s"
+
+#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Local Printers"
+msgstr "الطابعات المحلية"
+
+#: ../../printer/main.pm:1
+#, c-format
+msgid "Pipe job into a command"
+msgstr "حوّل الوظيفة الى الأمر"
+
+#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Enter a printer device URI"
+msgstr "أدخل URI الخاص بالطابعة"
+
+#: ../../printer/main.pm:1
+#, c-format
+msgid "Printer on NetWare server"
+msgstr "طابعة على خادم NetWare"
+
+#: ../../printer/main.pm:1
+#, c-format
+msgid "Printer on SMB/Windows 95/98/NT server"
+msgstr "طابعة على خادم SMB/Windows 95/98/NT"
+
+#: ../../printer/main.pm:1
+#, c-format
+msgid "Network printer (TCP/Socket)"
+msgstr "طابعة شبكة (TCP/Socket)"
+
+#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Printer on remote lpd server"
+msgstr "طابعة على خادم lpd بعيد"
+
+#: ../../printer/main.pm:1
+#, c-format
+msgid "Printer on remote CUPS server"
+msgstr "طابعة على خادم CUPS بعيد"
+
+#: ../../printer/main.pm:1
+#, c-format
+msgid "Remote printer"
+msgstr "طابعة بعيدة"
+
+#: ../../printer/main.pm:1
+#, c-format
+msgid "Local printer"
+msgstr "طابعة محلية"
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Configuring applications..."
+msgstr "جاري إعداد التطبيقات..."
+
+#: ../../printer/printerdrake.pm:1 ../../standalone/printerdrake:1
+#, c-format
+msgid "Printerdrake"
+msgstr "Printerdrake"
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Do you want to configure another printer?"
+msgstr "هل تريد تجربة إعداد طابعة أخرى؟"
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Removing printer \"%s\"..."
+msgstr "جاري ازالة الطابعة \"%s\" ..."
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Do you really want to remove the printer \"%s\"?"
+msgstr "هل تريد فعلاً حذف الطابعة \"%s\"؟"
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Remove printer"
+msgstr "احذف الطابعة"
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Know how to use this printer"
+msgstr "اعرف كيف تستخدم هذه الطابعة"
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Print test pages"
+msgstr "اطبع صفحات اختبارية"
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
msgid ""
-"If your printer is not listed, choose a compatible (see printer manual) or a "
-"similar one."
-msgstr ""
+"Failed to remove the printer \"%s\" from Star Office/OpenOffice.org/GIMP."
+msgstr "تعذر حذف الطابعة \"%s\" من Star Office/OpenOffice.org/GIMP."
-#: ../../printer/printerdrake.pm_.c:1697
-msgid "OKI winprinter configuration"
-msgstr "إعداد OKI WinPrinter"
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid ""
+"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org/"
+"GIMP."
+msgstr "تم حذف الطابعة \"%s\" من Star Office/OpenOffice.org/GIMP بنجاح."
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Removing printer from Star Office/OpenOffice.org/GIMP"
+msgstr "جاري حذف الطابعة من Star Office/OpenOffice.org/GIMP"
-#: ../../printer/printerdrake.pm_.c:1698
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Remove this printer from Star Office/OpenOffice.org/GIMP"
+msgstr "احذف هذه الطابعة من Star Office/OpenOffice.org/GIMP"
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org/GIMP."
+msgstr "تعذرت اضافة الطابعة \"%s\" الى Star Office/OpenOffice.org/GIMP."
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
msgid ""
-"You are configuring an OKI laser winprinter. These printers\n"
-"use a very special communication protocol and therefore they work only when "
-"connected to the first parallel port. When your printer is connected to "
-"another port or to a print server box please connect the printer to the "
-"first parallel port before you print a test page. Otherwise the printer will "
-"not work. Your connection type setting will be ignored by the driver."
-msgstr ""
+"The printer \"%s\" was successfully added to Star Office/OpenOffice.org/GIMP."
+msgstr "تمت اضافة الطابعة \"%s\" الى Star Office/OpenOffice.org/GIMP بنجاح."
-#: ../../printer/printerdrake.pm_.c:1718 ../../printer/printerdrake.pm_.c:1745
-msgid "Lexmark inkjet configuration"
-msgstr "إعداد Lexmark Inkjet"
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Adding printer to Star Office/OpenOffice.org/GIMP"
+msgstr "جاري اضافة الطابعة الى Star Office/OpenOffice.org/GIMP"
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Add this printer to Star Office/OpenOffice.org/GIMP"
+msgstr "أضف هذه الطابعة الى Star Office/OpenOffice.org/GIMP"
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "The printer \"%s\" is set as the default printer now."
+msgstr "تم تعيين الطابعة \"%s\" كطابعة افتراضية الآن."
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Default printer"
+msgstr "الطابعة الإفتراضية"
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Set this printer as the default"
+msgstr "عيّن هذه الطابعة كطابعة افتراضية"
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Printer options"
+msgstr "خيارات الطابعة"
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Printer manufacturer, model"
+msgstr "مصنّع الطابعة, الطراز"
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Printer manufacturer, model, driver"
+msgstr "مصنّع الطابعة, الطراز, المشغّل"
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Removing old printer \"%s\"..."
+msgstr "جاري ازالة الطابعة القديمة \"%s\" ..."
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Printer name, description, location"
+msgstr "اسم الطابعة, وصف, المكان"
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Printer connection type"
+msgstr "نوع وصلة الطابعة"
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Learn how to use this printer"
+msgstr "تعلم كيف تستخدم هذه الطابعة"
-#: ../../printer/printerdrake.pm_.c:1719
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Raw printer"
+msgstr "طابعة خام"
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Do it!"
+msgstr "افعلها!"
+
+#: ../../printer/printerdrake.pm:1 ../../standalone/drakTermServ:1
+#: ../../standalone/drakbackup:1 ../../standalone/drakbug:1
+#: ../../standalone/drakfont:1 ../../standalone/net_monitor:1
+#, c-format
+msgid "Close"
+msgstr "إغلاق"
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
msgid ""
-"The inkjet printer drivers provided by Lexmark only support local printers, "
-"no printers on remote machines or print server boxes. Please connect your "
-"printer to a local port or configure it on the machine where it is connected "
-"to."
+"Printer %s\n"
+"What do you want to modify on this printer?"
msgstr ""
+"الطابعة %s\n"
+"هل تريد تعديل تلك الطابعة؟"
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Modify printer configuration"
+msgstr "تعديل اعدادات الطابعة"
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Add a new printer"
+msgstr "أضف طابعة جديدة"
-#: ../../printer/printerdrake.pm_.c:1746
+#: ../../printer/printerdrake.pm:1 ../../standalone/drakconnect:1
+#, c-format
+msgid "Normal Mode"
+msgstr "وضع عادي"
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Change the printing system"
+msgstr "تغيير نظام الطباعة"
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Printer sharing"
+msgstr "مشاركة الطابعات"
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "CUPS configuration"
+msgstr "CUPS تهيئة"
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Refresh printer list (to display all available remote CUPS printers)"
+msgstr "أعد تحميل قائمة الطابعات (لعرض كل طابعات CUPS البعيدة المتوفرة)"
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
msgid ""
-"To be able to print with your Lexmark inkjet and this configuration, you "
-"need the inkjet printer drivers provided by Lexmark (http://www.lexmark."
-"com/). Click on the \"Drivers\" link. Then choose your model and afterwards "
-"\"Linux\" as operating system. The drivers come as RPM packages or shell "
-"scripts with interactive graphical installation. You do not need to do this "
-"configuration by the graphical frontends. Cancel directly after the license "
-"agreement. Then print printhead alignment pages with \"lexmarkmaintain\" and "
-"adjust the head alignment settings with this program."
+"The following printers are configured. Double-click on a printer to change "
+"its settings; to make it the default printer; or to view information about "
+"it."
msgstr ""
+"تمت تهيئة الطابعات الآتية. انقر نقرة مزدوجة على الطابعة لتغيير اعداداتها "
+"لجعلها طابعة افتراضية أو لرؤية معلومات حولها."
-#: ../../printer/printerdrake.pm_.c:1749
-msgid "GDI Laser Printer using the Zenographics ZJ-Stream Format"
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid ""
+"The following printers are configured. Double-click on a printer to change "
+"its settings; to make it the default printer; to view information about it; "
+"or to make a printer on a remote CUPS server available for Star Office/"
+"OpenOffice.org/GIMP."
msgstr ""
+"تمت تهيئة الطابعات الآتية. انقر نقرة مزدوجة على الطابعة لتغيير اعداداتها "
+"لجعلها طابعة افتراضية أو لرؤية معلومات حولها أو لجعل اطابعة على خادم CUPS "
+"البعيد متوفرة لـStar Office/OpenOffice.org/GIMP."
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Printing system: "
+msgstr "نظام الطباعة: "
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Would you like to configure printing?"
+msgstr "هل تريد تهيئة الطباعة؟"
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Preparing Printerdrake..."
+msgstr "جاري تجهيز Printerdrake..."
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Checking installed software..."
+msgstr "جاري التأكد من البرامج المثبّتة..."
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Installing Foomatic..."
+msgstr "جاري تثبيت Foomatic..."
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Failed to configure printer \"%s\"!"
+msgstr "تعذرت تهيئة الطابعة \"%s\"!"
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Configuring printer \"%s\"..."
+msgstr "جاري إعداد الطابعة \"%s\" ..."
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Reading printer data..."
+msgstr "جاري قراءة بيانات الطابعة..."
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Which printing system (spooler) do you want to use?"
+msgstr "أي نظام طباعة تريد أن تستخدم؟"
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Select Printer Spooler"
+msgstr "اختر Printer Spooler"
-#: ../../printer/printerdrake.pm_.c:1750
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Installing %s ..."
+msgstr "جاري تثبيت %s ..."
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Removing %s ..."
+msgstr "جاري حذف %s ..."
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
msgid ""
-"Your printer belongs to the group of GDI laser printers (winprinters) sold "
-"by different manufacturers which uses the Zenographics ZJ-stream raster "
-"format for the data sent to the printer. The driver for these printers is "
-"still in a very early development stage and so it will perhaps not always "
-"work properly. Especially it is possible that the printer only works when "
-"you choose the A4 paper size.\n"
-"\n"
-"Some of these printers, as the HP LaserJet 1000, for which this driver was "
-"originally created, need their firmware to be uploaded to them after they "
-"are turned on. In the case of the HP LaserJet 1000 you have to search the "
-"printer's Windows driver CD or your Windows partition for the file "
-"\"sihp1000.img\" and upload the file to the printer with one of the "
-"following commands:\n"
+"The printing system (%s) will not be started automatically when the machine "
+"is booted.\n"
"\n"
-" lpr -o raw sihp1000.img\n"
-" cat sihp1000.img > /dev/usb/lp0\n"
+"It is possible that the automatic starting was turned off by changing to a "
+"higher security level, because the printing system is a potential point for "
+"attacks.\n"
"\n"
-"The first command can be given by any normal user, the second must be given "
-"as root. After having done so you can print normally.\n"
+"Do you want to have the automatic starting of the printing system turned on "
+"again?"
msgstr ""
+"نظام الطباعة (%s) لن يتم بدؤه بشكل آلي عند بدء تشغيل الماكينة.\n"
+"\n"
+"من الممكن أن يكون قد تم تعطيل البدء الآلي بسبب التغيير الى مستوى أعلى لأن "
+"نظام الطباعة قد يكون نقطة مبدئية لهجمات المخترقين.\n"
+"\n"
+"هل تريد تمكين البدء الآلي لنظام الطباعة عند بدء التشغيل مرة أخرى؟"
-#: ../../printer/printerdrake.pm_.c:1972
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Starting the printing system at boot time"
+msgstr "بدء نظام الطباعة عند الإقلاع"
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
msgid ""
-"Printer default settings\n"
+"You are about to install the printing system %s on a system running in the %"
+"s security level.\n"
"\n"
-"You should make sure that the page size and the ink type/printing mode (if "
-"available) and also the hardware configuration of laser printers (memory, "
-"duplex unit, extra trays) are set correctly. Note that with a very high "
-"printout quality/resolution printing can get substantially slower."
+"This printing system runs a daemon (background process) which waits for "
+"print jobs and handles them. This daemon is also accessable by remote "
+"machines through the network and so it is a possible point for attacks. "
+"Therefore only a few selected daemons are started by default in this "
+"security level.\n"
+"\n"
+"Do you really want to configure printing on this machine?"
msgstr ""
+"أنت على وشك تثبيت نظام الطباعة %s على نظام يعمل على المستوى الأمني %s.\n"
+"نظام الطباعة يشغّل مراقب (عملية خلفية) يقوم بانتظار وظائف الطباعة و يتعامل "
+"معها. هذا المراقب يمكن الوصول اليه عن من قِبل الماكينات البعيدة على الشبكة و "
+"لذا فقد يمكن أن يكون نقطة مبدئية لهجمات المخترقين. لهذا يتم اختيار القليل من "
+"المراقبات لتشغيلها افتراضياً على هذا المستوى الأمني.\n"
+"\n"
+"هل تريد فعلاً تهيئة الطباعة على هذه الماكينة؟"
-#: ../../printer/printerdrake.pm_.c:1981
+#: ../../printer/printerdrake.pm:1
#, c-format
-msgid "Option %s must be an integer number!"
-msgstr ""
+msgid "Installing a printing system in the %s security level"
+msgstr "جاري تثبيت نظام طباعة في مستوى الأمن %s"
-#: ../../printer/printerdrake.pm_.c:1985
+#: ../../printer/printerdrake.pm:1
#, c-format
-msgid "Option %s must be a number!"
-msgstr ""
+msgid "paranoid"
+msgstr "مرتفع بجنون"
-#: ../../printer/printerdrake.pm_.c:1989
+#: ../../printer/printerdrake.pm:1
#, c-format
-msgid "Option %s out of range!"
-msgstr ""
+msgid "high"
+msgstr "مرتفع"
-#: ../../printer/printerdrake.pm_.c:2028
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Restarting printing system..."
+msgstr "جاري اعادة تشغيل نظام الطباعة..."
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Configuration of a remote printer"
+msgstr "تهيئة طابعة بعيدة"
+
+#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
-"Do you want to set this printer (\"%s\")\n"
-"as the default printer?"
+"The network access was not running and could not be started. Please check "
+"your configuration and your hardware. Then try to configure your remote "
+"printer again."
msgstr ""
-"هل تريد تعيين هذه الطابعة (\"%s\")\n"
-"كطابعة افتراضية؟"
+"الوصول الى الشبكة لا يعمل و لم يمكن بدؤه. فضلاً تأكد من التهيئة لديك و العتاد "
+"الخاص بك. ثم حاول تهيئة الطابعة البعيدة مرة أخرى."
-#: ../../printer/printerdrake.pm_.c:2051
-msgid "Test pages"
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid ""
+"The network configuration done during the installation cannot be started "
+"now. Please check whether the network is accessable after booting your "
+"system and correct the configuration using the Mandrake Control Center, "
+"section \"Network & Internet\"/\"Connection\", and afterwards set up the "
+"printer, also using the Mandrake Control Center, section \"Hardware\"/"
+"\"Printer\""
msgstr ""
+"لا يمكن بدء تهيئة الشبكة التي تم عملها أثناء التثبيت الآن. فضلاً تأكد اذا كان "
+"يمكن الوصول الى الشبكة بعد اقلاع النظام و صحّح التهيئة باستخدام مركز تحكم "
+"Mandrake في قسم \"الشبكة و الإنترنت\"/\"الوصلات\", و بعد ذلك قم بتهيئة "
+"الطابعة, كذلك باستخدام مركز تحكم Mandrake في قسم \"العتاد\"/\"الطابعة\""
-#: ../../printer/printerdrake.pm_.c:2052
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Configure the network now"
+msgstr "قم بتهيئة الشبكة"
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Go on without configuring the network"
+msgstr "تابع دون تهيئة الشبكة"
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
msgid ""
-"Please select the test pages you want to print.\n"
-"Note: the photo test page can take a rather long time to get printed and on "
-"laser printers with too low memory it can even not come out. In most cases "
-"it is enough to print the standard test page."
+"You are going to configure a remote printer. This needs working network "
+"access, but your network is not configured yet. If you go on without network "
+"configuration, you will not be able to use the printer which you are "
+"configuring now. How do you want to proceed?"
msgstr ""
+"أنت على وشك تهيئة طابعة بعيدة. هذا يحتاج الى أن تكون وصلة الشبكة تعمل و لكن "
+"الشبكة لم يتم اعدادها حتى الآن. اذا كنت تريد المتابعة دون تهيئة الشبكة, "
+"ستكون قادراً على استخدام الطابعة التي تقةم بتهيئتها الآن. كيف تريد المتابعة؟"
-#: ../../printer/printerdrake.pm_.c:2056
-msgid "No test pages"
-msgstr ""
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Network functionality not configured"
+msgstr "لم يتم تحديد وظيفية الشبكة"
-#: ../../printer/printerdrake.pm_.c:2057
-msgid "Print"
-msgstr "إطبع"
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Starting network..."
+msgstr "جاري بدء الشبكة..."
-#: ../../printer/printerdrake.pm_.c:2114
-msgid "Standard test page"
-msgstr ""
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Refreshing printer data..."
+msgstr "جاري اعادة تحميل بيانات الطابة..."
-#: ../../printer/printerdrake.pm_.c:2117
-msgid "Alternative test page (Letter)"
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid ""
+"You have transferred your former default printer (\"%s\"), Should it be also "
+"the default printer under the new printing system %s?"
msgstr ""
+"لقد قمت بنقل الطابعة الإفتراضية السابقة (\"%s\"), هل يجب أيضاً أن تكون "
+"الطابعة الإفتراضية تحت نظام الطباعة الجديد %s؟"
-#: ../../printer/printerdrake.pm_.c:2120
-msgid "Alternative test page (A4)"
-msgstr ""
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Transfer printer configuration"
+msgstr "نقل إعدادات الطابعة"
-#: ../../printer/printerdrake.pm_.c:2122
-msgid "Photo test page"
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Transferring %s..."
+msgstr "جاري نقل %s..."
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "New printer name"
+msgstr "اسم الطابعة الجديدة"
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid ""
+"The printer \"%s\" already exists,\n"
+"do you really want to overwrite its configuration?"
msgstr ""
+"الطابعة \"%s\" موجودة مسبقاً,\n"
+"هل تريد فعلاً الكتابة فوق التهيئة الخاصة بها؟"
-#: ../../printer/printerdrake.pm_.c:2126
-msgid "Do not print any test page"
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Name of printer should contain only letters, numbers and the underscore"
+msgstr "اسم الطابعة يجب أن يحتوي فقط على حروف و أرقام و شارطات تحتية"
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Transfer"
+msgstr "انقل"
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid ""
+"A printer named \"%s\" already exists under %s. \n"
+"Click \"Transfer\" to overwrite it.\n"
+"You can also type a new name or skip this printer."
msgstr ""
+"الطابعة المسماة \"%s\" موجودة مسبقا تحت %s. \n"
+"انقر \"انقل\" للكتابة فوقه.\n"
+"يمكنك كذلك كتابة اسم جديد أو تحطي هذه الطابعة."
-#: ../../printer/printerdrake.pm_.c:2134 ../../printer/printerdrake.pm_.c:2285
-msgid "Printing test page(s)..."
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Do not transfer printers"
+msgstr "لا تنقل الطابعات"
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid ""
+"\n"
+"Mark the printers which you want to transfer and click \n"
+"\"Transfer\"."
msgstr ""
+"\n"
+"علّم على الطابعات التي تريد نقلها ثم انقر \n"
+"\"انقل\"."
-#: ../../printer/printerdrake.pm_.c:2159
+#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
-"Test page(s) have been sent to the printer.\n"
-"It may take some time before the printer starts.\n"
-"Printing status:\n"
-"%s\n"
"\n"
+"Also printers configured with the PPD files provided by their manufacturers "
+"or with native CUPS drivers cannot be transferred."
msgstr ""
+"\n"
+"أيضاً الطابعات المهيئة بملفات PPD من مصنّعيها أو بمشغلات CUPS الخاصة بها لا "
+"يمكن نقلها."
-#: ../../printer/printerdrake.pm_.c:2163
+#: ../../printer/printerdrake.pm:1
+#, c-format
msgid ""
-"Test page(s) have been sent to the printer.\n"
-"It may take some time before the printer starts.\n"
+"In addition, queues not created with this program or \"foomatic-configure\" "
+"cannot be transferred."
msgstr ""
+"بالإضافة الى ذلك, فإن الصفوف التي لم يتم عملها بهذا البرنامح أو \"foomatic-"
+"configure\" لا يمكن نقلها."
-#: ../../printer/printerdrake.pm_.c:2170
-msgid "Did it work properly?"
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "LPD and LPRng do not support IPP printers.\n"
+msgstr "LPD و LPRng لا تدعم طابعات IPP.\n"
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid ""
+"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
+"printers.\n"
msgstr ""
+"PDQ يدعم فقط الطابعات المحلية و طابعات LPD البعيدة و طابعات Socket/TCP.\n"
-#: ../../printer/printerdrake.pm_.c:2190 ../../printer/printerdrake.pm_.c:3229
-msgid "Raw printer"
-msgstr "طابعة خام"
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid ""
+"CUPS does not support printers on Novell servers or printers sending the "
+"data into a free-formed command.\n"
+msgstr ""
+"CUPS لا يدعم الطابعات على أجهزة Novell الخادمة أو الطابعات التي ترسل "
+"البيانات الى أمر حر.\n"
-#: ../../printer/printerdrake.pm_.c:2216
+#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
-"To print a file from the command line (terminal window) you can either use "
-"the command \"%s <file>\" or a graphical printing tool: \"xpp <file>\" or "
-"\"kprinter <file>\". The graphical tools allow you to choose the printer and "
-"to modify the option settings easily.\n"
+"You can copy the printer configuration which you have done for the spooler %"
+"s to %s, your current spooler. All the configuration data (printer name, "
+"description, location, connection type, and default option settings) is "
+"overtaken, but jobs will not be transferred.\n"
+"Not all queues can be transferred due to the following reasons:\n"
msgstr ""
+"يمكنك نقل تهيئة الطابعة التي تم عملها للـSpooler %s الى %s, الـspooler "
+"الحالي. كل بيانات التهيئة (اسم الطابعة, الوصف, المكان, نوع الوصلة, و خيارات "
+"الإعداد الإفتراضي) يتم أخذها, لكن لن يتم نقل الوظائف.\n"
+"لا يمكن نقل كل الصفوف للأسباب التالية:\n"
-#: ../../printer/printerdrake.pm_.c:2218
+#: ../../printer/printerdrake.pm:1
+#, c-format
msgid ""
-"These commands you can also use in the \"Printing command\" field of the "
-"printing dialogs of many applications, but here do not supply the file name "
-"because the file to print is provided by the application.\n"
+"Your printer was configured automatically to give you access to the photo "
+"card drives from your PC. Now you can access your photo cards using the "
+"graphical program \"MtoolsFM\" (Menu: \"Applications\" -> \"File tools\" -> "
+"\"MTools File Manager\") or the command line utilities \"mtools\" (enter "
+"\"man mtools\" on the command line for more info). You find the card's file "
+"system under the drive letter \"p:\", or subsequent drive letters when you "
+"have more than one HP printer with photo card drives. In \"MtoolsFM\" you "
+"can switch between drive letters with the field at the upper-right corners "
+"of the file lists."
msgstr ""
-#: ../../printer/printerdrake.pm_.c:2221 ../../printer/printerdrake.pm_.c:2238
-#: ../../printer/printerdrake.pm_.c:2248
+#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
+"Your multi-function device was configured automatically to be able to scan. "
+"Now you can scan with \"scanimage\" (\"scanimage -d hp:%s\" to specify the "
+"scanner when you have more than one) from the command line or with the "
+"graphical interfaces \"xscanimage\" or \"xsane\". If you are using the GIMP, "
+"you can also scan by choosing the appropriate point in the \"File\"/\"Acquire"
+"\" menu. Call also \"man scanimage\" on the command line to get more "
+"information.\n"
"\n"
-"The \"%s\" command also allows to modify the option settings for a "
-"particular printing job. Simply add the desired settings to the command "
-"line, e. g. \"%s <file>\". "
+"Do not use \"scannerdrake\" for this device!"
msgstr ""
-#: ../../printer/printerdrake.pm_.c:2224 ../../printer/printerdrake.pm_.c:2264
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Printing test page(s)..."
+msgstr "جاري طباعة الصفحات الإختبارية..."
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Print option list"
+msgstr "قائمة خيارات الطابعة"
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Printing on the printer \"%s\""
+msgstr "جاري الطباعة على الطابعة \"%s\""
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Printing/Photo Card Access on \"%s\""
+msgstr "Printing/Photo Card Access on \"%s\""
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Printing/Scanning on \"%s\""
+msgstr "جاري الطباعة/المسح على \"%s\""
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Printing/Scanning/Photo Cards on \"%s\""
+msgstr "Printing/Scanning/Photo Cards on \"%s\""
+
+#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"To know about the options available for the current printer read either the "
"list shown below or click on the \"Print option list\" button.%s%s\n"
"\n"
msgstr ""
+"للمعرفة حول الخيارات المتوفرة للطابعة الحالية, إما أن تقرأ القائمة أدناه و "
+"انقر \"قائمة خيارات الطابعة\".%s%s\n"
+"\n"
-#: ../../printer/printerdrake.pm_.c:2228
+#: ../../printer/printerdrake.pm:1
+#, c-format
msgid ""
-"Here is a list of the available printing options for the current printer:\n"
"\n"
+"The \"%s\" and \"%s\" commands also allow to modify the option settings for "
+"a particular printing job. Simply add the desired settings to the command "
+"line, e. g. \"%s <file>\".\n"
msgstr ""
+"\n"
+"الأوامر \"%s\" و \"%s\" تسمح لك بتعديل اعدادات الخيارات لوظيفة طباعة محددة. "
+"ببساطة قم بإضافة الإعداد المطلوب الى سطر الآوامر, مثال \"%s <file>\".\n"
-#: ../../printer/printerdrake.pm_.c:2233 ../../printer/printerdrake.pm_.c:2243
+#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
-"To print a file from the command line (terminal window) use the command \"%s "
-"<file>\".\n"
+"You can also use the graphical interface \"xpdq\" for setting options and "
+"handling printing jobs.\n"
+"If you are using KDE as desktop environment you have a \"panic button\", an "
+"icon on the desktop, labeled with \"STOP Printer!\", which stops all print "
+"jobs immediately when you click it. This is for example useful for paper "
+"jams.\n"
msgstr ""
-#: ../../printer/printerdrake.pm_.c:2235 ../../printer/printerdrake.pm_.c:2245
-#: ../../printer/printerdrake.pm_.c:2255
+#: ../../printer/printerdrake.pm:1
+#, c-format
msgid ""
"This command you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications. But here do not supply the file name "
"because the file to print is provided by the application.\n"
msgstr ""
-#: ../../printer/printerdrake.pm_.c:2240 ../../printer/printerdrake.pm_.c:2250
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid ""
+"To print a file from the command line (terminal window) use the command \"%s "
+"<file>\" or \"%s <file>\".\n"
+msgstr ""
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
msgid ""
"To get a list of the options available for the current printer click on the "
"\"Print option list\" button."
msgstr ""
-#: ../../printer/printerdrake.pm_.c:2253
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid ""
+"\n"
+"The \"%s\" command also allows to modify the option settings for a "
+"particular printing job. Simply add the desired settings to the command "
+"line, e. g. \"%s <file>\". "
+msgstr ""
+
+#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
-"<file>\" or \"%s <file>\".\n"
+"<file>\".\n"
msgstr ""
-#: ../../printer/printerdrake.pm_.c:2257
+#: ../../printer/printerdrake.pm:1
+#, c-format
msgid ""
-"You can also use the graphical interface \"xpdq\" for setting options and "
-"handling printing jobs.\n"
-"If you are using KDE as desktop environment you have a \"panic button\", an "
-"icon on the desktop, labeled with \"STOP Printer!\", which stops all print "
-"jobs immediately when you click it. This is for example useful for paper "
-"jams.\n"
+"Here is a list of the available printing options for the current printer:\n"
+"\n"
msgstr ""
-#: ../../printer/printerdrake.pm_.c:2261
+#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
+"These commands you can also use in the \"Printing command\" field of the "
+"printing dialogs of many applications, but here do not supply the file name "
+"because the file to print is provided by the application.\n"
+msgstr ""
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid ""
+"To print a file from the command line (terminal window) you can either use "
+"the command \"%s <file>\" or a graphical printing tool: \"xpp <file>\" or "
+"\"kprinter <file>\". The graphical tools allow you to choose the printer and "
+"to modify the option settings easily.\n"
+msgstr ""
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Did it work properly?"
+msgstr "هل عملت بالشكل الصحيح؟"
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid ""
+"Test page(s) have been sent to the printer.\n"
+"It may take some time before the printer starts.\n"
+msgstr ""
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid ""
+"Test page(s) have been sent to the printer.\n"
+"It may take some time before the printer starts.\n"
+"Printing status:\n"
+"%s\n"
"\n"
-"The \"%s\" and \"%s\" commands also allow to modify the option settings for "
-"a particular printing job. Simply add the desired settings to the command "
-"line, e. g. \"%s <file>\".\n"
msgstr ""
-#: ../../printer/printerdrake.pm_.c:2271
-#, fuzzy, c-format
-msgid "Printing/Scanning/Photo Cards on \"%s\""
-msgstr "جاري الطباعة/المسح على \"%s\""
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Do not print any test page"
+msgstr "لا تطبع أي صفحات اختبارية"
-#: ../../printer/printerdrake.pm_.c:2272
+#: ../../printer/printerdrake.pm:1
#, c-format
-msgid "Printing/Scanning on \"%s\""
-msgstr "جاري الطباعة/المسح على \"%s\""
+msgid "Photo test page"
+msgstr "صفحة اختبارية لصورة"
-#: ../../printer/printerdrake.pm_.c:2274
-#, fuzzy, c-format
-msgid "Printing/Photo Card Access on \"%s\""
-msgstr "جاري الطباعة/المسح على \"%s\""
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Alternative test page (A4)"
+msgstr "صفحة اختبارية بديلة (A4)"
-#: ../../printer/printerdrake.pm_.c:2275
+#: ../../printer/printerdrake.pm:1
#, c-format
-msgid "Printing on the printer \"%s\""
-msgstr "جاري الطباعة على الطابعة \"%s\""
+msgid "Alternative test page (Letter)"
+msgstr "صفحة اختبارية بديلة (Letter)"
-#: ../../printer/printerdrake.pm_.c:2278 ../../printer/printerdrake.pm_.c:2281
-#: ../../printer/printerdrake.pm_.c:2282 ../../printer/printerdrake.pm_.c:2283
-#: ../../printer/printerdrake.pm_.c:3216 ../../standalone/drakTermServ_.c:307
-#: ../../standalone/drakbackup_.c:1533 ../../standalone/drakbackup_.c:4156
-#: ../../standalone/drakbug_.c:108 ../../standalone/drakfont_.c:695
-#: ../../standalone/drakfont_.c:956 ../../standalone/net_monitor_.c:118
-msgid "Close"
-msgstr "إغلاق"
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Standard test page"
+msgstr "صفحة اختبارية قياسية"
-#: ../../printer/printerdrake.pm_.c:2281
-msgid "Print option list"
-msgstr "قائمة خيارات الطابعة"
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Print"
+msgstr "إطبع"
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "No test pages"
+msgstr "لا صفحات اختبارية"
-#: ../../printer/printerdrake.pm_.c:2301
+#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
-"Your multi-function device was configured automatically to be able to scan. "
-"Now you can scan with \"scanimage\" (\"scanimage -d hp:%s\" to specify the "
-"scanner when you have more than one) from the command line or with the "
-"graphical interfaces \"xscanimage\" or \"xsane\". If you are using the GIMP, "
-"you can also scan by choosing the appropriate point in the \"File\"/\"Acquire"
-"\" menu. Call also \"man scanimage\" on the command line to get more "
-"information.\n"
-"\n"
-"Do not use \"scannerdrake\" for this device!"
+"Please select the test pages you want to print.\n"
+"Note: the photo test page can take a rather long time to get printed and on "
+"laser printers with too low memory it can even not come out. In most cases "
+"it is enough to print the standard test page."
msgstr ""
-#: ../../printer/printerdrake.pm_.c:2322
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Test pages"
+msgstr "صفحات اختبارية"
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
msgid ""
-"Your printer was configured automatically to give you access to the photo "
-"card drives from your PC. Now you can access your photo cards using the "
-"graphical program \"MtoolsFM\" (Menu: \"Applications\" -> \"File tools\" -> "
-"\"MTools File Manager\") or the command line utilities \"mtools\" (enter "
-"\"man mtools\" on the command line for more info). You find the card's file "
-"system under the drive letter \"p:\", or subsequent drive letters when you "
-"have more than one HP printer with photo card drives. In \"MtoolsFM\" you "
-"can switch between drive letters with the field at the upper-right corners "
-"of the file lists."
+"Do you want to set this printer (\"%s\")\n"
+"as the default printer?"
msgstr ""
+"هل تريد تعيين هذه الطابعة (\"%s\")\n"
+"كطابعة افتراضية؟"
-#: ../../printer/printerdrake.pm_.c:2344 ../../printer/printerdrake.pm_.c:2702
-#: ../../printer/printerdrake.pm_.c:2990
-msgid "Reading printer data..."
-msgstr ""
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Option %s out of range!"
+msgstr "الخيار %s خارج المتوسط!"
-#: ../../printer/printerdrake.pm_.c:2364 ../../printer/printerdrake.pm_.c:2391
-#: ../../printer/printerdrake.pm_.c:2426
-msgid "Transfer printer configuration"
-msgstr "نقل إعدادات الطابعة"
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Option %s must be a number!"
+msgstr "الخيار %s يجب أن يكون رقماً!"
-#: ../../printer/printerdrake.pm_.c:2365
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Option %s must be an integer number!"
+msgstr "الخيار %s يجب أن يكون رقما صحيحاً!"
+
+#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
-"You can copy the printer configuration which you have done for the spooler %"
-"s to %s, your current spooler. All the configuration data (printer name, "
-"description, location, connection type, and default option settings) is "
-"overtaken, but jobs will not be transferred.\n"
-"Not all queues can be transferred due to the following reasons:\n"
+"Printer default settings\n"
+"\n"
+"You should make sure that the page size and the ink type/printing mode (if "
+"available) and also the hardware configuration of laser printers (memory, "
+"duplex unit, extra trays) are set correctly. Note that with a very high "
+"printout quality/resolution printing can get substantially slower."
msgstr ""
-#: ../../printer/printerdrake.pm_.c:2368
+#: ../../printer/printerdrake.pm:1
+#, c-format
msgid ""
-"CUPS does not support printers on Novell servers or printers sending the "
-"data into a free-formed command.\n"
+"Your printer belongs to the group of GDI laser printers (winprinters) sold "
+"by different manufacturers which uses the Zenographics ZJ-stream raster "
+"format for the data sent to the printer. The driver for these printers is "
+"still in a very early development stage and so it will perhaps not always "
+"work properly. Especially it is possible that the printer only works when "
+"you choose the A4 paper size.\n"
+"\n"
+"Some of these printers, as the HP LaserJet 1000, for which this driver was "
+"originally created, need their firmware to be uploaded to them after they "
+"are turned on. In the case of the HP LaserJet 1000 you have to search the "
+"printer's Windows driver CD or your Windows partition for the file "
+"\"sihp1000.img\" and upload the file to the printer with one of the "
+"following commands:\n"
+"\n"
+" lpr -o raw sihp1000.img\n"
+" cat sihp1000.img > /dev/usb/lp0\n"
+"\n"
+"The first command can be given by any normal user, the second must be given "
+"as root. After having done so you can print normally.\n"
msgstr ""
-#: ../../printer/printerdrake.pm_.c:2370
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "GDI Laser Printer using the Zenographics ZJ-Stream Format"
+msgstr "GDI Laser Printer using the Zenographics ZJ-Stream Format"
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
msgid ""
-"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
-"printers.\n"
+"To be able to print with your Lexmark inkjet and this configuration, you "
+"need the inkjet printer drivers provided by Lexmark (http://www.lexmark."
+"com/). Click on the \"Drivers\" link. Then choose your model and afterwards "
+"\"Linux\" as operating system. The drivers come as RPM packages or shell "
+"scripts with interactive graphical installation. You do not need to do this "
+"configuration by the graphical frontends. Cancel directly after the license "
+"agreement. Then print printhead alignment pages with \"lexmarkmaintain\" and "
+"adjust the head alignment settings with this program."
msgstr ""
-#: ../../printer/printerdrake.pm_.c:2372
-msgid "LPD and LPRng do not support IPP printers.\n"
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Lexmark inkjet configuration"
+msgstr "إعداد Lexmark Inkjet"
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid ""
+"The inkjet printer drivers provided by Lexmark only support local printers, "
+"no printers on remote machines or print server boxes. Please connect your "
+"printer to a local port or configure it on the machine where it is connected "
+"to."
msgstr ""
-#: ../../printer/printerdrake.pm_.c:2374
+#: ../../printer/printerdrake.pm:1
+#, c-format
msgid ""
-"In addition, queues not created with this program or \"foomatic-configure\" "
-"cannot be transferred."
+"You are configuring an OKI laser winprinter. These printers\n"
+"use a very special communication protocol and therefore they work only when "
+"connected to the first parallel port. When your printer is connected to "
+"another port or to a print server box please connect the printer to the "
+"first parallel port before you print a test page. Otherwise the printer will "
+"not work. Your connection type setting will be ignored by the driver."
msgstr ""
-#: ../../printer/printerdrake.pm_.c:2375
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "OKI winprinter configuration"
+msgstr "إعداد OKI WinPrinter"
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
msgid ""
-"\n"
-"Also printers configured with the PPD files provided by their manufacturers "
-"or with native CUPS drivers cannot be transferred."
+"If your printer is not listed, choose a compatible (see printer manual) or a "
+"similar one."
msgstr ""
-#: ../../printer/printerdrake.pm_.c:2376
+#: ../../printer/printerdrake.pm:1
+#, c-format
msgid ""
"\n"
-"Mark the printers which you want to transfer and click \n"
-"\"Transfer\"."
+"\n"
+"Please check whether Printerdrake did the auto-detection of your printer "
+"model correctly. Find the correct model in the list when a wrong model or "
+"\"Raw printer\" is highlighted."
msgstr ""
-#: ../../printer/printerdrake.pm_.c:2379
-msgid "Do not transfer printers"
-msgstr ""
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Which printer model do you have?"
+msgstr "ما هو نوع الطابعة لديك؟"
-#: ../../printer/printerdrake.pm_.c:2380 ../../printer/printerdrake.pm_.c:2396
-msgid "Transfer"
-msgstr ""
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Printer model selection"
+msgstr "إختيار وحدات الطابعة"
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Reading printer database..."
+msgstr "جاري قراءة قاعدة بيانات الطابعات..."
-#: ../../printer/printerdrake.pm_.c:2392
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Select model manually"
+msgstr "تم اختيار النّموذج يدويًّا"
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "The model is correct"
+msgstr "الطراز غير صحيح"
+
+#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
-"A printer named \"%s\" already exists under %s. \n"
-"Click \"Transfer\" to overwrite it.\n"
-"You can also type a new name or skip this printer."
+"Printerdrake has compared the model name resulting from the printer auto-"
+"detection with the models listed in its printer database to find the best "
+"match. This choice can be wrong, especially when your printer is not listed "
+"at all in the database. So check whether the choice is correct and click "
+"\"The model is correct\" if so and if not, click \"Select model manually\" "
+"so that you can choose your printer model manually on the next screen.\n"
+"\n"
+"For your printer Printerdrake has found:\n"
+"\n"
+"%s"
msgstr ""
-#: ../../printer/printerdrake.pm_.c:2400
-msgid "Name of printer should contain only letters, numbers and the underscore"
-msgstr ""
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Your printer model"
+msgstr "طراز الطابعة الخاصة بك"
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Preparing printer database..."
+msgstr "جاري تحضير قاعدة بيانات الطابعات..."
-#: ../../printer/printerdrake.pm_.c:2405
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Location"
+msgstr "المكان"
+
+#: ../../printer/printerdrake.pm:1 ../../standalone/harddrake2:1
+#, c-format
+msgid "Description"
+msgstr "الوصف"
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Name of printer"
+msgstr "اسم الطابعة"
+
+#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
-"The printer \"%s\" already exists,\n"
-"do you really want to overwrite its configuration?"
+"Every printer needs a name (for example \"printer\"). The Description and "
+"Location fields do not need to be filled in. They are comments for the users."
msgstr ""
+"كل طابعة تحتاج الى اسم (مثال \"printer\"). حقول الوصف و المكان ليس من "
+"الضروري ملؤها. انها مجرد ملاحظات للمستخدمين."
-#: ../../printer/printerdrake.pm_.c:2413
-msgid "New printer name"
-msgstr ""
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Enter Printer Name and Comments"
+msgstr "أدخل اسم الطابعة و التعليقات"
-#: ../../printer/printerdrake.pm_.c:2416
+#: ../../printer/printerdrake.pm:1
#, c-format
-msgid "Transferring %s..."
-msgstr ""
+msgid "Making printer port available for CUPS..."
+msgstr "جاري جعل منفذ الطابعة متوفراً لـCUPS..."
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Photo memory card access on your HP multi-function device"
+msgstr "الوصول الى بطاقة الذاكرة على جهاز HP متعدد الوظائف"
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Scanning on your HP multi-function device"
+msgstr "جاري المسح على جهاز HP متعدد الوظائف"
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Installing mtools packages..."
+msgstr "جاري تثبيت حزم mtools"
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Installing SANE packages..."
+msgstr "جاري تثبيت حزم SANE..."
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Checking device and configuring HPOJ..."
+msgstr "جاري التأكد من الجهاز و تهيئة HPOJ..."
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Installing HPOJ package..."
+msgstr "جاري تهيئة حزمة HPOJ..."
-#: ../../printer/printerdrake.pm_.c:2427
+#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
-"You have transferred your former default printer (\"%s\"), Should it be also "
-"the default printer under the new printing system %s?"
+"Is your printer a multi-function device from HP or Sony (OfficeJet, PSC, "
+"LaserJet 1100/1200/1220/3200/3300 with scanner, Sony IJP-V100), an HP "
+"PhotoSmart or an HP LaserJet 2200?"
msgstr ""
+"اذا كانت طابعتك جهازاً متعدد الوظائف من HP أو Sony (OfficeJet, PSC, LaserJet "
+"1100/1200/1220/3200/3300 مع ماسح ضوئي, Sony IPJ-V100) أو جهاز HP PhotoSmart "
+"أو HP LaserJet 2200?"
-#: ../../printer/printerdrake.pm_.c:2437
-msgid "Refreshing printer data..."
-msgstr ""
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "A command line must be entered!"
+msgstr "يجب ادخال سطر أوامر"
-#: ../../printer/printerdrake.pm_.c:2445 ../../printer/printerdrake.pm_.c:2516
-#: ../../printer/printerdrake.pm_.c:2528
-msgid "Configuration of a remote printer"
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Command line"
+msgstr "سطر الأوامر"
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid ""
+"Here you can specify any arbitrary command line into which the job should be "
+"piped instead of being sent directly to a printer."
msgstr ""
+"هنا يمكنك تحديد أي أمر هلامي يمكن تحويل وظيفة الطباعة اليه بدلاً من ارسالها "
+"مباشرةً الى الطابعة."
-#: ../../printer/printerdrake.pm_.c:2446
-msgid "Starting network..."
-msgstr "جاري بدء الشبكة..."
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Pipe into command"
+msgstr "حول الى الأمر"
-#: ../../printer/printerdrake.pm_.c:2479 ../../printer/printerdrake.pm_.c:2483
-#: ../../printer/printerdrake.pm_.c:2485
-msgid "Configure the network now"
-msgstr ""
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Detected model: %s %s"
+msgstr "تم اكتشاف الطراز: %s %s"
-#: ../../printer/printerdrake.pm_.c:2480
-msgid "Network functionality not configured"
-msgstr "لم يتم تحديد وظيفية الشبكة"
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "A valid URI must be entered!"
+msgstr "يجب ادخال URI صالح!"
-#: ../../printer/printerdrake.pm_.c:2481
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Printer Device URI"
+msgstr "URI جهاز الطابعة"
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
msgid ""
-"You are going to configure a remote printer. This needs working network "
-"access, but your network is not configured yet. If you go on without network "
-"configuration, you will not be able to use the printer which you are "
-"configuring now. How do you want to proceed?"
+"You can specify directly the URI to access the printer. The URI must fulfill "
+"either the CUPS or the Foomatic specifications. Note that not all URI types "
+"are supported by all the spoolers."
msgstr ""
+"يمكنك تحديد الـURI مباشرة للوصول الى الطابعة. الـURI يجب أن يتوافق مع "
+"متطلبات CUPS أو Foomatic. لاحط أنه ليست كل أنواع الـURI مدعومة من "
+"الـspoolers."
-#: ../../printer/printerdrake.pm_.c:2484
-msgid "Go on without configuring the network"
-msgstr ""
+#: ../../printer/printerdrake.pm:1 ../../standalone/harddrake2:1
+#, c-format
+msgid "Port"
+msgstr "البوابة"
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Printer host name or IP"
+msgstr "اسم مستضيف الطابعة أو الـ IP"
-#: ../../printer/printerdrake.pm_.c:2518
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "The port number should be an integer!"
+msgstr "يجب أن يكون رقم المنفذ رقماً صحيحاً!"
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Printer host name or IP missing!"
+msgstr "اسم مستضيف الطابعة أو الـ IP مفقود!"
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
msgid ""
-"The network configuration done during the installation cannot be started "
-"now. Please check whether the network gets accessable after booting your "
-"system and correct the configuration using the Mandrake Control Center, "
-"section \"Network & Internet\"/\"Connection\", and afterwards set up the "
-"printer, also using the Mandrake Control Center, section \"Hardware\"/"
-"\"Printer\""
+"To print to a TCP or socket printer, you need to provide the host name or IP "
+"of the printer and optionally the port number (default is 9100). On HP "
+"JetDirect servers the port number is usually 9100, on other servers it can "
+"vary. See the manual of your hardware."
msgstr ""
+"للطباعة الى طابعة TCP أو socket, يجب عليك اعطاء اسم المستضيف أو عنوان IP "
+"الخاص بالطابعة و اختيارياً يمكنك اضافة رقم منفذ الطابعة (الإفتراضي هو 9100). "
+"على خادمات HP JetDirect يكون رقم المنفذ عادةً هو 9100, على الخادمات الأخرى "
+"يمكن أن يكون الرقم غير ذلك. الق نظرة على دليل المستخدم للعتاد الخاص بك."
-#: ../../printer/printerdrake.pm_.c:2519
+#: ../../printer/printerdrake.pm:1
+#, c-format
msgid ""
-"The network access was not running and could not be started. Please check "
-"your configuration and your hardware. Then try to configure your remote "
-"printer again."
+"Choose one of the auto-detected printers from the list or enter the hostname "
+"or IP and the optional port number (default is 9100) in the input fields."
msgstr ""
+"اختر واحدة من الطابعات التي تم التحقق منها آلياً من القائمة أو أدخل اسم "
+"المستضيف أو رقم IP و رقم المنفذ الإختياري (الإفتراضي هو 9100) في حقول "
+"الإدخال."
-#: ../../printer/printerdrake.pm_.c:2529
-msgid "Restarting printing system..."
-msgstr ""
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "TCP/Socket Printer Options"
+msgstr "خيارات طابعة TCP/Socket"
-#: ../../printer/printerdrake.pm_.c:2568
-msgid "high"
-msgstr "مرتفع"
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Host \"%s\", port %s"
+msgstr "المستضيف \"%s\", المنفذ %s"
-#: ../../printer/printerdrake.pm_.c:2568
-msgid "paranoid"
-msgstr ""
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid ", host \"%s\", port %s"
+msgstr ", المستضيف \"%s\", المنفذ %s"
-#: ../../printer/printerdrake.pm_.c:2569
+#: ../../printer/printerdrake.pm:1
#, c-format
-msgid "Installing a printing system in the %s security level"
+msgid "Scanning network..."
+msgstr "جاري مسح الشبكة..."
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Printer auto-detection"
+msgstr "تحقق آلي من الطابعات"
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "NCP queue name missing!"
+msgstr "اسم صف NCP مفقود!"
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "NCP server name missing!"
+msgstr "اسم خادم NCP مفقود!"
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Print Queue Name"
+msgstr "اسم صف الطابعة"
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Printer Server"
+msgstr "خادم الطابعة"
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid ""
+"To print on a NetWare printer, you need to provide the NetWare print server "
+"name (Note! it may be different from its TCP/IP hostname!) as well as the "
+"print queue name for the printer you wish to access and any applicable user "
+"name and password."
msgstr ""
+"للطباعة على طابعة NetWare, تحتاج الى اعطاء اسم خادم طباعة NetWare (لاحط أنه "
+"قد يختلف عن اسم مستضيف TCP/IP!) بالإضافة الى اسم الصف للطابعة التي رغب في "
+"الوصول اليها بالإضافة الى اسم مستخدم و كلمة مرور مناسبتين."
-#: ../../printer/printerdrake.pm_.c:2570
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "NetWare Printer Options"
+msgstr "خيارات طابعة NetWare"
+
+#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
-"You are about to install the printing system %s on a system running in the %"
-"s security level.\n"
-"\n"
-"This printing system runs a daemon (background process) which waits for "
-"print jobs and handles them. This daemon is also accessable by remote "
-"machines through the network and so it is a possible point for attacks. "
-"Therefore only a few selected daemons are started by default in this "
-"security level.\n"
+"Connect your printer to a Linux server and let your Windows machine(s) "
+"connect to it as a client.\n"
"\n"
-"Do you really want to configure printing on this machine?"
+"Do you really want to continue setting up this printer as you are doing now?"
msgstr ""
+"وصّل الطابعة الى خادم لينكس و اجعل ماكينات Windows تتصل به كعملاء.\n"
+"\n"
+"هل تريد فعلاً متابعة اعداد هذه الطابعة كما تفعل الآن؟"
-#: ../../printer/printerdrake.pm_.c:2604
-msgid "Starting the printing system at boot time"
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid ""
+"Set up your Windows server to make the printer available under the IPP "
+"protocol and set up printing from this machine with the \"%s\" connection "
+"type in Printerdrake.\n"
+"\n"
msgstr ""
+"قم بإعداد خادم Windows لجعل الطابعات متوفرة تحت بروتوكول IPP و قم بإعداد "
+"الطباعة من هذه الماكينة باستخدام نوع الوصلة \"%s\" في Printerdrake.\n"
+"\n"
-#: ../../printer/printerdrake.pm_.c:2605
+#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
-"The printing system (%s) will not be started automatically when the machine "
-"is booted.\n"
+"You are about to set up printing to a Windows account with password. Due to "
+"a fault in the architecture of the Samba client software the password is put "
+"in clear text into the command line of the Samba client used to transmit the "
+"print job to the Windows server. So it is possible for every user on this "
+"machine to display the password on the screen by issuing commands as \"ps "
+"auxwww\".\n"
"\n"
-"It is possible that the automatic starting was turned off by changing to a "
-"higher security level, because the printing system is a potential point for "
-"attacks.\n"
+"We recommend to make use of one of the following alternatives (in all cases "
+"you have to make sure that only machines from your local network have access "
+"to your Windows server, for example by means of a firewall):\n"
+"\n"
+"Use a password-less account on your Windows server, as the \"GUEST\" account "
+"or a special account dedicated for printing. Do not remove the password "
+"protection from a personal account or the administrator account.\n"
+"\n"
+"Set up your Windows server to make the printer available under the LPD "
+"protocol. Then set up printing from this machine with the \"%s\" connection "
+"type in Printerdrake.\n"
"\n"
-"Do you want to have the automatic starting of the printing system turned on "
-"again?"
msgstr ""
-#: ../../printer/printerdrake.pm_.c:2625 ../../printer/printerdrake.pm_.c:2765
-msgid "Checking installed software..."
-msgstr ""
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "SECURITY WARNING!"
+msgstr "تحذير أمني!"
-#: ../../printer/printerdrake.pm_.c:2630
-#, fuzzy, c-format
-msgid "Removing %s ..."
-msgstr "جاري ازالة %s"
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Samba share name missing!"
+msgstr "اسم مشاركة Samba مفقود!"
-#: ../../printer/printerdrake.pm_.c:2636
-#, fuzzy, c-format
-msgid "Installing %s ..."
-msgstr "تركيب طرود ..."
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Either the server name or the server's IP must be given!"
+msgstr "يجب اعطاء اسم الخادم أو رقم IP الخاص بالخادم!"
-#: ../../printer/printerdrake.pm_.c:2685
-msgid "Select Printer Spooler"
-msgstr ""
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Auto-detected"
+msgstr "تحقق آلي"
-#: ../../printer/printerdrake.pm_.c:2686
-msgid "Which printing system (spooler) do you want to use?"
-msgstr "أي نظام طباعة تريد أن تستخدم؟"
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Workgroup"
+msgstr "مجموعة العمل"
-#: ../../printer/printerdrake.pm_.c:2720
+#: ../../printer/printerdrake.pm:1
#, c-format
-msgid "Configuring printer \"%s\"..."
-msgstr "جاري إعداد الطابعة \"%s\" ..."
+msgid "Share name"
+msgstr "اسم المشاركة"
-#: ../../printer/printerdrake.pm_.c:2731
-msgid "Installing Foomatic..."
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "SMB server IP"
+msgstr "IP خادم SMB"
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "SMB server host"
+msgstr "مستضيف خادم SMB"
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid ""
+" If the desired printer was auto-detected, simply choose it from the list "
+"and then add user name, password, and/or workgroup if needed."
msgstr ""
-#: ../../printer/printerdrake.pm_.c:2800 ../../printer/printerdrake.pm_.c:2838
-#: ../../printer/printerdrake.pm_.c:3230 ../../printer/printerdrake.pm_.c:3300
-msgid "Printer options"
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid ""
+"To print to a SMB printer, you need to provide the SMB host name (Note! It "
+"may be different from its TCP/IP hostname!) and possibly the IP address of "
+"the print server, as well as the share name for the printer you wish to "
+"access and any applicable user name, password, and workgroup information."
msgstr ""
-#: ../../printer/printerdrake.pm_.c:2810
-#, fuzzy
-msgid "Preparing Printerdrake..."
-msgstr "جاري قراءة بيانات الطابعة ..."
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "SMB (Windows 9x/NT) Printer Options"
+msgstr "خيارات طابعة SMB (Windows 9x/NT)"
-#: ../../printer/printerdrake.pm_.c:2825 ../../printer/printerdrake.pm_.c:3369
-msgid "Configuring applications..."
-msgstr "جاري إعداد التطبيقات..."
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Printer \"%s\" on server \"%s\""
+msgstr "الطابعة \"%s\" على الخادم \"%s\""
-#: ../../printer/printerdrake.pm_.c:2845
-msgid "Would you like to configure printing?"
-msgstr ""
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid ", printer \"%s\" on server \"%s\""
+msgstr ", الطابعة \"%s\" على الخادم \"%s\""
-#: ../../printer/printerdrake.pm_.c:2857
-msgid "Printing system: "
-msgstr ""
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Remote printer name missing!"
+msgstr "اسم الطابعة البعيدة مفقود!"
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Remote host name missing!"
+msgstr "اسم المستضيف البعيد مفقود!"
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Remote printer name"
+msgstr "اسم الطابعة البعيدة"
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Remote host name"
+msgstr "اسم المستضيف البعيد"
-#: ../../printer/printerdrake.pm_.c:2915
+#: ../../printer/printerdrake.pm:1
+#, c-format
msgid ""
-"The following printers are configured. Double-click on a printer to change "
-"its settings; to make it the default printer; to view information about it; "
-"or to make a printer on a remote CUPS server available for Star Office/"
-"OpenOffice.org/GIMP."
+"To use a remote lpd printer, you need to supply the hostname of the printer "
+"server and the printer name on that server."
msgstr ""
-#: ../../printer/printerdrake.pm_.c:2916
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Remote lpd Printer Options"
+msgstr "خيارات طابعة lpd البعيد"
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Manual configuration"
+msgstr "إعداد يدوي"
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "You must choose/enter a printer/device!"
+msgstr "يجب عليك ادخال/اختيار طابعة/جهاز"
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
msgid ""
-"The following printers are configured. Double-click on a printer to change "
-"its settings; to make it the default printer; or to view information about "
-"it."
+" (Parallel Ports: /dev/lp0, /dev/lp1, ..., equivalent to LPT1:, LPT2:, ..., "
+"1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."
msgstr ""
-#: ../../printer/printerdrake.pm_.c:2942
-msgid "Refresh printer list (to display all available remote CUPS printers)"
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Please choose the port that your printer is connected to."
+msgstr "رجاء اختر المنفذ الموصلة إليه طابعتك."
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid ""
+"Please choose the port that your printer is connected to or enter a device "
+"name/file name in the input line"
msgstr ""
-#: ../../printer/printerdrake.pm_.c:2960
-msgid "Change the printing system"
-msgstr "تغيير نظام الطباعة"
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Please choose the printer to which the print jobs should go."
+msgstr "رجاء اختر الطابعة التي ستذهب اليها وظائف الطباعة."
-#: ../../printer/printerdrake.pm_.c:2965 ../../standalone/drakconnect_.c:274
-msgid "Normal Mode"
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid ""
+"Please choose the printer you want to set up. The configuration of the "
+"printer will work fully automatically. If your printer was not correctly "
+"detected or if you prefer a customized printer configuration, turn on "
+"\"Manual configuration\"."
msgstr ""
-#: ../../printer/printerdrake.pm_.c:3127 ../../printer/printerdrake.pm_.c:3176
-#: ../../printer/printerdrake.pm_.c:3363
-msgid "Do you want to configure another printer?"
-msgstr "هل تريد تجربة إعداد طابعة أخرى؟"
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Here is a list of all auto-detected printers. "
+msgstr "ها هي قائمة بكل الطابعات المتحقَّق منها آلياً. "
-#: ../../printer/printerdrake.pm_.c:3211
-msgid "Modify printer configuration"
-msgstr "تعديل اعدادات الطابعة"
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Currently, no alternative possibility is available"
+msgstr "حالياً لا يوجد احتمال بديل"
-#: ../../printer/printerdrake.pm_.c:3213
+#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
-"Printer %s\n"
-"What do you want to modify on this printer?"
+"The configuration of the printer will work fully automatically. If your "
+"printer was not correctly detected or if you prefer a customized printer "
+"configuration, turn on \"Manual configuration\"."
msgstr ""
-"الطابعة %s\n"
-"هل تريد تعديل تلك الطابعة؟"
-#: ../../printer/printerdrake.pm_.c:3217
-msgid "Do it!"
-msgstr ""
-
-#: ../../printer/printerdrake.pm_.c:3222 ../../printer/printerdrake.pm_.c:3271
-msgid "Printer connection type"
-msgstr "نوع وصلة الطابعة"
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "The following printer was auto-detected. "
+msgstr "تم اكتشاف طابعتك آلياً. "
-#: ../../printer/printerdrake.pm_.c:3223 ../../printer/printerdrake.pm_.c:3275
-msgid "Printer name, description, location"
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid ""
+"Please choose the printer to which the print jobs should go or enter a "
+"device name/file name in the input line"
msgstr ""
-#: ../../printer/printerdrake.pm_.c:3225 ../../printer/printerdrake.pm_.c:3293
-msgid "Printer manufacturer, model, driver"
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid ""
+"Please choose the printer you want to set up or enter a device name/file "
+"name in the input line"
msgstr ""
-#: ../../printer/printerdrake.pm_.c:3226 ../../printer/printerdrake.pm_.c:3294
-msgid "Printer manufacturer, model"
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid ""
+"Alternatively, you can specify a device name/file name in the input line"
msgstr ""
-#: ../../printer/printerdrake.pm_.c:3232 ../../printer/printerdrake.pm_.c:3304
-msgid "Set this printer as the default"
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid ""
+"If it is not the one you want to configure, enter a device name/file name in "
+"the input line"
msgstr ""
-#: ../../printer/printerdrake.pm_.c:3234 ../../printer/printerdrake.pm_.c:3309
-msgid "Add this printer to Star Office/OpenOffice.org/GIMP"
-msgstr ""
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Available printers"
+msgstr "الطابعات المتوفرة"
-#: ../../printer/printerdrake.pm_.c:3235 ../../printer/printerdrake.pm_.c:3314
-msgid "Remove this printer from Star Office/OpenOffice.org/GIMP"
+#
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "No printer found!"
+msgstr "لا توجد طابعة!"
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "You must enter a device or file name!"
msgstr ""
-#: ../../printer/printerdrake.pm_.c:3236 ../../printer/printerdrake.pm_.c:3319
-msgid "Print test pages"
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid ""
+"No local printer found! To manually install a printer enter a device name/"
+"file name in the input line (Parallel Ports: /dev/lp0, /dev/lp1, ..., "
+"equivalent to LPT1:, LPT2:, ..., 1st USB printer: /dev/usb/lp0, 2nd USB "
+"printer: /dev/usb/lp1, ...)."
msgstr ""
-#: ../../printer/printerdrake.pm_.c:3237 ../../printer/printerdrake.pm_.c:3321
-msgid "Know how to use this printer"
-msgstr "اعرف كيف تستخدم هذه الطابعة"
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Local Printer"
+msgstr "طابعة محلية"
-#: ../../printer/printerdrake.pm_.c:3238 ../../printer/printerdrake.pm_.c:3323
-msgid "Remove printer"
-msgstr ""
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "USB printer \\#%s"
+msgstr "طابعة USB \\#%s"
-#: ../../printer/printerdrake.pm_.c:3282
+#: ../../printer/printerdrake.pm:1
#, c-format
-msgid "Removing old printer \"%s\"..."
-msgstr "جاري ازالة الطابعة القديمة \"%s\" ..."
+msgid "Printer on parallel port \\#%s"
+msgstr "الطابعة على المنفذ المتوازي \\#%s"
-#: ../../printer/printerdrake.pm_.c:3307
-msgid "Default printer"
-msgstr ""
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Printer \"%s\" on SMB/Windows server \"%s\""
+msgstr "الطابعة \"%s\" على خادم SMB/Windows \"%s\""
-#: ../../printer/printerdrake.pm_.c:3308
+#: ../../printer/printerdrake.pm:1
#, c-format
-msgid "The printer \"%s\" is set as the default printer now."
+msgid "Network printer \"%s\", port %s"
+msgstr "طابعة شبكة \"%s\", المنفذ %s"
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Detected %s"
+msgstr "تم التحقق من %s"
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid ", printer \"%s\" on SMB/Windows server \"%s\""
+msgstr ", الطابعة \"%s\" على خادم SMB/Windows \"%s\""
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid ", network printer \"%s\", port %s"
+msgstr ", طابعة شبكة \"%s\", المنفذ %s"
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid ""
+"\n"
+"Congratulations, your printer is now installed and configured!\n"
+"\n"
+"You can print using the \"Print\" command of your application (usually in "
+"the \"File\" menu).\n"
+"\n"
+"If you want to add, remove, or rename a printer, or if you want to change "
+"the default option settings (paper input tray, printout quality, ...), "
+"select \"Printer\" in the \"Hardware\" section of the Mandrake Control "
+"Center."
msgstr ""
-#: ../../printer/printerdrake.pm_.c:3310
-msgid "Adding printer to Star Office/OpenOffice.org/GIMP"
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Auto-detect printers connected to machines running Microsoft Windows"
+msgstr "تحقّق آلياً من الطابعات الموصولة بماكينات تعمل على Microsoft Windows"
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Auto-detect printers connected directly to the local network"
+msgstr "تحقّق آلياً من الطابعات الموصولة مباشرةً بالشبكة المحلية"
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Auto-detect printers connected to this machine"
+msgstr "تحقق أليا من الطابعات المتصلة بهذا الجهاز"
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid ""
+"\n"
+"Welcome to the Printer Setup Wizard\n"
+"\n"
+"This wizard will help you to install your printer(s) connected to this "
+"computer.\n"
+"\n"
+"If you have printer(s) connected to this machine, Please plug it/them in on "
+"this computer and turn it/them on so that it/they can be auto-detected.\n"
+"\n"
+" Click on \"Next\" when you are ready, and on \"Cancel\" if you do not want "
+"to set up your printer(s) now."
msgstr ""
+"\n"
+"أهلاً بكم في معالج اعداد الطابعات\n"
+"\n"
+"هذا المعالج سيساعدك على تثبيت الطابعة/الطابعات الموصولة بهذا الكمبيوتر.\n"
+"\n"
+"اذا كانت لديك طابعة/طابعات موصولة بهذه الماكينة, فضلاً قم بتوصيلها الى هذا "
+"الكمبيوتر و قم بتشغيلها كي يتم التحقق منها/منهم آلياً.\n"
+"\n"
+" انقر \"التالي\" عندما تكون مستعداً, و على \"الغاء\" اذا لم تكن تريد اعداد "
+"الطابعة/الطابعات الآن."
-#: ../../printer/printerdrake.pm_.c:3312
+#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
-"The printer \"%s\" was successfully added to Star Office/OpenOffice.org/GIMP."
+"\n"
+"Welcome to the Printer Setup Wizard\n"
+"\n"
+"This wizard will help you to install your printer(s) connected to this "
+"computer or connected directly to the network.\n"
+"\n"
+"If you have printer(s) connected to this machine, Please plug it/them in on "
+"this computer and turn it/them on so that it/they can be auto-detected. Also "
+"your network printer(s) must be connected and turned on.\n"
+"\n"
+"Note that auto-detecting printers on the network takes longer than the auto-"
+"detection of only the printers connected to this machine. So turn off the "
+"auto-detection of network printers when you don't need it.\n"
+"\n"
+" Click on \"Next\" when you are ready, and on \"Cancel\" if you do not want "
+"to set up your printer(s) now."
msgstr ""
+"\n"
+"أهلاً بكم في معالج اعداد الطابعات\n"
+"هذا المعالج سيساعدك على تثبيت الطابعة/الطابعات الموصولة بهذا الكمبيوتر أو "
+"الموصولة مباشرةً بالشبكة.\n"
+"\n"
+"اذا كانت لديك طابعة/طابعات موصولة بهذه الماكينة, فضلاً قم بتوصيلها الى هذا "
+"الكمبيوتر و قم بتشغيلها كي يتم التحقق منها/منهم آلياً. أيضاً يجب أن تكون طابعة/"
+"طابعات الشبكة موصولة و مشغّلة.\n"
+"\n"
+"لاحظ أن التحقق الآلي من الطابعات على الشبكة قد يستغرق وقتاً أطول من التحقق "
+"الآلي من الطابعات الموصولة بهذه الماكينة فقط. لذا قم بتعطيل التحقق الآلي من "
+"طابعات الشبكة اذا لم تكن تحتاج الى هذه الميزة.\n"
+"\n"
+" انقر \"التالي\" عندما تكون مستعداً, و على \"الغاء\" اذا لم تكن تريد اعداد "
+"الطابعة/الطابعات الآن."
-#: ../../printer/printerdrake.pm_.c:3313
+#: ../../printer/printerdrake.pm:1
#, c-format
-msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org/GIMP."
+msgid ""
+"\n"
+"Welcome to the Printer Setup Wizard\n"
+"\n"
+"This wizard will help you to install your printer(s) connected to this "
+"computer, connected directly to the network or to a remote Windows machine.\n"
+"\n"
+"If you have printer(s) connected to this machine, Please plug it/them in on "
+"this computer and turn it/them on so that it/they can be auto-detected. Also "
+"your network printer(s) and your Windows machines must be connected and "
+"turned on.\n"
+"\n"
+"Note that auto-detecting printers on the network takes longer than the auto-"
+"detection of only the printers connected to this machine. So turn off the "
+"auto-detection of network and/or Windows-hosted printers when you don't need "
+"it.\n"
+"\n"
+" Click on \"Next\" when you are ready, and on \"Cancel\" if you do not want "
+"to set up your printer(s) now."
msgstr ""
+"\n"
+"أهلاً بكم في معالج اعداد الطابعات\n"
+"هذا المعالج سيساعدك على تثبيت الطابعة/الطابعات الموصولة بهذا الكمبيوتر أو "
+"الموصولة مباشرةً بالشبكة أو بماكينة Windows بعيدة.\n"
+"\n"
+"اذا كانت لديك طابعة/طابعات موصولة بهذه الماكينة, فضلاً قم بتوصيلها الى هذا "
+"الكمبيوتر و قم بتشغيلها كي يتم التحقق منها/منهم آلياً. أيضاً يجب أن تكون طابعة/"
+"طابعات الشبكة و أجهزة Windows موصولة و مشغّلة.\n"
+"\n"
+"لاحظ أن التحقق الآلي من الطابعات على الشبكة قد يستغرق وقتاً أطول من التحقق "
+"الآلي من الطابعات الموصولة بهذه الماكينة فقط. لذا قم بتعطيل التحقق الآلي من "
+"طابعات الشبكة و/أو الطابعات المستضافة من Windows اذا لم تكن تحتاج الى هذه "
+"الميزة.\n"
+"\n"
+" انقر \"التالي\" عندما تكون مستعداً, و على \"الغاء\" اذا لم تكن تريد اعداد "
+"الطابعة/الطابعات الآن."
-#: ../../printer/printerdrake.pm_.c:3315
-msgid "Removing printer from Star Office/OpenOffice.org/GIMP"
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid ""
+"\n"
+"Welcome to the Printer Setup Wizard\n"
+"\n"
+"This wizard allows you to install local or remote printers to be used from "
+"this machine and also from other machines in the network.\n"
+"\n"
+"It asks you for all necessary information to set up the printer and gives "
+"you access to all available printer drivers, driver options, and printer "
+"connection types."
msgstr ""
+"\n"
+"أهلاً بكم في معالج اعداد الطابعات\n"
+"\n"
+"هذا المعالج يسمح لك بتثبيت الطابعات المحلية أو البعيدة ليتم استخدامها من هذه "
+"الماكينو و من الماكينات الأخرى على الشبكة.\n"
+"\n"
+"يسألك المعالج عن كل المعلومات الأساسية لإعداد الطابعة و تعطيك القدرة على "
+"الوصول لكل مشغلات الطابعات و خيارات المشغلات و أنواع وصلات الطابعة."
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Searching for new printers..."
+msgstr "جاري البحث عن طابعات جديدة..."
-#: ../../printer/printerdrake.pm_.c:3317
+#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
-"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org/"
-"GIMP."
+"NOTE: Depending on the printer model and the printing system up to %d MB of "
+"additional software will be installed."
msgstr ""
+"ملحوظة: اعتماداً على طراز الطابعة و نظام الطباعة فسيتم تثبيت حوالي %d "
+"ميغابايت من البرمجيات الإضافية."
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Are you sure that you want to set up printing on this machine?\n"
+msgstr "هل أنت متأكد أنك تريد تنصيب الطباعة على هذه الماكينة؟\n"
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Do you want to enable printing on the printers mentioned above?\n"
+msgstr "هل تريد تمكين الطباعة على الطابعات المذكورة أعلاه؟\n"
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Do you want to enable printing on printers in the local network?\n"
+msgstr "هل تريد تمكين الطباعة على الطابعات في الشبكة المحلية؟\n"
-#: ../../printer/printerdrake.pm_.c:3318
+#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
-"Failed to remove the printer \"%s\" from Star Office/OpenOffice.org/GIMP."
+"Do you want to enable printing on the printers mentioned above or on "
+"printers in the local network?\n"
msgstr ""
+"هل تريد تمكين الطباعة على الطابعات المذكورة أعلاه أم على الطابعات في الشبكة "
+"المحلية؟\n"
-#: ../../printer/printerdrake.pm_.c:3325
+#: ../../printer/printerdrake.pm:1
#, c-format
-msgid "Do you really want to remove the printer \"%s\"?"
+msgid " (Make sure that all your printers are connected and turned on).\n"
+msgstr " (تأكد من أن كل الطابعات موصولة و تعمل).\n"
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid ""
+"There are no printers found which are directly connected to your machine"
+msgstr "لم يتم العثور على طابعات متصلة مباشرةً بهذه الماكينة"
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid ""
+"\n"
+"There are %d unknown printers directly connected to your system"
msgstr ""
+"\n"
+"توجد %d طابعات غير معروفة متصلة مباشرةً بنظامك"
-#: ../../printer/printerdrake.pm_.c:3329
+#: ../../printer/printerdrake.pm:1
#, c-format
-msgid "Removing printer \"%s\"..."
-msgstr "جاري ازالة الطابعة \"%s\" ..."
+msgid ""
+"\n"
+"There is one unknown printer directly connected to your system"
+msgstr ""
+"\n"
+"توجد طابعة غير معروفة متصلة مباشرةً بنظامك"
-#: ../../raid.pm_.c:35
+#: ../../printer/printerdrake.pm:1
#, c-format
-msgid "Can't add a partition to _formatted_ RAID md%d"
+msgid ""
+"The following printer\n"
+"\n"
+"%s%s\n"
+"is directly connected to your system"
msgstr ""
+"الطابعة التالية\n"
+"\n"
+"%s%s\n"
+"متصلة مباشرةً بنظامك"
-#: ../../raid.pm_.c:137
-msgid "mkraid failed"
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid ""
+"The following printer\n"
+"\n"
+"%s%s\n"
+"are directly connected to your system"
msgstr ""
+"الطابعات التالية\n"
+"\n"
+"%s%s\n"
+"متصلة مباشرةً بنظامك"
-#: ../../raid.pm_.c:137
-msgid "mkraid failed (maybe raidtools are missing?)"
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid ""
+"The following printers\n"
+"\n"
+"%s%s\n"
+"are directly connected to your system"
msgstr ""
+"الطابعات التالية\n"
+"\n"
+"%s%s\n"
+"متصلة مباشرةً بنظامك"
-#: ../../raid.pm_.c:153
+#: ../../printer/printerdrake.pm:1
#, c-format
-msgid "Not enough partitions for RAID level %d\n"
+msgid "and %d unknown printers"
+msgstr "و %d طابعات غير معروفة"
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "and one unknown printer"
+msgstr "و طابعة غير معروفة"
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Checking your system..."
+msgstr "جاري التأكد من نظامك..."
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "IP address of host/network:"
+msgstr "عنوان IP للمستضيف/الشبكة:"
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "This host/network is already in the list, it cannot be added again.\n"
+msgstr "هذا المستضيف/الشبكة موجود في القائمة مسبقاً, لا يمكن اضافته مرة أخرى.\n"
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "192.168.100.0/255.255.255.0\n"
+msgstr "192.168.100.0/255.255.255.0\n"
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "192.168.100.0/24\n"
+msgstr "192.168.100.0/24\n"
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "10.1.*\n"
+msgstr "10.1.*\n"
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "10.0.0.*\n"
+msgstr "10.0.0.*\n"
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "192.168.100.194\n"
+msgstr "192.168.100.194\n"
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Examples for correct IPs:\n"
+msgstr "أمثلة لعناوين IP صحيحة:\n"
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "The entered host/network IP is not correct.\n"
+msgstr "عنوان IP المدُخل للمستضيف/الشبكة غير صحيح.\n"
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid ""
+"Choose the network or host on which the local printers should be made "
+"available:"
+msgstr "اختر الشبكة أو المستضيف التي يجب أن تكون الطابعات المحلية متوفرة له:"
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Sharing of local printers"
+msgstr "مشاركة الطابعات المحلية"
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Remove selected host/network"
+msgstr "احذف المستضيف/الشبكة المختارة"
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Edit selected host/network"
+msgstr "حرّر المستضيف/الشبكة المختارة"
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Add host/network"
+msgstr "أضف مستضيف/شبكة"
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid ""
+"These are the machines and networks on which the locally connected printer"
+"(s) should be available:"
msgstr ""
+"هذه هي الماكينات و الشبكات التي يجب أن تكون الطابعات المحلية متوفرة لها:"
-#: ../../security/main.pm_.c:36
+#: ../../printer/printerdrake.pm:1
+#, c-format
msgid ""
-"Standard: This is the standard security recommended for a computer that will "
-"be used to connect\n"
-" to the Internet as a client.\n"
+"When this option is turned on, on every startup of CUPS it is automatically "
+"made sure that\n"
"\n"
-"High: There are already some restrictions, and more automatic checks "
-"are run every night.\n"
+"- if LPD/LPRng is installed, /etc/printcap will not be overwritten by CUPS\n"
"\n"
-"Higher: The security is now high enough to use the system as a server "
-"which can accept\n"
-" connections from many clients. If your machine is only a "
-"client on the Internet, you\n"
-"\t should choose a lower level.\n"
+"- if /etc/cups/cupsd.conf is missing, it will be created\n"
"\n"
-"Paranoid: This is similar to the previous level, but the system is entirely "
-"closed and security\n"
-" features are at their maximum\n"
+"- when printer information is broadcasted, it does not contain \"localhost\" "
+"as the server name.\n"
"\n"
-"Security Administrator:\n"
-" If the 'Security Alerts' option is set, security alerts will "
-"be sent to this user (username or\n"
-"\t email)"
+"If some of these measures lead to problems for you, turn this option off, "
+"but then you have to take care of these points."
msgstr ""
-#: ../../security/main.pm_.c:66
-#, fuzzy
-msgid "Security Level:"
-msgstr "مستوى الأمن"
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Automatic correction of CUPS configuration"
+msgstr "تصحيح آلي لتهيئة CUPS"
-#: ../../security/main.pm_.c:77
-#, fuzzy, c-format
-msgid " (default value: %s)"
-msgstr "المرجع"
+#: ../../printer/printerdrake.pm:1 ../../standalone/scannerdrake:1
+#, c-format
+msgid "No remote machines"
+msgstr "لا أجهزة بعيدة"
-#: ../../security/main.pm_.c:113
-#, fuzzy
-msgid "Security Alerts:"
-msgstr "مستوى الأمن"
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Custom configuration"
+msgstr "تهيئة مخصصة"
-#: ../../security/main.pm_.c:115
-msgid "Security Administrator:"
-msgstr ""
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Printer sharing on hosts/networks: "
+msgstr "مشاركة الطابعات على المستضيفات/الشبكات: "
-#: ../../security/main.pm_.c:128
-#, fuzzy
-msgid "Network Options"
-msgstr "خيارات أكثر"
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Automatically find available printers on remote machines"
+msgstr "اعثر على الطابعات الموجودة على الماكينات البعيدة آلياً"
-#: ../../security/main.pm_.c:128
-#, fuzzy
-msgid "System Options"
-msgstr "خيارات أكثر"
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "The printers on this machine are available to other computers"
+msgstr "الطابعات على هذه الماكينة متوفرة للأجهزة الأخرى"
-#: ../../security/main.pm_.c:133 ../../security/main.pm_.c:164
+#: ../../printer/printerdrake.pm:1
+#, c-format
msgid ""
-"The following options can be set to customize your\n"
-"system security. If you need explanations, click on Help.\n"
+"You can also decide here whether printers on remote machines should be "
+"automatically made available on this machine."
msgstr ""
-#: ../../security/main.pm_.c:177
-msgid "Periodic Checks"
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid ""
+"Here you can choose whether the printers connected to this machine should be "
+"accessable by remote machines and by which remote machines."
msgstr ""
-#: ../../security/main.pm_.c:191
-#, fuzzy
-msgid "Please wait, setting security level..."
-msgstr "جاري ضبط مستوى الأمن"
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "CUPS printer sharing configuration"
+msgstr "إعدادات مشاركة طابعات CUPS"
-#: ../../security/main.pm_.c:197
-#, fuzzy
-msgid "Please wait, setting security options..."
-msgstr "رجاء انتظر أثناء عملية ttmkfdir..."
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Printer auto-detection (Local, TCP/Socket, and SMB printers)"
+msgstr "التحقق الآلي من الطابعات (محلية, TCP/Socket, و SMB)"
-#: ../../services.pm_.c:19
-msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid ""
+"\n"
+"Printers on remote CUPS servers do not need to be configured here; these "
+"printers will be automatically detected."
msgstr ""
-#: ../../services.pm_.c:20
-msgid "Anacron a periodic command scheduler."
-msgstr ""
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "How is the printer connected?"
+msgstr "ما هي طريقة توصيل الطابعة؟"
-#: ../../services.pm_.c:21
+#: ../../printer/printerdrake.pm:1
+#, c-format
+msgid "Select Printer Connection"
+msgstr "اختر وصلة الطابعة"
+
+#: ../../security/help.pm:1
+#, c-format
msgid ""
-"apmd is used for monitoring batery status and logging it via syslog.\n"
-"It can also be used for shutting down the machine when the battery is low."
+"Arguments: (umask)\n"
+"\n"
+"Set the user umask."
msgstr ""
+"Arguments: (umask)\n"
+"\n"
+"Set the user umask."
-#: ../../services.pm_.c:23
+#: ../../security/help.pm:1
+#, c-format
msgid ""
-"Runs commands scheduled by the at command at the time specified when\n"
-"at was run, and runs batch commands when the load average is low enough."
+"Arguments: (val)\n"
+"\n"
+"Set the shell timeout. A value of zero means no timeout."
msgstr ""
+"Arguments: (val)\n"
+"\n"
+"Set the shell timeout. A value of zero means no timeout."
-#: ../../services.pm_.c:25
+#: ../../security/help.pm:1
+#, c-format
msgid ""
-"cron is a standard UNIX program that runs user-specified programs\n"
-"at periodic scheduled times. vixie cron adds a number of features to the "
-"basic\n"
-"UNIX cron, including better security and more powerful configuration options."
+"Arguments: (size)\n"
+"\n"
+"Set shell commands history size. A value of -1 means unlimited."
msgstr ""
+"Arguments: (size)\n"
+"\n"
+"Set shell commands history size. A value of -1 means unlimited."
+
+#: ../../security/help.pm:1
+#, c-format
+msgid "if set to yes, check additions/removals of sgid files."
+msgstr "if set to yes, check additions/removals of sgid files."
-#: ../../services.pm_.c:28
+#: ../../security/help.pm:1
+#, c-format
+msgid "if set to yes, check open ports."
+msgstr "if set to yes, check open ports."
+
+#: ../../security/help.pm:1
+#, c-format
msgid ""
-"GPM adds mouse support to text-based Linux applications such the\n"
-"Midnight Commander. It also allows mouse-based console cut-and-paste "
-"operations,\n"
-"and includes support for pop-up menus on the console."
+"if set, send the mail report to this email address else send it to root."
msgstr ""
+"if set, send the mail report to this email address else send it to root."
+
+#: ../../security/help.pm:1
+#, c-format
+msgid "if set to yes, report check result by mail."
+msgstr "if set to yes, report check result by mail."
+
+#: ../../security/help.pm:1
+#, c-format
+msgid "if set to yes, check files/directories writable by everybody."
+msgstr "if set to yes, check files/directories writable by everybody."
+
+#: ../../security/help.pm:1
+#, c-format
+msgid "if set to yes, reports check result to tty."
+msgstr "if set to yes, reports check result to tty."
+
+#: ../../security/help.pm:1
+#, c-format
+msgid "if set to yes, run some checks against the rpm database."
+msgstr "if set to yes, run some checks against the rpm database."
+
+#: ../../security/help.pm:1
+#, c-format
+msgid "if set to yes, check if the network devices are in promiscuous mode."
+msgstr "if set to yes, check if the network devices are in promiscuous mode."
-#: ../../services.pm_.c:31
+#: ../../security/help.pm:1
+#, c-format
+msgid "if set to yes, run chkrootkit checks."
+msgstr "if set to yes, run chkrootkit checks."
+
+#: ../../security/help.pm:1
+#, c-format
+msgid "if set to yes, check permissions of files in the users' home."
+msgstr "if set to yes, check permissions of files in the users' home."
+
+#: ../../security/help.pm:1
+#, c-format
+msgid "if set to yes, check additions/removals of suid root files."
+msgstr "if set to yes, check additions/removals of suid root files."
+
+#: ../../security/help.pm:1
+#, c-format
+msgid "if set to yes, report check result to syslog."
+msgstr "if set to yes, report check result to syslog."
+
+#: ../../security/help.pm:1
+#, c-format
msgid ""
-"HardDrake runs a hardware probe, and optionally configures\n"
-"new/changed hardware."
+"if set to yes, check for empty password, or a password while it should be "
+"in /etc/shadow or other users with id 0."
msgstr ""
+"if set to yes, check for empty password, or a password while it should be "
+"in /etc/shadow or other users with id 0."
+
+#: ../../security/help.pm:1
+#, c-format
+msgid "if set to yes, run the daily security checks."
+msgstr "if set to yes, run the daily security checks"
-#: ../../services.pm_.c:33
+#: ../../security/help.pm:1
+#, c-format
+msgid "if set to yes, verify checksum of the suid/sgid files."
+msgstr "if set to yes, verify checksum of the suid/sgid files."
+
+#: ../../security/help.pm:1
+#, c-format
+msgid "if set to yes, check empty password in /etc/shadow."
+msgstr "if set to yes, check empty password in /etc/shadow."
+
+#: ../../security/help.pm:1
+#, c-format
+msgid "if set to yes, report unowned files."
+msgstr "if set to yes, report unowned files."
+
+#: ../../security/help.pm:1
+#, c-format
msgid ""
-"Apache is a World Wide Web server. It is used to serve HTML files and CGI."
+"Arguments: (umask)\n"
+"\n"
+"Set the root umask."
msgstr ""
+"Arguments: (umask)\n"
+"\n"
+"Set the root umask."
-#: ../../services.pm_.c:34
+#: ../../security/help.pm:1
+#, c-format
msgid ""
-"The internet superserver daemon (commonly called inetd) starts a\n"
-"variety of other internet services as needed. It is responsible for "
-"starting\n"
-"many services, including telnet, ftp, rsh, and rlogin. Disabling inetd "
-"disables\n"
-"all of the services it is responsible for."
+"Arguments: (length, ndigits=0, nupper=0)\n"
+"\n"
+"Set the password minimum length and minimum number of digit and minimum "
+"number of capitalized letters."
msgstr ""
+"Arguments: (length, ndigits=0, nupper=0)\n"
+"\n"
+"Set the password minimum length and minimum number of digit and minimum "
+"number of capitalized letters."
-#: ../../services.pm_.c:38
+#: ../../security/help.pm:1
+#, c-format
msgid ""
-"Launch packet filtering for Linux kernel 2.2 series, to set\n"
-"up a firewall to protect your machine from network attacks."
+"Arguments: (arg)\n"
+"\n"
+"Set the password history length to prevent password reuse."
msgstr ""
+"Arguments: (arg)\n"
+"\n"
+"Set the password history length to prevent password reuse."
-#: ../../services.pm_.c:40
+#: ../../security/help.pm:1
+#, c-format
msgid ""
-"This package loads the selected keyboard map as set in\n"
-"/etc/sysconfig/keyboard. This can be selected using the kbdconfig utility.\n"
-"You should leave this enabled for most machines."
+"Arguments: (max, inactive=-1)\n"
+"\n"
+"Set password aging to \\fImax\\fP days and delay to change to \\fIinactive"
+"\\fP."
msgstr ""
+"Arguments: (max, inactive=-1)\n"
+"\n"
+"Set password aging to \\fImax\\fP days and delay to change to \\fIinactive"
+"\\fP."
-#: ../../services.pm_.c:43
+#: ../../security/help.pm:1
+#, c-format
msgid ""
-"Automatic regeneration of kernel header in /boot for\n"
-"/usr/include/linux/{autoconf,version}.h"
+"Arguments: (name)\n"
+"\n"
+"Add the name as an exception to the handling of password aging by msec."
msgstr ""
+"Arguments: (name)\n"
+"\n"
+"Add the name as an exception to the handling of password aging by msec."
-#: ../../services.pm_.c:45
-msgid "Automatic detection and configuration of hardware at boot."
+#: ../../security/help.pm:1
+#, c-format
+msgid ""
+"Arguments: (arg)\n"
+"\n"
+" Enable/Disable sulogin(8) in single user level."
msgstr ""
+"Arguments: (arg)\n"
+"\n"
+" Enable/Disable sulogin(8) in single user level."
-#: ../../services.pm_.c:46
+#: ../../security/help.pm:1
+#, c-format
msgid ""
-"Linuxconf will sometimes arrange to perform various tasks\n"
-"at boot-time to maintain the system configuration."
+"Arguments: (arg)\n"
+"\n"
+" Activate/Disable daily security check."
msgstr ""
+"Arguments: (arg)\n"
+"\n"
+" Activate/Disable daily security check."
-#: ../../services.pm_.c:48
+#: ../../security/help.pm:1
+#, c-format
msgid ""
-"lpd is the print daemon required for lpr to work properly. It is\n"
-"basically a server that arbitrates print jobs to printer(s)."
+"Arguments: (arg)\n"
+"\n"
+"Activate/Disable ethernet cards promiscuity check."
msgstr ""
+"Arguments: (arg)\n"
+"\n"
+"Activate/Disable ethernet cards promiscuity check."
-#: ../../services.pm_.c:50
+#: ../../security/help.pm:1
+#, c-format
msgid ""
-"Linux Virtual Server, used to build a high-performance and highly\n"
-"available server."
+"Arguments: (arg)\n"
+"\n"
+"Use password to authenticate users."
msgstr ""
+"Arguments: (arg)\n"
+"\n"
+"Use password to authenticate users."
-#: ../../services.pm_.c:52
+#: ../../security/help.pm:1
+#, c-format
msgid ""
-"named (BIND) is a Domain Name Server (DNS) that is used to resolve host "
-"names to IP addresses."
+"Arguments: (arg)\n"
+"\n"
+" Enabling su only from members of the wheel group or allow su from any user."
msgstr ""
+"Arguments: (arg)\n"
+"\n"
+" Enabling su only from members of the wheel group or allow su from any user."
-#: ../../services.pm_.c:53
+#: ../../security/help.pm:1
+#, c-format
msgid ""
-"Mounts and unmounts all Network File System (NFS), SMB (Lan\n"
-"Manager/Windows), and NCP (NetWare) mount points."
+"Arguments: (arg)\n"
+"\n"
+"Enable/Disable msec hourly security check."
msgstr ""
+"Arguments: (arg)\n"
+"\n"
+"Enable/Disable msec hourly security check."
-#: ../../services.pm_.c:55
+#: ../../security/help.pm:1
+#, c-format
msgid ""
-"Activates/Deactivates all network interfaces configured to start\n"
-"at boot time."
+"Arguments: (arg)\n"
+"\n"
+"Enable/Disable the logging of IPv4 strange packets."
msgstr ""
+"Arguments: (arg)\n"
+"\n"
+"Enable/Disable the logging of IPv4 strange packets."
-#: ../../services.pm_.c:57
+#: ../../security/help.pm:1
+#, c-format
msgid ""
-"NFS is a popular protocol for file sharing across TCP/IP networks.\n"
-"This service provides NFS server functionality, which is configured via the\n"
-"/etc/exports file."
+"Arguments: (arg)\n"
+"\n"
+"Enable/Disable libsafe if libsafe is found on the system."
msgstr ""
+"Arguments: (arg)\n"
+"\n"
+"Enable/Disable libsafe if libsafe is found on the system."
-#: ../../services.pm_.c:60
+#: ../../security/help.pm:1
+#, c-format
msgid ""
-"NFS is a popular protocol for file sharing across TCP/IP\n"
-"networks. This service provides NFS file locking functionality."
+"Arguments: (arg, alert=1)\n"
+"\n"
+"Enable/Disable IP spoofing protection."
msgstr ""
+"Arguments: (arg, alert=1)\n"
+"\n"
+"Enable/Disable IP spoofing protection."
-#: ../../services.pm_.c:62
+#: ../../security/help.pm:1
+#, c-format
msgid ""
-"Automatically switch on numlock key locker under console\n"
-"and XFree at boot."
+"Arguments: (arg, alert=1)\n"
+"\n"
+"Enable/Disable name resolution spoofing protection. If\n"
+"\\fIalert\\fP is true, also reports to syslog."
msgstr ""
+"Arguments: (arg, alert=1)\n"
+"\n"
+"Enable/Disable name resolution spoofing protection. If\n"
+"\\fIalert\\fP is true, also reports to syslog."
-#: ../../services.pm_.c:64
-msgid "Support the OKI 4w and compatible winprinters."
+#: ../../security/help.pm:1
+#, c-format
+msgid ""
+"Arguments: (arg, expr='*.*', dev='tty12')\n"
+"\n"
+"Enable/Disable syslog reports to console 12. \\fIexpr\\fP is the\n"
+"expression describing what to log (see syslog.conf(5) for more details) and\n"
+"dev the device to report the log."
msgstr ""
+"Arguments: (arg, expr='*.*', dev='tty12')\n"
+"\n"
+"Enable/Disable syslog reports to console 12. \\fIexpr\\fP is the\n"
+"expression describing what to log (see syslog.conf(5) for more details) and\n"
+"dev the device to report the log."
-#: ../../services.pm_.c:65
+#: ../../security/help.pm:1
+#, c-format
msgid ""
-"PCMCIA support is usually to support things like ethernet and\n"
-"modems in laptops. It won't get started unless configured so it is safe to "
-"have\n"
-"it installed on machines that don't need it."
+"Arguments: (arg)\n"
+"\n"
+"Enable/Disable crontab and at for users. Put allowed users in /etc/cron."
+"allow and /etc/at.allow\n"
+"(see man at(1) and crontab(1))."
msgstr ""
+"Arguments: (arg)\n"
+"\n"
+"Enable/Disable crontab and at for users. Put allowed users in /etc/cron."
+"allow and /etc/at.allow\n"
+"(see man at(1) and crontab(1))."
-#: ../../services.pm_.c:68
+#: ../../security/help.pm:1
+#, c-format
msgid ""
-"The portmapper manages RPC connections, which are used by\n"
-"protocols such as NFS and NIS. The portmap server must be running on "
-"machines\n"
-"which act as servers for protocols which make use of the RPC mechanism."
+"Arguments: ()\n"
+"\n"
+"If SERVER_LEVEL (or SECURE_LEVEL if absent) is greater than 3\n"
+"in /etc/security/msec/security.conf, creates the symlink /etc/security/msec/"
+"server\n"
+"to point to /etc/security/msec/server.<SERVER_LEVEL>. The /etc/security/msec/"
+"server\n"
+"is used by chkconfig --add to decide to add a service if it is present in "
+"the file\n"
+"during the installation of packages."
msgstr ""
+"Arguments: ()\n"
+"\n"
+"If SERVER_LEVEL (or SECURE_LEVEL if absent) is greater than 3\n"
+"in /etc/security/msec/security.conf, creates the symlink /etc/security/msec/"
+"server\n"
+"to point to /etc/security/msec/server.<SERVER_LEVEL>. The /etc/security/msec/"
+"server\n"
+"is used by chkconfig --add to decide to add a service if it is present in "
+"the file\n"
+"during the installation of packages."
-#: ../../services.pm_.c:71
+#: ../../security/help.pm:1
+#, c-format
msgid ""
-"Postfix is a Mail Transport Agent, which is the program that moves mail from "
-"one machine to another."
+"Arguments: (arg)\n"
+"\n"
+"Authorize all services controlled by tcp_wrappers (see hosts.deny(5)) if "
+"\\fIarg\\fP = ALL. Only local ones\n"
+"if \\fIarg\\fP = LOCAL and none if \\fIarg\\fP = NONE. To authorize the "
+"services you need, use /etc/hosts.allow\n"
+"(see hosts.allow(5))."
msgstr ""
+"Arguments: (arg)\n"
+"\n"
+"Authorize all services controlled by tcp_wrappers (see hosts.deny(5)) if "
+"\\fIarg\\fP = ALL. Only local ones\n"
+"if \\fIarg\\fP = LOCAL and none if \\fIarg\\fP = NONE. To authorize the "
+"services you need, use /etc/hosts.allow\n"
+"(see hosts.allow(5))."
-#: ../../services.pm_.c:72
+#: ../../security/help.pm:1
+#, c-format
msgid ""
-"Saves and restores system entropy pool for higher quality random\n"
-"number generation."
+"Arguments: (arg)\n"
+"\n"
+"The argument specifies if clients are authorized to connect\n"
+"to the X server on the tcp port 6000 or not."
msgstr ""
+"Arguments: (arg)\n"
+"\n"
+"The argument specifies if clients are authorized to connect\n"
+"to the X server on the tcp port 6000 or not."
-#: ../../services.pm_.c:74
+#: ../../security/help.pm:1
+#, c-format
msgid ""
-"Assign raw devices to block devices (such as hard drive\n"
-"partitions), for the use of applications such as Oracle"
+"Arguments: (arg, listen_tcp=None)\n"
+"\n"
+"Allow/Forbid X connections. First arg specifies what is done\n"
+"on the client side: ALL (all connections are allowed), LOCAL (only\n"
+"local connection) and NONE (no connection)."
msgstr ""
+"Arguments: (arg, listen_tcp=None)\n"
+"\n"
+"Allow/Forbid X connections. First arg specifies what is done\n"
+"on the client side: ALL (all connections are allowed), LOCAL (only\n"
+"local connection) and NONE (no connection)."
-#: ../../services.pm_.c:76
+#: ../../security/help.pm:1
+#, c-format
msgid ""
-"The routed daemon allows for automatic IP router table updated via\n"
-"the RIP protocol. While RIP is widely used on small networks, more complex\n"
-"routing protocols are needed for complex networks."
+"Arguments: (arg)\n"
+"\n"
+"Allow/Forbid the list of users on the system on display managers (kdm and "
+"gdm)."
msgstr ""
+"Arguments: (arg)\n"
+"\n"
+"Allow/Forbid the list of users on the system on display managers (kdm and "
+"gdm)."
-#: ../../services.pm_.c:79
+#: ../../security/help.pm:1
+#, c-format
msgid ""
-"The rstat protocol allows users on a network to retrieve\n"
-"performance metrics for any machine on that network."
+"Arguments: (arg)\n"
+"\n"
+"Allow/Forbid direct root login."
msgstr ""
+"Arguments: (arg)\n"
+"\n"
+"Allow/Forbid direct root login."
-#: ../../services.pm_.c:81
+#: ../../security/help.pm:1
+#, c-format
msgid ""
-"The rusers protocol allows users on a network to identify who is\n"
-"logged in on other responding machines."
+"Arguments: (arg)\n"
+"\n"
+"Allow/Forbid remote root login."
msgstr ""
+"Arguments: (arg)\n"
+"\n"
+"Allow/Forbid remote root login."
-#: ../../services.pm_.c:83
+#: ../../security/help.pm:1
+#, c-format
msgid ""
-"The rwho protocol lets remote users get a list of all of the users\n"
-"logged into a machine running the rwho daemon (similiar to finger)."
+"Arguments: (arg)\n"
+"\n"
+"Allow/Forbid reboot by the console user."
msgstr ""
+"Arguments: (arg)\n"
+"\n"
+"Allow/Forbid reboot by the console user."
-#: ../../services.pm_.c:85
-msgid "Launch the sound system on your machine"
+#: ../../security/help.pm:1
+#, c-format
+msgid ""
+"Arguments: (arg)\n"
+"\n"
+"If \\fIarg\\fP = ALL allow /etc/issue and /etc/issue.net to exist. If \\fIarg"
+"\\fP = NONE no issues are\n"
+"allowed else only /etc/issue is allowed."
msgstr ""
+"Arguments: (arg)\n"
+"\n"
+"If \\fIarg\\fP = ALL allow /etc/issue and /etc/issue.net to exist. If \\fIarg"
+"\\fP = NONE no issues are\n"
+"allowed else only /etc/issue is allowed."
-#: ../../services.pm_.c:86
+#: ../../security/help.pm:1
+#, c-format
msgid ""
-"Syslog is the facility by which many daemons use to log messages\n"
-"to various system log files. It is a good idea to always run syslog."
+"Arguments: (arg)\n"
+"\n"
+"Allow/Forbid autologin."
msgstr ""
+"Arguments: (arg)\n"
+"\n"
+"Allow/Forbid autologin."
-#: ../../services.pm_.c:88
-msgid "Load the drivers for your usb devices."
+#: ../../security/help.pm:1
+#, c-format
+msgid ""
+"Arguments: (arg)\n"
+"\n"
+" Accept/Refuse icmp echo."
msgstr ""
+"Arguments: (arg)\n"
+"\n"
+" Accept/Refuse icmp echo."
-#: ../../services.pm_.c:89
-msgid "Starts the X Font Server (this is mandatory for XFree to run)."
+#: ../../security/help.pm:1
+#, c-format
+msgid ""
+"Arguments: (arg)\n"
+"\n"
+" Accept/Refuse broadcasted icmp echo."
msgstr ""
+"Arguments: (arg)\n"
+"\n"
+" Accept/Refuse broadcasted icmp echo."
-#: ../../services.pm_.c:115 ../../services.pm_.c:157
-msgid "Choose which services should be automatically started at boot time"
+#: ../../security/help.pm:1
+#, c-format
+msgid ""
+"Arguments: (arg)\n"
+"\n"
+"Accept/Refuse bogus IPv4 error messages."
msgstr ""
+"Arguments: (arg)\n"
+"\n"
+"Accept/Refuse bogus IPv4 error messages."
-#: ../../services.pm_.c:127
-msgid "Printing"
-msgstr ""
+#: ../../security/level.pm:1
+#, c-format
+msgid "Security Administrator (login or email)"
+msgstr "مدير النظام (اسم الدخول أو البردي الألكتروني)"
-#: ../../services.pm_.c:128
-msgid "Internet"
-msgstr "إنترنت"
+#: ../../security/level.pm:1
+#, c-format
+msgid ""
+"A library which defends against buffer overflow and format string attacks."
+msgstr "مكتبة تحمي من هجمات buffer overflow و format string"
-#: ../../services.pm_.c:131
-msgid "File sharing"
-msgstr ""
+#: ../../security/level.pm:1
+#, c-format
+msgid "Use libsafe for servers"
+msgstr "إستخدم libsafe للملقمات"
-#: ../../services.pm_.c:133 ../../standalone/drakbackup_.c:1709
-msgid "System"
-msgstr "نظام"
+#: ../../security/level.pm:1
+#, c-format
+msgid "Security level"
+msgstr "مستوى الأمن"
-#: ../../services.pm_.c:138
-msgid "Remote Administration"
-msgstr ""
+#: ../../security/level.pm:1
+#, c-format
+msgid "Please choose the desired security level"
+msgstr "فضلاً اختر مستوى الأمن الذي تريده"
-#: ../../services.pm_.c:146
-msgid "Database Server"
-msgstr "خادم قواعد بيانات"
+#: ../../security/level.pm:1
+#, c-format
+msgid "DrakSec Basic Options"
+msgstr "خيارات DrakSec الأساسية"
-#: ../../services.pm_.c:175
+#: ../../security/level.pm:1
#, c-format
-msgid "Services: %d activated for %d registered"
+msgid ""
+"This is similar to the previous level, but the system is entirely closed and "
+"security features are at their maximum."
msgstr ""
-#: ../../services.pm_.c:191
-msgid "Services"
-msgstr "الخدمات"
-
-#: ../../services.pm_.c:203
-msgid "running"
+#: ../../security/level.pm:1
+#, c-format
+msgid ""
+"With this security level, the use of this system as a server becomes "
+"possible.\n"
+"The security is now high enough to use the system as a server which can "
+"accept\n"
+"connections from many clients. Note: if your machine is only a client on the "
+"Internet, you should choose a lower level."
msgstr ""
-#: ../../services.pm_.c:203
-msgid "stopped"
+#: ../../security/level.pm:1
+#, c-format
+msgid ""
+"There are already some restrictions, and more automatic checks are run every "
+"night."
msgstr ""
-#: ../../services.pm_.c:217
-msgid "Services and deamons"
+#: ../../security/level.pm:1
+#, c-format
+msgid ""
+"This is the standard security recommended for a computer that will be used "
+"to connect to the Internet as a client."
msgstr ""
-#: ../../services.pm_.c:222
+#: ../../security/level.pm:1
+#, c-format
msgid ""
-"No additional information\n"
-"about this service, sorry."
+"Passwords are now enabled, but use as a networked computer is still not "
+"recommended."
msgstr ""
-#: ../../services.pm_.c:229
-msgid "On boot"
+#: ../../security/level.pm:1
+#, c-format
+msgid ""
+"This level is to be used with care. It makes your system more easy to use,\n"
+"but very sensitive. It must not be used for a machine connected to others\n"
+"or to the Internet. There is no password access."
msgstr ""
-#: ../../services.pm_.c:241
-msgid "Start"
-msgstr "ابدأ"
+#: ../../security/level.pm:1
+#, c-format
+msgid "Paranoid"
+msgstr "مرتفع جدا"
-#: ../../services.pm_.c:241
-msgid "Stop"
-msgstr "توقف"
+#: ../../security/level.pm:1
+#, c-format
+msgid "Higher"
+msgstr "مرتفع أكثر"
-#: ../../share/advertising/01-thanks.pl_.c:9
-msgid "Thank you for choosing Mandrake Linux 9.0"
-msgstr ""
+#: ../../security/level.pm:1
+#, c-format
+msgid "High"
+msgstr "مرتفع"
-#: ../../share/advertising/01-thanks.pl_.c:10
-msgid "Welcome to the Open Source world"
-msgstr ""
+#: ../../security/level.pm:1
+#, c-format
+msgid "Poor"
+msgstr "فقير"
+
+#: ../../security/level.pm:1
+#, c-format
+msgid "Welcome To Crackers"
+msgstr "مرحبا بالمخترقين"
-#: ../../share/advertising/01-thanks.pl_.c:11
+#: ../../share/advertising/01-thanks.pl:1
+#, c-format
msgid ""
"The success of MandrakeSoft is based upon the principle of Free Software. "
"Your new operating system is the result of collaborative work on the part of "
"the worldwide Linux Community"
msgstr ""
+"نجاح MandrakeSoft مبني على مبدأ حرية البرامح. نظام التشغيل الجديد الخاص بك "
+"هو نتيجة للتعاون و العمل الجاد من جزء من مجتمع لينكس حول العالم"
-#: ../../share/advertising/02-community.pl_.c:9
-msgid "Get involved in the Free Software world"
-msgstr ""
+#: ../../share/advertising/01-thanks.pl:1
+#, c-format
+msgid "Welcome to the Open Source world"
+msgstr "أهلاً بك في عالم المصادر المفتوحة"
-#: ../../share/advertising/02-community.pl_.c:10
-msgid "Want to know more about the Open Source community?"
-msgstr ""
+#: ../../share/advertising/01-thanks.pl:1
+#, c-format
+msgid "Thank you for choosing Mandrake Linux 9.1"
+msgstr "شكراً لاختيارك Mandrake Linux 9.1"
-#: ../../share/advertising/02-community.pl_.c:11
+#: ../../share/advertising/02-community.pl:1
+#, c-format
msgid ""
"To share your own knowledge and help build Linux tools, join the discussion "
"forums you'll find on our \"Community\" webpages"
msgstr ""
+"لمشاركتنا بمعرفتك و للمساعدة في بناء أدوات لينكس, انضم الى منتديات النقاش "
+"التي ستجدها في صفحة \"Community\" على موقعنا"
-#: ../../share/advertising/03-internet.pl_.c:9
-#, fuzzy
-msgid "Get the most from the Internet"
-msgstr "وصّل إلى الإنترنت "
+#: ../../share/advertising/02-community.pl:1
+#, c-format
+msgid "Want to know more about the Open Source community?"
+msgstr "هل تريد معرفة المزيد عن مجتمع المصادر المفتوحة؟"
+
+#: ../../share/advertising/02-community.pl:1
+#, c-format
+msgid "Get involved in the Free Software world"
+msgstr "كن جزءاً من عالم البرمجيات الحرة"
-#: ../../share/advertising/03-internet.pl_.c:10
+#: ../../share/advertising/03-internet.pl:1
+#, c-format
msgid ""
-"Mandrake Linux 9.0 has selected the best software for you. Surf the Web and "
+"Mandrake Linux 9.1 has selected the best software for you. Surf the Web and "
"view animations with Mozilla and Konqueror, or read your mail and handle "
"your personal information with Evolution and Kmail"
msgstr ""
+"اختار Mandrake Linux 9.1 أفضل البرامج لك. تصفح الإنترنت و استعرض الصر "
+"المتحركة باستخدام موزيللا و كونكيورر, أو اقرأ بريدك الألكتروني و تعامل مع "
+"معلوماتك الشخصية باستخدام KMail و Evolution"
-#: ../../share/advertising/04-multimedia.pl_.c:9
-msgid "Discover the most up-to-date graphical and multimedia tools!"
+#: ../../share/advertising/03-internet.pl:1
+#, c-format
+msgid "Get the most from the Internet"
+msgstr "احصل على ما تريد من الإنترنت"
+
+#: ../../share/advertising/04-multimedia.pl:1
+#, c-format
+msgid ""
+"Mandrake Linux 9.1 enables you to use the very latest software to play audio "
+"files, edit and handle your images or photos, and play videos"
msgstr ""
+"Mandrake Linux 9.1 يمكّنك من استخدام آخر اصدارات البرامج لتشغيل الملفات "
+"الصوتية, و تحرير الصور, و تشغيل ملفات الفيديو"
-#: ../../share/advertising/04-multimedia.pl_.c:10
+#: ../../share/advertising/04-multimedia.pl:1
+#, c-format
msgid "Push multimedia to its limits!"
-msgstr ""
+msgstr "استمتع بالوسائط المتعددة الى أقصى حد!"
+
+#: ../../share/advertising/04-multimedia.pl:1
+#, c-format
+msgid "Discover the most up-to-date graphical and multimedia tools!"
+msgstr "اكتشف أحدث أدوات الوسائط المتعددة و برامج الرسم!"
-#: ../../share/advertising/04-multimedia.pl_.c:11
+#: ../../share/advertising/05-games.pl:1
+#, c-format
msgid ""
-"Mandrake Linux 9.0 enables you to use the very latest software to play audio "
-"files, edit and handle your images or photos, and play videos"
+"Mandrake Linux 9.1 provides the best Open Source games - arcade, action, "
+"strategy, ..."
msgstr ""
+"Mandrake Linux 9.1 يوفر أفضل الألعاب مفتوحة المصدر - أركيد, حركة, "
+"استراتيجية, ..."
-#: ../../share/advertising/05-games.pl_.c:9
+#: ../../share/advertising/05-games.pl:1
+#, c-format
msgid "Games"
msgstr "الالعاب"
-#: ../../share/advertising/05-games.pl_.c:10
-#, fuzzy
+#: ../../share/advertising/06-mcc.pl:1
+#, c-format
msgid ""
-"Mandrake Linux 9.0 provides the best Open Source games - arcade, action, "
-"strategy, ..."
-msgstr ""
-" يمدّون أفضل لعب بمصادر مفتوحة Mandrake Linux 9.0 - arcade, action, "
-"cards, sports, strategy,...."
+"Mandrake Linux 9.1 provides a powerful tool to fully customize and configure "
+"your machine"
+msgstr "يوفر Mandrake Linux 9.1 أداة قوية لتخصيص و تهيئة جهازك"
-#: ../../share/advertising/06-mcc.pl_.c:9 ../../standalone/drakbug_.c:49
+#: ../../share/advertising/06-mcc.pl:1 ../../standalone/drakbug:1
+#, c-format
msgid "Mandrake Control Center"
msgstr "مركز تحكم Mandrake"
-#: ../../share/advertising/06-mcc.pl_.c:10
+#: ../../share/advertising/07-desktop.pl:1
+#, c-format
msgid ""
-"Mandrake Linux 9.0 provides a powerful tool to fully customize and configure "
-"your machine"
+"Mandrake Linux 9.1 provides you with 11 user interfaces that can be fully "
+"modified: KDE 3, Gnome 2, WindowMaker, ..."
msgstr ""
+"يوفر Mandrake Linux 9.1 11 واجهة استخدام يمكن تعديلها كاملةً: كيدي 3, جنوم 2, "
+"WindowsMaker, ..."
-#: ../../share/advertising/07-desktop.pl_.c:9
+#: ../../share/advertising/07-desktop.pl:1
+#, c-format
msgid "User interfaces"
msgstr "واجهات الإستخدام"
-#: ../../share/advertising/07-desktop.pl_.c:10
-msgid ""
-"Mandrake Linux 9.0 provides you with 11 user interfaces that can be fully "
-"modified: KDE 3, Gnome 2, WindowMaker, ..."
-msgstr ""
-
-#: ../../share/advertising/08-development.pl_.c:9
-msgid "Development simplified"
-msgstr ""
-
-#: ../../share/advertising/08-development.pl_.c:10
-msgid "Mandrake Linux 9.0 is the ultimate development platform"
-msgstr ""
-
-#: ../../share/advertising/08-development.pl_.c:11
+#: ../../share/advertising/08-development.pl:1
+#, c-format
msgid ""
"Use the full power of the GNU gcc 3 compiler as well as the best Open Source "
"development environments"
msgstr ""
+"استفيد من كل قوة المترجم GNU gcc 3 بالإضافة الى أفضل بيئات التطوير مفتوحة "
+"المصادر"
-#: ../../share/advertising/09-server.pl_.c:9
-msgid "Turn your machine into a reliable server"
-msgstr ""
+#: ../../share/advertising/08-development.pl:1
+#, c-format
+msgid "Mandrake Linux 9.1 is the ultimate development platform"
+msgstr "Mandrake Linux 9.1 هي البيئة الأمثل لتطوير البرامج"
-#: ../../share/advertising/09-server.pl_.c:10
-#, fuzzy
+#: ../../share/advertising/08-development.pl:1
+#, c-format
+msgid "Development simplified"
+msgstr "البرمجة ولا أسهل"
+
+#: ../../share/advertising/09-server.pl:1
+#, c-format
msgid ""
"Transform your machine into a powerful Linux server with a few clicks of "
"your mouse: Web server, mail, firewall, router, file and print server, ..."
msgstr ""
-"حوّل ماكينتك إلى خادم قويّ مع/ب فقط نقرات قليلة من ال الفأرة : خادم الويب , "
-"البريد الإلكترونيّ , فيروول , الحفّار , الملفّ و خادم الطّبع ,"
+"حوّل جهازك الى خادم لينكس قوي بنقرات قليلة من الفأرة: خادم ويب, بريد, جدار "
+"ناري, موجّه, خادم ملفات و طباعة, ..."
-#: ../../share/advertising/10-mnf.pl_.c:9
-msgid "Optimize your security"
-msgstr ""
+#: ../../share/advertising/09-server.pl:1
+#, c-format
+msgid "Turn your machine into a reliable server"
+msgstr "اجعل جهازك خادماً يعتمد عليه"
-#: ../../share/advertising/10-mnf.pl_.c:10
-msgid ""
-"The MandrakeSecurity range includes the Multi Network Firewall product (M.N."
-"F.)"
-msgstr ""
+#: ../../share/advertising/10-mnf.pl:1
+#, c-format
+msgid "This product is available on MandrakeStore website"
+msgstr "هذا المنتج متوفر على موقع MandrakeStore"
-#: ../../share/advertising/10-mnf.pl_.c:11
+#: ../../share/advertising/10-mnf.pl:1
+#, c-format
msgid ""
"This firewall product includes network features that allow you to fulfill "
"all your security needs"
msgstr ""
+"منتج الجدار الناري هذا يحتوي على مزايا للشبكة توفر كل احتياجاتك الأمنية"
-#: ../../share/advertising/10-mnf.pl_.c:12
-msgid "This product is available on MandrakeStore website"
-msgstr ""
+#: ../../share/advertising/10-mnf.pl:1
+#, c-format
+msgid ""
+"The MandrakeSecurity range includes the Multi Network Firewall product (M.N."
+"F.)"
+msgstr "منتجات MandrakeSecurity تتضمن Multi Network Firewall (M.N.F.)"
-#: ../../share/advertising/11-mdkstore.pl_.c:9
-msgid "The official MandrakeSoft store"
-msgstr ""
+#: ../../share/advertising/10-mnf.pl:1
+#, c-format
+msgid "Optimize your security"
+msgstr "حسّن مستوى الأمن"
-#: ../../share/advertising/11-mdkstore.pl_.c:10
+#: ../../share/advertising/11-mdkstore.pl:1
+#, c-format
msgid ""
"Our full range of Linux solutions, as well as special offers on products and "
"other \"goodies,\" are available online on our e-store:"
msgstr ""
+"خياراتنا الكثير من حلول نظام لينكس بالإضافة الى العروض الخاصة و المنتجات "
+"الأخرىى متوفرة في متجرنا الألكتروني:"
-#: ../../share/advertising/12-mdkstore.pl_.c:9
-msgid "Strategic partners"
-msgstr ""
+#: ../../share/advertising/11-mdkstore.pl:1
+#, c-format
+msgid "The official MandrakeSoft store"
+msgstr "متجر MandrakeSoft الرسمي"
-#: ../../share/advertising/12-mdkstore.pl_.c:10
+#: ../../share/advertising/12-mdkstore.pl:1
+#, c-format
msgid ""
"MandrakeSoft works alongside a selection of companies offering professional "
"solutions compatible with Mandrake Linux. A list of these partners is "
"available on the MandrakeStore"
msgstr ""
+"MandrakeSoft تعمل جنباً الى جنب مع أفضل الشركات التي توفر حلول لحترافية "
+"متوافقة مع Mandrake Linux. توجد قائمة بهؤلاء الشركاء في MandrakeStore"
-#: ../../share/advertising/13-mdkcampus.pl_.c:9
-msgid "Discover MandrakeSoft's training catalogue Linux-Campus"
-msgstr ""
-
-#: ../../share/advertising/13-mdkcampus.pl_.c:10
-msgid ""
-"The training program has been created to respond to the needs of both end "
-"users and experts (Network and System administrators)"
-msgstr ""
-
-#: ../../share/advertising/13-mdkcampus.pl_.c:11
-msgid "Certify yourself on Linux"
-msgstr ""
+#: ../../share/advertising/12-mdkstore.pl:1
+#, c-format
+msgid "Strategic partners"
+msgstr "شركاؤنا الاستراتيجيون"
-#: ../../share/advertising/13-mdkcampus.pl_.c:12
+#: ../../share/advertising/13-mdkcampus.pl:1
+#, c-format
msgid ""
"Whether you choose to teach yourself online or via our network of training "
"partners, the Linux-Campus catalogue prepares you for the acknowledged LPI "
"certification program (worldwide professional technical certification)"
msgstr ""
+"سواء اخترت أن تعلم نفسك بنفسك عبر الإنترنت أو عبر شبكتنا من شركاءنا في مجال "
+"التبريد, يحضرك دليل Linux-Campus لبرنامج شهادة LPI المعترف يها في جميع "
+"أنحاء العالم."
-#: ../../share/advertising/14-mdkexpert.pl_.c:9
-#, fuzzy
-msgid "Become a MandrakeExpert"
-msgstr "MandrakeExpert"
+#: ../../share/advertising/13-mdkcampus.pl:1
+#, c-format
+msgid "Certify yourself on Linux"
+msgstr "احصل على شهادة معتمدة في لينكس"
-#: ../../share/advertising/14-mdkexpert.pl_.c:10
+#: ../../share/advertising/13-mdkcampus.pl:1
+#, c-format
msgid ""
-"Find the solutions of your problems via MandrakeSoft's online support "
-"platform"
+"The training program has been created to respond to the needs of both end "
+"users and experts (Network and System administrators)"
msgstr ""
+"تم عمل برنامج التدريب كي يستجيب الى احتياجات كلٍ من المستخدمين و الخبراء "
+"(مدراء الشبكة و الأنظمة)"
-#: ../../share/advertising/14-mdkexpert.pl_.c:11
+#: ../../share/advertising/13-mdkcampus.pl:1
+#, c-format
+msgid "Discover MandrakeSoft's training catalogue Linux-Campus"
+msgstr "اكتشف دليل تدريب MandrakeSoft Linux-Campus"
+
+#: ../../share/advertising/14-mdkexpert.pl:1
+#, c-format
msgid ""
"Join the MandrakeSoft support teams and the Linux Community online to share "
"your knowledge and help others by becoming a recognized Expert on the online "
"technical support website:"
msgstr ""
+"التحق بفريق الدعم الفني في MandrakeSoft و مجتمع لينكس على الإنترنت لمشاركة "
+"معلوماتك و مساعدة الآخرين بأن تصبح خبيراً معتمَداً في موقعنا للدعم الفني على "
+"الإنترنت:"
-#: ../../share/advertising/15-mdkexpert-corporate.pl_.c:9
-#, fuzzy
-msgid "MandrakeExpert Corporate"
-msgstr "MandrakeExpert"
-
-#: ../../share/advertising/15-mdkexpert-corporate.pl_.c:10
-msgid "An online platform to respond to company's specific support needs"
+#: ../../share/advertising/14-mdkexpert.pl:1
+#, c-format
+msgid ""
+"Find the solutions of your problems via MandrakeSoft's online support "
+"platform"
msgstr ""
+"اعثر على حلول لمشاكلك باستخدام بيئة الدعم الفني على الإنترنت في MandrakeSoft"
-#: ../../share/advertising/15-mdkexpert-corporate.pl_.c:11
+#: ../../share/advertising/14-mdkexpert.pl:1
+#, c-format
+msgid "Become a MandrakeExpert"
+msgstr "كن خبيراً في MandrakeExpert"
+
+#: ../../share/advertising/15-mdkexpert-corporate.pl:1
+#, c-format
msgid ""
"All incidents will be followed up by a single qualified MandrakeSoft "
"technical expert."
-msgstr ""
+msgstr "كل مشكلة سيتم تتبعها من خبير واحد معتمد من MandrakeSoft."
-#: ../../share/advertising/17-mdkclub.pl_.c:9
-msgid "Discover MandrakeClub and Mandrake Corporate Club"
-msgstr ""
+#: ../../share/advertising/15-mdkexpert-corporate.pl:1
+#, c-format
+msgid "An online platform to respond to company's specific support needs"
+msgstr "بيئة على الإنترنت للإستجابة لاحتياجات الدعم الفني للشركات"
-#: ../../share/advertising/17-mdkclub.pl_.c:10
+#: ../../share/advertising/15-mdkexpert-corporate.pl:1
+#, c-format
+msgid "MandrakeExpert Corporate"
+msgstr "MandrakeExpert للشركات"
+
+#: ../../share/advertising/17-mdkclub.pl:1
+#, c-format
msgid ""
"MandrakeClub and Mandrake Corporate Club were created for business and "
"private users of Mandrake Linux who would like to directly support their "
@@ -8520,238 +12742,252 @@ msgid ""
"competititve edge, if you want to support Mandrake Linux development, join "
"MandrakeClub!"
msgstr ""
+"تم انشاء MandrakeClub و Mandrake Corporate Club للشركات و المستخدمين الأفراد "
+"الذين يريدون دعم توزيعة لينكس المفضلة لديهم بشكل مباشر مع تمتعهم بمزايا "
+"خاصة. اذا كانت منتجاتنا قد حازت على اعجابك, اذا كانت شركتك تستفيد من "
+"منتجاتنا و تساعدها على زيادة قدرتها التنافسية, اذا كنت تريد دعم تطوير "
+"Mandrake Linux, التحق بنادي MandrakeClub!"
-#: ../../standalone.pm_.c:21
-#, fuzzy
-msgid ""
-"This program is free software; you can redistribute it and/or modify\n"
-"it under the terms of the GNU General Public License as published by\n"
-"the Free Software Foundation; either version 2, or (at your option)\n"
-"any later version.\n"
-"\n"
-"This program is distributed in the hope that it will be useful,\n"
-"but WITHOUT ANY WARRANTY; without even the implied warranty of\n"
-"MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n"
-"GNU General Public License for more details.\n"
-"\n"
-"You should have received a copy of the GNU General Public License\n"
-"along with this program; if not, write to the Free Software\n"
-"Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.\n"
-msgstr ""
-" هذا البرنامج هو برنامج حر; يمكنك اعادة توزيعة و/أو تعديله\n"
-" تحت بنود رخصة GNU العمومية الشاملة (GPL) كما نُشِرت عن طريق\n"
-" جمعية البرمجيات الحرة; إما اإصدار الثاني من الترخيص أو\n"
-" أي نسخة تالية (حسب اختيارك).\n"
-"\n"
-" هذا البرنامج يُوزَّع على أمل أن يكون مفيدا,\n"
-" لكن دون أي ضمان’; حتى بدون الضمانة المفهومة\n"
-" للإتجار أو المناسبة لغرض معين. انظر\n"
-" رخصة GNU العمومية الشاملة للتفاصيل.\n"
-"\n"
-" يجب أن تكون قد تسلمت نسخة من ترخيص GNU العمومية الشاملة\n"
-" مع البرنامج; في حالة عدم تسلم الرخصة راسل جمعية البرمجيات الحرة على العنوان "
-"التالي\n"
-" Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA "
-"02111-1307,\n"
-" USA."
+#: ../../share/advertising/17-mdkclub.pl:1
+#, c-format
+msgid "Discover MandrakeClub and Mandrake Corporate Club"
+msgstr "اكتشف MandrakeClub للأفراد و Mandrake Corporate Club للشركات"
-#: ../../standalone.pm_.c:40
-msgid ""
-"[--config-info] [--daemon] [--debug] [--default] [--show-conf]\n"
-"Backup and Restore application\n"
-"\n"
-"--default : save default directories.\n"
-"--debug : show all debug messages.\n"
-"--show-conf : list of files or directories to backup.\n"
-"--config-info : explain configuration file options (for non-X "
-"users).\n"
-"--daemon : use daemon configuration. \n"
-"--help : show this message.\n"
-"--version : show version name.\n"
-msgstr ""
+#: ../../standalone/XFdrake:1
+#, c-format
+msgid "Please relog into %s to activate the changes"
+msgstr "يرجى اعادة تسجيل الدخول الى %s لتنشيط التغييرات"
-#: ../../standalone.pm_.c:51
-msgid ""
-"[OPTIONS] [PROGRAM_NAME]\n"
-"\n"
-"OPTIONS:\n"
-" --help - print this help message.\n"
-" --report - program should be one of mandrake tools\n"
-" --incident - program should be one of mandrake tools"
-msgstr ""
+#: ../../standalone/XFdrake:1
+#, c-format
+msgid "Please log out and then use Ctrl-Alt-BackSpace"
+msgstr "يرجى تسجيل الخروج ثم استخدم Ctrl-Alt-BackSpace"
-#: ../../standalone.pm_.c:57
-msgid ""
-"Font Importation and monitoring "
-"application \n"
-"--windows_import : import from all available windows partitions.\n"
-"--xls_fonts : show all fonts that already exist from xls\n"
-"--strong : strong verification of font.\n"
-"--install : accept any font file and any directry.\n"
-"--uninstall : uninstall any font or any directory of font.\n"
-"--replace : replace all font if already exist\n"
-"--application : 0 none application.\n"
-" : 1 all application available supported.\n"
-" : name_of_application like so for staroffice \n"
-" : and gs for ghostscript for only this one."
-msgstr ""
+#: ../../standalone/drakTermServ:1
+#, c-format
+msgid "/etc/hosts.allow and /etc/hosts.deny already configured - not changed"
+msgstr "/etc/hosts.allow و /etc/hosts.deny معدّان مسبقاً - لم يتم التغيير"
-#: ../../standalone.pm_.c:68
-msgid ""
-"[OPTIONS]...\n"
-"\t --debug print debugging information"
-msgstr ""
+#: ../../standalone/drakTermServ:1
+#, c-format
+msgid "Need to create /etc/dhcpd.conf first!"
+msgstr "لا حاجة الى انشاء /etc/dhcpd.conf أولاً!"
-#: ../../standalone.pm_.c:70
-msgid ""
-"[OPTIONS]...\n"
-"Mandrake Terminal Server Configurator\n"
-"--enable : enable MTS\n"
-"--disable : disable MTS\n"
-"--start : start MTS\n"
-"--stop : stop MTS\n"
-"--adduser : add an existing system user to MTS (requires username)\n"
-"--deluser : delete an existing system user from MTS (requires "
-"username)\n"
-"--addclient : add a client machine to MTS (requires MAC address, IP, "
-"nbi image name)\n"
-"--delclient : delete a client machine from MTS (requires MAC address, "
-"IP, nbi image name)"
-msgstr ""
+#: ../../standalone/drakTermServ:1
+#, c-format
+msgid "Something went wrong! - Is mkisofs installed?"
+msgstr "حصل شئ خطأ! - هل تم تثبيت mkisofs?"
-#: ../../standalone.pm_.c:82
-#, fuzzy
-msgid "[keyboard]"
-msgstr "لوحة المفاتيح"
+#: ../../standalone/drakTermServ:1
+#, c-format
+msgid "Etherboot ISO image is %s"
+msgstr "Etherboot ISO image هي %s"
-#: ../../standalone.pm_.c:83
-msgid "[--file=myfyle] [--word=myword] [--explain=regexp] [--alert]"
-msgstr ""
+#: ../../standalone/drakTermServ:1
+#, c-format
+msgid "No floppy drive available!"
+msgstr "لا توجد سواقة قرص مرن!"
-#: ../../standalone.pm_.c:84
-msgid ""
-"[OPTIONS]\n"
-"Network & Internet connection and monitoring application\n"
-"\n"
-"--defaultintf interface : show this interface by default\n"
-"--connect : connect to internet if not already connected\n"
-"--disconnect : disconnect to internet if already connected\n"
-"--force : used with (dis)connect : force (dis)connection.\n"
-"--status : returns 1 if connected 0 otherwise, then exit.\n"
-"--quiet : don't be interactive. To be used with (dis)connect."
-msgstr ""
+#: ../../standalone/drakTermServ:1
+#, c-format
+msgid "Floppy can be removed now"
+msgstr "يمكن ازالة القرص المرن الآن"
-#: ../../standalone.pm_.c:93
-msgid " [--skiptest] [--cups] [--lprng] [--lpd] [--pdq]"
-msgstr ""
+#: ../../standalone/drakTermServ:1
+#, c-format
+msgid "Couldn't access the floppy!"
+msgstr "تعذر الوصول الى القرص المرن!"
-#: ../../standalone.pm_.c:94
-msgid ""
-"[OPTION]...\n"
-" --no-confirmation don't ask first confirmation question in "
-"MandrakeUpdate mode\n"
-" --no-verify-rpm don't verify packages signatures\n"
-" --changelog-first display changelog before filelist in the "
-"description window\n"
-" --merge-all-rpmnew propose to merge all .rpmnew/.rpmsave files found"
-msgstr ""
+#: ../../standalone/drakTermServ:1
+#, c-format
+msgid "Please insert floppy disk:"
+msgstr "فضلاً أدخل قرص مرن:"
-#: ../../standalone.pm_.c:99
-msgid ""
-"[--manual] [--device=dev] [--update-sane=sane_desc_dir] [--update-usbtable] "
-"[--dynamic=dev]"
-msgstr ""
+#: ../../standalone/drakTermServ:1
+#, c-format
+msgid "Write Config"
+msgstr "اكتب الإعدادات"
-#: ../../standalone.pm_.c:100
-msgid ""
-" [everything]\n"
-" XFdrake [--noauto] monitor\n"
-" XFdrake resolution"
-msgstr ""
+#: ../../standalone/drakTermServ:1
+#, c-format
+msgid "Dynamic IP Address Pool:"
+msgstr "Dynamic IP Address Pool:"
-#: ../../standalone.pm_.c:114
+#: ../../standalone/drakTermServ:1
#, c-format
msgid ""
-"\n"
-"Usage: %s [--auto] [--beginner] [--expert] [-h|--help] [--noauto] [--"
-"testing] [-v|--version] "
+"Most of these values were extracted\n"
+"from your running system.\n"
+"You can modify as needed."
msgstr ""
-#: ../../standalone.pm_.c:168
-msgid "Installing packages..."
-msgstr "تركيب طرود ..."
+#: ../../standalone/drakTermServ:1
+#, c-format
+msgid "dhcpd Server Configuration"
+msgstr "تهيئة خادم dhcpd"
-#: ../../standalone/XFdrake_.c:138
-msgid "Please log out and then use Ctrl-Alt-BackSpace"
-msgstr "يرجى تسجيل الخروج ثم استخدم Ctrl-Alt-BackSpace"
+#: ../../standalone/drakTermServ:1
+#, c-format
+msgid "IP Range End:"
+msgstr "IP Range End:"
-#: ../../standalone/XFdrake_.c:142
+#: ../../standalone/drakTermServ:1
#, c-format
-msgid "Please relog into %s to activate the changes"
-msgstr "يرجى اعادة تسجيل الدخول الى %s لتنشيط التغييرات"
+msgid "IP Range Start:"
+msgstr "IP Range Start:"
-#: ../../standalone/drakTermServ_.c:239
-#, fuzzy
-msgid "Mandrake Terminal Server Configuration"
-msgstr "نقل إعدادات الطابعة"
+#: ../../standalone/drakTermServ:1
+#, c-format
+msgid "Name Servers:"
+msgstr "خادمات الإسم:"
-#: ../../standalone/drakTermServ_.c:253
-#, fuzzy
-msgid "Enable Server"
-msgstr "خادم قواعد بيانات"
+#: ../../standalone/drakTermServ:1
+#, c-format
+msgid "Domain Name:"
+msgstr "اسم النطاق:"
-#: ../../standalone/drakTermServ_.c:260
-#, fuzzy
-msgid "Disable Server"
-msgstr "خادم قواعد بيانات"
+#: ../../standalone/drakTermServ:1
+#, c-format
+msgid "Broadcast Address:"
+msgstr "عنوان Broadcast:"
-#: ../../standalone/drakTermServ_.c:268
-#, fuzzy
-msgid "Start Server"
-msgstr " الخادم NIS"
+#: ../../standalone/drakTermServ:1
+#, c-format
+msgid "Subnet Mask:"
+msgstr "Subnet Mask:"
-#: ../../standalone/drakTermServ_.c:275
-#, fuzzy
-msgid "Stop Server"
-msgstr " الخادم NIS"
+#: ../../standalone/drakTermServ:1
+#, c-format
+msgid "Routers:"
+msgstr "الموجهات:"
-#: ../../standalone/drakTermServ_.c:283
-msgid "Etherboot Floppy/ISO"
-msgstr ""
+#: ../../standalone/drakTermServ:1
+#, c-format
+msgid "Netmask:"
+msgstr "Netmask:"
-#: ../../standalone/drakTermServ_.c:288
-msgid "Net Boot Images"
+#: ../../standalone/drakTermServ:1
+#, c-format
+msgid "Subnet:"
+msgstr "Subnet:"
+
+#: ../../standalone/drakTermServ:1
+#, c-format
+msgid ""
+"Need to restart the Display Manager for full changes to take effect. \n"
+"(service dm restart - at the console)"
msgstr ""
-#: ../../standalone/drakTermServ_.c:294
-#, fuzzy
-msgid "Add/Del Users"
-msgstr "اضف مستخدم"
+#: ../../standalone/drakTermServ:1
+#, c-format
+msgid "dhcpd Config..."
+msgstr "تهيئة dhcpd..."
-#: ../../standalone/drakTermServ_.c:299
-#, fuzzy
-msgid "Add/Del Clients"
-msgstr "DHCP العميل"
+#: ../../standalone/drakTermServ:1
+#, c-format
+msgid "Delete Client"
+msgstr "احذف العميل"
-#: ../../standalone/drakTermServ_.c:328
-msgid ""
-"\n"
-" Copyright (C) 2002 by MandrakeSoft \n"
-"\tStew Benedict sbenedict\\@mandrakesoft.com\n"
-"\n"
-msgstr ""
+#: ../../standalone/drakTermServ:1
+#, c-format
+msgid "<-- Edit Client"
+msgstr "<-- تحرير العميل"
-#: ../../standalone/drakTermServ_.c:332
+#: ../../standalone/drakTermServ:1
+#, c-format
+msgid "Add Client -->"
+msgstr "اضافة عميل -->"
+
+#: ../../standalone/drakTermServ:1
+#, c-format
+msgid "Allow Thin Clients"
+msgstr "اسمح للعملاء النحاف (Thin Clients)"
+
+#: ../../standalone/drakTermServ:1
+#, c-format
+msgid "Thin Client"
+msgstr "عميل نحيف (Thin Client)"
+
+#: ../../standalone/drakTermServ:1
+#, c-format
+msgid "No net boot images created!"
+msgstr "لم يتم انشاء صور اقلاع عبر الشبكة!"
+
+#: ../../standalone/drakTermServ:1
+#, c-format
+msgid "type: %s"
+msgstr "النوع: %s"
+
+#: ../../standalone/drakTermServ:1
+#, c-format
+msgid "<-- Del User"
+msgstr "<-- احذف المستخدم"
+
+#: ../../standalone/drakTermServ:1
+#, c-format
+msgid "Add User -->"
+msgstr "اضف مستخدم -->"
+
+#: ../../standalone/drakTermServ:1
+#, c-format
msgid ""
-"\n"
-"\n"
-" Thanks:\n"
-"\t- LTSP Project http://www.ltsp.org\n"
-"\t- Michael Brown <mbrown\\@fensystems.co.uk>\n"
-"\n"
+"!!! Indicates the password in the system database is different than\n"
+" the one in the Terminal Server database.\n"
+"Delete/re-add the user to the Terminal Server to enable login."
msgstr ""
-#: ../../standalone/drakTermServ_.c:365
+#: ../../standalone/drakTermServ:1
+#, c-format
+msgid "Delete All NBIs"
+msgstr "احذف كل NBI"
+
+#: ../../standalone/drakTermServ:1
+#, c-format
+msgid "<-- Delete"
+msgstr "<-- حذف"
+
+#: ../../standalone/drakTermServ:1
+#, c-format
+msgid "This will take a few minutes."
+msgstr "سيستغرق هذا بضع دقائق."
+
+#: ../../standalone/drakTermServ:1
+#, c-format
+msgid "Build All Kernels -->"
+msgstr "ابني كل اصدارات النواة -->"
+
+#: ../../standalone/drakTermServ:1
+#, c-format
+msgid "No NIC selected!"
+msgstr "لم يتم اختيار NIC!"
+
+#: ../../standalone/drakTermServ:1
+#, c-format
+msgid "Build Single NIC -->"
+msgstr "ابني NIC واحدة -->"
+
+#: ../../standalone/drakTermServ:1
+#, c-format
+msgid "No kernel selected!"
+msgstr "لم يتم ايجاد نواة!"
+
+#: ../../standalone/drakTermServ:1
+#, c-format
+msgid "Build Whole Kernel -->"
+msgstr "ابني كل النواة -->"
+
+#: ../../standalone/drakTermServ:1
+#, c-format
+msgid "Boot ISO"
+msgstr "ملف ISO الإقلاع"
+
+#: ../../standalone/drakTermServ:1
+#, c-format
+msgid "Boot Floppy"
+msgstr "قرص الإقلاع"
+
+#: ../../standalone/drakTermServ:1
+#, c-format
msgid ""
"drakTermServ Overview\n"
"\t\t\t \n"
@@ -8780,7 +13016,7 @@ msgid ""
"\t\t\t\thost curly {\n"
"\t\t\t\t\thardware ethernet 00:20:af:2f:f7:9d;\n"
"\t\t\t\t\tfixed-address 192.168.192.3;\n"
-"\t\t\t\t\t/*type fat;*/\n"
+"\t\t\t\t\t#type fat;\n"
"\t\t\t\t\tfilename \"i386/boot/boot-3c509.2.4.18-6mdk."
"nbi\";\n"
"\t\t\t\t}\n"
@@ -8791,8 +13027,8 @@ msgid ""
"functionality\n"
"\t\t\tof client-specific configuration files that ClusterNFS provides.\n"
"\t\t\t\n"
-"\t\t\tNote: The \"/*type\" entry is only used by drakTermServ. Clients can "
-"either be \"thin\"*/\n"
+"\t\t\tNote: The \"#type\" entry is only used by drakTermServ. Clients can "
+"either be \"thin\"\n"
"\t\t\tor 'fat'. Thin clients run most software on the server via xdmcp, "
"while fat clients run most\n"
"\t\t\tsoftware on the client machine. A special inittab, /etc/inittab\\$\\"
@@ -8881,225 +13117,149 @@ msgid ""
" \t\tA basic example of creating a boot floppy for a 3Com 3c509 "
"manually:\n"
" \t\t\n"
-" \t\tcat /usr/lib/etherboot/boot1a.bin /\\n \t\t\t/usr/lib/"
-"etherboot/lzrom/3c509.lzrom > /dev/fd0\n"
+" \t\tcat /usr/lib/etherboot/boot1a.bin \\\n"
+" \t\t\t/usr/lib/etherboot/lzrom/3c509.lzrom > /dev/fd0\n"
" \n"
"\n"
msgstr ""
-#: ../../standalone/drakTermServ_.c:488
-msgid "Boot Floppy"
-msgstr ""
-
-#: ../../standalone/drakTermServ_.c:490
-msgid "Boot ISO"
-msgstr ""
-
-#: ../../standalone/drakTermServ_.c:559
-msgid "Build Whole Kernel -->"
-msgstr ""
-
-#: ../../standalone/drakTermServ_.c:561 ../../standalone/drakTermServ_.c:591
-msgid "This will take a few minutes."
-msgstr ""
-
-#: ../../standalone/drakTermServ_.c:573
-#, fuzzy
-msgid "No kernel selected!"
-msgstr "لم يتم ايجاد بطاقة تلفاز!"
-
-#: ../../standalone/drakTermServ_.c:576
-msgid "Build Single NIC -->"
-msgstr ""
-
-#: ../../standalone/drakTermServ_.c:587
-#, fuzzy
-msgid "No nic selected!"
-msgstr "غير متصل"
-
-#: ../../standalone/drakTermServ_.c:590
-msgid "Build All Kernels -->"
-msgstr ""
-
-#: ../../standalone/drakTermServ_.c:604
-#, fuzzy
-msgid "<-- Delete"
-msgstr "إلغاء"
-
-#: ../../standalone/drakTermServ_.c:611
-#, fuzzy
-msgid "Delete All NBIs"
-msgstr "تم اختيار الكل"
-
-#: ../../standalone/drakTermServ_.c:668
+#: ../../standalone/drakTermServ:1
+#, c-format
msgid ""
-"!!! Indicates the password in the system database is different than\n"
-" the one in the Terminal Server database.\n"
-"Delete/re-add the user to the Terminal Server to enable login."
-msgstr ""
-
-#: ../../standalone/drakTermServ_.c:673
-#, fuzzy
-msgid "Add User -->"
-msgstr "اضف مستخدم"
-
-#: ../../standalone/drakTermServ_.c:681
-msgid "<-- Del User"
-msgstr ""
-
-#: ../../standalone/drakTermServ_.c:720
-#, fuzzy, c-format
-msgid "type: %s"
-msgstr "النوع: "
-
-#: ../../standalone/drakTermServ_.c:753
-msgid "No net boot images created!"
-msgstr ""
-
-#: ../../standalone/drakTermServ_.c:773
-#, fuzzy
-msgid "Thin Client"
-msgstr "DHCP العميل"
-
-#: ../../standalone/drakTermServ_.c:775
-#, fuzzy
-msgid "Allow Thin Clients"
-msgstr "DHCP العميل"
-
-#: ../../standalone/drakTermServ_.c:778
-msgid "Add Client -->"
+"\n"
+"\n"
+" Thanks:\n"
+"\t- LTSP Project http://www.ltsp.org\n"
+"\t- Michael Brown <mbrown\\@fensystems.co.uk>\n"
+"\n"
msgstr ""
+"\n"
+"\n"
+" شكر خاص:\n"
+"\t- مشروع LTSP http://www.ltsp.org\n"
+"\t- مايكل براون <mbrown\\@fensystems.co.uk>\n"
+"\n"
-#: ../../standalone/drakTermServ_.c:821
-#, fuzzy
-msgid "<-- Edit Client"
-msgstr "DHCP العميل"
-
-#: ../../standalone/drakTermServ_.c:837
-#, fuzzy
-msgid "Delete Client"
-msgstr "DHCP العميل"
-
-#: ../../standalone/drakTermServ_.c:843
-#, fuzzy
-msgid "dhcpd Config..."
-msgstr "جاري الإعداد..."
-
-#: ../../standalone/drakTermServ_.c:876
+#: ../../standalone/drakTermServ:1
+#, c-format
msgid ""
-"Need to restart the Display Manager for full changes to take effect. \n"
-"(service dm restart - at the console)"
-msgstr ""
-
-#: ../../standalone/drakTermServ_.c:894
-msgid "Subnet:"
-msgstr ""
-
-#: ../../standalone/drakTermServ_.c:901
-#, fuzzy
-msgid "Netmask:"
-msgstr "Netmask"
-
-#: ../../standalone/drakTermServ_.c:908
-msgid "Routers:"
+"\n"
+" Copyright (C) 2002 by MandrakeSoft \n"
+"\tStew Benedict sbenedict\\@mandrakesoft.com\n"
+"\n"
msgstr ""
-#: ../../standalone/drakTermServ_.c:915
-msgid "Subnet Mask:"
-msgstr ""
+#: ../../standalone/drakTermServ:1
+#, c-format
+msgid "Add/Del Clients"
+msgstr "أضف/احذف العملاء"
-#: ../../standalone/drakTermServ_.c:922
-msgid "Broadcast Address:"
-msgstr ""
+#: ../../standalone/drakTermServ:1
+#, c-format
+msgid "Add/Del Users"
+msgstr "أضف/احذف المستخدمين"
-#: ../../standalone/drakTermServ_.c:929
-#, fuzzy
-msgid "Domain Name:"
-msgstr "Domain name"
+#: ../../standalone/drakTermServ:1
+#, c-format
+msgid "Net Boot Images"
+msgstr "صور اقلاع الشبكة"
-#: ../../standalone/drakTermServ_.c:937
-#, fuzzy
-msgid "Name Servers:"
-msgstr " الخادم NIS"
+#: ../../standalone/drakTermServ:1
+#, c-format
+msgid "Etherboot Floppy/ISO"
+msgstr "Etherboot Floppy/ISO"
-#: ../../standalone/drakTermServ_.c:948
-msgid "IP Range Start:"
-msgstr ""
+#: ../../standalone/drakTermServ:1
+#, c-format
+msgid "Stop Server"
+msgstr "أوقف الخادم"
-#: ../../standalone/drakTermServ_.c:949
-msgid "IP Range End:"
-msgstr ""
+#: ../../standalone/drakTermServ:1
+#, c-format
+msgid "Start Server"
+msgstr "ابدأ الخادم"
-#: ../../standalone/drakTermServ_.c:1001
-#, fuzzy
-msgid "dhcpd Server Configuration"
-msgstr "إعداد متقدم"
+#: ../../standalone/drakTermServ:1
+#, c-format
+msgid "Disable Server"
+msgstr "عطّل الخادم"
-#: ../../standalone/drakTermServ_.c:1002
-msgid ""
-"Most of these values were extracted\n"
-"from your running system.\n"
-"You can modify as needed."
-msgstr ""
+#: ../../standalone/drakTermServ:1
+#, c-format
+msgid "Enable Server"
+msgstr "مكّن الخادم"
-#: ../../standalone/drakTermServ_.c:1005
-msgid "Dynamic IP Address Pool:"
-msgstr ""
+#: ../../standalone/drakTermServ:1
+#, c-format
+msgid "Mandrake Terminal Server Configuration"
+msgstr "تهيئة خادم طرفيات Mandrake"
-#: ../../standalone/drakTermServ_.c:1018
-#, fuzzy
-msgid "Write Config"
-msgstr "إعداة الإعداد"
+#: ../../standalone/drakautoinst:1
+#, c-format
+msgid "Remove the last item"
+msgstr "احذف المادة الأخيرة"
-#: ../../standalone/drakTermServ_.c:1120
-#, fuzzy
-msgid "Please insert floppy disk:"
-msgstr "أدخل قرص مرن بالدّاخل %s"
+#: ../../standalone/drakautoinst:1
+#, c-format
+msgid "Add an item"
+msgstr "أضف مادة"
-#: ../../standalone/drakTermServ_.c:1124
-msgid "Couldn't access the floppy!"
-msgstr ""
+#: ../../standalone/drakautoinst:1
+#, c-format
+msgid "Auto Install"
+msgstr "تثبيت آلي"
-#: ../../standalone/drakTermServ_.c:1126
-msgid "Floppy can be removed now"
+#: ../../standalone/drakautoinst:1
+#, c-format
+msgid ""
+"The floppy has been successfully generated.\n"
+"You may now replay your installation."
msgstr ""
-#: ../../standalone/drakTermServ_.c:1129
-#, fuzzy
-msgid "No floppy drive available!"
-msgstr "آسف , لا مدخل مرن متاح"
+#: ../../standalone/drakautoinst:1 ../../standalone/drakgw:1
+#: ../../standalone/scannerdrake:1
+#, c-format
+msgid "Congratulations!"
+msgstr "تهانينا!"
-#: ../../standalone/drakTermServ_.c:1138
+#: ../../standalone/drakautoinst:1
#, c-format
-msgid "Etherboot ISO image is %s"
+msgid ""
+"\n"
+"Welcome.\n"
+"\n"
+"The parameters of the auto-install are available in the sections on the left"
msgstr ""
-#: ../../standalone/drakTermServ_.c:1140
-msgid "Something went wrong! - Is mkisofs installed?"
-msgstr ""
+#: ../../standalone/drakautoinst:1
+#, c-format
+msgid "Creating auto install floppy"
+msgstr "جاري انشاء قرص التثبيت الآلي"
-#: ../../standalone/drakTermServ_.c:1159
-msgid "Need to create /etc/dhcpd.conf first!"
-msgstr ""
+#: ../../standalone/drakautoinst:1
+#, c-format
+msgid "manual"
+msgstr "يدوي"
-#: ../../standalone/drakTermServ_.c:1451
-msgid "/etc/hosts.allow and /etc/hosts.deny already configured - not changed"
+#: ../../standalone/drakautoinst:1
+#, c-format
+msgid ""
+"Please choose for each step whether it will replay like your install, or it "
+"will be manual"
msgstr ""
-#: ../../standalone/drakautoinst_.c:40
-msgid "Error!"
-msgstr "خطأ ! "
-
-#: ../../standalone/drakautoinst_.c:41
+#: ../../standalone/drakautoinst:1
#, c-format
-msgid "I can't find needed image file `%s'."
-msgstr ""
+msgid "Automatic Steps Configuration"
+msgstr "تهيئة آلية للخطوات"
-#: ../../standalone/drakautoinst_.c:43
-msgid "Auto Install Configurator"
-msgstr "أداة اعداد المثبّت الآلي"
+#: ../../standalone/drakautoinst:1
+#, c-format
+msgid "replay"
+msgstr "اعادة"
-#: ../../standalone/drakautoinst_.c:44
+#: ../../standalone/drakautoinst:1
+#, c-format
msgid ""
"You are about to configure an Auto Install floppy. This feature is somewhat "
"dangerous and must be used circumspectly.\n"
@@ -9114,1391 +13274,1532 @@ msgid ""
"Do you want to continue?"
msgstr ""
-#: ../../standalone/drakautoinst_.c:62 ../../standalone/drakautoinst_.c:71
-msgid "manual"
-msgstr ""
+#: ../../standalone/drakautoinst:1
+#, c-format
+msgid "Auto Install Configurator"
+msgstr "أداة اعداد المثبّت الآلي"
-#: ../../standalone/drakautoinst_.c:62
-#, fuzzy
-msgid "replay"
-msgstr "أيرلندا"
+#: ../../standalone/drakautoinst:1
+#, c-format
+msgid "I can't find needed image file `%s'."
+msgstr "لا يمكنني ايجاد ملف الصورة `%s'."
-#: ../../standalone/drakautoinst_.c:66
-msgid "Automatic Steps Configuration"
-msgstr "إعداد الخطوات الآلية"
+#: ../../standalone/drakautoinst:1
+#, c-format
+msgid "Error!"
+msgstr "خطأ ! "
-#: ../../standalone/drakautoinst_.c:67
+#: ../../standalone/drakbackup:1
+#, c-format
msgid ""
-"Please choose for each step whether it will replay like your install, or it "
-"will be manual"
-msgstr ""
-
-#: ../../standalone/drakautoinst_.c:78 ../../standalone/drakautoinst_.c:79
-msgid "Creating auto install floppy"
+"\n"
+"Restore Backup Problems:\n"
+"\n"
+"During the restore step, Drakbackup will verify all your\n"
+"backup files before restoring them.\n"
+"Before the restore, Drakbackup will remove \n"
+"your original directory, and you will loose all your \n"
+"data. It is important to be careful and not modify the \n"
+"backup data files by hand.\n"
msgstr ""
-#: ../../standalone/drakautoinst_.c:139
+#: ../../standalone/drakbackup:1
+#, c-format
msgid ""
+"options description:\n"
"\n"
-"Welcome.\n"
+"Please be careful when you are using ftp backup, because only \n"
+"backups that are already built are sent to the server.\n"
+"So at the moment, you need to build the backup on your hard \n"
+"drive before sending it to the server.\n"
"\n"
-"The parameters of the auto-install are available in the sections on the left"
-msgstr ""
-
-#: ../../standalone/drakautoinst_.c:234 ../../standalone/drakgw_.c:504
-#: ../../standalone/scannerdrake_.c:117
-msgid "Congratulations!"
msgstr ""
-#: ../../standalone/drakautoinst_.c:235
+#: ../../standalone/drakbackup:1
+#, c-format
msgid ""
-"The floppy has been successfully generated.\n"
-"You may now replay your installation."
-msgstr ""
-
-#: ../../standalone/drakautoinst_.c:273
-msgid "Auto Install"
-msgstr "تثبيت آلي"
-
-#: ../../standalone/drakautoinst_.c:343
-msgid "Add an item"
-msgstr ""
-
-#: ../../standalone/drakautoinst_.c:350
-msgid "Remove the last item"
-msgstr "أزل المادة الأخيرة"
-
-#: ../../standalone/drakbackup_.c:580
-msgid "Cron not available yet as non-root"
+"Description:\n"
+"\n"
+" Drakbackup is used to backup your system.\n"
+" During the configuration you can select: \n"
+"\t- System files, \n"
+"\t- Users files, \n"
+"\t- Other files.\n"
+"\tor All your system ... and Other (like Windows Partitions)\n"
+"\n"
+" Drakbackup allows you to backup your system on:\n"
+"\t- Harddrive.\n"
+"\t- NFS.\n"
+"\t- CDROM (CDRW), DVDROM (with autoboot, rescue and autoinstall.).\n"
+"\t- FTP.\n"
+"\t- Rsync.\n"
+"\t- Webdav.\n"
+"\t- Tape.\n"
+"\n"
+" Drakbackup allows you to restore your system to\n"
+" a user selected directory.\n"
+"\n"
+" Per default all backups will be stored on your\n"
+" /var/lib/drakbackup directory\n"
+"\n"
+" Configuration file:\n"
+"\t/etc/drakconf/drakbackup/drakbackup.conf\n"
+"\n"
+"Restore Step:\n"
+" \n"
+" During the restore step, DrakBackup will remove \n"
+" your original directory and verify that all \n"
+" backup files are not corrupted. It is recommended \n"
+" you do a last backup before restoring.\n"
+"\n"
+"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:690
-msgid "WARNING"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid ""
+" updates 2002 MandrakeSoft by Stew Benedict <sbenedict\\@mandrakesoft.com>"
msgstr ""
+" تحديثات 2002 MandrakeSoft من Stew Benedict <sbenedict\\@mandrakesoft.com>"
-#: ../../standalone/drakbackup_.c:691
-#, fuzzy
-msgid "FATAL"
-msgstr "FAT"
-
-#: ../../standalone/drakbackup_.c:692
-msgid "INFO"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid ""
+" Copyright (C) 2001-2002 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita."
+"fr>"
msgstr ""
+" جميع الحقوق محفوظة (C) 2001 MandrakeSoft من دوبون سيباستيان <dupont_s"
+"\\@epita.fr>"
-#: ../../standalone/drakbackup_.c:704
+#: ../../standalone/drakbackup:1
+#, c-format
msgid ""
+"restore description:\n"
+" \n"
+"Only the most recent date will be used, because with incremental \n"
+"backups it is necessary to restore one by one each older backup.\n"
"\n"
-" DrakBackup Report \n"
+"So if you don't want to restore a user please unselect all their\n"
+"check boxes.\n"
"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:705
-msgid ""
+"Otherwise, you are able to select only one of these.\n"
+"\n"
+" - Incremental Backups:\n"
+"\n"
+"\tThe incremental backup is the most powerful \n"
+"\toption to use. This option allows you to \n"
+"\tbackup all of your data the first time, and \n"
+"\tonly the changed data after.\n"
+"\tSo you will be able, during the restore\n"
+"\tstep, to restore your data from a specified\n"
+"\tdate.\n"
+"\tIf you have not selected this option all\n"
+"\told backups are deleted before each backup. \n"
"\n"
-" DrakBackup Daemon Report\n"
"\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:709
+#: ../../standalone/drakbackup:1
+#, c-format
msgid ""
+"options description:\n"
"\n"
-" DrakBackup Report Details\n"
+" - Backup system files:\n"
+" \n"
+"\tThis option allows you to backup your /etc directory,\n"
+"\twhich contains all configuration files. Please be\n"
+"\tcareful during the restore step to not overwrite:\n"
+"\t\t/etc/passwd \n"
+"\t\t/etc/group \n"
+"\t\t/etc/fstab\n"
+"\n"
+" - Backup User files: \n"
+"\n"
+"\tThis option allows you select all users that you want \n"
+"\tto backup.\n"
+"\tTo preserve disk space, it is recommended that you \n"
+"\tdo not include the web browser's cache.\n"
+"\n"
+" - Backup Other files: \n"
+"\n"
+"\tThis option allows you to add more data to save.\n"
+"\tWith the other backup it's not possible at the \n"
+"\tmoment to select incremental backup.\t\t\n"
+" \n"
+" - Incremental Backups:\n"
+"\n"
+"\tThe incremental backup is the most powerful \n"
+"\toption for backup. This option allows you \n"
+"\tto backup all your data the first time, and \n"
+"\tonly the changed data afterward.\n"
+"\tThen you will be able, during the restore\n"
+"\tstep, to restore your data from a specified\n"
+"\tdate.\n"
+"\tIf you have not selected this option all\n"
+"\told backups are deleted before each backup. \n"
"\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:730 ../../standalone/drakbackup_.c:803
-#: ../../standalone/drakbackup_.c:859
-#, fuzzy
-msgid "Total progess"
-msgstr "اجمالي التقدم"
-
-#: ../../standalone/drakbackup_.c:785
+#: ../../standalone/drakbackup:1
#, c-format
msgid ""
-"%s exists, delete?\n"
"\n"
-"Warning: If you've already done this process you'll probably\n"
-" need to purge the entry from authorized_keys on the server."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:794
-msgid "This may take a moment to generate the keys."
+" Some errors during sendmail are caused by \n"
+" a bad configuration of postfix. To solve it you have to\n"
+" set myhostname or mydomain in /etc/postfix/main.cf\n"
+"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:801
+#: ../../standalone/drakbackup:1
#, c-format
-msgid "ERROR: Cannot spawn %s."
+msgid ""
+"options description:\n"
+"\n"
+" In this step Drakbackup allow you to change:\n"
+"\n"
+" - The compression mode:\n"
+" \n"
+" If you check bzip2 compression, you will compress\n"
+" your data better than gzip (about 2-10 %%).\n"
+" This option is not checked by default because\n"
+" this compression mode needs more time (about 1000%% more).\n"
+" \n"
+" - The update mode:\n"
+"\n"
+" This option will update your backup, but this\n"
+" option is not really useful because you need to\n"
+" decompress your backup before you can update it.\n"
+" \n"
+" - the .backupignore mode:\n"
+"\n"
+" Like with cvs, Drakbackup will ignore all references\n"
+" included in .backupignore files in each directories.\n"
+" ex: \n"
+" #> cat .backupignore\n"
+" *.o\n"
+" *~\n"
+" ...\n"
+" \n"
+"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:818
+#: ../../standalone/drakbackup:1
#, c-format
-msgid "No password prompt on %s at port %s"
-msgstr ""
+msgid "Drakbackup"
+msgstr "Drakbackup"
-#: ../../standalone/drakbackup_.c:819
+#: ../../standalone/drakbackup:1
#, c-format
-msgid "Bad password on %s"
-msgstr ""
+msgid "Restore"
+msgstr "استعادة"
-#: ../../standalone/drakbackup_.c:820
+#: ../../standalone/drakbackup:1
#, c-format
-msgid "Permission denied transferring %s to %s"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:821
-#, fuzzy, c-format
-msgid "Can't find %s on %s"
-msgstr "لا يمكن أن ينفتح %s: %s\n"
+msgid "Backup Now"
+msgstr "قم بالنسخ الإحتياطي الآن"
-#: ../../standalone/drakbackup_.c:824
+#: ../../standalone/drakbackup:1
#, c-format
-msgid "%s not responding"
-msgstr ""
+msgid "Advanced Configuration"
+msgstr "إعداد متقدم"
-#: ../../standalone/drakbackup_.c:828
+#: ../../standalone/drakbackup:1
#, c-format
-msgid ""
-"Transfer successful\n"
-"You may want to verify you can login to the server with:\n"
-"\n"
-"ssh -i %s %s\\@%s\n"
-"\n"
-"without being prompted for a password."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:873
-msgid "WebDAV remote site already in sync!"
-msgstr ""
+msgid "Wizard Configuration"
+msgstr "إعدادات المعالج"
-#: ../../standalone/drakbackup_.c:877
-msgid "WebDAV transfer failed!"
-msgstr ""
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "View Backup Configuration."
+msgstr "اعرض تهيئة النسخ الإحتياطي"
-#: ../../standalone/drakbackup_.c:898
-msgid "No CDR/DVDR in drive!"
-msgstr ""
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "Backup Now from configuration file"
+msgstr "قم بالنسخ الآن من ملف التهيئة"
-#: ../../standalone/drakbackup_.c:902
-msgid "Does not appear to be recordable media!"
-msgstr ""
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "Drakbackup Configuration"
+msgstr "إعدادات Drakbackup"
-#: ../../standalone/drakbackup_.c:906
-msgid "Not erasable media!"
-msgstr ""
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "Total Progress"
+msgstr "اجمالي التقدم"
-#: ../../standalone/drakbackup_.c:945
-msgid "This may take a moment to erase the media."
-msgstr ""
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "Sending files..."
+msgstr "جاري ارسال الملفات..."
-#: ../../standalone/drakbackup_.c:1033
-msgid "Permission problem accessing CD."
-msgstr ""
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "files sending by FTP"
+msgstr "ارسال الملفات عن طريق FTP"
-#: ../../standalone/drakbackup_.c:1060
+#: ../../standalone/drakbackup:1
#, c-format
-msgid "No tape in %s!"
-msgstr ""
+msgid "Backup other files"
+msgstr "انسخ ملفات أخرى"
-#: ../../standalone/drakbackup_.c:1174 ../../standalone/drakbackup_.c:1223
-msgid "Backup system files..."
-msgstr ""
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "Backup user files"
+msgstr "انسخ ملفات المستخدم"
-#: ../../standalone/drakbackup_.c:1224 ../../standalone/drakbackup_.c:1291
-msgid "Hard Disk Backup files..."
-msgstr ""
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "Backup system files"
+msgstr "انسخ ملفات النظام"
-#: ../../standalone/drakbackup_.c:1236
-msgid "Backup User files..."
-msgstr ""
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "Under Devel ... please wait."
+msgstr "تحت التطوير ... انتظر فضلا"
-#: ../../standalone/drakbackup_.c:1237
-msgid "Hard Disk Backup Progress..."
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid ""
+"No configuration file found \n"
+"please click Wizard or Advanced."
msgstr ""
+"لم يتم ايجاد ملف تهيئة \n"
+"فضلا اضغط معالج لأو متقدم."
-#: ../../standalone/drakbackup_.c:1290
-msgid "Backup Other files..."
-msgstr ""
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "Please select data to backup..."
+msgstr "رجاء اختر البيانات المطلوب نسخها احتياطيا..."
-#: ../../standalone/drakbackup_.c:1296
-msgid "No changes to backup!"
-msgstr ""
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "Please select media for backup..."
+msgstr "رجاء اختر وسيط النسخ الإحتياطي..."
-#: ../../standalone/drakbackup_.c:1312 ../../standalone/drakbackup_.c:1335
+#: ../../standalone/drakbackup:1
#, c-format
-msgid ""
-"\n"
-"Drakbackup activities via %s:\n"
-"\n"
-msgstr ""
+msgid "Please select data to restore..."
+msgstr "رجاء اختر تاريخ الإستعادة..."
-#: ../../standalone/drakbackup_.c:1319
-#, fuzzy, c-format
-msgid ""
-"file list sent by FTP: %s\n"
-" "
-msgstr "ارسال الملفات عن طريق FTP"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "The following packages need to be installed:\n"
+msgstr "يجب تثبيت الحزم التالية:\n"
-#: ../../standalone/drakbackup_.c:1322
+#: ../../standalone/drakbackup:1
+#, c-format
msgid ""
-"\n"
-" FTP connection problem: It was not possible to send your backup files by "
-"FTP.\n"
+"Error during sending file via FTP.\n"
+" Please correct your FTP configuration."
msgstr ""
+"خطأ أثناء ارسال الملف عير FTP.\n"
+" فضلاً قم بتصحيح اعدادات FTP."
-#: ../../standalone/drakbackup_.c:1340
+#: ../../standalone/drakbackup:1
+#, c-format
msgid ""
-"\n"
-"Drakbackup activities via CD:\n"
-"\n"
+"Error during sendmail.\n"
+" Your report mail was not sent.\n"
+" Please configure sendmail"
msgstr ""
+"خطأ أثناء ارسال البريد.\n"
+" لم يتم ارسال تقرير البريد.\n"
+" فضلاً قم بإعداد sendmail"
-#: ../../standalone/drakbackup_.c:1345
-msgid ""
-"\n"
-"Drakbackup activities via tape:\n"
-"\n"
-msgstr ""
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "Next"
+msgstr "التالي"
-#: ../../standalone/drakbackup_.c:1354
-msgid " Error during mail sending. \n"
-msgstr ""
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "Previous"
+msgstr "السابق"
-#: ../../standalone/drakbackup_.c:1380
-msgid "Can't create catalog!"
-msgstr ""
+#: ../../standalone/drakbackup:1 ../../standalone/drakperm:1
+#: ../../standalone/logdrake:1
+#, c-format
+msgid "Save"
+msgstr "حفظ"
-#: ../../standalone/drakbackup_.c:1490 ../../standalone/drakbackup_.c:1501
-#: ../../standalone/drakfont_.c:946
-msgid "File Selection"
-msgstr ""
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "Build Backup"
+msgstr "ابني النسخة الإحتياطية"
-#: ../../standalone/drakbackup_.c:1529
-msgid "Select the files or directories and click on 'Add'"
-msgstr ""
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "Restore Progress"
+msgstr "تقدم الإستعادة"
-#: ../../standalone/drakbackup_.c:1573
-msgid ""
-"\n"
-"Please check all options that you need.\n"
-msgstr ""
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "Restore From Catalog"
+msgstr "استعادة من الكتالوغ"
-#: ../../standalone/drakbackup_.c:1574
-msgid ""
-"These options can backup and restore all files in your /etc directory.\n"
-msgstr ""
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "Browse to new restore repository."
+msgstr "استعرض الى مستودع استعادة جديد."
-#: ../../standalone/drakbackup_.c:1575
-#, fuzzy
-msgid "Backup your System files. (/etc directory)"
-msgstr "انسخ ملفات النظام قبل:"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "CD in place - continue."
+msgstr "القرص في المكان الصحيح - تابع"
-#: ../../standalone/drakbackup_.c:1576
-msgid "Use incremental backup (do not replace old backups)"
-msgstr ""
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "Custom Restore"
+msgstr "استعادة مخصصة"
-#: ../../standalone/drakbackup_.c:1577
-msgid "Do not include critical files (passwd, group, fstab)"
-msgstr ""
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "Restore all backups"
+msgstr "استعد كل النسخ الإحتياطية"
-#: ../../standalone/drakbackup_.c:1578
-msgid ""
-"With this option you will be able to restore any version\n"
-" of your /etc directory."
-msgstr ""
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "Restore Failed..."
+msgstr "فشلت الإستعادة..."
-#: ../../standalone/drakbackup_.c:1595
-msgid "Please check all users that you want to include in your backup."
-msgstr "رجاء اختر كل المستخدمين الذين تريد تضمينهم في النسخ الإحتياطي."
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "Files Restored..."
+msgstr "الملفات المستعادة..."
-#: ../../standalone/drakbackup_.c:1622
-msgid "Do not include the browser cache"
-msgstr ""
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "Path or Module required"
+msgstr "يُحتاج الى مسار أو وحدة"
-#: ../../standalone/drakbackup_.c:1623 ../../standalone/drakbackup_.c:1647
-msgid "Use Incremental Backups (do not replace old backups)"
-msgstr ""
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "Hostname required"
+msgstr "يُحتاج الى اسم المستضيف"
-#: ../../standalone/drakbackup_.c:1645 ../../standalone/drakfont_.c:1000
-msgid "Remove Selected"
-msgstr "ازل المادة المختارة"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "Username required"
+msgstr "يُحتاج الى اسم المستخدم"
-#: ../../standalone/drakbackup_.c:1679
-msgid "Windows (FAT32)"
-msgstr ""
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "Password required"
+msgstr "يُحتاج الى كلمة المرور"
-#: ../../standalone/drakbackup_.c:1714
-msgid "Users"
-msgstr "المستخدمون"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "Host Path or Module"
+msgstr "وحدة أو مسار المستضيف"
-#: ../../standalone/drakbackup_.c:1740
-#, fuzzy
-msgid "Use network connection to backup"
-msgstr "استخدم القرص الصلب للنسخ الإحتياطي"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "Host Name"
+msgstr "اسم المستضيف"
-#: ../../standalone/drakbackup_.c:1742
-msgid "Net Method:"
-msgstr ""
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "Restore Via Network Protocol: %s"
+msgstr "استعد عن طريق بروتوكول الشبكة: %s"
-#: ../../standalone/drakbackup_.c:1746
-msgid "Use Expect for SSH"
-msgstr ""
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "Restore Via Network"
+msgstr "استعادة عن طريق الشبكة"
-#: ../../standalone/drakbackup_.c:1747
-msgid ""
-"Create/Transfer\n"
-"backup keys for SSH"
-msgstr ""
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "Not the correct tape label. Tape is labelled %s."
+msgstr "علامة الشريط ليست العلامة الصحيحة. علامة الشريط هي %s."
-#: ../../standalone/drakbackup_.c:1748
+#: ../../standalone/drakbackup:1
+#, c-format
msgid ""
-" Transfer \n"
-"Now"
+"Insert the tape with volume label %s\n"
+" in the tape drive device %s"
msgstr ""
+"أدخل الشريط بالعلامة %s\n"
+" في جهاز الشريط %s"
-#: ../../standalone/drakbackup_.c:1749
-msgid ""
-"Other (not drakbackup)\n"
-"keys in place already"
-msgstr ""
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "Restore From Tape"
+msgstr "استعادة من الشريط"
-#: ../../standalone/drakbackup_.c:1753
-msgid "Please enter the host name or IP."
-msgstr "فضلا أدخل اسم المستضيف أو عنوان IP."
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "Not the correct CD label. Disk is labelled %s."
+msgstr "علامة القرص ليست العلامة الصحيحة. علامة القرص هي %s."
-#: ../../standalone/drakbackup_.c:1758
-#, fuzzy
+#: ../../standalone/drakbackup:1
+#, c-format
msgid ""
-"Please enter the directory (or module) to\n"
-" put the backup on this host."
-msgstr "فضلاً أدخل الدليل الموجودة فيه النسخ الإحتياطية"
-
-#: ../../standalone/drakbackup_.c:1763
-msgid "Please enter your login"
-msgstr "رجاء أدخل اسم الدخول"
+"Insert the CD with volume label %s\n"
+" in the CD drive under mount point /mnt/cdrom"
+msgstr ""
+"أدخل القرص المدمج بالعلامة %s\n"
+" في سواقة القرص المدمج تحت نقطة التحميل /mnt/cdrom"
-#: ../../standalone/drakbackup_.c:1768
-msgid "Please enter your password"
-msgstr "رجاء كلمة المرور"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "Restore From CD"
+msgstr "استعادة من القرص المدمج"
-#: ../../standalone/drakbackup_.c:1774
-msgid "Remember this password"
-msgstr "تذكّر كلمة السّرّ هذه "
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "Backup files not found at %s."
+msgstr "ملفات النسخ الإحتياطي غير موجودة على %s"
-#: ../../standalone/drakbackup_.c:1785
-msgid "Need hostname, username and password!"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid ""
+"Change\n"
+"Restore Path"
msgstr ""
+"غيّر\n"
+"مسار الإستعادة"
-#: ../../standalone/drakbackup_.c:1879
-msgid "Use CD/DVDROM to backup"
-msgstr "إلى المساعد CD/DVDROM الاستعمال "
-
-#: ../../standalone/drakbackup_.c:1882
+#: ../../standalone/drakbackup:1
+#, c-format
msgid ""
-"Please choose your CD/DVD device\n"
-"(Press Enter to propogate settings to other fields.\n"
-"This field isn't necessary, only a tool to fill in the form.)"
+"Restore Selected\n"
+"Files"
msgstr ""
+"استعد الملفات\n"
+"المختارة"
-#: ../../standalone/drakbackup_.c:1887
-#, fuzzy
-msgid "Please choose your CD/DVD media size (Mb)"
-msgstr "رجاء اختر مساحة القرص المدمج"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid ""
+"Restore Selected\n"
+"Catalog Entry"
+msgstr ""
+"استعد مدخل\n"
+"الكتالوغ المختار"
-#: ../../standalone/drakbackup_.c:1893
-#, fuzzy
-msgid "Please check for multisession CD"
-msgstr "فضلا قم بالتأشير هنا اذا كنت تستخدم وسيط CDRW"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "Remove user directories before restore."
+msgstr "احذف أدلة المستخدمين قبل الإستعادة"
-#: ../../standalone/drakbackup_.c:1899
-msgid "Please check if you are using CDRW media"
-msgstr "فضلا قم بالتأشير هنا اذا كنت تستخدم وسيط CDRW"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "Do new backup before restore (only for incremental backups.)"
+msgstr "قم بنسخ احتياطي جديد فبل الإستعادة (فقط للنسخ الإحتياطية المتدرجة)"
-#: ../../standalone/drakbackup_.c:1905
-#, fuzzy
-msgid "Please check if you want to erase your RW media (1st Session)"
-msgstr "فيما مضى CDRW من فضلك فحص ,إذا أردت أن تمحو "
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "select path to restore (instead of /)"
+msgstr "اختر مسار الإستعادة (بدلاً من / )"
-#: ../../standalone/drakbackup_.c:1906
-msgid " Erase Now "
-msgstr ""
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "Restore Other"
+msgstr "استعد آخر"
-#: ../../standalone/drakbackup_.c:1912
-#, fuzzy
-msgid "Please check if you are using a DVDR device"
-msgstr "فضلا قم بالتأشير هنا اذا كنت تستخدم وسيط CDRW"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "Restore Users"
+msgstr "أعد المستخدمين "
-#: ../../standalone/drakbackup_.c:1918
-#, fuzzy
-msgid "Please check if you are using a DVDRAM device"
-msgstr "فضلا قم بالتأشير هنا اذا كنت تستخدم وسيط CDRW"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "Restore system"
+msgstr "استعد النّظام"
-#: ../../standalone/drakbackup_.c:1931
-msgid ""
-"Please enter your CD Writer device name\n"
-" ex: 0,1,0"
-msgstr ""
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "Other Media"
+msgstr "وسيط آخر"
-#: ../../standalone/drakbackup_.c:1964
-#, fuzzy
-msgid "No CD device defined!"
-msgstr "اختر ملف"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "Select another media to restore from"
+msgstr "اختر وسيط آخر للاستعادة منه"
-#: ../../standalone/drakbackup_.c:2012
-msgid "Use tape to backup"
-msgstr ""
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "Please enter the directory where backups are stored"
+msgstr "فضلاً أدخل الدليل الموجودة فيه النسخ الإحتياطية"
-#: ../../standalone/drakbackup_.c:2015
-msgid "Please enter the device name to use for backup"
-msgstr ""
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "Restore from Hard Disk."
+msgstr "استعد من القرص الصلب"
-#: ../../standalone/drakbackup_.c:2021
-#, fuzzy
-msgid "Please check if you want to use the non-rewinding device."
-msgstr "فيما مضى CDRW من فضلك فحص ,إذا أردت أن تمحو "
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "Secure Connection"
+msgstr "وصلة آمنة"
-#: ../../standalone/drakbackup_.c:2027
-#, fuzzy
-msgid "Please check if you want to erase your tape before the backup."
-msgstr "فيما مضى CDRW من فضلك فحص ,إذا أردت أن تمحو "
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "FTP Connection"
+msgstr "وصلة FTP"
-#: ../../standalone/drakbackup_.c:2033
-#, fuzzy
-msgid "Please check if you want to eject your tape after the backup."
-msgstr "فيما مضى CDRW من فضلك فحص ,إذا أردت أن تمحو "
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "Use quota for backup files."
+msgstr "استخدم quota لملفات النسخ الإحتياطي."
-#: ../../standalone/drakbackup_.c:2039 ../../standalone/drakbackup_.c:2112
-#: ../../standalone/drakbackup_.c:3068
+#: ../../standalone/drakbackup:1
+#, c-format
msgid ""
"Please enter the maximum size\n"
" allowed for Drakbackup"
msgstr ""
+"فضلاً أدخل الحجم الأقصى\n"
+" المسموح به لـDrakbackup"
-#: ../../standalone/drakbackup_.c:2103
-#, fuzzy
-msgid "Please enter the directory to save to:"
-msgstr "فضلاً أدخل الدليل الموجودة فيه النسخ الإحتياطية"
-
-#: ../../standalone/drakbackup_.c:2118 ../../standalone/drakbackup_.c:3074
-msgid "Use quota for backup files."
-msgstr ""
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "Please enter the directory to save:"
+msgstr "اختر الدليل الذي سيتم حفظه:"
-#: ../../standalone/drakbackup_.c:2180
-msgid "Network"
-msgstr "الشبكة"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "Use Hard Disk to backup"
+msgstr "استخدم القرص الصلب للنسخ الإحتياطي"
-#: ../../standalone/drakbackup_.c:2185
-msgid "CDROM / DVDROM"
-msgstr ""
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "please choose the date to restore"
+msgstr "رجاء اختر تاريخ الإستعادة"
-#: ../../standalone/drakbackup_.c:2190
-msgid "HardDrive / NFS"
-msgstr "HardDrive / NFS"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "Backup the system files before:"
+msgstr "انسخ ملفات النظام قبل:"
-#: ../../standalone/drakbackup_.c:2195
-#, fuzzy
-msgid "Tape"
-msgstr "النوع"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "User list to restore (only the most recent date per user is important)"
+msgstr "قائمة المستخدمين الذين سيتم استعادتهم"
-#: ../../standalone/drakbackup_.c:2208 ../../standalone/drakbackup_.c:2212
-#: ../../standalone/drakbackup_.c:2216
-msgid "hourly"
-msgstr "كلّ ساعة "
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "OK to restore the other files."
+msgstr "اضغط موافق لاستعادة ملفات اخرى"
-#: ../../standalone/drakbackup_.c:2209 ../../standalone/drakbackup_.c:2213
-#: ../../standalone/drakbackup_.c:2216
-msgid "daily"
-msgstr "يوميًّا "
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid " Restore Configuration "
+msgstr " تهيئة الإستعادة "
-#: ../../standalone/drakbackup_.c:2210 ../../standalone/drakbackup_.c:2214
-#: ../../standalone/drakbackup_.c:2216
-msgid "weekly"
-msgstr "أسبوعيّا"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid " Successfuly Restored on %s "
+msgstr " تمت الإستعادة بنجاح على %s "
-#: ../../standalone/drakbackup_.c:2211 ../../standalone/drakbackup_.c:2215
-#: ../../standalone/drakbackup_.c:2216
-msgid "monthly"
-msgstr "شهريا"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid " All of your selected data have been "
+msgstr " كل البيانات المختارة تم "
-#: ../../standalone/drakbackup_.c:2229
-msgid "Use daemon"
-msgstr "استخدم المراقب"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "Backup files are corrupted"
+msgstr "ملفات النسخ الإحتياطي فاسدة"
-#: ../../standalone/drakbackup_.c:2234
-msgid ""
-"Please choose the time \n"
-"interval between each backup"
-msgstr ""
-"فضلا اختر الفترة \n"
-"ما بين كل عملية نسخ احتياطي"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "Please uncheck or remove it on next time."
+msgstr "فضلاً قم بإزالة التأشير أو احذفها في المرة القادمة."
-#: ../../standalone/drakbackup_.c:2240
+#: ../../standalone/drakbackup:1
+#, c-format
msgid ""
-"Please choose the\n"
-"media for backup."
+"List of data corrupted:\n"
+"\n"
msgstr ""
-"رجاء اختر\n"
-"وسيط النسخ الاحتياطي"
+"قائمة بالبيانات الفاسدة:\n"
+"\n"
-#: ../../standalone/drakbackup_.c:2247
+#: ../../standalone/drakbackup:1
+#, c-format
msgid ""
-"Please be sure that the cron daemon is included in your services. \n"
+"List of data to restore:\n"
"\n"
-"Note that currently all 'net' medias also use the hard drive."
msgstr ""
+"قائمة البيانات التي سيتم استرجاعها:\n"
+"\n"
-#: ../../standalone/drakbackup_.c:2283
-msgid "Send mail report after each backup to:"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2289
-msgid "Delete Hard Drive tar files after backup to other media."
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2324
-msgid "What"
-msgstr "ماذا "
-
-#: ../../standalone/drakbackup_.c:2329
-msgid "Where"
-msgstr "أين"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "No configuration, please click Wizard or Advanced.\n"
+msgstr "لا تهيئة, اضغط معالج أو متقدم.\n"
-#: ../../standalone/drakbackup_.c:2334
-msgid "When"
-msgstr "متى "
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "\t-Network by webdav.\n"
+msgstr "\t-الشبكة عن طريق webdav.\n"
-#: ../../standalone/drakbackup_.c:2339
-msgid "More Options"
-msgstr "خيارات أكثر"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "\t-Network by rsync.\n"
+msgstr "\t-الشبكة عن طريق rsync.\n"
-#: ../../standalone/drakbackup_.c:2358 ../../standalone/drakbackup_.c:4444
-msgid "Drakbackup Configuration"
-msgstr "إعدادات Drakbackup"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "\t-Network by SSH.\n"
+msgstr "\t-الشبكة عن طريق SSH.\n"
-#: ../../standalone/drakbackup_.c:2376
-msgid "Please choose where you want to backup"
-msgstr "رجاء اختر أين تريد النسخ الاحتياطي."
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "\t-Network by FTP.\n"
+msgstr "\t-الشبكة عن طريق FTP.\n"
-#: ../../standalone/drakbackup_.c:2378
-msgid "on Hard Drive"
-msgstr "على القرص الصّلب"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "\t-Tape \n"
+msgstr "\t-الشريط \n"
-#: ../../standalone/drakbackup_.c:2388
-msgid "across Network"
-msgstr "عبر الشّبكة"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "\t-CDROM.\n"
+msgstr "\t-القرص المدمج.\n"
-#: ../../standalone/drakbackup_.c:2398
-msgid "on CDROM"
-msgstr ""
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "\t-Hard drive.\n"
+msgstr "\t-القرص الصلب.\n"
-#: ../../standalone/drakbackup_.c:2406
-msgid "on Tape Device"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid ""
+"\n"
+"- Daemon (%s) include:\n"
msgstr ""
+"\n"
+"- Daemon (%s) include :\n"
-#: ../../standalone/drakbackup_.c:2449
-msgid "Please choose what you want to backup"
-msgstr "رجاء اختر ما تريد نسخه احتياطياً"
-
-#: ../../standalone/drakbackup_.c:2450
-msgid "Backup system"
-msgstr "نظام المساعد"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "\tBackups use tar and gzip\n"
+msgstr "\tالنسخ الإحتياطية تستخدم tar و gzip\n"
-#: ../../standalone/drakbackup_.c:2451
-msgid "Backup Users"
-msgstr "مستخدمو المساعد"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "\tBackups use tar and bzip2\n"
+msgstr "\tالنسخ الإحتياطية تستخدم tar و bzip2\n"
-#: ../../standalone/drakbackup_.c:2454
-msgid "Select user manually"
-msgstr "اخترالمستخدم يدويًّا"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "\tDo not include System Files\n"
+msgstr "\tلا تُضمن ملفات النظام\n"
-#: ../../standalone/drakbackup_.c:2537
+#: ../../standalone/drakbackup:1
+#, c-format
msgid ""
"\n"
-"Backup Sources: \n"
+"- Options:\n"
msgstr ""
"\n"
-"مصادر المساعد :\n"
+"- خيارات:\n"
-#: ../../standalone/drakbackup_.c:2538
+#: ../../standalone/drakbackup:1
+#, c-format
msgid ""
-"\n"
-"- System Files:\n"
+"\t\t user name: %s\n"
+"\t\t on path: %s \n"
msgstr ""
-"\n"
-"-ملفّات النّظام :\n"
+"\t\t اسم المستخدم: %s\n"
+"\t\t على المسار: %s\n"
-#: ../../standalone/drakbackup_.c:2540
+#: ../../standalone/drakbackup:1
+#, c-format
msgid ""
"\n"
-"- User Files:\n"
+"- Save via %s on host: %s\n"
msgstr ""
"\n"
-"-ملفّات المستخدم:\n"
+"- احفظ عبر %s على المستضيف: %s\n"
+
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "\t\tErase=%s"
+msgstr "\t\tErase=%s"
-#: ../../standalone/drakbackup_.c:2542
+#: ../../standalone/drakbackup:1
+#, c-format
msgid ""
"\n"
-"- Other Files:\n"
+"- Save to Tape on device: %s"
msgstr ""
"\n"
-"-الملفّات الأخرى:\n"
+"- احفظ الى الشريط على الجهاز: %s"
+
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid " (multi-session)"
+msgstr " (متعدد الجلسات)"
+
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid " on device: %s"
+msgstr " على الجهاز: %s"
+
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "RW"
+msgstr "RW"
-#: ../../standalone/drakbackup_.c:2544
+#: ../../standalone/drakbackup:1
#, c-format
msgid ""
"\n"
-"- Save on Hard drive on path: %s\n"
+"- Burn to CD"
msgstr ""
"\n"
-"- احفد القرص الصّلب على الطّريق :%s\n"
+"- انسخ الى قرص مدمج"
-#: ../../standalone/drakbackup_.c:2547
+#: ../../standalone/drakbackup:1
+#, c-format
msgid ""
"\n"
"- Delete hard drive tar files after backup.\n"
msgstr ""
+"\n"
+"- احذف كل ملفات tar الخاصة بالقرص الصلب بعد كل عملية نسخ.\n"
-#: ../../standalone/drakbackup_.c:2553
+#: ../../standalone/drakbackup:1
+#, c-format
msgid ""
"\n"
-"- Burn to CD"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2554
-msgid "RW"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2555
-#, fuzzy, c-format
-msgid " on device: %s"
-msgstr "جهاز الفأرة: %s\n"
-
-#: ../../standalone/drakbackup_.c:2556
-msgid " (multi-session)"
+"- Save on Hard drive on path: %s\n"
msgstr ""
+"\n"
+"- احفظ على القرص الصلب على المسار:%s\n"
-#: ../../standalone/drakbackup_.c:2557
-#, fuzzy, c-format
+#: ../../standalone/drakbackup:1
+#, c-format
msgid ""
"\n"
-"- Save to Tape on device: %s"
+"- Other Files:\n"
msgstr ""
"\n"
-"-FTP و على host احفد على: %s\n"
+"-الملفّات الأخرى:\n"
-#: ../../standalone/drakbackup_.c:2558
+#: ../../standalone/drakbackup:1
#, c-format
-msgid "\t\tErase=%s"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2561
-#, fuzzy, c-format
msgid ""
"\n"
-"- Save via %s on host: %s\n"
+"- User Files:\n"
msgstr ""
"\n"
-"-FTP و على host احفد على: %s\n"
+"-ملفّات المستخدم:\n"
-#: ../../standalone/drakbackup_.c:2562
+#: ../../standalone/drakbackup:1
#, c-format
msgid ""
-"\t\t user name: %s\n"
-"\t\t on path: %s \n"
+"\n"
+"- System Files:\n"
msgstr ""
+"\n"
+"-ملفّات النّظام :\n"
-#: ../../standalone/drakbackup_.c:2563
+#: ../../standalone/drakbackup:1
+#, c-format
msgid ""
"\n"
-"- Options:\n"
+"Backup Sources: \n"
msgstr ""
"\n"
-"- خيارات:\n"
+"مصادر المساعد :\n"
-#: ../../standalone/drakbackup_.c:2564
-msgid "\tDo not include System Files\n"
-msgstr ""
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "Select user manually"
+msgstr "اخترالمستخدم يدويًّا"
-#: ../../standalone/drakbackup_.c:2567
-msgid "\tBackups use tar and bzip2\n"
-msgstr "\tBackups use tar and bzip2\n"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "Backup Users"
+msgstr "مستخدمو المساعد"
-#: ../../standalone/drakbackup_.c:2569
-msgid "\tBackups use tar and gzip\n"
-msgstr "\tBackups use tar and gzip\n"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "Backup system"
+msgstr "نظام المساعد"
-#: ../../standalone/drakbackup_.c:2572
+#: ../../standalone/drakbackup:1
#, c-format
-msgid ""
-"\n"
-"- Daemon (%s) include:\n"
-msgstr ""
-"\n"
-"-Daemon (%s) include :\n"
+msgid "Please choose what you want to backup"
+msgstr "رجاء اختر ما تريد نسخه احتياطياً"
-#: ../../standalone/drakbackup_.c:2573
-msgid "\t-Hard drive.\n"
-msgstr ""
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "on Tape Device"
+msgstr "على الشريط"
-#: ../../standalone/drakbackup_.c:2574
-msgid "\t-CDROM.\n"
-msgstr "\t-CDROM.\n"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "on CDROM"
+msgstr "على القرص المدمج"
-#: ../../standalone/drakbackup_.c:2575
-msgid "\t-Tape \n"
-msgstr ""
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "across Network"
+msgstr "عبر الشّبكة"
-#: ../../standalone/drakbackup_.c:2576
-msgid "\t-Network by FTP.\n"
-msgstr "\t-Network by FTP.\n"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "on Hard Drive"
+msgstr "على القرص الصّلب"
-#: ../../standalone/drakbackup_.c:2577
-msgid "\t-Network by SSH.\n"
-msgstr "\t-Network by SSH.\n"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "Please choose where you want to backup"
+msgstr "رجاء اختر أين تريد النسخ الاحتياطي."
-#: ../../standalone/drakbackup_.c:2578
-#, fuzzy
-msgid "\t-Network by rsync.\n"
-msgstr "\t-Network by FTP.\n"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "More Options"
+msgstr "خيارات أكثر"
-#: ../../standalone/drakbackup_.c:2579
-#, fuzzy
-msgid "\t-Network by webdav.\n"
-msgstr "\t-Network by FTP.\n"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "When"
+msgstr "متى "
-#: ../../standalone/drakbackup_.c:2581
-msgid "No configuration, please click Wizard or Advanced.\n"
-msgstr ""
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "Where"
+msgstr "أين"
-#: ../../standalone/drakbackup_.c:2587
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "What"
+msgstr "ماذا "
+
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "Delete Hard Drive tar files after backup to other media."
+msgstr "الغ ملفات tar الخلصة بالقرص تاصلب بعد النسخ الى وسيط آخر."
+
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "Send mail report after each backup to:"
+msgstr "أرسل تقريراً بريدياً بعد كل عملية نسخ الى:"
+
+#: ../../standalone/drakbackup:1
+#, c-format
msgid ""
-"List of data to restore:\n"
+"Please be sure that the cron daemon is included in your services. \n"
"\n"
+"Note that currently all 'net' medias also use the hard drive."
msgstr ""
+"تأكد من أن مراقب cron موجود ضمن خدمات النظام. \n"
+"\n"
+"لاحظ أن كل وسائط الشبكة تستخدم القرص الصلب."
-#: ../../standalone/drakbackup_.c:2754
+#: ../../standalone/drakbackup:1
+#, c-format
msgid ""
-"List of data corrupted:\n"
-"\n"
+"Please choose the\n"
+"media for backup."
msgstr ""
+"رجاء اختر\n"
+"وسيط النسخ الاحتياطي"
-#: ../../standalone/drakbackup_.c:2756
-msgid "Please uncheck or remove it on next time."
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid ""
+"Please choose the time \n"
+"interval between each backup"
msgstr ""
+"فضلا اختر الفترة \n"
+"ما بين كل عملية نسخ احتياطي"
-#: ../../standalone/drakbackup_.c:2766
-msgid "Backup files are corrupted"
-msgstr ""
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "Use daemon"
+msgstr "استخدم المراقب"
-#: ../../standalone/drakbackup_.c:2787
-msgid " All of your selected data have been "
-msgstr ""
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "monthly"
+msgstr "شهريا"
-#: ../../standalone/drakbackup_.c:2788
+#: ../../standalone/drakbackup:1
#, c-format
-msgid " Successfuly Restored on %s "
-msgstr ""
+msgid "weekly"
+msgstr "أسبوعيّا"
-#: ../../standalone/drakbackup_.c:2906
-msgid " Restore Configuration "
-msgstr ""
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "daily"
+msgstr "يوميّاً"
-#: ../../standalone/drakbackup_.c:2924
-msgid "OK to restore the other files."
-msgstr "اضغط موافق لاستعادة ملفات اخرى"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "hourly"
+msgstr "كلّ ساعة "
-#: ../../standalone/drakbackup_.c:2941
-msgid "User list to restore (only the most recent date per user is important)"
-msgstr "قائمة المستخدمين الذين سيتم استعادتهم"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "HardDrive / NFS"
+msgstr "HardDrive / NFS"
-#: ../../standalone/drakbackup_.c:3019
-msgid "Backup the system files before:"
-msgstr "انسخ ملفات النظام قبل:"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "CDROM / DVDROM"
+msgstr "CDROM / DVDROM"
-#: ../../standalone/drakbackup_.c:3021
-msgid "please choose the date to restore"
-msgstr "رجاء اختر تاريخ الإستعادة"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "Please enter the directory to save to:"
+msgstr "فضلاً اختر الدليل الذي سيتم الحفظ فيه:"
-#: ../../standalone/drakbackup_.c:3057
-msgid "Use Hard Disk to backup"
-msgstr "استخدم القرص الصلب للنسخ الإحتياطي"
+# c-format
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "Please check if you want to eject your tape after the backup."
+msgstr "فضلا قم بالتأشير هنا اذا كنت تريد اخراج الشريط بعد النسخ الإحتياطي."
-#: ../../standalone/drakbackup_.c:3060
-msgid "Please enter the directory to save:"
-msgstr ""
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "Please check if you want to erase your tape before the backup."
+msgstr "فضلا قم بالتأشير هنا اذا كنت تريد مسح الشريط قبل النسخ الإحتياطي."
-#: ../../standalone/drakbackup_.c:3103
-msgid "FTP Connection"
-msgstr "وصلة FTP"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "Please check if you want to use the non-rewinding device."
+msgstr ""
+"فضلا قم بالتأشير هنا اذا كنت تريد استخدام جهاز غير قابل للرجوع الى الخلف."
-#: ../../standalone/drakbackup_.c:3110
-msgid "Secure Connection"
-msgstr "وصلة آمنة"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "Please enter the device name to use for backup"
+msgstr "فضلاً أدخل اسم جهاز النسخ الإحتياطي"
-#: ../../standalone/drakbackup_.c:3134
-msgid "Restore from Hard Disk."
-msgstr "استعد من القرص الصلب"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "Use tape to backup"
+msgstr "استخم الشريط للنسخ الإحتياطي"
-#: ../../standalone/drakbackup_.c:3136
-msgid "Please enter the directory where backups are stored"
-msgstr "فضلاً أدخل الدليل الموجودة فيه النسخ الإحتياطية"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "No CD device defined!"
+msgstr "لم يتم تعريف جهاز قرص مدمج!"
-#: ../../standalone/drakbackup_.c:3204
-msgid "Select another media to restore from"
-msgstr "اختر وسيط آخر للاستعادة منه"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid ""
+"Please enter your CD Writer device name\n"
+" ex: 0,1,0"
+msgstr ""
+"فضلاً أدخل اسم جهاز نسخ الأقراص\n"
+" مثال: 0,1,0"
-#: ../../standalone/drakbackup_.c:3206
-msgid "Other Media"
-msgstr "وسيط آخر"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "Please check if you are using a DVDRAM device"
+msgstr "فضلا قم بالتأشير هنا اذا كنت تستخدم جهاز DVDRAM"
-#: ../../standalone/drakbackup_.c:3211
-msgid "Restore system"
-msgstr "استعد النّظام"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "Please check if you are using a DVDR device"
+msgstr "فضلا قم بالتأشير هنا اذا كنت تستخدم جهاز DVDR"
-#: ../../standalone/drakbackup_.c:3212
-msgid "Restore Users"
-msgstr "أعد المستخدمين "
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid " Erase Now "
+msgstr " امحِ الآن "
-#: ../../standalone/drakbackup_.c:3213
-msgid "Restore Other"
-msgstr "استعد آخر"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "Please check if you want to erase your RW media (1st Session)"
+msgstr ""
+"فضلا قم بالتأشير هنا اذا كنت تريد مسح الوسيط القابل لإعادة الكتابة (الجلسة "
+"الأولى)"
-#: ../../standalone/drakbackup_.c:3215
-#, fuzzy
-msgid "select path to restore (instead of /)"
-msgstr "اختر مسار الإستعادة (بدلاً من / )"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "Please check if you are using CDRW media"
+msgstr "فضلا قم بالتأشير هنا اذا كنت تستخدم وسيط CDRW"
-#: ../../standalone/drakbackup_.c:3219
-msgid "Do new backup before restore (only for incremental backups.)"
-msgstr "قم بنسخ احتياطي جديد فبل الإستعادة (فقط للنسخ الإحتياطية المتدرجة)"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "Please check for multisession CD"
+msgstr "فضلا قم بالتأشير هنا اذا كنت تستخدم قرص مدمج متعدد الجلسات"
-#: ../../standalone/drakbackup_.c:3221
-msgid "Remove user directories before restore."
-msgstr "أزل أدلة المستخدمين قبل الإستعادة"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "Please choose your CD/DVD media size (Mb)"
+msgstr "فضلاً اختر مساحة وسيط CD/DVD (بالميغابايت)"
-#: ../../standalone/drakbackup_.c:3334
+#: ../../standalone/drakbackup:1
+#, c-format
msgid ""
-"Restore Selected\n"
-"Catalog Entry"
+"Please choose your CD/DVD device\n"
+"(Press Enter to propogate settings to other fields.\n"
+"This field isn't necessary, only a tool to fill in the form.)"
msgstr ""
+"فضلاً اختر جهاز CD/DVD الخاص بك\n"
+"(اضغط ادخال لنشر الإعدادات لحقول أخرى.\n"
+"هذا الحقل ليس ضرورياً, انه مجرد أداة لملء الإستمارة.)"
-#: ../../standalone/drakbackup_.c:3344
-#, fuzzy
-msgid ""
-"Restore Selected\n"
-"Files"
-msgstr "ازل المادة المختارة"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "Use CD/DVDROM to backup"
+msgstr "استخدم CD/DVDROM للنسخ الإحتياطي"
-#: ../../standalone/drakbackup_.c:3361
-#, fuzzy
-msgid ""
-"Change\n"
-"Restore Path"
-msgstr "استعد آخر"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "Need hostname, username and password!"
+msgstr "يُحتاج الى اسم المستضيف و اسم المستخدم و كلمة المرور!"
-#: ../../standalone/drakbackup_.c:3427
+#: ../../standalone/drakbackup:1
#, c-format
-msgid "Backup files not found at %s."
-msgstr ""
+msgid "Remember this password"
+msgstr "تذكّر كلمة السر هذه"
-#: ../../standalone/drakbackup_.c:3440
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "Please enter your password"
+msgstr "رجاء كلمة المرور"
+
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "Please enter your login"
+msgstr "رجاء أدخل اسم الدخول"
+
+#: ../../standalone/drakbackup:1
#, c-format
msgid ""
-"Insert the CD with volume label %s\n"
-" in the CD drive under mount point /mnt/cdrom"
+"Please enter the directory (or module) to\n"
+" put the backup on this host."
msgstr ""
+"فضلاً أدخل الدليل (أو الوحدة) التي سيتم فيها وضع\n"
+" النسخة الإحتياطية على هذا المستضيف."
-#: ../../standalone/drakbackup_.c:3440
-#, fuzzy
-msgid "Restore From CD"
-msgstr "استعد من القرص الصلب"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "Please enter the host name or IP."
+msgstr "فضلا أدخل اسم المستضيف أو عنوان IP."
-#: ../../standalone/drakbackup_.c:3442
+#: ../../standalone/drakbackup:1
#, c-format
-msgid "Not the correct CD label. Disk is labelled %s."
+msgid ""
+"Other (not drakbackup)\n"
+"keys in place already"
msgstr ""
+"مفاتيح أخرى\n"
+"(غير drakbackup) موجودة مسبقاً"
-#: ../../standalone/drakbackup_.c:3452
+#: ../../standalone/drakbackup:1
#, c-format
msgid ""
-"Insert the tape with volume label %s\n"
-" in the tape drive device %s"
+" Transfer \n"
+"Now"
msgstr ""
+" انقل \n"
+"الآن"
-#: ../../standalone/drakbackup_.c:3452
-#, fuzzy
-msgid "Restore From Tape"
-msgstr "استعادة جدول التقسيم"
-
-#: ../../standalone/drakbackup_.c:3454
+#: ../../standalone/drakbackup:1
#, c-format
-msgid "Not the correct tape label. Tape is labelled %s."
+msgid ""
+"Create/Transfer\n"
+"backup keys for SSH"
msgstr ""
+"انشئ/لنقل\n"
+"مفاتيح النسخ الإحتياطي لـSSH"
-#: ../../standalone/drakbackup_.c:3474
-#, fuzzy
-msgid "Restore Via Network"
-msgstr "أعد المستخدمين "
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "Use Expect for SSH"
+msgstr "استخدم Expect لـSSH"
-#: ../../standalone/drakbackup_.c:3474
+#: ../../standalone/drakbackup:1
#, c-format
-msgid "Restore Via Network Protocol: %s"
-msgstr ""
+msgid "Net Method:"
+msgstr "Net Method:"
-#: ../../standalone/drakbackup_.c:3475
-#, fuzzy
-msgid "Host Name"
-msgstr "Host اسم "
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "Use network connection to backup"
+msgstr "استخدم الإتصال بالشبكة للنسخ الإحتياطي"
-#: ../../standalone/drakbackup_.c:3476
-msgid "Host Path or Module"
-msgstr ""
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "Users"
+msgstr "المستخدمون"
-#: ../../standalone/drakbackup_.c:3483
-#, fuzzy
-msgid "Password required"
-msgstr "كلمة المرور"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "Windows (FAT32)"
+msgstr "Windows (FAT32)"
-#: ../../standalone/drakbackup_.c:3489
-#, fuzzy
-msgid "Username required"
-msgstr "اسم المستخدم"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "Use Incremental Backups (do not replace old backups)"
+msgstr "استخدم النسخ التراكمي (لا تستبدل النسخ الإحتياطية القديمة)"
-#: ../../standalone/drakbackup_.c:3492
-#, fuzzy
-msgid "Hostname required"
-msgstr "اسم المستضيف :"
+#: ../../standalone/drakbackup:1 ../../standalone/drakfont:1
+#, c-format
+msgid "Remove Selected"
+msgstr "احذف المادة المختارة"
-#: ../../standalone/drakbackup_.c:3497
-msgid "Path or Module required"
-msgstr ""
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "Do not include the browser cache"
+msgstr "لا تستخدم ذاكرة المتصفح المخبئية"
-#: ../../standalone/drakbackup_.c:3510
-msgid "Files Restored..."
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "Please check all users that you want to include in your backup."
+msgstr "رجاء اختر كل المستخدمين الذين تريد تضمينهم في النسخ الإحتياطي."
+
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid ""
+"With this option you will be able to restore any version\n"
+" of your /etc directory."
msgstr ""
+"بهذا الخيار يمكنك استرجاع أي نسخة من\n"
+" دليل /etc الخاص بك."
-#: ../../standalone/drakbackup_.c:3513
-#, fuzzy
-msgid "Restore Failed..."
-msgstr "استعد آخر"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "Do not include critical files (passwd, group, fstab)"
+msgstr "لا تُضمّن الملفات المهمة (passws, group,fstab)"
-#: ../../standalone/drakbackup_.c:3751
-msgid "Restore all backups"
-msgstr "استعد كل النسخ الإحتياطية"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "Use incremental backup (do not replace old backups)"
+msgstr "استخدم النسخ التراكمي (لا تستبدل النسخ الإحتياطية القديمة)"
-#: ../../standalone/drakbackup_.c:3760
-msgid "Custom Restore"
-msgstr "استعادة مخصصة"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "Backup your System files. (/etc directory)"
+msgstr "انسخ ملفات النظام: (دليل /etc)"
-#: ../../standalone/drakbackup_.c:3804
-msgid "CD in place - continue."
-msgstr ""
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid ""
+"These options can backup and restore all files in your /etc directory.\n"
+msgstr "هذه الخيارات يمكنها نسخ و استرجاع كل الملفات في دليل /etc.\n"
-#: ../../standalone/drakbackup_.c:3810
-msgid "Browse to new restore repository."
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid ""
+"\n"
+"Please check all options that you need.\n"
msgstr ""
+"\n"
+"فضلاً قم بالتأشير على الخيارات التي تحتاجها.\n"
-#: ../../standalone/drakbackup_.c:3813
-#, fuzzy
-msgid "Restore From Catalog"
-msgstr "استعادة جدول التقسيم"
-
-#: ../../standalone/drakbackup_.c:3841
-#, fuzzy
-msgid "Restore Progress"
-msgstr "أعد المستخدمين "
-
-#: ../../standalone/drakbackup_.c:3883 ../../standalone/drakbackup_.c:3916
-#: ../../standalone/drakbackup_.c:3942 ../../standalone/drakbackup_.c:3969
-#: ../../standalone/drakbackup_.c:3996 ../../standalone/drakbackup_.c:4056
-#: ../../standalone/drakbackup_.c:4083 ../../standalone/drakbackup_.c:4113
-#: ../../standalone/drakbackup_.c:4139
-msgid "Previous"
-msgstr "السابق"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "Select the files or directories and click on 'Add'"
+msgstr "اختر الملفات أو الأدلة ثم انقر 'أضف'"
-#: ../../standalone/drakbackup_.c:3887 ../../standalone/drakbackup_.c:3973
-#: ../../standalone/logdrake_.c:203
-msgid "Save"
-msgstr "حفظ"
+#: ../../standalone/drakbackup:1 ../../standalone/drakfont:1
+#, c-format
+msgid "File Selection"
+msgstr "اختيار الملفات"
-#: ../../standalone/drakbackup_.c:3946
-msgid "Build Backup"
-msgstr "ابني النسخة الإحتياطية"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "Can't create catalog!"
+msgstr "تعذر انشاء الكتالوغ!"
-#: ../../standalone/drakbackup_.c:4000 ../../standalone/drakbackup_.c:4544
-msgid "Restore"
-msgstr "استعادة"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid " Error while sending mail. \n"
+msgstr " خطأ أثناء ارسال البريد. \n"
-#: ../../standalone/drakbackup_.c:4189
+#: ../../standalone/drakbackup:1
+#, c-format
msgid ""
-"Error during sendmail.\n"
-" Your report mail was not sent.\n"
-" Please configure sendmail"
+"\n"
+"Drakbackup activities via tape:\n"
+"\n"
msgstr ""
+"\n"
+"نشاطات Drakbackup عن طريق شريط التخزين:\n"
+"\n"
-#: ../../standalone/drakbackup_.c:4195
+#: ../../standalone/drakbackup:1
+#, c-format
msgid ""
-"Error during sending file via FTP.\n"
-" Please correct your FTP configuration."
+"\n"
+"Drakbackup activities via CD:\n"
+"\n"
msgstr ""
+"\n"
+"نشاطات Drakbackup عن طريق القرص المدمج:\n"
+"\n"
-#: ../../standalone/drakbackup_.c:4209
-#, fuzzy
+#: ../../standalone/drakbackup:1
+#, c-format
msgid ""
-"The following packages need to be installed:\n"
-" @list_of_rpm_to_install"
-msgstr "الحزمة %s يجب أن تُثبّت. هل تريد تثبيتها؟"
-
-#: ../../standalone/drakbackup_.c:4232
-msgid "Please select data to restore..."
-msgstr "رجاء اختر تاريخ الإستعادة..."
-
-#: ../../standalone/drakbackup_.c:4267
-msgid "Please select media for backup..."
-msgstr "رجاء اختر وسيط النسخ الإحتياطي..."
+"\n"
+"Drakbackup activities via %s:\n"
+"\n"
+msgstr ""
+"\n"
+"نشاطات Drakbackup عن طريق %s:\n"
+"\n"
-#: ../../standalone/drakbackup_.c:4275
-msgid "Please select data to backup..."
-msgstr "رجاء اختر البيانات المطلوب نسخها احتياطيا..."
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid ""
+"\n"
+" FTP connection problem: It was not possible to send your backup files by "
+"FTP.\n"
+msgstr ""
+"\n"
+" مشكلة في وصلة FTP: لم يكن بالإمكان ارسال ملفات النسخ الإحتياطي الخاصة بك "
+"باستخدام FTP.\n"
-#: ../../standalone/drakbackup_.c:4293 ../../standalone/drakbackup_.c:4304
+#: ../../standalone/drakbackup:1
+#, c-format
msgid ""
-"No configuration file found \n"
-"please click Wizard or Advanced."
+"file list sent by FTP: %s\n"
+" "
msgstr ""
-"لم يتم ايجاد ملف تهيئة \n"
-"فضلا اضغط معالج لأو متقدم."
+"قائمة الملفات المرسلة من FTP: %s\n"
+" "
-#: ../../standalone/drakbackup_.c:4308
-msgid "Under Devel ... please wait."
-msgstr "تحت التطوير ... انتظر فضلا"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "No changes to backup!"
+msgstr "لا تغييران للنسخة الإحتياطية!"
-#: ../../standalone/drakbackup_.c:4382
-msgid "Backup system files"
-msgstr "انسخ ملفات النظام"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "Hard Disk Backup files..."
+msgstr "ملفات النسخ الإحتياطي للقرص الصلب..."
-#: ../../standalone/drakbackup_.c:4384
-msgid "Backup user files"
-msgstr "انسخ ملفات المستخدم"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "Backup Other files..."
+msgstr "انسخ ملفات أخرى..."
-#: ../../standalone/drakbackup_.c:4386
-msgid "Backup other files"
-msgstr "انسخ ملفات أخرى"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "Hard Disk Backup Progress..."
+msgstr "التقدم في نسخ القرص الصلب..."
-#: ../../standalone/drakbackup_.c:4388 ../../standalone/drakbackup_.c:4421
-msgid "Total Progress"
-msgstr "اجمالي التقدم"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "Backup User files..."
+msgstr "انسخ ملفات المستخدمين..."
-#: ../../standalone/drakbackup_.c:4412
-msgid "files sending by FTP"
-msgstr "ارسال الملفات عن طريق FTP"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "Backup system files..."
+msgstr "انسخ ملفات النظام..."
-#: ../../standalone/drakbackup_.c:4416
-msgid "Sending files..."
-msgstr "جاري ارسال الملفات..."
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "No tape in %s!"
+msgstr "لا يوجد شريط في %s!"
-#: ../../standalone/drakbackup_.c:4500
-msgid "Backup Now from configuration file"
-msgstr "قم بالنسخ الآن من ملف التهيئة"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "Permission problem accessing CD."
+msgstr "توجد مشكلة في التصريح للوصول الى القرص المدمج."
-#: ../../standalone/drakbackup_.c:4505
-msgid "View Backup Configuration."
-msgstr "اعرض تهيئة النسخ الإحتياطي"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "This may take a moment to erase the media."
+msgstr "قد يستغرق مسح الوسيط بعض الوقت."
-#: ../../standalone/drakbackup_.c:4526
-msgid "Wizard Configuration"
-msgstr "إعدادات المعالج"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "Not erasable media!"
+msgstr "وسيط غير قابل للمسح!"
-#: ../../standalone/drakbackup_.c:4531
-msgid "Advanced Configuration"
-msgstr "إعداد متقدم"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "Does not appear to be recordable media!"
+msgstr "لا يبدو وسيط قابل للكتابة!"
-#: ../../standalone/drakbackup_.c:4536
-msgid "Backup Now"
-msgstr "قم بالنسخ الإحتياطي الآن"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "No CDR/DVDR in drive!"
+msgstr "لا يوجد قرص CD-R/DVD-R في السواقة"
-#: ../../standalone/drakbackup_.c:4576
-msgid "Drakbackup"
-msgstr "Drakbackup"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "WebDAV transfer failed!"
+msgstr "فشلت عملية نقل WebDAV!"
-#: ../../standalone/drakbackup_.c:4624
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "WebDAV remote site already in sync!"
+msgstr "موقع WebDAV البعيد متزامن مسبقاً!"
+
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "Total progess"
+msgstr "اجمالي التقدم"
+
+#: ../../standalone/drakbackup:1
+#, c-format
msgid ""
-"options description:\n"
-"\n"
-" In this step Drakbackup allow you to change:\n"
-"\n"
-" - The compression mode:\n"
-" \n"
-" If you check bzip2 compression, you will compress\n"
-" your data better than gzip (about 2-10 %).\n"
-" This option is not checked by default because\n"
-" this compression mode needs more time (about 1000% more).\n"
-" \n"
-" - The update mode:\n"
-"\n"
-" This option will update your backup, but this\n"
-" option is not really useful because you need to\n"
-" decompress your backup before you can update it.\n"
-" \n"
-" - the .backupignore mode:\n"
+"Transfer successful\n"
+"You may want to verify you can login to the server with:\n"
"\n"
-" Like with cvs, Drakbackup will ignore all references\n"
-" included in .backupignore files in each directories.\n"
-" ex: \n"
-" /*> cat .backupignore*/\n"
-" *.o\n"
-" *~\n"
-" ...\n"
-" \n"
+"ssh -i %s %s\\@%s\n"
"\n"
+"without being prompted for a password."
msgstr ""
-
-#: ../../standalone/drakbackup_.c:4654
-msgid ""
+"تم النقل بنجاح\n"
+"ربما تريد التحقق اذا كان يمكنك الدخول الى خادم بالأمر:\n"
"\n"
-" Some errors during sendmail are caused by \n"
-" a bad configuration of postfix. To solve it you have to\n"
-" set myhostname or mydomain in /etc/postfix/main.cf\n"
+"ssh -i %s %s\\@%s\n"
"\n"
-msgstr ""
+"دون تنبيهك الى ادخال كلمة مرور."
+
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "%s not responding"
+msgstr "%s لا يستجيب"
+
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "Can't find %s on %s"
+msgstr "تعذر ايجاد %s على %s"
-#: ../../standalone/drakbackup_.c:4662
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "Permission denied transferring %s to %s"
+msgstr "تم رفض لاتصريح بنقل %s الى %s"
+
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "Bad password on %s"
+msgstr "كلمة مرور سيئة على %s"
+
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "No password prompt on %s at port %s"
+msgstr "لا يوجد طلب كلمة سر في %s على المنفذ %s"
+
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "ERROR: Cannot spawn %s."
+msgstr "ERROR: Cannot spawn %s."
+
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "This may take a moment to generate the keys."
+msgstr "قد يستغرق هذا بعض الوقت لتوليد المفاتيح."
+
+#: ../../standalone/drakbackup:1
+#, c-format
msgid ""
-"options description:\n"
-"\n"
-" - Backup system files:\n"
-" \n"
-"\tThis option allows you to backup your /etc directory,\n"
-"\twhich contains all configuration files. Please be\n"
-"\tcareful during the restore step to not overwrite:\n"
-"\t\t/etc/passwd \n"
-"\t\t/etc/group \n"
-"\t\t/etc/fstab\n"
-"\n"
-" - Backup User files: \n"
-"\n"
-"\tThis option allows you select all users that you want \n"
-"\tto backup.\n"
-"\tTo preserve disk space, it is recommended that you \n"
-"\tdo not include web browser's cache.\n"
-"\n"
-" - Backup Other files: \n"
-"\n"
-"\tThis option allows you to add more data to save.\n"
-"\tWith the other backup it's not possible at the \n"
-"\tmoment to select incremental backup.\t\t\n"
-" \n"
-" - Incremental Backups:\n"
-"\n"
-"\tThe incremental backup is the most powerful \n"
-"\toption for backup. This option allows you \n"
-"\tto backup all your data the first time, and \n"
-"\tonly the changed afterward.\n"
-"\tThen you will be able, during the restore\n"
-"\tstep, to restore your data from a specified\n"
-"\tdate.\n"
-"\tIf you have not selected this option all\n"
-"\told backups are deleted before each backup. \n"
-"\n"
+"%s exists, delete?\n"
"\n"
+"Warning: If you've already done this process you'll probably\n"
+" need to purge the entry from authorized_keys on the server."
msgstr ""
+"%s موجود, هل تريد حذفه؟\n"
+"\n"
+"تحذير: اذا قمت بهذه العملية مسبقاً غالباً\n"
+" ستحتاج الى حذف المدخل من authorized_keys على الخادم."
-#: ../../standalone/drakbackup_.c:4701
+#: ../../standalone/drakbackup:1
+#, c-format
msgid ""
-"restore description:\n"
-" \n"
-"Only the most recent date will be used, because with incremental \n"
-"backups it is necessary to restore one by one each older backup.\n"
"\n"
-"So if you don't want to restore a user please unselect all their\n"
-"check boxes.\n"
-"\n"
-"Otherwise, you are able to select only one of these.\n"
+" DrakBackup Report Details\n"
"\n"
-" - Incremental Backups:\n"
"\n"
-"\tThe incremental backup is the most powerful \n"
-"\toption to use. This option allows you to \n"
-"\tbackup all of your data the first time, and \n"
-"\tonly the changed data after.\n"
-"\tSo you will be able, during the restore\n"
-"\tstep, to restore your data from a specified\n"
-"\tdate.\n"
-"\tIf you have not selected this option all\n"
-"\told backups are deleted before each backup. \n"
+msgstr ""
"\n"
+" تفاصيل تقرير DrakBackup\n"
"\n"
"\n"
-msgstr ""
-#: ../../standalone/drakbackup_.c:4727
-#, fuzzy
-msgid ""
-" Copyright (C) 2001-2002 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita."
-"fr>"
-msgstr ""
-" جميع الحقوق محفوظة (C) 2001 MandrakeSoft من دوبون سيباستيان <dupont_s"
-"\\@epita.fr>"
-
-#: ../../standalone/drakbackup_.c:4729
-msgid ""
-" updates 2002 MandrakeSoft by Stew Benedict <sbenedict\\@mandrakesoft.com>"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:4732
+#: ../../standalone/drakbackup:1
+#, c-format
msgid ""
-"Description:\n"
"\n"
-" Drakbackup is used to backup your system.\n"
-" During the configuration you can select: \n"
-"\t- System files, \n"
-"\t- Users files, \n"
-"\t- Other files.\n"
-"\tor All your system ... and Other (like Windows Partitions)\n"
-"\n"
-" Drakbackup allows you to backup your system on:\n"
-"\t- Harddrive.\n"
-"\t- NFS.\n"
-"\t- CDROM (CDRW), DVDROM (with autoboot, rescue and autoinstall.).\n"
-"\t- FTP.\n"
-"\t- Rsync.\n"
-"\t- Webdav.\n"
-"\t- Tape.\n"
-"\n"
-" Drakbackup allows you to restore your system to\n"
-" a user selected directory.\n"
+" DrakBackup Daemon Report\n"
"\n"
-" Per default all backup will be stored on your\n"
-" /var/lib/drakbackup directory\n"
"\n"
-" Configuration file:\n"
-"\t/etc/drakconf/drakbackup/drakbakup.conf\n"
+msgstr ""
"\n"
-"Restore Step:\n"
-" \n"
-" During the restore step, DrakBackup will remove \n"
-" your original directory and verify that all \n"
-" backup files are not corrupted. It is recommended \n"
-" you do a last backup before restoring.\n"
+" تقرير مراقب DrakBackup\n"
"\n"
"\n"
-msgstr ""
-#: ../../standalone/drakbackup_.c:4769
+#: ../../standalone/drakbackup:1
+#, c-format
msgid ""
-"options description:\n"
"\n"
-"Please be careful when you are using ftp backup, because only \n"
-"backups that are already built are sent to the server.\n"
-"So at the moment, you need to build the backup on your hard \n"
-"drive before sending it to the server.\n"
+" DrakBackup Report \n"
"\n"
msgstr ""
-
-#: ../../standalone/drakbackup_.c:4778
-msgid ""
"\n"
-"Restore Backup Problems:\n"
+" تقرير DrakBackup \n"
"\n"
-"During the restore step, Drakbackup will verify all your\n"
-"backup files before restoring them.\n"
-"Before the restore, Drakbackup will remove \n"
-"your original directory, and you will loose all your \n"
-"data. It is important to be careful and not modify the \n"
-"backup data files by hand.\n"
-msgstr ""
-#: ../../standalone/drakboot_.c:50
+#: ../../standalone/drakbackup:1
#, c-format
-msgid "Installation of %s failed. The following error occured:"
-msgstr "فشل تثبيت %s. ظهر الخطأ التالي:"
-
-#: ../../standalone/drakbug_.c:45
-msgid "Mandrake Bug Report Tool"
-msgstr ""
-
-#: ../../standalone/drakbug_.c:50
-msgid "First Time Wizard"
-msgstr ""
-
-#: ../../standalone/drakbug_.c:51
-msgid "Synchronization tool"
-msgstr ""
-
-#: ../../standalone/drakbug_.c:52 ../../standalone/drakbug_.c:66
-#: ../../standalone/drakbug_.c:133 ../../standalone/drakbug_.c:135
-#: ../../standalone/drakbug_.c:139
-#, fuzzy
-msgid "Standalone Tools"
-msgstr "أدوات سطر الأوامر"
-
-#: ../../standalone/drakbug_.c:53
-#, fuzzy
-msgid "HardDrake"
-msgstr "على القرص الصّلب"
-
-#: ../../standalone/drakbug_.c:54
-#, fuzzy
-msgid "Mandrake Online"
-msgstr "استشارات Mandrake"
-
-#: ../../standalone/drakbug_.c:55
-#, fuzzy
-msgid "Menudrake"
-msgstr "MandrakeStore"
-
-#: ../../standalone/drakbug_.c:56
-#, fuzzy
-msgid "Msec"
-msgstr "الفأرة"
+msgid "INFO"
+msgstr "INFO"
-#: ../../standalone/drakbug_.c:57
-#, fuzzy
-msgid "Remote Control"
-msgstr "طابعة بعيدة"
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "FATAL"
+msgstr "FATAL"
-#: ../../standalone/drakbug_.c:58
-msgid "Software Manager"
-msgstr ""
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "WARNING"
+msgstr "WARNING"
-#: ../../standalone/drakbug_.c:59
-msgid "Urpmi"
-msgstr ""
+#: ../../standalone/drakbackup:1
+#, c-format
+msgid "Cron not available yet as non-root"
+msgstr "Cron غير متوفر حتى الآن للمستخدمين غير الجذر"
-#: ../../standalone/drakbug_.c:60
-msgid "Windows Migration tool"
-msgstr ""
+#: ../../standalone/drakboot:1
+#, c-format
+msgid "Installation of %s failed. The following error occured:"
+msgstr "فشل تثبيت %s. ظهر الخطأ التالي:"
-#: ../../standalone/drakbug_.c:61
-#, fuzzy
-msgid "Userdrake"
-msgstr "Printerdrake"
+#: ../../standalone/drakbug:1
+#, c-format
+msgid "No browser available! Please install one"
+msgstr "لا يوجد متصفح متوفر! فضلاً قم بتثبيت متصفح"
-#: ../../standalone/drakbug_.c:62
-#, fuzzy
-msgid "Configuration Wizards"
-msgstr "معالج إعداد الشبكة"
+#: ../../standalone/drakbug:1
+#, c-format
+msgid "connecting to Bugzilla wizard ..."
+msgstr "جاري الإتصال بمعالج Bugzilla ..."
-#: ../../standalone/drakbug_.c:75
-#, fuzzy
-msgid "Application:"
-msgstr "التحقق"
+#: ../../standalone/drakbug:1
+#, c-format
+msgid "Package not installed"
+msgstr "لم يتم تثبيت الحزمة"
-#: ../../standalone/drakbug_.c:76
-msgid "Package: "
-msgstr ""
+#: ../../standalone/drakbug:1
+#, c-format
+msgid "Not installed"
+msgstr "غير مثبّت"
-#: ../../standalone/drakbug_.c:77
-msgid "Kernel:"
-msgstr ""
+#: ../../standalone/drakbug:1
+#, c-format
+msgid "Standalone Tools"
+msgstr "الأدوات المنفصلة"
-#: ../../standalone/drakbug_.c:78
-#, fuzzy
-msgid "Release: "
-msgstr "من فضلك انتظر"
+#: ../../standalone/drakbug:1
+#, c-format
+msgid "Report"
+msgstr "تقرير"
-#: ../../standalone/drakbug_.c:93
+#: ../../standalone/drakbug:1
+#, c-format
msgid ""
"\n"
"\n"
@@ -10509,332 +14810,361 @@ msgid ""
"transferred to that server\n"
"\n"
msgstr ""
+"\n"
+"\n"
+"لتسليم تقرير العيوب, اضغط على زر تقرير.\n"
+"سيقوم هذا بقتح متصفح ويب على الصفحة https://drakbug.mandrakesoft.com\n"
+" حيث ستجد استمارة عليك ملؤها. المعلومات المذكرة أعلاه سيتم نقلها\n"
+"الى ذلك الخادم\n"
+"\n"
-#: ../../standalone/drakbug_.c:112
-#, fuzzy
-msgid "Report"
-msgstr "استعادة"
-
-#: ../../standalone/drakbug_.c:148
-#, fuzzy
-msgid "Not installed"
-msgstr "ما بعد ازالة التثبيت"
-
-#: ../../standalone/drakbug_.c:160
-#, fuzzy
-msgid "Package not installed"
-msgstr "ما بعد ازالة التثبيت"
-
-#: ../../standalone/drakbug_.c:173
-msgid "connecting to Bugzilla wizard ..."
-msgstr ""
-
-#: ../../standalone/drakbug_.c:180
-#, fuzzy
-msgid "No browser available! Please install one"
-msgstr "ستكون لقطات الشاشة موجودة بعد التثبيت في %s"
-
-#: ../../standalone/drakconnect_.c:75
+#: ../../standalone/drakbug:1
#, c-format
-msgid "Network configuration (%d adapters)"
-msgstr "اعدادات الشبكة (%d موائمات)"
-
-#: ../../standalone/drakconnect_.c:83 ../../standalone/drakconnect_.c:591
-msgid "Profile: "
-msgstr "التشكيل:"
-
-#: ../../standalone/drakconnect_.c:91
-msgid "Del profile..."
-msgstr "احذف التشكيل..."
+msgid "Release: "
+msgstr "الإصدار:"
-#: ../../standalone/drakconnect_.c:97
-msgid "Profile to delete:"
-msgstr "التشكيل المطلوب حذفه:"
+#: ../../standalone/drakbug:1
+#, c-format
+msgid "Kernel:"
+msgstr "النواة:"
-#: ../../standalone/drakconnect_.c:125
-msgid "New profile..."
-msgstr "تشكيل جديد..."
+#: ../../standalone/drakbug:1
+#, c-format
+msgid "Package: "
+msgstr "الجزمة: "
-#: ../../standalone/drakconnect_.c:131
-msgid ""
-"Name of the profile to create (the new profile is created as a copy of the "
-"current one) :"
-msgstr ""
-"لإسم التشكيل الذي ستعمله (التشكيل الجديد يتم عمله كنسخة من التشكيل الحالي) :"
+#: ../../standalone/drakbug:1
+#, c-format
+msgid "Application:"
+msgstr "التطبيق:"
-#: ../../standalone/drakconnect_.c:157
-msgid "Hostname: "
-msgstr "اسم المستضيف :"
+#: ../../standalone/drakbug:1
+#, c-format
+msgid "Configuration Wizards"
+msgstr "معالجات التهيئة"
-#: ../../standalone/drakconnect_.c:164
-msgid "Internet access"
-msgstr "الدخول الى الإنترنت"
+#: ../../standalone/drakbug:1
+#, c-format
+msgid "Userdrake"
+msgstr "Userdrake"
-#: ../../standalone/drakconnect_.c:177
-msgid "Type:"
-msgstr "النوع:"
+#: ../../standalone/drakbug:1
+#, c-format
+msgid "Windows Migration tool"
+msgstr "أداة الإنتقال من Windows"
-#: ../../standalone/drakconnect_.c:180 ../../standalone/drakconnect_.c:372
-msgid "Gateway:"
-msgstr "البوابة:"
+#: ../../standalone/drakbug:1
+#, c-format
+msgid "Urpmi"
+msgstr "Urpmi"
-#: ../../standalone/drakconnect_.c:180 ../../standalone/drakconnect_.c:372
-msgid "Interface:"
-msgstr "الواجهة:"
+#: ../../standalone/drakbug:1
+#, c-format
+msgid "Software Manager"
+msgstr "مدير البرامج"
-#: ../../standalone/drakconnect_.c:191
-msgid "Status:"
-msgstr "الحالة:"
+#: ../../standalone/drakbug:1
+#, c-format
+msgid "Remote Control"
+msgstr "التحكم عن بعد"
-#: ../../standalone/drakconnect_.c:198 ../../standalone/net_monitor_.c:145
-msgid "Wait please"
-msgstr "الانتظار من فضلك"
+#: ../../standalone/drakbug:1
+#, c-format
+msgid "Msec"
+msgstr "Msec"
-#: ../../standalone/drakconnect_.c:216
-msgid "Configure Internet Access..."
-msgstr "إعداد الدخول الى الإنترنت..."
+#: ../../standalone/drakbug:1
+#, c-format
+msgid "Menudrake"
+msgstr "Menudrake"
-#: ../../standalone/drakconnect_.c:223 ../../standalone/drakconnect_.c:445
-msgid "LAN configuration"
-msgstr "إعداد LAN"
+#: ../../standalone/drakbug:1
+#, c-format
+msgid "Mandrake Online"
+msgstr "Mandrake Online"
-#: ../../standalone/drakconnect_.c:228
-msgid "Driver"
-msgstr "المحرك"
+#: ../../standalone/drakbug:1
+#, c-format
+msgid "HardDrake"
+msgstr "HardDrake"
-#: ../../standalone/drakconnect_.c:228
-msgid "Interface"
-msgstr "الواجهة"
+#: ../../standalone/drakbug:1
+#, c-format
+msgid "Synchronization tool"
+msgstr "DrakSync"
-#: ../../standalone/drakconnect_.c:228
-msgid "Protocol"
-msgstr "البروتوكول"
+#: ../../standalone/drakbug:1
+#, c-format
+msgid "First Time Wizard"
+msgstr "معالج First Time"
-#: ../../standalone/drakconnect_.c:228
-msgid "State"
-msgstr "الحالة"
+#: ../../standalone/drakbug:1
+#, c-format
+msgid "Mandrake Bug Report Tool"
+msgstr "أداة تقرير العيوب في Mandrake"
-#: ../../standalone/drakconnect_.c:240
-msgid "Configure Local Area Network..."
-msgstr "إعداد الشبكة المحلية..."
+#: ../../standalone/drakconnect:1
+#, c-format
+msgid "DHCP Client"
+msgstr "DHCP العميل"
-#: ../../standalone/drakconnect_.c:252
-msgid "Click here to launch the wizard ->"
-msgstr "انقر هنا لتشغيل المعالج ->"
+#: ../../standalone/drakconnect:1
+#, c-format
+msgid "Ethernet Card"
+msgstr "Ethernet Card"
-#: ../../standalone/drakconnect_.c:253
-msgid "Wizard..."
-msgstr "المعالج..."
+#: ../../standalone/drakconnect:1
+#, c-format
+msgid "Gateway"
+msgstr "Gateway"
-#: ../../standalone/drakconnect_.c:279
-msgid "Apply"
-msgstr "تطبيق"
+#: ../../standalone/drakconnect:1
+#, c-format
+msgid "Parameters"
+msgstr "Parameters"
-#: ../../standalone/drakconnect_.c:380 ../../standalone/drakconnect_.c:403
-#: ../../standalone/net_monitor_.c:457
-msgid "Connected"
-msgstr "متّصل "
+#: ../../standalone/drakconnect:1 ../../standalone/net_monitor:1
+#, c-format
+msgid "Connection type: "
+msgstr "نوع العلاقة"
-#: ../../standalone/drakconnect_.c:380 ../../standalone/drakconnect_.c:403
-#: ../../standalone/net_monitor_.c:457
-msgid "Not connected"
-msgstr "غير متصل"
+#: ../../standalone/drakconnect:1
+#, c-format
+msgid "Profile: "
+msgstr "التشكيل:"
-#: ../../standalone/drakconnect_.c:381 ../../standalone/drakconnect_.c:404
-msgid "Connect..."
-msgstr "اتصل..."
+#: ../../standalone/drakconnect:1
+#, c-format
+msgid "Internet Connection Configuration"
+msgstr "إعدادات الإتصال بالإنترنت"
-#: ../../standalone/drakconnect_.c:381 ../../standalone/drakconnect_.c:404
-msgid "Disconnect..."
-msgstr "اقطع الإتصال..."
+#: ../../standalone/drakconnect:1
+#, c-format
+msgid "Internet connection configuration"
+msgstr "إعدادات الإتصال بالإنترنت"
-#: ../../standalone/drakconnect_.c:400
+#: ../../standalone/drakconnect:1
+#, c-format
msgid ""
-"Warning, another Internet connection has been detected, maybe using your "
-"network"
-msgstr "تحذير, تم ايجاد اتصال إنترنت آخر, ربما يكون يستخدم شبكتك"
+"You don't have an Internet connection.\n"
+"Create one first by clicking on 'Configure'"
+msgstr ""
+"ليست لديك أي اتصالات إنترنت.\n"
+"قم بعمل اتصال أولا باستخدام 'تهيئة'"
-#: ../../standalone/drakconnect_.c:427
+#: ../../standalone/drakconnect:1
+#, c-format
msgid ""
-"You don't have any configured interface.\n"
-"Configure them first by clicking on 'Configure'"
+"This interface has not been configured yet.\n"
+"Launch the configuration wizard in the main window"
msgstr ""
-"لم تقم بتهيئة أي واجهات.\n"
-"قم بتهيئتهم أولا عن طريق الضغط على 'تهيئة'"
+"لم يتم تهيئة الواجهة بعد.\n"
+"قم بتشغيل معالج التهيئة في النافذة الرئيسية"
-#: ../../standalone/drakconnect_.c:449
-msgid "LAN Configuration"
-msgstr "إعداد LAN"
+#: ../../standalone/drakconnect:1
+#, c-format
+msgid "activate now"
+msgstr "قم بالتنشيط الآن"
-#: ../../standalone/drakconnect_.c:460
+#: ../../standalone/drakconnect:1
#, c-format
-msgid "Adapter %s: %s"
-msgstr "المحوّل %s: %s"
+msgid "deactivate now"
+msgstr "قم بإزالة التنشيط الآن"
-#: ../../standalone/drakconnect_.c:466
-msgid "Boot Protocol"
-msgstr "بروتوكول الإقلاع"
+#: ../../standalone/drakconnect:1
+#, c-format
+msgid "DHCP client"
+msgstr "DHCP العميل "
-#: ../../standalone/drakconnect_.c:467
+#: ../../standalone/drakconnect:1
+#, c-format
msgid "Started on boot"
msgstr "يتم بدءه عند الإقلاع"
-#: ../../standalone/drakconnect_.c:468
-msgid "DHCP client"
-msgstr "DHCP العميل "
+#: ../../standalone/drakconnect:1
+#, c-format
+msgid "Boot Protocol"
+msgstr "بروتوكول الإقلاع"
-#: ../../standalone/drakconnect_.c:493 ../../standalone/drakconnect_.c:496
-msgid "activate now"
-msgstr "قم بالتنشيط الآن"
+#: ../../standalone/drakconnect:1
+#, c-format
+msgid "Adapter %s: %s"
+msgstr "المحوّل %s: %s"
-#: ../../standalone/drakconnect_.c:493 ../../standalone/drakconnect_.c:496
-msgid "deactivate now"
-msgstr "قم بإزالة التنشيط الآن"
+#: ../../standalone/drakconnect:1
+#, c-format
+msgid "LAN Configuration"
+msgstr "إعداد LAN"
-#: ../../standalone/drakconnect_.c:499
-msgid ""
-"This interface has not been configured yet.\n"
-"Launch the configuration wizard in the main window"
-msgstr ""
-"لم يتم تهيئة الواجهة بعد.\n"
-"قم بتشغيل معالج التهيئة في النافذة الرئيسية"
+#: ../../standalone/drakconnect:1
+#, c-format
+msgid "LAN configuration"
+msgstr "إعداد LAN"
-#: ../../standalone/drakconnect_.c:556
+#: ../../standalone/drakconnect:1
+#, c-format
msgid ""
-"You don't have any internet connection.\n"
-"Create one first by clicking on 'Configure'"
+"You don't have any configured interface.\n"
+"Configure them first by clicking on 'Configure'"
msgstr ""
-"ليست لديك أي اتصالات إنترنت.\n"
-"قم بعمل اتصال أولا باستخدام 'تهيئة'"
-
-#: ../../standalone/drakconnect_.c:580
-msgid "Internet connection configuration"
-msgstr "إعدادات الإتصال بالإنترنت"
+"لم تقم بتهيئة أي واجهات.\n"
+"قم بتهيئتهم أولا عن طريق الضغط على 'تهيئة'"
-#: ../../standalone/drakconnect_.c:584
-msgid "Internet Connection Configuration"
-msgstr "إعدادات الإتصال بالإنترنت"
+#: ../../standalone/drakconnect:1
+#, c-format
+msgid "Connect..."
+msgstr "اتصل..."
-#: ../../standalone/drakconnect_.c:593 ../../standalone/net_monitor_.c:94
-msgid "Connection type: "
-msgstr "نوع العلاقة"
+#: ../../standalone/drakconnect:1
+#, c-format
+msgid "Disconnect..."
+msgstr "اقطع الإتصال..."
-#: ../../standalone/drakconnect_.c:599
-msgid "Parameters"
-msgstr "Parameters"
+#: ../../standalone/drakconnect:1 ../../standalone/net_monitor:1
+#, c-format
+msgid "Not connected"
+msgstr "غير متصل"
-#: ../../standalone/drakconnect_.c:618
-msgid "Gateway"
-msgstr "Gateway"
+#: ../../standalone/drakconnect:1 ../../standalone/net_monitor:1
+#, c-format
+msgid "Connected"
+msgstr "متّصل"
-#: ../../standalone/drakconnect_.c:627
-msgid "Ethernet Card"
-msgstr "Ethernet Card"
+#: ../../standalone/drakconnect:1
+#, c-format
+msgid ""
+"Warning, another Internet connection has been detected, maybe using your "
+"network"
+msgstr "تحذير, تم ايجاد اتصال إنترنت آخر, ربما يكون يستخدم شبكتك"
-#: ../../standalone/drakconnect_.c:628
-msgid "DHCP Client"
-msgstr "DHCP العميل"
+#: ../../standalone/drakconnect:1
+#, c-format
+msgid "Interface:"
+msgstr "الواجهة:"
-#: ../../standalone/drakfloppy_.c:39
-msgid "-misc-Fixed-Medium-r-*-*-*-140-*-*-*-*-*-*,*"
-msgstr "-متنوع-ثابت-وسط-ر-*-*-*-140-*-*-*-*-*-*,*"
+#: ../../standalone/drakconnect:1
+#, c-format
+msgid "Gateway:"
+msgstr "البوابة:"
-#: ../../standalone/drakfloppy_.c:40
-msgid "Module name"
-msgstr "اسم الوحدة"
+#: ../../standalone/drakconnect:1
+#, c-format
+msgid "Apply"
+msgstr "تطبيق"
-#: ../../standalone/drakfloppy_.c:40
-msgid "Size"
-msgstr "حجم"
+#: ../../standalone/drakconnect:1
+#, c-format
+msgid "Click here to launch the wizard ->"
+msgstr "انقر هنا لتشغيل المعالج ->"
-#: ../../standalone/drakfloppy_.c:45
-msgid "drakfloppy"
-msgstr "دريك للاقراص المرنة"
+#: ../../standalone/drakconnect:1
+#, c-format
+msgid "Wizard..."
+msgstr "المعالج..."
-#: ../../standalone/drakfloppy_.c:63
-msgid "boot disk creation"
-msgstr "صنع قرص مرن لبدء النظام"
+#: ../../standalone/drakconnect:1
+#, c-format
+msgid "Status:"
+msgstr "الحالة:"
-#: ../../standalone/drakfloppy_.c:71 ../../standalone/drakfloppy_.c:84
-msgid "default"
-msgstr "المرجع"
+#: ../../standalone/drakconnect:1
+#, c-format
+msgid "Type:"
+msgstr "النوع:"
-#: ../../standalone/drakfloppy_.c:87
+#: ../../standalone/drakconnect:1
#, c-format
-msgid "DrakFloppy Error: %s"
-msgstr "خطأ فى دريك لعمل قرص بدء النظام: %s"
+msgid "Internet access"
+msgstr "الدخول الى الإنترنت"
-#: ../../standalone/drakfloppy_.c:98
-msgid "kernel version"
-msgstr "اصدارة اللب"
+#: ../../standalone/drakconnect:1
+#, c-format
+msgid "Hostname: "
+msgstr "اسم المستضيف :"
-#: ../../standalone/drakfloppy_.c:104
-msgid "General"
-msgstr "عام"
+#: ../../standalone/drakconnect:1
+#, c-format
+msgid "Configure Local Area Network..."
+msgstr "إعداد الشبكة المحلية..."
-#: ../../standalone/drakfloppy_.c:109
-msgid "Expert Area"
-msgstr "منطقة الخبراء"
+#: ../../standalone/drakconnect:1
+#, c-format
+msgid "State"
+msgstr "الحالة"
-#: ../../standalone/drakfloppy_.c:112
-msgid "mkinitrd optional arguments"
-msgstr "mkinitrd الخصائص الاختيارية"
+#: ../../standalone/drakconnect:1
+#, c-format
+msgid "Driver"
+msgstr "المحرك"
-#: ../../standalone/drakfloppy_.c:113
-msgid "Add a module"
-msgstr "اضافة وحدة"
+#: ../../standalone/drakconnect:1
+#, c-format
+msgid "Protocol"
+msgstr "البروتوكول"
-#: ../../standalone/drakfloppy_.c:133
-msgid "force"
-msgstr "اجبار"
+#: ../../standalone/drakconnect:1
+#, c-format
+msgid "Interface"
+msgstr "الواجهة"
-#: ../../standalone/drakfloppy_.c:134
-msgid "if needed"
-msgstr "اذا احتجته"
+#: ../../standalone/drakconnect:1
+#, c-format
+msgid "Configure Internet Access..."
+msgstr "إعداد الدخول الى الإنترنت..."
-#: ../../standalone/drakfloppy_.c:135
-msgid "omit scsi modules"
-msgstr "SCSI اهمل وحدات ال"
+#: ../../standalone/drakconnect:1 ../../standalone/net_monitor:1
+#, c-format
+msgid "Wait please"
+msgstr "الانتظار من فضلك"
-#: ../../standalone/drakfloppy_.c:136
-msgid "omit raid modules"
-msgstr "RAID اهمل وحدات ال"
+#: ../../standalone/drakconnect:1
+#, c-format
+msgid ""
+"Name of the profile to create (the new profile is created as a copy of the "
+"current one) :"
+msgstr ""
+"لإسم التشكيل الذي ستعمله (التشكيل الجديد يتم عمله كنسخة من التشكيل الحالي) :"
-#: ../../standalone/drakfloppy_.c:172
-msgid "Remove a module"
-msgstr "ازالة وحدة"
+#: ../../standalone/drakconnect:1
+#, c-format
+msgid "New profile..."
+msgstr "تشكيل جديد..."
-#: ../../standalone/drakfloppy_.c:194
-msgid "Output"
-msgstr "الناتج"
+#: ../../standalone/drakconnect:1
+#, c-format
+msgid "Profile to delete:"
+msgstr "التشكيل المطلوب حذفه:"
-#: ../../standalone/drakfloppy_.c:206
-msgid "Build the disk"
-msgstr "جهز القرص"
+#: ../../standalone/drakconnect:1
+#, c-format
+msgid "Del profile..."
+msgstr "احذف التشكيل..."
-#: ../../standalone/drakfloppy_.c:336
+#: ../../standalone/drakconnect:1
#, c-format
-msgid "Be sure a media is present for the device %s"
-msgstr "تأكد من وجود الوسيط للوحدة %s"
+msgid "Network configuration (%d adapters)"
+msgstr "اعدادات الشبكة (%d موائمات)"
-#: ../../standalone/drakfloppy_.c:341
+#: ../../standalone/drakedm:1
#, c-format
msgid ""
-"There is no medium or it is write-protected for device %s.\n"
-"Please insert one."
+"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 ""
-"لا يوجد وسط أو ربما يكون الوسط محمي من القراءة للجهاز %s.\n"
-"فضلاً ادخل وسط فى الوحدة."
+"مدير عرض X11 يسمح لك بتسجيل الدخول الى\n"
+"نظامك مع تشغيل خادم النوافذ X و يدعم تشغيل\n"
+"عدة جلسات X مختلفة على ماكينتك المحلية في نفس الوقت."
-#: ../../standalone/drakfloppy_.c:344
+#: ../../standalone/drakedm:1
#, c-format
-msgid "Unable to fork: %s"
-msgstr "تعذر تنفيذ: %s"
+msgid "Choosing a display manager"
+msgstr "جاري اختيار مدير العرض"
-#: ../../standalone/drakfloppy_.c:349
+#: ../../standalone/drakfloppy:1
#, c-format
msgid ""
-"Unable to close properly mkbootdisk: \n"
+"Unable to properly close mkbootdisk: \n"
" %s \n"
" %s"
msgstr ""
@@ -10842,133 +15172,231 @@ msgstr ""
" %s \n"
" %s"
-#: ../../standalone/drakfont_.c:213
-msgid "Search installed fonts"
-msgstr "ابحث في الخطوط المثبتة"
+#: ../../standalone/drakfloppy:1
+#, c-format
+msgid "Unable to fork: %s"
+msgstr "تعذر تنفيذ: %s"
-#: ../../standalone/drakfont_.c:215
-msgid "Unselect fonts installed"
-msgstr "أزل اختيار الخطوط المثبتة"
+#: ../../standalone/drakfloppy:1
+#, c-format
+msgid ""
+"There is no medium or it is write-protected for device %s.\n"
+"Please insert one."
+msgstr ""
+"لا يوجد وسط أو ربما يكون الوسط محمي من القراءة للجهاز %s.\n"
+"فضلاً ادخل وسط فى الوحدة."
-#: ../../standalone/drakfont_.c:239
-msgid "parse all fonts"
-msgstr "تحليل كل الخطوط"
+#: ../../standalone/drakfloppy:1
+#, c-format
+msgid "Be sure a media is present for the device %s"
+msgstr "تأكد من وجود الوسيط للوحدة %s"
-#: ../../standalone/drakfont_.c:242
-msgid "no fonts found"
-msgstr "لا توجد خطوط"
+#: ../../standalone/drakfloppy:1
+#, c-format
+msgid "Build the disk"
+msgstr "جهز القرص"
-#: ../../standalone/drakfont_.c:251 ../../standalone/drakfont_.c:305
-#: ../../standalone/drakfont_.c:361 ../../standalone/drakfont_.c:454
-#: ../../standalone/drakfont_.c:466 ../../standalone/drakfont_.c:493
-#: ../../standalone/drakfont_.c:514 ../../standalone/drakfont_.c:532
-msgid "done"
-msgstr "انتهى"
+#: ../../standalone/drakfloppy:1
+#, c-format
+msgid "Output"
+msgstr "الناتج"
-#: ../../standalone/drakfont_.c:257
-msgid "could not find any font in your mounted partitions"
-msgstr "لم أتمكن من ايجاد أي خطوط في تجزئاتك المحملة"
+#: ../../standalone/drakfloppy:1
+#, c-format
+msgid "Remove a module"
+msgstr "ازالة وحدة"
-#: ../../standalone/drakfont_.c:303
-msgid "Reselect correct fonts"
-msgstr "أعد اختيار الخطوط الصحيحة"
+#: ../../standalone/drakfloppy:1
+#, c-format
+msgid "omit raid modules"
+msgstr "RAID اهمل وحدات ال"
-#: ../../standalone/drakfont_.c:307
-msgid "could not find any font.\n"
-msgstr "لم أتمكن من إيجاد أي خط.\n"
+#: ../../standalone/drakfloppy:1
+#, c-format
+msgid "omit scsi modules"
+msgstr "SCSI اهمل وحدات ال"
-#: ../../standalone/drakfont_.c:331
-msgid "Search fonts in installed list"
-msgstr "ابحث عن الخطوط في القائمة المثبتة"
+#: ../../standalone/drakfloppy:1
+#, c-format
+msgid "if needed"
+msgstr "اذا احتجته"
-#: ../../standalone/drakfont_.c:359
-msgid "Fonts copy"
-msgstr "نقل الخطوط"
+#: ../../standalone/drakfloppy:1
+#, c-format
+msgid "force"
+msgstr "اجبار"
-#: ../../standalone/drakfont_.c:363
-msgid "True Type fonts installation"
-msgstr "تثبيت خطوط True Type"
+#: ../../standalone/drakfloppy:1
+#, c-format
+msgid "Add a module"
+msgstr "اضافة وحدة"
-#: ../../standalone/drakfont_.c:371
-msgid "please wait during ttmkfdir..."
-msgstr "رجاء انتظر أثناء عملية ttmkfdir..."
+#: ../../standalone/drakfloppy:1
+#, c-format
+msgid "mkinitrd optional arguments"
+msgstr "mkinitrd الخصائص الاختيارية"
-#: ../../standalone/drakfont_.c:377
-msgid "True Type install done"
-msgstr "تم تثبيت خطوط True Type"
+#: ../../standalone/drakfloppy:1
+#, c-format
+msgid "Expert Area"
+msgstr "منطقة الخبراء"
-#: ../../standalone/drakfont_.c:386 ../../standalone/drakfont_.c:413