diff options
author | Thierry Vignaud <tvignaud@mandriva.org> | 2003-05-15 15:28:56 +0000 |
---|---|---|
committer | Thierry Vignaud <tvignaud@mandriva.org> | 2003-05-15 15:28:56 +0000 |
commit | 099fe3554fd99b00f0a3b95b3ebad3d676939f56 (patch) | |
tree | 08caa22a5c018b43b2a5a162dd15a15659f0b48c /perl-install/standalone | |
parent | 8ab3dfff357a05a5eea4912325d022e19f6e3cbd (diff) | |
download | drakx-backup-do-not-use-099fe3554fd99b00f0a3b95b3ebad3d676939f56.tar drakx-backup-do-not-use-099fe3554fd99b00f0a3b95b3ebad3d676939f56.tar.gz drakx-backup-do-not-use-099fe3554fd99b00f0a3b95b3ebad3d676939f56.tar.bz2 drakx-backup-do-not-use-099fe3554fd99b00f0a3b95b3ebad3d676939f56.tar.xz drakx-backup-do-not-use-099fe3554fd99b00f0a3b95b3ebad3d676939f56.zip |
(create_dialog) :
- update caller list
- add title parameter and update callers
Diffstat (limited to 'perl-install/standalone')
-rwxr-xr-x | perl-install/standalone/drakfloppy | 8 | ||||
-rwxr-xr-x | perl-install/standalone/drakfont | 4 |
2 files changed, 6 insertions, 6 deletions
diff --git a/perl-install/standalone/drakfloppy b/perl-install/standalone/drakfloppy index 57b288abc..c3a7575ef 100755 --- a/perl-install/standalone/drakfloppy +++ b/perl-install/standalone/drakfloppy @@ -294,22 +294,22 @@ sub build_it() { } $co .= " " . $kernel_combo->entry->get_text(); $co .= " 2>&1 |"; - create_dialog(N("Be sure a media is present for the device %s", $device_combo->entry->get_text()), 1) or return; + create_dialog(N("Warning"), N("Be sure a media is present for the device %s", $device_combo->entry->get_text()), 1) or return; # we test if the media is present test: my $a = "dd count=1 if=/dev/null of=" . $device_combo->entry->get_text() . " 2>&1"; my $b = `$a`; if ($b =~ /dd/) { - create_dialog(N("There is no medium or it is write-protected for device %s.\nPlease insert one.", $device_combo->entry->get_text()), 1) ? goto test : return 0; + create_dialog(N("Error"), N("There is no medium or it is write-protected for device %s.\nPlease insert one.", $device_combo->entry->get_text()), 1) ? goto test : return 0; } local *STATUS; - open STATUS, $co or do { create_dialog(N("Unable to fork: %s", $!), 0); return }; + open STATUS, $co or do { create_dialog(N("Error"), N("Unable to fork: %s", $!), 0); return }; local $_; while (<STATUS>) { gtktext_append($output, [ [ $_ ] ]); } - close STATUS or create_dialog(N("Unable to properly close mkbootdisk: \n %s \n %s", $!, $?), 0); + close STATUS or create_dialog(N("Error"), N("Unable to properly close mkbootdisk: \n %s \n %s", $!, $?), 0); return (0); } diff --git a/perl-install/standalone/drakfont b/perl-install/standalone/drakfont index d1bb2ddcc..4efd6d815 100755 --- a/perl-install/standalone/drakfont +++ b/perl-install/standalone/drakfont @@ -605,7 +605,7 @@ sub text_view { } sub help() { - ugtk2::create_dialog(N(" + ugtk2::create_dialog(N("Help"), N(" Copyright (C) 2001-2002 by MandrakeSoft DUPONT Sebastien (original version) CHAUMETTE Damien <dchaumette\@mandrakesoft.com> @@ -723,7 +723,7 @@ sub file_ok_sel { my ($_widget, $file_selection) = @_; my $file_name = $file_selection->get_filename(); if ($file_name =~ /$select_font_msg/) { - create_dialog(N("You've not selected any font")); + create_dialog(N("Error"), N("You've not selected any font")); } else { print "-- @install\n"; if (!member($file_name, @install)) { |