From 8265e240c71f71e21067bea8fd4ee3b24136ffd4 Mon Sep 17 00:00:00 2001 From: Rafael Garcia-Suarez Date: Tue, 1 Feb 2005 13:39:21 +0000 Subject: Convert strings to UTF-8 before display in gurpmi and gurpmi2. (bug 13296) --- gurpmi2 | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'gurpmi2') diff --git a/gurpmi2 b/gurpmi2 index 2af0e23d..aab331d4 100755 --- a/gurpmi2 +++ b/gurpmi2 @@ -11,7 +11,6 @@ BEGIN { #- set up a safe path and environment } use gurpmi; -use urpm::msg qw(N); use Gtk2; #- GUI globals @@ -86,12 +85,12 @@ Gtk2->main; sub configure_urpm { my $urpm = new urpm; $urpm->{fatal} = sub { - Gtk2::MessageDialog->new($mainw, [qw(modal destroy-with-parent)], 'error', 'ok', $_[1])->run; + Gtk2::MessageDialog->new($mainw, [qw(modal destroy-with-parent)], 'error', 'ok', Locale::gettext::iconv($_[1], undef, 'UTF-8'))->run; quit; exit $_[0]; }; $urpm->{error} = sub { - my $w = Gtk2::MessageDialog->new($mainw, [qw(modal destroy-with-parent)], 'warning', 'ok', $_[0]); + my $w = Gtk2::MessageDialog->new($mainw, [qw(modal destroy-with-parent)], 'warning', 'ok', Locale::gettext::iconv($_[0], undef, 'UTF-8')); $w->run; $w->destroy; }; -- cgit v1.2.1