diff options
-rw-r--r-- | dns_wizard/Bind.pm | 2 | ||||
-rw-r--r-- | ldap_wizard/ldap.pm | 2 | ||||
-rw-r--r-- | pxe_wizard/Pxe.pm | 4 | ||||
-rwxr-xr-x | samba_wizard/Samba.pm | 3 |
4 files changed, 5 insertions, 6 deletions
diff --git a/dns_wizard/Bind.pm b/dns_wizard/Bind.pm index e280a12e..3dc5a6a7 100644 --- a/dns_wizard/Bind.pm +++ b/dns_wizard/Bind.pm @@ -250,7 +250,7 @@ $o->{pages} = { }, endremove => { name => N("Congratulations"), - data => [ { label => N("The wizard successfully remove host in your DNS.") } ], + data => [ { label => N("The wizard successfully removed the host from your DNS.") } ], no_back => 1, end => 1, next => 0, diff --git a/ldap_wizard/ldap.pm b/ldap_wizard/ldap.pm index d640df70..3cc1c31f 100644 --- a/ldap_wizard/ldap.pm +++ b/ldap_wizard/ldap.pm @@ -179,7 +179,7 @@ RootDN is the manager of your LDAP server."), next => 0 }, endadd => { - name => N("Successfully add data"), + name => N("Data Successfully added"), data => [ { label => N("The wizard successfully add entry in LDAP") } ], no_back => 1, end => 1, diff --git a/pxe_wizard/Pxe.pm b/pxe_wizard/Pxe.pm index 8b9d7a12..977b17c1 100644 --- a/pxe_wizard/Pxe.pm +++ b/pxe_wizard/Pxe.pm @@ -160,7 +160,7 @@ $o->{pages} = { next => 'gomodify2', }, gomodify2 => { - name => N("Network client interface: through which interface client should be installed.") . "\n" . N("Ramsize: adjust ramsize on boot disk.") . "\n" . N("VGA option: if you encounter some problem whith VGA, please adjust. ") . "\n" . N("ACPI option: Advanced Configuration and Power Interface"), + name => N("Network client interface: through which interface client should be installed.") . "\n" . N("Ramsize: adjust ramsize on boot disk.") . "\n" . N("VGA option: if you encounter any problem whith 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 }, @@ -253,7 +253,7 @@ $o->{pages} = { }, endremove => { name => N("Congratulations"), - data => [ { label => N("The wizard successfully remove a PXE boot image.") } ], + data => [ { label => N("The wizard successfully removed the PXE boot image.") } ], post => sub { @list_menu = (); foreach (cat_($PXEDEFAULT)) { diff --git a/samba_wizard/Samba.pm b/samba_wizard/Samba.pm index 566a8994..01568aaf 100755 --- a/samba_wizard/Samba.pm +++ b/samba_wizard/Samba.pm @@ -204,8 +204,7 @@ $o->{pages} = { next => 'config' }, summary => { - name => N("Configuring Samba") . "\n\n" . N("The wizard collected the following parameters -configure Samba.") . "\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 Samba") . "\n\n" . N(" The wizard collected the following parameters to configure Samba.") . "\n\n" . N("To accept these values, and configure your server, click the Next button or use the Back button to correct them."), pre => sub { $o->{var}{printers} = get_printers(); $o->{var}{file_sharing} = $o->{var}{wiz_do_file_sharing} ? N("enabled") : N("disabled"); |