diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2001-08-21 15:39:13 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2001-08-21 15:39:13 +0000 |
commit | ee652ea093328514c38a9456f5f578e3f9c01828 (patch) | |
tree | 15f01e1c89a822835e66e4b7c918131c1cbb2fce /perl-install | |
parent | dc9c46496970ddfea3105adbcdb2e9918b5b77d4 (diff) | |
download | drakx-backup-do-not-use-ee652ea093328514c38a9456f5f578e3f9c01828.tar drakx-backup-do-not-use-ee652ea093328514c38a9456f5f578e3f9c01828.tar.gz drakx-backup-do-not-use-ee652ea093328514c38a9456f5f578e3f9c01828.tar.bz2 drakx-backup-do-not-use-ee652ea093328514c38a9456f5f578e3f9c01828.tar.xz drakx-backup-do-not-use-ee652ea093328514c38a9456f5f578e3f9c01828.zip |
fix '$' in i18n message
Diffstat (limited to 'perl-install')
-rw-r--r-- | perl-install/install_steps_interactive.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/install_steps_interactive.pm b/perl-install/install_steps_interactive.pm index 39e32856b..d25f85ab9 100644 --- a/perl-install/install_steps_interactive.pm +++ b/perl-install/install_steps_interactive.pm @@ -1083,7 +1083,7 @@ try to force installation even if that destroys the first partition?")); my $of_boot = cat_("$o->{prefix}/tmp/of_boot_dev") || die "Can't open $o->{prefix}/tmp/of_boot_dev"; chop($of_boot); unlink "$o->{prefix}/tmp/.error"; - $o->ask_warn('', _("You may need to change your Open Firmware boot-device to\n enable the bootloader. If you don't see the bootloader prompt at\n reboot, hold down Command-Option-O-F at reboot and enter:\n setenv boot-device $of_boot,\\\\:tbxi\n Then type: shut-down\nAt your next boot you should see the bootloader prompt.")); + $o->ask_warn('', _("You may need to change your Open Firmware boot-device to\n enable the bootloader. If you don't see the bootloader prompt at\n reboot, hold down Command-Option-O-F at reboot and enter:\n setenv boot-device %s,\\\\:tbxi\n Then type: shut-down\nAt your next boot you should see the bootloader prompt.", $of_boot)); } } } |