diff options
author | Nicolas Vigier <nvigier@mandriva.com> | 2008-03-26 14:22:15 +0000 |
---|---|---|
committer | Nicolas Vigier <nvigier@mandriva.com> | 2008-03-26 14:22:15 +0000 |
commit | 3394095d40f97752e83a6eecad1179c109965263 (patch) | |
tree | 414a48eaa09f1045562841e0215302856c717c8d /proxy_wizard | |
parent | b108f1185d45a4101bc570cf0e5e092f79bd1541 (diff) | |
download | drakwizard-3394095d40f97752e83a6eecad1179c109965263.tar drakwizard-3394095d40f97752e83a6eecad1179c109965263.tar.gz drakwizard-3394095d40f97752e83a6eecad1179c109965263.tar.bz2 drakwizard-3394095d40f97752e83a6eecad1179c109965263.tar.xz drakwizard-3394095d40f97752e83a6eecad1179c109965263.zip |
factorize strings for translation and remove space before question mark
Diffstat (limited to 'proxy_wizard')
-rwxr-xr-x | proxy_wizard/Squid.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/proxy_wizard/Squid.pm b/proxy_wizard/Squid.pm index 801e9e7c..5eec68f3 100755 --- a/proxy_wizard/Squid.pm +++ b/proxy_wizard/Squid.pm @@ -234,7 +234,7 @@ sub do_it { $::testing and return; my $in = 'interactive'->vnew('su', 'Squid Config'); if (!services::starts_on_boot('squid')) { - my $start_httpd = $in->ask_yesorno(N("Start squid server on boot"), N("Would you like to start the squid service automatically on every boot ?"), 1); + my $start_httpd = $in->ask_yesorno(N("Start %s server on boot", "squid"), N("Would you like to start the %s service automatically on every boot?", "squid"), 1); if ($start_httpd) { run_program::rooted($::prefix, '/sbin/chkconfig', '--level', '345', 'squid', 'on'); } |