summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--perl-install/bootlook.pm4
-rwxr-xr-xperl-install/standalone/drakboot3
2 files changed, 3 insertions, 4 deletions
diff --git a/perl-install/bootlook.pm b/perl-install/bootlook.pm
index 133ce3c9c..6443aab53 100644
--- a/perl-install/bootlook.pm
+++ b/perl-install/bootlook.pm
@@ -95,10 +95,10 @@ my $a_g_button = new Gtk::RadioButton _("Traditional Gtk+ Monitor"),$a_c_button
my $a_button = new Gtk::CheckButton(_("Launch Aurora at boot time"));
my $a_box = new Gtk::VBox(0, 0);
my $x_box = new Gtk::VBox(0, 0);
-my $disp_mode = arch() =~ /ppc/ ? "Yaboot mode" : "Lilo/grub mode";
+my $disp_mode = arch() =~ /ppc/ ? _("Yaboot mode") : _("Lilo/grub mode");
gtkadd($window,
gtkpack__ (my $global_vbox = new Gtk::VBox(0,0),
- gtkadd (new Gtk::Frame (_("$disp_mode")),
+ gtkadd (new Gtk::Frame ("$disp_mode"),
# gtkpack__(new Gtk::VBox(0,0),
(gtkpack_(gtkset_border_width(new Gtk::HBox(0, 0),5),
1,_("You are currently using %s as Boot Manager.
diff --git a/perl-install/standalone/drakboot b/perl-install/standalone/drakboot
index 0d35c4498..4e0bdd504 100755
--- a/perl-install/standalone/drakboot
+++ b/perl-install/standalone/drakboot
@@ -55,8 +55,7 @@ sub lilo_choice
my $loader = arch() =~ /ppc/ ? "Yaboot" : "LILO";
if ($@) {
$in->ask_warn('',
- [ _("Installation of $loader failed. The following error
-occured:"),
+ [ _("Installation of %s failed. The following error occured:", $loader),
grep { !/^Warning:/ } cat_("/tmp/.error") ]);
unlink "/tmp/.error";
goto ask;