summaryrefslogtreecommitdiffstats
path: root/postfix_wizard
diff options
context:
space:
mode:
authorThierry Vignaud <tvignaud@mandriva.org>2003-11-14 13:29:57 +0000
committerThierry Vignaud <tvignaud@mandriva.org>2003-11-14 13:29:57 +0000
commit4647d0818fa4b63790ea2cba53149a5dddffddc0 (patch)
treed74b43035a266e7659874617e2844c3b073788aa /postfix_wizard
parent1eed9ec5d44934f1859d10cb3c445ff964a600e1 (diff)
downloaddrakwizard-4647d0818fa4b63790ea2cba53149a5dddffddc0.tar
drakwizard-4647d0818fa4b63790ea2cba53149a5dddffddc0.tar.gz
drakwizard-4647d0818fa4b63790ea2cba53149a5dddffddc0.tar.bz2
drakwizard-4647d0818fa4b63790ea2cba53149a5dddffddc0.tar.xz
drakwizard-4647d0818fa4b63790ea2cba53149a5dddffddc0.zip
fix quotes in strings
Diffstat (limited to 'postfix_wizard')
-rwxr-xr-xpostfix_wizard/Postfix.pm4
1 files changed, 2 insertions, 2 deletions
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();
},