diff options
author | Olivier Blin <oblin@mandriva.com> | 2008-02-26 19:20:32 +0000 |
---|---|---|
committer | Olivier Blin <oblin@mandriva.com> | 2008-02-26 19:20:32 +0000 |
commit | 33efe168ffed70ebda4da6a8a7cccaed26a277e4 (patch) | |
tree | 43f2401cb29054defc67944887995e0658786786 /bin | |
parent | 48c0991c67d756e3382d5ce98db5ac55a74ffe14 (diff) | |
download | drakx-net-33efe168ffed70ebda4da6a8a7cccaed26a277e4.tar drakx-net-33efe168ffed70ebda4da6a8a7cccaed26a277e4.tar.gz drakx-net-33efe168ffed70ebda4da6a8a7cccaed26a277e4.tar.bz2 drakx-net-33efe168ffed70ebda4da6a8a7cccaed26a277e4.tar.xz drakx-net-33efe168ffed70ebda4da6a8a7cccaed26a277e4.zip |
add title in wait messages
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/drakvpn-old | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/drakvpn-old b/bin/drakvpn-old index de096a2..3f247a9 100755 --- a/bin/drakvpn-old +++ b/bin/drakvpn-old @@ -94,7 +94,7 @@ What would you like to do?"), # FIXME: reconfigure is not handled if ($r eq "disable") { if (!$::testing) { - my $_wait_disabl = $in->wait_message('', N("Disabling VPN...")); + my $_wait_disabl = $in->wait_message(N("Please wait"), N("Disabling VPN...")); network::ipsec::stop_daemons(); } foreach ($ipsec_conf, $tunnels_file) { @@ -124,7 +124,7 @@ What would you like to do?"), rename("$_.drakvpndisable", $_) or die "Could not find configuration. Please reconfigure."; } { - my $_wait_enabl = $in->wait_message('', N("Enabling VPN...")); + my $_wait_enabl = $in->wait_message(N("Please wait"), N("Enabling VPN...")); network::ipsec::start_daemons(); } log::l("[drakvpn] Enabled"); |