diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2005-12-15 09:14:01 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2005-12-15 09:14:01 +0000 |
commit | a4e6acb7d49063a117261eaf85f31fcfd281bfe7 (patch) | |
tree | 36b2cbf3eaf039df24ca47d72cf921a4a539d4ca /perl-install/wizards.pm | |
parent | e26e8e595f1e0ba4b043e1225bfd34fb9387ee04 (diff) | |
download | drakx-a4e6acb7d49063a117261eaf85f31fcfd281bfe7.tar drakx-a4e6acb7d49063a117261eaf85f31fcfd281bfe7.tar.gz drakx-a4e6acb7d49063a117261eaf85f31fcfd281bfe7.tar.bz2 drakx-a4e6acb7d49063a117261eaf85f31fcfd281bfe7.tar.xz drakx-a4e6acb7d49063a117261eaf85f31fcfd281bfe7.zip |
- i had foolishly removed c::iconv whereas it was used still used by c::from_utf8 and c::to_utf8
- anyway, moving c::from_utf8 and c::to_utf8 to common::from_utf8 and common::to_utf8
- making them use Locale::gettext::iconv
- Locale::gettext::iconv transform undef into standard charset (1.05-2mdk)
- drop c::standard_charset (now unused)
Diffstat (limited to 'perl-install/wizards.pm')
-rw-r--r-- | perl-install/wizards.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/wizards.pm b/perl-install/wizards.pm index cb40c881e..2a8e282c7 100644 --- a/perl-install/wizards.pm +++ b/perl-install/wizards.pm @@ -92,7 +92,7 @@ sub check_rpm { my ($in, $rpms) = @_; foreach my $rpm (@$rpms) { next if $in->do_pkgs->is_installed($rpm); - if ($in->ask_okcancel(N("Error"), N("%s is not installed\nClick \"Next\" to install or \"Cancel\" to quit", c::from_utf8($rpm)))) { + if ($in->ask_okcancel(N("Error"), N("%s is not installed\nClick \"Next\" to install or \"Cancel\" to quit", common::from_utf8($rpm)))) { $::testing and next; if (!$in->do_pkgs->install($rpm)) { local $::Wizard_finished = 1; |