diff options
author | Thierry Vignaud <tvignaud@mandriva.org> | 2003-11-14 12:43:41 +0000 |
---|---|---|
committer | Thierry Vignaud <tvignaud@mandriva.org> | 2003-11-14 12:43:41 +0000 |
commit | 761507b9f2ff395afb98bbcd71d747d90abbe21b (patch) | |
tree | a77103af72e22c7eff8b873c635add52d1eb1872 /postfix_wizard | |
parent | 385ff8e97c7d11d8fe71c9ca9de0ded1dfd25f40 (diff) | |
download | drakwizard-761507b9f2ff395afb98bbcd71d747d90abbe21b.tar drakwizard-761507b9f2ff395afb98bbcd71d747d90abbe21b.tar.gz drakwizard-761507b9f2ff395afb98bbcd71d747d90abbe21b.tar.bz2 drakwizard-761507b9f2ff395afb98bbcd71d747d90abbe21b.tar.xz drakwizard-761507b9f2ff395afb98bbcd71d747d90abbe21b.zip |
fix N() encapsuled strings not seen as "to be extracted" strings when
generating the pot
Diffstat (limited to 'postfix_wizard')
-rwxr-xr-x | postfix_wizard/Postfix.pm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/postfix_wizard/Postfix.pm b/postfix_wizard/Postfix.pm index c5f28f3d..e2e7ceec 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(); }, |