summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThierry Vignaud <tv@mandriva.org>2007-07-30 12:45:03 +0000
committerThierry Vignaud <tv@mandriva.org>2007-07-30 12:45:03 +0000
commit60a6a4865e1a2656fec2a6719b1ce9dcfff72408 (patch)
tree3179fd5d58112cf8f85b3fd5ebce0e3be108c8cb
parent0299ccda7b1dc2c4358966fb9ffb2ae4f15931cf (diff)
downloaddrakx-60a6a4865e1a2656fec2a6719b1ce9dcfff72408.tar
drakx-60a6a4865e1a2656fec2a6719b1ce9dcfff72408.tar.gz
drakx-60a6a4865e1a2656fec2a6719b1ce9dcfff72408.tar.bz2
drakx-60a6a4865e1a2656fec2a6719b1ce9dcfff72408.tar.xz
drakx-60a6a4865e1a2656fec2a6719b1ce9dcfff72408.zip
drakauth: fix bogus string (#10776)
-rw-r--r--perl-install/NEWS1
-rw-r--r--perl-install/authentication.pm2
2 files changed, 2 insertions, 1 deletions
diff --git a/perl-install/NEWS b/perl-install/NEWS
index 268fff5df..219be9643 100644
--- a/perl-install/NEWS
+++ b/perl-install/NEWS
@@ -1,3 +1,4 @@
+- drakauth: fix bogus string (#10776)
- drakbug:
o display Mandriva Online for mdkapplet in the "select mandriva
tool" field
diff --git a/perl-install/authentication.pm b/perl-install/authentication.pm
index badefc499..001408260 100644
--- a/perl-install/authentication.pm
+++ b/perl-install/authentication.pm
@@ -63,7 +63,7 @@ my %kind2packages = (
sub kind2description {
my (@kinds) = @_;
my %kind2description = (
- local => [ N("Local file:"), N("Use local for all authentication and information user tell in local file"), ],
+ local => [ N("Local file:"), N("Use information stored in local file for all authentication"), ],
LDAP => [ N("LDAP:"), N("Tells your computer to use LDAP for some or all authentication. LDAP consolidates certain types of information within your organization."), ],
NIS => [ N("NIS:"), N("Allows you to run a group of computers in the same Network Information Service domain with a common password and group file."), ],
winbind => [ N("Windows Domain:"), N("Winbind allows the system to retrieve information and authenticate users in a Windows domain."), ],