diff options
Diffstat (limited to 'perl-install/standalone')
-rwxr-xr-x | perl-install/standalone/finish-install | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/standalone/finish-install b/perl-install/standalone/finish-install index 7e05fc417..8bc9dad9d 100755 --- a/perl-install/standalone/finish-install +++ b/perl-install/standalone/finish-install @@ -261,7 +261,7 @@ sub ask_gnome_reboot() { if (-f $lock_file) { run_program::run('/usr/bin/rm', '-f', $lock_file); # FIXME: convert to perl/gtk* window popup for translation support - system('/usr/bin/zenity', '--timeout=20', '--title', 'Finishing install', '--no-wrap', '--info', '--text', 'This system will be rebooted\nfor the changes to take effect!'); + system('/usr/bin/zenity', qw(--timeout=20 --title), N("Finishing install"), qw(--no-wrap --info --text), N("This system will be rebooted\nfor the changes to take effect!")); run_program::run('/usr/bin/chown', '-R', 'gdm:gdm', '/var/lib/gdm'); run_program::run('/usr/sbin/ldconfig', '-X'); run_program::run('/usr/bin/systemctl', 'reboot'); |