diff options
author | Olivier Blin <oblin@mandriva.com> | 2007-07-31 13:59:48 +0000 |
---|---|---|
committer | Olivier Blin <oblin@mandriva.com> | 2007-07-31 13:59:48 +0000 |
commit | cdb3bcbffad67726f76d7262250ae3593a0f3cd4 (patch) | |
tree | 8013cee54281c81ae3c49fac6375a80eb641b125 /transfugdrake.pm | |
parent | 32c433314d124767298d813a262985fced187a3f (diff) | |
download | transfugdrake-cdb3bcbffad67726f76d7262250ae3593a0f3cd4.tar transfugdrake-cdb3bcbffad67726f76d7262250ae3593a0f3cd4.tar.gz transfugdrake-cdb3bcbffad67726f76d7262250ae3593a0f3cd4.tar.bz2 transfugdrake-cdb3bcbffad67726f76d7262250ae3593a0f3cd4.tar.xz transfugdrake-cdb3bcbffad67726f76d7262250ae3593a0f3cd4.zip |
use N() instead of _()
Diffstat (limited to 'transfugdrake.pm')
-rw-r--r-- | transfugdrake.pm | 10 |
1 files changed, 6 insertions, 4 deletions
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"; } |