diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2003-03-03 22:21:22 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2003-03-03 22:21:22 +0000 |
commit | f55ec877328dc2dc6f75b1e0c8f0343fe0ee70b4 (patch) | |
tree | 575445fccfd2f231c5cfb072ba98f5adc0bb3322 | |
parent | aff0be125ed355e9e474453bf7154ba78b45478b (diff) | |
download | drakx-f55ec877328dc2dc6f75b1e0c8f0343fe0ee70b4.tar drakx-f55ec877328dc2dc6f75b1e0c8f0343fe0ee70b4.tar.gz drakx-f55ec877328dc2dc6f75b1e0c8f0343fe0ee70b4.tar.bz2 drakx-f55ec877328dc2dc6f75b1e0c8f0343fe0ee70b4.tar.xz drakx-f55ec877328dc2dc6f75b1e0c8f0343fe0ee70b4.zip |
add some explaination for translators
-rw-r--r-- | perl-install/install_steps_interactive.pm | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/perl-install/install_steps_interactive.pm b/perl-install/install_steps_interactive.pm index c2a9b27b8..75146eebb 100644 --- a/perl-install/install_steps_interactive.pm +++ b/perl-install/install_steps_interactive.pm @@ -1029,7 +1029,10 @@ sub summary { push @l, { group => N("Boot"), label => N("Bootloader"), - val => sub { N("%s on %s", $o->{bootloader}{method}, $o->{bootloader}{boot}) }, + val => sub { + #-PO: example: lilo-graphic on /dev/hda1 + N("%s on %s", $o->{bootloader}{method}, $o->{bootloader}{boot}) + }, clicked => sub { any::setupBootloader($o, $o->{bootloader}, $o->{all_hds}, $o->{fstab}, $o->{security}) }, }; |