diff options
author | Thierry Vignaud <tv@mandriva.org> | 2010-03-03 12:00:58 +0000 |
---|---|---|
committer | Thierry Vignaud <tv@mandriva.org> | 2010-03-03 12:00:58 +0000 |
commit | a3709ef6a772c1409a96c463451398f09c73fa48 (patch) | |
tree | 206960ca9faec40d5d7c0ce58e5ca104159316e2 /Rpmdrake/edit_urpm_sources.pm | |
parent | d80d3abee605d1fe8a091df4fa52af900c4045f1 (diff) | |
download | rpmdrake-a3709ef6a772c1409a96c463451398f09c73fa48.tar rpmdrake-a3709ef6a772c1409a96c463451398f09c73fa48.tar.gz rpmdrake-a3709ef6a772c1409a96c463451398f09c73fa48.tar.bz2 rpmdrake-a3709ef6a772c1409a96c463451398f09c73fa48.tar.xz rpmdrake-a3709ef6a772c1409a96c463451398f09c73fa48.zip |
(remove_callback) further UTF-8 fixes (names are now already always
UTF-8 encoded)
Diffstat (limited to 'Rpmdrake/edit_urpm_sources.pm')
-rw-r--r-- | Rpmdrake/edit_urpm_sources.pm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Rpmdrake/edit_urpm_sources.pm b/Rpmdrake/edit_urpm_sources.pm index 5d3f01ab..82f52547 100644 --- a/Rpmdrake/edit_urpm_sources.pm +++ b/Rpmdrake/edit_urpm_sources.pm @@ -415,9 +415,9 @@ sub remove_callback() { interactive_msg( N("Source Removal"), @rows == 1 ? - N("Are you sure you want to remove source \"%s\"?", to_utf8($urpm->{media}[$rows[0]]{name})) : + N("Are you sure you want to remove source \"%s\"?", $urpm->{media}[$rows[0]]{name}) : N("Are you sure you want to remove the following sources?") . "\n\n" . - format_list(map { to_utf8($urpm->{media}[$_]{name}) } @rows), + format_list(map { $urpm->{media}[$_]{name} } @rows), yesno => 1, scroll => 1, transient => $::main_window, ) or return; |