diff options
-rwxr-xr-x | news_wizard/Inn.pm | 2 | ||||
-rwxr-xr-x | postfix_wizard/Postfix.pm | 4 | ||||
-rwxr-xr-x | proxy_wizard/Squid.pm | 2 |
3 files changed, 4 insertions, 4 deletions
diff --git a/news_wizard/Inn.pm b/news_wizard/Inn.pm index 0f8088c8..0da435f3 100755 --- a/news_wizard/Inn.pm +++ b/news_wizard/Inn.pm @@ -46,7 +46,7 @@ $o->{pages} = { next => 'ask_news_server' }, ask_news_server => { - name => N("News Server") . "\n\n" . N("The news server name is the name of the host providing the Internet news to your network; the name is usually provided by your provider.") . "\n\n" . N("Internet host names must be in the form "host.domain.domaintype"; for example, if your provider is "provider.com", the internet news server is usually "news.provider.com"."), + name => N("News Server") . "\n\n" . N("The news server name is the name of the host providing the Internet news to your network; the name is usually provided by your provider.") . "\n\n" . N("Internet host names must be in the form \"host.domain.domaintype\"; for example, if your provider is \"provider.com\", the internet news server is usually \"news.provider.com\"."), pre => sub { $o->{var}{news_server} ||= get_server(); }, diff --git a/postfix_wizard/Postfix.pm b/postfix_wizard/Postfix.pm index e2e7ceec..7f07937d 100755 --- a/postfix_wizard/Postfix.pm +++ b/postfix_wizard/Postfix.pm @@ -49,7 +49,7 @@ $o->{pages} = { next => 'config' }, config => { - name => N("Outgoing Mail Address") . "\n\n" . N("You can select the kind of address that outgoing mail will show in the "From:" and "Reply-to" field.") . "\n\n" . N("This should be chosen consistently with the address you use for incoming mail."), + name => N("Outgoing Mail Address") . "\n\n" . N("You can select the kind of address that outgoing mail will show in the \"From:\" and \"Reply-to\" field.") . "\n\n" . N("This should be chosen consistently with the address you use for incoming mail."), pre => sub { $o->{var}{wiz_mail_masquerade} ||= get_mail_masquerade(); }, @@ -68,7 +68,7 @@ $o->{pages} = { next => 'config' }, isp => { - name => N("Internet Mail Gateway") . "\n\n" . N("Your server will send the outgoing through a mail gateway, that will take care of the final delivery.") . "\n\n" . N("Internet host names must be in the form "host.domain.domaintype"; for example, if your provider is "provider.com", the internet mail server is usually "smtp.provider.com"."), + name => N("Internet Mail Gateway") . "\n\n" . N("Your server will send the outgoing through a mail gateway, that will take care of the final delivery.") . "\n\n" . N("Internet host names must be in the form \"host.domain.domaintype\"; for example, if your provider is \"provider.com\", the internet mail server is usually \"smtp.provider.com\"."), pre => sub { $o->{var}{wiz_ext_mail_relay} ||= get_mail_relay(); }, diff --git a/proxy_wizard/Squid.pm b/proxy_wizard/Squid.pm index fee43edb..021ae140 100755 --- a/proxy_wizard/Squid.pm +++ b/proxy_wizard/Squid.pm @@ -137,7 +137,7 @@ $o->{pages} = { next => 'summary_2' }, valcachepeer => { - name => N("Cache hierarchy") . "\n\n" . N("Enter the qualified hostname (like "cache.domain.net") and the port of the proxy to use."), + name => N("Cache hierarchy") . "\n\n" . N("Enter the qualified hostname (like \"cache.domain.net\") and the port of the proxy to use."), data => [ { label => 'Upper level proxy hostname:', val => \$o->{var}{wiz_squid_cachepeer} }, { label => 'Upper level proxy port:', val => \$o->{var}{wiz_squid_peerport} }, |