diff options
author | Thierry Vignaud <tvignaud@mandriva.org> | 2003-10-13 19:22:48 +0000 |
---|---|---|
committer | Thierry Vignaud <tvignaud@mandriva.org> | 2003-10-13 19:22:48 +0000 |
commit | c7be7958fead23785e26642b62665225ecb990db (patch) | |
tree | 26e08bb7eec4788c186050556cba5caee1295d1f /perl-install/standalone/drakconnect | |
parent | 2d1ab0acc5d535468ec2aa97820b7c10e2c3b0e4 (diff) | |
download | drakx-c7be7958fead23785e26642b62665225ecb990db.tar drakx-c7be7958fead23785e26642b62665225ecb990db.tar.gz drakx-c7be7958fead23785e26642b62665225ecb990db.tar.bz2 drakx-c7be7958fead23785e26642b62665225ecb990db.tar.xz drakx-c7be7958fead23785e26642b62665225ecb990db.zip |
forward untranslated title & broken error dialog fixes
Diffstat (limited to 'perl-install/standalone/drakconnect')
-rwxr-xr-x | perl-install/standalone/drakconnect | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/perl-install/standalone/drakconnect b/perl-install/standalone/drakconnect index 1d34360dd..dc7811200 100755 --- a/perl-install/standalone/drakconnect +++ b/perl-install/standalone/drakconnect @@ -186,7 +186,7 @@ $window1->{window}->add( 0, $profile_combo, 0, $button_del, 0, gtksignal_connect(Gtk2::Button->new(N("New profile...")), clicked => sub { - my $dialog = _create_dialog("New profile...", { small => 1 }); + my $dialog = _create_dialog(N("New profile..."), { small => 1 }); my $entry_dialog = Gtk2::Entry->new; gtkpack($dialog->vbox, Gtk2::Label->new(N("Name of the profile to create (the new profile is created as a copy of the current one) :")), @@ -263,7 +263,7 @@ $window1->{window}->add( !$wizard_pid and do { exec("drakconnect") or POSIX::_exit(1) }; sensitive_buttons(0); } else { - err_dialog(N("Unable to fork: %s", "$!")); + err_dialog(N("Error"), N("Unable to fork: %s", "$!")); } }), ), |