summaryrefslogtreecommitdiffstats
path: root/mdkonline
diff options
context:
space:
mode:
authorDaouda Lo <daouda@mandriva.com>2001-08-29 09:51:01 +0000
committerDaouda Lo <daouda@mandriva.com>2001-08-29 09:51:01 +0000
commitc3c18ebc96d321c08c175cebcc5066910977aa8f (patch)
tree7590fb56b3302ea0f4a8e1a6149967c47f783908 /mdkonline
parentb1ed9a5120156708e0b0a9e1976ca1ed110eabed (diff)
downloadmgaonline-c3c18ebc96d321c08c175cebcc5066910977aa8f.tar
mgaonline-c3c18ebc96d321c08c175cebcc5066910977aa8f.tar.gz
mgaonline-c3c18ebc96d321c08c175cebcc5066910977aa8f.tar.bz2
mgaonline-c3c18ebc96d321c08c175cebcc5066910977aa8f.tar.xz
mgaonline-c3c18ebc96d321c08c175cebcc5066910977aa8f.zip
frontend nearly finished (95%)
Diffstat (limited to 'mdkonline')
-rwxr-xr-xmdkonline11
1 files changed, 8 insertions, 3 deletions
diff --git a/mdkonline b/mdkonline
index c0e2aefb..44bbbd85 100755
--- a/mdkonline
+++ b/mdkonline
@@ -113,7 +113,8 @@ sub on_prev_clicked {
sub step_wizard {
my $vbox_welc= new Gtk::VBox(0,0);
write_on_pixmaps($vbox_welc,"welcome.png",_("Welcome to Mandrake Online"),540,100);
- my $label_welc = new Gtk::Label(_("\n\nAt this step You are supposed to have a account on Mandrake Online.\n This assistant will help you to upload your configuration \n (packages, hardware configuration) to a centralized databases in \n order to keep you informed about security updates, useful upgrades.\n "));
+ my $label_welc = new Gtk::Label(_("At this step You are supposed to have a account on Mandrake Online.\n This assistant will help you to upload your configuration \n (packages, hardware configuration) to a centralized databases in \n order to keep you informed about security updates, useful upgrades.\n "));
+ $label_welc->set_uposition(20,150);
$vbox_welc->pack_start($label_welc,0,0,1);
$notebook_global->append_page($vbox_welc,new Gtk::Label("welcome"));
my $vbox_priv = new Gtk::VBox(0,0);
@@ -127,7 +128,11 @@ sub step_wizard {
pack_box_identity($vbox_ident,_("Login:"),$login_user,_("Password:"),$passwd_user);
$notebook_global->append_page($vbox_ident,new Gtk::Label("login"));
my $vbox_rev=new Gtk::VBox(0,0);
-
+ write_on_pixmaps($vbox_rev,"mailnews.png",_("Sending your config"),540,100);
+ my $label_rev = new Gtk::Label(_("We'll going to store on our databases all the packages installed \n on your system and your hardware configuration \n if you don't want to send anything , press Cancel \n otherwise press the Next button."));
+ $label_rev->set_uposition(20,150);
+ $vbox_rev->pack_start($label_rev,0,0,1);
+ $notebook_global->append_page($vbox_rev,new Gtk::Label("revision"));
}
sub confirm_quit {
@@ -146,7 +151,7 @@ sub confirm_quit {
$bbox1->add($button_quit);
my $label = new Gtk::Label( _("Do you really want to abort the
- Mandrake Online?\nTo return to fwdrake press 'Cancel'\nTo really quit the wizard press 'Quit'" ));
+ Mandrake Online?\nTo return to mdkonline press 'Cancel'\nTo really quit the wizard press 'Quit'" ));
my $style1 = new Gtk::Style;
$style1->font(Gtk::Gdk::Font->fontset_load("-adobe-times-bold-r-normal--14-*-100-100-p-*-iso8859-*,*-r-*"));
$label->set_style($style1);