diff options
author | Antoine Ginies <aginies@mandriva.com> | 2004-08-30 00:57:02 +0000 |
---|---|---|
committer | Antoine Ginies <aginies@mandriva.com> | 2004-08-30 00:57:02 +0000 |
commit | 6f907715eca3172a83e6487203efdeff5b2077e8 (patch) | |
tree | 70660b3eaa3c176357704b7b7aa6e84b73cdb4ca | |
parent | 46ec312c090006ebaaa9a3b9dbb7d40c075d2118 (diff) | |
download | drakwizard-6f907715eca3172a83e6487203efdeff5b2077e8.tar drakwizard-6f907715eca3172a83e6487203efdeff5b2077e8.tar.gz drakwizard-6f907715eca3172a83e6487203efdeff5b2077e8.tar.bz2 drakwizard-6f907715eca3172a83e6487203efdeff5b2077e8.tar.xz drakwizard-6f907715eca3172a83e6487203efdeff5b2077e8.zip |
typo fix ([Arpad Biro)
-rw-r--r-- | dns_wizard/Bind.pm | 2 | ||||
-rw-r--r-- | pxe_wizard/Pxe.pm | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/dns_wizard/Bind.pm b/dns_wizard/Bind.pm index 821e7f45..2c931ab1 100644 --- a/dns_wizard/Bind.pm +++ b/dns_wizard/Bind.pm @@ -243,7 +243,7 @@ $o->{pages} = { }, endadd => { name => N("Congratulations"), - data => [ { label => N("The wizard successfully added host in your DNS.") } ], + data => [ { label => N("The wizard successfully added the host in your DNS.") } ], post => sub { $o->{var}{CLIENTNAME} = ''; $o->{var}{CLIENTIP} = ''; diff --git a/pxe_wizard/Pxe.pm b/pxe_wizard/Pxe.pm index b51bcb57..0863f81c 100644 --- a/pxe_wizard/Pxe.pm +++ b/pxe_wizard/Pxe.pm @@ -177,7 +177,7 @@ $o->{pages} = { next => 'gomodify2', }, gomodify2 => { - name => N("Network client interface: the network interface used for the installation process.") . "\n" . N("Ramsize: adjust the ramsize parameter on boot disk.") . "\n" . N("VGA option: if you encounter any problem with VGA, please adjust. ") . "\n" . N("ACPI option: Advanced Configuration and Power Interface"), + name => N("Network client interface: the network interface used for the installation process.") . "\n" . N("Ramsize: adjust the ramsize parameter on boot image.") . "\n" . N("VGA option: if you encounter any problem with VGA, please adjust. ") . "\n" . N("ACPI option: Advanced Configuration and Power Interface"), data => [ { label => N("Network client interface:"), val => \$o->{var}{ETH}, fixed_list => \@list_eth }, { label => N("Ramsize:"), val => \$o->{var}{RAM}, fixed_list => \@list_ram }, |