From cdb3bcbffad67726f76d7262250ae3593a0f3cd4 Mon Sep 17 00:00:00 2001 From: Olivier Blin Date: Tue, 31 Jul 2007 13:59:48 +0000 Subject: use N() instead of _() --- transfugdrake.pm | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) (limited to 'transfugdrake.pm') diff --git a/transfugdrake.pm b/transfugdrake.pm index c1f079d..162bc8a 100644 --- a/transfugdrake.pm +++ b/transfugdrake.pm @@ -1,5 +1,7 @@ package transfugdrake; +use common; + # From pixel and gc sub arch() { my $t = `uname -m`; @@ -95,14 +97,14 @@ sub get_windows_partition { } } - if($fat_parts[0] eq "") { $in->ask_warn(_("No Windows Partition"), _("No Windows Partition found")); quit_global($in, 0); } + if($fat_parts[0] eq "") { $in->ask_warn(N("No Windows Partition"), N("No Windows Partition found")); quit_global($in, 0); } $::Wizard_no_previous = 1; - my $win_part = $in->ask_from_list_(_("Select your windows partition"), - _("Please specify your windows partition from the following list"), + my $win_part = $in->ask_from_listN(N("Select your windows partition"), + N("Please specify your windows partition from the following list"), [ @fat_parts ], $fat_parts[0]) or quit_global($in, 0); - if($fat_parts[1] eq "") { $in->ask_warn(_("Your Windows Partition"), _("$fat_parts[0] is found as your Windows partition")); } + if($fat_parts[1] eq "") { $in->ask_warn(N("Your Windows Partition"), N("$fat_parts[0] is found as your Windows partition")); } if($win_part =~ /NTFS/) { $fstype = "ntfs"; } elsif($win_part =~ /FAT32/) {$fstype = "msdos"; } -- cgit v1.2.1