summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorYves Duret <yduret@mandriva.com>2001-08-15 19:34:29 +0000
committerYves Duret <yduret@mandriva.com>2001-08-15 19:34:29 +0000
commitc35b43523e45cf270979e2d62948e64db115a03e (patch)
tree623edfa2a209833ac316e90ea279e5e588a35fe3
parent432282505421d28563441c5d8761018db7e1c401 (diff)
downloadcontrol-center-c35b43523e45cf270979e2d62948e64db115a03e.tar
control-center-c35b43523e45cf270979e2d62948e64db115a03e.tar.gz
control-center-c35b43523e45cf270979e2d62948e64db115a03e.tar.bz2
control-center-c35b43523e45cf270979e2d62948e64db115a03e.tar.xz
control-center-c35b43523e45cf270979e2d62948e64db115a03e.zip
added drakautoinst
-rwxr-xr-xcontrol-center17
1 files changed, 9 insertions, 8 deletions
diff --git a/control-center b/control-center
index 8095d264..096036d1 100755
--- a/control-center
+++ b/control-center
@@ -26,7 +26,7 @@ use POSIX;
use Locale::GetText;
setlocale (LC_ALL, "");
-Locale::GetText::textdomain ("DrakConf");
+Locale::GetText::textdomain ("drakconf");
import Locale::GetText I_;
@@ -136,10 +136,10 @@ map {
map {
create_tree_item($treeitem_sub[int($_->[2])],$_->[0], "$xpm_path_l/$_->[1]",0);
-} ([_("Boot Disk"), 'drakfloppy-mdk.png',4] , [_("Boot Config"),'drakboot-mdk.png',4] ,
+} ([_("Boot Disk"), 'drakfloppy-mdk.png',4] , [_("Boot Config"),'drakboot-mdk.png',4], [_("Auto Install"), 'drakboot-mdk.png', 4],
[_("Display"),'XFdrake-mdk.png',3] , [_("Hardware"),'harddrake-mdk.png',3] , [_("Mouse"), 'mousedrake-mdk.png',3] ,
[_("Printer"),'printer-mdk.png',3] , [_("Keyboard"), 'keyboard-mdk.png',3],
- [_("Connection") , 'draknet-mdk.png',2] , [_("Connection Sharing"),'drakgw-mdk.png',2],
+ [_("Connection") , 'draknet-mdk.png',2] , [_("Connection Sharing"),'drakgw-mdk.png',2], #[_("Proxy"), 'drakgw-mdk.png', 2],
[_("Security Level"), 'draksec-mdk.png',1], [_("Firewalling"), 'firewall-mdk.png',1],
[_("Menus") , 'menudrake-mdk.png',0], [_("Services") , 'service-mdk.png' , 0],
[_("Fonts"), 'drakfont-mdk.png',0], [_("Date & Time") , 'time-mdk.png',0],
@@ -147,14 +147,15 @@ map {
[_("Console"), 'drakboot-mdk.png',0]
);
-my %tree_exec = (_("Boot Disk") => "$_xbindir/drakfloppy.real", _("Boot Config") => "$_sbindir/drakboot",
+my %tree_exec = (_("Boot Disk") => "$_xbindir/drakfloppy.real", _("Boot Config") => "$_sbindir/drakboot", _("Auto Install") => "$_sbindir/drakautoinst",
_("Display") => "$_sbindir/XFdrake" ,
_("Hardware") => "$_sbindir/harddrake" , _("Mouse") => "$_sbindir/mousedrake" ,
_("Printer") => "$_sbindir/printerdrake" , _("Keyboard") => "$_sbindir/keyboarddrake" ,
- _("Connection") => "$_sbindir/draknet" ,
- _("Connection Sharing") => "$_sbindir/drakgw" ,
- _("Firewalling") => "$_sbindir/tinyfirewall" ,
- _("Security Level") => "$_sbindir/draksec" ,
+ _("Connection") => "$_sbindir/draknet",
+ _("Connection Sharing") => "$_sbindir/drakgw",
+ _("Proxy") => "$_sbindir/drakproxy",
+ _("Firewalling") => "$_sbindir/tinyfirewall",
+ _("Security Level") => "$_sbindir/draksec",
_("Date & Time") => "$_sbindir/clock.pm",
_("Menus") => "$_sbindir/menus.pm",
_("Services") => "$_sbindir/drakxservices",