diff options
Diffstat (limited to 'perl-install/standalone/service_harddrake')
-rwxr-xr-x | perl-install/standalone/service_harddrake | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/perl-install/standalone/service_harddrake b/perl-install/standalone/service_harddrake index 316088431..236ed3c77 100755 --- a/perl-install/standalone/service_harddrake +++ b/perl-install/standalone/service_harddrake @@ -150,7 +150,7 @@ sub should_reconfigure_x_driver { # auto reconfigure x11 only on first time default driver have changed: if ($previous_xorg_config{XORG_DRV} ne $new_key) { if (!member($current_driver, $card_data->{Driver}, $card_data->{Driver2}, 'fbdev', 'vesa')) { - $reason = N("The graphic card '%s' is no more supported by the '%s' driver", + $reason = N("The graphics card '%s' is no longer supported by driver '%s'", $device->{description}, $current_driver); $reconfigure = 1; } @@ -251,7 +251,7 @@ foreach my $card (@cards) { my $driver = $cards[0]{Driver}; my $old_driver = cat_('/etc/X11/xorg.conf') =~ /Driver "($card->{xorg_driver_regexp})"/ && $1; if ($old_driver) { - my $reason = N("The proprietary kernel driver was not found for '%s' X.org driver", + my $reason = N("The proprietary kernel driver was not found for X.org driver '%s'", $old_driver); $reboot_needed |= switch_x_driver($card->{xorg_driver_regexp}, $driver, $reason); $do_udev_settle = 1; |