aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--transfugdrake.pm10
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"; }