diff options
author | Pablo Saratxaga <pablo@mandriva.com> | 2004-11-05 12:32:33 +0000 |
---|---|---|
committer | Pablo Saratxaga <pablo@mandriva.com> | 2004-11-05 12:32:33 +0000 |
commit | 6e5ae80845e2672e843e08c8f1de2e1dcaa66ba2 (patch) | |
tree | a82c75813f28178b657461328cfed23eafdcdcd0 /mdkapplet | |
parent | 0c766d5cc663f081ad40e08a556db60e1c128d99 (diff) | |
download | mgaonline-6e5ae80845e2672e843e08c8f1de2e1dcaa66ba2.tar mgaonline-6e5ae80845e2672e843e08c8f1de2e1dcaa66ba2.tar.gz mgaonline-6e5ae80845e2672e843e08c8f1de2e1dcaa66ba2.tar.bz2 mgaonline-6e5ae80845e2672e843e08c8f1de2e1dcaa66ba2.tar.xz mgaonline-6e5ae80845e2672e843e08c8f1de2e1dcaa66ba2.zip |
updated pot file; fixed duplicate strings with unusual case
Diffstat (limited to 'mdkapplet')
-rwxr-xr-x | mdkapplet | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -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'); |