summaryrefslogtreecommitdiffstats
path: root/perl-install/lang.pm
diff options
context:
space:
mode:
authorPascal Rigaux <pixel@mandriva.com>2005-12-15 09:14:01 +0000
committerPascal Rigaux <pixel@mandriva.com>2005-12-15 09:14:01 +0000
commita4e6acb7d49063a117261eaf85f31fcfd281bfe7 (patch)
tree36b2cbf3eaf039df24ca47d72cf921a4a539d4ca /perl-install/lang.pm
parente26e8e595f1e0ba4b043e1225bfd34fb9387ee04 (diff)
downloaddrakx-backup-do-not-use-a4e6acb7d49063a117261eaf85f31fcfd281bfe7.tar
drakx-backup-do-not-use-a4e6acb7d49063a117261eaf85f31fcfd281bfe7.tar.gz
drakx-backup-do-not-use-a4e6acb7d49063a117261eaf85f31fcfd281bfe7.tar.bz2
drakx-backup-do-not-use-a4e6acb7d49063a117261eaf85f31fcfd281bfe7.tar.xz
drakx-backup-do-not-use-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/lang.pm')
-rw-r--r--perl-install/lang.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/lang.pm b/perl-install/lang.pm
index e4e6df54d..9426825c9 100644
--- a/perl-install/lang.pm
+++ b/perl-install/lang.pm
@@ -1138,7 +1138,7 @@ sub write {
if (!$b_user_only) {
my $kde_charset = charset2kde_charset(l2charset($locale->{lang}));
- my $welcome = c::to_utf8(N("Welcome to %s", '%n'));
+ my $welcome = common::to_utf8(N("Welcome to %s", '%n'));
log::explanations(qq(Configuring KDM/MdkKDM));
substInFile {
s/^(GreetString)=.*/$1=$welcome/;