diff options
author | Pablo Saratxaga <pablo@mandriva.com> | 2004-09-30 00:36:24 +0000 |
---|---|---|
committer | Pablo Saratxaga <pablo@mandriva.com> | 2004-09-30 00:36:24 +0000 |
commit | 9aed8f8c454118582c84209720d153b51310ff25 (patch) | |
tree | e015c8e173d60f915410c174cef03cd60eca519e /perl-install | |
parent | 4a39f0b18bb1e1e81bc4afe761fc6718b9c73f10 (diff) | |
download | drakx-9aed8f8c454118582c84209720d153b51310ff25.tar drakx-9aed8f8c454118582c84209720d153b51310ff25.tar.gz drakx-9aed8f8c454118582c84209720d153b51310ff25.tar.bz2 drakx-9aed8f8c454118582c84209720d153b51310ff25.tar.xz drakx-9aed8f8c454118582c84209720d153b51310ff25.zip |
removed "\t" and "\n" out of translatable strings to avoid useless
duplication; fixed English typographic errors (don't put spaces
before colons!).
Diffstat (limited to 'perl-install')
-rw-r--r-- | perl-install/authentication.pm | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/perl-install/authentication.pm b/perl-install/authentication.pm index 50f6e60de..b4ec0b422 100644 --- a/perl-install/authentication.pm +++ b/perl-install/authentication.pm @@ -63,17 +63,17 @@ sub ask_parameters { #$netc->{LDAPDOMAIN} = $s; $in->ask_from('', - N("\nAuthentication LDAP\n"), - [ { label => N("\nServer Information :")}, - { label => N("\tLDAP Server\n"), val => \$authentication->{LDAP_server} }, - { label => N("\tUse SSL connection"), val => \$authentication->{LDAP_ssl}, type => 'bool' }, - { label => N("\nUser Base :")}, - { label => N("\tBase :"), val => \$authentication->{LDAP_users_db} }, - { label => N("\tScope :\n"), val => \$authentication->{LDAP_scope}, list => [map {$_->[0] } group_by2(@scope)], format => sub { $scope{$_[0]} } }, - { label => N("\nBind Server :")}, - { label => N("\tUse Anonymous Bind"), val => \$anonymous, type => 'bool' }, - { label => N("\tDistinguished Name"), val => \$authentication->{LDAP_user}, disabled => sub { $anonymous } }, - { label => N("\tPassword\n"), val => \$authentication->{LDAP_passwd}, disabled => sub { $anonymous } }, + "\n" . N("Authentication LDAP") . "\n", + [ { label => "\n" . N("Server Information:") }, + { label => "\t" . N("LDAP Server") . "\n", val => \$authentication->{LDAP_server} }, + { label => "\t" . N("Use SSL connection"), val => \$authentication->{LDAP_ssl}, type => 'bool' }, + { label => "\n" . N("User Base:") }, + { label => "\t" . N("Base:"), val => \$authentication->{LDAP_users_db} }, + { label => "\t" . N("Scope:") . "\n", val => \$authentication->{LDAP_scope}, list => [map { $_->[0] } group_by2(@scope)], format => sub { $scope{$_[0]} } }, + { label => "\n" . N("Bind Server:") . "\n" }, + { label => "\t" . N("Use Anonymous Bind"), val => \$anonymous, type => 'bool' }, + { label => "\t" . N("Distinguished Name"), val => \$authentication->{LDAP_user}, disabled => sub { $anonymous } }, + { label => "\t" . N("Password") . "\n", val => \$authentication->{LDAP_passwd}, disabled => sub { $anonymous } }, ]) or return; } elsif ($kind eq 'AD') { |