summaryrefslogtreecommitdiffstats
path: root/mdkapplet
diff options
context:
space:
mode:
authorDaouda Lo <daouda@mandriva.com>2004-11-19 17:47:59 +0000
committerDaouda Lo <daouda@mandriva.com>2004-11-19 17:47:59 +0000
commit40a5f359c5baf7db488127958a466d7484dc942a (patch)
treee3a664dfc0c1660026996ef2aeb705f7ec3f1010 /mdkapplet
parent04b1ab5929723adfd48e9603041b84fad983ad1e (diff)
downloadmgaonline-40a5f359c5baf7db488127958a466d7484dc942a.tar
mgaonline-40a5f359c5baf7db488127958a466d7484dc942a.tar.gz
mgaonline-40a5f359c5baf7db488127958a466d7484dc942a.tar.bz2
mgaonline-40a5f359c5baf7db488127958a466d7484dc942a.tar.xz
mgaonline-40a5f359c5baf7db488127958a466d7484dc942a.zip
correct wait message
Diffstat (limited to 'mdkapplet')
-rwxr-xr-xmdkapplet6
1 files changed, 3 insertions, 3 deletions
diff --git a/mdkapplet b/mdkapplet
index 0f8b590f..8c4bbae3 100755
--- a/mdkapplet
+++ b/mdkapplet
@@ -110,7 +110,7 @@ my %actions = (
'update' => { name => N("Install updates"), launch => sub { installUpdates() } },
'configureApplet' => { name => N("Configure the service"), launch => sub { configure() } },
'check' => { name => N("Check Updates"), launch => sub {
- my $w = $in->wait_message(N("Please Wait"), N("Check updates") . '...');
+ my $w = $in->wait_message(N("Please wait"), N("Check updates") . '...');
checkUpdates(); undef $w } },
'weblink' => { name => N("Online WebSite"), launch => sub { mdkonline::get_site($online_site, 'info.php') } },
'confNetwork' => { name => N("Configure Network"), launch => sub { configNetwork() } },
@@ -164,7 +164,7 @@ sub showMainWindow() {
1, gtksignal_connect(Gtk2::Button->new(N("Install updates")), clicked => sub { installUpdates() }),
1, gtksignal_connect(Gtk2::Button->new(N("Configure")), clicked => sub { configure() }),
1, gtksignal_connect(Gtk2::Button->new(N("Check updates")), clicked => sub {
- my $w = $in->wait_message(N("Please Wait"), N("Check updates") . '...');
+ my $w = $in->wait_message(N("Please wait"), N("Check updates") . '...');
checkUpdates(); undef $w }),
1, gtksignal_connect(Gtk2::Button->new(N("See logs")), clicked => sub { if (defined $wlog) { $wlog->{window}->show } else { $wlog = displayLogs(); $wlog->main } }),
)
@@ -222,7 +222,7 @@ sub installUpdates {
system "/usr/sbin/mdkupdate", "--applet";
my $newmd5 = md5file($binfile);
if ($newmd5 ne $oldmd5) { logIt(N("Mandrakeonline seems to be reinstalled, reloading applet ....")); exec('/usr/bin/mdkapplet') };
- my $w = $in->wait_message(N("Please Wait"), N("Check updates"));
+ my $w = $in->wait_message(N("Please wait"), N("Check updates"));
silentCheck(); gtkflush();
undef $w;
my $mdkupdate_status = cat_('/tmp/mdkupdate.log');