diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2002-08-27 22:03:50 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2002-08-27 22:03:50 +0000 |
commit | 872d116a17cfa876685883d0f9f9ec881e92a7e6 (patch) | |
tree | 58e2e111173fae5d89489a0d943a31e95a1a9275 /perl-install/diskdrake/hd_gtk.pm | |
parent | bfaaea5cde6cc2b2daf37d2e5d3988ad77ce7334 (diff) | |
download | drakx-backup-do-not-use-872d116a17cfa876685883d0f9f9ec881e92a7e6.tar drakx-backup-do-not-use-872d116a17cfa876685883d0f9f9ec881e92a7e6.tar.gz drakx-backup-do-not-use-872d116a17cfa876685883d0f9f9ec881e92a7e6.tar.bz2 drakx-backup-do-not-use-872d116a17cfa876685883d0f9f9ec881e92a7e6.tar.xz drakx-backup-do-not-use-872d116a17cfa876685883d0f9f9ec881e92a7e6.zip |
nicer error message when no devices are available (esp. for standalone)
Diffstat (limited to 'perl-install/diskdrake/hd_gtk.pm')
-rw-r--r-- | perl-install/diskdrake/hd_gtk.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/diskdrake/hd_gtk.pm b/perl-install/diskdrake/hd_gtk.pm index d437799c5..454da1735 100644 --- a/perl-install/diskdrake/hd_gtk.pm +++ b/perl-install/diskdrake/hd_gtk.pm @@ -249,7 +249,7 @@ sub create_automatic_notebooks { my $b = $_->{marked} or $notebook_widget->remove_page($::i); $b; } @notebook; - @notebook or die ''; + @notebook or die _("No hard drives found"); } ################################################################################ |