summaryrefslogtreecommitdiffstats
path: root/postfix_wizard
diff options
context:
space:
mode:
authorAntoine Ginies <aginies@mandriva.com>2004-02-25 09:16:32 +0000
committerAntoine Ginies <aginies@mandriva.com>2004-02-25 09:16:32 +0000
commit3dd99c87c98e8892e80aca782f0faa06188ec271 (patch)
tree197f323851671ab1ea96b2c1fabc2115c77ee8e2 /postfix_wizard
parent6f8e910d366a7b79c2ea5125355f469ad4c27a50 (diff)
downloaddrakwizard-3dd99c87c98e8892e80aca782f0faa06188ec271.tar
drakwizard-3dd99c87c98e8892e80aca782f0faa06188ec271.tar.gz
drakwizard-3dd99c87c98e8892e80aca782f0faa06188ec271.tar.bz2
drakwizard-3dd99c87c98e8892e80aca782f0faa06188ec271.tar.xz
drakwizard-3dd99c87c98e8892e80aca782f0faa06188ec271.zip
Typos and gramatical mistakes (Michal Bukovjan)
Diffstat (limited to 'postfix_wizard')
-rwxr-xr-xpostfix_wizard/Postfix.pm22
1 files changed, 11 insertions, 11 deletions
diff --git a/postfix_wizard/Postfix.pm b/postfix_wizard/Postfix.pm
index aac18dae..2d6045f4 100755
--- a/postfix_wizard/Postfix.pm
+++ b/postfix_wizard/Postfix.pm
@@ -56,14 +56,14 @@ my $o = {
my %level = (
- 1 => N("External Mail server"),
- 2 => N("Internal Mail server"),
+ 1 => N("External mail server"),
+ 2 => N("Internal mail server"),
);
$o->{pages} = {
welcome => {
- name => N("Internet Mail Configuration Wizard") . "\n\n" . N("This wizard will help you configuring an Internet Mail serer for your network, or configure an External Mail server."),
+ name => N("Internet mail configuration wizard") . "\n\n" . N("This wizard will help you configure an internal mail server for your network, or configure an external mail server."),
no_back => 1,
pre => sub {
$o->{var}{wiz_level} ||= 1;
@@ -79,7 +79,7 @@ $o->{pages} = {
next => 'external',
},
external => {
- 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();
},
@@ -106,13 +106,13 @@ $o->{pages} = {
end => 1,
},
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();
},
post => \&check_relay,
data => [
- { label => N("Mail Server Name:"), val => \$o->{var}{wiz_ext_mail_relay} },
+ { label => N("Mail server name:"), val => \$o->{var}{wiz_ext_mail_relay} },
],
next => 'originext',
},
@@ -131,22 +131,22 @@ $o->{pages} = {
next => 'summaryext',
},
summaryext => {
- name => N("Configuring the Internet Mail") . "\n\n" . N("The wizard collected the following parameters needed to configure your Internet Mail Service:") . "\n\n" . N("To accept these values, and configure your server, click the Next button or use the Back button to correct them."),
+ name => N("Configuring the external mail server") . "\n\n" . N("The wizard collected the following parameters needed to configure your external mail server:") . "\n\n" . N("To accept these values, and configure your server, click the next button or use the back button to correct them."),
data => [
- { label => N("Internet Mail Gateway"), fixed_val => \$o->{var}{wiz_ext_mail_relay} },
- { label => N("Form of the Address"), fixed_val => \$o->{var}{wiz_mail_masquerade} },
+ { label => N("Internet mail gateway"), fixed_val => \$o->{var}{wiz_ext_mail_relay} },
+ { label => N("Form of the address"), fixed_val => \$o->{var}{wiz_mail_masquerade} },
{ label => N("myorigin"), fixed_val => \$o->{var}{wiz_myorigin} },
],
post => \&do_it_external,
next => 'endext'
},
summaryint => {
- name => N("The wizard now will configure an Internal Mail Server."),
+ name => N("The wizard now will configure an internal mail server."),
post => \&do_it_internal,
next => 'endext'
},
endext => {
- name => N("Congratulations") . "\n\n" . N("The wizard successfully configured your Externet Mail server."),
+ name => N("Congratulations") . "\n\n" . N("The wizard successfully configured your external mail server."),
end => 1,
next => 0
},