summaryrefslogtreecommitdiffstats
path: root/perl-install/standalone/drakedm
diff options
context:
space:
mode:
Diffstat (limited to 'perl-install/standalone/drakedm')
-rw-r--r--perl-install/standalone/drakedm8
1 files changed, 7 insertions, 1 deletions
diff --git a/perl-install/standalone/drakedm b/perl-install/standalone/drakedm
index 34058c91b..8bbd603d7 100644
--- a/perl-install/standalone/drakedm
+++ b/perl-install/standalone/drakedm
@@ -36,6 +36,12 @@ my @list = map {
\%l;
} sort(glob("/etc/X11/dm.d/*.conf"));
+my @_DESCRIPTIONS_for_i18n = (
+ N("GDM (GNOME Display Manager)"),
+ N("KDM (KDE Display Manager)"),
+ N("XDM (X Display Manager)"),
+);
+
if (!$::expert) {
@list = grep { -e $_->{EXEC} } @list;
}
@@ -54,7 +60,7 @@ several different X sessions on your local machine at the same time.")),
list => \@list,
val => \$dm,
type => 'list',
- format => sub { $_[0]{DESCRIPTION} },
+ format => sub { translate($_[0]{DESCRIPTION}) },
}
]
)