summaryrefslogtreecommitdiffstats
path: root/mdkonline
diff options
context:
space:
mode:
authorThierry Vignaud <tvignaud@mandriva.org>2004-03-03 09:03:57 +0000
committerThierry Vignaud <tvignaud@mandriva.org>2004-03-03 09:03:57 +0000
commitdd909652802de118beb60f1c9877f126f13755d8 (patch)
tree583785194d583e057b5096ddfa1483be93d60bc8 /mdkonline
parent98d8d830aac57c5dd1c824ab49383297650d0ab1 (diff)
downloadmgaonline-dd909652802de118beb60f1c9877f126f13755d8.tar
mgaonline-dd909652802de118beb60f1c9877f126f13755d8.tar.gz
mgaonline-dd909652802de118beb60f1c9877f126f13755d8.tar.bz2
mgaonline-dd909652802de118beb60f1c9877f126f13755d8.tar.xz
mgaonline-dd909652802de118beb60f1c9877f126f13755d8.zip
fix bogus "new Object->new"
Diffstat (limited to 'mdkonline')
-rwxr-xr-xmdkonline8
1 files changed, 4 insertions, 4 deletions
diff --git a/mdkonline b/mdkonline
index 7bcba982..cf449aeb 100755
--- a/mdkonline
+++ b/mdkonline
@@ -101,7 +101,7 @@ gtkadd($o->{mw}{window},
gtkappend_page($o->{nb},
gtkpack_(Gtk2::VBox->new(0, 3),
0, set_darea(N("Welcome to MandrakeOnline"), 'welcome'),
- 0, Gtk2::Label->new(N("At this step You are supposed to have an account on MandrakeOnline.\nThis assistant will help you to upload your configuration\n(packages, hardware configuration) to a centralized database in\norder to keep you informed about security updates and useful upgrades.\n")),
+ 0, Gtk2::WrappedLabel->new(N("At this step You are supposed to have an account on MandrakeOnline.\nThis assistant will help you to upload your configuration\n(packages, hardware configuration) to a centralized database in\norder to keep you informed about security updates and useful upgrades.\n")),
1, gtkadd(Gtk2::Frame->new(N("Create a MandrakeOnline Account")),
gtkpack_(Gtk2::VBox->new(0, 3),
0, gtksignal_connect(gtkset_active($o->{account_cb} = Gtk2::CheckButton->new(N("I don't have a MandrakeOnline account and I want to ") . N("Subscribe")), $create_account), clicked => sub { $create_account =! $create_account; $o->{vbox_account}->set_sensitive($create_account) }),
@@ -125,7 +125,7 @@ gtkappend_page($o->{nb},
gtkappend_page($o->{nb},
gtkpack_(Gtk2::VBox->new(0, 3),
0, set_darea("MandrakeOnline" . " " . N("Authentification"), 'authentification'),
- 0, Gtk2::Label->new("\n\n" . N("Enter your MandrakeOnline login, password and machine name:")),
+ 0, Gtk2::WrappedLabel->new("\n\n" . N("Enter your MandrakeOnline login, password and machine name:")),
1, create_packtable({ homogeneous => 1, col_spacings => 10, row_spacings => 10, mcc => 1 },
[],
[ N("Login:"), $o->{login} = Gtk2::Entry->new(), "" ],
@@ -136,13 +136,13 @@ gtkappend_page($o->{nb},
gtkappend_page($o->{nb},
gtkpack_(Gtk2::VBox->new(0, 3),
0, set_darea("Send Configuration", 'sendingconf'),
- 1, Gtk2::Label->new(N("In order to benefit from MandrakeOnline services,\nwe are about to upload your configuration.\n\nThe Wizard will now send the following information to MandrakeSoft:\n1) the list of packages you have installed on your system,\n2) your hardware configuration.\n\nIf you feel uncomfortable by that idea, or do not want to benefit from this service,\nplease press 'Cancel'. By pressing 'Next', you allow us to keep you informed\nabout security updates and useful upgrades via personalized email alerts.\nFurthermore, you benefit from discounted paid support services on\nwww.mandrakeexpert.com.\nFinally, an email alias with your username\@mandrakeonline.net will be provided to you."))
+ 1, Gtk2::WrappedLabel->new(N("In order to benefit from MandrakeOnline services,\nwe are about to upload your configuration.\n\nThe Wizard will now send the following information to MandrakeSoft:\n1) the list of packages you have installed on your system,\n2) your hardware configuration.\n\nIf you feel uncomfortable by that idea, or do not want to benefit from this service,\nplease press 'Cancel'. By pressing 'Next', you allow us to keep you informed\nabout security updates and useful upgrades via personalized email alerts.\nFurthermore, you benefit from discounted paid support services on\nwww.mandrakeexpert.com.\nFinally, an email alias with your username\@mandrakeonline.net will be provided to you."))
)
);
gtkappend_page($o->{nb},
gtkpack_(Gtk2::VBox->new(0, 3),
0, set_darea("Finish", 'welcome'),
- 1, new Gtk2::Label->new("\n\n" . N("Your upload was successful!") . "\n" . N("From now you will receive on security and updates \nannouncements thanks to MandrakeOnline.") . "\n\n" . N("MandrakeOnline offers you the ability to automate the updates.\nA program will run regulary in your system waiting for new updates\n")),
+ 1, Gtk2::WrappedLabel->new("\n\n" . N("Your upload was successful!") . "\n" . N("From now you will receive on security and updates \nannouncements thanks to MandrakeOnline.") . "\n\n" . N("MandrakeOnline offers you the ability to automate the updates.\nA program will run regulary in your system waiting for new updates\n")),
0, gtkadd(Gtk2::Frame->new(N("automated Upgrades")),
gtkpack_(Gtk2::VBox->new(0, 3),
0, gtksignal_connect(gtkset_active($o->{autoup} = Gtk2::CheckButton->new(N("Yes I want automated updates")), $auto_update), clicked => sub { $auto_update =! $auto_update; $o->{vbox_auto}->set_sensitive($auto_update) }),