diff options
-rwxr-xr-x | proxy_wizard/Squid.pm | 2 | ||||
-rwxr-xr-x | web_wizard/Apache.pm | 2 |
2 files changed, 2 insertions, 2 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'); } diff --git a/web_wizard/Apache.pm b/web_wizard/Apache.pm index bae656cc..20077852 100755 --- a/web_wizard/Apache.pm +++ b/web_wizard/Apache.pm @@ -249,7 +249,7 @@ sub do_it { $::testing and return; my $in = 'interactive'->vnew('su', 'Apache'); if (!services::starts_on_boot('httpd')) { - my $start_httpd = $in->ask_yesorno(N("Start httpd server on boot"), N("Would you like to start the httpd service automatically on every boot ?"), 1); + my $start_httpd = $in->ask_yesorno(N("Start %s server on boot", "httpd"), N("Would you like to start the %s service automatically on every boot?", "httpd"), 1); if ($start_httpd) { run_program::rooted($::prefix, '/sbin/chkconfig', '--level', '345', 'httpd', 'on'); } |