summaryrefslogtreecommitdiffstats
path: root/globetrotter/move.pm
blob: 9c3ae7226a4eee464c54ff04948a54bb54084f73 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
package move; # $Id$

#- Copyright (c) 2004-2005 Mandriva
#-
#- This program is free software; you can redistribute it and/or modify
#- it under the terms of the GNU General Public License as published by
#- the Free Software Foundation; either version 2, or (at your option)
#- any later version.
#-
#- This program is distributed in the hope that it will be useful,
#- but WITHOUT ANY WARRANTY; without even the implied warranty of
#- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
#- GNU General Public License for more details.
#-
#- You should have received a copy of the GNU General Public License
#- along with this program; if not, write to the Free Software
#- Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.

use diagnostics;
use strict;

use c;
use common;
use modules;
use fs;
use fsedit;
use run_program;
use partition_table qw(:types);
use log;
use lang;
use detect_devices;

sub symlinkf_short {
    my ($dest, $file) = @_;
    if (my $l = readlink $dest) {
	$dest = $l if $l =~ m!^/!;
    }
    -d $file and log::l("$file already exists and is a directory! writing in directory may be needed, not overwriting"), return;
    symlinkf($dest, $file);
}

#- run very soon at stage2 start, setup things on tmpfs rw / that
#- were not necessary to start stage2 itself (there were setup
#- by stage1 of course)
sub init {
    my ($o) = @_;

    check_for_xserver() and c::bind_textdomain_codeset('libDrakX2', 'UTF8');


    -d '/lib/modules/' . c::kernel_version() or warn("ERROR: kernel package " . c::kernel_version() . " not installed\n"), c::_exit(1);

    modules::load_category('bus/usb'); 
    *c::pcmcia_probe = \&detect_devices::pcmcia_probe;
    $o->{pcmcia} ||= !$::noauto && c::pcmcia_probe();
    install_steps::setupSCSI($o);

drakx_stuff:
    $o->{steps}{$_} = { reachable => 1, text => $_ }
      foreach qw(autoSelectLanguage configMove selectMouse setRootPassword addUser configureNetwork miscellaneous selectMouse);
    $o->{orderedSteps_orig} = $o->{orderedSteps};
    $o->{orderedSteps} = [ qw(selectLanguage acceptLicense selectMouse setupSCSI miscellaneous selectKeyboard setRootPassword addUser configureNetwork configMove ) ];
    $o->{steps}{first} = $o->{orderedSteps}[0];
}

    


sub enable_service {
    run_program::run('/sbin/chkconfig', '--level', 5, $_[0], 'on');
}

sub disable_service {
    run_program::run('/sbin/chkconfig', '--del', $_[0], 'on');
}

sub install2::configMove {
    my $o = $::o;

    security::level::set($o->{security});

    require install_steps;
    install_steps::addUser($o); # for test, when replaying wizard on an already configured machine
    while ($#{$o->{users}} eq -1) {
        install_steps::addUser($o);
    }

    $::noauto and goto after_autoconf;

    my $_wait = $o->wait_message(N("Auto configuration"), N("Please wait, detecting and configuring devices..."));

    #- automatic printer, timezone, network configs
    require install_steps_interactive;
    if (cat_('/proc/mounts') !~ /nfs/) {
        install_steps_interactive::configureNetwork($o);
        enable_service('network');
    }
    enable_service('netfs');
    install_steps_interactive::summaryBefore($o);

    modules::load_category('multimedia/sound');
    enable_service('sound');

    detect_devices::isLaptop() or enable_service('numlock');

after_autoconf:
    require timezone;
    timezone::write($o->{timezone});

    $o->{useSupermount} = 1;
    fs::set_removable_mntpoints($o->{all_hds});    
    require fs::mount_options;
    fs::mount_options::set_all_default($o->{all_hds}, %$o, lang::fs_options($o->{locale}));

    $o->{modules_conf}->write;
    require mouse;
    mouse::write_conf($o, $o->{mouse}, 1);  #- write xfree mouse conf
    detect_devices::install_addons('');

    foreach my $step (@{$o->{orderedSteps_orig}}) {
        next if member($step, @{$o->{orderedSteps}});
        while (my $f = shift @{$o->{steps}{$step}{toBeDone} || []}) {
            log::l("doing remaining toBeDone for undone step $step");
            eval { &$f() };
            $o->ask_warn(N("Error"), [
N("An error occurred, but I don't know how to handle it nicely.
Continue at your own risk."). formatError($@) || $@ ]) if $@;
        }
    }
    run_program::run('killall', 'Xorg');
    output_p("$::prefix/etc/rpm/macros", "%_install_langs all\n");
    # workaround init reading inittab before any.pm alters it:
    if ($::o->{autologin}) {
        run_program::run('chkconfig', 'dm', 'on');
        run_program::run('telinit', 'Q');
    }
    # prevent dm service to fail to startup because of /tmp/.font-unix's permissions:
    run_program::run('service', 'xfs', 'stop');
    c::_exit(0);
}



sub automatic_xconf {
    my ($o) = @_;

    log::l('automatic XFree configuration');
    
    any::devfssymlinkf($o->{mouse}, 'mouse');
    local $o->{mouse}{device} = 'mouse';
    
    require Xconfig::default;
    require class_discard;
    $o->{raw_X} = Xconfig::default::configure(class_discard->new, { KEYBOARD => 'uk' }, $o->{mouse}); #- using uk instead of us for now to have less warnings
    
    require Xconfig::main;
    Xconfig::main::configure_everything_auto_install($o->{raw_X}, class_discard->new, {},
                                                     { allowNVIDIA_rpms => sub { [] }, allowATI_rpms => sub { [] }, allowFB => $o->{allowFB} });

    modules::load_category('various/agpgart'); 

    my $file = '/etc/X11/XF86Config';
    $file = "$file-4" if -e "$file-4";
    my ($Driver) = cat_($file) =~ /Section "Device".*Driver\s*"(.*?)"/s;
    if ($Driver eq 'nvidia') {
        modules::load('nvidia');
    }
    my $lib = 'libGL.so.1';
    symlinkf_short(-e "/usr/lib/$lib.$Driver" ? "/usr/lib/$lib.$Driver" : "/usr/X11R6/lib/$lib", "/etc/X11/$lib");
}

sub handleI18NClp {}


1;
'>4
-rw-r--r--perl-install/share/po/tl.po8
-rw-r--r--perl-install/share/po/tr.po8
-rw-r--r--perl-install/share/po/uk.po8
-rw-r--r--perl-install/share/po/uz.po6
-rw-r--r--perl-install/share/po/uz@cyrillic.po6
-rw-r--r--perl-install/share/po/vi.po6
-rw-r--r--perl-install/share/po/wa.po6
-rw-r--r--perl-install/share/po/zh_CN.po8
-rw-r--r--perl-install/share/po/zh_TW.po8
71 files changed, 228 insertions, 228 deletions
diff --git a/perl-install/share/po/af.po b/perl-install/share/po/af.po
index c45565811..4cd9f7af3 100644
--- a/perl-install/share/po/af.po
+++ b/perl-install/share/po/af.po
@@ -5204,10 +5204,10 @@ msgstr "Laat toe/Weier vir 'root' om direk in te teken."
#: security/help.pm:33
#, fuzzy, c-format
msgid ""
-"Allow the list of users on the system on display managers (kdm and gdm)."
+"Allow the list of users on the system on display managers (sddm and gdm)."
msgstr ""
"Laat toe/Verbied die vertoon van gebruikername op vertoonbestuurders\n"
-" (display managers, bv. kdm en gdm)."
+" (display managers, bv. sddm en gdm)."
#: security/help.pm:35
#, c-format
@@ -5575,8 +5575,8 @@ msgstr "Direkte 'root' inteken"
#: security/l10n.pm:19
#, c-format
-msgid "List users on display managers (kdm and gdm)"
-msgstr "Wys gebruikers op vertoonbestuurders (kdm en gdm)"
+msgid "List users on display managers (sddm and gdm)"
+msgstr "Wys gebruikers op vertoonbestuurders (sddm en gdm)"
#: security/l10n.pm:20
#, c-format
diff --git a/perl-install/share/po/am.po b/perl-install/share/po/am.po
index 82a6dfe9a..dbc84f6fd 100644
--- a/perl-install/share/po/am.po
+++ b/perl-install/share/po/am.po
@@ -5004,7 +5004,7 @@ msgstr "የሚፈነጠቅ መመልከቻ ሲጀምር _አሳይ"
#: security/help.pm:33
#, c-format
msgid ""
-"Allow the list of users on the system on display managers (kdm and gdm)."
+"Allow the list of users on the system on display managers (sddm and gdm)."
msgstr ""
#: security/help.pm:35
@@ -5320,7 +5320,7 @@ msgstr "የሚፈነጠቅ መመልከቻ ሲጀምር _አሳይ"
#: security/l10n.pm:19
#, c-format
-msgid "List users on display managers (kdm and gdm)"
+msgid "List users on display managers (sddm and gdm)"
msgstr ""
#: security/l10n.pm:20
diff --git a/perl-install/share/po/ar.po b/perl-install/share/po/ar.po
index 5f6dc2bb5..406f96bf9 100644
--- a/perl-install/share/po/ar.po
+++ b/perl-install/share/po/ar.po
@@ -5161,7 +5161,7 @@ msgstr ""
#: security/help.pm:33
#, c-format
msgid ""
-"Allow the list of users on the system on display managers (kdm and gdm)."
+"Allow the list of users on the system on display managers (sddm and gdm)."
msgstr ""
#: security/help.pm:35
@@ -5497,8 +5497,8 @@ msgstr "دخول المستخدم الجذر مباشر"
#: security/l10n.pm:19
#, c-format
-msgid "List users on display managers (kdm and gdm)"
-msgstr "سرد أسماء المستخدمين على مُدراء العرض (kdm وgdm("
+msgid "List users on display managers (sddm and gdm)"
+msgstr "سرد أسماء المستخدمين على مُدراء العرض (sddm وgdm("
#: security/l10n.pm:20
#, c-format
diff --git a/perl-install/share/po/ast.po b/perl-install/share/po/ast.po
index 4ca03307a..d444807a7 100644
--- a/perl-install/share/po/ast.po
+++ b/perl-install/share/po/ast.po
@@ -5079,7 +5079,7 @@ msgstr ""
#: security/help.pm:33
#, c-format
msgid ""
-"Allow the list of users on the system on display managers (kdm and gdm)."
+"Allow the list of users on the system on display managers (sddm and gdm)."
msgstr ""
#: security/help.pm:35
@@ -5395,7 +5395,7 @@ msgstr ""
#: security/l10n.pm:19
#, c-format
-msgid "List users on display managers (kdm and gdm)"
+msgid "List users on display managers (sddm and gdm)"
msgstr ""
#: security/l10n.pm:20
diff --git a/perl-install/share/po/az.po b/perl-install/share/po/az.po
index 1a34af64d..b618bb82a 100644
--- a/perl-install/share/po/az.po
+++ b/perl-install/share/po/az.po
@@ -5308,9 +5308,9 @@ msgstr "Birbaşa ali istifadəçinin girişinə icazə ver/vermə"
#: security/help.pm:33
#, fuzzy, c-format
msgid ""
-"Allow the list of users on the system on display managers (kdm and gdm)."
+"Allow the list of users on the system on display managers (sddm and gdm)."
msgstr ""
-"Sistemdəki ekran idarəçilərində (gdm və kdm) istifadəçilərin siyahısının "
+"Sistemdəki ekran idarəçilərində (gdm və sddm) istifadəçilərin siyahısının "
"göstərilməsinə icazə Ver/Vermə."
#: security/help.pm:35
@@ -5687,8 +5687,8 @@ msgstr "Birbaşa ali istifadəçi girişi"
#: security/l10n.pm:19
#, c-format
-msgid "List users on display managers (kdm and gdm)"
-msgstr "Ekran idarəçilərində (kdm və gdm) istifadəçiləri göstər"
+msgid "List users on display managers (sddm and gdm)"
+msgstr "Ekran idarəçilərində (sddm və gdm) istifadəçiləri göstər"
#: security/l10n.pm:20
#, c-format
diff --git a/perl-install/share/po/be.po b/perl-install/share/po/be.po
index f6b1e96a5..6405b9af7 100644
--- a/perl-install/share/po/be.po
+++ b/perl-install/share/po/be.po
@@ -5039,7 +5039,7 @@ msgstr ""
#: security/help.pm:33
#, c-format
msgid ""
-"Allow the list of users on the system on display managers (kdm and gdm)."
+"Allow the list of users on the system on display managers (sddm and gdm)."
msgstr ""
#: security/help.pm:35
@@ -5355,7 +5355,7 @@ msgstr ""
#: security/l10n.pm:19
#, c-format
-msgid "List users on display managers (kdm and gdm)"
+msgid "List users on display managers (sddm and gdm)"
msgstr ""
#: security/l10n.pm:20
diff --git a/perl-install/share/po/bg.po b/perl-install/share/po/bg.po
index cde6338fb..f16309bc6 100644
--- a/perl-install/share/po/bg.po
+++ b/perl-install/share/po/bg.po
@@ -5244,7 +5244,7 @@ msgstr "Позволи директно влизане на root."
#: security/help.pm:33
#, c-format
msgid ""
-"Allow the list of users on the system on display managers (kdm and gdm)."
+"Allow the list of users on the system on display managers (sddm and gdm)."
msgstr "Позволи"
#: security/help.pm:35
@@ -5591,7 +5591,7 @@ msgstr ""
#: security/l10n.pm:19
#, c-format
-msgid "List users on display managers (kdm and gdm)"
+msgid "List users on display managers (sddm and gdm)"
msgstr ""
#: security/l10n.pm:20
diff --git a/perl-install/share/po/bn.po b/perl-install/share/po/bn.po
index 8a7b58b58..02cd21900 100644
--- a/perl-install/share/po/bn.po
+++ b/perl-install/share/po/bn.po
@@ -5246,7 +5246,7 @@ msgstr "সরাসরি রুট অ্যাকাউন্টে লগ-
#: security/help.pm:33
#, fuzzy, c-format
msgid ""
-"Allow the list of users on the system on display managers (kdm and gdm)."
+"Allow the list of users on the system on display managers (sddm and gdm)."
msgstr ""
"ডিসপ্লে ব্যবস্থাপকে ব্যবহারকারীদের তালিকা প্রদর্শন অনুমোদন/নিষিদ্ধ করো (কে.ডি.এম. "
"এবং জি.ডি.এম.)।"
@@ -5638,7 +5638,7 @@ msgstr "সরাসরি রুট অ্যাকাউন্টে লগ-
#: security/l10n.pm:19
#, c-format
-msgid "List users on display managers (kdm and gdm)"
+msgid "List users on display managers (sddm and gdm)"
msgstr ""
"ডিসপ্লে ব্যবস্থাপকে (কে.ডি.এম. ও জি.ডি.এম.) ব্যবহারকারীদের তালিকা প্রদর্শন করো"
diff --git a/perl-install/share/po/br.po b/perl-install/share/po/br.po
index 3167a1175..008e58663 100644
--- a/perl-install/share/po/br.po
+++ b/perl-install/share/po/br.po
@@ -5125,7 +5125,7 @@ msgstr "Bevaat dazont root war-eeun."
#: security/help.pm:33
#, c-format
msgid ""
-"Allow the list of users on the system on display managers (kdm and gdm)."
+"Allow the list of users on the system on display managers (sddm and gdm)."
msgstr ""
#: security/help.pm:35
@@ -5441,7 +5441,7 @@ msgstr ""
#: security/l10n.pm:19
#, c-format
-msgid "List users on display managers (kdm and gdm)"
+msgid "List users on display managers (sddm and gdm)"
msgstr ""
#: security/l10n.pm:20
diff --git a/perl-install/share/po/bs.po b/perl-install/share/po/bs.po
index c74a369a6..82c73c92c 100644
--- a/perl-install/share/po/bs.po
+++ b/perl-install/share/po/bs.po
@@ -5359,9 +5359,9 @@ msgstr "Dozvoli/zabrani direktan root login."
#: security/help.pm:33
#, fuzzy, c-format
msgid ""
-"Allow the list of users on the system on display managers (kdm and gdm)."
+"Allow the list of users on the system on display managers (sddm and gdm)."
msgstr ""
-"Dozvoli/zabrani listu korisnika sistema na display manager-ima (kdm i gdm)."
+"Dozvoli/zabrani listu korisnika sistema na display manager-ima (sddm i gdm)."
#: security/help.pm:35
#, fuzzy, c-format
@@ -5736,8 +5736,8 @@ msgstr "Direktna root prijava"
#: security/l10n.pm:19
#, c-format
-msgid "List users on display managers (kdm and gdm)"
-msgstr "Izlistaj korisnike na display manager-ima (kdm i gdm)"
+msgid "List users on display managers (sddm and gdm)"
+msgstr "Izlistaj korisnike na display manager-ima (sddm i gdm)"
#: security/l10n.pm:20
#, c-format
diff --git a/perl-install/share/po/ca.po b/perl-install/share/po/ca.po
index f1ab2b4aa..c20cf267e 100644
--- a/perl-install/share/po/ca.po
+++ b/perl-install/share/po/ca.po
@@ -5269,7 +5269,7 @@ msgstr "Permet la connexió directa de l'usuari primari."
#: security/help.pm:33
#, c-format
msgid ""
-"Allow the list of users on the system on display managers (kdm and gdm)."
+"Allow the list of users on the system on display managers (sddm and gdm)."
msgstr ""
#: security/help.pm:35
@@ -5630,8 +5630,8 @@ msgstr "Entrada directa com a superusuari"
#: security/l10n.pm:19
#, c-format
-msgid "List users on display managers (kdm and gdm)"
-msgstr "Llista els usuaris als gestors de pantalla (kdm i gdm)"
+msgid "List users on display managers (sddm and gdm)"
+msgstr "Llista els usuaris als gestors de pantalla (sddm i gdm)"
#: security/l10n.pm:20
#, c-format
diff --git a/perl-install/share/po/cs.po b/perl-install/share/po/cs.po
index 833b858df..41b238d53 100644
--- a/perl-install/share/po/cs.po
+++ b/perl-install/share/po/cs.po
@@ -5366,9 +5366,9 @@ msgstr "Povolit přímé přihlášení uživatele root."
#: security/help.pm:33
#, c-format
msgid ""
-"Allow the list of users on the system on display managers (kdm and gdm)."
+"Allow the list of users on the system on display managers (sddm and gdm)."
msgstr ""
-"Povolit výpis uživatelů systému ve správcích přihlášení (kdm nebo gdm)."
+"Povolit výpis uživatelů systému ve správcích přihlášení (sddm nebo gdm)."
#: security/help.pm:35
#, c-format
@@ -5741,8 +5741,8 @@ msgstr "Přímé přihlášení uživatele root"
#: security/l10n.pm:19
#, c-format
-msgid "List users on display managers (kdm and gdm)"
-msgstr "Povolit výpis uživatelů ve správcích přihlášení (kdm nebo gdm)"
+msgid "List users on display managers (sddm and gdm)"
+msgstr "Povolit výpis uživatelů ve správcích přihlášení (sddm nebo gdm)"
#: security/l10n.pm:20
#, c-format
diff --git a/perl-install/share/po/cy.po b/perl-install/share/po/cy.po
index 4ffbf882e..952b6d3e7 100644
--- a/perl-install/share/po/cy.po
+++ b/perl-install/share/po/cy.po
@@ -5351,8 +5351,8 @@ msgstr "Caniatáu mewngofnodi gwraidd uniongyrchol."
#: security/help.pm:33
#, c-format
msgid ""
-"Allow the list of users on the system on display managers (kdm and gdm)."
-msgstr "Caniatáu rhestr defnyddwyr ar y system ar reolwyr dangos (kdm a gdm)."
+"Allow the list of users on the system on display managers (sddm and gdm)."
+msgstr "Caniatáu rhestr defnyddwyr ar y system ar reolwyr dangos (sddm a gdm)."
#: security/help.pm:35
#, c-format
@@ -5722,8 +5722,8 @@ msgstr "Mewngofnodi gwraidd uniongyrchol"
#: security/l10n.pm:19
#, c-format
-msgid "List users on display managers (kdm and gdm)"
-msgstr "Rhestru defnyddwyr ar reolwyr dangos (kdm and gdm)."
+msgid "List users on display managers (sddm and gdm)"
+msgstr "Rhestru defnyddwyr ar reolwyr dangos (sddm and gdm)."
#: security/l10n.pm:20
#, c-format
diff --git a/perl-install/share/po/da.po b/perl-install/share/po/da.po
index 05c5fd6e4..0da8023a5 100644
--- a/perl-install/share/po/da.po
+++ b/perl-install/share/po/da.po
@@ -5395,9 +5395,9 @@ msgstr "Tillad direkte root-logind."
#: security/help.pm:33
#, c-format
msgid ""
-"Allow the list of users on the system on display managers (kdm and gdm)."
+"Allow the list of users on the system on display managers (sddm and gdm)."
msgstr ""
-"Tillad listen af brugere på systemet på skærmhåndteringer (kdm og gdm)."
+"Tillad listen af brugere på systemet på skærmhåndteringer (sddm og gdm)."
#: security/help.pm:35
#, c-format
@@ -5771,8 +5771,8 @@ msgstr "Direkte logind som root"
#: security/l10n.pm:19
#, c-format
-msgid "List users on display managers (kdm and gdm)"
-msgstr "List brugere på skærmhåndteringer (kdm og gdm)."
+msgid "List users on display managers (sddm and gdm)"
+msgstr "List brugere på skærmhåndteringer (sddm og gdm)."
#: security/l10n.pm:20
#, c-format
diff --git a/perl-install/share/po/de.po b/perl-install/share/po/de.po
index 71d994897..3a1af6bad 100644
--- a/perl-install/share/po/de.po
+++ b/perl-install/share/po/de.po
@@ -5478,9 +5478,9 @@ msgstr "Erlaube die direkte Root-Anmeldung."
#: security/help.pm:33
#, c-format
msgid ""
-"Allow the list of users on the system on display managers (kdm and gdm)."
+"Allow the list of users on the system on display managers (sddm and gdm)."
msgstr ""
-"Erlaube die Liste der Benutzer dieses Rechner im Displaymanager (kdm und "
+"Erlaube die Liste der Benutzer dieses Rechner im Displaymanager (sddm und "
"gdm)."
#: security/help.pm:35
@@ -5863,8 +5863,8 @@ msgstr "Direkte Root-Anmeldung"
#: security/l10n.pm:19
#, c-format
-msgid "List users on display managers (kdm and gdm)"
-msgstr "Benutzer in den Display-Managern auflisten (kdm und gdm)"
+msgid "List users on display managers (sddm and gdm)"
+msgstr "Benutzer in den Display-Managern auflisten (sddm und gdm)"
#: security/l10n.pm:20
#, c-format
diff --git a/perl-install/share/po/el.po b/perl-install/share/po/el.po
index eb22f4d93..1d4cec67c 100644
--- a/perl-install/share/po/el.po
+++ b/perl-install/share/po/el.po
@@ -5510,10 +5510,10 @@ msgstr "Να επιτρέπεται η απευθείας σύνδεση υπε
#: security/help.pm:33
#, c-format
msgid ""
-"Allow the list of users on the system on display managers (kdm and gdm)."
+"Allow the list of users on the system on display managers (sddm and gdm)."
msgstr ""
"Να επιτρέπεται η προβολή της λίστας με τους χρήστες, στους διαχειριστές "
-"σύνδεσης (kdm και gdm)."
+"σύνδεσης (sddm και gdm)."
#: security/help.pm:35
#, c-format
@@ -5896,8 +5896,8 @@ msgstr "Άμεση σύνδεση root"
#: security/l10n.pm:19
#, c-format
-msgid "List users on display managers (kdm and gdm)"
-msgstr "Εμφάνιση των χρηστών στους διαχειριστές σύνδεσης (kdm και gdm)"
+msgid "List users on display managers (sddm and gdm)"
+msgstr "Εμφάνιση των χρηστών στους διαχειριστές σύνδεσης (sddm και gdm)"
#: security/l10n.pm:20
#, c-format
diff --git a/perl-install/share/po/eo.po b/perl-install/share/po/eo.po
index 04f001af3..a46c5b591 100644
--- a/perl-install/share/po/eo.po
+++ b/perl-install/share/po/eo.po
@@ -5111,7 +5111,7 @@ msgstr ""
#: security/help.pm:33
#, c-format
msgid ""
-"Allow the list of users on the system on display managers (kdm and gdm)."
+"Allow the list of users on the system on display managers (sddm and gdm)."
msgstr ""
#: security/help.pm:35
@@ -5427,7 +5427,7 @@ msgstr ""
#: security/l10n.pm:19
#, c-format
-msgid "List users on display managers (kdm and gdm)"
+msgid "List users on display managers (sddm and gdm)"
msgstr ""
#: security/l10n.pm:20
diff --git a/perl-install/share/po/es.po b/perl-install/share/po/es.po
index 9f9e1175e..0f25aac7d 100644
--- a/perl-install/share/po/es.po
+++ b/perl-install/share/po/es.po
@@ -5454,10 +5454,10 @@ msgstr "Permitir conexión directa del administrador del sistema."
#: security/help.pm:33
#, c-format
msgid ""
-"Allow the list of users on the system on display managers (kdm and gdm)."
+"Allow the list of users on the system on display managers (sddm and gdm)."
msgstr ""
"Permitir la lista de usuarios del sistema en administradores de conexión "
-"(kdm y gdm)."
+"(sddm y gdm)."
#: security/help.pm:35
#, c-format
@@ -5840,8 +5840,8 @@ msgstr "Conexión directa del administrador del sistema"
#: security/l10n.pm:19
#, c-format
-msgid "List users on display managers (kdm and gdm)"
-msgstr "Listar usuarios del sistema en administradores de conexión (kdm y gdm)"
+msgid "List users on display managers (sddm and gdm)"
+msgstr "Listar usuarios del sistema en administradores de conexión (sddm y gdm)"
#: security/l10n.pm:20
#, c-format
diff --git a/perl-install/share/po/et.po b/perl-install/share/po/et.po
index 9a7bdfb03..a3b95257f 100644
--- a/perl-install/share/po/et.po
+++ b/perl-install/share/po/et.po
@@ -5387,8 +5387,8 @@ msgstr "Administraatori vahetu sisselogimise lubamine."
#: security/help.pm:33
#, c-format
msgid ""
-"Allow the list of users on the system on display managers (kdm and gdm)."
-msgstr "Kasutajate nimekirja lubamine kuvahalduritel (kdm ja gdm)."
+"Allow the list of users on the system on display managers (sddm and gdm)."
+msgstr "Kasutajate nimekirja lubamine kuvahalduritel (sddm ja gdm)."
#: security/help.pm:35
#, c-format
@@ -5758,8 +5758,8 @@ msgstr "Administraatori otsesisselogimine"
#: security/l10n.pm:19
#, c-format
-msgid "List users on display managers (kdm and gdm)"
-msgstr "Kasutajate nimekirja lubamine kuvahalduritel (kdm ja gdm)"
+msgid "List users on display managers (sddm and gdm)"
+msgstr "Kasutajate nimekirja lubamine kuvahalduritel (sddm ja gdm)"
#: security/l10n.pm:20
#, c-format
diff --git a/perl-install/share/po/eu.po b/perl-install/share/po/eu.po
index cb7edf4b5..781dad6b0 100644
--- a/perl-install/share/po/eu.po
+++ b/perl-install/share/po/eu.po
@@ -5431,9 +5431,9 @@ msgstr "Onartu root gisa zuzenean saioa hastea."
#: security/help.pm:33
#, c-format
msgid ""
-"Allow the list of users on the system on display managers (kdm and gdm)."
+"Allow the list of users on the system on display managers (sddm and gdm)."
msgstr ""
-"Erabiltzaile zerrenda saio kudeatzaileetan (kdm eta gdm) agertu dadin onartu."
+"Erabiltzaile zerrenda saio kudeatzaileetan (sddm eta gdm) agertu dadin onartu."
#: security/help.pm:35
#, c-format
@@ -5818,8 +5818,8 @@ msgstr "root-aren zuzeneko saio-hastea"
#: security/l10n.pm:19
#, c-format
-msgid "List users on display managers (kdm and gdm)"
-msgstr "Erabiltzaileen zerrenda bistaratze-kudeatzaileetan (kdm eta gdm)"
+msgid "List users on display managers (sddm and gdm)"
+msgstr "Erabiltzaileen zerrenda bistaratze-kudeatzaileetan (sddm eta gdm)"
#: security/l10n.pm:20
#, c-format
diff --git a/perl-install/share/po/fa.po b/perl-install/share/po/fa.po
index d244f9531..a69919f09 100644
--- a/perl-install/share/po/fa.po
+++ b/perl-install/share/po/fa.po
@@ -5243,7 +5243,7 @@ msgstr ""
#: security/help.pm:33
#, c-format
msgid ""
-"Allow the list of users on the system on display managers (kdm and gdm)."
+"Allow the list of users on the system on display managers (sddm and gdm)."
msgstr ""
#: security/help.pm:35
@@ -5586,8 +5586,8 @@ msgstr "ثبت‌ورود مستقیم مدیر"
#: security/l10n.pm:19
#, c-format
-msgid "List users on display managers (kdm and gdm)"
-msgstr "فهرست کاربران بر مدیران نمایش (kdm and gdm)"
+msgid "List users on display managers (sddm and gdm)"
+msgstr "فهرست کاربران بر مدیران نمایش (sddm and gdm)"
#: security/l10n.pm:20
#, c-format
diff --git a/perl-install/share/po/fi.po b/perl-install/share/po/fi.po
index caa758d5f..8fb9c9ea4 100644
--- a/perl-install/share/po/fi.po
+++ b/perl-install/share/po/fi.po
@@ -5505,7 +5505,7 @@ msgstr "Salli pääkäyttäjän kirjautuminen paikallisesti."
#: security/help.pm:33
#, c-format
msgid ""
-"Allow the list of users on the system on display managers (kdm and gdm)."
+"Allow the list of users on the system on display managers (sddm and gdm)."
msgstr "Salli käyttäjien listaus kirjautumisikkunassa (KDM ja GDM)."
#: security/help.pm:35
@@ -5881,7 +5881,7 @@ msgstr "Salli pääkäyttäjän paikallinen kirjautuminen."
#: security/l10n.pm:19
#, c-format
-msgid "List users on display managers (kdm and gdm)"
+msgid "List users on display managers (sddm and gdm)"
msgstr "Näytä lista käyttäjistä näytönhallinnassa (KDM ja GDM)."
#: security/l10n.pm:20
diff --git a/perl-install/share/po/fr.po b/perl-install/share/po/fr.po
index 6bf9ac977..02052f7e3 100644
--- a/perl-install/share/po/fr.po
+++ b/perl-install/share/po/fr.po
@@ -5462,10 +5462,10 @@ msgstr "Permettre la connexion directe en tant que root."
#: security/help.pm:33
#, c-format
msgid ""
-"Allow the list of users on the system on display managers (kdm and gdm)."
+"Allow the list of users on the system on display managers (sddm and gdm)."
msgstr ""
"Permettre la liste des utilisateurs du système sur les gestionnaires de "
-"connexion (kdm et gdm)."
+"connexion (sddm et gdm)."
#: security/help.pm:35
#, c-format
@@ -5850,9 +5850,9 @@ msgstr "Connexion root directe"
#: security/l10n.pm:19
#, c-format
-msgid "List users on display managers (kdm and gdm)"
+msgid "List users on display managers (sddm and gdm)"
msgstr ""
-"Lister les utilisateurs dans les gestionnaires de connexion (kdm et gdm)"
+"Lister les utilisateurs dans les gestionnaires de connexion (sddm et gdm)"
#: security/l10n.pm:20
#, c-format
diff --git a/perl-install/share/po/fur.po b/perl-install/share/po/fur.po
index b56b1603b..dc6ba2e67 100644
--- a/perl-install/share/po/fur.po
+++ b/perl-install/share/po/fur.po
@@ -5017,7 +5017,7 @@ msgstr ""
#: security/help.pm:33
#, c-format
msgid ""
-"Allow the list of users on the system on display managers (kdm and gdm)."
+"Allow the list of users on the system on display managers (sddm and gdm)."
msgstr ""
#: security/help.pm:35
@@ -5333,7 +5333,7 @@ msgstr ""
#: security/l10n.pm:19
#, c-format
-msgid "List users on display managers (kdm and gdm)"
+msgid "List users on display managers (sddm and gdm)"
msgstr ""
#: security/l10n.pm:20
diff --git a/perl-install/share/po/ga.po b/perl-install/share/po/ga.po
index 277a60191..a7d250251 100644
--- a/perl-install/share/po/ga.po
+++ b/perl-install/share/po/ga.po
@@ -5057,7 +5057,7 @@ msgstr "Scríos Printéir"
#: security/help.pm:33
#, c-format
msgid ""
-"Allow the list of users on the system on display managers (kdm and gdm)."
+"Allow the list of users on the system on display managers (sddm and gdm)."
msgstr ""
#: security/help.pm:35
@@ -5373,7 +5373,7 @@ msgstr ""
#: security/l10n.pm:19
#, c-format
-msgid "List users on display managers (kdm and gdm)"
+msgid "List users on display managers (sddm and gdm)"
msgstr ""
#: security/l10n.pm:20
diff --git a/perl-install/share/po/gl.po b/perl-install/share/po/gl.po
index 1b29324d7..c8ede80f2 100644
--- a/perl-install/share/po/gl.po
+++ b/perl-install/share/po/gl.po
@@ -5318,9 +5318,9 @@ msgstr "Permitir o login directo do usuario root."
#: security/help.pm:33
#, c-format
msgid ""
-"Allow the list of users on the system on display managers (kdm and gdm)."
+"Allow the list of users on the system on display managers (sddm and gdm)."
msgstr ""
-"Permitir ve-la lista de usuarios do sistema nos xestores de entrada (kdm e "
+"Permitir ve-la lista de usuarios do sistema nos xestores de entrada (sddm e "
"gdm)."
#: security/help.pm:35
@@ -5703,8 +5703,8 @@ msgstr "Entrada directa de root ó sistema"
#: security/l10n.pm:19
#, c-format
-msgid "List users on display managers (kdm and gdm)"
-msgstr "Listar os usuarios nos xestores de entrada (kdm e gdm)"
+msgid "List users on display managers (sddm and gdm)"
+msgstr "Listar os usuarios nos xestores de entrada (sddm e gdm)"
#: security/l10n.pm:20
#, c-format
diff --git a/perl-install/share/po/he.po b/perl-install/share/po/he.po
index 421d75438..5bd70deca 100644
--- a/perl-install/share/po/he.po
+++ b/perl-install/share/po/he.po
@@ -5253,8 +5253,8 @@ msgstr "אפשר התחברות מקומית של מנהל המערכת."
#: security/help.pm:33
#, c-format
msgid ""
-"Allow the list of users on the system on display managers (kdm and gdm)."
-msgstr "אפשר הצגת רשימת המשתמשים במערכת במנהל ההפעלה (kdm ו-gdm)."
+"Allow the list of users on the system on display managers (sddm and gdm)."
+msgstr "אפשר הצגת רשימת המשתמשים במערכת במנהל ההפעלה (sddm ו-gdm)."
#: security/help.pm:35
#, c-format
@@ -5617,7 +5617,7 @@ msgstr "התחברות ישירה של מנהל המערכת (root)"
#: security/l10n.pm:19
#, c-format
-msgid "List users on display managers (kdm and gdm)"
+msgid "List users on display managers (sddm and gdm)"
msgstr "רשימת המשתמשים במנהלי הפעלה (KDM ו-GDM)"
#: security/l10n.pm:20
diff --git a/perl-install/share/po/hi.po b/perl-install/share/po/hi.po
index a8f749996..4793977ad 100644
--- a/perl-install/share/po/hi.po
+++ b/perl-install/share/po/hi.po
@@ -5254,7 +5254,7 @@ msgstr ""
#: security/help.pm:33
#, c-format
msgid ""
-"Allow the list of users on the system on display managers (kdm and gdm)."
+"Allow the list of users on the system on display managers (sddm and gdm)."
msgstr ""
#: security/help.pm:35
@@ -5587,7 +5587,7 @@ msgstr "सीधे महा-उपयोगकर्ता सत्रं-
#: security/l10n.pm:19
#, c-format
-msgid "List users on display managers (kdm and gdm)"
+msgid "List users on display managers (sddm and gdm)"
msgstr "अवलोकन प्रबंधकों (केडीएम और जीडीएम) पर उपयोगकर्ताओं की सूची"
#: security/l10n.pm:20
diff --git a/perl-install/share/po/hr.po b/perl-install/share/po/hr.po
index bd4ca932e..c7741540f 100644
--- a/perl-install/share/po/hr.po
+++ b/perl-install/share/po/hr.po
@@ -5168,7 +5168,7 @@ msgstr ""
#: security/help.pm:33
#, c-format
msgid ""
-"Allow the list of users on the system on display managers (kdm and gdm)."
+"Allow the list of users on the system on display managers (sddm and gdm)."
msgstr ""
#: security/help.pm:35
@@ -5499,7 +5499,7 @@ msgstr "Izravno prijavljivanje root korisnika"
#: security/l10n.pm:19
#, c-format
-msgid "List users on display managers (kdm and gdm)"
+msgid "List users on display managers (sddm and gdm)"
msgstr ""
#: security/l10n.pm:20
diff --git a/perl-install/share/po/hu.po b/perl-install/share/po/hu.po
index 08219426d..6840899c6 100644
--- a/perl-install/share/po/hu.po
+++ b/perl-install/share/po/hu.po
@@ -5445,7 +5445,7 @@ msgstr "Közvetlen rendszergazdai bejelentkezés engedélyezése"
#: security/help.pm:33
#, c-format
msgid ""
-"Allow the list of users on the system on display managers (kdm and gdm)."
+"Allow the list of users on the system on display managers (sddm and gdm)."
msgstr ""
"A felhasználólista megjelenítésének engedélyezése a bejelentkezéskezelőkben "
"(KDM és GDM)"
@@ -5843,7 +5843,7 @@ msgstr "Közvetlen rendszergazdai bejelentkezés"
#: security/l10n.pm:19
#, c-format
-msgid "List users on display managers (kdm and gdm)"
+msgid "List users on display managers (sddm and gdm)"
msgstr ""
"A felhasználólista megjelenítése a bejelentkezéskezelőkben\n"
"(KDM és GDM)"
diff --git a/perl-install/share/po/id.po b/perl-install/share/po/id.po
index 311b58403..8574d869c 100644
--- a/perl-install/share/po/id.po
+++ b/perl-install/share/po/id.po
@@ -5428,8 +5428,8 @@ msgstr "Izinkan login root langsung."
#: security/help.pm:33
#, c-format
msgid ""
-"Allow the list of users on the system on display managers (kdm and gdm)."
-msgstr "Izinkan daftar pengguna sistem pada manajer display (kdm dan gdm)."
+"Allow the list of users on the system on display managers (sddm and gdm)."
+msgstr "Izinkan daftar pengguna sistem pada manajer display (sddm dan gdm)."
#: security/help.pm:35
#, c-format
@@ -5799,8 +5799,8 @@ msgstr "Login root langsung"
#: security/l10n.pm:19
#, c-format
-msgid "List users on display managers (kdm and gdm)"
-msgstr "Daftar pengguna pada manajer display (kdm dan gdm)"
+msgid "List users on display managers (sddm and gdm)"
+msgstr "Daftar pengguna pada manajer display (sddm dan gdm)"
#: security/l10n.pm:20
#, c-format
diff --git a/perl-install/share/po/is.po b/perl-install/share/po/is.po
index abcdf7010..d83b8ad45 100644
--- a/perl-install/share/po/is.po
+++ b/perl-install/share/po/is.po
@@ -5222,8 +5222,8 @@ msgstr "Leyfa beina innskráningu kerfisstjóra."
#: security/help.pm:33
#, c-format
msgid ""
-"Allow the list of users on the system on display managers (kdm and gdm)."
-msgstr "Leyfa lista af notendum kerfisins í innskráningar-glugga (kdm og gdm)."
+"Allow the list of users on the system on display managers (sddm and gdm)."
+msgstr "Leyfa lista af notendum kerfisins í innskráningar-glugga (sddm og gdm)."
#: security/help.pm:35
#, c-format
@@ -5596,8 +5596,8 @@ msgstr "Bein \"root\" innstimplun"
#: security/l10n.pm:19
#, c-format
-msgid "List users on display managers (kdm and gdm)"
-msgstr "Notandalisti á innstimplunarskjá (kdm og gdm)"
+msgid "List users on display managers (sddm and gdm)"
+msgstr "Notandalisti á innstimplunarskjá (sddm og gdm)"
#: security/l10n.pm:20
#, c-format
diff --git a/perl-install/share/po/it.po b/perl-install/share/po/it.po
index c260f80ad..8257b5f13 100644
--- a/perl-install/share/po/it.po
+++ b/perl-install/share/po/it.po
@@ -5513,9 +5513,9 @@ msgstr "Permette di entrare direttamente come root."
#: security/help.pm:33
#, c-format
msgid ""
-"Allow the list of users on the system on display managers (kdm and gdm)."
+"Allow the list of users on the system on display managers (sddm and gdm)."
msgstr ""
-"Permette l'elencazione degli utenti del sistema sui display manager (kdm e "
+"Permette l'elencazione degli utenti del sistema sui display manager (sddm e "
"gdm)."
#: security/help.pm:35
@@ -5895,8 +5895,8 @@ msgstr "Login diretto per root"
#: security/l10n.pm:19
#, c-format
-msgid "List users on display managers (kdm and gdm)"
-msgstr "Elenca gli utenti sul display manager (kdm o gdm)"
+msgid "List users on display managers (sddm and gdm)"
+msgstr "Elenca gli utenti sul display manager (sddm o gdm)"
#: security/l10n.pm:20
#, c-format
diff --git a/perl-install/share/po/ja.po b/perl-install/share/po/ja.po
index 69e1c14a9..f0da0aa2f 100644
--- a/perl-install/share/po/ja.po
+++ b/perl-install/share/po/ja.po
@@ -5199,8 +5199,8 @@ msgstr "ダイレクト root ログインを許可します。"
#: security/help.pm:33
#, c-format
msgid ""
-"Allow the list of users on the system on display managers (kdm and gdm)."
-msgstr "ディスプレイマネージャ (kdm と gdm) のユーザリストを許可します。"
+"Allow the list of users on the system on display managers (sddm and gdm)."
+msgstr "ディスプレイマネージャ (sddm と gdm) のユーザリストを許可します。"
#: security/help.pm:35
#, c-format
@@ -5561,8 +5561,8 @@ msgstr "直接 root でログイン"
#: security/l10n.pm:19
#, c-format
-msgid "List users on display managers (kdm and gdm)"
-msgstr "ディスプレイマネージャ (kdm と gdm) にユーザを表示"
+msgid "List users on display managers (sddm and gdm)"
+msgstr "ディスプレイマネージャ (sddm と gdm) にユーザを表示"
#: security/l10n.pm:20
#, c-format
diff --git a/perl-install/share/po/ko.po b/perl-install/share/po/ko.po
index dde46b039..f2ab8412b 100644
--- a/perl-install/share/po/ko.po
+++ b/perl-install/share/po/ko.po
@@ -5087,7 +5087,7 @@ msgstr ""
#: security/help.pm:33
#, c-format
msgid ""
-"Allow the list of users on the system on display managers (kdm and gdm)."
+"Allow the list of users on the system on display managers (sddm and gdm)."
msgstr ""
#: security/help.pm:35
@@ -5403,7 +5403,7 @@ msgstr ""
#: security/l10n.pm:19
#, c-format
-msgid "List users on display managers (kdm and gdm)"
+msgid "List users on display managers (sddm and gdm)"
msgstr ""
#: security/l10n.pm:20
diff --git a/perl-install/share/po/ky.po b/perl-install/share/po/ky.po
index 7f62aeb65..45faddb48 100644
--- a/perl-install/share/po/ky.po
+++ b/perl-install/share/po/ky.po
@@ -5180,7 +5180,7 @@ msgstr ""
#: security/help.pm:33
#, c-format
msgid ""
-"Allow the list of users on the system on display managers (kdm and gdm)."
+"Allow the list of users on the system on display managers (sddm and gdm)."
msgstr ""
#: security/help.pm:35
@@ -5496,7 +5496,7 @@ msgstr ""
#: security/l10n.pm:19
#, c-format
-msgid "List users on display managers (kdm and gdm)"
+msgid "List users on display managers (sddm and gdm)"
msgstr ""
#: security/l10n.pm:20
diff --git a/perl-install/share/po/lt.po b/perl-install/share/po/lt.po
index c1cfab7dc..54687f832 100644
--- a/perl-install/share/po/lt.po
+++ b/perl-install/share/po/lt.po
@@ -5049,7 +5049,7 @@ msgstr ""
#: security/help.pm:33
#, c-format
msgid ""
-"Allow the list of users on the system on display managers (kdm and gdm)."
+"Allow the list of users on the system on display managers (sddm and gdm)."
msgstr ""
#: security/help.pm:35
@@ -5365,7 +5365,7 @@ msgstr ""
#: security/l10n.pm:19
#, c-format
-msgid "List users on display managers (kdm and gdm)"
+msgid "List users on display managers (sddm and gdm)"
msgstr ""
#: security/l10n.pm:20
diff --git a/perl-install/share/po/ltg.po b/perl-install/share/po/ltg.po
index bb760c70c..04fc3341f 100644
--- a/perl-install/share/po/ltg.po
+++ b/perl-install/share/po/ltg.po
@@ -5173,7 +5173,7 @@ msgstr "Atļaut/Aizlīgt tīšu root dasasliegšonu sistemai"
#: security/help.pm:33
#, c-format
msgid ""
-"Allow the list of users on the system on display managers (kdm and gdm)."
+"Allow the list of users on the system on display managers (sddm and gdm)."
msgstr ""
#: security/help.pm:35
@@ -5489,7 +5489,7 @@ msgstr ""
#: security/l10n.pm:19
#, c-format
-msgid "List users on display managers (kdm and gdm)"
+msgid "List users on display managers (sddm and gdm)"
msgstr ""
#: security/l10n.pm:20
diff --git a/perl-install/share/po/lv.po b/perl-install/share/po/lv.po
index dd050edda..2ce97e97d 100644
--- a/perl-install/share/po/lv.po
+++ b/perl-install/share/po/lv.po
@@ -5099,7 +5099,7 @@ msgstr ""
#: security/help.pm:33
#, c-format
msgid ""
-"Allow the list of users on the system on display managers (kdm and gdm)."
+"Allow the list of users on the system on display managers (sddm and gdm)."
msgstr ""
#: security/help.pm:35
@@ -5415,7 +5415,7 @@ msgstr ""
#: security/l10n.pm:19
#, c-format
-msgid "List users on display managers (kdm and gdm)"
+msgid "List users on display managers (sddm and gdm)"
msgstr ""
#: security/l10n.pm:20
diff --git a/perl-install/share/po/mk.po b/perl-install/share/po/mk.po
index fb4c72c08..482395b3e 100644
--- a/perl-install/share/po/mk.po
+++ b/perl-install/share/po/mk.po
@@ -5296,8 +5296,8 @@ msgstr "Дозволи/Забрани ги директните пријавув
#: security/help.pm:33
#, fuzzy, c-format
msgid ""
-"Allow the list of users on the system on display managers (kdm and gdm)."
-msgstr "Дозволи/Забрани листа на корисници на дисплеј менаџерот(kdm and gdm)."
+"Allow the list of users on the system on display managers (sddm and gdm)."
+msgstr "Дозволи/Забрани листа на корисници на дисплеј менаџерот(sddm and gdm)."
#: security/help.pm:35
#, c-format
@@ -5667,8 +5667,8 @@ msgstr "Директно root логирање"
#: security/l10n.pm:19
#, c-format
-msgid "List users on display managers (kdm and gdm)"
-msgstr "Листа на корисници на дисплеј менаџерот (kdm и gdm)"
+msgid "List users on display managers (sddm and gdm)"
+msgstr "Листа на корисници на дисплеј менаџерот (sddm и gdm)"
#: security/l10n.pm:20
#, c-format
diff --git a/perl-install/share/po/mn.po b/perl-install/share/po/mn.po
index 3a5b04647..78399f438 100644
--- a/perl-install/share/po/mn.po
+++ b/perl-install/share/po/mn.po
@@ -5022,7 +5022,7 @@ msgstr "Аргумент г."
#: security/help.pm:33
#, c-format
msgid ""
-"Allow the list of users on the system on display managers (kdm and gdm)."
+"Allow the list of users on the system on display managers (sddm and gdm)."
msgstr ""
#: security/help.pm:35
@@ -5353,7 +5353,7 @@ msgstr ""
#: security/l10n.pm:19
#, c-format
-msgid "List users on display managers (kdm and gdm)"
+msgid "List users on display managers (sddm and gdm)"
msgstr ""
#: security/l10n.pm:20
diff --git a/perl-install/share/po/ms.po b/perl-install/share/po/ms.po
index 99332c420..69d902dba 100644
--- a/perl-install/share/po/ms.po
+++ b/perl-install/share/po/ms.po
@@ -5011,7 +5011,7 @@ msgstr "Anggap pengguna _root jauh sebagai root tempatan"
#: security/help.pm:33
#, fuzzy, c-format
msgid ""
-"Allow the list of users on the system on display managers (kdm and gdm)."
+"Allow the list of users on the system on display managers (sddm and gdm)."
msgstr "on on dan."
#: security/help.pm:35
@@ -5327,7 +5327,7 @@ msgstr "Konfigur pengurus login (KDM)"
#: security/l10n.pm:19
#, fuzzy, c-format
-msgid "List users on display managers (kdm and gdm)"
+msgid "List users on display managers (sddm and gdm)"
msgstr "on dan"
#: security/l10n.pm:20
diff --git a/perl-install/share/po/mt.po b/perl-install/share/po/mt.po
index 4973288d7..5a43d83e8 100644
--- a/perl-install/share/po/mt.po
+++ b/perl-install/share/po/mt.po
@@ -5237,10 +5237,10 @@ msgstr "Ippermetti/iċħad login dirett ta' root."
#: security/help.pm:33
#, fuzzy, c-format
msgid ""
-"Allow the list of users on the system on display managers (kdm and gdm)."
+"Allow the list of users on the system on display managers (sddm and gdm)."
msgstr ""
"Ippermetti/iċħad il-lista ta' utenti tas-sistema fuq id-display managers "
-"(kdm u gdm)"
+"(sddm u gdm)"
#: security/help.pm:35
#, fuzzy, c-format
@@ -5614,8 +5614,8 @@ msgstr "Login root dirett"
#: security/l10n.pm:19
#, c-format
-msgid "List users on display managers (kdm and gdm)"
-msgstr "Elenka l-utenti fuq display managers (kdm u gdm)"
+msgid "List users on display managers (sddm and gdm)"
+msgstr "Elenka l-utenti fuq display managers (sddm u gdm)"
#: security/l10n.pm:20
#, c-format
diff --git a/perl-install/share/po/nb.po b/perl-install/share/po/nb.po
index 900c82d28..3ea30309b 100644
--- a/perl-install/share/po/nb.po
+++ b/perl-install/share/po/nb.po
@@ -5288,8 +5288,8 @@ msgstr "Godta direkte «root»-innlogging."
#: security/help.pm:33
#, c-format
msgid ""
-"Allow the list of users on the system on display managers (kdm and gdm)."
-msgstr "Godta visning av brukere i innloggingshåndterer (kdm og gdm)."
+"Allow the list of users on the system on display managers (sddm and gdm)."
+msgstr "Godta visning av brukere i innloggingshåndterer (sddm og gdm)."
#: security/help.pm:35
#, c-format
@@ -5661,8 +5661,8 @@ msgstr "Direkte root-innlogging"
#: security/l10n.pm:19
#, c-format
-msgid "List users on display managers (kdm and gdm)"
-msgstr "Vis brukere på innloggingshåndterer (kdm og gdm)"
+msgid "List users on display managers (sddm and gdm)"
+msgstr "Vis brukere på innloggingshåndterer (sddm og gdm)"
#: security/l10n.pm:20
#, c-format
diff --git a/perl-install/share/po/nl.po b/perl-install/share/po/nl.po
index 656788058..92d87f867 100644
--- a/perl-install/share/po/nl.po
+++ b/perl-install/share/po/nl.po
@@ -5471,9 +5471,9 @@ msgstr "Directe aanmelding van root toestaan."
#: security/help.pm:33
#, c-format
msgid ""
-"Allow the list of users on the system on display managers (kdm and gdm)."
+"Allow the list of users on the system on display managers (sddm and gdm)."
msgstr ""
-"Een lijst van gebruikers op het systeem toestaan op displaybeheer (kdm en "
+"Een lijst van gebruikers op het systeem toestaan op displaybeheer (sddm en "
"gdm)."
#: security/help.pm:35
@@ -5855,8 +5855,8 @@ msgstr "Direct aanmelden als root"
#: security/l10n.pm:19
#, c-format
-msgid "List users on display managers (kdm and gdm)"
-msgstr "Gebruikers opsommen op displaybeheer (kdm en gdm)."
+msgid "List users on display managers (sddm and gdm)"
+msgstr "Gebruikers opsommen op displaybeheer (sddm en gdm)."
#: security/l10n.pm:20
#, c-format
diff --git a/perl-install/share/po/nn.po b/perl-install/share/po/nn.po
index de20263f8..688617e51 100644
--- a/perl-install/share/po/nn.po
+++ b/perl-install/share/po/nn.po
@@ -5330,8 +5330,8 @@ msgstr "Godta direkte «root»-innlogging."
#: security/help.pm:33
#, c-format
msgid ""
-"Allow the list of users on the system on display managers (kdm and gdm)."
-msgstr "Godta vising av brukarar i innloggingshandsamarar (kdm og gdm)."
+"Allow the list of users on the system on display managers (sddm and gdm)."
+msgstr "Godta vising av brukarar i innloggingshandsamarar (sddm og gdm)."
#: security/help.pm:35
#, c-format
@@ -5703,8 +5703,8 @@ msgstr "Direkte «root»-innlogging"
#: security/l10n.pm:19
#, c-format
-msgid "List users on display managers (kdm and gdm)"
-msgstr "Vis brukarar på innloggingshandsamarar (kdm og gdm)"
+msgid "List users on display managers (sddm and gdm)"
+msgstr "Vis brukarar på innloggingshandsamarar (sddm og gdm)"
#: security/l10n.pm:20
#, c-format
diff --git a/perl-install/share/po/pa_IN.po b/perl-install/share/po/pa_IN.po
index b27f8b574..0a3ffd5c3 100644
--- a/perl-install/share/po/pa_IN.po
+++ b/perl-install/share/po/pa_IN.po
@@ -5177,8 +5177,8 @@ msgstr "ਸਿੱਧਾ ਪ੍ਰਬੰਧਕ (root) ਲਾਗਇਨ ਇਜਾ
#: security/help.pm:33
#, fuzzy, c-format
msgid ""
-"Allow the list of users on the system on display managers (kdm and gdm)."
-msgstr "ਦ੍ਰਿਸ਼ ਮੈਨੇਜਰ (kdm ਅਤੇ gdm) ਵਿੱਚ ਸਿਸਟਮ ਤੇ ਉਪਭੋਗੀਆਂ ਦੀ ਸੂਚੀ ਇਜਾਜ਼ਤ/ਮਨਾਹੀ।"
+"Allow the list of users on the system on display managers (sddm and gdm)."
+msgstr "ਦ੍ਰਿਸ਼ ਮੈਨੇਜਰ (sddm ਅਤੇ gdm) ਵਿੱਚ ਸਿਸਟਮ ਤੇ ਉਪਭੋਗੀਆਂ ਦੀ ਸੂਚੀ ਇਜਾਜ਼ਤ/ਮਨਾਹੀ।"
#: security/help.pm:35
#, fuzzy, c-format
@@ -5538,8 +5538,8 @@ msgstr "ਸਿੱਧਾ ਰੂਟ ਲਾਗਇਨ"
#: security/l10n.pm:19
#, c-format
-msgid "List users on display managers (kdm and gdm)"
-msgstr "ਦ੍ਰਿਸ਼ ਮੈਨੇਜਰ (kdm ਅਤੇ gdm) ਉਪਭੋਗੀ ਉਪਭੋਗੀ ਵਿਖਾਓ"
+msgid "List users on display managers (sddm and gdm)"
+msgstr "ਦ੍ਰਿਸ਼ ਮੈਨੇਜਰ (sddm ਅਤੇ gdm) ਉਪਭੋਗੀ ਉਪਭੋਗੀ ਵਿਖਾਓ"
#: security/l10n.pm:20
#, c-format
diff --git a/perl-install/share/po/pl.po b/perl-install/share/po/pl.po
index 16a98efcc..d057226ed 100644
--- a/perl-install/share/po/pl.po
+++ b/perl-install/share/po/pl.po
@@ -5351,9 +5351,9 @@ msgstr "Dozwolone bezpośrednie logowanie użytkownika root."
#: security/help.pm:33
#, c-format
msgid ""
-"Allow the list of users on the system on display managers (kdm and gdm)."
+"Allow the list of users on the system on display managers (sddm and gdm)."
msgstr ""
-"Dozwolone wyświetlanie listy użytkowników w menedżerach wyświetlania (kdm "
+"Dozwolone wyświetlanie listy użytkowników w menedżerach wyświetlania (sddm "
"lub gdm)."
#: security/help.pm:35
@@ -5737,8 +5737,8 @@ msgstr "Bezpośrednie logowanie roota"
#: security/l10n.pm:19
#, c-format
-msgid "List users on display managers (kdm and gdm)"
-msgstr "Lista użytkowników w menedżerach wyświetlania (kdm i gdm)"
+msgid "List users on display managers (sddm and gdm)"
+msgstr "Lista użytkowników w menedżerach wyświetlania (sddm i gdm)"
#: security/l10n.pm:20
#, c-format
diff --git a/perl-install/share/po/pt.po b/perl-install/share/po/pt.po
index 56e88ef52..b37e1b120 100644
--- a/perl-install/share/po/pt.po
+++ b/perl-install/share/po/pt.po
@@ -5366,9 +5366,9 @@ msgstr "Permitir autenticação direta de administrador ."
#: security/help.pm:33
#, c-format
msgid ""
-"Allow the list of users on the system on display managers (kdm and gdm)."
+"Allow the list of users on the system on display managers (sddm and gdm)."
msgstr ""
-"Permitir a listagem dos utilizadores do sistema nos gestores de ecrã (kdm e "
+"Permitir a listagem dos utilizadores do sistema nos gestores de ecrã (sddm e "
"gdm)."
#: security/help.pm:35
@@ -5754,8 +5754,8 @@ msgstr "Autenticação direta do administrador"
#: security/l10n.pm:19
#, c-format
-msgid "List users on display managers (kdm and gdm)"
-msgstr "Listar utilizadores nos gestores de ecrã (kdm e gdm)"
+msgid "List users on display managers (sddm and gdm)"
+msgstr "Listar utilizadores nos gestores de ecrã (sddm e gdm)"
#: security/l10n.pm:20
#, c-format
diff --git a/perl-install/share/po/pt_BR.po b/perl-install/share/po/pt_BR.po
index 207326fec..0cbc5a7ee 100644
--- a/perl-install/share/po/pt_BR.po
+++ b/perl-install/share/po/pt_BR.po
@@ -5445,8 +5445,8 @@ msgstr "Permite o login direto do root."
#: security/help.pm:33
#, c-format
msgid ""
-"Allow the list of users on the system on display managers (kdm and gdm)."
-msgstr "Permite a listagem de usuários no gerenciador gráfico (kdm e gdm)."
+"Allow the list of users on the system on display managers (sddm and gdm)."
+msgstr "Permite a listagem de usuários no gerenciador gráfico (sddm e gdm)."
#: security/help.pm:35
#, c-format
@@ -5832,8 +5832,8 @@ msgstr "Login direto do root"
#: security/l10n.pm:19
#, c-format
-msgid "List users on display managers (kdm and gdm)"
-msgstr "Listar os usuários nas telas de login (kdm e gdm)"
+msgid "List users on display managers (sddm and gdm)"
+msgstr "Listar os usuários nas telas de login (sddm e gdm)"
#: security/l10n.pm:20
#, c-format
diff --git a/perl-install/share/po/ro.po b/perl-install/share/po/ro.po
index 7d202a4b9..f3fe9a368 100644
--- a/perl-install/share/po/ro.po
+++ b/perl-install/share/po/ro.po
@@ -5431,9 +5431,9 @@ msgstr "Permite autentificarea directă cu root."
#: security/help.pm:33
#, c-format
msgid ""
-"Allow the list of users on the system on display managers (kdm and gdm)."
+"Allow the list of users on the system on display managers (sddm and gdm)."
msgstr ""
-"Autorizează lista utilizatorilor din sistem în gestionarii de ecran (kdm și "
+"Autorizează lista utilizatorilor din sistem în gestionarii de ecran (sddm și "
"gdm)."
#: security/help.pm:35
@@ -5814,8 +5814,8 @@ msgstr "Autentificare root directă"
#: security/l10n.pm:19
#, c-format
-msgid "List users on display managers (kdm and gdm)"
-msgstr "Afișează utilizatorii în gestionarii de ecran (kdm și gdm)"
+msgid "List users on display managers (sddm and gdm)"
+msgstr "Afișează utilizatorii în gestionarii de ecran (sddm și gdm)"
#: security/l10n.pm:20
#, c-format
diff --git a/perl-install/share/po/ru.po b/perl-install/share/po/ru.po
index 898f16749..fa0d542b8 100644
--- a/perl-install/share/po/ru.po
+++ b/perl-install/share/po/ru.po
@@ -5451,10 +5451,10 @@ msgstr "Разрешить администратору непосредстве
#: security/help.pm:33
#, c-format
msgid ""
-"Allow the list of users on the system on display managers (kdm and gdm)."
+"Allow the list of users on the system on display managers (sddm and gdm)."
msgstr ""
"Разрешает/Запрещает вывод списка пользователей системы в оконных менеджерах "
-"(kdm и gdm)."
+"(sddm и gdm)."
#: security/help.pm:35
#, c-format
@@ -5841,8 +5841,8 @@ msgstr "Вход сразу под root"
#: security/l10n.pm:19
#, c-format
-msgid "List users on display managers (kdm and gdm)"
-msgstr "Список пользователей в менеджерах экрана (kdm и gdm)"
+msgid "List users on display managers (sddm and gdm)"
+msgstr "Список пользователей в менеджерах экрана (sddm и gdm)"
#: security/l10n.pm:20
#, c-format
diff --git a/perl-install/share/po/sc.po b/perl-install/share/po/sc.po
index 36f63b598..5792ecd51 100644
--- a/perl-install/share/po/sc.po
+++ b/perl-install/share/po/sc.po
@@ -5089,7 +5089,7 @@ msgstr ""
#: security/help.pm:33
#, c-format
msgid ""
-"Allow the list of users on the system on display managers (kdm and gdm)."
+"Allow the list of users on the system on display managers (sddm and gdm)."
msgstr ""
#: security/help.pm:35
@@ -5405,7 +5405,7 @@ msgstr ""
#: security/l10n.pm:19
#, c-format
-msgid "List users on display managers (kdm and gdm)"
+msgid "List users on display managers (sddm and gdm)"
msgstr ""
#: security/l10n.pm:20
diff --git a/perl-install/share/po/sk.po b/perl-install/share/po/sk.po
index 1925f81b0..60f146093 100644
--- a/perl-install/share/po/sk.po
+++ b/perl-install/share/po/sk.po
@@ -5398,8 +5398,8 @@ msgstr "Povoliť priame prihlásenie root-a."
#: security/help.pm:33
#, c-format
msgid ""
-"Allow the list of users on the system on display managers (kdm and gdm)."
-msgstr "Povoliť výpis užívateľov systému v správcovi okien (kdm a gdm)."
+"Allow the list of users on the system on display managers (sddm and gdm)."
+msgstr "Povoliť výpis užívateľov systému v správcovi okien (sddm a gdm)."
#: security/help.pm:35
#, c-format
@@ -5788,8 +5788,8 @@ msgstr "Priame prihlásenie root-a"
#: security/l10n.pm:19
#, c-format
-msgid "List users on display managers (kdm and gdm)"
-msgstr "Zoznam používateľov pre manažéry prihlásenia (kdm a gdm)"
+msgid "List users on display managers (sddm and gdm)"
+msgstr "Zoznam používateľov pre manažéry prihlásenia (sddm a gdm)"
#: security/l10n.pm:20
#, c-format
diff --git a/perl-install/share/po/sl.po b/perl-install/share/po/sl.po
index 62be80417..3a5efcc3e 100644
--- a/perl-install/share/po/sl.po
+++ b/perl-install/share/po/sl.po
@@ -5405,8 +5405,8 @@ msgstr "Dovoli neposredno prijavo skrbnika."
#: security/help.pm:33
#, c-format
msgid ""
-"Allow the list of users on the system on display managers (kdm and gdm)."
-msgstr "Dovoli prikaz seznama uporabnikov v upravitelju prikaza (kdm in gdm)."
+"Allow the list of users on the system on display managers (sddm and gdm)."
+msgstr "Dovoli prikaz seznama uporabnikov v upravitelju prikaza (sddm in gdm)."
#: security/help.pm:35
#, c-format
@@ -5786,8 +5786,8 @@ msgstr "Neposredna prijava skrbnika (root)"
#: security/l10n.pm:19
#, c-format
-msgid "List users on display managers (kdm and gdm)"
-msgstr "Prikaži seznam uporabnikov v upraviteljih prikaza (kdm in gdm)"
+msgid "List users on display managers (sddm and gdm)"
+msgstr "Prikaži seznam uporabnikov v upraviteljih prikaza (sddm in gdm)"
#: security/l10n.pm:20
#, c-format
diff --git a/perl-install/share/po/sq.po b/perl-install/share/po/sq.po
index 8b71c1dc5..6febb8b1c 100644
--- a/perl-install/share/po/sq.po
+++ b/perl-install/share/po/sq.po
@@ -5290,7 +5290,7 @@ msgstr ""
#: security/help.pm:33
#, c-format
msgid ""
-"Allow the list of users on the system on display managers (kdm and gdm)."
+"Allow the list of users on the system on display managers (sddm and gdm)."
msgstr ""
#: security/help.pm:35
@@ -5644,8 +5644,8 @@ msgstr "Lidhje administratori direkt"
#: security/l10n.pm:19
#, c-format
-msgid "List users on display managers (kdm and gdm)"
-msgstr "Paraqite listën së përdoruesve në sistem administrues (kdm dhe gdm)"
+msgid "List users on display managers (sddm and gdm)"
+msgstr "Paraqite listën së përdoruesve në sistem administrues (sddm dhe gdm)"
#: security/l10n.pm:20
#, c-format
diff --git a/perl-install/share/po/sr.po b/perl-install/share/po/sr.po
index d50ad7866..a84f36c5f 100644
--- a/perl-install/share/po/sr.po
+++ b/perl-install/share/po/sr.po
@@ -5297,11 +5297,11 @@ msgstr ""
#: security/help.pm:33
#, fuzzy, c-format
msgid ""
-"Allow the list of users on the system on display managers (kdm and gdm)."
+"Allow the list of users on the system on display managers (sddm and gdm)."
msgstr ""
"Аргументи: (arg)\n"
"\n"
-"Дозволи/Не дозволи листу корисника на систему у менаџерима за дисплеј (kdm и "
+"Дозволи/Не дозволи листу корисника на систему у менаџерима за дисплеј (sddm и "
"gdm)."
#: security/help.pm:35
@@ -5726,11 +5726,11 @@ msgstr ""
#: security/l10n.pm:19
#, fuzzy, c-format
-msgid "List users on display managers (kdm and gdm)"
+msgid "List users on display managers (sddm and gdm)"
msgstr ""
"Аргументи: (arg)\n"
"\n"
-"Дозволи/Не дозволи листу корисника на систему у менаџерима за дисплеј (kdm и "
+"Дозволи/Не дозволи листу корисника на систему у менаџерима за дисплеј (sddm и "
"gdm)."
#: security/l10n.pm:20
diff --git a/perl-install/share/po/sr@Latn.po b/perl-install/share/po/sr@Latn.po
index 301a9259e..a950b48c5 100644
--- a/perl-install/share/po/sr@Latn.po
+++ b/perl-install/share/po/sr@Latn.po
@@ -5297,11 +5297,11 @@ msgstr ""
#: security/help.pm:33
#, fuzzy, c-format
msgid ""
-"Allow the list of users on the system on display managers (kdm and gdm)."
+"Allow the list of users on the system on display managers (sddm and gdm)."
msgstr ""
"Argumenti: (arg)\n"
"\n"
-"Dozvoli/Ne dozvoli listu korisnika na sistemu u menadžerima za displej (kdm "
+"Dozvoli/Ne dozvoli listu korisnika na sistemu u menadžerima za displej (sddm "
"i gdm)."
#: security/help.pm:35
@@ -5727,11 +5727,11 @@ msgstr ""
#: security/l10n.pm:19
#, fuzzy, c-format
-msgid "List users on display managers (kdm and gdm)"
+msgid "List users on display managers (sddm and gdm)"
msgstr ""
"Argumenti: (arg)\n"
"\n"
-"Dozvoli/Ne dozvoli listu korisnika na sistemu u menadžerima za displej (kdm "
+"Dozvoli/Ne dozvoli listu korisnika na sistemu u menadžerima za displej (sddm "
"i gdm)."
#: security/l10n.pm:20
diff --git a/perl-install/share/po/sv.po b/perl-install/share/po/sv.po
index c0a73969d..23e4cfb08 100644
--- a/perl-install/share/po/sv.po
+++ b/perl-install/share/po/sv.po
@@ -5410,10 +5410,10 @@ msgstr "Tillåt direkt root-inloggning."
#: security/help.pm:33
#, c-format
msgid ""
-"Allow the list of users on the system on display managers (kdm and gdm)."
+"Allow the list of users on the system on display managers (sddm and gdm)."
msgstr ""
"Tillåt listan på användare i systemet att synas i inloggnings-hanterarna "
-"(kdm och gdm)."
+"(sddm och gdm)."
#: security/help.pm:35
#, c-format
@@ -5784,7 +5784,7 @@ msgstr "Direkt root-inloggning"
#: security/l10n.pm:19
#, c-format
-msgid "List users on display managers (kdm and gdm)"
+msgid "List users on display managers (sddm and gdm)"
msgstr "Visa användare på inloggningshanterarna (KDM och GDM)"
#: security/l10n.pm:20
diff --git a/perl-install/share/po/ta.po b/perl-install/share/po/ta.po
index b2d76a4dc..21b3bf42b 100644
--- a/perl-install/share/po/ta.po
+++ b/perl-install/share/po/ta.po
@@ -5211,7 +5211,7 @@ msgstr "தொலைவு அச்சுப்பொறி"
#: security/help.pm:33
#, c-format
msgid ""
-"Allow the list of users on the system on display managers (kdm and gdm)."
+"Allow the list of users on the system on display managers (sddm and gdm)."
msgstr ""
#: security/help.pm:35
@@ -5527,7 +5527,7 @@ msgstr ""
#: security/l10n.pm:19
#, c-format
-msgid "List users on display managers (kdm and gdm)"
+msgid "List users on display managers (sddm and gdm)"
msgstr ""
#: security/l10n.pm:20
diff --git a/perl-install/share/po/tg.po b/perl-install/share/po/tg.po
index f93a99ee7..0d30a44ef 100644
--- a/perl-install/share/po/tg.po
+++ b/perl-install/share/po/tg.po
@@ -5359,9 +5359,9 @@ msgstr "Вориди рости решавиро иҷозат медиҳад/м
#: security/help.pm:33
#, fuzzy, c-format
msgid ""
-"Allow the list of users on the system on display managers (kdm and gdm)."
+"Allow the list of users on the system on display managers (sddm and gdm)."
msgstr ""
-"Дар мудири экран (kdm ва gdm) намоиши рӯйхати корвандони системавиро иҷозат "
+"Дар мудири экран (sddm ва gdm) намоиши рӯйхати корвандони системавиро иҷозат "
"медиҳад/манъ мекунад."
#: security/help.pm:35
@@ -5762,8 +5762,8 @@ msgstr "Дохилшавии бевосита дар зери root"
#: security/l10n.pm:19
#, c-format
-msgid "List users on display managers (kdm and gdm)"
-msgstr "Рӯйхати корвандон дар мудирҳои экран (kdm ва gdm)"
+msgid "List users on display managers (sddm and gdm)"
+msgstr "Рӯйхати корвандон дар мудирҳои экран (sddm ва gdm)"
#: security/l10n.pm:20
#, c-format
diff --git a/perl-install/share/po/th.po b/perl-install/share/po/th.po
index 7ef268b08..63bf0613a 100644
--- a/perl-install/share/po/th.po
+++ b/perl-install/share/po/th.po
@@ -5116,7 +5116,7 @@ msgstr ""
#: security/help.pm:33
#, c-format
msgid ""
-"Allow the list of users on the system on display managers (kdm and gdm)."
+"Allow the list of users on the system on display managers (sddm and gdm)."
msgstr ""
#: security/help.pm:35
@@ -5432,7 +5432,7 @@ msgstr ""
#: security/l10n.pm:19
#, c-format
-msgid "List users on display managers (kdm and gdm)"
+msgid "List users on display managers (sddm and gdm)"
msgstr ""
#: security/l10n.pm:20
diff --git a/perl-install/share/po/tl.po b/perl-install/share/po/tl.po
index 998b43952..a1a0cf0f4 100644
--- a/perl-install/share/po/tl.po
+++ b/perl-install/share/po/tl.po
@@ -5371,10 +5371,10 @@ msgstr "Payagan/Ipagbawal ang direktang login ng root."
#: security/help.pm:33
#, fuzzy, c-format
msgid ""
-"Allow the list of users on the system on display managers (kdm and gdm)."
+"Allow the list of users on the system on display managers (sddm and gdm)."
msgstr ""
"Payagan/Ipagbawal ang talaan ng mga user ng sistema sa mga display manager "
-"(kdm at gdm)."
+"(sddm at gdm)."
#: security/help.pm:35
#, c-format
@@ -5759,8 +5759,8 @@ msgstr "Direktang login ng root"
#: security/l10n.pm:19
#, c-format
-msgid "List users on display managers (kdm and gdm)"
-msgstr "Ilista ang mga gumagamit sa mga display manager (kdm at gdm)"
+msgid "List users on display managers (sddm and gdm)"
+msgstr "Ilista ang mga gumagamit sa mga display manager (sddm at gdm)"
#: security/l10n.pm:20
#, c-format
diff --git a/perl-install/share/po/tr.po b/perl-install/share/po/tr.po
index a7deb9477..d1f7e8b3d 100644
--- a/perl-install/share/po/tr.po
+++ b/perl-install/share/po/tr.po
@@ -4925,8 +4925,8 @@ msgstr "Doğrudan kök girişine izin ver."
#: security/help.pm:33
#, c-format
msgid ""
-"Allow the list of users on the system on display managers (kdm and gdm)."
-msgstr "Ekran yöneticilerinde (kdm ve gdm) sistemdeki kullanıcıların listesine izin ver."
+"Allow the list of users on the system on display managers (sddm and gdm)."
+msgstr "Ekran yöneticilerinde (sddm ve gdm) sistemdeki kullanıcıların listesine izin ver."
#: security/help.pm:35
#, c-format
@@ -5241,8 +5241,8 @@ msgstr "Doğrudan kök girişi"
#: security/l10n.pm:19
#, c-format
-msgid "List users on display managers (kdm and gdm)"
-msgstr "Görüntü yöneticilerinde (kdm ve gdm) kullanıcıları listele"
+msgid "List users on display managers (sddm and gdm)"
+msgstr "Görüntü yöneticilerinde (sddm ve gdm) kullanıcıları listele"
#: security/l10n.pm:20
#, c-format
diff --git a/perl-install/share/po/uk.po b/perl-install/share/po/uk.po
index ea55d9e8e..5048ab53c 100644
--- a/perl-install/share/po/uk.po
+++ b/perl-install/share/po/uk.po
@@ -5419,9 +5419,9 @@ msgstr "Дозволити безпосередню реєстрацію кор
#: security/help.pm:33
#, c-format
msgid ""
-"Allow the list of users on the system on display managers (kdm and gdm)."
+"Allow the list of users on the system on display managers (sddm and gdm)."
msgstr ""
-"Дозволити показ списку користувачів системи в менеджерах дисплею (kdm і gdm)."
+"Дозволити показ списку користувачів системи в менеджерах дисплею (sddm і gdm)."
#: security/help.pm:35
#, c-format
@@ -5799,8 +5799,8 @@ msgstr "Пряма реєстрація root"
#: security/l10n.pm:19
#, c-format
-msgid "List users on display managers (kdm and gdm)"
-msgstr "Показувати список користувачів в менеджерах дисплею (kdm і gdm)."
+msgid "List users on display managers (sddm and gdm)"
+msgstr "Показувати список користувачів в менеджерах дисплею (sddm і gdm)."
#: security/l10n.pm:20
#, c-format
diff --git a/perl-install/share/po/uz.po b/perl-install/share/po/uz.po
index afafcdaf9..169254174 100644
--- a/perl-install/share/po/uz.po
+++ b/perl-install/share/po/uz.po