summaryrefslogtreecommitdiffstats
path: root/ldap_wizard
diff options
context:
space:
mode:
authorFunda Wang <fwang@mandriva.org>2004-08-22 09:50:36 +0000
committerFunda Wang <fwang@mandriva.org>2004-08-22 09:50:36 +0000
commita32fca4bb3e76a0d2b8e6a04ac4b5ad08c157442 (patch)
treee0d602b221f4aa301e84e21e1fa332826162ec1f /ldap_wizard
parentc196eb029c890300e90a2935d1d639afc887bb10 (diff)
downloaddrakwizard-a32fca4bb3e76a0d2b8e6a04ac4b5ad08c157442.tar
drakwizard-a32fca4bb3e76a0d2b8e6a04ac4b5ad08c157442.tar.gz
drakwizard-a32fca4bb3e76a0d2b8e6a04ac4b5ad08c157442.tar.bz2
drakwizard-a32fca4bb3e76a0d2b8e6a04ac4b5ad08c157442.tar.xz
drakwizard-a32fca4bb3e76a0d2b8e6a04ac4b5ad08c157442.zip
Corrected several typos.
Diffstat (limited to 'ldap_wizard')
-rw-r--r--ldap_wizard/Ldap.pm14
1 files changed, 7 insertions, 7 deletions
diff --git a/ldap_wizard/Ldap.pm b/ldap_wizard/Ldap.pm
index 7318b1f2..157ce4f8 100644
--- a/ldap_wizard/Ldap.pm
+++ b/ldap_wizard/Ldap.pm
@@ -23,7 +23,7 @@ use Net::LDAP::Util qw(ldap_error_text);
#}
my $o = {
- name => N("Configuration OpenLDAP Server "),
+ name => N("Configure OpenLDAP Server "),
var => {
defou => 'ou=Users',
srv => 'localhost',
@@ -83,14 +83,14 @@ my %level = (
$o->{pages} = {
welcome => {
- name => N("OpenLDAP configuration wizard") . "\n\n" . N("Setup a OpenLDAP server."),
+ name => N("OpenLDAP configuration wizard") . "\n\n" . N("Setup an OpenLDAP server."),
no_back => 1,
pre => sub {
$o->{var}{wiz_level} ||= 1;
},
post => sub {
if ($o->{var}{wiz_level} == 2) {
- ! -f $conf_file and $::in->ask_warn(N("Error"), N("You must setup a OpenLDAP server first.")) and return 'set_srv';
+ ! -f $conf_file and $::in->ask_warn(N("Error"), N("You must setup an OpenLDAP server first.")) and return 'set_srv';
return 'add_userposix';
}
@@ -112,7 +112,7 @@ $o->{pages} = {
next => 'set_srv'
},
add_userposix => {
- name => N("LDAP User Add") . "\n\n" . N("User Create in: ") . $o->{var}{defou} . ", " . $o->{var}{suffix},
+ name => N("LDAP Adding User") . "\n\n" . N("User Created in: ") . $o->{var}{defou} . ", " . $o->{var}{suffix},
data => [
{ label => N("First Name:"), val => \$o->{var}{sn}, help => "aide p" },
{ label => N("Name:"), val => \$o->{var}{cn}, help => "aide p" },
@@ -189,7 +189,7 @@ $o->{pages} = {
next => 'endadd'
},
summary_set_srv => {
- name => N("Confirmation Information for create LDAP server"),
+ name => N("Confirmation Information for create an LDAP server"),
data => [
{ label => N("Organisation LDAP:"), type => 'field', fixed_val => \$o->{var}{suffix} },
{ label => N("Administrator LDAP:"), type => 'field', fixed_val => \$o->{var}{rootdn} },
@@ -208,7 +208,7 @@ $o->{pages} = {
},
endadd => {
name => N("Successfully added User"),
- data => [ { label => N("The wizard successfully added an user in LDAP") } ],
+ data => [ { label => N("The wizard successfully added a user in LDAP") } ],
no_back => 1,
end => 1,
next => 0,
@@ -218,7 +218,7 @@ $o->{pages} = {
post => sub {
my $container_ou = $o->{var}{wiz_level}.",".$o->{var}{suffix};
},
- data => [ { label => N("You have already configure your OpenLDAP Server with drakwizard\n") } ,
+ data => [ { label => N("You have already configured your OpenLDAP Server with drakwizard\n") } ,
{ label => N("Organisation LDAP:"), type => 'field', fixed_val => \$o->{var}{suffix} },
{ label => N("Administrator LDAP:"), type => 'field', fixed_val => \$o->{var}{rootdn} },
{ label => N("Users Container:"), type => 'field', fixed_val => \$o->{var}{defou} },