summaryrefslogtreecommitdiffstats
path: root/mdkonline
diff options
context:
space:
mode:
authorDaouda Lo <daouda@mandriva.com>2004-09-09 08:26:44 +0000
committerDaouda Lo <daouda@mandriva.com>2004-09-09 08:26:44 +0000
commitf9b0152a44221e05a49c23bdd226db32dbf5ff66 (patch)
tree3e16ef97d9abcff76b972d505a57140c7c6f4ec4 /mdkonline
parenta75bd784837ff35a8017638febda67260faf126f (diff)
downloadmgaonline-f9b0152a44221e05a49c23bdd226db32dbf5ff66.tar
mgaonline-f9b0152a44221e05a49c23bdd226db32dbf5ff66.tar.gz
mgaonline-f9b0152a44221e05a49c23bdd226db32dbf5ff66.tar.bz2
mgaonline-f9b0152a44221e05a49c23bdd226db32dbf5ff66.tar.xz
mgaonline-f9b0152a44221e05a49c23bdd226db32dbf5ff66.zip
- remove string incoherencies
Diffstat (limited to 'mdkonline')
-rwxr-xr-xmdkonline4
1 files changed, 2 insertions, 2 deletions
diff --git a/mdkonline b/mdkonline
index bf508456..3be7b8ad 100755
--- a/mdkonline
+++ b/mdkonline
@@ -54,7 +54,7 @@ mkdir_p($confdir) if !-d $confdir;
mdkonline::mv_files("/root/.mdkupdate", $conffile);
$o->{mw} = ugtk2->new("Mandrakeonline" . " " . $VERSION, center => 1);
-gtkset_size_request($o->{mw}{window}, 580, 470);
+gtkset_size_request($o->{mw}{window}, 600, 500);
$o->{mw}{rwindow}->set_position('center');
$o->{mw}{window}->signal_connect("delete_event", sub { Gtk2->main_quit });
$o->{nb} = Gtk2::Notebook->new;
@@ -98,7 +98,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, gtktext_insert(Gtk2::TextView->new, N("This 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(gtkset_border_width(Gtk2::Frame->new(N("Create a Mandrakeonline Account")), 5),
gtkpack_(gtkset_border_width(Gtk2::VBox->new(0, 5), 5),
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) }),