summaryrefslogtreecommitdiffstats
path: root/tools/closurepkgs
blob: 2ef479486a21700acf4e4e6902ee57f5242efd67 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
#!/usr/bin/perl

use rpmtools;

sub chop_version($) {
    ($_[0] =~ /(.*)-[^-]+-[^-]+/)[0] || $_[0];
}

sub read_compsslist {
    my ($file) = @_;
    my %compsslist;

    local *F;
    open F, $file or die "closurepkgs: unable to open compsslist file $file\n";
    foreach (<F>) {
	my ($name, $level) = /^\s*(\S+)\s+(\d+)/;
	$compsslist{$name} = $level;
    }
    close F;

    \%compsslist;
}

sub main {
    my ($dir, $lang) = @_;

    #- compute depslist on line directly.
    my $params = new rpmtools;
    foreach (glob("$dir/*.cz*")) { $params->read_hdlists($_) }
    $params->keep_only_cleaned_provides_files();
    foreach (glob("$dir/*.cz*")) { $params->read_hdlists($_) }
    $params->compute_depslist();

    my $compsslist = read_compsslist("$dir/compssList");

    #- DO NOT FORGET TO UPDATE HERE ACCORDING TO gi/perl-install/install_any.pm
    my @pkgs = qw(XFree86 XFree86-glide-module Device3Dfx Glide_V3-DRI Glide_V5 Mesa
		  dhcpcd pump dhcpxd dhcp-client isdn4net isdn4k-utils dev pptp-adsl-fr rp-pppoe ppp ypbind
		  rhs-printfilters lpr cups cups-drivers samba ncpfs ghostscript-utils
		  kernel-pcmcia-cs apmd cdrecord
		  );
    push @pkgs, "XFree86-$_" foreach qw(3DLabs 3dfx 8514 AGX FBDev I128 Mach8 Mach32 Mach64 Mono P9000 Rage128 S3 S3V SVGA VGA16 W32);

    #- closure the list of package to be kept for oem.
    my %closure;
    foreach (@pkgs) {
	$closure{$_} = 1;
	map { $closure{chop_version($_->{name})} = 1 } map { $params->{depslist}[$_] } map { split /\|/ } split ' ', $params->{info}{$_}{deps};
    }
    #- only if dependancy is ok.
    $closure{$_} = 1 foreach qw(xpp kups kisdn);

    #- closure the list of package to always install for oem. (level >= 50)...
    my %install;
    my @force_install;
    if ($params->{info}{"locales-$lang"}) {
	foreach (keys %{$params->{info}}) {
	    push @force_install, $_ if grep { $_ == $params->{info}{"locales-$lang"}{id} } split ' ', $params->{info}{$_}{deps};
	}
    } else {
	foreach (keys %{$params->{info}}) {
	    push @force_install, $_ if grep { $params->{depslist}[$_]{name} =~ /locales-/ } split ' ', $params->{info}{$_}{deps};
	}
    }
    push @force_install, qw(cups cups-drivers drakprofile draksync irda-utils numlock raidtools reiserfs-utils
			    Mesa Mesa-demos alsa alsa-utils);
    foreach (qw(
		Aurora xawtv kwintv xscreensaver-gl Mesa-demos xmms-mesa bzflag csmash gltron spacecup chromium tuxracer
		), @force_install, grep { $compsslist->{$_} >= 50 } keys %{$params->{info}}) {
	$install{$_} = 1;
	map { $install{chop_version($_->{name})} = 1 } map { $params->{depslist}[$_] } map { split /\|/ } split ' ', $params->{info}{$_}{deps};
    }

    #- remove base packages, which have to be installed, according to basesystem.
    delete $closure{'basesystem'};
    $install{'basesystem'} = 1;
    map { delete $closure{chop_version($_->{name})};
	  $install{chop_version($_->{name})} = 1 } map { $params->{depslist}[$_] } map { split /\|/ } split ' ', $params->{info}{'basesystem'}{deps};

    #- special packages that are to be move to closure always ...
    foreach (qw(kernel-smp kernel-linus kernel-secure hackkernel-smp hackkernel-linus hackkernel-secure
		Aurora xawtv kwintv xscreensaver-gl xmms-mesa bzflag csmash gltron spacecup chromium tuxracer
		)) {
	$params->{info}{$_} or next;
	$closure{$_} = 1;
	delete $install{$_};
    }

    #- dump out the list of package according to the 2 lists defined above.
    my $total_install = 0;
    my $total_closure = 0;
    foreach (@{$params->{depslist}}) {
	my $tiny_name = chop_version($_->{name});
	if (exists $install{$tiny_name}) {
	    my $p = $params->{info}{$tiny_name};
	    $total_install += $p->{size};
	    print "I:$p->{name}-$p->{version}-$p->{release}\n";
	} elsif (exists $closure{$tiny_name}) {
	    my $p = $params->{info}{$tiny_name};
	    $total_closure += $p->{size};
	    print "C:$p->{name}-$p->{version}-$p->{release}\n";
	}
    }
    print "\n\ntotal_install=$total_install\n";
    print "total_closure=$total_closure\n";
}

main(@ARGV);
r> -rw-r--r--live/draklive-install/po/ca.po300
-rw-r--r--live/draklive-install/po/cs.po300
-rw-r--r--live/draklive-install/po/cy.po300
-rw-r--r--live/draklive-install/po/da.po300
-rw-r--r--live/draklive-install/po/de.po300
-rw-r--r--live/draklive-install/po/draklive-install.pot318
-rw-r--r--live/draklive-install/po/el.po300
-rw-r--r--live/draklive-install/po/eo.po300
-rw-r--r--live/draklive-install/po/es.po300
-rw-r--r--live/draklive-install/po/et.po300
-rw-r--r--live/draklive-install/po/eu.po300
-rw-r--r--live/draklive-install/po/fa.po300
-rw-r--r--live/draklive-install/po/fi.po300
-rw-r--r--live/draklive-install/po/fr.po300
-rw-r--r--live/draklive-install/po/fur.po300
-rw-r--r--live/draklive-install/po/ga.po300
-rw-r--r--live/draklive-install/po/gl.po300
-rw-r--r--live/draklive-install/po/he.po300
-rw-r--r--live/draklive-install/po/hi.po300
-rw-r--r--live/draklive-install/po/hr.po300
-rw-r--r--live/draklive-install/po/hu.po300
-rw-r--r--live/draklive-install/po/id.po300
-rw-r--r--live/draklive-install/po/is.po300
-rw-r--r--live/draklive-install/po/it.po300
-rw-r--r--live/draklive-install/po/ja.po300
-rw-r--r--live/draklive-install/po/ko.po300
-rw-r--r--live/draklive-install/po/ky.po300
-rw-r--r--live/draklive-install/po/lt.po300
-rw-r--r--live/draklive-install/po/ltg.po300
-rw-r--r--live/draklive-install/po/lv.po300
-rw-r--r--live/draklive-install/po/mk.po300
-rw-r--r--live/draklive-install/po/mn.po300
-rw-r--r--live/draklive-install/po/ms.po300
-rw-r--r--live/draklive-install/po/mt.po300
-rw-r--r--live/draklive-install/po/nb.po300
-rw-r--r--live/draklive-install/po/nl.po300
-rw-r--r--live/draklive-install/po/nn.po300
-rw-r--r--live/draklive-install/po/pa_IN.po300
-rw-r--r--live/draklive-install/po/pl.po300
-rw-r--r--live/draklive-install/po/pt.po300
-rw-r--r--live/draklive-install/po/pt_BR.po300
-rw-r--r--live/draklive-install/po/ro.po300
-rw-r--r--live/draklive-install/po/ru.po300
-rw-r--r--live/draklive-install/po/sc.po300
-rw-r--r--live/draklive-install/po/sk.po300
-rw-r--r--live/draklive-install/po/sl.po300
-rw-r--r--live/draklive-install/po/sq.po300
-rw-r--r--live/draklive-install/po/sr.po300
-rw-r--r--live/draklive-install/po/sr@Latn.po300
-rw-r--r--live/draklive-install/po/sv.po300
-rw-r--r--live/draklive-install/po/ta.po300
-rw-r--r--live/draklive-install/po/tg.po300
-rw-r--r--live/draklive-install/po/th.po300
-rw-r--r--live/draklive-install/po/tl.po300
-rw-r--r--live/draklive-install/po/tr.po300
-rw-r--r--live/draklive-install/po/uk.po300
-rw-r--r--live/draklive-install/po/uz.po300
-rw-r--r--live/draklive-install/po/uz@Latn.po300
-rw-r--r--live/draklive-install/po/vi.po300
-rw-r--r--live/draklive-install/po/wa.po300
-rw-r--r--live/draklive-install/po/zh_CN.po300
-rw-r--r--live/draklive-install/po/zh_TW.po300
72 files changed, 21351 insertions, 0 deletions
diff --git a/live/draklive-install/po/Makefile b/live/draklive-install/po/Makefile
new file mode 100644
index 000000000..31afe5c45
--- /dev/null
+++ b/live/draklive-install/po/Makefile
@@ -0,0 +1,33 @@
+NAME = draklive-install
+localedir = ${prefix}/share/locale
+PL_FILES = ../$(NAME) $(shell find .. -type f -name "*pm")
+
+POFILES = $(shell for i in ../../../perl-install/share/po/*.po; do basename $$i; done)
+MOFILES = $(POFILES:%.po=%.mo)
+LANGS = $(POFILES:%.po=%)
+
+all: $(NAME).pot $(POFILES) $(MOFILES)
+
+%.mo: %.po
+ msgfmt -o $@ $<
+
+merge: $(NAME).pot
+ @for n in $(POFILES); do \
+ echo "Merging $$n"; \
+ msgmerge "$$n" $< > "$$n"t; \
+ mv -f "$$n"t "$$n"; \
+ done
+
+$(NAME).pot:
+ xgettext -F -n --from-code --add-comments='I18N' \
+ --keyword=_ --keyword=__ --keyword=N_ --keyword=N \
+ -o $@ $(PL_FILES)
+
+install: all
+ for l in $(LANGS); do \
+ install -d $(localedir)/$$l/LC_MESSAGES; \
+ install -m 644 $$l.mo $(localedir)/$$l/LC_MESSAGES/$(NAME).mo; \
+ done
+
+clean:
+ @rm -rf *.mo $(POFILES:%=%t) $(NAME).pot
diff --git a/live/draklive-install/po/af.po b/live/draklive-install/po/af.po
new file mode 100644
index 000000000..f16c11e32
--- /dev/null
+++ b/live/draklive-install/po/af.po
@@ -0,0 +1,300 @@
+#: ../draklive-install:59
+msgid "Mandriva Live"
+msgstr ""
+
+#: ../draklive-install:65
+msgid "This wizard will help you to install the live distribution."
+msgstr ""
+
+#: ../draklive-install:83
+msgid "Computing total size"
+msgstr ""
+
+#: ../draklive-install:95
+msgid "Copying in progress"
+msgstr ""
+
+#: ../draklive-install:163
+msgid "Congratulations"
+msgstr ""
+
+#: ../draklive-install:163
+msgid ""
+"Please halt your computer, remove your live system, and restart your "
+"computer."
+msgstr ""
+
+#: ../draklive-install:179 ../draklive-install:407
+msgid "You need to reboot for the partition table modifications to take place"
+msgstr ""
+
+#: ../draklive-install:230
+msgid "Choose the partitions you want to format"
+msgstr ""
+
+#: ../draklive-install:232
+msgid "Check bad blocks?"
+msgstr ""
+
+#: ../draklive-install:261
+#, c-format
+msgid "Failed to check filesystem %s. Do you want to repair the errors?"
+msgstr ""
+
+#: ../draklive-install:262
+msgid ", $1), 1);"
+msgstr ""
+
+#: ../draklive-install:265
+msgid "Not enough swap space to fulfill installation, please add some"
+msgstr ""
+
+#: ../draklive-install:284
+msgid "$d/$l{$_}"
+msgstr ""
+
+#: ../draklive-install:285
+msgid "$d/.bashrc"
+msgstr ""
+
+#: ../draklive-install:317
+msgid "No partition available"
+msgstr ""
+
+#: ../draklive-install:320
+msgid "Scanning partitions to find mount points"
+msgstr ""
+
+#: ../draklive-install:327
+msgid "Choose the mount points"
+msgstr ""
+
+#: ../draklive-install:328
+msgid "Partitioning"
+msgstr ""
+
+#: ../draklive-install:361
+msgid "none"
+msgstr ""
+
+#: ../draklive-install:363
+#, c-format
+msgid "Duplicate mount point %s"
+msgstr ""
+
+#: ../draklive-install:389
+msgid "Continue anyway?"
+msgstr ""
+
+#: ../draklive-install:394
+msgid "Quit without saving"
+msgstr ""
+
+#: ../draklive-install:394
+msgid "Quit without writing the partition table?"
+msgstr ""
+
+#: ../draklive-install:400
+msgid "Do you want to save /etc/fstab modifications"
+msgstr ""
+
+#: ../draklive-install:412
+#, c-format
+msgid "You should format partition %s."
+msgstr ""
+
+#: ../draklive-install:414
+msgid ""
+", $part->{device}, $part->{mntpoint})) or return if $::isStandalone && 0; #- "
+"no, please"
+msgstr ""
+
+#: ../install_interactive.pm:22
+#, perl-format
+msgid ""
+"Some hardware on your computer needs ``proprietary'' drivers to work.\n"
+"You can find some information about them at: %s"
+msgstr ""
+
+#: ../install_interactive.pm:62
+msgid ""
+"You must have a root partition.\n"
+"For this, create a partition (or click on an existing one).\n"
+"Then choose action ``Mount point'' and set it to `/'"
+msgstr ""
+
+#: ../install_interactive.pm:67
+msgid ""
+"You do not have a swap partition.\n"
+"\n"
+"Continue anyway?"
+msgstr ""
+
+#: ../install_interactive.pm:70
+msgid "You must have a FAT partition mounted in /boot/efi"
+msgstr ""
+
+#: ../install_interactive.pm:95
+msgid "Use free space"
+msgstr ""
+
+#: ../install_interactive.pm:97
+msgid "Not enough free space to allocate new partitions"
+msgstr ""
+
+#: ../install_interactive.pm:105
+msgid "Use existing partitions"
+msgstr ""
+
+#: ../install_interactive.pm:107
+msgid "There is no existing partition to use"
+msgstr ""
+
+#: ../install_interactive.pm:114
+msgid "Use the Windows partition for loopback"
+msgstr ""
+
+#: ../install_interactive.pm:117
+msgid "Which partition do you want to use for Linux4Win?"
+msgstr ""
+
+#: ../install_interactive.pm:119
+msgid "Choose the sizes"
+msgstr ""
+
+#: ../install_interactive.pm:120
+msgid "Root partition size in MB: "
+msgstr ""
+
+#: ../install_interactive.pm:121
+msgid "Swap partition size in MB: "
+msgstr ""
+
+#: ../install_interactive.pm:130
+msgid "There is no FAT partition to use as loopback (or not enough space left)"
+msgstr ""
+
+#: ../install_interactive.pm:137
+msgid "Use the free space on the Windows partition"
+msgstr ""
+
+#: ../install_interactive.pm:139
+msgid "Which partition do you want to resize?"
+msgstr ""
+
+#: ../install_interactive.pm:153
+#, perl-format
+msgid ""
+"The FAT resizer is unable to handle your partition, \n"
+"the following error occurred: %s"
+msgstr ""
+
+#: ../install_interactive.pm:156
+msgid "Computing the size of the Windows partition"
+msgstr ""
+
+#: ../install_interactive.pm:156 ../install_interactive.pm:188
+msgid "Resizing"
+msgstr ""
+
+#: ../install_interactive.pm:163
+msgid ""
+"Your Windows partition is too fragmented. Please reboot your computer under "
+"Windows, run the ``defrag'' utility, then restart the Mandriva Linux "
+"installation."
+msgstr ""
+
+#: ../install_interactive.pm:166
+msgid ""
+"WARNING!\n"
+"\n"
+"DrakX will now resize your Windows partition. Be careful: this\n"
+"operation is dangerous. If you have not already done so, you\n"
+"first need to exit the installation, run \"chkdsk c:\" from a\n"
+"Command Prompt under Windows (beware, running graphical program\n"
+"\"scandisk\" is not enough, be sure to use \"chkdsk\" in a\n"
+"Command Prompt!), optionally run defrag, then restart the\n"
+"installation. You should also backup your data.\n"
+"When sure, press Ok."
+msgstr ""
+
+#: ../install_interactive.pm:178
+msgid "Which size do you want to keep for Windows on"
+msgstr ""
+
+#: ../install_interactive.pm:179
+#, perl-format
+msgid "partition %s"
+msgstr ""
+
+#: ../install_interactive.pm:188
+msgid "Resizing Windows partition"
+msgstr ""
+
+#: ../install_interactive.pm:193
+#, perl-format
+msgid "FAT resizing failed: %s"
+msgstr ""
+
+#: ../install_interactive.pm:196
+msgid ""
+"To ensure data integrity after resizing the partition(s), \n"
+"filesystem checks will be run on your next boot into Windows(TM)"
+msgstr ""
+
+#: ../install_interactive.pm:208
+msgid "There is no FAT partition to resize (or not enough space left)"
+msgstr ""
+
+#: ../install_interactive.pm:213
+msgid "Erase and use entire disk"
+msgstr ""
+
+#: ../install_interactive.pm:213
+msgid "Remove Windows(TM)"
+msgstr ""
+
+#: ../install_interactive.pm:215
+msgid "You have more than one hard drive, which one do you install linux on?"
+msgstr ""
+
+#: ../install_interactive.pm:219
+#, perl-format
+msgid "ALL existing partitions and their data will be lost on drive %s"
+msgstr ""
+
+#: ../install_interactive.pm:228
+msgid "Custom disk partitioning"
+msgstr ""
+
+#: ../install_interactive.pm:232
+msgid "Use fdisk"
+msgstr ""
+
+#: ../install_interactive.pm:235
+#, perl-format
+msgid ""
+"You can now partition %s.\n"
+"When you are done, do not forget to save using `w'"
+msgstr ""
+
+#: ../install_interactive.pm:271
+msgid "I can not find any room for installing"
+msgstr ""
+
+#: ../install_interactive.pm:275
+msgid "The DrakX Partitioning wizard found the following solutions:"
+msgstr ""
+
+#: ../install_interactive.pm:281
+#, perl-format
+msgid "Partitioning failed: %s"
+msgstr ""
+
+#: ../install_interactive.pm:288
+msgid "Bringing up the network"
+msgstr ""
+
+#: ../install_interactive.pm:293
+msgid "Bringing down the network"
+msgstr ""
diff --git a/live/draklive-install/po/am.po b/live/draklive-install/po/am.po
new file mode 100644
index 000000000..f16c11e32
--- /dev/null
+++ b/live/draklive-install/po/am.po
@@ -0,0 +1,300 @@
+#: ../draklive-install:59
+msgid "Mandriva Live"
+msgstr ""
+
+#: ../draklive-install:65
+msgid "This wizard will help you to install the live distribution."
+msgstr ""
+
+#: ../draklive-install:83
+msgid "Computing total size"
+msgstr ""
+
+#: ../draklive-install:95
+msgid "Copying in progress"
+msgstr ""
+
+#: ../draklive-install:163
+msgid "Congratulations"
+msgstr ""
+
+#: ../draklive-install:163
+msgid ""
+"Please halt your computer, remove your live system, and restart your "
+"computer."
+msgstr ""
+
+#: ../draklive-install:179 ../draklive-install:407
+msgid "You need to reboot for the partition table modifications to take place"
+msgstr ""
+
+#: ../draklive-install:230
+msgid "Choose the partitions you want to format"
+msgstr ""
+
+#: ../draklive-install:232
+msgid "Check bad blocks?"
+msgstr ""
+
+#: ../draklive-install:261
+#, c-format
+msgid "Failed to check filesystem %s. Do you want to repair the errors?"
+msgstr ""
+
+#: ../draklive-install:262
+msgid ", $1), 1);"
+msgstr ""
+
+#: ../draklive-install:265
+msgid "Not enough swap space to fulfill installation, please add some"
+msgstr ""
+
+#: ../draklive-install:284
+msgid "$d/$l{$_}"
+msgstr ""
+
+#: ../draklive-install:285
+msgid "$d/.bashrc"
+msgstr ""
+
+#: ../draklive-install:317
+msgid "No partition available"
+msgstr ""
+
+#: ../draklive-install:320
+msgid "Scanning partitions to find mount points"
+msgstr ""
+
+#: ../draklive-install:327
+msgid "Choose the mount points"
+msgstr ""
+
+#: ../draklive-install:328
+msgid "Partitioning"
+msgstr ""
+
+#: ../draklive-install:361
+msgid "none"
+msgstr ""
+
+#: ../draklive-install:363
+#, c-format
+msgid "Duplicate mount point %s"
+msgstr ""
+
+#: ../draklive-install:389
+msgid "Continue anyway?"
+msgstr ""
+
+#: ../draklive-install:394
+msgid "Quit without saving"
+msgstr ""
+
+#: ../draklive-install:394
+msgid "Quit without writing the partition table?"
+msgstr ""
+
+#: ../draklive-install:400
+msgid "Do you want to save /etc/fstab modifications"
+msgstr ""
+
+#: ../draklive-install:412
+#, c-format
+msgid "You should format partition %s."
+msgstr ""
+
+#: ../draklive-install:414
+msgid ""
+", $part->{device}, $part->{mntpoint})) or return if $::isStandalone && 0; #- "
+"no, please"
+msgstr ""
+
+#: ../install_interactive.pm:22
+#, perl-format
+msgid ""
+"Some hardware on your computer needs ``proprietary'' drivers to work.\n"
+"You can find some information about them at: %s"
+msgstr ""
+
+#: ../install_interactive.pm:62
+msgid ""
+"You must have a root partition.\n"
+"For this, create a partition (or click on an existing one).\n"
+"Then choose action ``Mount point'' and set it to `/'"
+msgstr ""
+
+#: ../install_interactive.pm:67
+msgid ""
+"You do not have a swap partition.\n"
+"\n"
+"Continue anyway?"
+msgstr ""
+
+#: ../install_interactive.pm:70
+msgid "You must have a FAT partition mounted in /boot/efi"
+msgstr ""
+
+#: ../install_interactive.pm:95
+msgid "Use free space"
+msgstr ""
+
+#: ../install_interactive.pm:97
+msgid "Not enough free space to allocate new partitions"
+msgstr ""
+
+#: ../install_interactive.pm:105
+msgid "Use existing partitions"
+msgstr ""
+
+#: ../install_interactive.pm:107
+msgid "There is no existing partition to use"
+msgstr ""
+
+#: ../install_interactive.pm:114
+msgid "Use the Windows partition for loopback"
+msgstr ""
+
+#: ../install_interactive.pm:117
+msgid "Which partition do you want to use for Linux4Win?"
+msgstr ""
+
+#: ../install_interactive.pm:119
+msgid "Choose the sizes"
+msgstr ""
+
+#: ../install_interactive.pm:120
+msgid "Root partition size in MB: "
+msgstr ""
+
+#: ../install_interactive.pm:121
+msgid "Swap partition size in MB: "
+msgstr ""
+
+#: ../install_interactive.pm:130
+msgid "There is no FAT partition to use as loopback (or not enough space left)"
+msgstr ""
+
+#: ../install_interactive.pm:137
+msgid "Use the free space on the Windows partition"
+msgstr ""
+
+#: ../install_interactive.pm:139
+msgid "Which partition do you want to resize?"
+msgstr ""
+
+#: ../install_interactive.pm:153
+#, perl-format
+msgid ""
+"The FAT resizer is unable to handle your partition, \n"
+"the following error occurred: %s"
+msgstr ""
+
+#: ../install_interactive.pm:156
+msgid "Computing the size of the Windows partition"
+msgstr ""
+
+#: ../install_interactive.pm:156 ../install_interactive.pm:188
+msgid "Resizing"
+msgstr ""
+
+#: ../install_interactive.pm:163
+msgid ""
+"Your Windows partition is too fragmented. Please reboot your computer under "
+"Windows, run the ``defrag'' utility, then restart the Mandriva Linux "
+"installation."
+msgstr ""
+
+#: ../install_interactive.pm:166
+msgid ""
+"WARNING!\n"
+"\n"
+"DrakX will now resize your Windows partition. Be careful: this\n"
+"operation is dangerous. If you have not already done so, you\n"
+"first need to exit the installation, run \"chkdsk c:\" from a\n"
+"Command Prompt under Windows (beware, running graphical program\n"
+"\"scandisk\" is not enough, be sure to use \"chkdsk\" in a\n"
+"Command Prompt!), optionally run defrag, then restart the\n"
+"installation. You should also backup your data.\n"
+"When sure, press Ok."
+msgstr ""
+
+#: ../install_interactive.pm:178
+msgid "Which size do you want to keep for Windows on"
+msgstr ""
+
+#: ../install_interactive.pm:179
+#, perl-format
+msgid "partition %s"
+msgstr ""
+
+#: ../install_interactive.pm:188
+msgid "Resizing Windows partition"
+msgstr ""
+
+#: ../install_interactive.pm:193
+#, perl-format
+msgid "FAT resizing failed: %s"
+msgstr ""
+
+#: ../install_interactive.pm:196
+msgid ""
+"To ensure data integrity after resizing the partition(s), \n"
+"filesystem checks will be run on your next boot into Windows(TM)"
+msgstr ""
+
+#: ../install_interactive.pm:208
+msgid "There is no FAT partition to resize (or not enough space left)"
+msgstr ""
+
+#: ../install_interactive.pm:213
+msgid "Erase and use entire disk"
+msgstr ""
+
+#: ../install_interactive.pm:213
+msgid "Remove Windows(TM)"
+msgstr ""
+
+#: ../install_interactive.pm:215
+msgid "You have more than one hard drive, which one do you install linux on?"
+msgstr ""
+
+#: ../install_interactive.pm:219
+#, perl-format
+msgid "ALL existing partitions and their data will be lost on drive %s"
+msgstr ""
+
+#: ../install_interactive.pm:228
+msgid "Custom disk partitioning"
+msgstr ""
+
+#: ../install_interactive.pm:232
+msgid "Use fdisk"
+msgstr ""
+
+#: ../install_interactive.pm:235
+#, perl-format
+msgid ""
+"You can now partition %s.\n"
+"When you are done, do not forget to save using `w'"
+msgstr ""
+
+#: ../install_interactive.pm:271
+msgid "I can not find any room for installing"
+msgstr ""
+
+#: ../install_interactive.pm:275
+msgid "The DrakX Partitioning wizard found the following solutions:"
+msgstr ""
+
+#: ../install_interactive.pm:281
+#, perl-format
+msgid "Partitioning failed: %s"
+msgstr ""
+
+#: ../install_interactive.pm:288
+msgid "Bringing up the network"
+msgstr ""
+
+#: ../install_interactive.pm:293
+msgid "Bringing down the network"
+msgstr ""
diff --git a/live/draklive-install/po/ar.po b/live/draklive-install/po/ar.po
new file mode 100644
index 000000000..f16c11e32
--- /dev/null
+++ b/live/draklive-install/po/ar.po
@@ -0,0 +1,300 @@
+#: ../draklive-install:59
+msgid "Mandriva Live"
+msgstr ""
+
+#: ../draklive-install:65
+msgid "This wizard will help you to install the live distribution."
+msgstr ""
+
+#: ../draklive-install:83
+msgid "Computing total size"
+msgstr ""
+
+#: ../draklive-install:95
+msgid "Copying in progress"
+msgstr ""
+
+#: ../draklive-install:163
+msgid "Congratulations"
+msgstr ""
+
+#: ../draklive-install:163
+msgid ""
+"Please halt your computer, remove your live system, and restart your "
+"computer."
+msgstr ""
+
+#: ../draklive-install:179 ../draklive-install:407
+msgid "You need to reboot for the partition table modifications to take place"
+msgstr ""
+
+#: ../draklive-install:230
+msgid "Choose the partitions you want to format"
+msgstr ""
+
+#: ../draklive-install:232
+msgid "Check bad blocks?"
+msgstr ""
+
+#: ../draklive-install:261
+#, c-format
+msgid "Failed to check filesystem %s. Do you want to repair the errors?"
+msgstr ""
+
+#: ../draklive-install:262
+msgid ", $1), 1);"
+msgstr ""
+
+#: ../draklive-install:265
+msgid "Not enough swap space to fulfill installation, please add some"
+msgstr ""
+
+#: ../draklive-install:284
+msgid "$d/$l{$_}"
+msgstr ""
+
+#: ../draklive-install:285
+msgid "$d/.bashrc"
+msgstr ""
+
+#: ../draklive-install:317
+msgid "No partition available"
+msgstr ""
+
+#: ../draklive-install:320
+msgid "Scanning partitions to find mount points"
+msgstr ""
+
+#: ../draklive-install:327
+msgid "Choose the mount points"
+msgstr ""
+
+#: ../draklive-install:328
+msgid "Partitioning"
+msgstr ""
+
+#: ../draklive-install:361
+msgid "none"
+msgstr ""
+
+#: ../draklive-install:363
+#, c-format
+msgid "Duplicate mount point %s"
+msgstr ""
+
+#: ../draklive-install:389
+msgid "Continue anyway?"
+msgstr ""
+
+#: ../draklive-install:394
+msgid "Quit without saving"
+msgstr ""
+
+#: ../draklive-install:394
+msgid "Quit without writing the partition table?"
+msgstr ""
+
+#: ../draklive-install:400
+msgid "Do you want to save /etc/fstab modifications"
+msgstr ""
+
+#: ../draklive-install:412
+#, c-format
+msgid "You should format partition %s."
+msgstr ""
+
+#: ../draklive-install:414
+msgid ""
+", $part->{device}, $part->{mntpoint})) or return if $::isStandalone && 0; #- "
+"no, please"
+msgstr ""
+
+#: ../install_interactive.pm:22
+#, perl-format
+msgid ""
+"Some hardware on your computer needs ``proprietary'' drivers to work.\n"
+"You can find some information about them at: %s"
+msgstr ""
+
+#: ../install_interactive.pm:62
+msgid ""
+"You must have a root partition.\n"
+"For this, create a partition (or click on an existing one).\n"
+"Then choose action ``Mount point'' and set it to `/'"
+msgstr ""
+
+#: ../install_interactive.pm:67
+msgid ""
+"You do not have a swap partition.\n"
+"\n"
+"Continue anyway?"
+msgstr ""
+
+#: ../install_interactive.pm:70
+msgid "You must have a FAT partition mounted in /boot/efi"
+msgstr ""
+
+#: ../install_interactive.pm:95
+msgid "Use free space"
+msgstr ""
+
+#: ../install_interactive.pm:97
+msgid "Not enough free space to allocate new partitions"
+msgstr ""
+
+#: ../install_interactive.pm:105
+msgid "Use existing partitions"
+msgstr ""
+
+#: ../install_interactive.pm:107
+msgid "There is no existing partition to use"
+msgstr ""
+
+#: ../install_interactive.pm:114
+msgid "Use the Windows partition for loopback"
+msgstr ""
+
+#: ../install_interactive.pm:117
+msgid "Which partition do you want to use for Linux4Win?"
+msgstr ""
+
+#: ../install_interactive.pm:119
+msgid "Choose the sizes"
+msgstr ""
+
+#: ../install_interactive.pm:120
+msgid "Root partition size in MB: "
+msgstr ""
+
+#: ../install_interactive.pm:121
+msgid "Swap partition size in MB: "
+msgstr ""
+
+#: ../install_interactive.pm:130
+msgid "There is no FAT partition to use as loopback (or not enough space left)"
+msgstr ""
+
+#: ../install_interactive.pm:137
+msgid "Use the free space on the Windows partition"
+msgstr ""
+
+#: ../install_interactive.pm:139
+msgid "Which partition do you want to resize?"
+msgstr ""
+
+#: ../install_interactive.pm:153
+#, perl-format
+msgid ""
+"The FAT resizer is unable to handle your partition, \n"
+"the following error occurred: %s"
+msgstr ""
+
+#: ../install_interactive.pm:156
+msgid "Computing the size of the Windows partition"
+msgstr ""
+
+#: ../install_interactive.pm:156 ../install_interactive.pm:188
+msgid "Resizing"
+msgstr ""
+
+#: ../install_interactive.pm:163
+msgid ""
+"Your Windows partition is too fragmented. Please reboot your computer under "
+"Windows, run the ``defrag'' utility, then restart the Mandriva Linux "
+"installation."
+msgstr ""
+
+#: ../install_interactive.pm:166
+msgid ""
+"WARNING!\n"
+"\n"
+"DrakX will now resize your Windows partition. Be careful: this\n"
+"operation is dangerous. If you have not already done so, you\n"
+"first need to exit the installation, run \"chkdsk c:\" from a\n"
+"Command Prompt under Windows (beware, running graphical program\n"
+"\"scandisk\" is not enough, be sure to use \"chkdsk\" in a\n"
+"Command Prompt!), optionally run defrag, then restart the\n"
+"installation. You should also backup your data.\n"
+"When sure, press Ok."
+msgstr ""
+
+#: ../install_interactive.pm:178
+msgid "Which size do you want to keep for Windows on"
+msgstr ""
+
+#: ../install_interactive.pm:179
+#, perl-format
+msgid "partition %s"
+msgstr ""
+
+#: ../install_interactive.pm:188
+msgid "Resizing Windows partition"
+msgstr ""
+
+#: ../install_interactive.pm:193
+#, perl-format
+msgid "FAT resizing failed: %s"
+msgstr ""
+
+#: ../install_interactive.pm:196
+msgid ""
+"To ensure data integrity after resizing the partition(s), \n"
+"filesystem checks will be run on your next boot into Windows(TM)"
+msgstr ""
+
+#: ../install_interactive.pm:208
+msgid "There is no FAT partition to resize (or not enough space left)"
+msgstr ""
+
+#: ../install_interactive.pm:213
+msgid "Erase and use entire disk"
+msgstr ""
+
+#: ../install_interactive.pm:213
+msgid "Remove Windows(TM)"
+msgstr ""
+
+#: ../install_interactive.pm:215
+msgid "You have more than one hard drive, which one do you install linux on?"
+msgstr ""
+
+#: ../install_interactive.pm:219
+#, perl-format
+msgid "ALL existing partitions and their data will be lost on drive %s"
+msgstr ""
+
+#: ../install_interactive.pm:228
+msgid "Custom disk partitioning"
+msgstr ""
+
+#: ../install_interactive.pm:232
+msgid "Use fdisk"
+msgstr ""
+
+#: ../install_interactive.pm:235
+#, perl-format
+msgid ""
+"You can now partition %s.\n"
+"When you are done, do not forget to save using `w'"
+msgstr ""
+
+#: ../install_interactive.pm:271
+msgid "I can not find any room for installing"
+msgstr ""
+
+#: ../install_interactive.pm:275
+msgid "The DrakX Partitioning wizard found the following solutions:"
+msgstr ""
+
+#: ../install_interactive.pm:281
+#, perl-format
+msgid "Partitioning failed: %s"
+msgstr ""
+
+#: ../install_interactive.pm:288
+msgid "Bringing up the network"
+msgstr ""
+
+#: ../install_interactive.pm:293
+msgid "Bringing down the network"
+msgstr ""
diff --git a/live/draklive-install/po/az.po b/live/draklive-install/po/az.po
new file mode 100644
index 000000000..f16c11e32
--- /dev/null
+++ b/live/draklive-install/po/az.po
@@ -0,0 +1,300 @@
+#: ../draklive-install:59
+msgid "Mandriva Live"
+msgstr ""
+
+#: ../draklive-install:65
+msgid "This wizard will help you to install the live distribution."
+msgstr ""
+
+#: ../draklive-install:83
+msgid "Computing total size"
+msgstr ""
+
+#: ../draklive-install:95
+msgid "Copying in progress"
+msgstr ""
+
+#: ../draklive-install:163
+msgid "Congratulations"
+msgstr ""
+
+#: ../draklive-install:163
+msgid ""
+"Please halt your computer, remove your live system, and restart your "
+"computer."
+msgstr ""
+
+#: ../draklive-install:179 ../draklive-install:407
+msgid "You need to reboot for the partition table modifications to take place"
+msgstr ""
+
+#: ../draklive-install:230
+msgid "Choose the partitions you want to format"
+msgstr ""
+
+#: ../draklive-install:232
+msgid "Check bad blocks?"
+msgstr ""
+
+#: ../draklive-install:261
+#, c-format
+msgid "Failed to check filesystem %s. Do you want to repair the errors?"
+msgstr ""
+
+#: ../draklive-install:262
+msgid ", $1), 1);"
+msgstr ""
+
+#: ../draklive-install:265
+msgid "Not enough swap space to fulfill installation, please add some"
+msgstr ""
+
+#: ../draklive-install:284
+msgid "$d/$l{$_}"
+msgstr ""
+
+#: ../draklive-install:285
+msgid "$d/.bashrc"
+msgstr ""
+
+#: ../draklive-install:317
+msgid "No partition available"
+msgstr ""
+
+#: ../draklive-install:320
+msgid "Scanning partitions to find mount points"
+msgstr ""
+
+#: ../draklive-install:327
+msgid "Choose the mount points"
+msgstr ""
+
+#: ../draklive-install:328
+msgid "Partitioning"
+msgstr ""
+
+#: ../draklive-install:361
+msgid "none"
+msgstr ""
+
+#: ../draklive-install:363
+#, c-format
+msgid "Duplicate mount point %s"
+msgstr ""
+
+#: ../draklive-install:389
+msgid "Continue anyway?"
+msgstr ""
+
+#: ../draklive-install:394
+msgid "Quit without saving"
+msgstr ""
+
+#: ../draklive-install:394
+msgid "Quit without writing the partition table?"
+msgstr ""
+
+#: ../draklive-install:400
+msgid "Do you want to save /etc/fstab modifications"
+msgstr ""
+
+#: ../draklive-install:412
+#, c-format
+msgid "You should format partition %s."
+msgstr ""
+
+#: ../draklive-install:414
+msgid ""
+", $part->{device}, $part->{mntpoint})) or return if $::isStandalone && 0; #- "
+"no, please"
+msgstr ""
+
+#: ../install_interactive.pm:22
+#, perl-format
+msgid ""
+"Some hardware on your computer needs ``proprietary'' drivers to work.\n"
+"You can find some information about them at: %s"
+msgstr ""
+
+#: ../install_interactive.pm:62
+msgid ""
+"You must have a root partition.\n"
+"For this, create a partition (or click on an existing one).\n"
+"Then choose action ``Mount point'' and set it to `/'"
+msgstr ""
+
+#: ../install_interactive.pm:67
+msgid ""
+"You do not have a swap partition.\n"
+"\n"
+"Continue anyway?"
+msgstr ""
+
+#: ../install_interactive.pm:70
+msgid "You must have a FAT partition mounted in /boot/efi"
+msgstr ""
+
+#: ../install_interactive.pm:95
+msgid "Use free space"
+msgstr ""
+
+#: ../install_interactive.pm:97
+msgid "Not enough free space to allocate new partitions"
+msgstr ""
+
+#: ../install_interactive.pm:105
+msgid "Use existing partitions"
+msgstr ""
+
+#: ../install_interactive.pm:107
+msgid "There is no existing partition to use"
+msgstr ""
+
+#: ../install_interactive.pm:114
+msgid "Use the Windows partition for loopback"
+msgstr ""
+
+#: ../install_interactive.pm:117
+msgid "Which partition do you want to use for Linux4Win?"
+msgstr ""
+
+#: ../install_interactive.pm:119
+msgid "Choose the sizes"
+msgstr ""
+
+#: ../install_interactive.pm:120
+msgid "Root partition size in MB: "
+msgstr ""
+
+#: ../install_interactive.pm:121
+msgid "Swap partition size in MB: "
+msgstr ""
+
+#: ../install_interactive.pm:130
+msgid "There is no FAT partition to use as loopback (or not enough space left)"
+msgstr ""
+
+#: ../install_interactive.pm:137
+msgid "Use the free space on the Windows partition"
+msgstr ""
+
+#: ../install_interactive.pm:139
+msgid "Which partition do you want to resize?"
+msgstr ""
+
+#: ../install_interactive.pm:153
+#, perl-format
+msgid ""
+"The FAT resizer is unable to handle your partition, \n"
+"the following error occurred: %s"
+msgstr ""
+
+#: ../install_interactive.pm:156
+msgid "Computing the size of the Windows partition"
+msgstr ""
+
+#: ../install_interactive.pm:156 ../install_interactive.pm:188
+msgid "Resizing"
+msgstr ""
+
+#: ../install_interactive.pm:163
+msgid ""
+"Your Windows partition is too fragmented. Please reboot your computer under "
+"Windows, run the ``defrag'' utility, then restart the Mandriva Linux "
+"installation."
+msgstr ""
+
+#: ../install_interactive.pm:166
+msgid ""
+"WARNING!\n"
+"\n"
+"DrakX will now resize your Windows partition. Be careful: this\n"
+"operation is dangerous. If you have not already done so, you\n"
+"first need to exit the installation, run \"chkdsk c:\" from a\n"
+"Command Prompt under Windows (beware, running graphical program\n"
+"\"scandisk\" is not enough, be sure to use \"chkdsk\" in a\n"
+"Command Prompt!), optionally run defrag, then restart the\n"
+"installation. You should also backup your data.\n"
+"When sure, press Ok."
+msgstr ""
+
+#: ../install_interactive.pm:178
+msgid "Which size do you want to keep for Windows on"
+msgstr ""
+
+#: ../install_interactive.pm:179
+#, perl-format
+msgid "partition %s"
+msgstr ""
+
+#: ../install_interactive.pm:188
+msgid "Resizing Windows partition"
+msgstr ""
+
+#: ../install_interactive.pm:193
+#, perl-format
+msgid "FAT resizing failed: %s"
+msgstr ""
+
+#: ../install_interactive.pm:196
+msgid ""
+"To ensure data integrity after resizing the partition(s), \n"
+"filesystem checks will be run on your next boot into Windows(TM)"
+msgstr ""
+
+#: ../install_interactive.pm:208
+msgid "There is no FAT partition to resize (or not enough space left)"
+msgstr ""
+
+#: ../install_interactive.pm:213
+msgid "Erase and use entire disk"
+msgstr ""
+
+#: ../install_interactive.pm:213
+msgid "Remove Windows(TM)"
+msgstr ""
+
+#: ../install_interactive.pm:215
+msgid "You have more than one hard drive, which one do you install linux on?"
+msgstr ""
+
+#: ../install_interactive.pm:219
+#, perl-format
+msgid "ALL existing partitions and their data will be lost on drive %s"
+msgstr ""
+
+#: ../install_interactive.pm:228
+msgid "Custom disk partitioning"
+msgstr ""
+
+#: ../install_interactive.pm:232
+msgid "Use fdisk"
+msgstr ""
+
+#: ../install_interactive.pm:235
+#, perl-format
+msgid ""
+"You can now partition %s.\n"
+"When you are done, do not forget to save using `w'"
+msgstr ""
+
+#: ../install_interactive.pm:271
+msgid "I can not find any room for installing"
+msgstr ""
+
+#: ../install_interactive.pm:275
+msgid "The DrakX Partitioning wizard found the following solutions:"
+msgstr ""
+
+#: ../install_interactive.pm:281
+#, perl-format
+msgid "Partitioning failed: %s"
+msgstr ""
+
+#: ../install_interactive.pm:288
+msgid "Bringing up the network"
+msgstr ""
+
+#: ../install_interactive.pm:293
+msgid "Bringing down the network"
+msgstr ""
diff --git a/live/draklive-install/po/be.po b/live/draklive-install/po/be.po
new file mode 100644
index 000000000..f16c11e32
--- /dev/null
+++ b/live/draklive-install/po/be.po
@@ -0,0 +1,300 @@
+#: ../draklive-install:59
+msgid "Mandriva Live"
+msgstr ""
+
+#: ../draklive-install:65
+msgid "This wizard will help you to install the live distribution."
+msgstr ""
+
+#: ../draklive-install:83
+msgid "Computing total size"
+msgstr ""
+
+#: ../draklive-install:95
+msgid "Copying in progress"
+msgstr ""
+
+#: ../draklive-install:163
+msgid "Congratulations"
+msgstr ""
+
+#: ../draklive-install:163
+msgid ""
+"Please halt your computer, remove your live system, and restart your "
+"computer."
+msgstr ""
+
+#: ../draklive-install:179 ../draklive-install:407
+msgid "You need to reboot for the partition table modifications to take place"
+msgstr ""
+
+#: ../draklive-install:230
+msgid "Choose the partitions you want to format"
+msgstr ""
+
+#: ../draklive-install:232
+msgid "Check bad blocks?"
+msgstr ""
+
+#: ../draklive-install:261
+#, c-format
+msgid "Failed to check filesystem %s. Do you want to repair the errors?"
+msgstr ""
+
+#: ../draklive-install:262
+msgid ", $1), 1);"
+msgstr ""
+
+#: ../draklive-install:265
+msgid "Not enough swap space to fulfill installation, please add some"
+msgstr ""
+
+#: ../draklive-install:284
+msgid "$d/$l{$_}"
+msgstr ""
+
+#: ../draklive-install:285
+msgid "$d/.bashrc"
+msgstr ""
+
+#: ../draklive-install:317
+msgid "No partition available"
+msgstr ""
+
+#: ../draklive-install:320
+msgid "Scanning partitions to find mount points"
+msgstr ""
+
+#: ../draklive-install:327
+msgid "Choose the mount points"
+msgstr ""
+
+#: ../draklive-install:328
+msgid "Partitioning"
+msgstr ""
+
+#: ../draklive-install:361
+msgid "none"
+msgstr ""
+
+#: ../draklive-install:363
+#, c-format
+msgid "Duplicate mount point %s"
+msgstr ""
+
+#: ../draklive-install:389
+msgid "Continue anyway?"
+msgstr ""
+
+#: ../draklive-install:394
+msgid "Quit without saving"
+msgstr ""
+
+#: ../draklive-install:394
+msgid "Quit without writing the partition table?"
+msgstr ""
+
+#: ../draklive-install:400
+msgid "Do you want to save /etc/fstab modifications"
+msgstr ""
+
+#: ../draklive-install:412
+#, c-format
+msgid "You should format partition %s."
+msgstr ""
+
+#: ../draklive-install:414
+msgid ""
+", $part->{device}, $part->{mntpoint})) or return if $::isStandalone && 0; #- "
+"no, please"
+msgstr ""
+
+#: ../install_interactive.pm:22
+#, perl-format
+msgid ""
+"Some hardware on your computer needs ``proprietary'' drivers to work.\n"
+"You can find some information about them at: %s"
+msgstr ""
+
+#: ../install_interactive.pm:62
+msgid ""
+"You must have a root partition.\n"
+"For this, create a partition (or click on an existing one).\n"
+"Then choose action ``Mount point'' and set it to `/'"
+msgstr ""
+
+#: ../install_interactive.pm:67
+msgid ""
+"You do not have a swap partition.\n"
+"\n"
+"Continue anyway?"
+msgstr ""
+
+#: ../install_interactive.pm:70
+msgid "You must have a FAT partition mounted in /boot/efi"
+msgstr ""
+
+#: ../install_interactive.pm:95
+msgid "Use free space"
+msgstr ""
+
+#: ../install_interactive.pm:97
+msgid "Not enough free space to allocate new partitions"
+msgstr ""
+
+#: ../install_interactive.pm:105
+msgid "Use existing partitions"
+msgstr ""
+
+#: ../install_interactive.pm:107
+msgid "There is no existing partition to use"
+msgstr ""
+
+#: ../install_interactive.pm:114
+msgid "Use the Windows partition for loopback"
+msgstr ""
+
+#: ../install_interactive.pm:117
+msgid "Which partition do you want to use for Linux4Win?"
+msgstr ""
+
+#: ../install_interactive.pm:119
+msgid "Choose the sizes"
+msgstr ""
+
+#: ../install_interactive.pm:120
+msgid "Root partition size in MB: "
+msgstr ""
+
+#: ../install_interactive.pm:121
+msgid "Swap partition size in MB: "
+msgstr ""
+
+#: ../install_interactive.pm:130
+msgid "There is no FAT partition to use as loopback (or not enough space left)"
+msgstr ""
+
+#: ../install_interactive.pm:137
+msgid "Use the free space on the Windows partition"
+msgstr ""
+
+#: ../install_interactive.pm:139
+msgid "Which partition do you want to resize?"
+msgstr ""
+
+#: ../install_interactive.pm:153
+#, perl-format
+msgid ""
+"The FAT resizer is unable to handle your partition, \n"
+"the following error occurred: %s"
+msgstr ""
+
+#: ../install_interactive.pm:156
+msgid "Computing the size of the Windows partition"
+msgstr ""
+
+#: ../install_interactive.pm:156 ../install_interactive.pm:188
+msgid "Resizing"
+msgstr ""
+
+#: ../install_interactive.pm:163
+msgid ""
+"Your Windows partition is too fragmented. Please reboot your computer under "
+"Windows, run the ``defrag'' utility, then restart the Mandriva Linux "
+"installation."
+msgstr ""
+
+#: ../install_interactive.pm:166
+msgid ""
+"WARNING!\n"
+"\n"
+"DrakX will now resize your Windows partition. Be careful: this\n"
+"operation is dangerous. If you have not already done so, you\n"
+"first need to exit the installation, run \"chkdsk c:\" from a\n"
+"Command Prompt under Windows (beware, running graphical program\n"
+"\"scandisk\" is not enough, be sure to use \"chkdsk\" in a\n"
+"Command Prompt!), optionally run defrag, then restart the\n"
+"installation. You should also backup your data.\n"
+"When sure, press Ok."
+msgstr ""
+
+#: ../install_interactive.pm:178
+msgid "Which size do you want to keep for Windows on"
+msgstr ""
+
+#: ../install_interactive.pm:179
+#, perl-format
+msgid "partition %s"
+msgstr ""
+
+#: ../install_interactive.pm:188
+msgid "Resizing Windows partition"
+msgstr ""
+
+#: ../install_interactive.pm:193
+#, perl-format
+msgid "FAT resizing failed: %s"
+msgstr ""
+
+#: ../install_interactive.pm:196
+msgid ""
+"To ensure data integrity after resizing the partition(s), \n"
+"filesystem checks will be run on your next boot into Windows(TM)"
+msgstr ""
+
+#: ../install_interactive.pm:208
+msgid "There is no FAT partition to resize (or not enough space left)"
+msgstr ""
+
+#: ../install_interactive.pm:213
+msgid "Erase and use entire disk"
+msgstr ""
+
+#: ../install_interactive.pm:213
+msgid "Remove Windows(TM)"
+msgstr ""
+
+#: ../install_interactive.pm:215
+msgid "You have more than one hard drive, which one do you install linux on?"
+msgstr ""
+
+#: ../install_interactive.pm:219
+#, perl-format
+msgid "ALL existing partitions and their data will be lost on drive %s"
+msgstr ""
+
+#: ../install_interactive.pm:228
+msgid "Custom disk partitioning"
+msgstr ""
+
+#: ../install_interactive.pm:232
+msgid "Use fdisk"
+msgstr ""
+
+#: ../install_interactive.pm:235
+#, perl-format
+msgid ""
+"You can now partition %s.\n"
+"When you are done, do not forget to save using `w'"
+msgstr ""
+
+#: ../install_interactive.pm:271
+msgid "I can not find any room for installing"
+msgstr ""
+
+#: ../install_interactive.pm:275
+msgid "The DrakX Partitioning wizard found the following solutions:"
+msgstr ""
+
+#: ../install_interactive.pm:281
+#, perl-format
+msgid "Partitioning failed: %s"
+msgstr ""
+
+#: ../install_interactive.pm:288
+msgid "Bringing up the network"
+msgstr ""
+
+#: ../install_interactive.pm:293
+msgid "Bringing down the network"
+msgstr ""
diff --git a/live/draklive-install/po/bg.po b/live/draklive-install/po/bg.po
new file mode 100644
index 000000000..f16c11e32
--- /dev/null
+++ b/live/draklive-install/po/bg.po
@@ -0,0 +1,300 @@
+#: ../draklive-install:59
+msgid "Mandriva Live"
+msgstr ""
+
+#: ../draklive-install:65
+msgid "This wizard will help you to install the live distribution."
+msgstr ""
+
+#: ../draklive-install:83
+msgid "Computing total size"
+msgstr ""
+
+#: ../draklive-install:95
+msgid "Copying in progress"
+msgstr ""
+
+#: ../draklive-install:163
+msgid "Congratulations"
+msgstr ""
+
+#: ../draklive-install:163
+msgid ""
+"Please halt your computer, remove your live system, and restart your "
+"computer."
+msgstr ""
+
+#: ../draklive-install:179 ../draklive-install:407
+msgid "You need to reboot for the partition table modifications to take place"
+msgstr ""
+
+#: ../draklive-install:230
+msgid "Choose the partitions you want to format"
+msgstr ""
+
+#: ../draklive-install:232
+msgid "Check bad blocks?"
+msgstr ""
+
+#: ../draklive-install:261
+#, c-format
+msgid "Failed to check filesystem %s. Do you want to repair the errors?"
+msgstr ""
+
+#: ../draklive-install:262
+msgid ", $1), 1);"
+msgstr ""
+
+#: ../draklive-install:265
+msgid "Not enough swap space to fulfill installation, please add some"
+msgstr ""
+
+#: ../draklive-install:284
+msgid "$d/$l{$_}"
+msgstr ""
+
+#: ../draklive-install:285
+msgid "$d/.bashrc"
+msgstr ""
+
+#: ../draklive-install:317
+msgid "No partition available"
+msgstr ""
+
+#: ../draklive-install:320
+msgid "Scanning partitions to find mount points"
+msgstr ""
+
+#: ../draklive-install:327
+msgid "Choose the mount points"
+msgstr ""
+
+#: ../draklive-install:328
+msgid "Partitioning"
+msgstr ""
+
+#: ../draklive-install:361
+msgid "none"
+msgstr ""
+
+#: ../draklive-install:363
+#, c-format
+msgid "Duplicate mount point %s"
+msgstr ""
+
+#: ../draklive-install:389
+msgid "Continue anyway?"
+msgstr ""
+
+#: ../draklive-install:394
+msgid "Quit without saving"
+msgstr ""
+
+#: ../draklive-install:394
+msgid "Quit without writing the partition table?"
+msgstr ""
+
+#: ../draklive-install:400
+msgid "Do you want to save /etc/fstab modifications"
+msgstr ""
+
+#: ../draklive-install:412
+#, c-format
+msgid "You should format partition %s."
+msgstr ""
+
+#: ../draklive-install:414
+msgid ""
+", $part->{device}, $part->{mntpoint})) or return if $::isStandalone && 0; #- "
+"no, please"
+msgstr ""
+
+#: ../install_interactive.pm:22
+#, perl-format
+msgid ""
+"Some hardware on your computer needs ``proprietary'' drivers to work.\n"
+"You can find some information about them at: %s"
+msgstr ""
+
+#: ../install_interactive.pm:62
+msgid ""
+"You must have a root partition.\n"
+"For this, create a partition (or click on an existing one).\n"
+"Then choose action ``Mount point'' and set it to `/'"
+msgstr ""
+
+#: ../install_interactive.pm:67
+msgid ""
+"You do not have a swap partition.\n"
+"\n"
+"Continue anyway?"
+msgstr ""
+
+#: ../install_interactive.pm:70
+msgid "You must have a FAT partition mounted in /boot/efi"
+msgstr ""
+
+#: ../install_interactive.pm:95
+msgid "Use free space"
+msgstr ""
+
+#: ../install_interactive.pm:97
+msgid "Not enough free space to allocate new partitions"
+msgstr ""
+
+#: ../install_interactive.pm:105
+msgid "Use existing partitions"
+msgstr ""
+
+#: ../install_interactive.pm:107
+msgid "There is no existing partition to use"
+msgstr ""
+
+#: ../install_interactive.pm:114
+msgid "Use the Windows partition for loopback"
+msgstr ""
+
+#: ../install_interactive.pm:117
+msgid "Which partition do you want to use for Linux4Win?"
+msgstr ""
+
+#: ../install_interactive.pm:119
+msgid "Choose the sizes"
+msgstr ""
+
+#: ../install_interactive.pm:120
+msgid "Root partition size in MB: "
+msgstr ""
+
+#: ../install_interactive.pm:121
+msgid "Swap partition size in MB: "
+msgstr ""
+
+#: ../install_interactive.pm:130
+msgid "There is no FAT partition to use as loopback (or not enough space left)"
+msgstr ""
+
+#: ../install_interactive.pm:137
+msgid "Use the free space on the Windows partition"
+msgstr ""
+
+#: ../install_interactive.pm:139
+msgid "Which partition do you want to resize?"
+msgstr ""
+
+#: ../install_interactive.pm:153
+#, perl-format
+msgid ""
+"The FAT resizer is unable to handle your partition, \n"
+"the following error occurred: %s"
+msgstr ""
+
+#: ../install_interactive.pm:156
+msgid "Computing the size of the Windows partition"
+msgstr ""
+
+#: ../install_interactive.pm:156 ../install_interactive.pm:188
+msgid "Resizing"
+msgstr ""
+
+#: ../install_interactive.pm:163
+msgid ""
+"Your Windows partition is too fragmented. Please reboot your computer under "
+"Windows, run the ``defrag'' utility, then restart the Mandriva Linux "
+"installation."
+msgstr ""
+
+#: ../install_interactive.pm:166
+msgid ""
+"WARNING!\n"
+"\n"
+"DrakX will now resize your Windows partition. Be careful: this\n"
+"operation is dangerous. If you have not already done so, you\n"
+"first need to exit the installation, run \"chkdsk c:\" from a\n"
+"Command Prompt under Windows (beware, running graphical program\n"
+"\"scandisk\" is not enough, be sure to use \"chkdsk\" in a\n"
+"Command Prompt!), optionally run defrag, then restart the\n"
+"installation. You should also backup your data.\n"
+"When sure, press Ok."
+msgstr ""
+
+#: ../install_interactive.pm:178
+msgid "Which size do you want to keep for Windows on"
+msgstr ""
+
+#: ../install_interactive.pm:179
+#, perl-format
+msgid "partition %s"
+msgstr ""
+
+#: ../install_interactive.pm:188
+msgid "Resizing Windows partition"
+msgstr ""
+
+#: ../install_interactive.pm:193
+#, perl-format
+msgid "FAT resizing failed: %s"
+msgstr ""
+
+#: ../install_interactive.pm:196
+msgid ""
+"To ensure data integrity after resizing the partition(s), \n"
+"filesystem checks will be run on your next boot into Windows(TM)"
+msgstr ""
+
+#: ../install_interactive.pm:208
+msgid "There is no FAT partition to resize (or not enough space left)"
+msgstr ""
+
+#: ../install_interactive.pm:213
+msgid "Erase and use entire disk"
+msgstr ""
+
+#: ../install_interactive.pm:213
+msgid "Remove Windows(TM)"
+msgstr ""
+
+#: ../install_interactive.pm:215
+msgid "You have more than one hard drive, which one do you install linux on?"
+msgstr ""
+
+#: ../install_interactive.pm:219
+#, perl-format
+msgid "ALL existing partitions and their data will be lost on drive %s"
+msgstr ""
+
+#: ../install_interactive.pm:228
+msgid "Custom disk partitioning"
+msgstr ""
+
+#: ../install_interactive.pm:232
+msgid "Use fdisk"
+msgstr ""
+
+#: ../install_interactive.pm:235
+#, perl-format
+msgid ""
+"You can now partition %s.\n"
+"When you are done, do not forget to save using `w'"
+msgstr ""
+
+#: ../install_interactive.pm:271
+msgid "I can not find any room for installing"
+msgstr ""
+
+#: ../install_interactive.pm:275
+msgid "The DrakX Partitioning wizard found the following solutions:"
+msgstr ""
+
+#: ../install_interactive.pm:281
+#, perl-format
+msgid "Partitioning failed: %s"
+msgstr ""
+
+#: ../install_interactive.pm:288
+msgid "Bringing up the network"
+msgstr ""
+
+#: ../install_interactive.pm:293
+msgid "Bringing down the network"
+msgstr ""
diff --git a/live/draklive-install/po/bn.po b/live/draklive-install/po/bn.po
new file mode 100644
index 000000000..f16c11e32
--- /dev/null
+++ b/live/draklive-install/po/bn.po
@@ -0,0 +1,300 @@
+#: ../draklive-install:59
+msgid "Mandriva Live"
+msgstr ""
+
+#: ../draklive-install:65
+msgid "This wizard will help you to install the live distribution."
+msgstr ""
+
+#: ../draklive-install:83
+msgid "Computing total size"
+msgstr ""
+
+#: ../draklive-install:95
+msgid "Copying in progress"
+msgstr ""
+
+#: ../draklive-install:163
+msgid "Congratulations"
+msgstr ""
+
+#: ../draklive-install:163
+msgid ""
+"Please halt your computer, remove your live system, and restart your "
+"computer."
+msgstr ""
+
+#: ../draklive-install:179 ../draklive-install:407
+msgid "You need to reboot for the partition table modifications to take place"
+msgstr ""
+
+#: ../draklive-install:230
+msgid "Choose the partitions you want to format"
+msgstr ""
+
+#: ../draklive-install:232
+msgid "Check bad blocks?"
+msgstr ""
+
+#: ../draklive-install:261
+#, c-format
+msgid "Failed to check filesystem %s. Do you want to repair the errors?"
+msgstr ""
+
+#: ../draklive-install:262
+msgid ", $1), 1);"
+msgstr ""
+
+#: ../draklive-install:265
+msgid "Not enough swap space to fulfill installation, please add some"
+msgstr ""
+
+#: ../draklive-install:284
+msgid "$d/$l{$_}"
+msgstr ""
+
+#: ../draklive-install:285
+msgid "$d/.bashrc"
+msgstr ""
+
+#: ../draklive-install:317
+msgid "No partition available"
+msgstr ""
+
+#: ../draklive-install:320
+msgid "Scanning partitions to find mount points"
+msgstr ""
+
+#: ../draklive-install:327
+msgid "Choose the mount points"
+msgstr ""
+
+#: ../draklive-install:328
+msgid "Partitioning"
+msgstr ""
+
+#: ../draklive-install:361
+msgid "none"
+msgstr ""
+
+#: ../draklive-install:363
+#, c-format
+msgid "Duplicate mount point %s"
+msgstr ""
+
+#: ../draklive-install:389
+msgid "Continue anyway?"
+msgstr ""
+
+#: ../draklive-install:394
+msgid "Quit without saving"
+msgstr ""
+
+#: ../draklive-install:394
+msgid "Quit without writing the partition table?"
+msgstr ""
+
+#: ../draklive-install:400
+msgid "Do you want to save /etc/fstab modifications"
+msgstr ""
+
+#: ../draklive-install:412
+#, c-format
+msgid "You should format partition %s."
+msgstr ""
+
+#: ../draklive-install:414
+msgid ""
+", $part->{device}, $part->{mntpoint})) or return if $::isStandalone && 0; #- "
+"no, please"
+msgstr ""
+
+#: ../install_interactive.pm:22
+#, perl-format
+msgid ""
+"Some hardware on your computer needs ``proprietary'' drivers to work.\n"
+"You can find some information about them at: %s"
+msgstr ""
+
+#: ../install_interactive.pm:62
+msgid ""
+"You must have a root partition.\n"
+"For this, create a partition (or click on an existing one).\n"
+"Then choose action ``Mount point'' and set it to `/'"
+msgstr ""
+
+#: ../install_interactive.pm:67
+msgid ""
+"You do not have a swap partition.\n"
+"\n"
+"Continue anyway?"
+msgstr ""
+
+#: ../install_interactive.pm:70
+msgid "You must have a FAT partition mounted in /boot/efi"
+msgstr ""
+
+#: ../install_interactive.pm:95
+msgid "Use free space"
+msgstr ""
+
+#: ../install_interactive.pm:97
+msgid "Not enough free space to allocate new partitions"
+msgstr ""
+
+#: ../install_interactive.pm:105
+msgid "Use existing partitions"
+msgstr ""
+
+#: ../install_interactive.pm:107
+msgid "There is no existing partition to use"
+msgstr ""
+
+#: ../install_interactive.pm:114
+msgid "Use the Windows partition for loopback"
+msgstr ""
+
+#: ../install_interactive.pm:117
+msgid "Which partition do you want to use for Linux4Win?"
+msgstr ""
+
+#: ../install_interactive.pm:119
+msgid "Choose the sizes"
+msgstr ""
+
+#: ../install_interactive.pm:120
+msgid "Root partition size in MB: "
+msgstr ""
+
+#: ../install_interactive.pm:121
+msgid "Swap partition size in MB: "
+msgstr ""
+
+#: ../install_interactive.pm:130
+msgid "There is no FAT partition to use as loopback (or not enough space left)"
+msgstr ""
+
+#: ../install_interactive.pm:137
+msgid "Use the free space on the Windows partition"
+msgstr ""
+
+#: ../install_interactive.pm:139
+msgid "Which partition do you want to resize?"
+msgstr ""
+
+#: ../install_interactive.pm:153
+#, perl-format
+msgid ""
+"The FAT resizer is unable to handle your partition, \n"
+"the following error occurred: %s"
+msgstr ""
+
+#: ../install_interactive.pm:156
+msgid "Computing the size of the Windows partition"
+msgstr ""
+
+#: ../install_interactive.pm:156 ../install_interactive.pm:188
+msgid "Resizing"
+msgstr ""
+
+#: ../install_interactive.pm:163
+msgid ""
+"Your Windows partition is too fragmented. Please reboot your computer under "
+"Windows, run the ``defrag'' utility, then restart the Mandriva Linux "
+"installation."
+msgstr ""
+
+#: ../install_interactive.pm:166
+msgid ""
+"WARNING!\n"
+"\n"
+"DrakX will now resize your Windows partition. Be careful: this\n"
+"operation is dangerous. If you have not already done so, you\n"
+"first need to exit the installation, run \"chkdsk c:\" from a\n"
+"Command Prompt under Windows (beware, running graphical program\n"
+"\"scandisk\" is not enough, be sure to use \"chkdsk\" in a\n"
+"Command Prompt!), optionally run defrag, then restart the\n"
+"installation. You should also backup your data.\n"
+"When sure, press Ok."
+msgstr ""
+
+#: ../install_interactive.pm:178
+msgid "Which size do you want to keep for Windows on"
+msgstr ""
+
+#: ../install_interactive.pm:179
+#, perl-format
+msgid "partition %s"
+msgstr ""
+
+#: ../install_interactive.pm:188
+msgid "Resizing Windows partition"
+msgstr ""
+
+#: ../install_interactive.pm:193
+#, perl-format
+msgid "FAT resizing failed: %s"
+msgstr ""
+
+#: ../install_interactive.pm:196
+msgid ""
+"To ensure data integrity after resizing the partition(s), \n"
+"filesystem checks will be run on your next boot into Windows(TM)"
+msgstr ""
+
+#: ../install_interactive.pm:208
+msgid "There is no FAT partition to resize (or not enough space left)"
+msgstr ""
+
+#: ../install_interactive.pm:213
+msgid "Erase and use entire disk"
+msgstr ""
+
+#: ../install_interactive.pm:213
+msgid "Remove Windows(TM)"
+msgstr ""
+
+#: ../install_interactive.pm:215
+msgid "You have more than one hard drive, which one do you install linux on?"
+msgstr ""
+
+#: ../install_interactive.pm:219
+#, perl-format
+msgid "ALL existing partitions and their data will be lost on drive %s"
+msgstr ""
+
+#: ../install_interactive.pm:228
+msgid "Custom disk partitioning"
+msgstr ""
+
+#: ../install_interactive.pm:232
+msgid "Use fdisk"
+msgstr ""
+
+#: ../install_interactive.pm:235
+#, perl-format
+msgid ""
+"You can now partition %s.\n"
+"When you are done, do not forget to save using `w'"
+msgstr ""
+
+#: ../install_interactive.pm:271
+msgid "I can not find any room for installing"
+msgstr ""
+
+#: ../install_interactive.pm:275
+msgid "The DrakX Partitioning wizard found the following solutions:"
+msgstr ""
+
+#: ../install_interactive.pm:281
+#, perl-format
+msgid "Partitioning failed: %s"
+msgstr ""
+
+#: ../install_interactive.pm:288
+msgid "Bringing up the network"
+msgstr ""
+
+#: ../install_interactive.pm:293
+msgid "Bringing down the network"
+msgstr ""
diff --git a/live/draklive-install/po/br.po b/live/draklive-install/po/br.po
new file mode 100644
index 000000000..f16c11e32
--- /dev/null
+++ b/live/draklive-install/po/br.po
@@ -0,0 +1,300 @@
+#: ../draklive-install:59
+msgid "Mandriva Live"
+msgstr ""
+
+#: ../draklive-install:65
+msgid "This wizard will help you to install the live distribution."
+msgstr ""
+
+#: ../draklive-install:83
+msgid "Computing total size"
+msgstr ""
+
+#: ../draklive-install:95
+msgid "Copying in progress"
+msgstr ""
+
+#: ../draklive-install:163
+msgid "Congratulations"
+msgstr ""
+
+#: ../draklive-install:163
+msgid ""
+"Please halt your computer, remove your live system, and restart your "
+"computer."
+msgstr ""
+
+#: ../draklive-install:179 ../draklive-install:407
+msgid "You need to reboot for the partition table modifications to take place"
+msgstr ""
+
+#: ../draklive-install:230
+msgid "Choose the partitions you want to format"
+msgstr ""
+
+#: ../draklive-install:232
+msgid "Check bad blocks?"
+msgstr ""
+
+#: ../draklive-install:261
+#, c-format
+msgid "Failed to check filesystem %s. Do you want to repair the errors?"
+msgstr ""
+
+#: ../draklive-install:262
+msgid ", $1), 1);"
+msgstr ""
+
+#: ../draklive-install:265
+msgid "Not enough swap space to fulfill installation, please add some"
+msgstr ""
+
+#: ../draklive-install:284
+msgid "$d/$l{$_}"
+msgstr ""
+
+#: ../draklive-install:285
+msgid "$d/.bashrc"
+msgstr ""
+
+#: ../draklive-install:317
+msgid "No partition available"
+msgstr ""
+
+#: ../draklive-install:320
+msgid "Scanning partitions to find mount points"
+msgstr ""
+
+#: ../draklive-install:327
+msgid "Choose the mount points"
+msgstr ""
+
+#: ../draklive-install:328
+msgid "Partitioning"
+msgstr ""
+
+#: ../draklive-install:361
+msgid "none"
+msgstr ""
+
+#: ../draklive-install:363
+#, c-format
+msgid "Duplicate mount point %s"
+msgstr ""
+
+#: ../draklive-install:389
+msgid "Continue anyway?"
+msgstr ""
+
+#: ../draklive-install:394
+msgid "Quit without saving"
+msgstr ""
+
+#: ../draklive-install:394
+msgid "Quit without writing the partition table?"
+msgstr ""
+
+#: ../draklive-install:400
+msgid "Do you want to save /etc/fstab modifications"
+msgstr ""
+
+#: ../draklive-install:412
+#, c-format
+msgid "You should format partition %s."
+msgstr ""
+
+#: ../draklive-install:414
+msgid ""
+", $part->{device}, $part->{mntpoint})) or return if $::isStandalone && 0; #- "
+"no, please"
+msgstr ""
+
+#: ../install_interactive.pm:22
+#, perl-format
+msgid ""
+"Some hardware on your computer needs ``proprietary'' drivers to work.\n"
+"You can find some information about them at: %s"
+msgstr ""
+
+#: ../install_interactive.pm:62
+msgid ""
+"You must have a root partition.\n"
+"For this, create a partition (or click on an existing one).\n"
+"Then choose action ``Mount point'' and set it to `/'"
+msgstr ""
+
+#: ../install_interactive.pm:67
+msgid ""
+"You do not have a swap partition.\n"
+"\n"
+"Continue anyway?"
+msgstr ""
+
+#: ../install_interactive.pm:70
+msgid "You must have a FAT partition mounted in /boot/efi"
+msgstr ""
+
+#: ../install_interactive.pm:95
+msgid "Use free space"
+msgstr ""
+
+#: ../install_interactive.pm:97
+msgid "Not enough free space to allocate new partitions"
+msgstr ""
+
+#: ../install_interactive.pm:105
+msgid "Use existing partitions"
+msgstr ""
+
+#: ../install_interactive.pm:107
+msgid "There is no existing partition to use"
+msgstr ""
+
+#: ../install_interactive.pm:114
+msgid "Use the Windows partition for loopback"
+msgstr ""
+
+#: ../install_interactive.pm:117
+msgid "Which partition do you want to use for Linux4Win?"
+msgstr ""
+
+#: ../install_interactive.pm:119
+msgid "Choose the sizes"
+msgstr ""
+
+#: ../install_interactive.pm:120
+msgid "Root partition size in MB: "
+msgstr ""
+
+#: ../install_interactive.pm:121
+msgid "Swap partition size in MB: "
+msgstr ""
+
+#: ../install_interactive.pm:130
+msgid "There is no FAT partition to use as loopback (or not enough space left)"
+msgstr ""
+
+#: ../install_interactive.pm:137
+msgid "Use the free space on the Windows partition"
+msgstr ""
+
+#: ../install_interactive.pm:139
+msgid "Which partition do you want to resize?"
+msgstr ""
+
+#: ../install_interactive.pm:153
+#, perl-format
+msgid ""
+"The FAT resizer is unable to handle your partition, \n"
+"the following error occurred: %s"
+msgstr ""
+
+#: ../install_interactive.pm:156
+msgid "Computing the size of the Windows partition"
+msgstr ""
+
+#: ../install_interactive.pm:156 ../install_interactive.pm:188
+msgid "Resizing"
+msgstr ""
+
+#: ../install_interactive.pm:163
+msgid ""
+"Your Windows partition is too fragmented. Please reboot your computer under "
+"Windows, run the ``defrag'' utility, then restart the Mandriva Linux "
+"installation."
+msgstr ""
+
+#: ../install_interactive.pm:166
+msgid ""
+"WARNING!\n"
+"\n"
+"DrakX will now resize your Windows partition. Be careful: this\n"
+"operation is dangerous. If you have not already done so, you\n"
+"first need to exit the installation, run \"chkdsk c:\" from a\n"
+"Command Prompt under Windows (beware, running graphical program\n"
+"\"scandisk\" is not enough, be sure to use \"chkdsk\" in a\n"
+"Command Prompt!), optionally run defrag, then restart the\n"
+"installation. You should also backup your data.\n"
+"When sure, press Ok."
+msgstr ""
+
+#: ../install_interactive.pm:178
+msgid "Which size do you want to keep for Windows on"
+msgstr ""
+
+#: ../install_interactive.pm:179
+#, perl-format
+msgid "partition %s"
+msgstr ""
+
+#: ../install_interactive.pm:188
+msgid "Resizing Windows partition"
+msgstr ""
+
+#: ../install_interactive.pm:193
+#, perl-format
+msgid "FAT resizing failed: %s"
+msgstr ""
+
+#: ../install_interactive.pm:196
+msgid ""
+"To ensure data integrity after resizing the partition(s), \n"
+"filesystem checks will be run on your next boot into Windows(TM)"
+msgstr ""
+
+#: ../install_interactive.pm:208
+msgid "There is no FAT partition to resize (or not enough space left)"
+msgstr ""
+
+#: ../install_interactive.pm:213
+msgid "Erase and use entire disk"
+msgstr ""
+
+#: ../install_interactive.pm:213
+msgid "Remove Windows(TM)"
+msgstr ""
+
+#: ../install_interactive.pm:215
+msgid "You have more than one hard drive, which one do you install linux on?"
+msgstr ""
+
+#: ../install_interactive.pm:219
+#, perl-format
+msgid "ALL existing partitions and their data will be lost on drive %s"
+msgstr ""
+
+#: ../install_interactive.pm:228
+msgid "Custom disk partitioning"
+msgstr ""
+
+#: ../install_interactive.pm:232
+msgid "Use fdisk"
+msgstr ""
+
+#: ../install_interactive.pm:235
+#, perl-format
+msgid ""
+"You can now partition %s.\n"
+"When you are done, do not forget to save using `w'"
+msgstr ""
+
+#: ../install_interactive.pm:271
+msgid "I can not find any room for installing"
+msgstr ""
+
+#: ../install_interactive.pm:275
+msgid "The DrakX Partitioning wizard found the following solutions:"
+msgstr ""
+
+#: ../install_interactive.pm:281
+#, perl-format
+msgid "Partitioning failed: %s"
+msgstr ""
+
+#: ../install_interactive.pm:288
+msgid "Bringing up the network"
+msgstr ""
+
+#: ../install_interactive.pm:293
+msgid "Bringing down the network"
+msgstr ""
diff --git a/live/draklive-install/po/bs.po b/live/draklive-install/po/bs.po
new file mode 100644
index 000000000..f16c11e32
--- /dev/null
+++ b/live/draklive-install/po/bs.po
@@ -0,0 +1,300 @@
+#: ../draklive-install:59
+msgid "Mandriva Live"
+msgstr ""
+
+#: ../draklive-install:65
+msgid "This wizard will help you to install the live distribution."
+msgstr ""
+
+#: ../draklive-install:83
+msgid "Computing total size"
+msgstr ""
+
+#: ../draklive-install:95
+msgid "Copying in progress"
+msgstr ""
+
+#: ../draklive-install:163
+msgid "Congratulations"
+msgstr ""
+
+#: ../draklive-install:163
+msgid ""
+"Please halt your computer, remove your live system, and restart your "
+"computer."
+msgstr ""
+
+#: ../draklive-install:179 ../draklive-install:407
+msgid "You need to reboot for the partition table modifications to take place"
+msgstr ""
+
+#: ../draklive-install:230
+msgid "Choose the partitions you want to format"
+msgstr ""
+
+#: ../draklive-install:232
+msgid "Check bad blocks?"
+msgstr ""
+
+#: ../draklive-install:261
+#, c-format
+msgid "Failed to check filesystem %s. Do you want to repair the errors?"
+msgstr ""
+
+#: ../draklive-install:262
+msgid ", $1), 1);"
+msgstr ""
+
+#: ../draklive-install:265
+msgid "Not enough swap space to fulfill installation, please add some"
+msgstr ""
+
+#: ../draklive-install:284
+msgid "$d/$l{$_}"
+msgstr ""
+
+#: ../draklive-install:285
+msgid "$d/.bashrc"
+msgstr ""
+
+#: ../draklive-install:317
+msgid "No partition available"
+msgstr ""
+
+#: ../draklive-install:320
+msgid "Scanning partitions to find mount points"
+msgstr ""
+
+#: ../draklive-install:327
+msgid "Choose the mount points"
+msgstr ""
+
+#: ../draklive-install:328
+msgid "Partitioning"
+msgstr ""
+
+#: ../draklive-install:361
+msgid "none"
+msgstr ""
+
+#: ../draklive-install:363
+#, c-format
+msgid "Duplicate mount point %s"
+msgstr ""
+
+#: ../draklive-install:389
+msgid "Continue anyway?"
+msgstr ""
+
+#: ../draklive-install:394
+msgid "Quit without saving"
+msgstr ""
+
+#: ../draklive-install:394
+msgid "Quit without writing the partition table?"
+msgstr ""
+
+#: ../draklive-install:400
+msgid "Do you want to save /etc/fstab modifications"
+msgstr ""
+
+#: ../draklive-install:412
+#, c-format
+msgid "You should format partition %s."
+msgstr ""
+
+#: ../draklive-install:414
+msgid ""
+", $part->{device}, $part->{mntpoint})) or return if $::isStandalone && 0; #- "
+"no, please"
+msgstr ""
+
+#: ../install_interactive.pm:22
+#, perl-format
+msgid ""
+"Some hardware on your computer needs ``proprietary'' drivers to work.\n"
+"You can find some information about them at: %s"
+msgstr ""
+
+#: ../install_interactive.pm:62
+msgid ""
+"You must have a root partition.\n"
+"For this, create a partition (or click on an existing one).\n"
+"Then choose action ``Mount point'' and set it to `/'"
+msgstr ""
+
+#: ../install_interactive.pm:67
+msgid ""
+"You do not have a swap partition.\n"
+"\n"
+"Continue anyway?"
+msgstr ""
+
+#: ../install_interactive.pm:70
+msgid "You must have a FAT partition mounted in /boot/efi"
+msgstr ""
+
+#: ../install_interactive.pm:95
+msgid "Use free space"
+msgstr ""
+
+#: ../install_interactive.pm:97
+msgid "Not enough free space to allocate new partitions"
+msgstr ""
+
+#: ../install_interactive.pm:105
+msgid "Use existing partitions"
+msgstr ""
+
+#: ../install_interactive.pm:107
+msgid "There is no existing partition to use"
+msgstr ""
+
+#: ../install_interactive.pm:114
+msgid "Use the Windows partition for loopback"
+msgstr ""
+
+#: ../install_interactive.pm:117
+msgid "Which partition do you want to use for Linux4Win?"
+msgstr ""
+
+#: ../install_interactive.pm:119
+msgid "Choose the sizes"
+msgstr ""
+
+#: ../install_interactive.pm:120
+msgid "Root partition size in MB: "
+msgstr ""
+
+#: ../install_interactive.pm:121
+msgid "Swap partition size in MB: "
+msgstr ""
+
+#: ../install_interactive.pm:130
+msgid "There is no FAT partition to use as loopback (or not enough space left)"
+msgstr ""
+
+#: ../install_interactive.pm:137
+msgid "Use the free space on the Windows partition"
+msgstr ""
+
+#: ../install_interactive.pm:139
+msgid "Which partition do you want to resize?"
+msgstr ""
+
+#: ../install_interactive.pm:153
+#, perl-format
+msgid ""
+"The FAT resizer is unable to handle your partition, \n"
+"the following error occurred: %s"
+msgstr ""
+
+#: ../install_interactive.pm:156
+msgid "Computing the size of the Windows partition"
+msgstr ""
+
+#: ../install_interactive.pm:156 ../install_interactive.pm:188
+msgid "Resizing"
+msgstr ""
+
+#: ../install_interactive.pm:163
+msgid ""
+"Your Windows partition is too fragmented. Please reboot your computer under "
+"Windows, run the ``defrag'' utility, then restart the Mandriva Linux "
+"installation."
+msgstr ""
+
+#: ../install_interactive.pm:166
+msgid ""
+"WARNING!\n"
+"\n"
+"DrakX will now resize your Windows partition. Be careful: this\n"
+"operation is dangerous. If you have not already done so, you\n"
+"first need to exit the installation, run \"chkdsk c:\" from a\n"
+"Command Prompt under Windows (beware, running graphical program\n"
+"\"scandisk\" is not enough, be sure to use \"chkdsk\" in a\n"
+"Command Prompt!), optionally run defrag, then restart the\n"
+"installation. You should also backup your data.\n"
+"When sure, press Ok."
+msgstr ""
+
+#: ../install_interactive.pm:178
+msgid "Which size do you want to keep for Windows on"
+msgstr ""
+
+#: ../install_interactive.pm:179
+#, perl-format
+msgid "partition %s"
+msgstr ""
+
+#: ../install_interactive.pm:188
+msgid "Resizing Windows partition"
+msgstr ""
+
+#: ../install_interactive.pm:193
+#, perl-format
+msgid "FAT resizing failed: %s"
+msgstr ""
+
+#: ../install_interactive.pm:196
+msgid ""
+"To ensure data integrity after resizing the partition(s), \n"
+"filesystem checks will be run on your next boot into Windows(TM)"
+msgstr ""
+
+#: ../install_interactive.pm:208
+msgid "There is no FAT partition to resize (or not enough space left)"
+msgstr ""
+
+#: ../install_interactive.pm:213
+msgid "Erase and use entire disk"
+msgstr ""
+
+#: ../install_interactive.pm:213
+msgid "Remove Windows(TM)"
+msgstr ""
+
+#: ../install_interactive.pm:215
+msgid "You have more than one hard drive, which one do you install linux on?"
+msgstr ""
+
+#: ../install_interactive.pm:219
+#, perl-format
+msgid "ALL existing partitions and their data will be lost on drive %s"
+msgstr ""
+
+#: ../install_interactive.pm:228
+msgid "Custom disk partitioning"
+msgstr ""
+
+#: ../install_interactive.pm:232
+msgid "Use fdisk"
+msgstr ""
+
+#: ../install_interactive.pm:235
+#, perl-format
+msgid ""
+"You can now partition %s.\n"
+"When you are done, do not forget to save using `w'"
+msgstr ""
+
+#: ../install_interactive.pm:271
+msgid "I can not find any room for installing"
+msgstr ""
+
+#: ../install_interactive.pm:275
+msgid "The DrakX Partitioning wizard found the following solutions:"
+msgstr ""
+
+#: ../install_interactive.pm:281
+#, perl-format
+msgid "Partitioning failed: %s"
+msgstr ""
+
+#: ../install_interactive.pm:288
+msgid "Bringing up the network"
+msgstr ""
+
+#: ../install_interactive.pm:293
+msgid "Bringing down the network"
+msgstr ""
diff --git a/live/draklive-install/po/ca.po b/live/draklive-install/po/ca.po
new file mode 100644
index 000000000..f16c11e32
--- /dev/null
+++ b/live/draklive-install/po/ca.po
@@ -0,0 +1,300 @@
+#: ../draklive-install:59
+msgid "Mandriva Live"
+msgstr ""
+
+#: ../draklive-install:65
+msgid "This wizard will help you to install the live distribution."
+msgstr ""
+
+#: ../draklive-install:83
+msgid "Computing total size"
+msgstr ""
+
+#: ../draklive-install:95
+msgid "Copying in progress"
+msgstr ""
+
+#: ../draklive-install:163
+msgid "Congratulations"
+msgstr ""
+
+#: ../draklive-install:163
+msgid ""
+"Please halt your computer, remove your live system, and restart your "
+"computer."
+msgstr ""
+
+#: ../draklive-install:179 ../draklive-install:407
+msgid "You need to reboot for the partition table modifications to take place"
+msgstr ""
+
+#: ../draklive-install:230
+msgid "Choose the partitions you want to format"
+msgstr ""
+
+#: ../draklive-install:232
+msgid "Check bad blocks?"
+msgstr ""
+
+#: ../draklive-install:261
+#, c-format
+msgid "Failed to check filesystem %s. Do you want to repair the errors?"
+msgstr ""
+
+#: ../draklive-install:262
+msgid ", $1), 1);"
+msgstr ""
+
+#: ../draklive-install:265
+msgid "Not enough swap space to fulfill installation, please add some"
+msgstr ""
+
+#: ../draklive-install:284
+msgid "$d/$l{$_}"
+msgstr ""
+
+#: ../draklive-install:285
+msgid "$d/.bashrc"
+msgstr ""
+
+#: ../draklive-install:317
+msgid "No partition available"
+msgstr ""
+
+#: ../draklive-install:320
+msgid "Scanning partitions to find mount points"
+msgstr ""
+
+#: ../draklive-install:327
+msgid "Choose the mount points"
+msgstr ""
+
+#: ../draklive-install:328
+msgid "Partitioning"
+msgstr ""
+
+#: ../draklive-install:361
+msgid "none"
+msgstr ""
+
+#: ../draklive-install:363
+#, c-format
+msgid "Duplicate mount point %s"
+msgstr ""
+
+#: ../draklive-install:389
+msgid "Continue anyway?"
+msgstr ""
+
+#: ../draklive-install:394
+msgid "Quit without saving"
+msgstr ""
+
+#: ../draklive-install:394
+msgid "Quit without writing the partition table?"
+msgstr ""
+
+#: ../draklive-install:400
+msgid "Do you want to save /etc/fstab modifications"
+msgstr ""
+
+#: ../draklive-install:412
+#, c-format
+msgid "You should format partition %s."
+msgstr ""
+
+#: ../draklive-install:414
+msgid ""
+", $part->{device}, $part->{mntpoint})) or return if $::isStandalone && 0; #- "
+"no, please"
+msgstr ""
+
+#: ../install_interactive.pm:22
+#, perl-format
+msgid ""
+"Some hardware on your computer needs ``proprietary'' drivers to work.\n"
+"You can find some information about them at: %s"
+msgstr ""
+
+#: ../install_interactive.pm:62
+msgid ""
+"You must have a root partition.\n"
+"For this, create a partition (or click on an existing one).\n"
+"Then choose action ``Mount point'' and set it to `/'"
+msgstr ""
+
+#: ../install_interactive.pm:67
+msgid ""
+"You do not have a swap partition.\n"
+"\n"
+"Continue anyway?"
+msgstr ""
+
+#: ../install_interactive.pm:70
+msgid "You must have a FAT partition mounted in /boot/efi"
+msgstr ""
+
+#: ../install_interactive.pm:95
+msgid "Use free space"
+msgstr ""
+
+#: ../install_interactive.pm:97
+msgid "Not enough free space to allocate new partitions"
+msgstr ""
+
+#: ../install_interactive.pm:105
+msgid "Use existing partitions"
+msgstr ""
+
+#: ../install_interactive.pm:107
+msgid "There is no existing partition to use"
+msgstr ""
+
+#: ../install_interactive.pm:114
+msgid "Use the Windows partition for loopback"
+msgstr ""
+
+#: ../install_interactive.pm:117
+msgid "Which partition do you want to use for Linux4Win?"
+msgstr ""
+
+#: ../install_interactive.pm:119
+msgid "Choose the sizes"
+msgstr ""
+
+#: ../install_interactive.pm:120
+msgid "Root partition size in MB: "
+msgstr ""
+
+#: ../install_interactive.pm:121
+msgid "Swap partition size in MB: "
+msgstr ""
+
+#: ../install_interactive.pm:130
+msgid "There is no FAT partition to use as loopback (or not enough space left)"
+msgstr ""
+
+#: ../install_interactive.pm:137
+msgid "Use the free space on the Windows partition"
+msgstr ""
+
+#: ../install_interactive.pm:139
+msgid "Which partition do you want to resize?"
+msgstr ""
+
+#: ../install_interactive.pm:153
+#, perl-format
+msgid ""
+"The FAT resizer is unable to handle your partition, \n"
+"the following error occurred: %s"
+msgstr ""
+
+#: ../install_interactive.pm:156
+msgid "Computing the size of the Windows partition"
+msgstr ""
+
+#: ../install_interactive.pm:156 ../install_interactive.pm:188
+msgid "Resizing"
+msgstr ""
+
+#: ../install_interactive.pm:163
+msgid ""
+"Your Windows partition is too fragmented. Please reboot your computer under "
+"Windows, run the ``defrag'' utility, then restart the Mandriva Linux "
+"installation."
+msgstr ""
+
+#: ../install_interactive.pm:166
+msgid ""
+"WARNING!\n"
+"\n"
+"DrakX will now resize your Windows partition. Be careful: this\n"
+"operation is dangerous. If you have not already done so, you\n"
+"first need to exit the installation, run \"chkdsk c:\" from a\n"
+"Command Prompt under Windows (beware, running graphical program\n"
+"\"scandisk\" is not enough, be sure to use \"chkdsk\" in a\n"
+"Command Prompt!), optionally run defrag, then restart the\n"
+"installation. You should also backup your data.\n"
+"When sure, press Ok."
+msgstr ""
+
+#: ../install_interactive.pm:178
+msgid "Which size do you want to keep for Windows on"
+msgstr ""
+
+#: ../install_interactive.pm:179
+#, perl-format
+msgid "partition %s"
+msgstr ""
+
+#: ../install_interactive.pm:188
+msgid "Resizing Windows partition"
+msgstr ""
+
+#: ../install_interactive.pm:193
+#, perl-format
+msgid "FAT resizing failed: %s"
+msgstr ""
+
+#: ../install_interactive.pm:196
+msgid ""
+"To ensure data integrity after resizing the partition(s), \n"
+"filesystem checks will be run on your next boot into Windows(TM)"
+msgstr ""
+
+#: ../install_interactive.pm:208
+msgid "There is no FAT partition to resize (or not enough space left)"
+msgstr ""
+
+#: ../install_interactive.pm:213
+msgid "Erase and use entire disk"
+msgstr ""
+
+#: ../install_interactive.pm:213
+msgid "Remove Windows(TM)"
+msgstr ""
+
+#: ../install_interactive.pm:215
+msgid "You have more than one hard drive, which one do you install linux on?"
+msgstr ""
+
+#: ../install_interactive.pm:219
+#, perl-format
+msgid "ALL existing partitions and their data will be lost on drive %s"
+msgstr ""
+
+#: ../install_interactive.pm:228
+msgid "Custom disk partitioning"
+msgstr ""
+
+#: ../install_interactive.pm:232
+msgid "Use fdisk"
+msgstr ""
+
+#: ../install_interactive.pm:235
+#, perl-format
+msgid ""
+"You can now partition %s.\n"
+"When you are done, do not forget to save using `w'"
+msgstr ""
+
+#: ../install_interactive.pm:271
+msgid "I can not find any room for installing"
+msgstr ""
+
+#: ../install_interactive.pm:275
+msgid "The DrakX Partitioning wizard found the following solutions:"
+msgstr ""
+
+#: ../install_interactive.pm:281
+#, perl-format
+msgid "Partitioning failed: %s"
+msgstr ""
+
+#: ../install_interactive.pm:288
+msgid "Bringing up the network"
+msgstr ""
+
+#: ../install_interactive.pm:293
+msgid "Bringing down the network"
+msgstr ""
diff --git a/live/draklive-install/po/cs.po b/live/draklive-install/po/cs.po
new file mode 100644
index 000000000..f16c11e32
--- /dev/null
+++ b/live/draklive-install/po/cs.po
@@ -0,0 +1,300 @@
+#: ../draklive-install:59
+msgid "Mandriva Live"
+msgstr ""
+
+#: ../draklive-install:65
+msgid "This wizard will help you to install the live distribution."
+msgstr ""
+
+#: ../draklive-install:83
+msgid "Computing total size"
+msgstr ""
+
+#: ../draklive-install:95
+msgid "Copying in progress"
+msgstr ""
+
+#: ../draklive-install:163
+msgid "Congratulations"
+msgstr ""
+
+#: ../draklive-install:163
+msgid ""
+"Please halt your computer, remove your live system, and restart your "
+"computer."
+msgstr ""
+
+#: ../draklive-install:179 ../draklive-install:407
+msgid "You need to reboot for the partition table modifications to take place"
+msgstr ""
+
+#: ../draklive-install:230
+msgid "Choose the partitions you want to format"
+msgstr ""
+
+#: ../draklive-install:232
+msgid "Check bad blocks?"
+msgstr ""
+
+#: ../draklive-install:261
+#, c-format
+msgid "Failed to check filesystem %s. Do you want to repair the errors?"
+msgstr ""
+
+#: ../draklive-install:262
+msgid ", $1), 1);"
+msgstr ""
+
+#: ../draklive-install:265
+msgid "Not enough swap space to fulfill installation, please add some"
+msgstr ""
+
+#: ../draklive-install:284
+msgid "$d/$l{$_}"
+msgstr ""
+
+#: ../draklive-install:285
+msgid "$d/.bashrc"
+msgstr ""
+
+#: ../draklive-install:317
+msgid "No partition available"
+msgstr ""
+
+#: ../draklive-install:320
+msgid "Scanning partitions to find mount points"
+msgstr ""
+
+#: ../draklive-install:327
+msgid "Choose the mount points"
+msgstr ""
+
+#: ../draklive-install:328
+msgid "Partitioning"
+msgstr ""
+
+#: ../draklive-install:361
+msgid "none"
+msgstr ""
+
+#: ../draklive-install:363
+#, c-format
+msgid "Duplicate mount point %s"
+msgstr ""
+
+#: ../draklive-install:389
+msgid "Continue anyway?"
+msgstr ""
+
+#: ../draklive-install:394
+msgid "Quit without saving"
+msgstr ""
+
+#: ../draklive-install:394
+msgid "Quit without writing the partition table?"
+msgstr ""
+
+#: ../draklive-install:400
+msgid "Do you want to save /etc/fstab modifications"
+msgstr ""
+
+#: ../draklive-install:412
+#, c-format
+msgid "You should format partition %s."
+msgstr ""
+
+#: ../draklive-install:414
+msgid ""
+", $part->{device}, $part->{mntpoint})) or return if $::isStandalone && 0; #- "
+"no, please"
+msgstr ""
+
+#: ../install_interactive.pm:22
+#, perl-format
+msgid ""
+"Some hardware on your computer needs ``proprietary'' drivers to work.\n"
+"You can find some information about them at: %s"
+msgstr ""
+
+#: ../install_interactive.pm:62
+msgid ""
+"You must have a root partition.\n"
+"For this, create a partition (or click on an existing one).\n"
+"Then choose action ``Mount point'' and set it to `/'"
+msgstr ""
+
+#: ../install_interactive.pm:67
+msgid ""
+"You do not have a swap partition.\n"
+"\n"
+"Continue anyway?"
+msgstr ""
+
+#: ../install_interactive.pm:70
+msgid "You must have a FAT partition mounted in /boot/efi"
+msgstr ""
+
+#: ../install_interactive.pm:95
+msgid "Use free space"
+msgstr ""
+
+#: ../install_interactive.pm:97
+msgid "Not enough free space to allocate new partitions"
+msgstr ""
+
+#: ../install_interactive.pm:105
+msgid "Use existing partitions"
+msgstr ""
+
+#: ../install_interactive.pm:107
+msgid "There is no existing partition to use"
+msgstr ""
+
+#: ../install_interactive.pm:114
+msgid "Use the Windows partition for loopback"
+msgstr ""
+
+#: ../install_interactive.pm:117
+msgid "Which partition do you want to use for Linux4Win?"
+msgstr ""
+
+#: ../install_interactive.pm:119
+msgid "Choose the sizes"
+msgstr ""
+
+#: ../install_interactive.pm:120
+msgid "Root partition size in MB: "
+msgstr ""
+
+#: ../install_interactive.pm:121
+msgid "Swap partition size in MB: "
+msgstr ""
+
+#: ../install_interactive.pm:130
+msgid "There is no FAT partition to use as loopback (or not enough space left)"
+msgstr ""
+
+#: ../install_interactive.pm:137
+msgid "Use the free space on the Windows partition"
+msgstr ""
+
+#: ../install_interactive.pm:139
+msgid "Which partition do you want to resize?"
+msgstr ""
+
+#: ../install_interactive.pm:153
+#, perl-format
+msgid ""
+"The FAT resizer is unable to handle your partition, \n"
+"the following error occurred: %s"
+msgstr ""
+
+#: ../install_interactive.pm:156
+msgid "Computing the size of the Windows partition"
+msgstr ""
+
+#: ../install_interactive.pm:156 ../install_interactive.pm:188
+msgid "Resizing"
+msgstr ""
+
+#: ../install_interactive.pm:163
+msgid ""
+"Your Windows partition is too fragmented. Please reboot your computer under "
+"Windows, run the ``defrag'' utility, then restart the Mandriva Linux "
+"installation."
+msgstr ""
+
+#: ../install_interactive.pm:166
+msgid ""
+"WARNING!\n"
+"\n"
+"DrakX will now resize your Windows partition. Be careful: this\n"
+"operation is dangerous. If you have not already done so, you\n"
+"first need to exit the installation, run \"chkdsk c:\" from a\n"
+"Command Prompt under Windows (beware, running graphical program\n"
+"\"scandisk\" is not enough, be sure to use \"chkdsk\" in a\n"
+"Command Prompt!), optionally run defrag, then restart the\n"
+"installation. You should also backup your data.\n"
+"When sure, press Ok."
+msgstr ""
+
+#: ../install_interactive.pm:178
+msgid "Which size do you want to keep for Windows on"
+msgstr ""
+
+#: ../install_interactive.pm:179
+#, perl-format
+msgid "partition %s"
+msgstr ""
+
+#: ../install_interactive.pm:188
+msgid "Resizing Windows partition"
+msgstr ""
+
+#: ../install_interactive.pm:193
+#, perl-format
+msgid "FAT resizing failed: %s"
+msgstr ""
+
+#: ../install_interactive.pm:196
+msgid ""
+"To ensure data integrity after resizing the partition(s), \n"
+"filesystem checks will be run on your next boot into Windows(TM)"
+msgstr ""
+
+#: ../install_interactive.pm:208
+msgid "There is no FAT partition to resize (or not enough space left)"
+msgstr ""
+
+#: ../install_interactive.pm:213
+msgid "Erase and use entire disk"
+msgstr ""
+
+#: ../install_interactive.pm:213
+msgid "Remove Windows(TM)"
+msgstr ""
+
+#: ../install_interactive.pm:215
+msgid "You have more than one hard drive, which one do you install linux on?"
+msgstr ""
+
+#: ../install_interactive.pm:219
+#, perl-format
+msgid "ALL existing partitions and their data will be lost on drive %s"
+msgstr ""
+
+#: ../install_interactive.pm:228
+msgid "Custom disk partitioning"
+msgstr ""
+
+#: ../install_interactive.pm:232
+msgid "Use fdisk"
+msgstr ""
+
+#: ../install_interactive.pm:235
+#, perl-format
+msgid ""
+"You can now partition %s.\n"
+"When you are done, do not forget to save using `w'"
+msgstr ""
+
+#: ../install_interactive.pm:271
+msgid "I can not find any room for installing"
+msgstr ""
+
+#: ../install_interactive.pm:275
+msgid "The DrakX Partitioning wizard found the following solutions:"
+msgstr ""
+
+#: ../install_interactive.pm:281
+#, perl-format
+msgid "Partitioning failed: %s"
+msgstr ""
+
+#: ../install_interactive.pm:288
+msgid "Bringing up the network"
+msgstr ""
+
+#: ../install_interactive.pm:293
+msgid "Bringing down the network"
+msgstr ""
diff --git a/live/draklive-install/po/cy.po b/live/draklive-install/po/cy.po
new file mode 100644
index 000000000..f16c11e32
--- /dev/null
+++ b/live/draklive-install/po/cy.po
@@ -0,0 +1,300 @@
+#: ../draklive-install:59
+msgid "Mandriva Live"
+msgstr ""
+
+#: ../draklive-install:65
+msgid "This wizard will help you to install the live distribution."
+msgstr ""
+
+#: ../draklive-install:83
+msgid "Computing total size"
+msgstr ""
+
+#: ../draklive-install:95
+msgid "Copying in progress"
+msgstr ""
+
+#: ../draklive-install:163
+msgid "Congratulations"
+msgstr ""
+
+#: ../draklive-install:163
+msgid ""
+"Please halt your computer, remove your live system, and restart your "
+"computer."
+msgstr ""
+
+#: ../draklive-install:179 ../draklive-install:407
+msgid "You need to reboot for the partition table modifications to take place"
+msgstr ""
+
+#: ../draklive-install:230
+msgid "Choose the partitions you want to format"
+msgstr ""
+
+#: ../draklive-install:232
+msgid "Check bad blocks?"
+msgstr ""
+
+#: ../draklive-install:261
+#, c-format
+msgid "Failed to check filesystem %s. Do you want to repair the errors?"
+msgstr ""
+
+#: ../draklive-install:262
+msgid ", $1), 1);"
+msgstr ""
+
+#: ../draklive-install:265
+msgid "Not enough swap space to fulfill installation, please add some"
+msgstr ""
+
+#: ../draklive-install:284
+msgid "$d/$l{$_}"
+msgstr ""
+
+#: ../draklive-install:285
+msgid "$d/.bashrc"
+msgstr ""
+
+#: ../draklive-install:317
+msgid "No partition available"
+msgstr ""
+
+#: ../draklive-install:320
+msgid "Scanning partitions to find mount points"
+msgstr ""
+
+#: ../draklive-install:327
+msgid "Choose the mount points"
+msgstr ""
+
+#: ../draklive-install:328
+msgid "Partitioning"
+msgstr ""
+
+#: ../draklive-install:361
+msgid "none"
+msgstr ""
+
+#: ../draklive-install:363
+#, c-format
+msgid "Duplicate mount point %s"
+msgstr ""
+
+#: ../draklive-install:389
+msgid "Continue anyway?"
+msgstr ""
+
+#: ../draklive-install:394
+msgid "Quit without saving"
+msgstr ""
+
+#: ../draklive-install:394
+msgid "Quit without writing the partition table?"
+msgstr ""
+
+#: ../draklive-install:400
+msgid "Do you want to save /etc/fstab modifications"
+msgstr ""
+
+#: ../draklive-install:412
+#, c-format
+msgid "You should format partition %s."
+msgstr ""
+
+#: ../draklive-install:414
+msgid ""
+", $part->{device}, $part->{mntpoint})) or return if $::isStandalone && 0; #- "
+"no, please"
+msgstr ""
+
+#: ../install_interactive.pm:22
+#, perl-format
+msgid ""
+"Some hardware on your computer needs ``proprietary'' drivers to work.\n"
+"You can find some information about them at: %s"
+msgstr ""
+
+#: ../install_interactive.pm:62
+msgid ""
+"You must have a root partition.\n"
+"For this, create a partition (or click on an existing one).\n"
+"Then choose action ``Mount point'' and set it to `/'"
+msgstr ""
+
+#: ../install_interactive.pm:67
+msgid ""
+"You do not have a swap partition.\n"
+"\n"
+"Continue anyway?"
+msgstr ""
+
+#: ../install_interactive.pm:70
+msgid "You must have a FAT partition mounted in /boot/efi"
+msgstr ""
+
+#: ../install_interactive.pm:95
+msgid "Use free space"
+msgstr ""
+
+#: ../install_interactive.pm:97
+msgid "Not enough free space to allocate new partitions"
+msgstr ""
+
+#: ../install_interactive.pm:105
+msgid "Use existing partitions"
+msgstr ""
+
+#: ../install_interactive.pm:107
+msgid "There is no existing partition to use"
+msgstr ""
+
+#: ../install_interactive.pm:114
+msgid "Use the Windows partition for loopback"
+msgstr ""
+
+#: ../install_interactive.pm:117
+msgid "Which partition do you want to use for Linux4Win?"
+msgstr ""
+
+#: ../install_interactive.pm:119
+msgid "Choose the sizes"
+msgstr ""
+
+#: ../install_interactive.pm:120
+msgid "Root partition size in MB: "
+msgstr ""
+
+#: ../install_interactive.pm:121
+msgid "Swap partition size in MB: "
+msgstr ""
+
+#: ../install_interactive.pm:130
+msgid "There is no FAT partition to use as loopback (or not enough space left)"
+msgstr ""
+
+#: ../install_interactive.pm:137
+msgid "Use the free space on the Windows partition"
+msgstr ""
+
+#: ../install_interactive.pm:139
+msgid "Which partition do you want to resize?"
+msgstr ""
+
+#: ../install_interactive.pm:153
+#, perl-format
+msgid ""
+"The FAT resizer is unable to handle your partition, \n"
+"the following error occurred: %s"
+msgstr ""
+
+#: ../install_interactive.pm:156
+msgid "Computing the size of the Windows partition"
+msgstr ""
+
+#: ../install_interactive.pm:156 ../install_interactive.pm:188
+msgid "Resizing"
+msgstr ""
+
+#: ../install_interactive.pm:163
+msgid ""
+"Your Windows partition is too fragmented. Please reboot your computer under "
+"Windows, run the ``defrag'' utility, then restart the Mandriva Linux "
+"installation."
+msgstr ""
+
+#: ../install_interactive.pm:166
+msgid ""
+"WARNING!\n"
+"\n"
+"DrakX will now resize your Windows partition. Be careful: this\n"
+"operation is dangerous. If you have not already done so, you\n"
+"first need to exit the installation, run \"chkdsk c:\" from a\n"
+"Command Prompt under Windows (beware, running graphical program\n"
+"\"scandisk\" is not enough, be sure to use \"chkdsk\" in a\n"
+"Command Prompt!), optionally run defrag, then restart the\n"
+"installation. You should also backup your data.\n"
+"When sure, press Ok."
+msgstr ""
+
+#: ../install_interactive.pm:178
+msgid "Which size do you want to keep for Windows on"
+msgstr ""
+
+#: ../install_interactive.pm:179
+#, perl-format
+msgid "partition %s"
+msgstr ""
+
+#: ../install_interactive.pm:188
+msgid "Resizing Windows partition"
+msgstr ""
+
+#: ../install_interactive.pm:193
+#, perl-format
+msgid "FAT resizing failed: %s"
+msgstr ""
+
+#: ../install_interactive.pm:196
+msgid ""
+"To ensure data integrity after resizing the partition(s), \n"
+"filesystem checks will be run on your next boot into Windows(TM)"
+msgstr ""
+
+#: ../install_interactive.pm:208
+msgid "There is no FAT partition to resize (or not enough space left)"
+msgstr ""
+
+#: ../install_interactive.pm:213
+msgid "Erase and use entire disk"
+msgstr ""
+
+#: ../install_interactive.pm:213
+msgid "Remove Windows(TM)"
+msgstr ""
+
+#: ../install_interactive.pm:215
+msgid "You have more than one hard drive, which one do you install linux on?"
+msgstr ""
+
+#: ../install_interactive.pm:219
+#, perl-format
+msgid "ALL existing partitions and their data will be lost on drive %s"
+msgstr ""
+
+#: ../install_interactive.pm:228
+msgid "Custom disk partitioning"
+msgstr ""
+
+#: ../install_interactive.pm:232
+msgid "Use fdisk"
+msgstr ""
+
+#: ../install_interactive.pm:235
+#, perl-format
+msgid ""
+"You can now partition %s.\n"
+"When you are done, do not forget to save using `w'"
+msgstr ""
+
+#: ../install_interactive.pm:271
+msgid "I can not find any room for installing"
+msgstr ""
+
+#: ../install_interactive.pm:275
+msgid "The DrakX Partitioning wizard found the following solutions:"
+msgstr ""
+
+#: ../install_interactive.pm:281
+#, perl-format
+msgid "Partitioning failed: %s"
+msgstr ""
+
+#: ../install_interactive.pm:288
+msgid "Bringing up the network"
+msgstr ""
+
+#: ../install_interactive.pm:293
+msgid "Bringing down the network"
+msgstr ""
diff --git a/live/draklive-install/po/da.po b/live/draklive-install/po/da.po
new file mode 100644
index 000000000..f16c11e32
--- /dev/null
+++ b/live/draklive-install/po/da.po
@@ -0,0 +1,300 @@
+#: ../draklive-install:59
+msgid "Mandriva Live"
+msgstr ""
+
+#: ../draklive-install:65
+msgid "This wizard will help you to install the live distribution."
+msgstr ""
+
+#: ../draklive-install:83
+msgid "Computing total size"
+msgstr ""
+
+#: ../draklive-install:95
+msgid "Copying in progress"
+msgstr ""
+
+#: ../draklive-install:163
+msgid "Congratulations"
+msgstr ""
+
+#: ../draklive-install:163
+msgid ""
+"Please halt your computer, remove your live system, and restart your "
+"computer."
+msgstr ""
+
+#: ../draklive-install:179 ../draklive-install:407
+msgid "You need to reboot for the partition table modifications to take place"
+msgstr ""
+
+#: ../draklive-install:230
+msgid "Choose the partitions you want to format"
+msgstr ""
+
+#: ../draklive-install:232
+msgid "Check bad blocks?"
+msgstr ""
+
+#: ../draklive-install:261
+#, c-format
+msgid "Failed to check filesystem %s. Do you want to repair the errors?"
+msgstr ""
+
+#: ../draklive-install:262
+msgid ", $1), 1);"
+msgstr ""
+
+#: ../draklive-install:265
+msgid "Not enough swap space to fulfill installation, please add some"
+msgstr ""
+
+#: ../draklive-install:284
+msgid "$d/$l{$_}"
+msgstr ""
+
+#: ../draklive-install:285
+msgid "$d/.bashrc"
+msgstr ""
+
+#: ../draklive-install:317
+msgid "No partition available"
+msgstr ""
+
+#: ../draklive-install:320
+msgid "Scanning partitions to find mount points"
+msgstr ""
+
+#: ../draklive-install:327
+msgid "Choose the mount points"
+msgstr ""
+
+#: ../draklive-install:328
+msgid "Partitioning"
+msgstr ""
+
+#: ../draklive-install:361
+msgid "none"
+msgstr ""
+
+#: ../draklive-install:363
+#, c-format
+msgid "Duplicate mount point %s"
+msgstr ""
+
+#: ../draklive-install:389
+msgid "Continue anyway?"
+msgstr ""
+
+#: ../draklive-install:394
+msgid "Quit without saving"
+msgstr ""
+
+#: ../draklive-install:394
+msgid "Quit without writing the partition table?"
+msgstr ""
+
+#: ../draklive-install:400
+msgid "Do you want to save /etc/fstab modifications"
+msgstr ""
+
+#: ../draklive-install:412
+#, c-format
+msgid "You should format partition %s."
+msgstr ""
+
+#: ../draklive-install:414
+msgid ""
+", $part->{device}, $part->{mntpoint})) or return if $::isStandalone && 0; #- "
+"no, please"
+msgstr ""
+
+#: ../install_interactive.pm:22
+#, perl-format
+msgid ""
+"Some hardware on your computer needs ``proprietary'' drivers to work.\n"
+"You can find some information about them at: %s"
+msgstr ""
+
+#: ../install_interactive.pm:62
+msgid ""
+"You must have a root partition.\n"
+"For this, create a partition (or click on an existing one).\n"
+"Then choose action ``Mount point'' and set it to `/'"
+msgstr ""
+
+#: ../install_interactive.pm:67
+msgid ""
+"You do not have a swap partition.\n"
+"\n"
+"Continue anyway?"
+msgstr ""
+
+#: ../install_interactive.pm:70
+msgid "You must have a FAT partition mounted in /boot/efi"
+msgstr ""
+
+#: ../install_interactive.pm:95
+msgid "Use free space"
+msgstr ""
+
+#: ../install_interactive.pm:97
+msgid "Not enough free space to allocate new partitions"
+msgstr ""
+
+#: ../install_interactive.pm:105
+msgid "Use existing partitions"
+msgstr ""
+
+#: ../install_interactive.pm:107
+msgid "There is no existing partition to use"
+msgstr ""
+
+#: ../install_interactive.pm:114
+msgid "Use the Windows partition for loopback"
+msgstr ""
+
+#: ../install_interactive.pm:117
+msgid "Which partition do you want to use for Linux4Win?"
+msgstr ""
+
+#: ../install_interactive.pm:119
+msgid "Choose the sizes"
+msgstr ""
+
+#: ../install_interactive.pm:120
+msgid "Root partition size in MB: "
+msgstr ""
+
+#: ../install_interactive.pm:121
+msgid "Swap partition size in MB: "
+msgstr ""
+
+#: ../install_interactive.pm:130
+msgid "There is no FAT partition to use as loopback (or not enough space left)"
+msgstr ""
+
+#: ../install_interactive.pm:137
+msgid "Use the free space on the Windows partition"
+msgstr ""
+
+#: ../install_interactive.pm:139
+msgid "Which partition do you want to resize?"
+msgstr ""
+
+#: ../install_interactive.pm:153
+#, perl-format
+msgid ""
+"The FAT resizer is unable to handle your partition, \n"
+"the following error occurred: %s"
+msgstr ""
+
+#: ../install_interactive.pm:156
+msgid "Computing the size of the Windows partition"
+msgstr ""
+
+#: ../install_interactive.pm:156 ../install_interactive.pm:188
+msgid "Resizing"
+msgstr ""
+
+#: ../install_interactive.pm:163
+msgid ""
+"Your Windows partition is too fragmented. Please reboot your computer under "
+"Windows, run the ``defrag'' utility, then restart the Mandriva Linux "
+"installation."
+msgstr ""
+
+#: ../install_interactive.pm:166
+msgid ""
+"WARNING!\n"
+"\n"
+"DrakX will now resize your Windows partition. Be careful: this\n"
+"operation is dangerous. If you have not already done so, you\n"
+"first need to exit the installation, run \"chkdsk c:\" from a\n"
+"Command Prompt under Windows (beware, running graphical program\n"
+"\"scandisk\" is not enough, be sure to use \"chkdsk\" in a\n"
+"Command Prompt!), optionally run defrag, then restart the\n"
+"installation. You should also backup your data.\n"
+"When sure, press Ok."
+msgstr ""
+
+#: ../install_interactive.pm:178
+msgid "Which size do you want to keep for Windows on"
+msgstr ""
+
+#: ../install_interactive.pm:179
+#, perl-format
+msgid "partition %s"
+msgstr ""
+
+#: ../install_interactive.pm:188
+msgid "Resizing Windows partition"
+msgstr ""
+
+#: ../install_interactive.pm:193
+#, perl-format
+msgid "FAT resizing failed: %s"
+msgstr ""
+
+#: ../install_interactive.pm:196
+msgid ""
+"To ensure data integrity after resizing the partition(s), \n"
+"filesystem checks will be run on your next boot into Windows(TM)"
+msgstr ""
+
+#: ../install_interactive.pm:208
+msgid "There is no FAT partition to resize (or not enough space left)"
+msgstr ""
+
+#: ../install_interactive.pm:213
+msgid "Erase and use entire disk"
+msgstr ""
+
+#: ../install_interactive.pm:213
+msgid "Remove Windows(TM)"
+msgstr ""
+
+#: ../install_interactive.pm:215
+msgid "You have more than one hard drive, which one do you install linux on?"
+msgstr ""
+
+#: ../install_interactive.pm:219
+#, perl-format
+msgid "ALL existing partitions and their data will be lost on drive %s"
+msgstr ""
+
+#: ../install_interactive.pm:228
+msgid "Custom disk partitioning"
+msgstr ""
+
+#: ../install_interactive.pm:232
+msgid "Use fdisk"
+msgstr ""
+
+#: ../install_interactive.pm:235
+#, perl-format
+msgid ""
+"You can now partition %s.\n"
+"When you are done, do not forget to save using `w'"
+msgstr ""
+
+#: ../install_interactive.pm:271
+msgid "I can not find any room for installing"
+msgstr ""
+
+#: ../install_interactive.pm:275
+msgid "The DrakX Partitioning wizard found the following solutions:"
+msgstr ""
+
+#: ../install_interactive.pm:281
+#, perl-format
+msgid "Partitioning failed: %s"
+msgstr ""
+
+#: ../install_interactive.pm:288
+msgid "Bringing up the network"
+msgstr ""
+
+#: ../install_interactive.pm:293
+msgid "Bringing down the network"
+msgstr ""
diff --git a/live/draklive-install/po/de.po b/live/draklive-install/po/de.po
new file mode 100644
index 000000000..f16c11e32
--- /dev/null
+++ b/live/draklive-install/po/de.po
@@ -0,0 +1,300 @@
+#: ../draklive-install:59
+msgid "Mandriva Live"
+msgstr ""
+
+#: ../draklive-install:65
+msgid "This wizard will help you to install the live distribution."
+msgstr ""
+
+#: ../draklive-install:83
+msgid "Computing total size"
+msgstr ""
+
+#: ../draklive-install:95
+msgid "Copying in progress"
+msgstr ""
+
+#: ../draklive-install:163
+msgid "Congratulations"
+msgstr ""
+
+#: ../draklive-install:163
+msgid ""
+"Please halt your computer, remove your live system, and restart your "
+"computer."
+msgstr ""
+
+#: ../draklive-install:179 ../draklive-install:407
+msgid "You need to reboot for the partition table modifications to take place"
+msgstr ""
+
+#: ../draklive-install:230
+msgid "Choose the partitions you want to format"
+msgstr ""
+
+#: ../draklive-install:232
+msgid "Check bad blocks?"
+msgstr ""
+
+#: ../draklive-install:261
+#, c-format
+msgid "Failed to check filesystem %s. Do you want to repair the errors?"
+msgstr ""
+
+#: ../draklive-install:262
+msgid ", $1), 1);"
+msgstr ""
+
+#: ../draklive-install:265
+msgid "Not enough swap space to fulfill installation, please add some"
+msgstr ""
+
+#: ../draklive-install:284
+msgid "$d/$l{$_}"
+msgstr ""
+
+#: ../draklive-install:285
+msgid "$d/.bashrc"
+msgstr ""
+
+#: ../draklive-install:317
+msgid "No partition available"
+msgstr ""
+
+#: ../draklive-install:320
+msgid "Scanning partitions to find mount points"
+msgstr ""
+
+#: ../draklive-install:327
+msgid "Choose the mount points"
+msgstr ""
+
+#: ../draklive-install:328
+msgid "Partitioning"
+msgstr ""
+
+#: ../draklive-install:361
+msgid "none"
+msgstr ""
+
+#: ../draklive-install:363
+#, c-format
+msgid "Duplicate mount point %s"
+msgstr ""
+
+#: ../draklive-install:389
+msgid "Continue anyway?"
+msgstr ""
+
+#: ../draklive-install:394
+msgid "Quit without saving"
+msgstr ""
+
+#: ../draklive-install:394
+msgid "Quit without writing the partition table?"
+msgstr ""
+
+#: ../draklive-install:400
+msgid "Do you want to save /etc/fstab modifications"
+msgstr ""
+
+#: ../draklive-install:412
+#, c-format
+msgid "You should format partition %s."
+msgstr ""
+
+#: ../draklive-install:414
+msgid ""
+", $part->{device}, $part->{mntpoint})) or return if $::isStandalone && 0; #- "
+"no, please"
+msgstr ""
+
+#: ../install_interactive.pm:22
+#, perl-format
+msgid ""
+"Some hardware on your computer needs ``proprietary'' drivers to work.\n"
+"You can find some information about them at: %s"
+msgstr ""
+
+#: ../install_interactive.pm:62
+msgid ""
+"You must have a root partition.\n"
+"For this, create a partition (or click on an existing one).\n"
+"Then choose action ``Mount point'' and set it to `/'"
+msgstr ""
+
+#: ../install_interactive.pm:67
+msgid ""
+"You do not have a swap partition.\n"
+"\n"
+"Continue anyway?"
+msgstr ""
+
+#: ../install_interactive.pm:70
+msgid "You must have a FAT partition mounted in /boot/efi"
+msgstr ""
+
+#: ../install_interactive.pm:95
+msgid "Use free space"
+msgstr ""
+
+#: ../install_interactive.pm:97
+msgid "Not enough free space to allocate new partitions"
+msgstr ""
+
+#: ../install_interactive.pm:105
+msgid "Use existing partitions"
+msgstr ""
+
+#: ../install_interactive.pm:107
+msgid "There is no existing partition to use"
+msgstr ""
+
+#: ../install_interactive.pm:114
+msgid "Use the Windows partition for loopback"
+msgstr ""
+
+#: ../install_interactive.pm:117
+msgid "Which partition do you want to use for Linux4Win?"
+msgstr ""
+
+#: ../install_interactive.pm:119
+msgid "Choose the sizes"
+msgstr ""
+
+#: ../install_interactive.pm:120
+msgid "Root partition size in MB: "
+msgstr ""
+
+#: ../install_interactive.pm:121
+msgid "Swap partition size in MB: "
+msgstr ""
+
+#: ../install_interactive.pm:130
+msgid "There is no FAT partition to use as loopback (or not enough space left)"
+msgstr ""
+
+#: ../install_interactive.pm:137
+msgid "Use the free space on the Windows partition"
+msgstr ""
+
+#: ../install_interactive.pm:139
+msgid "Which partition do you want to resize?"
+msgstr ""
+
+#: ../install_interactive.pm:153
+#, perl-format
+msgid ""
+"The FAT resizer is unable to handle your partition, \n"
+"the following error occurred: %s"
+msgstr ""
+
+#: ../install_interactive.pm:156
+msgid "Computing the size of the Windows partition"
+msgstr ""
+
+#: ../install_interactive.pm:156 ../install_interactive.pm:188
+msgid "Resizing"
+msgstr ""
+
+#: ../install_interactive.pm:163
+msgid ""
+"Your Windows partition is too fragmented. Please reboot your computer under "
+"Windows, run the ``defrag'' utility, then restart the Mandriva Linux "
+"installation."
+msgstr ""
+
+#: ../install_interactive.pm:166
+msgid ""
+"WARNING!\n"
+"\n"
+"DrakX will now resize your Windows partition. Be careful: this\n"
+"operation is dangerous. If you have not already done so, you\n"
+"first need to exit the installation, run \"chkdsk c:\" from a\n"
+"Command Prompt under Windows (beware, running graphical program\n"
+"\"scandisk\" is not enough, be sure to use \"chkdsk\" in a\n"
+"Command Prompt!), optionally run defrag, then restart the\n"
+"installation. You should also backup your data.\n"
+"When sure, press Ok."
+msgstr ""
+
+#: ../install_interactive.pm:178
+msgid "Which size do you want to keep for Windows on"
+msgstr ""
+
+#: ../install_interactive.pm:179
+#, perl-format
+msgid "partition %s"
+msgstr ""
+
+#: ../install_interactive.pm:188
+msgid "Resizing Windows partition"
+msgstr ""
+
+#: ../install_interactive.pm:193
+#, perl-format
+msgid "FAT resizing failed: %s"
+msgstr ""
+
+#: ../install_interactive.pm:196
+msgid ""
+"To ensure data integrity after resizing the partition(s), \n"
+"filesystem checks will be run on your next boot into Windows(TM)"
+msgstr ""
+
+#: ../install_interactive.pm:208
+msgid "There is no FAT partition to resize (or not enough space left)"
+msgstr ""
+
+#: ../install_interactive.pm:213
+msgid "Erase and use entire disk"
+msgstr ""
+
+#: ../install_interactive.pm:213
+msgid "Remove Windows(TM)"
+msgstr ""
+
+#: ../install_interactive.pm:215
+msgid "You have more than one hard drive, which one do you install linux on?"
+msgstr ""
+
+#: ../install_interactive.pm:219
+#, perl-format
+msgid "ALL existing partitions and their data will be lost on drive %s"
+msgstr ""
+
+#: ../install_interactive.pm:228
+msgid "Custom disk partitioning"
+msgstr ""
+
+#: ../install_interactive.pm:232
+msgid "Use fdisk"
+msgstr ""
+
+#: ../install_interactive.pm:235
+#, perl-format
+msgid ""
+"You can now partition %s.\n"
+"When you are done, do not forget to save using `w'"
+msgstr ""
+
+#: ../install_interactive.pm:271
+msgid "I can not find any room for installing"
+msgstr ""
+
+#: ../install_interactive.pm:275
+msgid "The DrakX Partitioning wizard found the following solutions:"
+msgstr ""
+
+#: ../install_interactive.pm:281
+#, perl-format
+msgid "Partitioning failed: %s"
+msgstr ""
+
+#: ../install_interactive.pm:288
+msgid "Bringing up the network"
+msgstr ""
+
+#: ../install_interactive.pm:293
+msgid "Bringing down the network"
+msgstr ""
diff --git a/live/draklive-install/po/draklive-install.pot b/live/draklive-install/po/draklive-install.pot
new file mode 100644
index 000000000..40f70faa3
--- /dev/null
+++ b/live/draklive-install/po/draklive-install.pot
@@ -0,0 +1,318 @@
+# SOME DESCRIPTIVE TITLE.
+# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
+# This file is distributed under the same license as the PACKAGE package.
+# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
+#
+#, fuzzy
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2006-02-23 12:44+0100\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=CHARSET\n"
+"Content-Transfer-Encoding: 8bit\n"
+
+#: ../draklive-install:59
+msgid "Mandriva Live"
+msgstr ""
+
+#: ../draklive-install:65
+msgid "This wizard will help you to install the live distribution."
+msgstr ""
+
+#: ../draklive-install:83
+msgid "Computing total size"
+msgstr ""
+
+#: ../draklive-install:95
+msgid "Copying in progress"
+msgstr ""
+
+#: ../draklive-install:163
+msgid "Congratulations"
+msgstr ""
+
+#: ../draklive-install:163
+msgid ""
+"Please halt your computer, remove your live system, and restart your "
+"computer."
+msgstr ""
+
+#: ../draklive-install:179 ../draklive-install:407
+msgid "You need to reboot for the partition table modifications to take place"
+msgstr ""
+
+#: ../draklive-install:230
+msgid "Choose the partitions you want to format"
+msgstr ""
+
+#: ../draklive-install:232
+msgid "Check bad blocks?"
+msgstr ""
+
+#: ../draklive-install:261
+#, c-format
+msgid "Failed to check filesystem %s. Do you want to repair the errors?"
+msgstr ""
+
+#: ../draklive-install:262
+msgid ", $1), 1);"
+msgstr ""
+
+#: ../draklive-install:265
+msgid "Not enough swap space to fulfill installation, please add some"
+msgstr ""
+
+#: ../draklive-install:284
+msgid "$d/$l{$_}"
+msgstr ""
+
+#: ../draklive-install:285
+msgid "$d/.bashrc"
+msgstr ""
+
+#: ../draklive-install:317
+msgid "No partition available"
+msgstr ""
+
+#: ../draklive-install:320
+msgid "Scanning partitions to find mount points"
+msgstr ""
+
+#: ../draklive-install:327
+msgid "Choose the mount points"
+msgstr ""
+
+#: ../draklive-install:328
+msgid "Partitioning"
+msgstr ""
+
+#: ../draklive-install:361
+msgid "none"
+msgstr ""
+
+#: ../draklive-install:363
+#, c-format
+msgid "Duplicate mount point %s"
+msgstr ""
+
+#: ../draklive-install:389
+msgid "Continue anyway?"
+msgstr ""
+
+#: ../draklive-install:394
+msgid "Quit without saving"
+msgstr ""
+
+#: ../draklive-install:394
+msgid "Quit without writing the partition table?"
+msgstr ""
+
+#: ../draklive-install:400
+msgid "Do you want to save /etc/fstab modifications"
+msgstr ""
+
+#: ../draklive-install:412
+#, c-format
+msgid "You should format partition %s."
+msgstr ""
+
+#: ../draklive-install:414
+msgid ""
+", $part->{device}, $part->{mntpoint})) or return if $::isStandalone && 0; #- "
+"no, please"
+msgstr ""
+
+#: ../install_interactive.pm:22
+#, perl-format
+msgid ""
+"Some hardware on your computer needs ``proprietary'' drivers to work.\n"
+"You can find some information about them at: %s"
+msgstr ""
+
+#: ../install_interactive.pm:62
+msgid ""
+"You must have a root partition.\n"
+"For this, create a partition (or click on an existing one).\n"
+"Then choose action ``Mount point'' and set it to `/'"
+msgstr ""
+
+#: ../install_interactive.pm:67
+msgid ""
+"You do not have a swap partition.\n"
+"\n"
+"Continue anyway?"
+msgstr ""
+
+#: ../install_interactive.pm:70
+msgid "You must have a FAT partition mounted in /boot/efi"
+msgstr ""
+
+#: ../install_interactive.pm:95
+msgid "Use free space"
+msgstr ""
+
+#: ../install_interactive.pm:97
+msgid "Not enough free space to allocate new partitions"
+msgstr ""
+
+#: ../install_interactive.pm:105
+msgid "Use existing partitions"
+msgstr ""
+
+#: ../install_interactive.pm:107
+msgid "There is no existing partition to use"
+msgstr ""
+
+#: ../install_interactive.pm:114
+msgid "Use the Windows partition for loopback"
+msgstr ""
+
+#: ../install_interactive.pm:117
+msgid "Which partition do you want to use for Linux4Win?"
+msgstr ""
+
+#: ../install_interactive.pm:119
+msgid "Choose the sizes"
+msgstr ""
+
+#: ../install_interactive.pm:120
+msgid "Root partition size in MB: "
+msgstr ""
+
+#: ../install_interactive.pm:121
+msgid "Swap partition size in MB: "
+msgstr ""
+
+#: ../install_interactive.pm:130
+msgid "There is no FAT partition to use as loopback (or not enough space left)"
+msgstr ""
+
+#: ../install_interactive.pm:137
+msgid "Use the free space on the Windows partition"
+msgstr ""
+
+#: ../install_interactive.pm:139
+msgid "Which partition do you want to resize?"
+msgstr ""
+
+#: ../install_interactive.pm:153
+#, perl-format
+msgid ""
+"The FAT resizer is unable to handle your partition, \n"
+"the following error occurred: %s"
+msgstr ""
+
+#: ../install_interactive.pm:156
+msgid "Computing the size of the Windows partition"
+msgstr ""
+
+#: ../install_interactive.pm:156 ../install_interactive.pm:188
+msgid "Resizing"
+msgstr ""
+
+#: ../install_interactive.pm:163
+msgid ""
+"Your Windows partition is too fragmented. Please reboot your computer under "
+"Windows, run the ``defrag'' utility, then restart the Mandriva Linux "
+"installation."
+msgstr ""
+
+#: ../install_interactive.pm:166
+msgid ""
+"WARNING!\n"
+"\n"
+"DrakX will now resize your Windows partition. Be careful: this\n"
+"operation is dangerous. If you have not already done so, you\n"
+"first need to exit the installation, run \"chkdsk c:\" from a\n"
+"Command Prompt under Windows (beware, running graphical program\n"
+"\"scandisk\" is not enough, be sure to use \"chkdsk\" in a\n"
+"Command Prompt!), optionally run defrag, then restart the\n"
+"installation. You should also backup your data.\n"
+"When sure, press Ok."
+msgstr ""
+
+#: ../install_interactive.pm:178
+msgid "Which size do you want to keep for Windows on"
+msgstr ""
+
+#: ../install_interactive.pm:179
+#, perl-format
+msgid "partition %s"
+msgstr ""
+
+#: ../install_interactive.pm:188
+msgid "Resizing Windows partition"
+msgstr ""
+
+#: ../install_interactive.pm:193
+#, perl-format
+msgid "FAT resizing failed: %s"
+msgstr ""
+
+#: ../install_interactive.pm:196
+msgid ""
+"To ensure data integrity after resizing the partition(s), \n"
+"filesystem checks will be run on your next boot into Windows(TM)"
+msgstr ""
+
+#: ../install_interactive.pm:208
+msgid "There is no FAT partition to resize (or not enough space left)"
+msgstr ""
+
+#: ../install_interactive.pm:213
+msgid "Erase and use entire disk"
+msgstr ""
+
+#: ../install_interactive.pm:213
+msgid "Remove Windows(TM)"
+msgstr ""
+
+#: ../install_interactive.pm:215
+msgid "You have more than one hard drive, which one do you install linux on?"
+msgstr ""
+
+#: ../install_interactive.pm:219
+#, perl-format
+msgid "ALL existing partitions and their data will be lost on drive %s"
+msgstr ""
+
+#: ../install_interactive.pm:228
+msgid "Custom disk partitioning"
+msgstr ""
+
+#: ../install_interactive.pm:232
+msgid "Use fdisk"
+msgstr ""
+
+#: ../install_interactive.pm:235
+#, perl-format
+msgid ""
+"You can now partition %s.\n"
+"When you are done, do not forget to save using `w'"
+msgstr ""
+
+#: ../install_interactive.pm:271
+msgid "I can not find any room for installing"
+msgstr ""
+
+#: ../install_interactive.pm:275
+msgid "The DrakX Partitioning wizard found the following solutions:"
+msgstr ""
+
+#: ../install_interactive.pm:281
+#, perl-format
+msgid "Partitioning failed: %s"
+msgstr ""
+
+#: ../install_interactive.pm:288
+msgid "Bringing up the network"
+msgstr ""
+
+#: ../install_interactive.pm:293
+msgid "Bringing down the network"
+msgstr ""
diff --git a/live/draklive-install/po/el.po b/live/draklive-install/po/el.po
new file mode 100644
index 000000000..f16c11e32
--- /dev/null
+++ b/live/draklive-install/po/el.po
@@ -0,0 +1,300 @@
+#: ../draklive-install:59
+msgid "Mandriva Live"
+msgstr ""
+
+#: ../draklive-install:65
+msgid "This wizard will help you to install the live distribution."
+msgstr ""
+
+#: ../draklive-install:83
+msgid "Computing total size"
+msgstr ""
+
+#: ../draklive-install:95
+msgid "Copying in progress"
+msgstr ""
+
+#: ../draklive-install:163
+msgid "Congratulations"
+msgstr ""
+
+#: ../draklive-install:163
+msgid ""
+"Please halt your computer, remove your live system, and restart your "
+"computer."
+msgstr ""
+
+#: ../draklive-install:179 ../draklive-install:407
+msgid "You need to reboot for the partition table modifications to take place"
+msgstr ""
+
+#: ../draklive-install:230
+msgid "Choose the partitions you want to format"
+msgstr ""
+
+#: ../draklive-install:232
+msgid "Check bad blocks?"
+msgstr ""
+
+#: ../draklive-install:261
+#, c-format
+msgid "Failed to check filesystem %s. Do you want to repair the errors?"
+msgstr ""
+
+#: ../draklive-install:262
+msgid ", $1), 1);"
+msgstr ""
+
+#: ../draklive-install:265
+msgid "Not enough swap space to fulfill installation, please add some"
+msgstr ""
+
+#: ../draklive-install:284
+msgid "$d/$l{$_}"
+msgstr ""
+
+#: ../draklive-install:285
+msgid "$d/.bashrc"
+msgstr ""
+
+#: ../draklive-install:317
+msgid "No partition available"
+msgstr ""
+
+#: ../draklive-install:320
+msgid "Scanning partitions to find mount points"
+msgstr ""
+
+#: ../draklive-install:327
+msgid "Choose the mount points"
+msgstr ""
+
+#: ../draklive-install:328
+msgid "Partitioning"
+msgstr ""
+
+#: ../draklive-install:361
+msgid "none"
+msgstr ""
+
+#: ../draklive-install:363
+#, c-format
+msgid "Duplicate mount point %s"
+msgstr ""
+
+#: ../draklive-install:389
+msgid "Continue anyway?"
+msgstr ""
+
+#: ../draklive-install:394
+msgid "Quit without saving"
+msgstr ""
+
+#: ../draklive-install:394
+msgid "Quit without writing the partition table?"
+msgstr ""
+
+#: ../draklive-install:400
+msgid "Do you want to save /etc/fstab modifications"
+msgstr ""
+
+#: ../draklive-install:412
+#, c-format
+msgid "You should format partition %s."
+msgstr ""
+
+#: ../draklive-install:414
+msgid ""
+", $part->{device}, $part->{mntpoint})) or return if $::isStandalone && 0; #- "
+"no, please"
+msgstr ""
+
+#: ../install_interactive.pm:22
+#, perl-format
+msgid ""
+"Some hardware on your computer needs ``proprietary'' drivers to work.\n"
+"You can find some information about them at: %s"
+msgstr ""
+
+#: ../install_interactive.pm:62
+msgid ""
+"You must have a root partition.\n"
+"For this, create a partition (or click on an existing one).\n"
+"Then choose action ``Mount point'' and set it to `/'"
+msgstr ""
+
+#: ../install_interactive.pm:67
+msgid ""
+"You do not have a swap partition.\n"
+"\n"
+"Continue anyway?"
+msgstr ""
+
+#: ../install_interactive.pm:70
+msgid "You must have a FAT partition mounted in /boot/efi"
+msgstr ""
+
+#: ../install_interactive.pm:95
+msgid "Use free space"
+msgstr ""
+
+#: ../install_interactive.pm:97
+msgid "Not enough free space to allocate new partitions"
+msgstr ""
+
+#: ../install_interactive.pm:105
+msgid "Use existing partitions"
+msgstr ""
+
+#: ../install_interactive.pm:107
+msgid "There is no existing partition to use"
+msgstr ""
+
+#: ../install_interactive.pm:114
+msgid "Use the Windows partition for loopback"
+msgstr ""
+
+#: ../install_interactive.pm:117
+msgid "Which partition do you want to use for Linux4Win?"
+msgstr ""
+
+#: ../install_interactive.pm:119
+msgid "Choose the sizes"
+msgstr ""
+
+#: ../install_interactive.pm:120
+msgid "Root partition size in MB: "
+msgstr ""
+
+#: ../install_interactive.pm:121
+msgid "Swap partition size in MB: "
+msgstr ""
+
+#: ../install_interactive.pm:130
+msgid "There is no FAT partition to use as loopback (or not enough space left)"
+msgstr ""
+
+#: ../install_interactive.pm:137
+msgid "Use the free space on the Windows partition"
+msgstr ""
+
+#: ../install_interactive.pm:139
+msgid "Which partition do you want to resize?"
+msgstr ""
+
+#: ../install_interactive.pm:153
+#, perl-format
+msgid ""
+"The FAT resizer is unable to handle your partition, \n"
+"the following error occurred: %s"
+msgstr ""
+
+#: ../install_interactive.pm:156
+msgid "Computing the size of the Windows partition"
+msgstr ""
+
+#: ../install_interactive.pm:156 ../install_interactive.pm:188
+msgid "Resizing"
+msgstr ""
+
+#: ../install_interactive.pm:163
+msgid ""
+"Your Windows partition is too fragmented. Please reboot your computer under "
+"Windows, run the ``defrag'' utility, then restart the Mandriva Linux "
+"installation."
+msgstr ""
+
+#: ../install_interactive.pm:166
+msgid ""
+"WARNING!\n"
+"\n"
+"DrakX will now resize your Windows partition. Be careful: this\n"
+"operation is dangerous. If you have not already done so, you\n"
+"first need to exit the installation, run \"chkdsk c:\" from a\n"
+"Command Prompt under Windows (beware, running graphical program\n"
+"\"scandisk\" is not enough, be sure to use \"chkdsk\" in a\n"
+"Command Prompt!), optionally run defrag, then restart the\n"
+"installation. You should also backup your data.\n"
+"When sure, press Ok."
+msgstr ""
+
+#: ../install_interactive.pm:178
+msgid "Which size do you want to keep for Windows on"
+msgstr ""
+
+#: ../install_interactive.pm:179
+#, perl-format
+msgid "partition %s"
+msgstr ""
+
+#: ../install_interactive.pm:188
+msgid "Resizing Windows partition"
+msgstr ""
+
+#: ../install_interactive.pm:193
+#, perl-format
+msgid "FAT resizing failed: %s"
+msgstr ""
+
+#: ../install_interactive.pm:196
+msgid ""
+"To ensure data integrity after resizing the partition(s), \n"
+"filesystem checks will be run on your next boot into Windows(TM)"
+msgstr ""
+
+#: ../install_interactive.pm:208
+msgid "There is no FAT partition to resize (or not enough space left)"
+msgstr ""
+
+#: ../install_interactive.pm:213
+msgid "Erase and use entire disk"
+msgstr ""
+
+#: ../install_interactive.pm:213
+msgid "Remove Windows(TM)"
+msgstr ""
+
+#: ../install_interactive.pm:215
+msgid "You have more than one hard drive, which one do you install linux on?"
+msgstr ""
+
+#: ../install_interactive.pm:219
+#, perl-format
+msgid "ALL existing partitions and their data will be lost on drive %s"
+msgstr ""
+
+#: ../install_interactive.pm:228
+msgid "Custom disk partitioning"
+msgstr ""
+
+#: ../install_interactive.pm:232
+msgid "Use fdisk"
+msgstr ""
+
+#: ../install_interactive.pm:235
+#, perl-format
+msgid ""
+"You can now partition %s.\n"
+"When you are done, do not forget to save using `w'"
+msgstr ""
+
+#: ../install_interactive.pm:271
+msgid "I can not find any room for installing"
+msgstr ""
+
+#: ../install_interactive.pm:275
+msgid "The DrakX Partitioning wizard found the following solutions:"
+msgstr ""
+
+#: ../install_interactive.pm:281
+#, perl-format
+msgid "Partitioning failed: %s"
+msgstr ""
+
+#: ../install_interactive.pm:288
+msgid "Bringing up the network"
+msgstr ""
+
+#: ../install_interactive.pm:293
+msgid "Bringing down the network"
+msgstr ""
diff --git a/live/draklive-install/po/eo.po b/live/draklive-install/po/eo.po
new file mode 100644
index 000000000..f16c11e32
--- /dev/null
+++ b/live/draklive-install/po/eo.po
@@ -0,0 +1,300 @@
+#: ../draklive-install:59
+msgid "Mandriva Live"
+msgstr ""
+
+#: ../draklive-install:65
+msgid "This wizard will help you to install the live distribution."
+msgstr ""
+
+#: ../draklive-install:83
+msgid "Computing total size"
+msgstr ""
+
+#: ../draklive-install:95
+msgid "Copying in progress"
+msgstr ""
+
+#: ../draklive-install:163
+msgid "Congratulations"
+msgstr ""
+
+#: ../draklive-install:163
+msgid ""
+"Please halt your computer, remove your live system, and restart your "
+"computer."
+msgstr ""
+
+#: ../draklive-install:179 ../draklive-install:407
+msgid "You need to reboot for the partition table modifications to take place"
+msgstr ""
+
+#: ../draklive-install:230
+msgid "Choose the partitions you want to format"
+msgstr ""
+
+#: ../draklive-install:232
+msgid "Check bad blocks?"
+msgstr ""
+
+#: ../draklive-install:261
+#, c-format
+msgid "Failed to check filesystem %s. Do you want to repair the errors?"
+msgstr ""
+
+#: ../draklive-install:262
+msgid ", $1), 1);"
+msgstr ""
+
+#: ../draklive-install:265
+msgid "Not enough swap space to fulfill installation, please add some"
+msgstr ""
+
+#: ../draklive-install:284
+msgid "$d/$l{$_}"
+msgstr ""
+
+#: ../draklive-install:285
+msgid "$d/.bashrc"
+msgstr ""
+
+#: ../draklive-install:317
+msgid "No partition available"
+msgstr ""
+
+#: ../draklive-install:320
+msgid "Scanning partitions to find mount points"
+msgstr ""
+
+#: ../draklive-install:327
+msgid "Choose the mount points"
+msgstr ""
+
+#: ../draklive-install:328
+msgid "Partitioning"
+msgstr ""
+
+#: ../draklive-install:361
+msgid "none"
+msgstr ""
+
+#: ../draklive-install:363
+#, c-format
+msgid "Duplicate mount point %s"
+msgstr ""
+
+#: ../draklive-install:389
+msgid "Continue anyway?"
+msgstr ""
+
+#: ../draklive-install:394
+msgid "Quit without saving"
+msgstr ""
+
+#: ../draklive-install:394
+msgid "Quit without writing the partition table?"
+msgstr ""
+
+#: ../draklive-install:400
+msgid "Do you want to save /etc/fstab modifications"
+msgstr ""
+
+#: ../draklive-install:412
+#, c-format
+msgid "You should format partition %s."
+msgstr ""
+
+#: ../draklive-install:414
+msgid ""
+", $part->{device}, $part->{mntpoint})) or return if $::isStandalone && 0; #- "
+"no, please"
+msgstr ""
+
+#: ../install_interactive.pm:22
+#, perl-format
+msgid ""
+"Some hardware on your computer needs ``proprietary'' drivers to work.\n"
+"You can find some information about them at: %s"
+msgstr ""
+
+#: ../install_interactive.pm:62
+msgid ""
+"You must have a root partition.\n"
+"For this, create a partition (or click on an existing one).\n"
+"Then choose action ``Mount point'' and set it to `/'"
+msgstr ""
+
+#: ../install_interactive.pm:67
+msgid ""
+"You do not have a swap partition.\n"
+"\n"
+"Continue anyway?"
+msgstr ""
+
+#: ../install_interactive.pm:70
+msgid "You must have a FAT partition mounted in /boot/efi"
+msgstr ""
+
+#: ../install_interactive.pm:95
+msgid "Use free space"
+msgstr ""
+
+#: ../install_interactive.pm:97
+msgid "Not enough free space to allocate new partitions"
+msgstr ""
+
+#: ../install_interactive.pm:105
+msgid "Use existing partitions"
+msgstr ""
+
+#: ../install_interactive.pm:107
+msgid "There is no existing partition to use"
+msgstr ""
+
+#: ../install_interactive.pm:114
+msgid "Use the Windows partition for loopback"
+msgstr ""
+
+#: ../install_interactive.pm:117
+msgid "Which partition do you want to use for Linux4Win?"
+msgstr ""
+
+#: ../install_interactive.pm:119
+msgid "Choose the sizes"
+msgstr ""
+
+#: ../install_interactive.pm:120
+msgid "Root partition size in MB: "
+msgstr ""
+
+#: ../install_interactive.pm:121
+msgid "Swap partition size in MB: "
+msgstr ""
+
+#: ../install_interactive.pm:130
+msgid "There is no FAT partition to use as loopback (or not enough space left)"
+msgstr ""
+
+#: ../install_interactive.pm:137
+msgid "Use the free space on the Windows partition"
+msgstr ""
+
+#: ../install_interactive.pm:139
+msgid "Which partition do you want to resize?"
+msgstr ""
+
+#: ../install_interactive.pm:153
+#, perl-format
+msgid ""
+"The FAT resizer is unable to handle your partition, \n"
+"the following error occurred: %s"
+msgstr ""
+
+#: ../install_interactive.pm:156
+msgid "Computing the size of the Windows partition"
+msgstr ""
+
+#: ../install_interactive.pm:156 ../install_interactive.pm:188
+msgid "Resizing"
+msgstr ""
+
+#: ../install_interactive.pm:163
+msgid ""
+"Your Windows partition is too fragmented. Please reboot your computer under "
+"Windows, run the ``defrag'' utility, then restart the Mandriva Linux "
+"installation."
+msgstr ""
+
+#: ../install_interactive.pm:166
+msgid ""
+"WARNING!\n"
+"\n"
+"DrakX will now resize your Windows partition. Be careful: this\n"
+"operation is dangerous. If you have not already done so, you\n"
+"first need to exit the installation, run \"chkdsk c:\" from a\n"
+"Command Prompt under Windows (beware, running graphical program\n"
+"\"scandisk\" is not enough, be sure to use \"chkdsk\" in a\n"
+"Command Prompt!), optionally run defrag, then restart the\n"
+"installation. You should also backup your data.\n"
+"When sure, press Ok."
+msgstr ""
+
+#: ../install_interactive.pm:178
+msgid "Which size do you want to keep for Windows on"
+msgstr ""
+
+#: ../install_interactive.pm:179
+#, perl-format
+msgid "partition %s"
+msgstr ""
+
+#: ../install_interactive.pm:188
+msgid "Resizing Windows partition"
+msgstr ""
+
+#: ../install_interactive.pm:193
+#, perl-format
+msgid "FAT resizing failed: %s"
+msgstr ""
+
+#: ../install_interactive.pm:196
+msgid ""
+"To ensure data integrity after resizing the partition(s), \n"
+"filesystem checks will be run on your next boot into Windows(TM)"
+msgstr ""
+
+#: ../install_interactive.pm:208
+msgid "There is no FAT partition to resize (or not enough space left)"
+msgstr ""
+
+#: ../install_interactive.pm:213
+msgid "Erase and use entire disk"
+msgstr ""
+
+#: ../install_interactive.pm:213
+msgid "Remove Windows(TM)"
+msgstr ""
+
+#: ../install_interactive.pm:215
+msgid "You have more than one hard drive, which one do you install linux on?"
+msgstr ""
+
+#: ../install_interactive.pm:219
+#, perl-format
+msgid "ALL existing partitions and their data will be lost on drive %s"
+msgstr ""
+
+#: ../install_interactive.pm:228
+msgid "Custom disk partitioning"
+msgstr ""
+
+#: ../install_interactive.pm:232
+msgid "Use fdisk"
+msgstr ""
+
+#: ../install_interactive.pm:235
+#, perl-format
+msgid ""
+"You can now partition %s.\n"
+"When you are done, do not forget to save using `w'"
+msgstr ""
+
+#: ../install_interactive.pm:271
+msgid "I can not find any room for installing"
+msgstr ""
+
+#: ../install_interactive.pm:275
+msgid "The DrakX Partitioning wizard found the following solutions:"
+msgstr ""
+
+#: ../install_interactive.pm:281
+#, perl-format
+msgid "Partitioning failed: %s"
+msgstr ""
+
+#: ../install_interactive.pm:288
+msgid "Bringing up the network"
+msgstr ""
+
+#: ../install_interactive.pm:293
+msgid "Bringing down the network"
+msgstr ""
diff --git a/live/draklive-install/po/es.po b/live/draklive-install/po/es.po
new file mode 100644
index 000000000..f16c11e32
--- /dev/null
+++ b/live/draklive-install/po/es.po
@@ -0,0 +1,300 @@
+#: ../draklive-install:59
+msgid "Mandriva Live"
+msgstr ""
+
+#: ../draklive-install:65
+msgid "This wizard will help you to install the live distribution."
+msgstr ""
+
+#: ../draklive-install:83
+msgid "Computing total size"
+msgstr ""
+
+#: ../draklive-install:95
+msgid "Copying in progress"
+msgstr ""
+
+#: ../draklive-install:163
+msgid "Congratulations"
+msgstr ""
+
+#: ../draklive-install:163
+msgid ""
+"Please halt your computer, remove your live system, and restart your "
+"computer."
+msgstr ""
+
+#: ../draklive-install:179 ../draklive-install:407
+msgid "You need to reboot for the partition table modifications to take place"
+msgstr ""
+
+#: ../draklive-install:230
+msgid "Choose the partitions you want to format"
+msgstr ""
+
+#: ../draklive-install:232
+msgid "Check bad blocks?"
+msgstr ""
+
+#: ../draklive-install:261
+#, c-format
+msgid "Failed to check filesystem %s. Do you want to repair the errors?"
+msgstr ""
+
+#: ../draklive-install:262
+msgid ", $1), 1);"
+msgstr ""
+
+#: ../draklive-install:265
+msgid "Not enough swap space to fulfill installation, please add some"
+msgstr ""
+
+#: ../draklive-install:284
+msgid "$d/$l{$_}"
+msgstr ""
+
+#: ../draklive-install:285
+msgid "$d/.bashrc"
+msgstr ""
+
+#: ../draklive-install:317
+msgid "No partition available"
+msgstr ""
+
+#: ../draklive-install:320
+msgid "Scanning partitions to find mount points"
+msgstr ""
+
+#: ../draklive-install:327
+msgid "Choose the mount points"
+msgstr ""
+
+#: ../draklive-install:328
+msgid "Partitioning"
+msgstr ""
+
+#: ../draklive-install:361
+msgid "none"
+msgstr ""
+
+#: ../draklive-install:363
+#, c-format
+msgid "Duplicate mount point %s"
+msgstr ""
+
+#: ../draklive-install:389
+msgid "Continue anyway?"
+msgstr ""
+
+#: ../draklive-install:394
+msgid "Quit without saving"
+msgstr ""
+
+#: ../draklive-install:394
+msgid "Quit without writing the partition table?"
+msgstr ""
+
+#: ../draklive-install:400
+msgid "Do you want to save /etc/fstab modifications"
+msgstr ""
+
+#: ../draklive-install:412
+#, c-format
+msgid "You should format partition %s."
+msgstr ""
+
+#: ../draklive-install:414
+msgid ""
+", $part->{device}, $part->{mntpoint})) or return if $::isStandalone && 0; #- "
+"no, please"
+msgstr ""
+
+#: ../install_interactive.pm:22
+#, perl-format
+msgid ""
+"Some hardware on your computer needs ``proprietary'' drivers to work.\n"
+"You can find some information about them at: %s"
+msgstr ""
+
+#: ../install_interactive.pm:62
+msgid ""
+"You must have a root partition.\n"
+"For this, create a partition (or click on an existing one).\n"
+"Then choose action ``Mount point'' and set it to `/'"
+msgstr ""
+
+#: ../install_interactive.pm:67
+msgid ""
+"You do not have a swap partition.\n"
+"\n"
+"Continue anyway?"
+msgstr ""
+
+#: ../install_interactive.pm:70
+msgid "You must have a FAT partition mounted in /boot/efi"
+msgstr ""
+
+#: ../install_interactive.pm:95
+msgid "Use free space"
+msgstr ""
+
+#: ../install_interactive.pm:97
+msgid "Not enough free space to allocate new partitions"
+msgstr ""
+
+#: ../install_interactive.pm:105
+msgid "Use existing partitions"
+msgstr ""
+
+#: ../install_interactive.pm:107
+msgid "There is no existing partition to use"
+msgstr ""
+
+#: ../install_interactive.pm:114
+msgid "Use the Windows partition for loopback"
+msgstr ""
+
+#: ../install_interactive.pm:117
+msgid "Which partition do you want to use for Linux4Win?"
+msgstr ""
+
+#: ../install_interactive.pm:119
+msgid "Choose the sizes"
+msgstr ""
+
+#: ../install_interactive.pm:120
+msgid "Root partition size in MB: "
+msgstr ""
+
+#: ../install_interactive.pm:121
+msgid "Swap partition size in MB: "
+msgstr ""
+
+#: ../install_interactive.pm:130
+msgid "There is no FAT partition to use as loopback (or not enough space left)"
+msgstr ""
+
+#: ../install_interactive.pm:137
+msgid "Use the free space on the Windows partition"
+msgstr ""
+
+#: ../install_interactive.pm:139
+msgid "Which partition do you want to resize?"
+msgstr ""
+
+#: ../install_interactive.pm:153
+#, perl-format
+msgid ""
+"The FAT resizer is unable to handle your partition, \n"
+"the following error occurred: %s"
+msgstr ""
+
+#: ../install_interactive.pm:156
+msgid "Computing the size of the Windows partition"
+msgstr ""
+
+#: ../install_interactive.pm:156 ../install_interactive.pm:188
+msgid "Resizing"
+msgstr ""
+
+#: ../install_interactive.pm:163
+msgid ""
+"Your Windows partition is too fragmented. Please reboot your computer under "
+"Windows, run the ``defrag'' utility, then restart the Mandriva Linux "
+"installation."
+msgstr ""
+
+#: ../install_interactive.pm:166
+msgid ""
+"WARNING!\n"
+"\n"
+"DrakX will now resize your Windows partition. Be careful: this\n"
+"operation is dangerous. If you have not already done so, you\n"
+"first need to exit the installation, run \"chkdsk c:\" from a\n"
+"Command Prompt under Windows (beware, running graphical program\n"
+"\"scandisk\" is not enough, be sure to use \"chkdsk\" in a\n"
+"Command Prompt!), optionally run defrag, then restart the\n"
+"installation. You should also backup your data.\n"
+"When sure, press Ok."
+msgstr ""
+
+#: ../install_interactive.pm:178
+msgid "Which size do you want to keep for Windows on"
+msgstr ""
+
+#: ../install_interactive.pm:179
+#, perl-format
+msgid "partition %s"
+msgstr ""
+
+#: ../install_interactive.pm:188
+msgid "Resizing Windows partition"
+msgstr ""
+
+#: ../install_interactive.pm:193
+#, perl-format
+msgid "FAT resizing failed: %s"
+msgstr ""
+
+#: ../install_interactive.pm:196
+msgid ""
+"To ensure data integrity after resizing the partition(s), \n"
+"filesystem checks will be run on your next boot into Windows(TM)"
+msgstr ""
+
+#: ../install_interactive.pm:208
+msgid "There is no FAT partition to resize (or not enough space left)"
+msgstr ""
+
+#: ../install_interactive.pm:213
+msgid "Erase and use entire disk"
+msgstr ""
+
+#: ../install_interactive.pm:213
+msgid "Remove Windows(TM)"
+msgstr ""
+
+#: ../install_interactive.pm:215
+msgid "You have more than one hard drive, which one do you install linux on?"
+msgstr ""
+
+#: ../install_interactive.pm:219
+#, perl-format
+msgid "ALL existing partitions and their data will be lost on drive %s"
+msgstr ""
+
+#: ../install_interactive.pm:228
+msgid "Custom disk partitioning"
+msgstr ""
+
+#: ../install_interactive.pm:232
+msgid "Use fdisk"
+msgstr ""
+
+#: ../install_interactive.pm:235
+#, perl-format
+msgid ""
+"You can now partition %s.\n"
+"When you are done, do not forget to save using `w'"
+msgstr ""
+
+#: ../install_interactive.pm:271
+msgid "I can not find any room for installing"
+msgstr ""
+
+#: ../install_interactive.pm:275
+msgid "The DrakX Partitioning wizard found the following solutions:"
+msgstr ""
+
+#: ../install_interactive.pm:281
+#, perl-format
+msgid "Partitioning failed: %s"
+msgstr ""
+
+#: ../install_interactive.pm:288
+msgid "Bringing up the network"
+msgstr ""
+
+#: ../install_interactive.pm:293
+msgid "Bringing down the network"
+msgstr ""
diff --git a/live/draklive-install/po/et.po b/live/draklive-install/po/et.po
new file mode 100644
index 000000000..f16c11e32
--- /dev/null
+++ b/live/draklive-install/po/et.po
@@ -0,0 +1,300 @@
+#: ../draklive-install:59
+msgid "Mandriva Live"
+msgstr ""
+
+#: ../draklive-install:65
+msgid "This wizard will help you to install the live distribution."
+msgstr ""
+
+#: ../draklive-install:83
+msgid "Computing total size"
+msgstr ""
+
+#: ../draklive-install:95
+msgid "Copying in progress"
+msgstr ""
+
+#: ../draklive-install:163
+msgid "Congratulations"
+msgstr ""
+
+#: ../draklive-install:163
+msgid ""
+"Please halt your computer, remove your live system, and restart your "
+"computer."
+msgstr ""
+
+#: ../draklive-install:179 ../draklive-install:407
+msgid "You need to reboot for the partition table modifications to take place"
+msgstr ""
+
+#: ../draklive-install:230
+msgid "Choose the partitions you want to format"
+msgstr ""
+
+#: ../draklive-install:232
+msgid "Check bad blocks?"
+msgstr ""
+
+#: ../draklive-install:261
+#, c-format
+msgid "Failed to check filesystem %s. Do you want to repair the errors?"
+msgstr ""
+
+#: ../draklive-install:262
+msgid ", $1), 1);"
+msgstr ""
+
+#: ../draklive-install:265
+msgid "Not enough swap space to fulfill installation, please add some"
+msgstr ""
+
+#: ../draklive-install:284
+msgid "$d/$l{$_}"
+msgstr ""
+
+#: ../draklive-install:285
+msgid "$d/.bashrc"
+msgstr ""
+
+#: ../draklive-install:317
+msgid "No partition available"
+msgstr ""
+
+#: ../draklive-install:320
+msgid "Scanning partitions to find mount points"
+msgstr ""
+
+#: ../draklive-install:327
+msgid "Choose the mount points"
+msgstr ""
+
+#: ../draklive-install:328
+msgid "Partitioning"
+msgstr ""
+
+#: ../draklive-install:361
+msgid "none"
+msgstr ""
+
+#: ../draklive-install:363
+#, c-format
+msgid "Duplicate mount point %s"
+msgstr ""
+
+#: ../draklive-install:389
+msgid "Continue anyway?"
+msgstr ""
+
+#: ../draklive-install:394
+msgid "Quit without saving"
+msgstr ""
+
+#: ../draklive-install:394
+msgid "Quit without writing the partition table?"
+msgstr ""
+
+#: ../draklive-install:400
+msgid "Do you want to save /etc/fstab modifications"
+msgstr ""
+
+#: ../draklive-install:412
+#, c-format
+msgid "You should format partition %s."
+msgstr ""
+
+#: ../draklive-install:414
+msgid ""
+", $part->{device}, $part->{mntpoint})) or return if $::isStandalone && 0; #- "
+"no, please"
+msgstr ""
+
+#: ../install_interactive.pm:22
+#, perl-format
+msgid ""
+"Some hardware on your computer needs ``proprietary'' drivers to work.\n"
+"You can find some information about them at: %s"
+msgstr ""
+
+#: ../install_interactive.pm:62
+msgid ""
+"You must have a root partition.\n"
+"For this, create a partition (or click on an existing one).\n"
+"Then choose action ``Mount point'' and set it to `/'"
+msgstr ""
+
+#: ../install_interactive.pm:67
+msgid ""
+"You do not have a swap partition.\n"
+"\n"
+"Continue anyway?"
+msgstr ""
+
+#: ../install_interactive.pm:70
+msgid "You must have a FAT partition mounted in /boot/efi"
+msgstr ""
+
+#: ../install_interactive.pm:95
+msgid "Use free space"
+msgstr ""
+
+#: ../install_interactive.pm:97
+msgid "Not enough free space to allocate new partitions"
+msgstr ""
+
+#: ../install_interactive.pm:105
+msgid "Use existing partitions"
+msgstr ""
+
+#: ../install_interactive.pm:107
+msgid "There is no existing partition to use"
+msgstr ""
+
+#: ../install_interactive.pm:114
+msgid "Use the Windows partition for loopback"
+msgstr ""
+
+#: ../install_interactive.pm:117
+msgid "Which partition do you want to use for Linux4Win?"
+msgstr ""
+
+#: ../install_interactive.pm:119
+msgid "Choose the sizes"
+msgstr ""
+
+#: ../install_interactive.pm:120
+msgid "Root partition size in MB: "
+msgstr ""
+
+#: ../install_interactive.pm:121
+msgid "Swap partition size in MB: "
+msgstr ""
+
+#: ../install_interactive.pm:130
+msgid "There is no FAT partition to use as loopback (or not enough space left)"
+msgstr ""
+
+#: ../install_interactive.pm:137
+msgid "Use the free space on the Windows partition"
+msgstr ""
+
+#: ../install_interactive.pm:139
+msgid "Which partition do you want to resize?"
+msgstr ""
+
+#: ../install_interactive.pm:153
+#, perl-format
+msgid ""
+"The FAT resizer is unable to handle your partition, \n"
+"the following error occurred: %s"
+msgstr ""
+
+#: ../install_interactive.pm:156
+msgid "Computing the size of the Windows partition"
+msgstr ""
+
+#: ../install_interactive.pm:156 ../install_interactive.pm:188
+msgid "Resizing"
+msgstr ""
+
+#: ../install_interactive.pm:163
+msgid ""
+"Your Windows partition is too fragmented. Please reboot your computer under "
+"Windows, run the ``defrag'' utility, then restart the Mandriva Linux "
+"installation."
+msgstr ""
+
+#: ../install_interactive.pm:166
+msgid ""
+"WARNING!\n"
+"\n"
+"DrakX will now resize your Windows partition. Be careful: this\n"
+"operation is dangerous. If you have not already done so, you\n"
+"first need to exit the installation, run \"chkdsk c:\" from a\n"
+"Command Prompt under Windows (beware, running graphical program\n"
+"\"scandisk\" is not enough, be sure to use \"chkdsk\" in a\n"
+"Command Prompt!), optionally run defrag, then restart the\n"
+"installation. You should also backup your data.\n"
+"When sure, press Ok."
+msgstr ""
+
+#: ../install_interactive.pm:178
+msgid "Which size do you want to keep for Windows on"
+msgstr ""
+
+#: ../install_interactive.pm:179
+#, perl-format
+msgid "partition %s"
+msgstr ""
+
+#: ../install_interactive.pm:188
+msgid "Resizing Windows partition"
+msgstr ""
+
+#: ../install_interactive.pm:193
+#, perl-format
+msgid "FAT resizing failed: %s"
+msgstr ""
+
+#: ../install_interactive.pm:196
+msgid ""
+"To ensure data integrity after resizing the partition(s), \n"
+"filesystem checks will be run on your next boot into Windows(TM)"
+msgstr ""
+
+#: ../install_interactive.pm:208
+msgid "There is no FAT partition to resize (or not enough space left)"
+msgstr ""
+
+#: ../install_interactive.pm:213
+msgid "Erase and use entire disk"
+msgstr ""
+
+#: ../install_interactive.pm:213
+msgid "Remove Windows(TM)"
+msgstr ""
+
+#: ../install_interactive.pm:215
+msgid "You have more than one hard drive, which one do you install linux on?"
+msgstr ""
+
+#: ../install_interactive.pm:219
+#, perl-format
+msgid "ALL existing partitions and their data will be lost on drive %s"
+msgstr ""
+
+#: ../install_interactive.pm:228
+msgid "Custom disk partitioning"
+msgstr ""
+
+#: ../install_interactive.pm:232
+msgid "Use fdisk"
+msgstr ""
+
+#: ../install_interactive.pm:235
+#, perl-format
+msgid ""
+"You can now partition %s.\n"
+"When you are done, do not forget to save using `w'"
+msgstr ""
+
+#: ../install_interactive.pm:271
+msgid "I can not find any room for installing"
+msgstr ""
+
+#: ../install_interactive.pm:275
+msgid "The DrakX Partitioning wizard found the following solutions:"
+msgstr ""
+
+#: ../install_interactive.pm:281
+#, perl-format
+msgid "Partitioning failed: %s"
+msgstr ""
+
+#: ../install_interactive.pm:288
+msgid "Bringing up the network"
+msgstr ""
+
+#: ../install_interactive.pm:293
+msgid "Bringing down the network"
+msgstr ""
diff --git a/live/draklive-install/po/eu.po b/live/draklive-install/po/eu.po
new file mode 100644
index 000000000..f16c11e32
--- /dev/null
+++ b/live/draklive-install/po/eu.po
@@ -0,0 +1,300 @@
+#: ../draklive-install:59
+msgid "Mandriva Live"
+msgstr ""
+
+#: ../draklive-install:65
+msgid "This wizard will help you to install the live distribution."
+msgstr ""
+
+#: ../draklive-install:83
+msgid "Computing total size"
+msgstr ""
+
+#: ../draklive-install:95
+msgid "Copying in progress"
+msgstr ""
+
+#: ../draklive-install:163
+msgid "Congratulations"
+msgstr ""
+
+#: ../draklive-install:163
+msgid ""
+"Please halt your computer, remove your live system, and restart your "
+"computer."
+msgstr ""
+
+#: ../draklive-install:179 ../draklive-install:407
+msgid "You need to reboot for the partition table modifications to take place"
+msgstr ""
+
+#: ../draklive-install:230
+msgid "Choose the partitions you want to format"
+msgstr ""
+
+#: ../draklive-install:232
+msgid "Check bad blocks?"
+msgstr ""
+
+#: ../draklive-install:261
+#, c-format
+msgid "Failed to check filesystem %s. Do you want to repair the errors?"
+msgstr ""
+
+#: ../draklive-install:262
+msgid ", $1), 1);"
+msgstr ""
+
+#: ../draklive-install:265
+msgid "Not enough swap space to fulfill installation, please add some"
+msgstr ""
+
+#: ../draklive-install:284
+msgid "$d/$l{$_}"
+msgstr ""
+
+#: ../draklive-install:285
+msgid "$d/.bashrc"
+msgstr ""
+
+#: ../draklive-install:317
+msgid "No partition available"
+msgstr ""
+
+#: ../draklive-install:320
+msgid "Scanning partitions to find mount points"
+msgstr ""
+
+#: ../draklive-install:327
+msgid "Choose the mount points"
+msgstr ""
+
+#: ../draklive-install:328
+msgid "Partitioning"
+msgstr ""
+
+#: ../draklive-install:361
+msgid "none"
+msgstr ""
+
+#: ../draklive-install:363
+#, c-format
+msgid "Duplicate mount point %s"
+msgstr ""
+
+#: ../draklive-install:389
+msgid "Continue anyway?"
+msgstr ""
+
+#: ../draklive-install:394
+msgid "Quit without saving"
+msgstr ""
+
+#: ../draklive-install:394
+msgid "Quit without writing the partition table?"
+msgstr ""
+
+#: ../draklive-install:400
+msgid "Do you want to save /etc/fstab modifications"
+msgstr ""
+
+#: ../draklive-install:412
+#, c-format
+msgid "You should format partition %s."
+msgstr ""
+
+#: ../draklive-install:414
+msgid ""
+", $part->{device}, $part->{mntpoint})) or return if $::isStandalone && 0; #- "
+"no, please"
+msgstr ""
+
+#: ../install_interactive.pm:22
+#, perl-format
+msgid ""
+"Some hardware on your computer needs ``proprietary'' drivers to work.\n"
+"You can find some information about them at: %s"
+msgstr ""
+
+#: ../install_interactive.pm:62
+msgid ""
+"You must have a root partition.\n"
+"For this, create a partition (or click on an existing one).\n"
+"Then choose action ``Mount point'' and set it to `/'"
+msgstr ""
+
+#: ../install_interactive.pm:67
+msgid ""
+"You do not have a swap partition.\n"
+"\n"
+"Continue anyway?"
+msgstr ""
+
+#: ../install_interactive.pm:70
+msgid "You must have a FAT partition mounted in /boot/efi"
+msgstr ""
+
+#: ../install_interactive.pm:95
+msgid "Use free space"
+msgstr ""
+
+#: ../install_interactive.pm:97
+msgid "Not enough free space to allocate new partitions"
+msgstr ""
+
+#: ../install_interactive.pm:105
+msgid "Use existing partitions"
+msgstr ""
+
+#: ../install_interactive.pm:107
+msgid "There is no existing partition to use"
+msgstr ""
+
+#: ../install_interactive.pm:114
+msgid "Use the Windows partition for loopback"
+msgstr ""
+
+#: ../install_interactive.pm:117
+msgid "Which partition do you want to use for Linux4Win?"
+msgstr ""
+
+#: ../install_interactive.pm:119
+msgid "Choose the sizes"
+msgstr ""
+
+#: ../install_interactive.pm:120
+msgid "Root partition size in MB: "
+msgstr ""
+
+#: ../install_interactive.pm:121
+msgid "Swap partition size in MB: "
+msgstr ""
+
+#: ../install_interactive.pm:130
+msgid "There is no FAT partition to use as loopback (or not enough space left)"
+msgstr ""
+
+#: ../install_interactive.pm:137
+msgid "Use the free space on the Windows partition"
+msgstr ""
+
+#: ../install_interactive.pm:139
+msgid "Which partition do you want to resize?"
+msgstr ""
+
+#: ../install_interactive.pm:153
+#, perl-format
+msgid ""
+"The FAT resizer is unable to handle your partition, \n"
+"the following error occurred: %s"
+msgstr ""
+
+#: ../install_interactive.pm:156
+msgid "Computing the size of the Windows partition"
+msgstr ""
+
+#: ../install_interactive.pm:156 ../install_interactive.pm:188
+msgid "Resizing"
+msgstr ""
+
+#: ../install_interactive.pm:163
+msgid ""
+"Your Windows partition is too fragmented. Please reboot your computer under "
+"Windows, run the ``defrag'' utility, then restart the Mandriva Linux "
+"installation."
+msgstr ""
+
+#: ../install_interactive.pm:166
+msgid ""
+"WARNING!\n"
+"\n"
+"DrakX will now resize your Windows partition. Be careful: this\n"
+"operation is dangerous. If you have not already done so, you\n"
+"first need to exit the installation, run \"chkdsk c:\" from a\n"
+"Command Prompt under Windows (beware, running graphical program\n"
+"\"scandisk\" is not enough, be sure to use \"chkdsk\" in a\n"
+"Command Prompt!), optionally run defrag, then restart the\n"
+"installation. You should also backup your data.\n"
+"When sure, press Ok."
+msgstr ""
+
+#: ../install_interactive.pm:178
+msgid "Which size do you want to keep for Windows on"
+msgstr ""
+
+#: ../install_interactive.pm:179
+#, perl-format
+msgid "partition %s"
+msgstr ""
+
+#: ../install_interactive.pm:188
+msgid "Resizing Windows partition"
+msgstr ""
+
+#: ../install_interactive.pm:193
+#, perl-format
+msgid "FAT resizing failed: %s"
+msgstr ""
+
+#: ../install_interactive.pm:196
+msgid ""
+"To ensure data integrity after resizing the partition(s), \n"
+"filesystem checks will be run on your next boot into Windows(TM)"
+msgstr ""
+
+#: ../install_interactive.pm:208
+msgid "There is no FAT partition to resize (or not enough space left)"
+msgstr ""
+
+#: ../install_interactive.pm:213
+msgid "Erase and use entire disk"
+msgstr ""
+
+#: ../install_interactive.pm:213
+msgid "Remove Windows(TM)"
+msgstr ""
+
+#: ../install_interactive.pm:215
+msgid "You have more than one hard drive, which one do you install linux on?"
+msgstr ""
+
+#: ../install_interactive.pm:219
+#, perl-format
+msgid "ALL existing partitions and their data will be lost on drive %s"
+msgstr ""
+
+#: ../install_interactive.pm:228
+msgid "Custom disk partitioning"
+msgstr ""
+
+#: ../install_interactive.pm:232
+msgid "Use fdisk"
+msgstr ""
+
+#: ../install_interactive.pm:235
+#, perl-format
+msgid ""
+"You can now partition %s.\n"
+"When you are done, do not forget to save using `w'"
+msgstr ""
+
+#: ../install_interactive.pm:271
+msgid "I can not find any room for installing"
+msgstr ""
+
+#: ../install_interactive.pm:275
+msgid "The DrakX Partitioning wizard found the following solutions:"
+msgstr ""
+
+#: ../install_interactive.pm:281
+#, perl-format
+msgid "Partitioning failed: %s"
+msgstr ""
+
+#: ../install_interactive.pm:288
+msgid "Bringing up the network"
+msgstr ""
+
+#: ../install_interactive.pm:293
+msgid "Bringing down the network"
+msgstr ""
diff --git a/live/draklive-install/po/fa.po b/live/draklive-install/po/fa.po
new file mode 100644
index 000000000..f16c11e32
--- /dev/null
+++ b/live/draklive-install/po/fa.po
@@ -0,0 +1,300 @@
+#: ../draklive-install:59
+msgid "Mandriva Live"
+msgstr ""
+
+#: ../draklive-install:65
+msgid "This wizard will help you to install the live distribution."
+msgstr ""
+
+#: ../draklive-install:83
+msgid "Computing total size"
+msgstr ""
+
+#: ../draklive-install:95
+msgid "Copying in progress"
+msgstr ""
+
+#: ../draklive-install:163
+msgid "Congratulations"
+msgstr ""
+
+#: ../draklive-install:163
+msgid ""
+"Please halt your computer, remove your live system, and restart your "
+"computer."
+msgstr ""
+
+#: ../draklive-install:179 ../draklive-install:407
+msgid "You need to reboot for the partition table modifications to take place"
+msgstr ""
+
+#: ../draklive-install:230
+msgid "Choose the partitions you want to format"
+msgstr ""
+
+#: ../draklive-install:232
+msgid "Check bad blocks?"
+msgstr ""
+
+#: ../draklive-install:261
+#, c-format
+msgid "Failed to check filesystem %s. Do you want to repair the errors?"
+msgstr ""
+
+#: ../draklive-install:262
+msgid ", $1), 1);"
+msgstr ""
+
+#: ../draklive-install:265
+msgid "Not enough swap space to fulfill installation, please add some"
+msgstr ""
+
+#: ../draklive-install:284
+msgid "$d/$l{$_}"
+msgstr ""
+
+#: ../draklive-install:285
+msgid "$d/.bashrc"
+msgstr ""
+
+#: ../draklive-install:317
+msgid "No partition available"
+msgstr ""
+
+#: ../draklive-install:320
+msgid "Scanning partitions to find mount points"
+msgstr ""
+
+#: ../draklive-install:327
+msgid "Choose the mount points"
+msgstr ""
+
+#: ../draklive-install:328
+msgid "Partitioning"
+msgstr ""
+
+#: ../draklive-install:361
+msgid "none"
+msgstr ""
+
+#: ../draklive-install:363
+#, c-format
+msgid "Duplicate mount point %s"
+msgstr ""
+
+#: ../draklive-install:389
+msgid "Continue anyway?"
+msgstr ""
+
+#: ../draklive-install:394
+msgid "Quit without saving"
+msgstr ""
+
+#: ../draklive-install:394
+msgid "Quit without writing the partition table?"
+msgstr ""
+
+#: ../draklive-install:400
+msgid "Do you want to save /etc/fstab modifications"
+msgstr ""
+
+#: ../draklive-install:412
+#, c-format
+msgid "You should format partition %s."
+msgstr ""
+
+#: ../draklive-install:414
+msgid ""
+", $part->{device}, $part->{mntpoint})) or return if $::isStandalone && 0; #- "
+"no, please"
+msgstr ""
+
+#: ../install_interactive.pm:22
+#, perl-format
+msgid ""
+"Some hardware on your computer needs ``proprietary'' drivers to work.\n"
+"You can find some information about them at: %s"
+msgstr ""
+
+#: ../install_interactive.pm:62
+msgid ""
+"You must have a root partition.\n"
+"For this, create a partition (or click on an existing one).\n"
+"Then choose action ``Mount point'' and set it to `/'"
+msgstr ""
+
+#: ../install_interactive.pm:67
+msgid ""
+"You do not have a swap partition.\n"
+"\n"
+"Continue anyway?"
+msgstr ""
+
+#: ../install_interactive.pm:70
+msgid "You must have a FAT partition mounted in /boot/efi"
+msgstr ""
+
+#: ../install_interactive.pm:95
+msgid "Use free space"
+msgstr ""
+
+#: ../install_interactive.pm:97
+msgid "Not enough free space to allocate new partitions"
+msgstr ""
+
+#: ../install_interactive.pm:105
+msgid "Use existing partitions"
+msgstr ""
+
+#: ../install_interactive.pm:107
+msgid "There is no existing partition to use"
+msgstr ""
+
+#: ../install_interactive.pm:114
+msgid "Use the Windows partition for loopback"
+msgstr ""
+
+#: ../install_interactive.pm:117
+msgid "Which partition do you want to use for Linux4Win?"
+msgstr ""
+
+#: ../install_interactive.pm:119
+msgid "Choose the sizes"
+msgstr ""
+
+#: ../install_interactive.pm:120
+msgid "Root partition size in MB: "
+msgstr ""
+
+#: ../install_interactive.pm:121
+msgid "Swap partition size in MB: "
+msgstr ""
+
+#: ../install_interactive.pm:130
+msgid "There is no FAT partition to use as loopback (or not enough space left)"
+msgstr ""
+
+#: ../install_interactive.pm:137
+msgid "Use the free space on the Windows partition"
+msgstr ""
+
+#: ../install_interactive.pm:139
+msgid "Which partition do you want to resize?"
+msgstr ""
+
+#: ../install_interactive.pm:153
+#, perl-format
+msgid ""
+"The FAT resizer is unable to handle your partition, \n"
+"the following error occurred: %s"
+msgstr ""
+
+#: ../install_interactive.pm:156
+msgid "Computing the size of the Windows partition"
+msgstr ""
+
+#: ../install_interactive.pm:156 ../install_interactive.pm:188
+msgid "Resizing"
+msgstr ""
+
+#: ../install_interactive.pm:163
+msgid ""
+"Your Windows partition is too fragmented. Please reboot your computer under "
+"Windows, run the ``defrag'' utility, then restart the Mandriva Linux "
+"installation."
+msgstr ""
+
+#: ../install_interactive.pm:166
+msgid ""
+"WARNING!\n"
+"\n"
+"DrakX will now resize your Windows partition. Be careful: this\n"
+"operation is dangerous. If you have not already done so, you\n"
+"first need to exit the installation, run \"chkdsk c:\" from a\n"
+"Command Prompt under Windows (beware, running graphical program\n"
+"\"scandisk\" is not enough, be sure to use \"chkdsk\" in a\n"
+"Command Prompt!), optionally run defrag, then restart the\n"
+"installation. You should also backup your data.\n"
+"When sure, press Ok."
+msgstr ""
+
+#: ../install_interactive.pm:178
+msgid "Which size do you want to keep for Windows on"
+msgstr ""
+
+#: ../install_interactive.pm:179
+#, perl-format
+msgid "partition %s"
+msgstr ""
+
+#: ../install_interactive.pm:188
+msgid "Resizing Windows partition"
+msgstr ""
+
+#: ../install_interactive.pm:193
+#, perl-format
+msgid "FAT resizing failed: %s"
+msgstr ""
+
+#: ../install_interactive.pm:196
+msgid ""
+"To ensure data integrity after resizing the partition(s), \n"
+"filesystem checks will be run on your next boot into Windows(TM)"
+msgstr ""
+
+#: ../install_interactive.pm:208
+msgid "There is no FAT partition to resize (or not enough space left)"
+msgstr ""
+
+#: ../install_interactive.pm:213
+msgid "Erase and use entire disk"
+msgstr ""
+
+#: ../install_interactive.pm:213
+msgid "Remove Windows(TM)"
+msgstr ""
+
+#: ../install_interactive.pm:215
+msgid "You have more than one hard drive, which one do you install linux on?"
+msgstr ""
+
+#: ../install_interactive.pm:219
+#, perl-format
+msgid "ALL existing partitions and their data will be lost on drive %s"
+msgstr ""
+
+#: ../install_interactive.pm:228
+msgid "Custom disk partitioning"
+msgstr ""
+
+#: ../install_interactive.pm:232
+msgid "Use fdisk"
+msgstr ""
+
+#: ../install_interactive.pm:235
+#, perl-format
+msgid ""
+"You can now partition %s.\n"
+"When you are done, do not forget to save using `w'"
+msgstr ""
+
+#: ../install_interactive.pm:271
+msgid "I can not find any room for installing"
+msgstr ""
+
+#: ../install_interactive.pm:275
+msgid "The DrakX Partitioning wizard found the following solutions:"
+msgstr ""
+
+#: ../install_interactive.pm:281
+#, perl-format
+msgid "Partitioning failed: %s"
+msgstr ""
+
+#: ../install_interactive.pm:288
+msgid "Bringing up the network"
+msgstr ""
+
+#: ../install_interactive.pm:293
+msgid "Bringing down the network"
+msgstr ""
diff --git a/live/draklive-install/po/fi.po b/live/draklive-install/po/fi.po
new file mode 100644
index 000000000..f16c11e32
--- /dev/null
+++ b/live/draklive-install/po/fi.po
@@ -0,0 +1,300 @@
+#: ../draklive-install:59
+msgid "Mandriva Live"
+msgstr ""
+
+#: ../draklive-install:65
+msgid "This wizard will help you to install the live distribution."
+msgstr ""
+
+#: ../draklive-install:83
+msgid "Computing total size"
+msgstr ""
+
+#: ../draklive-install:95
+msgid "Copying in progress"
+msgstr ""
+
+#: ../draklive-install:163
+msgid "Congratulations"
+msgstr ""
+
+#: ../draklive-install:163
+msgid ""
+"Please halt your computer, remove your live system, and restart your "
+"computer."
+msgstr ""
+
+#: ../draklive-install:179 ../draklive-install:407
+msgid "You need to reboot for the partition table modifications to take place"
+msgstr ""
+
+#: ../draklive-install:230
+msgid "Choose the partitions you want to format"
+msgstr ""
+
+#: ../draklive-install:232
+msgid "Check bad blocks?"
+msgstr ""
+
+#: ../draklive-install:261
+#, c-format
+msgid "Failed to check filesystem %s. Do you want to repair the errors?"
+msgstr ""
+
+#: ../draklive-install:262
+msgid ", $1), 1);"
+msgstr ""
+
+#: ../draklive-install:265
+msgid "Not enough swap space to fulfill installation, please add some"
+msgstr ""
+
+#: ../draklive-install:284
+msgid "$d/$l{$_}"
+msgstr ""
+
+#: ../draklive-install:285
+msgid "$d/.bashrc"
+msgstr ""
+
+#: ../draklive-install:317
+msgid "No partition available"
+msgstr ""
+
+#: ../draklive-install:320
+msgid "Scanning partitions to find mount points"
+msgstr ""
+
+#: ../draklive-install:327
+msgid "Choose the mount points"
+msgstr ""
+
+#: ../draklive-install:328
+msgid "Partitioning"
+msgstr ""
+
+#: ../draklive-install:361
+msgid "none"
+msgstr ""
+
+#: ../draklive-install:363
+#, c-format
+msgid "Duplicate mount point %s"
+msgstr ""
+
+#: ../draklive-install:389
+msgid "Continue anyway?"
+msgstr ""
+
+#: ../draklive-install:394
+msgid "Quit without saving"
+msgstr ""
+
+#: ../draklive-install:394
+msgid "Quit without writing the partition table?"
+msgstr ""
+
+#: ../draklive-install:400
+msgid "Do you want to save /etc/fstab modifications"
+msgstr ""
+
+#: ../draklive-install:412
+#, c-format
+msgid "You should format partition %s."
+msgstr ""
+
+#: ../draklive-install:414
+msgid ""
+", $part->{device}, $part->{mntpoint})) or return if $::isStandalone && 0; #- "
+"no, please"
+msgstr ""
+
+#: ../install_interactive.pm:22
+#, perl-format
+msgid ""
+"Some hardware on your computer needs ``proprietary'' drivers to work.\n"
+"You can find some information about them at: %s"
+msgstr ""
+
+#: ../install_interactive.pm:62
+msgid ""
+"You must have a root partition.\n"
+"For this, create a partition (or click on an existing one).\n"
+"Then choose action ``Mount point'' and set it to `/'"
+msgstr ""
+
+#: ../install_interactive.pm:67
+msgid ""
+"You do not have a swap partition.\n"
+"\n"
+"Continue anyway?"
+msgstr ""
+
+#: ../install_interactive.pm:70
+msgid "You must have a FAT partition mounted in /boot/efi"
+msgstr ""
+
+#: ../install_interactive.pm:95
+msgid "Use free space"
+msgstr ""
+
+#: ../install_interactive.pm:97
+msgid "Not enough free space to allocate new partitions"
+msgstr ""
+
+#: ../install_interactive.pm:105
+msgid "Use existing partitions"
+msgstr ""
+
+#: ../install_interactive.pm:107
+msgid "There is no existing partition to use"
+msgstr ""
+
+#: ../install_interactive.pm:114
+msgid "Use the Windows partition for loopback"
+msgstr ""
+
+#: ../install_interactive.pm:117
+msgid "Which partition do you want to use for Linux4Win?"
+msgstr ""
+
+#: ../install_interactive.pm:119
+msgid "Choose the sizes"
+msgstr ""
+
+#: ../install_interactive.pm:120
+msgid "Root partition size in MB: "
+msgstr ""
+
+#: ../install_interactive.pm:121
+msgid "Swap partition size in MB: "
+msgstr ""
+
+#: ../install_interactive.pm:130
+msgid "There is no FAT partition to use as loopback (or not enough space left)"
+msgstr ""
+
+#: ../install_interactive.pm:137
+msgid "Use the free space on the Windows partition"
+msgstr ""
+
+#: ../install_interactive.pm:139
+msgid "Which partition do you want to resize?"
+msgstr ""
+
+#: ../install_interactive.pm:153
+#, perl-format
+msgid ""
+"The FAT resizer is unable to handle your partition, \n"
+"the following error occurred: %s"
+msgstr ""
+
+#: ../install_interactive.pm:156
+msgid "Computing the size of the Windows partition"
+msgstr ""
+
+#: ../install_interactive.pm:156 ../install_interactive.pm:188
+msgid "Resizing"
+msgstr ""
+
+#: ../install_interactive.pm:163
+msgid ""
+"Your Windows partition is too fragmented. Please reboot your computer under "
+"Windows, run the ``defrag'' utility, then restart the Mandriva Linux "
+"installation."
+msgstr ""
+
+#: ../install_interactive.pm:166
+msgid ""
+"WARNING!\n"
+"\n"
+"DrakX will now resize your Windows partition. Be careful: this\n"
+"operation is dangerous. If you have not already done so, you\n"
+"first need to exit the installation, run \"chkdsk c:\" from a\n"
+"Command Prompt under Windows (beware, running graphical program\n"
+"\"scandisk\" is not enough, be sure to use \"chkdsk\" in a\n"
+"Command Prompt!), optionally run defrag, then restart the\n"
+"installation. You should also backup your data.\n"
+"When sure, press Ok."
+msgstr ""
+
+#: ../install_interactive.pm:178
+msgid "Which size do you want to keep for Windows on"
+msgstr ""
+
+#: ../install_interactive.pm:179
+#, perl-format
+msgid "partition %s"
+msgstr ""
+
+#: ../install_interactive.pm:188
+msgid "Resizing Windows partition"
+msgstr ""
+
+#: ../install_interactive.pm:193
+#, perl-format
+msgid "FAT resizing failed: %s"
+msgstr ""
+
+#: ../install_interactive.pm:196
+msgid ""
+"To ensure data integrity after resizing the partition(s), \n"
+"filesystem checks will be run on your next boot into Windows(TM)"
+msgstr ""
+
+#: ../install_interactive.pm:208
+msgid "There is no FAT partition to resize (or not enough space left)"
+msgstr ""
+
+#: ../install_interactive.pm:213
+msgid "Erase and use entire disk"
+msgstr ""
+
+#: ../install_interactive.pm:213
+msgid "Remove Windows(TM)"
+msgstr ""
+
+#: ../install_interactive.pm:215
+msgid "You have more than one hard drive, which one do you install linux on?"
+msgstr ""
+
+#: ../install_interactive.pm:219
+#, perl-format
+msgid "ALL existing partitions and their data will be lost on drive %s"
+msgstr ""
+
+#: ../install_interactive.pm:228
+msgid "Custom disk partitioning"
+msgstr ""
+
+#: ../install_interactive.pm:232
+msgid "Use fdisk"
+msgstr ""
+
+#: ../install_interactive.pm:235
+#, perl-format
+msgid ""
+"You can now partition %s.\n"
+"When you are done, do not forget to save using `w'"
+msgstr ""
+
+#: ../install_interactive.pm:271
+msgid "I can not find any room for installing"
+msgstr ""
+
+#: ../install_interactive.pm:275
+msgid "The DrakX Partitioning wizard found the following solutions:"
+msgstr ""
+
+#: ../install_interactive.pm:281
+#, perl-format
+msgid "Partitioning failed: %s"
+msgstr ""
+
+#: ../install_interactive.pm:288
+msgid "Bringing up the network"
+msgstr ""
+
+#: ../install_interactive.pm:293
+msgid "Bringing down the network"
+msgstr ""
diff --git a/live/draklive-install/po/fr.po b/live/draklive-install/po/fr.po
new file mode 100644
index 000000000..f16c11e32
--- /dev/null
+++ b/live/draklive-install/po/fr.po
@@ -0,0 +1,300 @@
+#: ../draklive-install:59
+msgid "Mandriva Live"
+msgstr ""
+
+#: ../draklive-install:65
+msgid "This wizard will help you to install the live distribution."
+msgstr ""
+
+#: ../draklive-install:83
+msgid "Computing total size"
+msgstr ""
+
+#: ../draklive-install:95
+msgid "Copying in progress"
+msgstr ""
+
+#: ../draklive-install:163
+msgid "Congratulations"
+msgstr ""
+
+#: ../draklive-install:163
+msgid ""
+"Please halt your computer, remove your live system, and restart your "
+"computer."
+msgstr ""
+
+#: ../draklive-install:179 ../draklive-install:407
+msgid "You need to reboot for the partition table modifications to take place"
+msgstr ""
+
+#: ../draklive-install:230
+msgid "Choose the partitions you want to format"
+msgstr ""
+
+#: ../draklive-install:232
+msgid "Check bad blocks?"
+msgstr ""
+
+#: ../draklive-install:261
+#, c-format
+msgid "Failed to check filesystem %s. Do you want to repair the errors?"
+msgstr ""
+
+#: ../draklive-install:262
+msgid ", $1), 1);"
+msgstr ""
+
+#: ../draklive-install:265
+msgid "Not enough swap space to fulfill installation, please add some"
+msgstr ""
+
+#: ../draklive-install:284
+msgid "$d/$l{$_}"
+msgstr ""
+
+#: ../draklive-install:285
+msgid "$d/.bashrc"
+msgstr ""
+
+#: ../draklive-install:317
+msgid "No partition available"
+msgstr ""
+
+#: ../draklive-install:320
+msgid "Scanning partitions to find mount points"
+msgstr ""
+
+#: ../draklive-install:327
+msgid "Choose the mount points"
+msgstr ""
+
+#: ../draklive-install:328
+msgid "Partitioning"
+msgstr ""
+
+#: ../draklive-install:361
+msgid "none"
+msgstr ""
+
+#: ../draklive-install:363
+#, c-format
+msgid "Duplicate mount point %s"
+msgstr ""
+
+#: ../draklive-install:389
+msgid "Continue anyway?"
+msgstr ""
+
+#: ../draklive-install:394
+msgid "Quit without saving"
+msgstr ""
+
+#: ../draklive-install:394
+msgid "Quit without writing the partition table?"
+msgstr ""
+
+#: ../draklive-install:400
+msgid "Do you want to save /etc/fstab modifications"
+msgstr ""
+
+#: ../draklive-install:412
+#, c-format
+msgid "You should format partition %s."
+msgstr ""
+
+#: ../draklive-install:414
+msgid ""
+", $part->{device}, $part->{mntpoint})) or return if $::isStandalone && 0; #- "
+"no, please"
+msgstr ""
+
+#: ../install_interactive.pm:22
+#, perl-format
+msgid ""
+"Some hardware on your computer needs ``proprietary'' drivers to work.\n"
+"You can find some information about them at: %s"
+msgstr ""
+
+#: ../install_interactive.pm:62
+msgid ""
+"You must have a root partition.\n"
+"For this, create a partition (or click on an existing one).\n"
+"Then choose action ``Mount point'' and set it to `/'"
+msgstr ""
+
+#: ../install_interactive.pm:67
+msgid ""
+"You do not have a swap partition.\n"
+"\n"
+"Continue anyway?"
+msgstr ""
+
+#: ../install_interactive.pm:70
+msgid "You must have a FAT partition mounted in /boot/efi"
+msgstr ""
+
+#: ../install_interactive.pm:95
+msgid "Use free space"
+msgstr ""
+
+#: ../install_interactive.pm:97
+msgid "Not enough free space to allocate new partitions"
+msgstr ""
+
+#: ../install_interactive.pm:105
+msgid "Use existing partitions"
+msgstr ""
+
+#: ../install_interactive.pm:107
+msgid "There is no existing partition to use"
+msgstr ""
+
+#: ../install_interactive.pm:114
+msgid "Use the Windows partition for loopback"
+msgstr ""
+
+#: ../install_interactive.pm:117
+msgid "Which partition do you want to use for Linux4Win?"
+msgstr ""
+
+#: ../install_interactive.pm:119
+msgid "Choose the sizes"
+msgstr ""
+
+#: ../install_interactive.pm:120
+msgid "Root partition size in MB: "
+msgstr ""
+
+#: ../install_interactive.pm:121
+msgid "Swap partition size in MB: "
+msgstr ""
+
+#: ../install_interactive.pm:130
+msgid "There is no FAT partition to use as loopback (or not enough space left)"
+msgstr ""
+
+#: ../install_interactive.pm:137
+msgid "Use the free space on the Windows partition"
+msgstr ""
+
+#: ../install_interactive.pm:139
+msgid "Which partition do you want to resize?"
+msgstr ""
+
+#: ../install_interactive.pm:153
+#, perl-format
+msgid ""
+"The FAT resizer is unable to handle your partition, \n"
+"the following error occurred: %s"
+msgstr ""
+
+#: ../install_interactive.pm:156
+msgid "Computing the size of the Windows partition"
+msgstr ""
+
+#: ../install_interactive.pm:156 ../install_interactive.pm:188
+msgid "Resizing"
+msgstr ""
+
+#: ../install_interactive.pm:163
+msgid ""
+"Your Windows partition is too fragmented. Please reboot your computer under "
+"Windows, run the ``defrag'' utility, then restart the Mandriva Linux "
+"installation."
+msgstr ""
+
+#: ../install_interactive.pm:166
+msgid ""
+"WARNING!\n"
+"\n"
+"DrakX will now resize your Windows partition. Be careful: this\n"
+"operation is dangerous. If you have not already done so, you\n"
+"first need to exit the installation, run \"chkdsk c:\" from a\n"
+"Command Prompt under Windows (beware, running graphical program\n"
+"\"scandisk\" is not enough, be sure to use \"chkdsk\" in a\n"
+"Command Prompt!), optionally run defrag, then restart the\n"
+"installation. You should also backup your data.\n"
+"When sure, press Ok."
+msgstr ""
+
+#: ../install_interactive.pm:178
+msgid "Which size do you want to keep for Windows on"
+msgstr ""
+
+#: ../install_interactive.pm:179
+#, perl-format
+msgid "partition %s"
+msgstr ""
+
+#: ../install_interactive.pm:188
+msgid "Resizing Windows partition"
+msgstr ""
+
+#: ../install_interactive.pm:193
+#, perl-format
+msgid "FAT resizing failed: %s"
+msgstr ""
+
+#: ../install_interactive.pm:196
+msgid ""
+"To ensure data integrity after resizing the partition(s), \n"
+"filesystem checks will be run on your next boot into Windows(TM)"
+msgstr ""
+
+#: ../install_interactive.pm:208
+msgid "There is no FAT partition to resize (or not enough space left)"
+msgstr ""
+
+#: ../install_interactive.pm:213
+msgid "Erase and use entire disk"
+msgstr ""
+
+#: ../install_interactive.pm:213
+msgid "Remove Windows(TM)"
+msgstr ""
+
+#: ../install_interactive.pm:215
+msgid "You have more than one hard drive, which one do you install linux on?"
+msgstr ""
+
+#: ../install_interactive.pm:219
+#, perl-format
+msgid "ALL existing partitions and their data will be lost on drive %s"
+msgstr ""
+
+#: ../install_interactive.pm:228
+msgid "Custom disk partitioning"
+msgstr ""
+
+#: ../install_interactive.pm:232
+msgid "Use fdisk"
+msgstr ""
+
+#: ../install_interactive.pm:235
+#, perl-format
+msgid ""
+"You can now partition %s.\n"
+"When you are done, do not forget to save using `w'"
+msgstr ""
+
+#: ../install_interactive.pm:271
+msgid "I can not find any room for installing"
+msgstr ""
+
+#: ../install_interactive.pm:275
+msgid "The DrakX Partitioning wizard found the following solutions:"
+msgstr ""
+
+#: ../install_interactive.pm:281
+#, perl-format
+msgid "Partitioning failed: %s"
+msgstr ""
+
+#: ../install_interactive.pm:288
+msgid "Bringing up the network"
+msgstr ""
+
+#: ../install_interactive.pm:293
+msgid "Bringing down the network"
+msgstr ""
diff --git a/live/draklive-install/po/fur.po b/live/draklive-install/po/fur.po
new file mode 100644
index 000000000..f16c11e32
--- /dev/null
+++ b/live/draklive-install/po/fur.po
@@ -0,0 +1,300 @@
+#: ../draklive-install:59
+msgid "Mandriva Live"
+msgstr ""
+
+#: ../draklive-install:65
+msgid "This wizard will help you to install the live distribution."
+msgstr ""
+
+#: ../draklive-install:83
+msgid "Computing total size"
+msgstr ""
+
+#: ../draklive-install:95
+msgid "Copying in progress"
+msgstr ""
+
+#: ../draklive-install:163
+msgid "Congratulations"
+msgstr ""
+
+#: ../draklive-install:163
+msgid ""
+"Please halt your computer, remove your live system, and restart your "
+"computer."
+msgstr ""
+
+#: ../draklive-install:179 ../draklive-install:407
+msgid "You need to reboot for the partition table modifications to take place"
+msgstr ""
+
+#: ../draklive-install:230
+msgid "Choose the partitions you want to format"
+msgstr ""
+
+#: ../draklive-install:232
+msgid "Check bad blocks?"
+msgstr ""
+
+#: ../draklive-install:261
+#, c-format
+msgid "Failed to check filesystem %s. Do you want to repair the errors?"
+msgstr ""
+
+#: ../draklive-install:262
+msgid ", $1), 1);"
+msgstr ""
+
+#: ../draklive-install:265
+msgid "Not enough swap space to fulfill installation, please add some"
+msgstr ""
+
+#: ../draklive-install:284
+msgid "$d/$l{$_}"
+msgstr ""
+
+#: ../draklive-install:285
+msgid "$d/.bashrc"
+msgstr ""
+
+#: ../draklive-install:317
+msgid "No partition available"
+msgstr ""
+
+#: ../draklive-install:320
+msgid "Scanning partitions to find mount points"
+msgstr ""
+
+#: ../draklive-install:327
+msgid "Choose the mount points"
+msgstr ""
+
+#: ../draklive-install:328
+msgid "Partitioning"
+msgstr ""
+
+#: ../draklive-install:361
+msgid "none"
+msgstr ""
+
+#: ../draklive-install:363
+#, c-format
+msgid "Duplicate mount point %s"
+msgstr ""
+
+#: ../draklive-install:389
+msgid "Continue anyway?"
+msgstr ""
+
+#: ../draklive-install:394
+msgid "Quit without saving"
+msgstr ""
+
+#: ../draklive-install:394
+msgid "Quit without writing the partition table?"
+msgstr ""
+
+#: ../draklive-install:400
+msgid "Do you want to save /etc/fstab modifications"
+msgstr ""
+
+#: ../draklive-install:412
+#, c-format
+msgid "You should format partition %s."
+msgstr ""
+
+#: ../draklive-install:414
+msgid ""
+", $part->{device}, $part->{mntpoint})) or return if $::isStandalone && 0; #- "
+"no, please"
+msgstr ""
+
+#: ../install_interactive.pm:22
+#, perl-format
+msgid ""
+"Some hardware on your computer needs ``proprietary'' drivers to work.\n"
+"You can find some information about them at: %s"
+msgstr ""
+
+#: ../install_interactive.pm:62
+msgid ""
+"You must have a root partition.\n"
+"For this, create a partition (or click on an existing one).\n"
+"Then choose action ``Mount point'' and set it to `/'"
+msgstr ""
+
+#: ../install_interactive.pm:67
+msgid ""
+"You do not have a swap partition.\n"
+"\n"
+"Continue anyway?"
+msgstr ""
+
+#: ../install_interactive.pm:70
+msgid "You must have a FAT partition mounted in /boot/efi"
+msgstr ""
+
+#: ../install_interactive.pm:95
+msgid "Use free space"
+msgstr ""
+
+#: ../install_interactive.pm:97
+msgid "Not enough free space to allocate new partitions"
+msgstr ""
+
+#: ../install_interactive.pm:105
+msgid "Use existing partitions"
+msgstr ""
+
+#: ../install_interactive.pm:107
+msgid "There is no existing partition to use"
+msgstr ""
+
+#: ../install_interactive.pm:114
+msgid "Use the Windows partition for loopback"
+msgstr ""
+
+#: ../install_interactive.pm:117
+msgid "Which partition do you want to use for Linux4Win?"
+msgstr ""
+
+#: ../install_interactive.pm:119
+msgid "Choose the sizes"
+msgstr ""
+
+#: ../install_interactive.pm:120
+msgid "Root partition size in MB: "
+msgstr ""
+
+#: ../install_interactive.pm:121
+msgid "Swap partition size in MB: "
+msgstr ""
+
+#: ../install_interactive.pm:130
+msgid "There is no FAT partition to use as loopback (or not enough space left)"
+msgstr ""
+
+#: ../install_interactive.pm:137
+msgid "Use the free space on the Windows partition"
+msgstr ""
+
+#: ../install_interactive.pm:139
+msgid "Which partition do you want to resize?"
+msgstr ""
+
+#: ../install_interactive.pm:153
+#, perl-format
+msgid ""
+"The FAT resizer is unable to handle your partition, \n"
+"the following error occurred: %s"
+msgstr ""
+
+#: ../install_interactive.pm:156
+msgid "Computing the size of the Windows partition"
+msgstr ""
+
+#: ../install_interactive.pm:156 ../install_interactive.pm:188
+msgid "Resizing"
+msgstr ""
+
+#: ../install_interactive.pm:163
+msgid ""
+"Your Windows partition is too fragmented. Please reboot your computer under "
+"Windows, run the ``defrag'' utility, then restart the Mandriva Linux "
+"installation."
+msgstr ""
+
+#: ../install_interactive.pm:166
+msgid ""
+"WARNING!\n"
+"\n"
+"DrakX will now resize your Windows partition. Be careful: this\n"
+"operation is dangerous. If you have not already done so, you\n"
+"first need to exit the installation, run \"chkdsk c:\" from a\n"
+"Command Prompt under Windows (beware, running graphical program\n"
+"\"scandisk\" is not enough, be sure to use \"chkdsk\" in a\n"
+"Command Prompt!), optionally run defrag, then restart the\n"
+"installation. You should also backup your data.\n"
+"When sure, press Ok."
+msgstr ""
+
+#: ../install_interactive.pm:178
+msgid "Which size do you want to keep for Windows on"
+msgstr ""
+
+#: ../install_interactive.pm:179
+#, perl-format
+msgid "partition %s"
+msgstr ""
+
+#: ../install_interactive.pm:188
+msgid "Resizing Windows partition"
+msgstr ""
+
+#: ../install_interactive.pm:193
+#, perl-format
+msgid "FAT resizing failed: %s"
+msgstr ""
+
+#: ../install_interactive.pm:196
+msgid ""
+"To ensure data integrity after resizing the partition(s), \n"
+"filesystem checks will be run on your next boot into Windows(TM)"
+msgstr ""
+
+#: ../install_interactive.pm:208
+msgid "There is no FAT partition to resize (or not enough space left)"
+msgstr ""
+
+#: ../install_interactive.pm:213
+msgid "Erase and use entire disk"
+msgstr ""
+
+#: ../install_interactive.pm:213
+msgid "Remove Windows(TM)"
+msgstr ""
+
+#: ../install_interactive.pm:215
+msgid "You have more than one hard drive, which one do you install linux on?"
+msgstr ""
+
+#: ../install_interactive.pm:219
+#, perl-format
+msgid "ALL existing partitions and their data will be lost on drive %s"
+msgstr ""
+
+#: ../install_interactive.pm:228
+msgid "Custom disk partitioning"
+msgstr ""
+
+#: ../install_interactive.pm:232
+msgid "Use fdisk"
+msgstr ""
+
+#: ../install_interactive.pm:235
+#, perl-format
+msgid ""
+"You can now partition %s.\n"
+"When you are done, do not forget to save using `w'"
+msgstr ""
+
+#: ../install_interactive.pm:271
+msgid "I can not find any room for installing"
+msgstr ""
+
+#: ../install_interactive.pm:275
+msgid "The DrakX Partitioning wizard found the following solutions:"
+msgstr ""
+
+#: ../install_interactive.pm:281
+#, perl-format
+msgid "Partitioning failed: %s"
+msgstr ""
+
+#: ../install_interactive.pm:288
+msgid "Bringing up the network"
+msgstr ""
+
+#: ../install_interactive.pm:293
+msgid "Bringing down the network"
+msgstr ""
diff --git a/live/draklive-install/po/ga.po b/live/draklive-install/po/ga.po
new file mode 100644
index 000000000..f16c11e32
--- /dev/null
+++ b/live/draklive-install/po/ga.po
@@ -0,0 +1,300 @@
+#: ../draklive-install:59
+msgid "Mandriva Live"
+msgstr ""
+
+#: ../draklive-install:65
+msgid "This wizard will help you to install the live distribution."
+msgstr ""
+
+#: ../draklive-install:83
+msgid "Computing total size"
+msgstr ""
+
+#: ../draklive-install:95
+msgid "Copying in progress"
+msgstr ""
+
+#: ../draklive-install:163
+msgid "Congratulations"
+msgstr ""
+
+#: ../draklive-install:163
+msgid ""
+"Please halt your computer, remove your live system, and restart your "
+"computer."
+msgstr ""
+
+#: ../draklive-install:179 ../draklive-install:407
+msgid "You need to reboot for the partition table modifications to take place"
+msgstr ""
+
+#: ../draklive-install:230
+msgid "Choose the partitions you want to format"
+msgstr ""
+
+#: ../draklive-install:232
+msgid "Check bad blocks?"
+msgstr ""
+
+#: ../draklive-install:261
+#, c-format
+msgid "Failed to check filesystem %s. Do you want to repair the errors?"
+msgstr ""
+
+#: ../draklive-install:262
+msgid ", $1), 1);"
+msgstr ""
+
+#: ../draklive-install:265
+msgid "Not enough swap space to fulfill installation, please add some"
+msgstr ""
+
+#: ../draklive-install:284
+msgid "$d/$l{$_}"
+msgstr ""
+
+#: ../draklive-install:285
+msgid "$d/.bashrc"
+msgstr ""
+
+#: ../draklive-install:317
+msgid "No partition available"
+msgstr ""
+
+#: ../draklive-install:320
+msgid "Scanning partitions to find mount points"
+msgstr ""
+
+#: ../draklive-install:327
+msgid "Choose the mount points"
+msgstr ""
+
+#: ../draklive-install:328
+msgid "Partitioning"
+msgstr ""
+
+#: ../draklive-install:361
+msgid "none"
+msgstr ""
+
+#: ../draklive-install:363
+#, c-format
+msgid "Duplicate mount point %s"
+msgstr ""
+
+#: ../draklive-install:389
+msgid "Continue anyway?"
+msgstr ""
+
+#: ../draklive-install:394
+msgid "Quit without saving"
+msgstr ""
+
+#: ../draklive-install:394
+msgid "Quit without writing the partition table?"
+msgstr ""
+
+#: ../draklive-install:400
+msgid "Do you want to save /etc/fstab modifications"
+msgstr ""
+
+#: ../draklive-install:412
+#, c-format
+msgid "You should format partition %s."
+msgstr ""
+
+#: ../draklive-install:414
+msgid ""
+", $part->{device}, $part->{mntpoint})) or return if $::isStandalone && 0; #- "
+"no, please"
+msgstr ""
+
+#: ../install_interactive.pm:22
+#, perl-format
+msgid ""
+"Some hardware on your computer needs ``proprietary'' drivers to work.\n"
+"You can find some information about them at: %s"
+msgstr ""
+
+#: ../install_interactive.pm:62
+msgid ""
+"You must have a root partition.\n"
+"For this, create a partition (or click on an existing one).\n"
+"Then choose action ``Mount point'' and set it to `/'"
+msgstr ""
+
+#: ../install_interactive.pm:67
+msgid ""
+"You do not have a swap partition.\n"
+"\n"
+"Continue anyway?"
+msgstr ""
+
+#: ../install_interactive.pm:70
+msgid "You must have a FAT partition mounted in /boot/efi"
+msgstr ""
+
+#: ../install_interactive.pm:95
+msgid "Use free space"
+msgstr ""
+
+#: ../install_interactive.pm:97
+msgid "Not enough free space to allocate new partitions"
+msgstr ""
+
+#: ../install_interactive.pm:105
+msgid "Use existing partitions"
+msgstr ""
+
+#: ../install_interactive.pm:107
+msgid "There is no existing partition to use"
+msgstr ""
+
+#: ../install_interactive.pm:114
+msgid "Use the Windows partition for loopback"
+msgstr ""
+
+#: ../install_interactive.pm:117
+msgid "Which partition do you want to use for Linux4Win?"
+msgstr ""
+
+#: ../install_interactive.pm:119
+msgid "Choose the sizes"
+msgstr ""
+
+#: ../install_interactive.pm:120
+msgid "Root partition size in MB: "
+msgstr ""
+
+#: ../install_interactive.pm:121
+msgid "Swap partition size in MB: "
+msgstr ""
+
+#: ../install_interactive.pm:130
+msgid "There is no FAT partition to use as loopback (or not enough space left)"
+msgstr ""
+
+#: ../install_interactive.pm:137
+msgid "Use the free space on the Windows partition"
+msgstr ""
+
+#: ../install_interactive.pm:139
+msgid "Which partition do you want to resize?"
+msgstr ""
+
+#: ../install_interactive.pm:153
+#, perl-format
+msgid ""
+"The FAT resizer is unable to handle your partition, \n"
+"the following error occurred: %s"
+msgstr ""
+
+#: ../install_interactive.pm:156
+msgid "Computing the size of the Windows partition"
+msgstr ""
+
+#: ../install_interactive.pm:156 ../install_interactive.pm:188
+msgid "Resizing"
+msgstr ""
+
+#: ../install_interactive.pm:163
+msgid ""
+"Your Windows partition is too fragmented. Please reboot your computer under "
+"Windows, run the ``defrag'' utility, then restart the Mandriva Linux "
+"installation."
+msgstr ""
+
+#: ../install_interactive.pm:166
+msgid ""
+"WARNING!\n"
+"\n"
+"DrakX will now resize your Windows partition. Be careful: this\n"
+"operation is dangerous. If you have not already done so, you\n"
+"first need to exit the installation, run \"chkdsk c:\" from a\n"
+"Command Prompt under Windows (beware, running graphical program\n"
+"\"scandisk\" is not enough, be sure to use \"chkdsk\" in a\n"
+"Command Prompt!), optionally run defrag, then restart the\n"
+"installation. You should also backup your data.\n"
+"When sure, press Ok."
+msgstr ""
+
+#: ../install_interactive.pm:178
+msgid "Which size do you want to keep for Windows on"
+msgstr ""
+
+#: ../install_interactive.pm:179
+#, perl-format
+msgid "partition %s"
+msgstr ""
+
+#: ../install_interactive.pm:188
+msgid "Resizing Windows partition"
+msgstr ""
+
+#: ../install_interactive.pm:193
+#, perl-format
+msgid "FAT resizing failed: %s"
+msgstr ""
+
+#: ../install_interactive.pm:196
+msgid ""
+"To ensure data integrity after resizing the partition(s), \n"
+"filesystem checks will be run on your next boot into Windows(TM)"
+msgstr ""
+
+#: ../install_interactive.pm:208
+msgid "There is no FAT partition to resize (or not enough space left)"
+msgstr ""
+
+#: ../install_interactive.pm:213
+msgid "Erase and use entire disk"
+msgstr ""
+
+#: ../install_interactive.pm:213
+msgid "Remove Windows(TM)"
+msgstr ""
+
+#: ../install_interactive.pm:215
+msgid "You have more than one hard drive, which one do you install linux on?"
+msgstr ""
+
+#: ../install_interactive.pm:219
+#, perl-format
+msgid "ALL existing partitions and their data will be lost on drive %s"
+msgstr ""
+
+#: ../install_interactive.pm:228
+msgid "Custom disk partitioning"
+msgstr ""
+
+#: ../install_interactive.pm:232
+msgid "Use fdisk"
+msgstr ""
+
+#: ../install_interactive.pm:235
+#, perl-format
+msgid ""
+"You can now partition %s.\n"
+"When you are done, do not forget to save using `w'"
+msgstr ""
+
+#: ../install_interactive.pm:271
+msgid "I can not find any room for installing"
+msgstr ""
+
+#: ../install_interactive.pm:275
+msgid "The DrakX Partitioning wizard found the following solutions:"
+msgstr ""
+
+#: ../install_interactive.pm:281
+#, perl-format
+msgid "Partitioning failed: %s"
+msgstr ""
+
+#: ../install_interactive.pm:288
+msgid "Bringing up the network"
+msgstr ""
+
+#: ../install_interactive.pm:293
+msgid "Bringing down the network"
+msgstr ""
diff --git a/live/draklive-install/po/gl.po b/live/draklive-install/po/gl.po
new file mode 100644
index 000000000..f16c11e32
--- /dev/null
+++ b/live/draklive-install/po/gl.po
@@ -0,0 +1,300 @@
+#: ../draklive-install:59
+msgid "Mandriva Live"
+msgstr ""
+
+#: ../draklive-install:65
+msgid "This wizard will help you to install the live distribution."
+msgstr ""
+
+#: ../draklive-install:83
+msgid "Computing total size"
+msgstr ""
+
+#: ../draklive-install:95
+msgid "Copying in progress"
+msgstr ""
+
+#: ../draklive-install:163
+msgid "Congratulations"
+msgstr ""
+
+#: ../draklive-install:163
+msgid ""
+"Please halt your computer, remove your live system, and restart your "
+"computer."
+msgstr ""
+
+#: ../draklive-install:179 ../draklive-install:407
+msgid "You need to reboot for the partition table modifications to take place"
+msgstr ""
+
+#: ../draklive-install:230
+msgid "Choose the partitions you want to format"
+msgstr ""
+
+#: ../draklive-install:232
+msgid "Check bad blocks?"
+msgstr ""
+
+#: ../draklive-install:261
+#, c-format
+msgid "Failed to check filesystem %s. Do you want to repair the errors?"
+msgstr ""
+
+#: ../draklive-install:262
+msgid ", $1), 1);"
+msgstr ""
+
+#: ../draklive-install:265
+msgid "Not enough swap space to fulfill installation, please add some"
+msgstr ""
+
+#: ../draklive-install:284
+msgid "$d/$l{$_}"
+msgstr ""
+
+#: ../draklive-install:285
+msgid "$d/.bashrc"
+msgstr ""
+
+#: ../draklive-install:317
+msgid "No partition available"
+msgstr ""
+
+#: ../draklive-install:320
+msgid "Scanning partitions to find mount points"
+msgstr ""
+
+#: ../draklive-install:327
+msgid "Choose the mount points"
+msgstr ""
+
+#: ../draklive-install:328
+msgid "Partitioning"
+msgstr ""
+
+#: ../draklive-install:361
+msgid "none"
+msgstr ""
+
+#: ../draklive-install:363
+#, c-format
+msgid "Duplicate mount point %s"
+msgstr ""
+
+#: ../draklive-install:389
+msgid "Continue anyway?"
+msgstr ""
+
+#: ../draklive-install:394
+msgid "Quit without saving"
+msgstr ""
+
+#: ../draklive-install:394
+msgid "Quit without writing the partition table?"
+msgstr ""
+
+#: ../draklive-install:400
+msgid "Do you want to save /etc/fstab modifications"
+msgstr ""
+
+#: ../draklive-install:412
+#, c-format
+msgid "You should format partition %s."
+msgstr ""
+
+#: ../draklive-install:414
+msgid ""
+", $part->{device}, $part->{mntpoint})) or return if $::isStandalone && 0; #- "
+"no, please"
+msgstr ""
+
+#: ../install_interactive.pm:22
+#, perl-format
+msgid ""
+"Some hardware on your computer needs ``proprietary'' drivers to work.\n"
+"You can find some information about them at: %s"
+msgstr ""
+
+#: ../install_interactive.pm:62
+msgid ""
+"You must have a root partition.\n"
+"For this, create a partition (or click on an existing one).\n"
+"Then choose action ``Mount point'' and set it to `/'"
+msgstr ""
+
+#: ../install_interactive.pm:67
+msgid ""
+"You do not have a swap partition.\n"
+"\n"
+"Continue anyway?"
+msgstr ""
+
+#: ../install_interactive.pm:70
+msgid "You must have a FAT partition mounted in /boot/efi"
+msgstr ""
+
+#: ../install_interactive.pm:95
+msgid "Use free space"
+msgstr ""
+
+#: ../install_interactive.pm:97
+msgid "Not enough free space to allocate new partitions"
+msgstr ""
+
+#: ../install_interactive.pm:105
+msgid "Use existing partitions"
+msgstr ""
+
+#: ../install_interactive.pm:107
+msgid "There is no existing partition to use"
+msgstr ""
+
+#: ../install_interactive.pm:114
+msgid "Use the Windows partition for loopback"
+msgstr ""
+
+#: ../install_interactive.pm:117
+msgid "Which partition do you want to use for Linux4Win?"
+msgstr ""
+
+#: ../install_interactive.pm:119
+msgid "Choose the sizes"
+msgstr ""
+
+#: ../install_interactive.pm:120
+msgid "Root partition size in MB: "
+msgstr ""
+
+#: ../install_interactive.pm:121
+msgid "Swap partition size in MB: "
+msgstr ""
+
+#: ../install_interactive.pm:130
+msgid "There is no FAT partition to use as loopback (or not enough space left)"
+msgstr ""
+
+#: ../install_interactive.pm:137
+msgid "Use the free space on the Windows partition"
+msgstr ""
+
+#: ../install_interactive.pm:139
+msgid "Which partition do you want to resize?"
+msgstr ""
+
+#: ../install_interactive.pm:153
+#, perl-format
+msgid ""
+"The FAT resizer is unable to handle your partition, \n"
+"the following error occurred: %s"
+msgstr ""
+
+#: ../install_interactive.pm:156
+msgid "Computing the size of the Windows partition"
+msgstr ""
+
+#: ../install_interactive.pm:156 ../install_interactive.pm:188
+msgid "Resizing"
+msgstr ""
+
+#: ../install_interactive.pm:163
+msgid ""
+"Your Windows partition is too fragmented. Please reboot your computer under "
+"Windows, run the ``defrag'' utility, then restart the Mandriva Linux "
+"installation."
+msgstr ""
+
+#: ../install_interactive.pm:166
+msgid ""
+"WARNING!\n"
+"\n"
+"DrakX will now resize your Windows partition. Be careful: this\n"
+"operation is dangerous. If you have not already done so, you\n"
+"first need to exit the installation, run \"chkdsk c:\" from a\n"
+"Command Prompt under Windows (beware, running graphical program\n"
+"\"scandisk\" is not enough, be sure to use \"chkdsk\" in a\n"
+"Command Prompt!), optionally run defrag, then restart the\n"
+"installation. You should also backup your data.\n"
+"When sure, press Ok."
+msgstr ""
+
+#: ../install_interactive.pm:178
+msgid "Which size do you want to keep for Windows on"
+msgstr ""
+
+#: ../install_interactive.pm:179
+#, perl-format
+msgid "partition %s"
+msgstr ""
+
+#: ../install_interactive.pm:188
+msgid "Resizing Windows partition"
+msgstr ""
+
+#: ../install_interactive.pm:193
+#, perl-format
+msgid "FAT resizing failed: %s"
+msgstr ""
+
+#: ../install_interactive.pm:196
+msgid ""
+"To ensure data integrity after resizing the partition(s), \n"
+"filesystem checks will be run on your next boot into Windows(TM)"
+msgstr ""
+
+#: ../install_interactive.pm:208
+msgid "There is no FAT partition to resize (or not enough space left)"
+msgstr ""
+
+#: ../install_interactive.pm:213
+msgid "Erase and use entire disk"
+msgstr ""
+
+#: ../install_interactive.pm:213
+msgid "Remove Windows(TM)"
+msgstr ""
+
+#: ../install_interactive.pm:215
+msgid "You have more than one hard drive, which one do you install linux on?"
+msgstr ""
+
+#: ../install_interactive.pm:219
+#, perl-format
+msgid "ALL existing partitions and their data will be lost on drive %s"
+msgstr ""
+
+#: ../install_interactive.pm:228
+msgid "Custom disk partitioning"
+msgstr ""
+
+#: ../install_interactive.pm:232
+msgid "Use fdisk"
+msgstr ""
+
+#: ../install_interactive.pm:235
+#, perl-format
+msgid ""
+"You can now partition %s.\n"
+"When you are done, do not forget to save using `w'"
+msgstr ""
+
+#: ../install_interactive.pm:271
+msgid "I can not find any room for installing"
+msgstr ""
+
+#: ../install_interactive.pm:275
+msgid "The DrakX Partitioning wizard found the following solutions:"
+msgstr ""
+
+#: ../install_interactive.pm:281
+#, perl-format
+msgid "Partitioning failed: %s"
+msgstr ""
+
+#: ../install_interactive.pm:288
+msgid "Bringing up the network"
+msgstr ""
+
+#: ../install_interactive.pm:293
+msgid "Bringing down the network"
+msgstr ""
diff --git a/live/draklive-install/po/he.po b/live/draklive-install/po/he.po
new file mode 100644
index 000000000..f16c11e32
--- /dev/null
+++ b/live/draklive-install/po/he.po
@@ -0,0 +1,300 @@
+#: ../draklive-install:59
+msgid "Mandriva Live"
+msgstr ""
+
+#: ../draklive-install:65
+msgid "This wizard will help you to install the live distribution."
+msgstr ""
+
+#: ../draklive-install:83
+msgid "Computing total size"
+msgstr ""
+
+#: ../draklive-install:95
+msgid "Copying in progress"
+msgstr ""
+
+#: ../draklive-install:163
+msgid "Congratulations"
+msgstr ""
+
+#: ../draklive-install:163
+msgid ""
+"Please halt your computer, remove your live system, and restart your "
+"computer."
+msgstr ""
+
+#: ../draklive-install:179 ../draklive-install:407
+msgid "You need to reboot for the partition table modifications to take place"
+msgstr ""
+
+#: ../draklive-install:230
+msgid "Choose the partitions you want to format"
+msgstr ""
+
+#: ../draklive-install:232
+msgid "Check bad blocks?"
+msgstr ""
+
+#: ../draklive-install:261
+#, c-format
+msgid "Failed to check filesystem %s. Do you want to repair the errors?"
+msgstr ""
+
+#: ../draklive-install:262
+msgid ", $1), 1);"
+msgstr ""
+
+#: ../draklive-install:265
+msgid "Not enough swap space to fulfill installation, please add some"
+msgstr ""
+
+#: ../draklive-install:284
+msgid "$d/$l{$_}"
+msgstr ""
+
+#: ../draklive-install:285
+msgid "$d/.bashrc"
+msgstr ""
+
+#: ../draklive-install:317
+msgid "No partition available"
+msgstr ""
+
+#: ../draklive-install:320
+msgid "Scanning partitions to find mount points"
+msgstr ""
+
+#: ../draklive-install:327
+msgid "Choose the mount points"
+msgstr ""
+
+#: ../draklive-install:328
+msgid "Partitioning"
+msgstr ""
+
+#: ../draklive-install:361
+msgid "none"
+msgstr ""
+
+#: ../draklive-install:363
+#, c-format
+msgid "Duplicate mount point %s"
+msgstr ""
+
+#: ../draklive-install:389
+msgid "Continue anyway?"
+msgstr ""
+
+#: ../draklive-install:394
+msgid "Quit without saving"
+msgstr ""
+
+#: ../draklive-install:394
+msgid "Quit without writing the partition table?"
+msgstr ""
+
+#: ../draklive-install:400
+msgid "Do you want to save /etc/fstab modifications"
+msgstr ""
+
+#: ../draklive-install:412
+#, c-format
+msgid "You should format partition %s."
+msgstr ""
+
+#: ../draklive-install:414
+msgid ""
+", $part->{device}, $part->{mntpoint})) or return if $::isStandalone && 0; #- "
+"no, please"
+msgstr ""
+
+#: ../install_interactive.pm:22
+#, perl-format
+msgid ""
+"Some hardware on your computer needs ``proprietary'' drivers to work.\n"
+"You can find some information about them at: %s"
+msgstr ""
+
+#: ../install_interactive.pm:62
+msgid ""
+"You must have a root partition.\n"
+"For this, create a partition (or click on an existing one).\n"
+"Then choose action ``Mount point'' and set it to `/'"
+msgstr ""
+
+#: ../install_interactive.pm:67
+msgid ""
+"You do not have a swap partition.\n"
+"\n"
+"Continue anyway?"
+msgstr ""
+
+#: ../install_interactive.pm:70
+msgid "You must have a FAT partition mounted in /boot/efi"
+msgstr ""
+
+#: ../install_interactive.pm:95
+msgid "Use free space"
+msgstr ""
+
+#: ../install_interactive.pm:97
+msgid "Not enough free space to allocate new partitions"
+msgstr ""
+
+#: ../install_interactive.pm:105
+msgid "Use existing partitions"
+msgstr ""
+
+#: ../install_interactive.pm:107
+msgid "There is no existing partition to use"
+msgstr ""
+
+#: ../install_interactive.pm:114
+msgid "Use the Windows partition for loopback"
+msgstr ""
+
+#: ../install_interactive.pm:117
+msgid "Which partition do you want to use for Linux4Win?"
+msgstr ""
+
+#: ../install_interactive.pm:119
+msgid "Choose the sizes"
+msgstr ""
+
+#: ../install_interactive.pm:120
+msgid "Root partition size in MB: "
+msgstr ""
+
+#: ../install_interactive.pm:121
+msgid "Swap partition size in MB: "
+msgstr ""
+
+#: ../install_interactive.pm:130
+msgid "There is no FAT partition to use as loopback (or not enough space left)"
+msgstr ""
+
+#: ../install_interactive.pm:137
+msgid "Use the free space on the Windows partition"
+msgstr ""
+
+#: ../install_interactive.pm:139
+msgid "Which partition do you want to resize?"
+msgstr ""
+
+#: ../install_interactive.pm:153
+#, perl-format
+msgid ""
+"The FAT resizer is unable to handle your partition, \n"
+"the following error occurred: %s"
+msgstr ""
+
+#: ../install_interactive.pm:156
+msgid "Computing the size of the Windows partition"
+msgstr ""
+
+#: ../install_interactive.pm:156 ../install_interactive.pm:188
+msgid "Resizing"
+msgstr ""
+
+#: ../install_interactive.pm:163
+msgid ""
+"Your Windows partition is too fragmented. Please reboot your computer under "
+"Windows, run the ``defrag'' utility, then restart the Mandriva Linux "
+"installation."
+msgstr ""
+
+#: ../install_interactive.pm:166
+msgid ""
+"WARNING!\n"
+"\n"
+"DrakX will now resize your Windows partition. Be careful: this\n"
+"operation is dangerous. If you have not already done so, you\n"
+"first need to exit the installation, run \"chkdsk c:\" from a\n"
+"Command Prompt under Windows (beware, running graphical program\n"
+"\"scandisk\" is not enough, be sure to use \"chkdsk\" in a\n"
+"Command Prompt!), optionally run defrag, then restart the\n"
+"installation. You should also backup your data.\n"
+"When sure, press Ok."
+msgstr ""
+
+#: ../install_interactive.pm:178
+msgid "Which size do you want to keep for Windows on"
+msgstr ""
+
+#: ../install_interactive.pm:179
+#, perl-format
+msgid "partition %s"
+msgstr ""
+
+#: ../install_interactive.pm:188
+msgid "Resizing Windows partition"
+msgstr ""
+
+#: ../install_interactive.pm:193
+#, perl-format
+msgid "FAT resizing failed: %s"
+msgstr ""
+
+#: ../install_interactive.pm:196
+msgid ""
+"To ensure data integrity after resizing the partition(s), \n"
+"filesystem checks will be run on your next boot into Windows(TM)"
+msgstr ""
+
+#: ../install_interactive.pm:208
+msgid "There is no FAT partition to resize (or not enough space left)"
+msgstr ""
+
+#: ../install_interactive.pm:213
+msgid "Erase and use entire disk"
+msgstr ""
+
+#: ../install_interactive.pm:213
+msgid "Remove Windows(TM)"
+msgstr ""
+
+#: ../install_interactive.pm:215
+msgid "You have more than one hard drive, which one do you install linux on?"
+msgstr ""
+
+#: ../install_interactive.pm:219
+#, perl-format
+msgid "ALL existing partitions and their data will be lost on drive %s"
+msgstr ""
+
+#: ../install_interactive.pm:228
+msgid "Custom disk partitioning"
+msgstr ""
+
+#: ../install_interactive.pm:232
+msgid "Use fdisk"
+msgstr ""
+
+#: ../install_interactive.pm:235
+#, perl-format
+msgid ""
+"You can now partition %s.\n"
+"When you are done, do not forget to save using `w'"
+msgstr ""
+
+#: ../install_interactive.pm:271
+msgid "I can not find any room for installing"
+msgstr ""
+
+#: ../install_interactive.pm:275
+msgid "The DrakX Partitioning wizard found the following solutions:"
+msgstr ""
+
+#: ../install_interactive.pm:281
+#, perl-format
+msgid "Partitioning failed: %s"
+msgstr ""
+
+#: ../install_interactive.pm:288
+msgid "Bringing up the network"
+msgstr ""
+
+#: ../install_interactive.pm:293
+msgid "Bringing down the network"
+msgstr ""
diff --git a/live/draklive-install/po/hi.po b/live/draklive-install/po/hi.po
new file mode 100644
index 000000000..f16c11e32
--- /dev/null
+++ b/live/draklive-install/po/hi.po
@@ -0,0 +1,300 @@
+#: ../draklive-install:59
+msgid "Mandriva Live"
+msgstr ""
+
+#: ../draklive-install:65
+msgid "This wizard will help you to install the live distribution."
+msgstr ""
+
+#: ../draklive-install:83
+msgid "Computing total size"
+msgstr ""
+
+#: ../draklive-install:95
+msgid "Copying in progress"
+msgstr ""
+
+#: ../draklive-install:163
+msgid "Congratulations"
+msgstr ""
+
+#: ../draklive-install:163
+msgid ""
+"Please halt your computer, remove your live system, and restart your "
+"computer."
+msgstr ""
+
+#: ../draklive-install:179 ../draklive-install:407
+msgid "You need to reboot for the partition table modifications to take place"
+msgstr ""
+
+#: ../draklive-install:230
+msgid "Choose the partitions you want to format"
+msgstr ""
+
+#: ../draklive-install:232
+msgid "Check bad blocks?"
+msgstr ""
+
+#: ../draklive-install:261
+#, c-format
+msgid "Failed to check filesystem %s. Do you want to repair the errors?"
+msgstr ""
+
+#: ../draklive-install:262
+msgid ", $1), 1);"
+msgstr ""
+
+#: ../draklive-install:265
+msgid "Not enough swap space to fulfill installation, please add some"
+msgstr ""
+
+#: ../draklive-install:284
+msgid "$d/$l{$_}"
+msgstr ""
+
+#: ../draklive-install:285
+msgid "$d/.bashrc"
+msgstr ""
+
+#: ../draklive-install:317
+msgid "No partition available"
+msgstr ""
+
+#: ../draklive-install:320
+msgid "Scanning partitions to find mount points"
+msgstr ""
+
+#: ../draklive-install:327
+msgid "Choose the mount points"
+msgstr ""
+
+#: ../draklive-install:328
+msgid "Partitioning"
+msgstr ""
+
+#: ../draklive-install:361
+msgid "none"
+msgstr ""
+
+#: ../draklive-install:363
+#, c-format
+msgid "Duplicate mount point %s"
+msgstr ""
+
+#: ../draklive-install:389
+msgid "Continue anyway?"
+msgstr ""
+
+#: ../draklive-install:394
+msgid "Quit without saving"
+msgstr ""
+
+#: ../draklive-install:394
+msgid "Quit without writing the partition table?"
+msgstr ""
+
+#: ../draklive-install:400
+msgid "Do you want to save /etc/fstab modifications"
+msgstr ""
+
+#: ../draklive-install:412
+#, c-format
+msgid "You should format partition %s."
+msgstr ""
+
+#: ../draklive-install:414
+msgid ""
+", $part->{device}, $part->{mntpoint})) or return if $::isStandalone && 0; #- "
+"no, please"
+msgstr ""
+
+#: ../install_interactive.pm:22
+#, perl-format
+msgid ""
+"Some hardware on your computer needs ``proprietary'' drivers to work.\n"
+"You can find some information about them at: %s"
+msgstr ""
+
+#: ../install_interactive.pm:62
+msgid ""
+"You must have a root partition.\n"
+"For this, create a partition (or click on an existing one).\n"
+"Then choose action ``Mount point'' and set it to `/'"
+msgstr ""
+
+#: ../install_interactive.pm:67
+msgid ""
+"You do not have a swap partition.\n"
+"\n"
+"Continue anyway?"
+msgstr ""
+
+#: ../install_interactive.pm:70
+msgid "You must have a FAT partition mounted in /boot/efi"
+msgstr ""
+
+#: ../install_interactive.pm:95
+msgid "Use free space"
+msgstr ""
+
+#: ../install_interactive.pm:97
+msgid "Not enough free space to allocate new partitions"
+msgstr ""
+
+#: ../install_interactive.pm:105
+msgid "Use existing partitions"
+msgstr ""
+
+#: ../install_interactive.pm:107
+msgid "There is no existing partition to use"
+msgstr ""
+
+#: ../install_interactive.pm:114
+msgid "Use the Windows partition for loopback"
+msgstr ""
+
+#: ../install_interactive.pm:117
+msgid "Which partition do you want to use for Linux4Win?"
+msgstr ""
+
+#: ../install_interactive.pm:119
+msgid "Choose the sizes"
+msgstr ""
+
+#: ../install_interactive.pm:120
+msgid "Root partition size in MB: "
+msgstr ""
+
+#: ../install_interactive.pm:121
+msgid "Swap partition size in MB: "
+msgstr ""
+
+#: ../install_interactive.pm:130
+msgid "There is no FAT partition to use as loopback (or not enough space left)"
+msgstr ""
+
+#: ../install_interactive.pm:137
+msgid "Use the free space on the Windows partition"
+msgstr ""
+
+#: ../install_interactive.pm:139
+msgid "Which partition do you want to resize?"
+msgstr ""
+
+#: ../install_interactive.pm:153
+#, perl-format
+msgid ""
+"The FAT resizer is unable to handle your partition, \n"
+"the following error occurred: %s"
+msgstr ""
+
+#: ../install_interactive.pm:156
+msgid "Computing the size of the Windows partition"
+msgstr ""
+
+#: ../install_interactive.pm:156 ../install_interactive.pm:188
+msgid "Resizing"
+msgstr ""
+
+#: ../install_interactive.pm:163
+msgid ""
+"Your Windows partition is too fragmented. Please reboot your computer under "
+"Windows, run the ``defrag'' utility, then restart the Mandriva Linux "
+"installation."
+msgstr ""
+
+#: ../install_interactive.pm:166
+msgid ""
+"WARNING!\n"
+"\n"
+"DrakX will now resize your Windows partition. Be careful: this\n"
+"operation is dangerous. If you have not already done so, you\n"
+"first need to exit the installation, run \"chkdsk c:\" from a\n"
+"Command Prompt under Windows (beware, running graphical program\n"
+"\"scandisk\" is not enough, be sure to use \"chkdsk\" in a\n"
+"Command Prompt!), optionally run defrag, then restart the\n"
+"installation. You should also backup your data.\n"
+"When sure, press Ok."
+msgstr ""
+
+#: ../install_interactive.pm:178
+msgid "Which size do you want to keep for Windows on"
+msgstr ""
+
+#: ../install_interactive.pm:179
+#, perl-format
+msgid "partition %s"
+msgstr ""
+
+#: ../install_interactive.pm:188
+msgid "Resizing Windows partition"
+msgstr ""
+
+#: ../install_interactive.pm:193
+#, perl-format
+msgid "FAT resizing failed: %s"
+msgstr ""
+
+#: ../install_interactive.pm:196
+msgid ""
+"To ensure data integrity after resizing the partition(s), \n"
+"filesystem checks will be run on your next boot into Windows(TM)"
+msgstr ""
+
+#: ../install_interactive.pm:208
+msgid "There is no FAT partition to resize (or not enough space left)"
+msgstr ""
+
+#: ../install_interactive.pm:213
+msgid "Erase and use entire disk"
+msgstr ""
+
+#: ../install_interactive.pm:213
+msgid "Remove Windows(TM)"
+msgstr ""
+
+#: ../install_interactive.pm:215
+msgid "You have more than one hard drive, which one do you install linux on?"
+msgstr ""
+
+#: ../install_interactive.pm:219
+#, perl-format
+msgid "ALL existing partitions and their data will be lost on drive %s"
+msgstr ""
+
+#: ../install_interactive.pm:228
+msgid "Custom disk partitioning"
+msgstr ""
+
+#: ../install_interactive.pm:232
+msgid "Use fdisk"
+msgstr ""
+
+#: ../install_interactive.pm:235
+#, perl-format
+msgid ""
+"You can now partition %s.\n"
+"When you are done, do not forget to save using `w'"
+msgstr ""
+
+#: ../install_interactive.pm:271
+msgid "I can not find any room for installing"
+msgstr ""
+
+#: ../install_interactive.pm:275
+msgid "The DrakX Partitioning wizard found the following solutions:"
+msgstr ""
+
+#: ../install_interactive.pm:281
+#, perl-format
+msgid "Partitioning failed: %s"
+msgstr ""
+
+#: ../install_interactive.pm:288
+msgid "Bringing up the network"
+msgstr ""
+
+#: ../install_interactive.pm:293
+msgid "Bringing down the network"
+msgstr ""
diff --git a/live/draklive-install/po/hr.po b/live/draklive-install/po/hr.po
new file mode 100644
index 000000000..f16c11e32
--- /dev/null
+++ b/live/draklive-install/po/hr.po
@@ -0,0 +1,300 @@
+#: ../draklive-install:59
+msgid "Mandriva Live"
+msgstr ""
+
+#: ../draklive-install:65
+msgid "This wizard will help you to install the live distribution."
+msgstr ""
+
+#: ../draklive-install:83
+msgid "Computing total size"
+msgstr ""
+
+#: ../draklive-install:95
+msgid "Copying in progress"
+msgstr ""
+
+#: ../draklive-install:163
+msgid "Congratulations"
+msgstr ""
+
+#: ../draklive-install:163
+msgid ""
+"Please halt your computer, remove your live system, and restart your "
+"computer."
+msgstr ""
+
+#: ../draklive-install:179 ../draklive-install:407
+msgid "You need to reboot for the partition table modifications to take place"
+msgstr ""
+
+#: ../draklive-install:230
+msgid "Choose the partitions you want to format"
+msgstr ""
+
+#: ../draklive-install:232
+msgid "Check bad blocks?"
+msgstr ""
+
+#: ../draklive-install:261
+#, c-format
+msgid "Failed to check filesystem %s. Do you want to repair the errors?"
+msgstr ""
+
+#: ../draklive-install:262
+msgid ", $1), 1);"
+msgstr ""
+
+#: ../draklive-install:265
+msgid "Not enough swap space to fulfill installation, please add some"
+msgstr ""
+
+#: ../draklive-install:284
+msgid "$d/$l{$_}"
+msgstr ""
+
+#: ../draklive-install:285
+msgid "$d/.bashrc"
+msgstr ""
+
+#: ../draklive-install:317
+msgid "No partition available"
+msgstr ""
+
+#: ../draklive-install:320
+msgid "Scanning partitions to find mount points"
+msgstr ""
+
+#: ../draklive-install:327
+msgid "Choose the mount points"
+msgstr ""
+
+#: ../draklive-install:328
+msgid "Partitioning"
+msgstr ""
+
+#: ../draklive-install:361
+msgid "none"
+msgstr ""
+
+#: ../draklive-install:363
+#, c-format
+msgid "Duplicate mount point %s"
+msgstr ""
+
+#: ../draklive-install:389
+msgid "Continue anyway?"
+msgstr ""
+
+#: ../draklive-install:394
+msgid "Quit without saving"
+msgstr ""
+
+#: ../draklive-install:394
+msgid "Quit without writing the partition table?"
+msgstr ""
+
+#: ../draklive-install:400
+msgid "Do you want to save /etc/fstab modifications"
+msgstr ""
+
+#: ../draklive-install:412
+#, c-format
+msgid "You should format partition %s."
+msgstr ""
+
+#: ../draklive-install:414
+msgid ""
+", $part->{device}, $part->{mntpoint})) or return if $::isStandalone && 0; #- "
+"no, please"
+msgstr ""
+
+#: ../install_interactive.pm:22
+#, perl-format
+msgid ""
+"Some hardware on your computer needs ``proprietary'' drivers to work.\n"
+"You can find some information about them at: %s"
+msgstr ""
+
+#: ../install_interactive.pm:62
+msgid ""
+"You must have a root partition.\n"
+"For this, create a partition (or click on an existing one).\n"
+"Then choose action ``Mount point'' and set it to `/'"
+msgstr ""
+
+#: ../install_interactive.pm:67
+msgid ""
+"You do not have a swap partition.\n"
+"\n"
+"Continue anyway?"
+msgstr ""
+
+#: ../install_interactive.pm:70
+msgid "You must have a FAT partition mounted in /boot/efi"
+msgstr ""
+
+#: ../install_interactive.pm:95
+msgid "Use free space"
+msgstr ""
+
+#: ../install_interactive.pm:97
+msgid "Not enough free space to allocate new partitions"
+msgstr ""
+
+#: ../install_interactive.pm:105
+msgid "Use existing partitions"
+msgstr ""
+
+#: ../install_interactive.pm:107
+msgid "There is no existing partition to use"
+msgstr ""
+
+#: ../install_interactive.pm:114
+msgid "Use the Windows partition for loopback"
+msgstr ""
+
+#: ../install_interactive.pm:117
+msgid "Which partition do you want to use for Linux4Win?"
+msgstr ""
+
+#: ../install_interactive.pm:119
+msgid "Choose the sizes"
+msgstr ""
+
+#: ../install_interactive.pm:120
+msgid "Root partition size in MB: "
+msgstr ""
+
+#: ../install_interactive.pm:121
+msgid "Swap partition size in MB: "
+msgstr ""
+
+#: ../install_interactive.pm:130
+msgid "There is no FAT partition to use as loopback (or not enough space left)"
+msgstr ""
+
+#: ../install_interactive.pm:137
+msgid "Use the free space on the Windows partition"
+msgstr ""
+
+#: ../install_interactive.pm:139
+msgid "Which partition do you want to resize?"
+msgstr ""
+
+#: ../install_interactive.pm:153
+#, perl-format
+msgid ""
+"The FAT resizer is unable to handle your partition, \n"
+"the following error occurred: %s"
+msgstr ""
+
+#: ../install_interactive.pm:156
+msgid "Computing the size of the Windows partition"
+msgstr ""
+
+#: ../install_interactive.pm:156 ../install_interactive.pm:188
+msgid "Resizing"
+msgstr ""
+
+#: ../install_interactive.pm:163
+msgid ""
+"Your Windows partition is too fragmented. Please reboot your computer under "
+"Windows, run the ``defrag'' utility, then restart the Mandriva Linux "
+"installation."
+msgstr ""
+
+#: ../install_interactive.pm:166
+msgid ""
+"WARNING!\n"
+"\n"
+"DrakX will now resize your Windows partition. Be careful: this\n"
+"operation is dangerous. If you have not already done so, you\n"
+"first need to exit the installation, run \"chkdsk c:\" from a\n"
+"Command Prompt under Windows (beware, running graphical program\n"
+"\"scandisk\" is not enough, be sure to use \"chkdsk\" in a\n"
+"Command Prompt!), optionally run defrag, then restart the\n"
+"installation. You should also backup your data.\n"
+"When sure, press Ok."
+msgstr ""
+
+#: ../install_interactive.pm:178
+msgid "Which size do you want to keep for Windows on"
+msgstr ""
+
+#: ../install_interactive.pm:179
+#, perl-format
+msgid "partition %s"
+msgstr ""
+
+#: ../install_interactive.pm:188
+msgid "Resizing Windows partition"
+msgstr ""
+
+#: ../install_interactive.pm:193
+#, perl-format
+msgid "FAT resizing failed: %s"
+msgstr ""
+
+#: ../install_interactive.pm:196
+msgid ""
+"To ensure data integrity after resizing the partition(s), \n"
+"filesystem checks will be run on your next boot into Windows(TM)"
+msgstr ""
+
+#: ../install_interactive.pm:208
+msgid "There is no FAT partition to resize (or not enough space left)"
+msgstr ""
+
+#: ../install_interactive.pm:213
+msgid "Erase and use entire disk"
+msgstr ""
+
+#: ../install_interactive.pm:213
+msgid "Remove Windows(TM)"
+msgstr ""
+
+#: ../install_interactive.pm:215
+msgid "You have more than one hard drive, which one do you install linux on?"
+msgstr ""
+
+#: ../install_interactive.pm:219
+#, perl-format
+msgid "ALL existing partitions and their data will be lost on drive %s"
+msgstr ""
+
+#: ../install_interactive.pm:228
+msgid "Custom disk partitioning"
+msgstr ""
+
+#: ../install_interactive.pm:232
+msgid "Use fdisk"
+msgstr ""
+
+#: ../install_interactive.pm:235
+#, perl-format
+msgid ""
+"You can now partition %s.\n"
+"When you are done, do not forget to save using `w'"
+msgstr ""
+
+#: ../install_interactive.pm:271
+msgid "I can not find any room for installing"
+msgstr ""
+
+#: ../install_interactive.pm:275
+msgid "The DrakX Partitioning wizard found the following solutions:"
+msgstr ""
+
+#: ../install_interactive.pm:281
+#, perl-format
+msgid "Partitioning failed: %s"
+msgstr ""
+
+#: ../install_interactive.pm:288
+msgid "Bringing up the network"
+msgstr ""
+
+#: ../install_interactive.pm:293
+msgid "Bringing down the network"
+msgstr ""
diff --git a/live/draklive-install/po/hu.po b/live/draklive-install/po/hu.po
new file mode 100644
index 000000000..f16c11e32
--- /dev/null
+++ b/live/draklive-install/po/hu.po
@@ -0,0 +1,300 @@
+#: ../draklive-install:59
+msgid "Mandriva Live"
+msgstr ""
+
+#: ../draklive-install:65
+msgid "This wizard will help you to install the live distribution."
+msgstr ""
+
+#: ../draklive-install:83
+msgid "Computing total size"
+msgstr ""
+
+#: ../draklive-install:95
+msgid "Copying in progress"
+msgstr ""
+
+#: ../draklive-install:163
+msgid "Congratulations"
+msgstr ""
+
+#: ../draklive-install:163
+msgid ""
+"Please halt your computer, remove your live system, and restart your "
+"computer."
+msgstr ""
+
+#: ../draklive-install:179 ../draklive-install:407
+msgid "You need to reboot for the partition table modifications to take place"
+msgstr ""
+
+#: ../draklive-install:230
+msgid "Choose the partitions you want to format"
+msgstr ""
+
+#: ../draklive-install:232
+msgid "Check bad blocks?"
+msgstr ""
+
+#: ../draklive-install:261
+#, c-format
+msgid "Failed to check filesystem %s. Do you want to repair the errors?"
+msgstr ""
+
+#: ../draklive-install:262
+msgid ", $1), 1);"
+msgstr ""
+
+#: ../draklive-install:265
+msgid "Not enough swap space to fulfill installation, please add some"
+msgstr ""
+
+#: ../draklive-install:284
+msgid "$d/$l{$_}"
+msgstr ""
+
+#: ../draklive-install:285
+msgid "$d/.bashrc"
+msgstr ""
+
+#: ../draklive-install:317
+msgid "No partition available"
+msgstr ""
+
+#: ../draklive-install:320
+msgid "Scanning partitions to find mount points"
+msgstr ""
+
+#: ../draklive-install:327
+msgid "Choose the mount points"
+msgstr ""
+
+#: ../draklive-install:328
+msgid "Partitioning"
+msgstr ""
+
+#: ../draklive-install:361
+msgid "none"
+msgstr ""
+
+#: ../draklive-install:363
+#, c-format
+msgid "Duplicate mount point %s"
+msgstr ""
+
+#: ../draklive-install:389
+msgid "Continue anyway?"
+msgstr ""
+
+#: ../draklive-install:394
+msgid "Quit without saving"
+msgstr ""
+
+#: ../draklive-install:394
+msgid "Quit without writing the partition table?"
+msgstr ""
+
+#: ../draklive-install:400
+msgid "Do you want to save /etc/fstab modifications"
+msgstr ""
+
+#: ../draklive-install:412
+#, c-format
+msgid "You should format partition %s."
+msgstr ""
+
+#: ../draklive-install:414
+msgid ""
+", $part->{device}, $part->{mntpoint})) or return if $::isStandalone && 0; #- "
+"no, please"
+msgstr ""
+
+#: ../install_interactive.pm:22
+#, perl-format
+msgid ""
+"Some hardware on your computer needs ``proprietary'' drivers to work.\n"
+"You can find some information about them at: %s"
+msgstr ""
+
+#: ../install_interactive.pm:62
+msgid ""
+"You must have a root partition.\n"
+"For this, create a partition (or click on an existing one).\n"
+"Then choose action ``Mount point'' and set it to `/'"
+msgstr ""
+
+#: ../install_interactive.pm:67
+msgid ""
+"You do not have a swap partition.\n"
+"\n"
+"Continue anyway?"
+msgstr ""
+
+#: ../install_interactive.pm:70
+msgid "You must have a FAT partition mounted in /boot/efi"
+msgstr ""
+
+#: ../install_interactive.pm:95
+msgid "Use free space"
+msgstr ""
+
+#: ../install_interactive.pm:97
+msgid "Not enough free space to allocate new partitions"
+msgstr ""
+
+#: ../install_interactive.pm:105
+msgid "Use existing partitions"
+msgstr ""
+
+#: ../install_interactive.pm:107
+msgid "There is no existing partition to use"
+msgstr ""
+
+#: ../install_interactive.pm:114
+msgid "Use the Windows partition for loopback"
+msgstr ""
+
+#: ../install_interactive.pm:117
+msgid "Which partition do you want to use for Linux4Win?"
+msgstr ""
+
+#: ../install_interactive.pm:119
+msgid "Choose the sizes"
+msgstr ""
+
+#: ../install_interactive.pm:120
+msgid "Root partition size in MB: "
+msgstr ""
+
+#: ../install_interactive.pm:121
+msgid "Swap partition size in MB: "
+msgstr ""
+
+#: ../install_interactive.pm:130
+msgid "There is no FAT partition to use as loopback (or not enough space left)"
+msgstr ""
+
+#: ../install_interactive.pm:137
+msgid "Use the free space on the Windows partition"
+msgstr ""
+
+#: ../install_interactive.pm:139
+msgid "Which partition do you want to resize?"
+msgstr ""
+
+#: ../install_interactive.pm:153
+#, perl-format
+msgid ""
+"The FAT resizer is unable to handle your partition, \n"
+"the following error occurred: %s"
+msgstr ""
+
+#: ../install_interactive.pm:156
+msgid "Computing the size of the Windows partition"
+msgstr ""
+
+#: ../install_interactive.pm:156 ../install_interactive.pm:188
+msgid "Resizing"
+msgstr ""
+
+#: ../install_interactive.pm:163
+msgid ""
+"Your Windows partition is too fragmented. Please reboot your computer under "
+"Windows, run the ``defrag'' utility, then restart the Mandriva Linux "
+"installation."
+msgstr ""
+
+#: ../install_interactive.pm:166
+msgid ""
+"WARNING!\n"
+"\n"
+"DrakX will now resize your Windows partition. Be careful: this\n"
+"operation is dangerous. If you have not already done so, you\n"
+"first need to exit the installation, run \"chkdsk c:\" from a\n"
+"Command Prompt under Windows (beware, running graphical program\n"
+"\"scandisk\" is not enough, be sure to use \"chkdsk\" in a\n"
+"Command Prompt!), optionally run defrag, then restart the\n"
+"installation. You should also backup your data.\n"
+"When sure, press Ok."
+msgstr ""
+
+#: ../install_interactive.pm:178
+msgid "Which size do you want to keep for Windows on"
+msgstr ""
+
+#: ../install_interactive.pm:179
+#, perl-format
+msgid "partition %s"
+msgstr ""
+
+#: ../install_interactive.pm:188
+msgid "Resizing Windows partition"
+msgstr ""
+
+#: ../install_interactive.pm:193
+#, perl-format
+msgid "FAT resizing failed: %s"
+msgstr ""
+
+#: ../install_interactive.pm:196
+msgid ""
+"To ensure data integrity after resizing the partition(s), \n"
+"filesystem checks will be run on your next boot into Windows(TM)"
+msgstr ""
+
+#: ../install_interactive.pm:208
+msgid "There is no FAT partition to resize (or not enough space left)"
+msgstr ""
+
+#: ../install_interactive.pm:213
+msgid "Erase and use entire disk"
+msgstr ""
+
+#: ../install_interactive.pm:213
+msgid "Remove Windows(TM)"
+msgstr ""
+
+#: ../install_interactive.pm:215
+msgid "You have more than one hard drive, which one do you install linux on?"
+msgstr ""
+
+#: ../install_interactive.pm:219
+#, perl-format
+msgid "ALL existing partitions and their data will be lost on drive %s"
+msgstr ""
+
+#: ../install_interactive.pm:228
+msgid "Custom disk partitioning"
+msgstr ""
+
+#: ../install_interactive.pm:232
+msgid "Use fdisk"
+msgstr ""
+
+#: ../install_interactive.pm:235
+#, perl-format
+msgid ""
+"You can now partition %s.\n"
+"When you are done, do not forget to save using `w'"
+msgstr ""
+
+#: ../install_interactive.pm:271
+msgid "I can not find any room for installing"
+msgstr ""
+
+#: ../install_interactive.pm:275
+msgid "The DrakX Partitioning wizard found the following solutions:"
+msgstr ""
+
+#: ../install_interactive.pm:281
+#, perl-format
+msgid "Partitioning failed: %s"
+msgstr ""
+
+#: ../install_interactive.pm:288
+msgid "Bringing up the network"
+msgstr ""
+
+#: ../install_interactive.pm:293
+msgid "Bringing down the network"
+msgstr ""
diff --git a/live/draklive-install/po/id.po b/live/draklive-install/po/id.po
new file mode 100644
index 000000000..f16c11e32
--- /dev/null
+++ b/live/draklive-install/po/id.po
@@ -0,0 +1,300 @@
+#: ../draklive-install:59
+msgid "Mandriva Live"
+msgstr ""
+
+#: ../draklive-install:65
+msgid "This wizard will help you to install the live distribution."
+msgstr ""
+
+#: ../draklive-install:83
+msgid "Computing total size"
+msgstr ""
+
+#: ../draklive-install:95
+msgid "Copying in progress"
+msgstr ""
+
+#: ../draklive-install:163
+msgid "Congratulations"
+msgstr ""
+
+#: ../draklive-install:163
+msgid ""
+"Please halt your computer, remove your live system, and restart your "
+"computer."
+msgstr ""
+
+#: ../draklive-install:179 ../draklive-install:407
+msgid "You need to reboot for the partition table modifications to take place"
+msgstr ""
+
+#: ../draklive-install:230
+msgid "Choose the partitions you want to format"
+msgstr ""
+
+#: ../draklive-install:232
+msgid "Check bad blocks?"
+msgstr ""
+
+#: ../draklive-install:261
+#, c-format
+msgid "Failed to check filesystem %s. Do you want to repair the errors?"
+msgstr ""
+
+#: ../draklive-install:262
+msgid ", $1), 1);"
+msgstr ""
+
+#: ../draklive-install:265
+msgid "Not enough swap space to fulfill installation, please add some"
+msgstr ""
+
+#: ../draklive-install:284
+msgid "$d/$l{$_}"
+msgstr ""
+
+#: ../draklive-install:285
+msgid "$d/.bashrc"
+msgstr ""
+
+#: ../draklive-install:317
+msgid "No partition available"
+msgstr ""
+
+#: ../draklive-install:320
+msgid "Scanning partitions to find mount points"
+msgstr ""
+
+#: ../draklive-install:327
+msgid "Choose the mount points"
+msgstr ""
+
+#: ../draklive-install:328
+msgid "Partitioning"
+msgstr ""
+
+#: ../draklive-install:361
+msgid "none"
+msgstr ""
+
+#: ../draklive-install:363
+#, c-format
+msgid "Duplicate mount point %s"
+msgstr ""
+
+#: ../draklive-install:389
+msgid "Continue anyway?"
+msgstr ""
+
+#: ../draklive-install:394
+msgid "Quit without saving"
+msgstr ""
+
+#: ../draklive-install:394
+msgid "Quit without writing the partition table?"
+msgstr ""
+
+#: ../draklive-install:400
+msgid "Do you want to save /etc/fstab modifications"
+msgstr ""
+
+#: ../draklive-install:412
+#, c-format
+msgid "You should format partition %s."
+msgstr ""
+
+#: ../draklive-install:414
+msgid ""
+", $part->{device}, $part->{mntpoint})) or return if $::isStandalone && 0; #- "
+"no, please"
+msgstr ""
+
+#: ../install_interactive.pm:22
+#, perl-format
+msgid ""
+"Some hardware on your computer needs ``proprietary'' drivers to work.\n"
+"You can find some information about them at: %s"
+msgstr ""
+
+#: ../install_interactive.pm:62
+msgid ""
+"You must have a root partition.\n"
+"For this, create a partition (or click on an existing one).\n"
+"Then choose action ``Mount point'' and set it to `/'"
+msgstr ""
+
+#: ../install_interactive.pm:67
+msgid ""
+"You do not have a swap partition.\n"
+"\n"
+"Continue anyway?"
+msgstr ""
+
+#: ../install_interactive.pm:70
+msgid "You must have a FAT partition mounted in /boot/efi"
+msgstr ""
+
+#: ../install_interactive.pm:95
+msgid "Use free space"
+msgstr ""
+
+#: ../install_interactive.pm:97
+msgid "Not enough free space to allocate new partitions"
+msgstr ""
+
+#: ../install_interactive.pm:105
+msgid "Use existing partitions"
+msgstr ""
+
+#: ../install_interactive.pm:107
+msgid "There is no existing partition to use"
+msgstr ""
+
+#: ../install_interactive.pm:114
+msgid "Use the Windows partition for loopback"
+msgstr ""
+
+#: ../install_interactive.pm:117
+msgid "Which partition do you want to use for Linux4Win?"
+msgstr ""
+
+#: ../install_interactive.pm:119
+msgid "Choose the sizes"
+msgstr ""
+
+#: ../install_interactive.pm:120
+msgid "Root partition size in MB: "
+msgstr ""
+
+#: ../install_interactive.pm:121
+msgid "Swap partition size in MB: "
+msgstr ""
+
+#: ../install_interactive.pm:130
+msgid "There is no FAT partition to use as loopback (or not enough space left)"
+msgstr ""
+
+#: ../install_interactive.pm:137
+msgid "Use the free space on the Windows partition"
+msgstr ""
+
+#: ../install_interactive.pm:139
+msgid "Which partition do you want to resize?"
+msgstr ""
+
+#: ../install_interactive.pm:153
+#, perl-format
+msgid ""
+"The FAT resizer is unable to handle your partition, \n"
+"the following error occurred: %s"
+msgstr ""
+
+#: ../install_interactive.pm:156
+msgid "Computing the size of the Windows partition"
+msgstr ""
+
+#: ../install_interactive.pm:156 ../install_interactive.pm:188
+msgid "Resizing"
+msgstr ""
+
+#: ../install_interactive.pm:163
+msgid ""
+"Your Windows partition is too fragmented. Please reboot your computer under "
+"Windows, run the ``defrag'' utility, then restart the Mandriva Linux "
+"installation."
+msgstr ""
+
+#: ../install_interactive.pm:166
+msgid ""
+"WARNING!\n"
+"\n"
+"DrakX will now resize your Windows partition. Be careful: this\n"
+"operation is dangerous. If you have not already done so, you\n"
+"first need to exit the installation, run \"chkdsk c:\" from a\n"
+"Command Prompt under Windows (beware, running graphical program\n"
+"\"scandisk\" is not enough, be sure to use \"chkdsk\" in a\n"
+"Command Prompt!), optionally run defrag, then restart the\n"
+"installation. You should also backup your data.\n"
+"When sure, press Ok."
+msgstr ""
+
+#: ../install_interactive.pm:178
+msgid "Which size do you want to keep for Windows on"
+msgstr ""
+
+#: ../install_interactive.pm:179
+#, perl-format
+msgid "partition %s"
+msgstr ""
+
+#: ../install_interactive.pm:188
+msgid "Resizing Windows partition"
+msgstr ""
+
+#: ../install_interactive.pm:193
+#, perl-format
+msgid "FAT resizing failed: %s"
+msgstr ""
+
+#: ../install_interactive.pm:196
+msgid ""
+"To ensure data integrity after resizing the partition(s), \n"
+"filesystem checks will be run on your next boot into Windows(TM)"
+msgstr ""
+
+#: ../install_interactive.pm:208
+msgid "There is no FAT partition to resize (or not enough space left)"
+msgstr ""
+
+#: ../install_interactive.pm:213
+msgid "Erase and use entire disk"
+msgstr ""
+
+#: ../install_interactive.pm:213
+msgid "Remove Windows(TM)"
+msgstr ""
+
+#: ../install_interactive.pm:215
+msgid "You have more than one hard drive, which one do you install linux on?"
+msgstr ""
+
+#: ../install_interactive.pm:219
+#, perl-format
+msgid "ALL existing partitions and their data will be lost on drive %s"
+msgstr ""
+
+#: ../install_interactive.pm:228
+msgid "Custom disk partitioning"
+msgstr ""
+
+#: ../install_interactive.pm:232
+msgid "Use fdisk"
+msgstr ""
+
+#: ../install_interactive.pm:235
+#, perl-format
+msgid ""
+"You can now partition %s.\n"
+"When you are done, do not forget to save using `w'"
+msgstr ""
+
+#: ../install_interactive.pm:271
+msgid "I can not find any room for installing"
+msgstr ""
+
+#: ../install_interactive.pm:275
+msgid "The DrakX Partitioning wizard found the following solutions:"
+msgstr ""
+
+#: ../install_interactive.pm:281
+#, perl-format
+msgid "Partitioning failed: %s"
+msgstr ""
+
+#: ../install_interactive.pm:288
+msgid "Bringing up the network"
+msgstr ""
+
+#: ../install_interactive.pm:293
+msgid "Bringing down the network"
+msgstr ""
diff --git a/live/draklive-install/po/is.po b/live/draklive-install/po/is.po
new file mode 100644
index 000000000..f16c11e32
--- /dev/null
+++ b/live/draklive-install/po/is.po
@@ -0,0 +1,300 @@
+#: ../draklive-install:59
+msgid "Mandriva Live"
+msgstr ""
+
+#: ../draklive-install:65
+msgid "This wizard will help you to install the live distribution."
+msgstr ""
+
+#: ../draklive-install:83
+msgid "Computing total size"
+msgstr ""
+
+#: ../draklive-install:95
+msgid "Copying in progress"
+msgstr ""
+
+#: ../draklive-install:163
+msgid "Congratulations"
+msgstr ""
+
+#: ../draklive-install:163
+msgid ""
+"Please halt your computer, remove your live system, and restart your "
+"computer."
+msgstr ""
+
+#: ../draklive-install:179 ../draklive-install:407
+msgid "You need to reboot for the partition table modifications to take place"
+msgstr ""
+
+#: ../draklive-install:230
+msgid "Choose the partitions you want to format"
+msgstr ""
+
+#: ../draklive-install:232
+msgid "Check bad blocks?"
+msgstr ""
+
+#: ../draklive-install:261
+#, c-format
+msgid "Failed to check filesystem %s. Do you want to repair the errors?"
+msgstr ""
+
+#: ../draklive-install:262
+msgid ", $1), 1);"
+msgstr ""
+
+#: ../draklive-install:265
+msgid "Not enough swap space to fulfill installation, please add some"
+msgstr ""
+
+#: ../draklive-install:284
+msgid "$d/$l{$_}"
+msgstr ""
+
+#: ../draklive-install:285
+msgid "$d/.bashrc"
+msgstr ""
+
+#: ../draklive-install:317
+msgid "No partition available"
+msgstr ""
+
+#: ../draklive-install:320
+msgid "Scanning partitions to find mount points"
+msgstr ""
+
+#: ../draklive-install:327
+msgid "Choose the mount points"
+msgstr ""
+
+#: ../draklive-install:328
+msgid "Partitioning"
+msgstr ""
+
+#: ../draklive-install:361
+msgid "none"
+msgstr ""
+
+#: ../draklive-install:363
+#, c-format
+msgid "Duplicate mount point %s"
+msgstr ""
+
+#: ../draklive-install:389
+msgid "Continue anyway?"
+msgstr ""
+
+#: ../draklive-install:394
+msgid "Quit without saving"
+msgstr ""
+
+#: ../draklive-install:394
+msgid "Quit without writing the partition table?"
+msgstr ""
+
+#: ../draklive-install:400
+msgid "Do you want to save /etc/fstab modifications"
+msgstr ""
+
+#: ../draklive-install:412
+#, c-format
+msgid "You should format partition %s."
+msgstr ""
+
+#: ../draklive-install:414
+msgid ""
+", $part->{device}, $part->{mntpoint})) or return if $::isStandalone && 0; #- "
+"no, please"
+msgstr ""
+
+#: ../install_interactive.pm:22
+#, perl-format
+msgid ""
+"Some hardware on your computer needs ``proprietary'' drivers to work.\n"
+"You can find some information about them at: %s"
+msgstr ""
+
+#: ../install_interactive.pm:62
+msgid ""
+"You must have a root partition.\n"
+"For this, create a partition (or click on an existing one).\n"
+"Then choose action ``Mount point'' and set it to `/'"
+msgstr ""
+
+#: ../install_interactive.pm:67
+msgid ""
+"You do not have a swap partition.\n"
+"\n"
+"Continue anyway?"
+msgstr ""
+
+#: ../install_interactive.pm:70
+msgid "You must have a FAT partition mounted in /boot/efi"
+msgstr ""
+
+#: ../install_interactive.pm:95
+msgid "Use free space"
+msgstr ""
+
+#: ../install_interactive.pm:97
+msgid "Not enough free space to allocate new partitions"
+msgstr ""
+
+#: ../install_interactive.pm:105
+msgid "Use existing partitions"
+msgstr ""
+
+#: ../install_interactive.pm:107
+msgid "There is no existing partition to use"
+msgstr ""
+
+#: ../install_interactive.pm:114
+msgid "Use the Windows partition for loopback"
+msgstr ""
+
+#: ../install_interactive.pm:117
+msgid "Which partition do you want to use for Linux4Win?"
+msgstr ""
+
+#: ../install_interactive.pm:119
+msgid "Choose the sizes"
+msgstr ""
+
+#: ../install_interactive.pm:120
+msgid "Root partition size in MB: "
+msgstr ""
+
+#: ../install_interactive.pm:121
+msgid "Swap partition size in MB: "
+msgstr ""
+
+#: ../install_interactive.pm:130
+msgid "There is no FAT partition to use as loopback (or not enough space left)"
+msgstr ""
+
+#: ../install_interactive.pm:137
+msgid "Use the free space on the Windows partition"
+msgstr ""
+
+#: ../install_interactive.pm:139
+msgid "Which partition do you want to resize?"
+msgstr ""
+
+#: ../install_interactive.pm:153
+#, perl-format
+msgid ""
+"The FAT resizer is unable to handle your partition, \n"
+"the following error occurred: %s"
+msgstr ""
+
+#: ../install_interactive.pm:156
+msgid "Computing the size of the Windows partition"
+msgstr ""
+
+#: ../install_interactive.pm:156 ../install_interactive.pm:188
+msgid "Resizing"
+msgstr ""
+
+#: ../install_interactive.pm:163
+msgid ""
+"Your Windows partition is too fragmented. Please reboot your computer under "
+"Windows, run the ``defrag'' utility, then restart the Mandriva Linux "
+"installation."
+msgstr ""
+
+#: ../install_interactive.pm:166
+msgid ""
+"WARNING!\n"
+"\n"
+"DrakX will now resize your Windows partition. Be careful: this\n"
+"operation is dangerous. If you have not already done so, you\n"
+"first need to exit the installation, run \"chkdsk c:\" from a\n"
+"Command Prompt under Windows (beware, running graphical program\n"
+"\"scandisk\" is not enough, be sure to use \"chkdsk\" in a\n"
+"Command Prompt!), optionally run defrag, then restart the\n"
+"installation. You should also backup your data.\n"
+"When sure, press Ok."
+msgstr ""
+
+#: ../install_interactive.pm:178
+msgid "Which size do you want to keep for Windows on"
+msgstr ""
+
+#: ../install_interactive.pm:179
+#, perl-format
+msgid "partition %s"
+msgstr ""
+
+#: ../install_interactive.pm:188
+msgid "Resizing Windows partition"
+msgstr ""
+
+#: ../install_interactive.pm:193
+#, perl-format
+msgid "FAT resizing failed: %s"
+msgstr ""
+
+#: ../install_interactive.pm:196
+msgid ""
+"To ensure data integrity after resizing the partition(s), \n"
+"filesystem checks will be run on your next boot into Windows(TM)"
+msgstr ""
+
+#: ../install_interactive.pm:208
+msgid "There is no FAT partition to resize (or not enough space left)"
+msgstr ""
+
+#: ../install_interactive.pm:213
+msgid "Erase and use entire disk"
+msgstr ""
+
+#: ../install_interactive.pm:213
+msgid "Remove Windows(TM)"
+msgstr ""
+
+#: ../install_interactive.pm:215
+msgid "You have more than one hard drive, which one do you install linux on?"
+msgstr ""
+
+#: ../install_interactive.pm:219
+#, perl-format
+msgid "ALL existing partitions and their data will be lost on drive %s"
+msgstr ""
+
+#: ../install_interactive.pm:228
+msgid "Custom disk partitioning"
+msgstr ""
+
+#: ../install_interactive.pm:232
+msgid "Use fdisk"
+msgstr ""
+
+#: ../install_interactive.pm:235
+#, perl-format
+msgid ""
+"You can now partition %s.\n"
+"When you are done, do not forget to save using `w'"
+msgstr ""
+
+#: ../install_interactive.pm:271
+msgid "I can not find any room for installing"
+msgstr ""
+
+#: ../install_interactive.pm:275
+msgid "The DrakX Partitioning wizard found the following solutions:"
+msgstr ""
+
+#: ../install_interactive.pm:281
+#, perl-format
+msgid "Partitioning failed: %s"
+msgstr ""
+
+#: ../install_interactive.pm:288
+msgid "Bringing up the network"
+msgstr ""
+
+#: ../install_interactive.pm:293
+msgid "Bringing down the network"
+msgstr ""
diff --git a/live/draklive-install/po/it.po b/live/draklive-install/po/it.po
new file mode 100644
index 000000000..f16c11e32
--- /dev/null
+++ b/live/draklive-install/po/it.po
@@ -0,0 +1,300 @@
+#: ../draklive-install:59
+msgid "Mandriva Live"
+msgstr ""
+
+#: ../draklive-install:65
+msgid "This wizard will help you to install the live distribution."
+msgstr ""
+
+#: ../draklive-install:83
+msgid "Computing total size"
+msgstr ""
+
+#: ../draklive-install:95
+msgid "Copying in progress"
+msgstr ""
+
+#: ../draklive-install:163
+msgid "Congratulations"
+msgstr ""
+
+#: ../draklive-install:163
+msgid ""
+"Please halt your computer, remove your live system, and restart your "
+"computer."
+msgstr ""
+
+#: ../draklive-install:179 ../draklive-install:407
+msgid "You need to reboot for the partition table modifications to take place"
+msgstr ""
+
+#: ../draklive-install:230
+msgid "Choose the partitions you want to format"
+msgstr ""
+
+#: ../draklive-install:232
+msgid "Check bad blocks?"
+msgstr ""
+
+#: ../draklive-install:261
+#, c-format
+msgid "Failed to check filesystem %s. Do you want to repair the errors?"
+msgstr ""
+
+#: ../draklive-install:262
+msgid ", $1), 1);"
+msgstr ""
+
+#: ../draklive-install:265
+msgid "Not enough swap space to fulfill installation, please add some"
+msgstr ""
+
+#: ../draklive-install:284
+msgid "$d/$l{$_}"
+msgstr ""
+
+#: ../draklive-install:285
+msgid "$d/.bashrc"
+msgstr ""
+
+#: ../draklive-install:317
+msgid "No partition available"
+msgstr ""
+
+#: ../draklive-install:320
+msgid "Scanning partitions to find mount points"
+msgstr ""
+
+#: ../draklive-install:327
+msgid "Choose the mount points"
+msgstr ""
+
+#: ../draklive-install:328
+msgid "Partitioning"
+msgstr ""
+
+#: ../draklive-install:361
+msgid "none"
+msgstr ""
+
+#: ../draklive-install:363
+#, c-format
+msgid "Duplicate mount point %s"
+msgstr ""
+
+#: ../draklive-install:389
+msgid "Continue anyway?"
+msgstr ""
+
+#: ../draklive-install:394
+msgid "Quit without saving"
+msgstr ""
+
+#: ../draklive-install:394
+msgid "Quit without writing the partition table?"
+msgstr ""
+
+#: ../draklive-install:400
+msgid "Do you want to save /etc/fstab modifications"
+msgstr ""
+
+#: ../draklive-install:412
+#, c-format
+msgid "You should format partition %s."
+msgstr ""
+
+#: ../draklive-install:414
+msgid ""
+", $part->{device}, $part->{mntpoint})) or return if $::isStandalone && 0; #- "
+"no, please"
+msgstr ""
+
+#: ../install_interactive.pm:22
+#, perl-format
+msgid ""
+"Some hardware on your computer needs ``proprietary'' drivers to work.\n"
+"You can find some information about them at: %s"
+msgstr ""
+
+#: ../install_interactive.pm:62
+msgid ""
+"You must have a root partition.\n"
+"For this, create a partition (or click on an existing one).\n"
+"Then choose action ``Mount point'' and set it to `/'"
+msgstr ""
+
+#: ../install_interactive.pm:67
+msgid ""
+"You do not have a swap partition.\n"
+"\n"
+"Continue anyway?"
+msgstr ""
+
+#: ../install_interactive.pm:70
+msgid "You must have a FAT partition mounted in /boot/efi"
+msgstr ""
+
+#: ../install_interactive.pm:95
+msgid "Use free space"
+msgstr ""
+
+#: ../install_interactive.pm:97
+msgid "Not enough free space to allocate new partitions"
+msgstr ""
+
+#: ../install_interactive.pm:105
+msgid "Use existing partitions"
+msgstr ""
+
+#: ../install_interactive.pm:107
+msgid "There is no existing partition to use"
+msgstr ""
+
+#: ../install_interactive.pm:114
+msgid "Use the Windows partition for loopback"
+msgstr ""
+
+#: ../install_interactive.pm:117
+msgid "Which partition do you want to use for Linux4Win?"
+msgstr ""
+
+#: ../install_interactive.pm:119
+msgid "Choose the sizes"
+msgstr ""
+
+#: ../install_interactive.pm:120
+msgid "Root partition size in MB: "
+msgstr ""
+
+#: ../install_interactive.pm:121
+msgid "Swap partition size in MB: "
+msgstr ""
+
+#: ../install_interactive.pm:130
+msgid "There is no FAT partition to use as loopback (or not enough space left)"
+msgstr ""
+
+#: ../install_interactive.pm:137
+msgid "Use the free space on the Windows partition"
+msgstr ""
+
+#: ../install_interactive.pm:139
+msgid "Which partition do you want to resize?"
+msgstr ""
+
+#: ../install_interactive.pm:153
+#, perl-format
+msgid ""
+"The FAT resizer is unable to handle your partition, \n"
+"the following error occurred: %s"
+msgstr ""
+
+#: ../install_interactive.pm:156
+msgid "Computing the size of the Windows partition"
+msgstr ""
+
+#: ../install_interactive.pm:156 ../install_interactive.pm:188
+msgid "Resizing"
+msgstr ""
+
+#: ../install_interactive.pm:163
+msgid ""
+"Your Windows partition is too fragmented. Please reboot your computer under "
+"Windows, run the ``defrag'' utility, then restart the Mandriva Linux "
+"installation."
+msgstr ""
+
+#: ../install_interactive.pm:166
+msgid ""
+"WARNING!\n"
+"\n"
+"DrakX will now resize your Windows partition. Be careful: this\n"
+"operation is dangerous. If you have not already done so, you\n"
+"first need to exit the installation, run \"chkdsk c:\" from a\n"
+"Command Prompt under Windows (beware, running graphical program\n"
+"\"scandisk\" is not enough, be sure to use \"chkdsk\" in a\n"
+"Command Prompt!), optionally run defrag, then restart the\n"
+"installation. You should also backup your data.\n"
+"When sure, press Ok."
+msgstr ""
+
+#: ../install_interactive.pm:178
+msgid "Which size do you want to keep for Windows on"
+msgstr ""
+
+#: ../install_interactive.pm:179
+#, perl-format
+msgid "partition %s"
+msgstr ""
+
+#: ../install_interactive.pm:188
+msgid "Resizing Windows partition"
+msgstr ""
+
+#: ../install_interactive.pm:193
+#, perl-format
+msgid "FAT resizing failed: %s"
+msgstr ""
+
+#: ../install_interactive.pm:196
+msgid ""
+"To ensure data integrity after resizing the partition(s), \n"
+"filesystem checks will be run on your next boot into Windows(TM)"
+msgstr ""
+
+#: ../install_interactive.pm:208
+msgid "There is no FAT partition to resize (or not enough space left)"
+msgstr ""
+
+#: ../install_interactive.pm:213
+msgid "Erase and use entire disk"
+msgstr ""
+
+#: ../install_interactive.pm:213
+msgid "Remove Windows(TM)"
+msgstr ""
+
+#: ../install_interactive.pm:215
+msgid "You have more than one hard drive, which one do you install linux on?"
+msgstr ""
+
+#: ../install_interactive.pm:219
+#, perl-format
+msgid "ALL existing partitions and their data will be lost on drive %s"
+msgstr ""
+
+#: ../install_interactive.pm:228
+msgid "Custom disk partitioning"
+msgstr ""
+
+#: ../install_interactive.pm:232
+msgid "Use fdisk"
+msgstr ""
+
+#: ../install_interactive.pm:235
+#, perl-format
+msgid ""
+"You can now partition %s.\n"
+"When you are done, do not forget to save using `w'"
+msgstr ""
+
+#: ../install_interactive.pm:271
+msgid "I can not find any room for installing"
+msgstr ""
+
+#: ../install_interactive.pm:275
+msgid "The DrakX Partitioning wizard found the following solutions:"
+msgstr ""
+
+#: ../install_interactive.pm:281
+#, perl-format
+msgid "Partitioning failed: %s"
+msgstr ""
+
+#: ../install_interactive.pm:288
+msgid "Bringing up the network"
+msgstr ""
+
+#: ../install_interactive.pm:293
+msgid "Bringing down the network"
+msgstr ""
diff --git a/live/draklive-install/po/ja.po b/live/draklive-install/po/ja.po
new file mode 100644
index 000000000..f16c11e32
--- /dev/null
+++ b/live/draklive-install/po/ja.po
@@ -0,0 +1,300 @@
+#: ../draklive-install:59
+msgid "Mandriva Live"
+msgstr ""
+
+#: ../draklive-install:65
+msgid "This wizard will help you to install the live distribution."
+msgstr ""
+
+#: ../draklive-install:83
+msgid "Computing total size"
+msgstr ""
+
+#: ../draklive-install:95
+msgid "Copying in progress"
+msgstr ""
+
+#: ../draklive-install:163
+msgid "Congratulations"
+msgstr ""
+
+#: ../draklive-install:163
+msgid ""
+"Please halt your computer, remove your live system, and restart your "
+"computer."
+msgstr ""
+
+#: ../draklive-install:179 ../draklive-install:407
+msgid "You need to reboot for the partition table modifications to take place"
+msgstr ""
+
+#: ../draklive-install:230
+msgid "Choose the partitions you want to format"
+msgstr ""
+
+#: ../draklive-install:232
+msgid "Check bad blocks?"
+msgstr ""
+
+#: ../draklive-install:261
+#, c-format
+msgid "Failed to check filesystem %s. Do you want to repair the errors?"
+msgstr ""
+
+#: ../draklive-install:262
+msgid ", $1), 1);"
+msgstr ""
+
+#: ../draklive-install:265
+msgid "Not enough swap space to fulfill installation, please add some"
+msgstr ""
+
+#: ../draklive-install:284
+msgid "$d/$l{$_}"
+msgstr ""
+
+#: ../draklive-install:285
+msgid "$d/.bashrc"
+msgstr ""
+
+#: ../draklive-install:317
+msgid "No partition available"
+msgstr ""
+
+#: ../draklive-install:320
+msgid "Scanning partitions to find mount points"
+msgstr ""
+
+#: ../draklive-install:327
+msgid "Choose the mount points"
+msgstr ""
+
+#: ../draklive-install:328
+msgid "Partitioning"
+msgstr ""
+
+#: ../draklive-install:361
+msgid "none"
+msgstr ""
+
+#: ../draklive-install:363
+#, c-format
+msgid "Duplicate mount point %s"
+msgstr ""
+
+#: ../draklive-install:389
+msgid "Continue anyway?"
+msgstr ""
+
+#: ../draklive-install:394
+msgid "Quit without saving"
+msgstr ""
+
+#: ../draklive-install:394
+msgid "Quit without writing the partition table?"
+msgstr ""
+
+#: ../draklive-install:400
+msgid "Do you want to save /etc/fstab modifications"
+msgstr ""
+
+#: ../draklive-install:412
+#, c-format
+msgid "You should format partition %s."
+msgstr ""
+
+#: ../draklive-install:414
+msgid ""
+", $part->{device}, $part->{mntpoint})) or return if $::isStandalone && 0; #- "
+"no, please"
+msgstr ""
+
+#: ../install_interactive.pm:22
+#, perl-format
+msgid ""
+"Some hardware on your computer needs ``proprietary'' drivers to work.\n"
+"You can find some information about them at: %s"
+msgstr ""
+
+#: ../install_interactive.pm:62
+msgid ""
+"You must have a root partition.\n"
+"For this, create a partition (or click on an existing one).\n"
+"Then choose action ``Mount point'' and set it to `/'"
+msgstr ""
+
+#: ../install_interactive.pm:67
+msgid ""
+"You do not have a swap partition.\n"
+"\n"
+"Continue anyway?"
+msgstr ""
+
+#: ../install_interactive.pm:70
+msgid "You must have a FAT partition mounted in /boot/efi"
+msgstr ""
+
+#: ../install_interactive.pm:95
+msgid "Use free space"
+msgstr ""
+
+#: ../install_interactive.pm:97
+msgid "Not enough free space to allocate new partitions"
+msgstr ""
+
+#: ../install_interactive.pm:105
+msgid "Use existing partitions"
+msgstr ""
+
+#: ../install_interactive.pm:107
+msgid "There is no existing partition to use"
+msgstr ""
+
+#: ../install_interactive.pm:114
+msgid "Use the Windows partition for loopback"
+msgstr ""
+
+#: ../install_interactive.pm:117
+msgid "Which partition do you want to use for Linux4Win?"
+msgstr ""
+
+#: ../install_interactive.pm:119
+msgid "Choose the sizes"
+msgstr ""
+
+#: ../install_interactive.pm:120
+msgid "Root partition size in MB: "
+msgstr ""
+
+#: ../install_interactive.pm:121
+msgid "Swap partition size in MB: "
+msgstr ""
+
+#: ../install_interactive.pm:130
+msgid "There is no FAT partition to use as loopback (or not enough space left)"
+msgstr ""
+
+#: ../install_interactive.pm:137
+msgid "Use the free space on the Windows partition"
+msgstr ""
+
+#: ../install_interactive.pm:139
+msgid "Which partition do you want to resize?"
+msgstr ""
+
+#: ../install_interactive.pm:153
+#, perl-format
+msgid ""
+"The FAT resizer is unable to handle your partition, \n"
+"the following error occurred: %s"
+msgstr ""
+
+#: ../install_interactive.pm:156
+msgid "Computing the size of the Windows partition"
+msgstr ""
+
+#: ../install_interactive.pm:156 ../install_interactive.pm:188
+msgid "Resizing"
+msgstr ""
+
+#: ../install_interactive.pm:163
+msgid ""
+"Your Windows partition is too fragmented. Please reboot your computer under "
+"Windows, run the ``defrag'' utility, then restart the Mandriva Linux "
+"installation."
+msgstr ""
+
+#: ../install_interactive.pm:166
+msgid ""
+"WARNING!\n"
+"\n"
+"DrakX will now resize your Windows partition. Be careful: this\n"
+"operation is dangerous. If you have not already done so, you\n"
+"first need to exit the installation, run \"chkdsk c:\" from a\n"
+"Command Prompt under Windows (beware, running graphical program\n"
+"\"scandisk\" is not enough, be sure to use \"chkdsk\" in a\n"
+"Command Prompt!), optionally run defrag, then restart the\n"
+"installation. You should also backup your data.\n"
+"When sure, press Ok."
+msgstr ""
+
+#: ../install_interactive.pm:178
+msgid "Which size do you want to keep for Windows on"
+msgstr ""
+
+#: ../install_interactive.pm:179
+#, perl-format
+msgid "partition %s"
+msgstr ""
+
+#: ../install_interactive.pm:188
+msgid "Resizing Windows partition"
+msgstr ""
+
+#: ../install_interactive.pm:193
+#, perl-format
+msgid "FAT resizing failed: %s"
+msgstr ""
+
+#: ../install_interactive.pm:196
+msgid ""
+"To ensure data integrity after resizing the partition(s), \n"
+"filesystem checks will be run on your next boot into Windows(TM)"
+msgstr ""
+
+#: ../install_interactive.pm:208
+msgid "There is no FAT partition to resize (or not enough space left)"
+msgstr ""
+
+#: ../install_interactive.pm:213
+msgid "Erase and use entire disk"
+msgstr ""
+
+#: ../install_interactive.pm:213
+msgid "Remove Windows(TM)"
+msgstr ""
+
+#: ../install_interactive.pm:215
+msgid "You have more than one hard drive, which one do you install linux on?"
+msgstr ""
+
+#: ../install_interactive.pm:219
+#, perl-format
+msgid "ALL existing partitions and their data will be lost on drive %s"
+msgstr ""
+
+#: ../install_interactive.pm:228
+msgid "Custom disk partitioning"
+msgstr ""
+
+#: ../install_interactive.pm:232
+msgid "Use fdisk"
+msgstr ""
+
+#: ../install_interactive.pm:235
+#, perl-format
+msgid ""
+"You can now partition %s.\n"
+"When you are done, do not forget to save using `w'"
+msgstr ""
+
+#: ../install_interactive.pm:271
+msgid "I can not find any room for installing"
+msgstr ""
+
+#: ../install_interactive.pm:275
+msgid "The DrakX Partitioning wizard found the following solutions:"
+msgstr ""
+
+#: ../install_interactive.pm:281
+#, perl-format
+msgid "Partitioning failed: %s"
+msgstr ""
+
+#: ../install_interactive.pm:288
+msgid "Bringing up the network"
+msgstr ""
+
+#: ../install_interactive.pm:293
+msgid "Bringing down the network"
+msgstr ""
diff --git a/live/draklive-install/po/ko.po b/live/draklive-install/po/ko.po
new file mode 100644
index 000000000..f16c11e32
--- /dev/null
+++ b/live/draklive-install/po/ko.po
@@ -0,0 +1,300 @@
+#: ../draklive-install:59
+msgid "Mandriva Live"
+msgstr ""
+
+#: ../draklive-install:65
+msgid "This wizard will help you to install the live distribution."
+msgstr ""
+
+#: ../draklive-install:83
+msgid "Computing total size"
+msgstr ""
+
+#: ../draklive-install:95
+msgid "Copying in progress"
+msgstr ""
+
+#: ../draklive-install:163
+msgid "Congratulations"
+msgstr ""
+
+#: ../draklive-install:163
+msgid ""
+"Please halt your computer, remove your live system, and restart your "
+"computer."
+msgstr ""
+
+#: ../draklive-install:179 ../draklive-install:407
+msgid "You need to reboot for the partition table modifications to take place"
+msgstr ""
+
+#: ../draklive-install:230
+msgid "Choose the partitions you want to format"
+msgstr ""
+
+#: ../draklive-install:232
+msgid "Check bad blocks?"
+msgstr ""
+
+#: ../draklive-install:261
+#, c-format
+msgid "Failed to check filesystem %s. Do you want to repair the errors?"
+msgstr ""
+
+#: ../draklive-install:262
+msgid ", $1), 1);"
+msgstr ""
+
+#: ../draklive-install:265
+msgid "Not enough swap space to fulfill installation, please add some"
+msgstr ""
+
+#: ../draklive-install:284
+msgid "$d/$l{$_}"
+msgstr ""
+
+#: ../draklive-install:285
+msgid "$d/.bashrc"
+msgstr ""
+
+#: ../draklive-install:317
+msgid "No partition available"
+msgstr ""
+
+#: ../draklive-install:320
+msgid "Scanning partitions to find mount points"
+msgstr ""
+
+#: ../draklive-install:327
+msgid "Choose the mount points"
+msgstr ""
+
+#: ../draklive-install:328
+msgid "Partitioning"
+msgstr ""
+
+#: ../draklive-install:361
+msgid "none"
+msgstr ""
+
+#: ../draklive-install:363
+#, c-format
+msgid "Duplicate mount point %s"
+msgstr ""
+
+#: ../draklive-install:389
+msgid "Continue anyway?"
+msgstr ""
+
+#: ../draklive-install:394
+msgid "Quit without saving"
+msgstr ""
+
+#: ../draklive-install:394
+msgid "Quit without writing the partition table?"
+msgstr ""
+
+#: ../draklive-install:400
+msgid "Do you want to save /etc/fstab modifications"
+msgstr ""
+
+#: ../draklive-install:412
+#, c-format
+msgid "You should format partition %s."
+msgstr ""
+
+#: ../draklive-install:414
+msgid ""
+", $part->{device}, $part->{mntpoint})) or return if $::isStandalone && 0; #- "
+"no, please"
+msgstr ""
+
+#: ../install_interactive.pm:22
+#, perl-format
+msgid ""
+"Some hardware on your computer needs ``proprietary'' drivers to work.\n"
+"You can find some information about them at: %s"
+msgstr ""
+
+#: ../install_interactive.pm:62
+msgid ""
+"You must have a root partition.\n"
+"For this, create a partition (or click on an existing one).\n"
+"Then choose action ``Mount point'' and set it to `/'"
+msgstr ""
+
+#: ../install_interactive.pm:67
+msgid ""
+"You do not have a swap partition.\n"
+"\n"
+"Continue anyway?"
+msgstr ""
+
+#: ../install_interactive.pm:70
+msgid "You must have a FAT partition mounted in /boot/efi"
+msgstr ""
+
+#: ../install_interactive.pm:95
+msgid "Use free space"
+msgstr ""
+
+#: ../install_interactive.pm:97
+msgid "Not enough free space to allocate new partitions"
+msgstr ""
+
+#: ../install_interactive.pm:105
+msgid "Use existing partitions"
+msgstr ""
+
+#: ../install_interactive.pm:107
+msgid "There is no existing partition to use"
+msgstr ""
+
+#: ../install_interactive.pm:114
+msgid "Use the Windows partition for loopback"
+msgstr ""
+
+#: ../install_interactive.pm:117
+msgid "Which partition do you want to use for Linux4Win?"
+msgstr ""
+
+#: ../install_interactive.pm:119
+msgid "Choose the sizes"
+msgstr ""
+
+#: ../install_interactive.pm:120
+msgid "Root partition size in MB: "
+msgstr ""
+
+#: ../install_interactive.pm:121
+msgid "Swap partition size in MB: "
+msgstr ""
+
+#: ../install_interactive.pm:130
+msgid "There is no FAT partition to use as loopback (or not enough space left)"
+msgstr ""
+
+#: ../install_interactive.pm:137
+msgid "Use the free space on the Windows partition"
+msgstr ""
+
+#: ../install_interactive.pm:139
+msgid "Which partition do you want to resize?"
+msgstr ""
+
+#: ../install_interactive.pm:153
+#, perl-format
+msgid ""
+"The FAT resizer is unable to handle your partition, \n"
+"the following error occurred: %s"
+msgstr ""
+
+#: ../install_interactive.pm:156
+msgid "Computing the size of the Windows partition"
+msgstr ""
+
+#: ../install_interactive.pm:156 ../install_interactive.pm:188
+msgid "Resizing"
+msgstr ""
+
+#: ../install_interactive.pm:163
+msgid ""
+"Your Windows partition is too fragmented. Please reboot your computer under "
+"Windows, run the ``defrag'' utility, then restart the Mandriva Linux "
+"installation."
+msgstr ""
+
+#: ../install_interactive.pm:166
+msgid ""
+"WARNING!\n"
+"\n"
+"DrakX will now resize your Windows partition. Be careful: this\n"
+"operation is dangerous. If you have not already done so, you\n"
+"first need to exit the installation, run \"chkdsk c:\" from a\n"
+"Command Prompt under Windows (beware, running graphical program\n"
+"\"scandisk\" is not enough, be sure to use \"chkdsk\" in a\n"
+"Command Prompt!), optionally run defrag, then restart the\n"
+"installation. You should also backup your data.\n"
+"When sure, press Ok."
+msgstr ""
+
+#: ../install_interactive.pm:178
+msgid "Which size do you want to keep for Windows on"
+msgstr ""
+
+#: ../install_interactive.pm:179
+#, perl-format
+msgid "partition %s"
+msgstr ""
+
+#: ../install_interactive.pm:188
+msgid "Resizing Windows partition"
+msgstr ""
+
+#: ../install_interactive.pm:193
+#, perl-format
+msgid "FAT resizing failed: %s"
+msgstr ""
+
+#: ../install_interactive.pm:196
+msgid ""
+"To ensure data integrity after resizing the partition(s), \n"
+"filesystem checks will be run on your next boot into Windows(TM)"
+msgstr ""
+
+#: ../install_interactive.pm:208
+msgid "There is no FAT partition to resize (or not enough space left)"
+msgstr ""
+
+#: ../install_interactive.pm:213
+msgid "Erase and use entire disk"
+msgstr ""
+
+#: ../install_interactive.pm:213
+msgid "Remove Windows(TM)"
+msgstr ""
+
+#: ../install_interactive.pm:215
+msgid "You have more than one hard drive, which one do you install linux on?"
+msgstr ""
+
+#: ../install_interactive.pm:219
+#, perl-format
+msgid "ALL existing partitions and their data will be lost on drive %s"
+msgstr ""
+
+#: ../install_interactive.pm:228
+msgid "Custom disk partitioning"
+msgstr ""
+
+#: ../install_interactive.pm:232
+msgid "Use fdisk"
+msgstr ""
+
+#: ../install_interactive.pm:235
+#, perl-format
+msgid ""
+"You can now partition %s.\n"
+"When you are done, do not forget to save using `w'"
+msgstr ""
+
+#: ../install_interactive.pm:271
+msgid "I can not find any room for installing"
+msgstr ""
+
+#: ../install_interactive.pm:275
+msgid "The DrakX Partitioning wizard found the following solutions:"
+msgstr ""
+
+#: ../install_interactive.pm:281
+#, perl-format
+msgid "Partitioning failed: %s"
+msgstr ""
+
+#: ../install_interactive.pm:288
+msgid "Bringing up the network"
+msgstr ""
+
+#: ../install_interactive.pm:293
+msgid "Bringing down the network"
+msgstr ""
diff --git a/live/draklive-install/po/ky.po b/live/draklive-install/po/ky.po
new file mode 100644
index 000000000..f16c11e32
--- /dev/null
+++ b/live/draklive-install/po/ky.po
@@ -0,0 +1,300 @@
+#: ../draklive-install:59
+msgid "Mandriva Live"
+msgstr ""
+
+#: ../draklive-install:65
+msgid "This wizard will help you to install the live distribution."
+msgstr ""
+
+#: ../draklive-install:83
+msgid "Computing total size"
+msgstr ""
+
+#: ../draklive-install:95
+msgid "Copying in progress"
+msgstr ""
+
+#: ../draklive-install:163
+msgid "Congratulations"
+msgstr ""
+
+#: ../draklive-install:163
+msgid ""
+"Please halt your computer, remove your live system, and restart your "
+"computer."
+msgstr ""
+
+#: ../draklive-install:179 ../draklive-install:407
+msgid "You need to reboot for the partition table modifications to take place"
+msgstr ""
+
+#: ../draklive-install:230
+msgid "Choose the partitions you want to format"
+msgstr ""
+
+#: ../draklive-install:232
+msgid "Check bad blocks?"
+msgstr ""
+
+#: ../draklive-install:261
+#, c-format
+msgid "Failed to check filesystem %s. Do you want to repair the errors?"
+msgstr ""
+
+#: ../draklive-install:262
+msgid ", $1), 1);"
+msgstr ""
+
+#: ../draklive-install:265
+msgid "Not enough swap space to fulfill installation, please add some"
+msgstr ""
+
+#: ../draklive-install:284
+msgid "$d/$l{$_}"
+msgstr ""
+
+#: ../draklive-install:285
+msgid "$d/.bashrc"
+msgstr ""
+
+#: ../draklive-install:317
+msgid "No partition available"
+msgstr ""
+
+#: ../draklive-install:320
+msgid "Scanning partitions to find mount points"
+msgstr ""
+
+#: ../draklive-install:327
+msgid "Choose the mount points"
+msgstr ""
+
+#: ../draklive-install:328
+msgid "Partitioning"
+msgstr ""
+
+#: ../draklive-install:361
+msgid "none"
+msgstr ""
+
+#: ../draklive-install:363
+#, c-format
+msgid "Duplicate mount point %s"
+msgstr ""
+
+#: ../draklive-install:389
+msgid "Continue anyway?"
+msgstr ""
+
+#: ../draklive-install:394
+msgid "Quit without saving"
+msgstr ""
+
+#: ../draklive-install:394
+msgid "Quit without writing the partition table?"
+msgstr ""
+
+#: ../draklive-install:400
+msgid "Do you want to save /etc/fstab modifications"
+msgstr ""
+
+#: ../draklive-install:412
+#, c-format
+msgid "You should format partition %s."
+msgstr ""
+
+#: ../draklive-install:414
+msgid ""
+", $part->{device}, $part->{mntpoint})) or return if $::isStandalone && 0; #- "
+"no, please"
+msgstr ""
+
+#: ../install_interactive.pm:22
+#, perl-format
+msgid ""
+"Some hardware on your computer needs ``proprietary'' drivers to work.\n"
+"You can find some information about them at: %s"
+msgstr ""
+
+#: ../install_interactive.pm:62
+msgid ""
+"You must have a root partition.\n"
+"For this, create a partition (or click on an existing one).\n"
+"Then choose action ``Mount point'' and set it to `/'"
+msgstr ""
+
+#: ../install_interactive.pm:67
+msgid ""
+"You do not have a swap partition.\n"
+"\n"
+"Continue anyway?"
+msgstr ""
+
+#: ../install_interactive.pm:70
+msgid "You must have a FAT partition mounted in /boot/efi"
+msgstr ""
+
+#: ../install_interactive.pm:95
+msgid "Use free space"
+msgstr ""
+
+#: ../install_interactive.pm:97
+msgid "Not enough free space to allocate new partitions"
+msgstr ""
+
+#: ../install_interactive.pm:105
+msgid "Use existing partitions"
+msgstr ""
+
+#: ../install_interactive.pm:107
+msgid "There is no existing partition to use"
+msgstr ""
+
+#: ../install_interactive.pm:114
+msgid "Use the Windows partition for loopback"
+msgstr ""
+
+#: ../install_interactive.pm:117
+msgid "Which partition do you want to use for Linux4Win?"
+msgstr ""
+
+#: ../install_interactive.pm:119
+msgid "Choose the sizes"
+msgstr ""
+
+#: ../install_interactive.pm:120
+msgid "Root partition size in MB: "
+msgstr ""
+
+#: ../install_interactive.pm:121
+msgid "Swap partition size in MB: "
+msgstr ""
+
+#: ../install_interactive.pm:130
+msgid "There is no FAT partition to use as loopback (or not enough space left)"
+msgstr ""
+
+#: ../install_interactive.pm:137
+msgid "Use the free space on the Windows partition"
+msgstr ""
+
+#: ../install_interactive.pm:139
+msgid "Which partition do you want to resize?"
+msgstr ""
+
+#: ../install_interactive.pm:153
+#, perl-format
+msgid ""
+"The FAT resizer is unable to handle your partition, \n"
+"the following error occurred: %s"
+msgstr ""
+
+#: ../install_interactive.pm:156
+msgid "Computing the size of the Windows partition"
+msgstr ""
+
+#: ../install_interactive.pm:156 ../install_interactive.pm:188
+msgid "Resizing"
+msgstr ""
+
+#: ../install_interactive.pm:163
+msgid ""
+"Your Windows partition is too fragmented. Please reboot your computer under "
+"Windows, run the ``defrag'' utility, then restart the Mandriva Linux "
+"installation."
+msgstr ""
+
+#: ../install_interactive.pm:166
+msgid ""
+"WARNING!\n"
+"\n"
+"DrakX will now resize your Windows partition. Be careful: this\n"
+"operation is dangerous. If you have not already done so, you\n"
+"first need to exit the installation, run \"chkdsk c:\" from a\n"
+"Command Prompt under Windows (beware, running graphical program\n"
+"\"scandisk\" is not enough, be sure to use \"chkdsk\" in a\n"
+"Command Prompt!), optionally run defrag, then restart the\n"
+"installation. You should also backup your data.\n"
+"When sure, press Ok."
+msgstr ""
+
+#: ../install_interactive.pm:178
+msgid "Which size do you want to keep for Windows on"
+msgstr ""
+
+#: ../install_interactive.pm:179
+#, perl-format
+msgid "partition %s"
+msgstr ""
+
+#: ../install_interactive.pm:188
+msgid "Resizing Windows partition"
+msgstr ""
+
+#: ../install_interactive.pm:193
+#, perl-format
+msgid "FAT resizing failed: %s"
+msgstr ""
+
+#: ../install_interactive.pm:196
+msgid ""
+"To ensure data integrity after resizing the partition(s), \n"
+"filesystem checks will be run on your next boot into Windows(TM)"
+msgstr ""
+
+#: ../install_interactive.pm:208
+msgid "There is no FAT partition to resize (or not enough space left)"
+msgstr ""
+
+#: ../install_interactive.pm:213
+msgid "Erase and use entire disk"
+msgstr ""
+
+#: ../install_interactive.pm:213
+msgid "Remove Windows(TM)"
+msgstr ""
+
+#: ../install_interactive.pm:215
+msgid "You have more than one hard drive, which one do you install linux on?"
+msgstr ""
+
+#: ../install_interactive.pm:219
+#, perl-format
+msgid "ALL existing partitions and their data will be lost on drive %s"
+msgstr ""
+
+#: ../install_interactive.pm:228
+msgid "Custom disk partitioning"
+msgstr ""
+
+#: ../install_interactive.pm:232
+msgid "Use fdisk"
+msgstr ""
+
+#: ../install_interactive.pm:235
+#, perl-format
+msgid ""
+"You can now partition %s.\n"
+"When you are done, do not forget to save using `w'"
+msgstr ""
+
+#: ../install_interactive.pm:271
+msgid "I can not find any room for installing"
+msgstr ""
+
+#: ../install_interactive.pm:275
+msgid "The DrakX Partitioning wizard found the following solutions:"
+msgstr ""
+
+#: ../install_interactive.pm:281
+#, perl-format
+msgid "Partitioning failed: %s"
+msgstr ""
+
+#: ../install_interactive.pm:288
+msgid "Bringing up the network"
+msgstr ""
+
+#: ../install_interactive.pm:293
+msgid "Bringing down the network"
+msgstr ""
diff --git a/live/draklive-install/po/lt.po b/live/draklive-install/po/lt.po
new file mode 100644
index 000000000..f16c11e32
--- /dev/null
+++ b/live/draklive-install/po/lt.po
@@ -0,0 +1,300 @@
+#: ../draklive-install:59
+msgid "Mandriva Live"
+msgstr ""
+
+#: ../draklive-install:65
+msgid "This wizard will help you to install the live distribution."
+msgstr ""
+
+#: ../draklive-install:83
+msgid "Computing total size"
+msgstr ""
+
+#: ../draklive-install:95
+msgid "Copying in progress"
+msgstr ""
+
+#: ../draklive-install:163
+msgid "Congratulations"
+msgstr ""
+
+#: ../draklive-install:163
+msgid ""
+"Please halt your computer, remove your live system, and restart your "
+"computer."
+msgstr ""
+
+#: ../draklive-install:179 ../draklive-install:407
+msgid "You need to reboot for the partition table modifications to take place"
+msgstr ""
+
+#: ../draklive-install:230
+msgid "Choose the partitions you want to format"
+msgstr ""
+
+#: ../draklive-install:232
+msgid "Check bad blocks?"
+msgstr ""
+
+#: ../draklive-install:261
+#, c-format
+msgid "Failed to check filesystem %s. Do you want to repair the errors?"
+msgstr ""
+
+#: ../draklive-install:262
+msgid ", $1), 1);"
+msgstr ""
+
+#: ../draklive-install:265
+msgid "Not enough swap space to fulfill installation, please add some"
+msgstr ""
+
+#: ../draklive-install:284
+msgid "$d/$l{$_}"
+msgstr ""
+
+#: ../draklive-install:285
+msgid "$d/.bashrc"
+msgstr ""
+
+#: ../draklive-install:317
+msgid "No partition available"
+msgstr ""
+
+#: ../draklive-install:320
+msgid "Scanning partitions to find mount points"
+msgstr ""
+
+#: ../draklive-install:327
+msgid "Choose the mount points"
+msgstr ""
+
+#: ../draklive-install:328
+msgid "Partitioning"
+msgstr ""
+
+#: ../draklive-install:361
+msgid "none"
+msgstr ""
+
+#: ../draklive-install:363
+#, c-format
+msgid "Duplicate mount point %s"
+msgstr ""
+
+#: ../draklive-install:389
+msgid "Continue anyway?"
+msgstr ""
+
+#: ../draklive-install:394
+msgid "Quit without saving"
+msgstr ""
+
+#: ../draklive-install:394
+msgid "Quit without writing the partition table?"
+msgstr ""
+
+#: ../draklive-install:400
+msgid "Do you want to save /etc/fstab modifications"
+msgstr ""
+
+#: ../draklive-install:412
+#, c-format
+msgid "You should format partition %s."
+msgstr ""
+
+#: ../draklive-install:414
+msgid ""
+", $part->{device}, $part->{mntpoint})) or return if $::isStandalone && 0; #- "
+"no, please"
+msgstr ""
+
+#: ../install_interactive.pm:22
+#, perl-format
+msgid ""
+"Some hardware on your computer needs ``proprietary'' drivers to work.\n"
+"You can find some information about them at: %s"
+msgstr ""
+
+#: ../install_interactive.pm:62
+msgid ""
+"You must have a root partition.\n"
+"For this, create a partition (or click on an existing one).\n"
+"Then choose action ``Mount point'' and set it to `/'"
+msgstr ""
+
+#: ../install_interactive.pm:67
+msgid ""
+"You do not have a swap partition.\n"
+"\n"
+"Continue anyway?"
+msgstr ""
+
+#: ../install_interactive.pm:70
+msgid "You must have a FAT partition mounted in /boot/efi"
+msgstr ""
+
+#: ../install_interactive.pm:95
+msgid "Use free space"
+msgstr ""
+
+#: ../install_interactive.pm:97
+msgid "Not enough free space to allocate new partitions"
+msgstr ""
+
+#: ../install_interactive.pm:105
+msgid "Use existing partitions"
+msgstr ""
+
+#: ../install_interactive.pm:107
+msgid "There is no existing partition to use"
+msgstr ""
+
+#: ../install_interactive.pm:114
+msgid "Use the Windows partition for loopback"
+msgstr ""
+
+#: ../install_interactive.pm:117
+msgid "Which partition do you want to use for Linux4Win?"
+msgstr ""
+
+#: ../install_interactive.pm:119
+msgid "Choose the sizes"
+msgstr ""
+
+#: ../install_interactive.pm:120
+msgid "Root partition size in MB: "
+msgstr ""
+
+#: ../install_interactive.pm:121
+msgid "Swap partition size in MB: "
+msgstr ""
+
+#: ../install_interactive.pm:130
+msgid "There is no FAT partition to use as loopback (or not enough space left)"
+msgstr ""
+
+#: ../install_interactive.pm:137
+msgid "Use the free space on the Windows partition"
+msgstr ""
+
+#: ../install_interactive.pm:139
+msgid "Which partition do you want to resize?"
+msgstr ""
+
+#: ../install_interactive.pm:153
+#, perl-format
+msgid ""
+"The FAT resizer is unable to handle your partition, \n"
+"the following error occurred: %s"
+msgstr ""
+
+#: ../install_interactive.pm:156
+msgid "Computing the size of the Windows partition"
+msgstr ""
+
+#: ../install_interactive.pm:156 ../install_interactive.pm:188
+msgid "Resizing"
+msgstr ""
+
+#: ../install_interactive.pm:163
+msgid ""
+"Your Windows partition is too fragmented. Please reboot your computer under "
+"Windows, run the ``defrag'' utility, then restart the Mandriva Linux "
+"installation."
+msgstr ""
+
+#: ../install_interactive.pm:166
+msgid ""
+"WARNING!\n"
+"\n"
+"DrakX will now resize your Windows partition. Be careful: this\n"
+"operation is dangerous. If you have not already done so, you\n"
+"first need to exit the installation, run \"chkdsk c:\" from a\n"
+"Command Prompt under Windows (beware, running graphical program\n"
+"\"scandisk\" is not enough, be sure to use \"chkdsk\" in a\n"
+"Command Prompt!), optionally run defrag, then restart the\n"
+"installation. You should also backup your data.\n"
+"When sure, press Ok."
+msgstr ""
+
+#: ../install_interactive.pm:178
+msgid "Which size do you want to keep for Windows on"
+msgstr ""
+
+#: ../install_interactive.pm:179
+#, perl-format
+msgid "partition %s"
+msgstr ""
+
+#: ../install_interactive.pm:188
+msgid "Resizing Windows partition"
+msgstr ""
+
+#: ../install_interactive.pm:193
+#, perl-format
+msgid "FAT resizing failed: %s"
+msgstr ""
+
+#: ../install_interactive.pm:196
+msgid ""
+"To ensure data integrity after resizing the partition(s), \n"
+"filesystem checks will be run on your next boot into Windows(TM)"
+msgstr ""
+
+#: ../install_interactive.pm:208
+msgid "There is no FAT partition to resize (or not enough space left)"
+msgstr ""
+
+#: ../install_interactive.pm:213
+msgid "Erase and use entire disk"
+msgstr ""
+
+#: ../install_interactive.pm:213
+msgid "Remove Windows(TM)"
+msgstr ""
+
+#: ../install_interactive.pm:215
+msgid "You have more than one hard drive, which one do you install linux on?"
+msgstr ""
+
+#: ../install_interactive.pm:219
+#, perl-format
+msgid "ALL existing partitions and their data will be lost on drive %s"
+msgstr ""
+
+#: ../install_interactive.pm:228
+msgid "Custom disk partitioning"
+msgstr ""
+
+#: ../install_interactive.pm:232
+msgid "Use fdisk"
+msgstr ""
+
+#: ../install_interactive.pm:235
+#, perl-format
+msgid ""
+"You can now partition %s.\n"
+"When you are done, do not forget to save using `w'"
+msgstr ""
+
+#: ../install_interactive.pm:271
+msgid "I can not find any room for installing"
+msgstr ""
+
+#: ../install_interactive.pm:275
+msgid "The DrakX Partitioning wizard found the following solutions:"
+msgstr ""
+
+#: ../install_interactive.pm:281
+#, perl-format
+msgid "Partitioning failed: %s"
+msgstr ""
+
+#: ../install_interactive.pm:288
+msgid "Bringing up the network"
+msgstr ""
+
+#: ../install_interactive.pm:293
+msgid "Bringing down the network"
+msgstr ""
diff --git a/live/draklive-install/po/ltg.po b/live/draklive-install/po/ltg.po
new file mode 100644
index 000000000..f16c11e32
--- /dev/null
+++ b/live/draklive-install/po/ltg.po
@@ -0,0 +1,300 @@
+#: ../draklive-install:59
+msgid "Mandriva Live"
+msgstr ""
+
+#: ../draklive-install:65
+msgid "This wizard will help you to install the live distribution."
+msgstr ""
+
+#: ../draklive-install:83
+msgid "Computing total size"
+msgstr ""
+
+#: ../draklive-install:95
+msgid "Copying in progress"
+msgstr ""
+
+#: ../draklive-install:163
+msgid "Congratulations"
+msgstr ""
+
+#: ../draklive-install:163
+msgid ""
+"Please halt your computer, remove your live system, and restart your "
+"computer."
+msgstr ""
+
+#: ../draklive-install:179 ../draklive-install:407
+msgid "You need to reboot for the partition table modifications to take place"
+msgstr ""
+
+#: ../draklive-install:230
+msgid "Choose the partitions you want to format"
+msgstr ""
+
+#: ../draklive-install:232
+msgid "Check bad blocks?"
+msgstr ""
+
+#: ../draklive-install:261
+#, c-format
+msgid "Failed to check filesystem %s. Do you want to repair the errors?"
+msgstr ""
+
+#: ../draklive-install:262
+msgid ", $1), 1);"
+msgstr ""
+
+#: ../draklive-install:265
+msgid "Not enough swap space to fulfill installation, please add some"
+msgstr ""
+
+#: ../draklive-install:284
+msgid "$d/$l{$_}"
+msgstr ""
+
+#: ../draklive-install:285
+msgid "$d/.bashrc"
+msgstr ""
+
+#: ../draklive-install:317
+msgid "No partition available"
+msgstr ""
+
+#: ../draklive-install:320
+msgid "Scanning partitions to find mount points"
+msgstr ""
+
+#: ../draklive-install:327
+msgid "Choose the mount points"
+msgstr ""
+
+#: ../draklive-install:328
+msgid "Partitioning"
+msgstr ""
+
+#: ../draklive-install:361
+msgid "none"
+msgstr ""
+
+#: ../draklive-install:363
+#, c-format
+msgid "Duplicate mount point %s"
+msgstr ""
+
+#: ../draklive-install:389
+msgid "Continue anyway?"
+msgstr ""
+
+#: ../draklive-install:394
+msgid "Quit without saving"
+msgstr ""
+
+#: ../draklive-install:394
+msgid "Quit without writing the partition table?"
+msgstr ""
+
+#: ../draklive-install:400
+msgid "Do you want to save /etc/fstab modifications"
+msgstr ""
+
+#: ../draklive-install:412
+#, c-format
+msgid "You should format partition %s."
+msgstr ""
+
+#: ../draklive-install:414
+msgid ""
+", $part->{device}, $part->{mntpoint})) or return if $::isStandalone && 0; #- "
+"no, please"
+msgstr ""
+
+#: ../install_interactive.pm:22
+#, perl-format
+msgid ""
+"Some hardware on your computer needs ``proprietary'' drivers to work.\n"
+"You can find some information about them at: %s"
+msgstr ""
+
+#: ../install_interactive.pm:62
+msgid ""
+"You must have a root partition.\n"
+"For this, create a partition (or click on an existing one).\n"
+"Then choose action ``Mount point'' and set it to `/'"
+msgstr ""
+
+#: ../install_interactive.pm:67
+msgid ""
+"You do not have a swap partition.\n"
+"\n"
+"Continue anyway?"
+msgstr ""
+
+#: ../install_interactive.pm:70
+msgid "You must have a FAT partition mounted in /boot/efi"
+msgstr ""
+
+#: ../install_interactive.pm:95
+msgid "Use free space"
+msgstr ""
+
+#: ../install_interactive.pm:97
+msgid "Not enough free space to allocate new partitions"
+msgstr ""
+
+#: ../install_interactive.pm:105
+msgid "Use existing partitions"
+msgstr ""
+
+#: ../install_interactive.pm:107
+msgid "There is no existing partition to use"
+msgstr ""
+
+#: ../install_interactive.pm:114
+msgid "Use the Windows partition for loopback"
+msgstr ""
+
+#: ../install_interactive.pm:117
+msgid "Which partition do you want to use for Linux4Win?"
+msgstr ""
+
+#: ../install_interactive.pm:119
+msgid "Choose the sizes"
+msgstr ""
+
+#: ../install_interactive.pm:120
+msgid "Root partition size in MB: "
+msgstr ""
+
+#: ../install_interactive.pm:121
+msgid "Swap partition size in MB: "
+msgstr ""
+
+#: ../install_interactive.pm:130
+msgid "There is no FAT partition to use as loopback (or not enough space left)"
+msgstr ""
+
+#: ../install_interactive.pm:137
+msgid "Use the free space on the Windows partition"
+msgstr ""
+
+#: ../install_interactive.pm:139
+msgid "Which partition do you want to resize?"
+msgstr ""
+
+#: ../install_interactive.pm:153
+#, perl-format
+msgid ""
+"The FAT resizer is unable to handle your partition, \n"
+"the following error occurred: %s"
+msgstr ""
+
+#: ../install_interactive.pm:156
+msgid "Computing the size of the Windows partition"
+msgstr ""
+
+#: ../install_interactive.pm:156 ../install_interactive.pm:188
+msgid "Resizing"
+msgstr ""
+
+#: ../install_interactive.pm:163
+msgid ""
+"Your Windows partition is too fragmented. Please reboot your computer under "
+"Windows, run the ``defrag'' utility, then restart the Mandriva Linux "
+"installation."
+msgstr ""
+
+#: ../install_interactive.pm:166
+msgid ""
+"WARNING!\n"
+"\n"
+"DrakX will now resize your Windows partition. Be careful: this\n"
+"operation is dangerous. If you have not already done so, you\n"
+"first need to exit the installation, run \"chkdsk c:\" from a\n"
+"Command Prompt under Windows (beware, running graphical program\n"
+"\"scandisk\" is not enough, be sure to use \"chkdsk\" in a\n"
+"Command Prompt!), optionally run defrag, then restart the\n"
+"installation. You should also backup your data.\n"
+"When sure, press Ok."
+msgstr ""
+
+#: ../install_interactive.pm:178
+msgid "Which size do you want to keep for Windows on"
+msgstr ""
+
+#: ../install_interactive.pm:179
+#, perl-format
+msgid "partition %s"
+msgstr ""
+
+#: ../install_interactive.pm:188
+msgid "Resizing Windows partition"
+msgstr ""
+
+#: ../install_interactive.pm:193
+#, perl-format
+msgid "FAT resizing failed: %s"
+msgstr ""
+
+#: ../install_interactive.pm:196
+msgid ""
+"To ensure data integrity after resizing the partition(s), \n"
+"filesystem checks will be run on your next boot into Windows(TM)"
+msgstr ""
+
+#: ../install_interactive.pm:208
+msgid "There is no FAT partition to resize (or not enough space left)"
+msgstr ""
+
+#: ../install_interactive.pm:213
+msgid "Erase and use entire disk"
+msgstr ""
+
+#: ../install_interactive.pm:213
+msgid "Remove Windows(TM)"
+msgstr ""
+
+#: ../install_interactive.pm:215
+msgid "You have more than one hard drive, which one do you install linux on?"
+msgstr ""
+
+#: ../install_interactive.pm:219
+#, perl-format
+msgid "ALL existing partitions and their data will be lost on drive %s"
+msgstr ""
+
+#: ../install_interactive.pm:228
+msgid "Custom disk partitioning"
+msgstr ""
+
+#: ../install_interactive.pm:232
+msgid "Use fdisk"
+msgstr ""
+
+#: ../install_interactive.pm:235
+#, perl-format
+msgid ""
+"You can now partition %s.\n"
+"When you are done, do not forget to save using `w'"
+msgstr ""
+
+#: ../install_interactive.pm:271
+msgid "I can not find any room for installing"
+msgstr ""
+
+#: ../install_interactive.pm:275
+msgid "The DrakX Partitioning wizard found the following solutions:"
+msgstr ""
+
+#: ../install_interactive.pm:281
+#, perl-format
+msgid "Partitioning failed: %s"
+msgstr ""
+
+#: ../install_interactive.pm:288
+msgid "Bringing up the network"
+msgstr ""
+
+#: ../install_interactive.pm:293
+msgid "Bringing down the network"
+msgstr ""
diff --git a/live/draklive-install/po/lv.po b/live/draklive-install/po/lv.po
new file mode 100644
index 000000000..f16c11e32
--- /dev/null
+++ b/live/draklive-install/po/lv.po
@@ -0,0 +1,300 @@
+#: ../draklive-install:59
+msgid "Mandriva Live"
+msgstr ""
+
+#: ../draklive-install:65
+msgid "This wizard will help you to install the live distribution."
+msgstr ""
+
+#: ../draklive-install:83
+msgid "Computing total size"
+msgstr ""
+
+#: ../draklive-install:95
+msgid "Copying in progress"
+msgstr ""
+
+#: ../draklive-install:163
+msgid "Congratulations"
+msgstr ""
+
+#: ../draklive-install:163
+msgid ""
+"Please halt your computer, remove your live system, and restart your "
+"computer."
+msgstr ""
+
+#: ../draklive-install:179 ../draklive-install:407
+msgid "You need to reboot for the partition table modifications to take place"
+msgstr ""
+
+#: ../draklive-install:230
+msgid "Choose the partitions you want to format"
+msgstr ""
+
+#: ../draklive-install:232
+msgid "Check bad blocks?"
+msgstr ""
+
+#: ../draklive-install:261
+#, c-format
+msgid "Failed to check filesystem %s. Do you want to repair the errors?"
+msgstr ""
+
+#: ../draklive-install:262
+msgid ", $1), 1);"
+msgstr ""
+
+#: ../draklive-install:265
+msgid "Not enough swap space to fulfill installation, please add some"
+msgstr ""
+
+#: ../draklive-install:284
+msgid "$d/$l{$_}"
+msgstr ""
+
+#: ../draklive-install:285
+msgid "$d/.bashrc"
+msgstr ""
+
+#: ../draklive-install:317
+msgid "No partition available"
+msgstr ""
+
+#: ../draklive-install:320
+msgid "Scanning partitions to find mount points"
+msgstr ""
+
+#: ../draklive-install:327
+msgid "Choose the mount points"
+msgstr ""
+
+#: ../draklive-install:328
+msgid "Partitioning"
+msgstr ""
+
+#: ../draklive-install:361
+msgid "none"
+msgstr ""
+
+#: ../draklive-install:363
+#, c-format
+msgid "Duplicate mount point %s"
+msgstr ""
+
+#: ../draklive-install:389
+msgid "Continue anyway?"
+msgstr ""
+
+#: ../draklive-install:394
+msgid "Quit without saving"
+msgstr ""
+
+#: ../draklive-install:394
+msgid "Quit without writing the partition table?"
+msgstr ""
+
+#: ../draklive-install:400
+msgid "Do you want to save /etc/fstab modifications"
+msgstr ""
+
+#: ../draklive-install:412
+#, c-format
+msgid "You should format partition %s."
+msgstr ""
+
+#: ../draklive-install:414
+msgid ""
+", $part->{device}, $part->{mntpoint})) or return if $::isStandalone && 0; #- "
+"no, please"
+msgstr ""
+
+#: ../install_interactive.pm:22
+#, perl-format
+msgid ""
+"Some hardware on your computer needs ``proprietary'' drivers to work.\n"
+"You can find some information about them at: %s"
+msgstr ""
+
+#: ../install_interactive.pm:62
+msgid ""
+"You must have a root partition.\n"
+"For this, create a partition (or click on an existing one).\n"
+"Then choose action ``Mount point'' and set it to `/'"
+msgstr ""
+
+#: ../install_interactive.pm:67
+msgid ""
+"You do not have a swap partition.\n"
+"\n"
+"Continue anyway?"
+msgstr ""
+
+#: ../install_interactive.pm:70
+msgid "You must have a FAT partition mounted in /boot/efi"
+msgstr ""
+
+#: ../install_interactive.pm:95
+msgid "Use free space"
+msgstr ""
+
+#: ../install_interactive.pm:97
+msgid "Not enough free space to allocate new partitions"
+msgstr ""
+
+#: ../install_interactive.pm:105
+msgid "Use existing partitions"
+msgstr ""
+
+#: ../install_interactive.pm:107
+msgid "There is no existing partition to use"
+msgstr ""
+
+#: ../install_interactive.pm:114
+msgid "Use the Windows partition for loopback"
+msgstr ""
+
+#: ../install_interactive.pm:117
+msgid "Which partition do you want to use for Linux4Win?"
+msgstr ""
+
+#: ../install_interactive.pm:119
+msgid "Choose the sizes"
+msgstr ""
+
+#: ../install_interactive.pm:120
+msgid "Root partition size in MB: "
+msgstr ""
+
+#: ../install_interactive.pm:121
+msgid "Swap partition size in MB: "
+msgstr ""
+
+#: ../install_interactive.pm:130
+msgid "There is no FAT partition to use as loopback (or not enough space left)"
+msgstr ""
+
+#: ../install_interactive.pm:137
+msgid "Use the free space on the Windows partition"
+msgstr ""
+
+#: ../install_interactive.pm:139
+msgid "Which partition do you want to resize?"
+msgstr ""
+
+#: ../install_interactive.pm:153
+#, perl-format
+msgid ""
+"The FAT resizer is unable to handle your partition, \n"
+"the following error occurred: %s"
+msgstr ""
+
+#: ../install_interactive.pm:156
+msgid "Computing the size of the Windows partition"
+msgstr ""
+
+#: ../install_interactive.pm:156 ../install_interactive.pm:188
+msgid "Resizing"
+msgstr ""
+
+#: ../install_interactive.pm:163
+msgid ""
+"Your Windows partition is too fragmented. Please reboot your computer under "
+"Windows, run the ``defrag'' utility, then restart the Mandriva Linux "
+"installation."
+msgstr ""
+
+#: ../install_interactive.pm:166
+msgid ""
+"WARNING!\n"
+"\n"
+"DrakX will now resize your Windows partition. Be careful: this\n"
+"operation is dangerous. If you have not already done so, you\n"
+"first need to exit the installation, run \"chkdsk c:\" from a\n"
+"Command Prompt under Windows (beware, running graphical program\n"
+"\"scandisk\" is not enough, be sure to use \"chkdsk\" in a\n"
+"Command Prompt!), optionally run defrag, then restart the\n"
+"installation. You should also backup your data.\n"
+"When sure, press Ok."
+msgstr ""
+
+#: ../install_interactive.pm:178
+msgid "Which size do you want to keep for Windows on"
+msgstr ""
+
+#: ../install_interactive.pm:179
+#, perl-format
+msgid "partition %s"
+msgstr ""
+
+#: ../install_interactive.pm:188
+msgid "Resizing Windows partition"
+msgstr ""
+
+#: ../install_interactive.pm:193
+#, perl-format
+msgid "FAT resizing failed: %s"
+msgstr ""
+
+#: ../install_interactive.pm:196
+msgid ""
+"To ensure data integrity after resizing the partition(s), \n"
+"filesystem checks will be run on your next boot into Windows(TM)"
+msgstr ""
+
+#: ../install_interactive.pm:208
+msgid "There is no FAT partition to resize (or not enough space left)"
+msgstr ""
+
+#: ../install_interactive.pm:213
+msgid "Erase and use entire disk"
+msgstr ""
+
+#: ../install_interactive.pm:213
+msgid "Remove Windows(TM)"
+msgstr ""
+
+#: ../install_interactive.pm:215
+msgid "You have more than one hard drive, which one do you install linux on?"
+msgstr ""
+
+#: ../install_interactive.pm:219
+#, perl-format
+msgid "ALL existing partitions and their data will be lost on drive %s"
+msgstr ""
+
+#: ../install_interactive.pm:228
+msgid "Custom disk partitioning"
+msgstr ""
+
+#: ../install_interactive.pm:232
+msgid "Use fdisk"
+msgstr ""
+
+#: ../install_interactive.pm:235
+#, perl-format
+msgid ""
+"You can now partition %s.\n"
+"When you are done, do not forget to save using `w'"
+msgstr ""
+
+#: ../install_interactive.pm:271
+msgid "I can not find any room for installing"
+msgstr ""
+
+#: ../install_interactive.pm:275
+msgid "The DrakX Partitioning wizard found the following solutions:"
+msgstr ""
+
+#: ../install_interactive.pm:281
+#, perl-format
+msgid "Partitioning failed: %s"
+msgstr ""
+
+#: ../install_interactive.pm:288
+msgid "Bringing up the network"
+msgstr ""
+
+#: ../install_interactive.pm:293
+msgid "Bringing down the network"
+msgstr ""
diff --git a/live/draklive-install/po/mk.po b/live/draklive-install/po/mk.po
new file mode 100644
index 000000000..f16c11e32
--- /dev/null
+++ b/live/draklive-install/po/mk.po
@@ -0,0 +1,300 @@
+#: ../draklive-install:59
+msgid "Mandriva Live"
+msgstr ""
+
+#: ../draklive-install:65
+msgid "This wizard will help you to install the live distribution."
+msgstr ""
+
+#: ../draklive-install:83
+msgid "Computing total size"
+msgstr ""
+
+#: ../draklive-install:95
+msgid "Copying in progress"
+msgstr ""
+
+#: ../draklive-install:163
+msgid "Congratulations"
+msgstr ""
+
+#: ../draklive-install:163
+msgid ""
+"Please halt your computer, remove your live system, and restart your "
+"computer."
+msgstr ""
+
+#: ../draklive-install:179 ../draklive-install:407
+msgid "You need to reboot for the partition table modifications to take place"
+msgstr ""
+
+#: ../draklive-install:230
+msgid "Choose the partitions you want to format"
+msgstr ""
+
+#: ../draklive-install:232
+msgid "Check bad blocks?"
+msgstr ""
+
+#: ../draklive-install:261
+#, c-format
+msgid "Failed to check filesystem %s. Do you want to repair the errors?"
+msgstr ""
+
+#: ../draklive-install:262
+msgid ", $1), 1);"
+msgstr ""
+
+#: ../draklive-install:265
+msgid "Not enough swap space to fulfill installation, please add some"
+msgstr ""
+
+#: ../draklive-install:284
+msgid "$d/$l{$_}"
+msgstr ""
+
+#: ../draklive-install:285
+msgid "$d/.bashrc"
+msgstr ""
+
+#: ../draklive-install:317
+msgid "No partition available"
+msgstr ""
+
+#: ../draklive-install:320
+msgid "Scanning partitions to find mount points"
+msgstr ""
+
+#: ../draklive-install:327
+msgid "Choose the mount points"
+msgstr ""
+
+#: ../draklive-install:328
+msgid "Partitioning"
+msgstr ""
+
+#: ../draklive-install:361
+msgid "none"
+msgstr ""
+
+#: ../draklive-install:363
+#, c-format
+msgid "Duplicate mount point %s"
+msgstr ""
+
+#: ../draklive-install:389
+msgid "Continue anyway?"
+msgstr ""
+
+#: ../draklive-install:394
+msgid "Quit without saving"
+msgstr ""
+
+#: ../draklive-install:394
+msgid "Quit without writing the partition table?"
+msgstr ""
+
+#: ../draklive-install:400
+msgid "Do you want to save /etc/fstab modifications"
+msgstr ""
+
+#: ../draklive-install:412
+#, c-format
+msgid "You should format partition %s."
+msgstr ""
+
+#: ../draklive-install:414
+msgid ""
+", $part->{device}, $part->{mntpoint})) or return if $::isStandalone && 0; #- "
+"no, please"
+msgstr ""
+
+#: ../install_interactive.pm:22
+#, perl-format
+msgid ""
+"Some hardware on your computer needs ``proprietary'' drivers to work.\n"
+"You can find some information about them at: %s"
+msgstr ""
+
+#: ../install_interactive.pm:62
+msgid ""
+"You must have a root partition.\n"
+"For this, create a partition (or click on an existing one).\n"
+"Then choose action ``Mount point'' and set it to `/'"
+msgstr ""
+
+#: ../install_interactive.pm:67
+msgid ""
+"You do not have a swap partition.\n"
+"\n"
+"Continue anyway?"
+msgstr ""
+
+#: ../install_interactive.pm:70
+msgid "You must have a FAT partition mounted in /boot/efi"
+msgstr ""
+
+#: ../install_interactive.pm:95
+msgid "Use free space"
+msgstr ""
+
+#: ../install_interactive.pm:97
+msgid "Not enough free space to allocate new partitions"
+msgstr ""
+
+#: ../install_interactive.pm:105
+msgid "Use existing partitions"
+msgstr ""
+
+#: ../install_interactive.pm:107
+msgid "There is no existing partition to use"
+msgstr ""
+
+#: ../install_interactive.pm:114
+msgid "Use the Windows partition for loopback"
+msgstr ""
+
+#: ../install_interactive.pm:117
+msgid "Which partition do you want to use for Linux4Win?"
+msgstr ""
+
+#: ../install_interactive.pm:119
+msgid "Choose the sizes"
+msgstr ""
+
+#: ../install_interactive.pm:120
+msgid "Root partition size in MB: "
+msgstr ""
+
+#: ../install_interactive.pm:121
+msgid "Swap partition size in MB: "
+msgstr ""
+
+#: ../install_interactive.pm:130
+msgid "There is no FAT partition to use as loopback (or not enough space left)"
+msgstr ""
+
+#: ../install_interactive.pm:137
+msgid "Use the free space on the Windows partition"
+msgstr ""
+
+#: ../install_interactive.pm:139
+msgid "Which partition do you want to resize?"
+msgstr ""
+
+#: ../install_interactive.pm:153
+#, perl-format
+msgid ""
+"The FAT resizer is unable to handle your partition, \n"
+"the following error occurred: %s"
+msgstr ""
+
+#: ../install_interactive.pm:156
+msgid "Computing the size of the Windows partition"
+msgstr ""
+
+#: ../install_interactive.pm:156 ../install_interactive.pm:188
+msgid "Resizing"
+msgstr ""
+
+#: ../install_interactive.pm:163
+msgid ""
+"Your Windows partition is too fragmented. Please reboot your computer under "
+"Windows, run the ``defrag'' utility, then restart the Mandriva Linux "
+"installation."
+msgstr ""
+
+#: ../install_interactive.pm:166
+msgid ""
+"WARNING!\n"
+"\n"
+"DrakX will now resize your Windows partition. Be careful: this\n"
+"operation is dangerous. If you have not already done so, you\n"
+"first need to exit the installation, run \"chkdsk c:\" from a\n"
+"Command Prompt under Windows (beware, running graphical program\n"
+"\"scandisk\" is not enough, be sure to use \"chkdsk\" in a\n"
+"Command Prompt!), optionally run defrag, then restart the\n"
+"installation. You should also backup your data.\n"
+"When sure, press Ok."
+msgstr ""
+
+#: ../install_interactive.pm:178
+msgid "Which size do you want to keep for Windows on"
+msgstr ""
+
+#: ../install_interactive.pm:179
+#, perl-format
+msgid "partition %s"
+msgstr ""
+
+#: ../install_interactive.pm:188
+msgid "Resizing Windows partition"
+msgstr ""
+
+#: ../install_interactive.pm:193
+#, perl-format
+msgid "FAT resizing failed: %s"
+msgstr ""
+
+#: ../install_interactive.pm:196
+msgid ""
+"To ensure data integrity after resizing the partition(s), \n"
+"filesystem checks will be run on your next boot into Windows(TM)"
+msgstr ""
+
+#: ../install_interactive.pm:208
+msgid "There is no FAT partition to resize (or not enough space left)"
+msgstr ""
+
+#: ../install_interactive.pm:213
+msgid "Erase and use entire disk"
+msgstr ""
+
+#: ../install_interactive.pm:213
+msgid "Remove Windows(TM)"
+msgstr ""
+
+#: ../install_interactive.pm:215
+msgid "You have more than one hard drive, which one do you install linux on?"
+msgstr ""
+
+#: ../install_interactive.pm:219
+#, perl-format
+msgid "ALL existing partitions and their data will be lost on drive %s"
+msgstr ""
+
+#: ../install_interactive.pm:228
+msgid "Custom disk partitioning"
+msgstr ""
+
+#: ../install_interactive.pm:232
+msgid "Use fdisk"
+msgstr ""
+
+#: ../install_interactive.pm:235
+#, perl-format
+msgid ""
+"You can now partition %s.\n"
+"When you are done, do not forget to save using `w'"
+msgstr ""
+
+#: ../install_interactive.pm:271
+msgid "I can not find any room for installing"
+msgstr ""
+
+#: ../install_interactive.pm:275
+msgid "The DrakX Partitioning wizard found the following solutions:"
+msgstr ""
+
+#: ../install_interactive.pm:281
+#, perl-format
+msgid "Partitioning failed: %s"
+msgstr ""
+
+#: ../install_interactive.pm:288
+msgid "Bringing up the network"
+msgstr ""
+
+#: ../install_interactive.pm:293
+msgid "Bringing down the network"
+msgstr ""
diff --git a/live/draklive-install/po/mn.po b/live/draklive-install/po/mn.po
new file mode 100644
index 000000000..f16c11e32
--- /dev/null
+++ b/live/draklive-install/po/mn.po
@@ -0,0 +1,300 @@
+#: ../draklive-install:59
+msgid "Mandriva Live"
+msgstr ""
+
+#: ../draklive-install:65
+msgid "This wizard will help you to install the live distribution."
+msgstr ""
+
+#: ../draklive-install:83
+msgid "Computing total size"
+msgstr ""
+
+#: ../draklive-install:95
+msgid "Copying in progress"
+msgstr ""
+
+#: ../draklive-install:163
+msgid "Congratulations"
+msgstr ""
+
+#: ../draklive-install:163
+msgid ""
+"Please halt your computer, remove your live system, and restart your "
+"computer."
+msgstr ""
+
+#: ../draklive-install:179 ../draklive-install:407
+msgid "You need to reboot for the partition table modifications to take place"
+msgstr ""
+
+#: ../draklive-install:230
+msgid "Choose the partitions you want to format"
+msgstr ""
+
+#: ../draklive-install:232
+msgid "Check bad blocks?"
+msgstr ""
+
+#: ../draklive-install:261
+#, c-format
+msgid "Failed to check filesystem %s. Do you want to repair the errors?"
+msgstr ""
+
+#: ../draklive-install:262
+msgid ", $1), 1);"
+msgstr ""
+
+#: ../draklive-install:265
+msgid "Not enough swap space to fulfill installation, please add some"
+msgstr ""
+
+#: ../draklive-install:284
+msgid "$d/$l{$_}"
+msgstr ""
+
+#: ../draklive-install:285
+msgid "$d/.bashrc"
+msgstr ""
+
+#: ../draklive-install:317
+msgid "No partition available"
+msgstr ""
+
+#: ../draklive-install:320
+msgid "Scanning partitions to find mount points"
+msgstr ""
+
+#: ../draklive-install:327
+msgid "Choose the mount points"
+msgstr ""
+
+#: ../draklive-install:328
+msgid "Partitioning"
+msgstr ""
+
+#: ../draklive-install:361
+msgid "none"
+msgstr ""
+
+#: ../draklive-install:363
+#, c-format
+msgid "Duplicate mount point %s"
+msgstr ""
+
+#: ../draklive-install:389
+msgid "Continue anyway?"
+msgstr ""
+
+#: ../draklive-install:394
+msgid "Quit without saving"
+msgstr ""
+
+#: ../draklive-install:394
+msgid "Quit without writing the partition table?"
+msgstr ""
+
+#: ../draklive-install:400
+msgid "Do you want to save /etc/fstab modifications"
+msgstr ""
+
+#: ../draklive-install:412
+#, c-format
+msgid "You should format partition %s."
+msgstr ""
+
+#: ../draklive-install:414
+msgid ""
+", $part->{device}, $part->{mntpoint})) or return if $::isStandalone && 0; #- "
+"no, please"
+msgstr ""
+
+#: ../install_interactive.pm:22
+#, perl-format
+msgid ""
+"Some hardware on your computer needs ``proprietary'' drivers to work.\n"
+"You can find some information about them at: %s"
+msgstr ""
+
+#: ../install_interactive.pm:62
+msgid ""
+"You must have a root partition.\n"
+"For this, create a partition (or click on an existing one).\n"
+"Then choose action ``Mount point'' and set it to `/'"
+msgstr ""
+
+#: ../install_interactive.pm:67
+msgid ""
+"You do not have a swap partition.\n"
+"\n"
+"Continue anyway?"
+msgstr ""
+
+#: ../install_interactive.pm:70
+msgid "You must have a FAT partition mounted in /boot/efi"
+msgstr ""
+
+#: ../install_interactive.pm:95
+msgid "Use free space"
+msgstr ""
+
+#: ../install_interactive.pm:97
+msgid "Not enough free space to allocate new partitions"
+msgstr ""
+
+#: ../install_interactive.pm:105
+msgid "Use existing partitions"
+msgstr ""
+
+#: ../install_interactive.pm:107
+msgid "There is no existing partition to use"
+msgstr ""
+
+#: ../install_interactive.pm:114
+msgid "Use the Windows partition for loopback"
+msgstr ""
+
+#: ../install_interactive.pm:117
+msgid "Which partition do you want to use for Linux4Win?"
+msgstr ""
+
+#: ../install_interactive.pm:119
+msgid "Choose the sizes"
+msgstr ""
+
+#: ../install_interactive.pm:120
+msgid "Root partition size in MB: "
+msgstr ""
+
+#: ../install_interactive.pm:121
+msgid "Swap partition size in MB: "
+msgstr ""
+
+#: ../install_interactive.pm:130
+msgid "There is no FAT partition to use as loopback (or not enough space left)"
+msgstr ""
+
+#: ../install_interactive.pm:137
+msgid "Use the free space on the Windows partition"
+msgstr ""
+
+#: ../install_interactive.pm:139
+msgid "Which partition do you want to resize?"
+msgstr ""
+
+#: ../install_interactive.pm:153
+#, perl-format
+msgid ""
+"The FAT resizer is unable to handle your partition, \n"
+"the following error occurred: %s"
+msgstr ""
+
+#: ../install_interactive.pm:156
+msgid "Computing the size of the Windows partition"
+msgstr ""
+
+#: ../install_interactive.pm:156 ../install_interactive.pm:188
+msgid "Resizing"
+msgstr ""
+
+#: ../install_interactive.pm:163
+msgid ""
+"Your Windows partition is too fragmented. Please reboot your computer under "
+"Windows, run the ``defrag'' utility, then restart the Mandriva Linux "
+"installation."
+msgstr ""
+
+#: ../install_interactive.pm:166
+msgid ""
+"WARNING!\n"
+"\n"
+"DrakX will now resize your Windows partition. Be careful: this\n"
+"operation is dangerous. If you have not already done so, you\n"
+"first need to exit the installation, run \"chkdsk c:\" from a\n"
+"Command Prompt under Windows (beware, running graphical program\n"
+"\"scandisk\" is not enough, be sure to use \"chkdsk\" in a\n"
+"Command Prompt!), optionally run defrag, then restart the\n"
+"installation. You should also backup your data.\n"
+"When sure, press Ok."
+msgstr ""
+
+#: ../install_interactive.pm:178
+msgid "Which size do you want to keep for Windows on"
+msgstr ""
+
+#: ../install_interactive.pm:179
+#, perl-format
+msgid "partition %s"
+msgstr ""
+
+#: ../install_interactive.pm:188
+msgid "Resizing Windows partition"
+msgstr ""
+
+#: ../install_interactive.pm:193
+#, perl-format
+msgid "FAT resizing failed: %s"
+msgstr ""
+
+#: ../install_interactive.pm:196
+msgid ""
+"To ensure data integrity after resizing the partition(s), \n"
+"filesystem checks will be run on your next boot into Windows(TM)"
+msgstr ""
+
+#: ../install_interactive.pm:208
+msgid "There is no FAT partition to resize (or not enough space left)"
+msgstr ""
+
+#: ../install_interactive.pm:213
+msgid "Erase and use entire disk"
+msgstr ""
+
+#: ../install_interactive.pm:213
+msgid "Remove Windows(TM)"
+msgstr ""
+
+#: ../install_interactive.pm:215
+msgid "You have more than one hard drive, which one do you install linux on?"
+msgstr ""
+
+#: ../install_interactive.pm:219
+#, perl-format
+msgid "ALL existing partitions and their data will be lost on drive %s"
+msgstr ""
+
+#: ../install_interactive.pm:228
+msgid "Custom disk partitioning"
+msgstr ""
+
+#: ../install_interactive.pm:232
+msgid "Use fdisk"
+msgstr ""
+
+#: ../install_interactive.pm:235
+#, perl-format
+msgid ""
+"You can now partition %s.\n"
+"When you are done, do not forget to save using `w'"
+msgstr ""
+
+#: ../install_interactive.pm:271
+msgid "I can not find any room for installing"
+msgstr ""
+
+#: ../install_interactive.pm:275
+msgid "The DrakX Partitioning wizard found the following solutions:"
+msgstr ""
+
+#: ../install_interactive.pm:281
+#, perl-format
+msgid "Partitioning failed: %s"
+msgstr ""
+
+#: ../install_interactive.pm:288
+msgid "Bringing up the network"
+msgstr ""
+
+#: ../install_interactive.pm:293
+msgid "Bringing down the network"
+msgstr ""
diff --git a/live/draklive-install/po/ms.po b/live/draklive-install/po/ms.po
new file mode 100644
index 000000000..f16c11e32
--- /dev/null
+++ b/live/draklive-install/po/ms.po
@@ -0,0 +1,300 @@
+#: ../draklive-install:59
+msgid "Mandriva Live"
+msgstr ""
+
+#: ../draklive-install:65
+msgid "This wizard will help you to install the live distribution."
+msgstr ""
+
+#: ../draklive-install:83
+msgid "Computing total size"
+msgstr ""
+
+#: ../draklive-install:95
+msgid "Copying in progress"
+msgstr ""
+
+#: ../draklive-install:163
+msgid "Congratulations"
+msgstr ""
+
+#: ../draklive-install:163
+msgid ""
+"Please halt your computer, remove your live system, and restart your "
+"computer."
+msgstr ""
+
+#: ../draklive-install:179 ../draklive-install:407
+msgid "You need to reboot for the partition table modifications to take place"
+msgstr ""
+
+#: ../draklive-install:230
+msgid "Choose the partitions you want to format"
+msgstr ""
+
+#: ../draklive-install:232
+msgid "Check bad blocks?"
+msgstr ""
+
+#: ../draklive-install:261
+#, c-format
+msgid "Failed to check filesystem %s. Do you want to repair the errors?"
+msgstr ""
+
+#: ../draklive-install:262
+msgid ", $1), 1);"
+msgstr ""
+
+#: ../draklive-install:265
+msgid "Not enough swap space to fulfill installation, please add some"
+msgstr ""
+
+#: ../draklive-install:284
+msgid "$d/$l{$_}"
+msgstr ""
+
+#: ../draklive-install:285
+msgid "$d/.bashrc"
+msgstr ""
+
+#: ../draklive-install:317
+msgid "No partition available"
+msgstr ""
+
+#: ../draklive-install:320
+msgid "Scanning partitions to find mount points"
+msgstr ""
+
+#: ../draklive-install:327
+msgid "Choose the mount points"
+msgstr ""
+
+#: ../draklive-install:328
+msgid "Partitioning"
+msgstr ""
+
+#: ../draklive-install:361
+msgid "none"
+msgstr ""
+
+#: ../draklive-install:363
+#, c-format
+msgid "Duplicate mount point %s"
+msgstr ""
+
+#: ../draklive-install:389
+msgid "Continue anyway?"
+msgstr ""
+
+#: ../draklive-install:394
+msgid "Quit without saving"
+msgstr ""
+
+#: ../draklive-install:394
+msgid "Quit without writing the partition table?"
+msgstr ""
+
+#: ../draklive-install:400
+msgid "Do you want to save /etc/fstab modifications"
+msgstr ""
+
+#: ../draklive-install:412
+#, c-format
+msgid "You should format partition %s."
+msgstr ""
+
+#: ../draklive-install:414
+msgid ""
+", $part->{device}, $part->{mntpoint})) or return if $::isStandalone && 0; #- "
+"no, please"
+msgstr ""
+
+#: ../install_interactive.pm:22
+#, perl-format
+msgid ""
+"Some hardware on your computer needs ``proprietary'' drivers to work.\n"
+"You can find some information about them at: %s"
+msgstr ""
+
+#: ../install_interactive.pm:62
+msgid ""
+"You must have a root partition.\n"
+"For this, create a partition (or click on an existing one).\n"
+"Then choose action ``Mount point'' and set it to `/'"
+msgstr ""
+
+#: ../install_interactive.pm:67
+msgid ""
+"You do not have a swap partition.\n"
+"\n"
+"Continue anyway?"
+msgstr ""
+
+#: ../install_interactive.pm:70
+msgid "You must have a FAT partition mounted in /boot/efi"
+msgstr ""
+
+#: ../install_interactive.pm:95
+msgid "Use free space"
+msgstr ""
+
+#: ../install_interactive.pm:97
+msgid "Not enough free space to allocate new partitions"
+msgstr ""
+
+#: ../install_interactive.pm:105
+msgid "Use existing partitions"
+msgstr ""
+
+#: ../install_interactive.pm:107
+msgid "There is no existing partition to use"
+msgstr ""
+
+#: ../install_interactive.pm:114
+msgid "Use the Windows partition for loopback"
+msgstr ""
+
+#: ../install_interactive.pm:117
+msgid "Which partition do you want to use for Linux4Win?"
+msgstr ""
+
+#: ../install_interactive.pm:119
+msgid "Choose the sizes"
+msgstr ""
+
+#: ../install_interactive.pm:120
+msgid "Root partition size in MB: "
+msgstr ""
+
+#: ../install_interactive.pm:121
+msgid "Swap partition size in MB: "
+msgstr ""
+
+#: ../install_interactive.pm:130
+msgid "There is no FAT partition to use as loopback (or not enough space left)"
+msgstr ""
+
+#: ../install_interactive.pm:137
+msgid "Use the free space on the Windows partition"
+msgstr ""
+
+#: ../install_interactive.pm:139
+msgid "Which partition do you want to resize?"
+msgstr ""
+
+#: ../install_interactive.pm:153
+#, perl-format
+msgid ""
+"The FAT resizer is unable to handle your partition, \n"
+"the following error occurred: %s"
+msgstr ""
+
+#: ../install_interactive.pm:156
+msgid "Computing the size of the Windows partition"
+msgstr ""
+
+#: ../install_interactive.pm:156 ../install_interactive.pm:188
+msgid "Resizing"
+msgstr ""
+
+#: ../install_interactive.pm:163
+msgid ""
+"Your Windows partition is too fragmented. Please reboot your computer under "
+"Windows, run the ``defrag'' utility, then restart the Mandriva Linux "
+"installation."
+msgstr ""
+
+#: ../install_interactive.pm:166
+msgid ""
+"WARNING!\n"
+"\n"
+"DrakX will now resize your Windows partition. Be careful: this\n"
+"operation is dangerous. If you have not already done so, you\n"
+"first need to exit the installation, run \"chkdsk c:\" from a\n"
+"Command Prompt under Windows (beware, running graphical program\n"
+"\"scandisk\" is not enough, be sure to use \"chkdsk\" in a\n"
+"Command Prompt!), optionally run defrag, then restart the\n"
+"installation. You should also backup your data.\n"
+"When sure, press Ok."
+msgstr ""
+
+#: ../install_interactive.pm:178
+msgid "Which size do you want to keep for Windows on"
+msgstr ""
+
+#: ../install_interactive.pm:179
+#, perl-format
+msgid "partition %s"
+msgstr ""
+
+#: ../install_interactive.pm:188
+msgid "Resizing Windows partition"
+msgstr ""
+
+#: ../install_interactive.pm:193
+#, perl-format
+msgid "FAT resizing failed: %s"
+msgstr ""
+
+#: ../install_interactive.pm:196
+msgid ""
+"To ensure data integrity after resizing the partition(s), \n"
+"filesystem checks will be run on your next boot into Windows(TM)"
+msgstr ""
+
+#: ../install_interactive.pm:208
+msgid "There is no FAT partition to resize (or not enough space left)"
+msgstr ""
+
+#: ../install_interactive.pm:213
+msgid "Erase and use entire disk"
+msgstr ""
+
+#: ../install_interactive.pm:213
+msgid "Remove Windows(TM)"
+msgstr ""
+
+#: ../install_interactive.pm:215
+msgid "You have more than one hard drive, which one do you install linux on?"
+msgstr ""
+
+#: ../install_interactive.pm:219
+#, perl-format
+msgid "ALL existing partitions and their data will be lost on drive %s"
+msgstr ""
+
+#: ../install_interactive.pm:228
+msgid "Custom disk partitioning"
+msgstr ""
+
+#: ../install_interactive.pm:232
+msgid "Use fdisk"
+msgstr ""
+
+#: ../install_interactive.pm:235
+#, perl-format
+msgid ""
+"You can now partition %s.\n"
+"When you are done, do not forget to save using `w'"
+msgstr ""
+
+#: ../install_interactive.pm:271
+msgid "I can not find any room for installing"
+msgstr ""
+
+#: ../install_interactive.pm:275
+msgid "The DrakX Partitioning wizard found the following solutions:"
+msgstr ""
+
+#: ../install_interactive.pm:281
+#, perl-format
+msgid "Partitioning failed: %s"
+msgstr ""
+
+#: ../install_interactive.pm:288
+msgid "Bringing up the network"
+msgstr ""
+
+#: ../install_interactive.pm:293
+msgid "Bringing down the network"
+msgstr ""
diff --git a/live/draklive-install/po/mt.po b/live/draklive-install/po/mt.po
new file mode 100644
index 000000000..f16c11e32
--- /dev/null
+++ b/live/draklive-install/po/mt.po
@@ -0,0 +1,300 @@
+#: ../draklive-install:59
+msgid "Mandriva Live"
+msgstr ""
+
+#: ../draklive-install:65
+msgid "This wizard will help you to install the live distribution."
+msgstr ""
+
+#: ../draklive-install:83
+msgid "Computing total size"
+msgstr ""
+
+#: ../draklive-install:95
+msgid "Copying in progress"
+msgstr ""
+
+#: ../draklive-install:163
+msgid "Congratulations"
+msgstr ""
+
+#: ../draklive-install:163
+msgid ""
+"Please halt your computer, remove your live system, and restart your "
+"computer."
+msgstr ""
+
+#: ../draklive-install:179 ../draklive-install:407
+msgid "You need to reboot for the partition table modifications to take place"
+msgstr ""
+
+#: ../draklive-install:230
+msgid "Choose the partitions you want to format"
+msgstr ""
+
+#: ../draklive-install:232
+msgid "Check bad blocks?"
+msgstr ""
+
+#: ../draklive-install:261
+#, c-format
+msgid "Failed to check filesystem %s. Do you want to repair the errors?"
+msgstr ""
+
+#: ../draklive-install:262
+msgid ", $1), 1);"
+msgstr ""
+
+#: ../draklive-install:265
+msgid "Not enough swap space to fulfill installation, please add some"
+msgstr ""
+
+#: ../draklive-install:284
+msgid "$d/$l{$_}"
+msgstr ""
+
+#: ../draklive-install:285
+msgid "$d/.bashrc"
+msgstr ""
+
+#: ../draklive-install:317
+msgid "No partition available"
+msgstr ""
+
+#: ../draklive-install:320
+msgid "Scanning partitions to find mount points"
+msgstr ""
+
+#: ../draklive-install:327
+msgid "Choose the mount points"
+msgstr ""
+
+#: ../draklive-install:328
+msgid "Partitioning"
+msgstr ""
+
+#: ../draklive-install:361
+msgid "none"
+msgstr ""
+
+#: ../draklive-install:363
+#, c-format
+msgid "Duplicate mount point %s"
+msgstr ""
+
+#: ../draklive-install:389
+msgid "Continue anyway?"
+msgstr ""
+
+#: ../draklive-install:394
+msgid "Quit without saving"
+msgstr ""
+
+#: ../draklive-install:394
+msgid "Quit without writing the partition table?"
+msgstr ""
+
+#: ../draklive-install:400
+msgid "Do you want to save /etc/fstab modifications"
+msgstr ""
+
+#: ../draklive-install:412
+#, c-format
+msgid "You should format partition %s."
+msgstr ""
+
+#: ../draklive-install:414
+msgid ""
+", $part->{device}, $part->{mntpoint})) or return if $::isStandalone && 0; #- "
+"no, please"
+msgstr ""
+
+#: ../install_interactive.pm:22
+#, perl-format
+msgid ""
+"Some hardware on your computer needs ``proprietary'' drivers to work.\n"
+"You can find some information about them at: %s"
+msgstr ""
+
+#: ../install_interactive.pm:62
+msgid ""
+"You must have a root partition.\n"
+"For this, create a partition (or click on an existing one).\n"
+"Then choose action ``Mount point'' and set it to `/'"
+msgstr ""
+
+#: ../install_interactive.pm:67
+msgid ""
+"You do not have a swap partition.\n"
+"\n"
+"Continue anyway?"
+msgstr ""
+
+#: ../install_interactive.pm:70
+msgid "You must have a FAT partition mounted in /boot/efi"
+msgstr ""
+
+#: ../install_interactive.pm:95
+msgid "Use free space"
+msgstr ""
+
+#: ../install_interactive.pm:97
+msgid "Not enough free space to allocate new partitions"
+msgstr ""
+
+#: ../install_interactive.pm:105
+msgid "Use existing partitions"
+msgstr ""
+
+#: ../install_interactive.pm:107
+msgid "There is no existing partition to use"
+msgstr ""
+
+#: ../install_interactive.pm:114
+msgid "Use the Windows partition for loopback"
+msgstr ""
+
+#: ../install_interactive.pm:117
+msgid "Which partition do you want to use for Linux4Win?"
+msgstr ""
+
+#: ../install_interactive.pm:119
+msgid "Choose the sizes"
+msgstr ""
+
+#: ../install_interactive.pm:120
+msgid "Root partition size in MB: "
+msgstr ""
+
+#: ../install_interactive.pm:121
+msgid "Swap partition size in MB: "
+msgstr ""
+
+#: ../install_interactive.pm:130
+msgid "There is no FAT partition to use as loopback (or not enough space left)"
+msgstr ""
+
+#: ../install_interactive.pm:137
+msgid "Use the free space on the Windows partition"
+msgstr ""
+
+#: ../install_interactive.pm:139
+msgid "Which partition do you want to resize?"
+msgstr ""
+
+#: ../install_interactive.pm:153
+#, perl-format
+msgid ""
+"The FAT resizer is unable to handle your partition, \n"
+"the following error occurred: %s"
+msgstr ""
+
+#: ../install_interactive.pm:156
+msgid "Computing the size of the Windows partition"
+msgstr ""
+
+#: ../install_interactive.pm:156 ../install_interactive.pm:188
+msgid "Resizing"
+msgstr ""
+
+#: ../install_interactive.pm:163
+msgid ""
+"Your Windows partition is too fragmented. Please reboot your computer under "
+"Windows, run the ``defrag'' utility, then restart the Mandriva Linux "
+"installation."
+msgstr ""
+
+#: ../install_interactive.pm:166
+msgid ""
+"WARNING!\n"
+"\n"
+"DrakX will now resize your Windows partition. Be careful: this\n"
+"operation is dangerous. If you have not already done so, you\n"
+"first need to exit the installation, run \"chkdsk c:\" from a\n"
+"Command Prompt under Windows (beware, running graphical program\n"
+"\"scandisk\" is not enough, be sure to use \"chkdsk\" in a\n"
+"Command Prompt!), optionally run defrag, then restart the\n"
+"installation. You should also backup your data.\n"
+"When sure, press Ok."
+msgstr ""
+
+#: ../install_interactive.pm:178
+msgid "Which size do you want to keep for Windows on"
+msgstr ""
+
+#: ../install_interactive.pm:179
+#, perl-format
+msgid "partition %s"
+msgstr ""
+
+#: ../install_interactive.pm:188
+msgid "Resizing Windows partition"
+msgstr ""
+
+#: ../install_interactive.pm:193
+#, perl-format
+msgid "FAT resizing failed: %s"
+msgstr ""
+
+#: ../install_interactive.pm:196
+msgid ""
+"To ensure data integrity after resizing the partition(s), \n"
+"filesystem checks will be run on your next boot into Windows(TM)"
+msgstr ""
+
+#: ../install_interactive.pm:208
+msgid "There is no FAT partition to resize (or not enough space left)"
+msgstr ""
+
+#: ../install_interactive.pm:213
+msgid "Erase and use entire disk"
+msgstr ""
+
+#: ../install_interactive.pm:213
+msgid "Remove Windows(TM)"
+msgstr ""
+
+#: ../install_interactive.pm:215
+msgid "You have more than one hard drive, which one do you install linux on?"
+msgstr ""
+
+#: ../install_interactive.pm:219
+#, perl-format
+msgid "ALL existing partitions and their data will be lost on drive %s"
+msgstr ""
+
+#: ../install_interactive.pm:228
+msgid "Custom disk partitioning"
+msgstr ""
+
+#: ../install_interactive.pm:232
+msgid "Use fdisk"
+msgstr ""
+
+#: ../install_interactive.pm:235
+#, perl-format
+msgid ""
+"You can now partition %s.\n"
+"When you are done, do not forget to save using `w'"
+msgstr ""
+
+#: ../install_interactive.pm:271
+msgid "I can not find any room for installing"
+msgstr ""
+
+#: ../install_interactive.pm:275
+msgid "The DrakX Partitioning wizard found the following solutions:"
+msgstr ""
+
+#: ../install_interactive.pm:281
+#, perl-format
+msgid "Partitioning failed: %s"
+msgstr ""
+
+#: ../install_interactive.pm:288
+msgid "Bringing up the network"
+msgstr ""
+
+#: ../install_interactive.pm:293
+msgid "Bringing down the network"
+msgstr ""
diff --git a/live/draklive-install/po/nb.po b/live/draklive-install/po/nb.po
new file mode 100644
index 000000000..f16c11e32
--- /dev/null
+++ b/live/draklive-install/po/nb.po
@@ -0,0 +1,300 @@
+#: ../draklive-install:59
+msgid "Mandriva Live"
+msgstr ""
+
+#: ../draklive-install:65
+msgid "This wizard will help you to install the live distribution."
+msgstr ""
+
+#: ../draklive-install:83
+msgid "Computing total size"
+msgstr ""
+
+#: ../draklive-install:95
+msgid "Copying in progress"
+msgstr ""
+
+#: ../draklive-install:163
+msgid "Congratulations"
+msgstr ""
+
+#: ../draklive-install:163
+msgid ""
+"Please halt your computer, remove your live system, and restart your "
+"computer."
+msgstr ""
+
+#: ../draklive-install:179 ../draklive-install:407
+msgid "You need to reboot for the partition table modifications to take place"
+msgstr ""
+
+#: ../draklive-install:230
+msgid "Choose the partitions you want to format"
+msgstr ""
+
+#: ../draklive-install:232
+msgid "Check bad blocks?"
+msgstr ""
+
+#: ../draklive-install:261
+#, c-format
+msgid "Failed to check filesystem %s. Do you want to repair the errors?"
+msgstr ""
+
+#: ../draklive-install:262
+msgid ", $1), 1);"
+msgstr ""
+
+#: ../draklive-install:265
+msgid "Not enough swap space to fulfill installation, please add some"
+msgstr ""
+
+#: ../draklive-install:284
+msgid "$d/$l{$_}"
+msgstr ""
+
+#: ../draklive-install:285
+msgid "$d/.bashrc"
+msgstr ""
+
+#: ../draklive-install:317
+msgid "No partition available"
+msgstr ""
+
+#: ../draklive-install:320
+msgid "Scanning partitions to find mount points"
+msgstr ""
+
+#: ../draklive-install:327
+msgid "Choose the mount points"
+msgstr ""
+
+#: ../draklive-install:328
+msgid "Partitioning"
+msgstr ""
+
+#: ../draklive-install:361
+msgid "none"
+msgstr ""
+
+#: ../draklive-install:363
+#, c-format
+msgid "Duplicate mount point %s"
+msgstr ""
+
+#: ../draklive-install:389
+msgid "Continue anyway?"
+msgstr ""
+
+#: ../draklive-install:394
+msgid "Quit without saving"
+msgstr ""
+
+#: ../draklive-install:394
+msgid "Quit without writing the partition table?"
+msgstr ""
+
+#: ../draklive-install:400
+msgid "Do you want to save /etc/fstab modifications"
+msgstr ""
+
+#: ../draklive-install:412
+#, c-format
+msgid "You should format partition %s."
+msgstr ""
+
+#: ../draklive-install:414
+msgid ""
+", $part->{device}, $part->{mntpoint})) or return if $::isStandalone && 0; #- "
+"no, please"
+msgstr ""
+
+#: ../install_interactive.pm:22
+#, perl-format
+msgid ""
+"Some hardware on your computer needs ``proprietary'' drivers to work.\n"
+"You can find some information about them at: %s"
+msgstr ""
+
+#: ../install_interactive.pm:62
+msgid ""
+"You must have a root partition.\n"
+"For this, create a partition (or click on an existing one).\n"
+"Then choose action ``Mount point'' and set it to `/'"
+msgstr ""
+
+#: ../install_interactive.pm:67
+msgid ""
+"You do not have a swap partition.\n"
+"\n"
+"Continue anyway?"
+msgstr ""
+
+#: ../install_interactive.pm:70
+msgid "You must have a FAT partition mounted in /boot/efi"
+msgstr ""
+
+#: ../install_interactive.pm:95
+msgid "Use free space"
+msgstr ""
+
+#: ../install_interactive.pm:97
+msgid "Not enough free space to allocate new partitions"
+msgstr ""
+
+#: ../install_interactive.pm:105
+msgid "Use existing partitions"
+msgstr ""
+
+#: ../install_interactive.pm:107
+msgid "There is no existing partition to use"
+msgstr ""
+
+#: ../install_interactive.pm:114
+msgid "Use the Windows partition for loopback"
+msgstr ""
+
+#: ../install_interactive.pm:117
+msgid "Which partition do you want to use for Linux4Win?"
+msgstr ""
+
+#: ../install_interactive.pm:119
+msgid "Choose the sizes"
+msgstr ""
+
+#: ../install_interactive.pm:120
+msgid "Root partition size in MB: "
+msgstr ""
+
+#: ../install_interactive.pm:121
+msgid "Swap partition size in MB: "
+msgstr ""
+
+#: ../install_interactive.pm:130
+msgid "There is no FAT partition to use as loopback (or not enough space left)"
+msgstr ""
+
+#: ../install_interactive.pm:137
+msgid "Use the free space on the Windows partition"
+msgstr ""
+
+#: ../install_interactive.pm:139
+msgid "Which partition do you want to resize?"
+msgstr ""
+
+#: ../install_interactive.pm:153
+#, perl-format
+msgid ""
+"The FAT resizer is unable to handle your partition, \n"
+"the following error occurred: %s"
+msgstr ""
+
+#: ../install_interactive.pm:156
+msgid "Computing the size of the Windows partition"
+msgstr ""
+
+#: ../install_interactive.pm:156 ../install_interactive.pm:188
+msgid "Resizing"
+msgstr ""
+
+#: ../install_interactive.pm:163
+msgid ""
+"Your Windows partition is too fragmented. Please reboot your computer under "
+"Windows, run the ``defrag'' utility, then restart the Mandriva Linux "
+"installation."
+msgstr ""
+
+#: ../install_interactive.pm:166
+msgid ""
+"WARNING!\n"
+"\n"
+"DrakX will now resize your Windows partition. Be careful: this\n"
+"operation is dangerous. If you have not already done so, you\n"
+"first need to exit the installation, run \"chkdsk c:\" from a\n"
+"Command Prompt under Windows (beware, running graphical program\n"
+"\"scandisk\" is not enough, be sure to use \"chkdsk\" in a\n"
+"Command Prompt!), optionally run defrag, then restart the\n"
+"installation. You should also backup your data.\n"
+"When sure, press Ok."
+msgstr ""
+
+#: ../install_interactive.pm:178
+msgid "Which size do you want to keep for Windows on"
+msgstr ""
+
+#: ../install_interactive.pm:179
+#, perl-format
+msgid "partition %s"
+msgstr ""
+
+#: ../install_interactive.pm:188
+msgid "Resizing Windows partition"
+msgstr ""
+
+#: ../install_interactive.pm:193
+#, perl-format
+msgid "FAT resizing failed: %s"
+msgstr ""
+
+#: ../install_interactive.pm:196
+msgid ""
+"To ensure data integrity after resizing the partition(s), \n"
+"filesystem checks will be run on your next boot into Windows(TM)"
+msgstr ""
+
+#: ../install_interactive.pm:208
+msgid "There is no FAT partition to resize (or not enough space left)"
+msgstr ""
+
+#: ../install_interactive.pm:213
+msgid "Erase and use entire disk"
+msgstr ""
+
+#: ../install_interactive.pm:213
+msgid "Remove Windows(TM)"
+msgstr ""
+
+#: ../install_interactive.pm:215
+msgid "You have more than one hard drive, which one do you install linux on?"
+msgstr ""
+
+#: ../install_interactive.pm:219
+#, perl-format
+msgid "ALL existing partitions and their data will be lost on drive %s"
+msgstr ""
+
+#: ../install_interactive.pm:228
+msgid "Custom disk partitioning"
+msgstr ""
+
+#: ../install_interactive.pm:232
+msgid "Use fdisk"
+msgstr ""
+
+#: ../install_interactive.pm:235
+#, perl-format
+msgid ""
+"You can now partition %s.\n"
+"When you are done, do not forget to save using `w'"
+msgstr ""
+
+#: ../install_interactive.pm:271
+msgid "I can not find any room for installing"
+msgstr ""
+
+#: ../install_interactive.pm:275
+msgid "The DrakX Partitioning wizard found the following solutions:"
+msgstr ""
+
+#: ../install_interactive.pm:281
+#, perl-format
+msgid "Partitioning failed: %s"
+msgstr ""
+
+#: ../install_interactive.pm:288
+msgid "Bringing up the network"
+msgstr ""
+
+#: ../install_interactive.pm:293
+msgid "Bringing down the network"
+msgstr ""
diff --git a/live/draklive-install/po/nl.po b/live/draklive-install/po/nl.po
new file mode 100644
index 000000000..f16c11e32
--- /dev/null
+++ b/live/draklive-install/po/nl.po
@@ -0,0 +1,300 @@
+#: ../draklive-install:59
+msgid "Mandriva Live"
+msgstr ""
+
+#: ../draklive-install:65
+msgid "This wizard will help you to install the live distribution."
+msgstr ""
+
+#: ../draklive-install:83
+msgid "Computing total size"
+msgstr ""
+
+#: ../draklive-install:95
+msgid "Copying in progress"
+msgstr ""
+
+#: ../draklive-install:163
+msgid "Congratulations"
+msgstr ""
+
+#: ../draklive-install:163
+msgid ""
+"Please halt your computer, remove your live system, and restart your "
+"computer."
+msgstr ""
+
+#: ../draklive-install:179 ../draklive-install:407
+msgid "You need to reboot for the partition table modifications to take place"
+msgstr ""
+
+#: ../draklive-install:230
+msgid "Choose the partitions you want to format"
+msgstr ""
+
+#: ../draklive-install:232
+msgid "Check bad blocks?"
+msgstr ""
+
+#: ../draklive-install:261
+#, c-format
+msgid "Failed to check filesystem %s. Do you want to repair the errors?"
+msgstr ""
+
+#: ../draklive-install:262
+msgid ", $1), 1);"
+msgstr ""
+
+#: ../draklive-install:265
+msgid "Not enough swap space to fulfill installation, please add some"
+msgstr ""
+
+#: ../draklive-install:284
+msgid "$d/$l{$_}"
+msgstr ""
+
+#: ../draklive-install:285
+msgid "$d/.bashrc"
+msgstr ""
+
+#: ../draklive-install:317
+msgid "No partition available"
+msgstr ""
+
+#: ../draklive-install:320
+msgid "Scanning partitions to find mount points"
+msgstr ""
+
+#: ../draklive-install:327
+msgid "Choose the mount points"
+msgstr ""
+
+#: ../draklive-install:328
+msgid "Partitioning"
+msgstr ""
+
+#: ../draklive-install:361
+msgid "none"
+msgstr ""
+
+#: ../draklive-install:363
+#, c-format
+msgid "Duplicate mount point %s"
+msgstr ""
+
+#: ../draklive-install:389
+msgid "Continue anyway?"
+msgstr ""
+
+#: ../draklive-install:394
+msgid "Quit without saving"
+msgstr ""
+
+#: ../draklive-install:394
+msgid "Quit without writing the partition table?"
+msgstr ""
+
+#: ../draklive-install:400
+msgid "Do you want to save /etc/fstab modifications"
+msgstr ""
+
+#: ../draklive-install:412
+#, c-format
+msgid "You should format partition %s."
+msgstr ""
+
+#: ../draklive-install:414
+msgid ""
+", $part->{device}, $part->{mntpoint})) or return if $::isStandalone && 0; #- "
+"no, please"
+msgstr ""
+
+#: ../install_interactive.pm:22
+#, perl-format
+msgid ""
+"Some hardware on your computer needs ``proprietary'' drivers to work.\n"
+"You can find some information about them at: %s"
+msgstr ""
+
+#: ../install_interactive.pm:62
+msgid ""
+"You must have a root partition.\n"
+"For this, create a partition (or click on an existing one).\n"
+"Then choose action ``Mount point'' and set it to `/'"
+msgstr ""
+
+#: ../install_interactive.pm:67
+msgid ""
+"You do not have a swap partition.\n"
+"\n"
+"Continue anyway?"
+msgstr ""
+
+#: ../install_interactive.pm:70
+msgid "You must have a FAT partition mounted in /boot/efi"
+msgstr ""
+
+#: ../install_interactive.pm:95
+msgid "Use free space"
+msgstr ""
+
+#: ../install_interactive.pm:97
+msgid "Not enough free space to allocate new partitions"
+msgstr ""
+
+#: ../install_interactive.pm:105
+msgid "Use existing partitions"
+msgstr ""
+
+#: ../install_interactive.pm:107
+msgid "There is no existing partition to use"
+msgstr ""
+
+#: ../install_interactive.pm:114
+msgid "Use the Windows partition for loopback"
+msgstr ""
+
+#: ../install_interactive.pm:117
+msgid "Which partition do you want to use for Linux4Win?"
+msgstr ""
+
+#: ../install_interactive.pm:119
+msgid "Choose the sizes"
+msgstr ""
+
+#: ../install_interactive.pm:120
+msgid "Root partition size in MB: "
+msgstr ""
+
+#: ../install_interactive.pm:121
+msgid "Swap partition size in MB: "
+msgstr ""
+
+#: ../install_interactive.pm:130
+msgid "There is no FAT partition to use as loopback (or not enough space left)"
+msgstr ""
+
+#: ../install_interactive.pm:137
+msgid "Use the free space on the Windows partition"
+msgstr ""
+
+#: ../install_interactive.pm:139
+msgid "Which partition do you want to resize?"
+msgstr ""
+
+#: ../install_interactive.pm:153
+#, perl-format
+msgid ""
+"The FAT resizer is unable to handle your partition, \n"
+"the following error occurred: %s"
+msgstr ""
+
+#: ../install_interactive.pm:156
+msgid "Computing the size of the Windows partition"
+msgstr ""
+
+#: ../install_interactive.pm:156 ../install_interactive.pm:188
+msgid "Resizing"
+msgstr ""
+
+#: ../install_interactive.pm:163
+msgid ""
+"Your Windows partition is too fragmented. Please reboot your computer under "
+"Windows, run the ``defrag'' utility, then restart the Mandriva Linux "
+"installation."
+msgstr ""
+
+#: ../install_interactive.pm:166
+msgid ""
+"WARNING!\n"
+"\n"
+"DrakX will now resize your Windows partition. Be careful: this\n"
+"operation is dangerous. If you have not already done so, you\n"
+"first need to exit the installation, run \"chkdsk c:\" from a\n"
+"Command Prompt under Windows (beware, running graphical program\n"
+"\"scandisk\" is not enough, be sure to use \"chkdsk\" in a\n"
+"Command Prompt!), optionally run defrag, then restart the\n"
+"installation. You should also backup your data.\n"
+"When sure, press Ok."
+msgstr ""
+
+#: ../install_interactive.pm:178
+msgid "Which size do you want to keep for Windows on"
+msgstr ""
+
+#: ../install_interactive.pm:179
+#, perl-format
+msgid "partition %s"
+msgstr ""
+
+#: ../install_interactive.pm:188
+msgid "Resizing Windows partition"
+msgstr ""
+
+#: ../install_interactive.pm:193
+#, perl-format
+msgid "FAT resizing failed: %s"
+msgstr ""
+
+#: ../install_interactive.pm:196
+msgid ""
+"To ensure data integrity after resizing the partition(s), \n"
+"filesystem checks will be run on your next boot into Windows(TM)"
+msgstr ""
+
+#: ../install_interactive.pm:208
+msgid "There is no FAT partition to resize (or not enough space left)"
+msgstr ""
+
+#: ../install_interactive.pm:213
+msgid "Erase and use entire disk"
+msgstr ""
+
+#: ../install_interactive.pm:213
+msgid "Remove Windows(TM)"
+msgstr ""
+
+#: ../install_interactive.pm:215
+msgid "You have more than one hard drive, which one do you install linux on?"
+msgstr ""
+
+#: ../install_interactive.pm:219
+#, perl-format
+msgid "ALL existing partitions and their data will be lost on drive %s"
+msgstr ""
+
+#: ../install_interactive.pm:228
+msgid "Custom disk partitioning"
+msgstr ""
+
+#: ../install_interactive.pm:232
+msgid "Use fdisk"
+msgstr ""
+
+#: ../install_interactive.pm:235
+#, perl-format
+msgid ""
+"You can now partition %s.\n"
+"When you are done, do not forget to save using `w'"
+msgstr ""
+
+#: ../install_interactive.pm:271
+msgid "I can not find any room for installing"
+msgstr ""
+
+#: ../install_interactive.pm:275
+msgid "The DrakX Partitioning wizard found the following solutions:"
+msgstr ""
+
+#: ../install_interactive.pm:281
+#, perl-format
+msgid "Partitioning failed: %s"
+msgstr ""
+
+#: ../install_interactive.pm:288
+msgid "Bringing up the network"
+msgstr ""
+
+#: ../install_interactive.pm:293
+msgid "Bringing down the network"
+msgstr ""
diff --git a/live/draklive-install/po/nn.po b/live/draklive-install/po/nn.po
new file mode 100644
index 000000000..f16c11e32
--- /dev/null
+++ b/live/draklive-install/po/nn.po
@@ -0,0 +1,300 @@
+#: ../draklive-install:59
+msgid "Mandriva Live"
+msgstr ""
+
+#: ../draklive-install:65
+msgid "This wizard will help you to install the live distribution."
+msgstr ""
+
+#: ../draklive-install:83
+msgid "Computing total size"
+msgstr ""
+
+#: ../draklive-install:95
+msgid "Copying in progress"
+msgstr ""
+
+#: ../draklive-install:163
+msgid "Congratulations"
+msgstr ""
+
+#: ../draklive-install:163
+msgid ""
+"Please halt your computer, remove your live system, and restart your "
+"computer."
+msgstr ""
+
+#: ../draklive-install:179 ../draklive-install:407
+msgid "You need to reboot for the partition table modifications to take place"
+msgstr ""
+
+#: ../draklive-install:230
+msgid "Choose the partitions you want to format"
+msgstr ""
+
+#: ../draklive-install:232
+msgid "Check bad blocks?"
+msgstr ""
+
+#: ../draklive-install:261
+#, c-format
+msgid "Failed to check filesystem %s. Do you want to repair the errors?"
+msgstr ""
+
+#: ../draklive-install:262
+msgid ", $1), 1);"
+msgstr ""
+
+#: ../draklive-install:265
+msgid "Not enough swap space to fulfill installation, please add some"
+msgstr ""
+
+#: ../draklive-install:284
+msgid "$d/$l{$_}"
+msgstr ""
+
+#: ../draklive-install:285
+msgid "$d/.bashrc"
+msgstr ""
+
+#: ../draklive-install:317
+msgid "No partition available"
+msgstr ""
+
+#: ../draklive-install:320
+msgid "Scanning partitions to find mount points"
+msgstr ""
+
+#: ../draklive-install:327
+msgid "Choose the mount points"
+msgstr ""
+
+#: ../draklive-install:328
+msgid "Partitioning"
+msgstr ""
+
+#: ../draklive-install:361
+msgid "none"
+msgstr ""
+
+#: ../draklive-install:363
+#, c-format
+msgid "Duplicate mount point %s"
+msgstr ""
+
+#: ../draklive-install:389
+msgid "Continue anyway?"
+msgstr ""
+
+#: ../draklive-install:394
+msgid "Quit without saving"
+msgstr ""
+
+#: ../draklive-install:394
+msgid "Quit without writing the partition table?"
+msgstr ""
+
+#: ../draklive-install:400
+msgid "Do you want to save /etc/fstab modifications"
+msgstr ""
+
+#: ../draklive-install:412
+#, c-format
+msgid "You should format partition %s."
+msgstr ""
+
+#: ../draklive-install:414
+msgid ""
+", $part->{device}, $part->{mntpoint})) or return if $::isStandalone && 0; #- "
+"no, please"
+msgstr ""
+
+#: ../install_interactive.pm:22
+#, perl-format
+msgid ""
+"Some hardware on your computer needs ``proprietary'' drivers to work.\n"
+"You can find some information about them at: %s"
+msgstr ""
+
+#: ../install_interactive.pm:62
+msgid ""
+"You must have a root partition.\n"
+"For this, create a partition (or click on an existing one).\n"
+"Then choose action ``Mount point'' and set it to `/'"
+msgstr ""
+
+#: ../install_interactive.pm:67
+msgid ""
+"You do not have a swap partition.\n"
+"\n"
+"Continue anyway?"
+msgstr ""
+
+#: ../install_interactive.pm:70
+msgid "You must have a FAT partition mounted in /boot/efi"
+msgstr ""
+
+#: ../install_interactive.pm:95
+msgid "Use free space"
+msgstr ""
+
+#: ../install_interactive.pm:97
+msgid "Not enough free space to allocate new partitions"
+msgstr ""
+
+#: ../install_interactive.pm:105
+msgid "Use existing partitions"
+msgstr ""
+
+#: ../install_interactive.pm:107
+msgid "There is no existing partition to use"
+msgstr ""
+
+#: ../install_interactive.pm:114
+msgid "Use the Windows partition for loopback"
+msgstr ""
+
+#: ../install_interactive.pm:117
+msgid "Which partition do you want to use for Linux4Win?"
+msgstr ""
+
+#: ../install_interactive.pm:119
+msgid "Choose the sizes"
+msgstr ""
+
+#: ../install_interactive.pm:120
+msgid "Root partition size in MB: "
+msgstr ""
+
+#: ../install_interactive.pm:121
+msgid "Swap partition size in MB: "
+msgstr ""
+
+#: ../install_interactive.pm:130
+msgid "There is no FAT partition to use as loopback (or not enough space left)"
+msgstr ""
+
+#: ../install_interactive.pm:137
+msgid "Use the free space on the Windows partition"
+msgstr ""
+
+#: ../install_interactive.pm:139
+msgid "Which partition do you want to resize?"
+msgstr ""
+
+#: ../install_interactive.pm:153
+#, perl-format
+msgid ""
+"The FAT resizer is unable to handle your partition, \n"
+"the following error occurred: %s"
+msgstr ""
+
+#: ../install_interactive.pm:156
+msgid "Computing the size of the Windows partition"
+msgstr ""
+
+#: ../install_interactive.pm:156 ../install_interactive.pm:188
+msgid "Resizing"
+msgstr ""
+
+#: ../install_interactive.pm:163
+msgid ""
+"Your Windows partition is too fragmented. Please reboot your computer under "
+"Windows, run the ``defrag'' utility, then restart the Mandriva Linux "
+"installation."
+msgstr ""
+
+#: ../install_interactive.pm:166
+msgid ""
+"WARNING!\n"
+"\n"
+"DrakX will now resize your Windows partition. Be careful: this\n"
+"operation is dangerous. If you have not already done so, you\n"
+"first need to exit the installation, run \"chkdsk c:\" from a\n"
+"Command Prompt under Windows (beware, running graphical program\n"
+"\"scandisk\" is not enough, be sure to use \"chkdsk\" in a\n"
+"Command Prompt!), optionally run defrag, then restart the\n"
+"installation. You should also backup your data.\n"
+"When sure, press Ok."
+msgstr ""
+
+#: ../install_interactive.pm:178
+msgid "Which size do you want to keep for Windows on"
+msgstr ""
+
+#: ../install_interactive.pm:179
+#, perl-format
+msgid "partition %s"
+msgstr ""
+
+#: ../install_interactive.pm:188
+msgid "Resizing Windows partition"
+msgstr ""
+
+#: ../install_interactive.pm:193
+#, perl-format
+msgid "FAT resizing failed: %s"
+msgstr ""
+
+#: ../install_interactive.pm:196
+msgid ""
+"To ensure data integrity after resizing the partition(s), \n"
+"filesystem checks will be run on your next boot into Windows(TM)"
+msgstr ""
+
+#: ../install_interactive.pm:208
+msgid "There is no FAT partition to resize (or not enough space left)"
+msgstr ""
+
+#: ../install_interactive.pm:213
+msgid "Erase and use entire disk"
+msgstr ""
+
+#: ../install_interactive.pm:213
+msgid "Remove Windows(TM)"
+msgstr ""
+
+#: ../install_interactive.pm:215
+msgid "You have more than one hard drive, which one do you install linux on?"
+msgstr ""
+
+#: ../install_interactive.pm:219
+#, perl-format
+msgid "ALL existing partitions and their data will be lost on drive %s"
+msgstr ""
+
+#: ../install_interactive.pm:228
+msgid "Custom disk partitioning"
+msgstr ""
+
+#: ../install_interactive.pm:232
+msgid "Use fdisk"
+msgstr ""
+
+#: ../install_interactive.pm:235
+#, perl-format
+msgid ""
+"You can now partition %s.\n"
+"When you are done, do not forget to save using `w'"
+msgstr ""
+
+#: ../install_interactive.pm:271
+msgid "I can not find any room for installing"
+msgstr ""
+
+#: ../install_interactive.pm:275
+msgid "The DrakX Partitioning wizard found the following solutions:"
+msgstr ""
+
+#: ../install_interactive.pm:281
+#, perl-format
+msgid "Partitioning failed: %s"
+msgstr ""
+
+#: ../install_interactive.pm:288
+msgid "Bringing up the network"
+msgstr ""
+
+#: ../install_interactive.pm:293
+msgid "Bringing down the network"
+msgstr ""
diff --git a/live/draklive-install/po/pa_IN.po b/live/draklive-install/po/pa_IN.po
new file mode 100644
index 000000000..f16c11e32
--- /dev/null
+++ b/live/draklive-install/po/pa_IN.po
@@ -0,0 +1,300 @@
+#: ../draklive-install:59
+msgid "Mandriva Live"
+msgstr ""
+
+#: ../draklive-install:65
+msgid "This wizard will help you to install the live distribution."
+msgstr ""
+
+#: ../draklive-install:83
+msgid "Computing total size"
+msgstr ""
+
+#: ../draklive-install:95
+msgid "Copying in progress"
+msgstr ""
+
+#: ../draklive-install:163
+msgid "Congratulations"
+msgstr ""
+
+#: ../draklive-install:163
+msgid ""
+"Please halt your computer, remove your live system, and restart your "
+"computer."
+msgstr ""
+
+#: ../draklive-install:179 ../draklive-install:407
+msgid "You need to reboot for the partition table modifications to take place"
+msgstr ""
+
+#: ../draklive-install:230
+msgid "Choose the partitions you want to format"
+msgstr ""
+
+#: ../draklive-install:232
+msgid "Check bad blocks?"
+msgstr ""
+
+#: ../draklive-install:261
+#, c-format
+msgid "Failed to check filesystem %s. Do you want to repair the errors?"
+msgstr ""
+
+#: ../draklive-install:262
+msgid ", $1), 1);"
+msgstr ""
+
+#: ../draklive-install:265
+msgid "Not enough swap space to fulfill installation, please add some"
+msgstr ""
+
+#: ../draklive-install:284
+msgid "$d/$l{$_}"
+msgstr ""
+
+#: ../draklive-install:285
+msgid "$d/.bashrc"
+msgstr ""
+
+#: ../draklive-install:317
+msgid "No partition available"
+msgstr ""
+
+#: ../draklive-install:320
+msgid "Scanning partitions to find mount points"
+msgstr ""
+
+#: ../draklive-install:327
+msgid "Choose the mount points"
+msgstr ""
+
+#: ../draklive-install:328
+msgid "Partitioning"
+msgstr ""
+
+#: ../draklive-install:361
+msgid "none"
+msgstr ""
+
+#: ../draklive-install:363
+#, c-format
+msgid "Duplicate mount point %s"
+msgstr ""
+
+#: ../draklive-install:389
+msgid "Continue anyway?"
+msgstr ""
+
+#: ../draklive-install:394
+msgid "Quit without saving"
+msgstr ""
+
+#: ../draklive-install:394
+msgid "Quit without writing the partition table?"
+msgstr ""
+
+#: ../draklive-install:400
+msgid "Do you want to save /etc/fstab modifications"
+msgstr ""
+
+#: ../draklive-install:412
+#, c-format
+msgid "You should format partition %s."
+msgstr ""
+
+#: ../draklive-install:414
+msgid ""
+", $part->{device}, $part->{mntpoint})) or return if $::isStandalone && 0; #- "
+"no, please"
+msgstr ""
+
+#: ../install_interactive.pm:22
+#, perl-format
+msgid ""
+"Some hardware on your computer needs ``proprietary'' drivers to work.\n"
+"You can find some information about them at: %s"
+msgstr ""
+
+#: ../install_interactive.pm:62
+msgid ""
+"You must have a root partition.\n"
+"For this, create a partition (or click on an existing one).\n"
+"Then choose action ``Mount point'' and set it to `/'"
+msgstr ""
+
+#: ../install_interactive.pm:67
+msgid ""
+"You do not have a swap partition.\n"
+"\n"
+"Continue anyway?"
+msgstr ""
+
+#: ../install_interactive.pm:70
+msgid "You must have a FAT partition mounted in /boot/efi"
+msgstr ""
+
+#: ../install_interactive.pm:95
+msgid "Use free space"
+msgstr ""
+
+#: ../install_interactive.pm:97
+msgid "Not enough free space to allocate new partitions"
+msgstr ""
+
+#: ../install_interactive.pm:105
+msgid "Use existing partitions"
+msgstr ""
+
+#: ../install_interactive.pm:107
+msgid "There is no existing partition to use"
+msgstr ""
+
+#: ../install_interactive.pm:114
+msgid "Use the Windows partition for loopback"
+msgstr ""
+
+#: ../install_interactive.pm:117
+msgid "Which partition do you want to use for Linux4Win?"
+msgstr ""
+
+#: ../install_interactive.pm:119
+msgid "Choose the sizes"
+msgstr ""
+
+#: ../install_interactive.pm:120
+msgid "Root partition size in MB: "
+msgstr ""
+
+#: ../install_interactive.pm:121
+msgid "Swap partition size in MB: "
+msgstr ""
+
+#: ../install_interactive.pm:130
+msgid "There is no FAT partition to use as loopback (or not enough space left)"
+msgstr ""
+
+#: ../install_interactive.pm:137
+msgid "Use the free space on the Windows partition"
+msgstr ""
+
+#: ../install_interactive.pm:139
+msgid "Which partition do you want to resize?"
+msgstr ""
+
+#: ../install_interactive.pm:153
+#, perl-format
+msgid ""
+"The FAT resizer is unable to handle your partition, \n"
+"the following error occurred: %s"
+msgstr ""
+
+#: ../install_interactive.pm:156
+msgid "Computing the size of the Windows partition"
+msgstr ""
+
+#: ../install_interactive.pm:156 ../install_interactive.pm:188
+msgid "Resizing"
+msgstr ""
+
+#: ../install_interactive.pm:163
+msgid ""
+"Your Windows partition is too fragmented. Please reboot your computer under "
+"Windows, run the ``defrag'' utility, then restart the Mandriva Linux "
+"installation."
+msgstr ""
+
+#: ../install_interactive.pm:166
+msgid ""
+"WARNING!\n"
+"\n"
+"DrakX will now resize your Windows partition. Be careful: this\n"
+"operation is dangerous. If you have not already done so, you\n"
+"first need to exit the installation, run \"chkdsk c:\" from a\n"
+"Command Prompt under Windows (beware, running graphical program\n"
+"\"scandisk\" is not enough, be sure to use \"chkdsk\" in a\n"
+"Command Prompt!), optionally run defrag, then restart the\n"
+"installation. You should also backup your data.\n"
+"When sure, press Ok."
+msgstr ""
+
+#: ../install_interactive.pm:178
+msgid "Which size do you want to keep for Windows on"
+msgstr ""
+
+#: ../install_interactive.pm:179
+#, perl-format
+msgid "partition %s"
+msgstr ""
+
+#: ../install_interactive.pm:188
+msgid "Resizing Windows partition"
+msgstr ""
+
+#: ../install_interactive.pm:193
+#, perl-format
+msgid "FAT resizing failed: %s"
+msgstr ""
+
+#: ../install_interactive.pm:196
+msgid ""
+"To ensure data integrity after resizing the partition(s), \n"
+"filesystem checks will be run on your next boot into Windows(TM)"
+msgstr ""
+
+#: ../install_interactive.pm:208
+msgid "There is no FAT partition to resize (or not enough space left)"
+msgstr ""
+
+#: ../install_interactive.pm:213
+msgid "Erase and use entire disk"
+msgstr ""
+
+#: ../install_interactive.pm:213
+msgid "Remove Windows(TM)"
+msgstr ""
+
+#: ../install_interactive.pm:215
+msgid "You have more than one hard drive, which one do you install linux on?"
+msgstr ""
+
+#: ../install_interactive.pm:219
+#, perl-format
+msgid "ALL existing partitions and their data will be lost on drive %s"
+msgstr ""
+
+#: ../install_interactive.pm:228
+msgid "Custom disk partitioning"
+msgstr ""
+
+#: ../install_interactive.pm:232
+msgid "Use fdisk"
+msgstr ""
+
+#: ../install_interactive.pm:235
+#, perl-format
+msgid ""
+"You can now partition %s.\n"
+"When you are done, do not forget to save using `w'"
+msgstr ""
+
+#: ../install_interactive.pm:271
+msgid "I can not find any room for installing"
+msgstr ""
+
+#: ../install_interactive.pm:275
+msgid "The DrakX Partitioning wizard found the following solutions:"
+msgstr ""
+
+#: ../install_interactive.pm:281
+#, perl-format
+msgid "Partitioning failed: %s"
+msgstr ""
+
+#: ../install_interactive.pm:288
+msgid "Bringing up the network"
+msgstr ""
+
+#: ../install_interactive.pm:293
+msgid "Bringing down the network"
+msgstr ""
diff --git a/live/draklive-install/po/pl.po b/live/draklive-install/po/pl.po
new file mode 100644
index 000000000..f16c11e32
--- /dev/null
+++ b/live/draklive-install/po/pl.po
@@ -0,0 +1,300 @@
+#: ../draklive-install:59
+msgid "Mandriva Live"
+msgstr ""
+
+#: ../draklive-install:65
+msgid "This wizard will help you to install the live distribution."
+msgstr ""
+
+#: ../draklive-install:83
+msgid "Computing total size"
+msgstr ""
+
+#: ../draklive-install:95
+msgid "Copying in progress"
+msgstr ""
+
+#: ../draklive-install:163
+msgid "Congratulations"
+msgstr ""
+
+#: ../draklive-install:163
+msgid ""
+"Please halt your computer, remove your live system, and restart your "
+"computer."
+msgstr ""
+
+#: ../draklive-install:179 ../draklive-install:407
+msgid "You need to reboot for the partition table modifications to take place"
+msgstr ""
+
+#: ../draklive-install:230
+msgid "Choose the partitions you want to format"
+msgstr ""
+
+#: ../draklive-install:232
+msgid "Check bad blocks?"
+msgstr ""
+
+#: ../draklive-install:261
+#, c-format
+msgid "Failed to check filesystem %s. Do you want to repair the errors?"
+msgstr ""
+
+#: ../draklive-install:262
+msgid ", $1), 1);"
+msgstr ""
+
+#: ../draklive-install:265
+msgid "Not enough swap space to fulfill installation, please add some"
+msgstr ""
+
+#: ../draklive-install:284
+msgid "$d/$l{$_}"
+msgstr ""
+
+#: ../draklive-install:285
+msgid "$d/.bashrc"
+msgstr ""
+
+#: ../draklive-install:317
+msgid "No partition available"
+msgstr ""
+
+#: ../draklive-install:320
+msgid "Scanning partitions to find mount points"
+msgstr ""
+
+#: ../draklive-install:327
+msgid "Choose the mount points"
+msgstr ""
+
+#: ../draklive-install:328
+msgid "Partitioning"
+msgstr ""
+
+#: ../draklive-install:361
+msgid "none"
+msgstr ""
+
+#: ../draklive-install:363
+#, c-format
+msgid "Duplicate mount point %s"
+msgstr ""
+
+#: ../draklive-install:389
+msgid "Continue anyway?"
+msgstr ""
+
+#: ../draklive-install:394
+msgid "Quit without saving"
+msgstr ""
+
+#: ../draklive-install:394
+msgid "Quit without writing the partition table?"
+msgstr ""
+
+#: ../draklive-install:400
+msgid "Do you want to save /etc/fstab modifications"
+msgstr ""
+
+#: ../draklive-install:412
+#, c-format
+msgid "You should format partition %s."
+msgstr ""
+
+#: ../draklive-install:414
+msgid ""
+", $part->{device}, $part->{mntpoint})) or return if $::isStandalone && 0; #- "
+"no, please"
+msgstr ""
+
+#: ../install_interactive.pm:22
+#, perl-format
+msgid ""
+"Some hardware on your computer needs ``proprietary'' drivers to work.\n"
+"You can find some information about them at: %s"
+msgstr ""
+
+#: ../install_interactive.pm:62
+msgid ""
+"You must have a root partition.\n"
+"For this, create a partition (or click on an existing one).\n"
+"Then choose action ``Mount point'' and set it to `/'"
+msgstr ""
+
+#: ../install_interactive.pm:67
+msgid ""
+"You do not have a swap partition.\n"
+"\n"
+"Continue anyway?"
+msgstr ""
+
+#: ../install_interactive.pm:70
+msgid "You must have a FAT partition mounted in /boot/efi"
+msgstr ""
+
+#: ../install_interactive.pm:95
+msgid "Use free space"
+msgstr ""
+
+#: ../install_interactive.pm:97
+msgid "Not enough free space to allocate new partitions"
+msgstr ""
+
+#: ../install_interactive.pm:105
+msgid "Use existing partitions"
+msgstr ""
+
+#: ../install_interactive.pm:107
+msgid "There is no existing partition to use"
+msgstr ""
+
+#: ../install_interactive.pm:114
+msgid "Use the Windows partition for loopback"
+msgstr ""
+
+#: ../install_interactive.pm:117
+msgid "Which partition do you want to use for Linux4Win?"
+msgstr ""
+
+#: ../install_interactive.pm:119
+msgid "Choose the sizes"
+msgstr ""
+
+#: ../install_interactive.pm:120
+msgid "Root partition size in MB: "
+msgstr ""
+
+#: ../install_interactive.pm:121
+msgid "Swap partition size in MB: "
+msgstr ""
+
+#: ../install_interactive.pm:130
+msgid "There is no FAT partition to use as loopback (or not enough space left)"
+msgstr ""
+
+#: ../install_interactive.pm:137
+msgid "Use the free space on the Windows partition"
+msgstr ""
+
+#: ../install_interactive.pm:139
+msgid "Which partition do you want to resize?"
+msgstr ""
+
+#: ../install_interactive.pm:153
+#, perl-format
+msgid ""
+"The FAT resizer is unable to handle your partition, \n"
+"the following error occurred: %s"
+msgstr ""
+
+#: ../install_interactive.pm:156
+msgid "Computing the size of the Windows partition"
+msgstr ""
+
+#: ../install_interactive.pm:156 ../install_interactive.pm:188
+msgid "Resizing"
+msgstr ""
+
+#: ../install_interactive.pm:163
+msgid ""
+"Your Windows partition is too fragmented. Please reboot your computer under "
+"Windows, run the ``defrag'' utility, then restart the Mandriva Linux "
+"installation."
+msgstr ""
+
+#: ../install_interactive.pm:166
+msgid ""
+"WARNING!\n"
+"\n"
+"DrakX will now resize your Windows partition. Be careful: this\n"
+"operation is dangerous. If you have not already done so, you\n"
+"first need to exit the installation, run \"chkdsk c:\" from a\n"
+"Command Prompt under Windows (beware, running graphical program\n"
+"\"scandisk\" is not enough, be sure to use \"chkdsk\" in a\n"
+"Command Prompt!), optionally run defrag, then restart the\n"
+"installation. You should also backup your data.\n"
+"When sure, press Ok."
+msgstr ""
+
+#: ../install_interactive.pm:178
+msgid "Which size do you want to keep for Windows on"
+msgstr ""
+
+#: ../install_interactive.pm:179
+#, perl-format
+msgid "partition %s"
+msgstr ""
+
+#: ../install_interactive.pm:188
+msgid "Resizing Windows partition"
+msgstr ""
+
+#: ../install_interactive.pm:193
+#, perl-format
+msgid "FAT resizing failed: %s"
+msgstr ""
+
+#: ../install_interactive.pm:196
+msgid ""
+"To ensure data integrity after resizing the partition(s), \n"
+"filesystem checks will be run on your next boot into Windows(TM)"
+msgstr ""
+
+#: ../install_interactive.pm:208
+msgid "There is no FAT partition to resize (or not enough space left)"
+msgstr ""
+
+#: ../install_interactive.pm:213
+msgid "Erase and use entire disk"
+msgstr ""
+
+#: ../install_interactive.pm:213
+msgid "Remove Windows(TM)"
+msgstr ""
+
+#: ../install_interactive.pm:215
+msgid "You have more than one hard drive, which one do you install linux on?"
+msgstr ""
+
+#: ../install_interactive.pm:219
+#, perl-format
+msgid "ALL existing partitions and their data will be lost on drive %s"
+msgstr ""
+
+#: ../install_interactive.pm:228
+msgid "Custom disk partitioning"
+msgstr ""
+
+#: ../install_interactive.pm:232
+msgid "Use fdisk"
+msgstr ""
+
+#: ../install_interactive.pm:235
+#, perl-format
+msgid ""
+"You can now partition %s.\n"
+"When you are done, do not forget to save using `w'"
+msgstr ""
+
+#: ../install_interactive.pm:271
+msgid "I can not find any room for installing"
+msgstr ""
+
+#: ../install_interactive.pm:275
+msgid "The DrakX Partitioning wizard found the following solutions:"
+msgstr ""
+
+#: ../install_interactive.pm:281
+#, perl-format
+msgid "Partitioning failed: %s"
+msgstr ""
+
+#: ../install_interactive.pm:288
+msgid "Bringing up the network"
+msgstr ""
+
+#: ../install_interactive.pm:293
+msgid "Bringing down the network"
+msgstr ""
diff --git a/live/draklive-install/po/pt.po b/live/draklive-install/po/pt.po
new file mode 100644
index 000000000..f16c11e32
--- /dev/null
+++ b/live/draklive-install/po/pt.po
@@ -0,0 +1,300 @@
+#: ../draklive-install:59
+msgid "Mandriva Live"
+msgstr ""
+
+#: ../draklive-install:65
+msgid "This wizard will help you to install the live distribution."
+msgstr ""
+
+#: ../draklive-install:83
+msgid "Computing total size"
+msgstr ""
+
+#: ../draklive-install:95
+msgid "Copying in progress"
+msgstr ""
+
+#: ../draklive-install:163
+msgid "Congratulations"
+msgstr ""
+
+#: ../draklive-install:163
+msgid ""
+"Please halt your computer, remove your live system, and restart your "
+"computer."
+msgstr ""
+
+#: ../draklive-install:179 ../draklive-install:407
+msgid "You need to reboot for the partition table modifications to take place"
+msgstr ""
+
+#: ../draklive-install:230
+msgid "Choose the partitions you want to format"
+msgstr ""
+
+#: ../draklive-install:232
+msgid "Check bad blocks?"
+msgstr ""
+
+#: ../draklive-install:261
+#, c-format
+msgid "Failed to check filesystem %s. Do you want to repair the errors?"
+msgstr ""
+
+#: ../draklive-install:262
+msgid ", $1), 1);"
+msgstr ""
+
+#: ../draklive-install:265
+msgid "Not enough swap space to fulfill installation, please add some"
+msgstr ""
+
+#: ../draklive-install:284
+msgid "$d/$l{$_}"
+msgstr ""
+
+#: ../draklive-install:285
+msgid "$d/.bashrc"
+msgstr ""
+
+#: ../draklive-install:317
+msgid "No partition available"
+msgstr ""
+
+#: ../draklive-install:320
+msgid "Scanning partitions to find mount points"
+msgstr ""
+
+#: ../draklive-install:327
+msgid "Choose the mount points"
+msgstr ""
+
+#: ../draklive-install:328
+msgid "Partitioning"
+msgstr ""
+
+#: ../draklive-install:361
+msgid "none"
+msgstr ""
+
+#: ../draklive-install:363
+#, c-format
+msgid "Duplicate mount point %s"
+msgstr ""
+
+#: ../draklive-install:389
+msgid "Continue anyway?"
+msgstr ""
+
+#: ../draklive-install:394
+msgid "Quit without saving"
+msgstr ""
+
+#: ../draklive-install:394
+msgid "Quit without writing the partition table?"
+msgstr ""
+
+#: ../draklive-install:400
+msgid "Do you want to save /etc/fstab modifications"
+msgstr ""
+
+#: ../draklive-install:412
+#, c-format
+msgid "You should format partition %s."
+msgstr ""
+
+#: ../draklive-install:414
+msgid ""
+", $part->{device}, $part->{mntpoint})) or return if $::isStandalone && 0; #- "
+"no, please"
+msgstr ""
+
+#: ../install_interactive.pm:22
+#, perl-format
+msgid ""
+"Some hardware on your computer needs ``proprietary'' drivers to work.\n"
+"You can find some information about them at: %s"
+msgstr ""
+
+#: ../install_interactive.pm:62
+msgid ""
+"You must have a root partition.\n"
+"For this, create a partition (or click on an existing one).\n"
+"Then choose action ``Mount point'' and set it to `/'"
+msgstr ""
+
+#: ../install_interactive.pm:67
+msgid ""
+"You do not have a swap partition.\n"
+"\n"
+"Continue anyway?"
+msgstr ""
+
+#: ../install_interactive.pm:70
+msgid "You must have a FAT partition mounted in /boot/efi"
+msgstr ""
+
+#: ../install_interactive.pm:95
+msgid "Use free space"
+msgstr ""
+
+#: ../install_interactive.pm:97
+msgid "Not enough free space to allocate new partitions"
+msgstr ""
+
+#: ../install_interactive.pm:105
+msgid "Use existing partitions"
+msgstr ""
+
+#: ../install_interactive.pm:107
+msgid "There is no existing partition to use"
+msgstr ""
+
+#: ../install_interactive.pm:114
+msgid "Use the Windows partition for loopback"
+msgstr ""
+
+#: ../install_interactive.pm:117
+msgid "Which partition do you want to use for Linux4Win?"
+msgstr ""
+
+#: ../install_interactive.pm:119
+msgid "Choose the sizes"
+msgstr ""
+
+#: ../install_interactive.pm:120
+msgid "Root partition size in MB: "
+msgstr ""
+
+#: ../install_interactive.pm:121
+msgid "Swap partition size in MB: "
+msgstr ""
+
+#: ../install_interactive.pm:130
+msgid "There is no FAT partition to use as loopback (or not enough space left)"
+msgstr ""
+
+#: ../install_interactive.pm:137
+msgid "Use the free space on the Windows partition"
+msgstr ""
+
+#: ../install_interactive.pm:139
+msgid "Which partition do you want to resize?"
+msgstr ""
+
+#: ../install_interactive.pm:153
+#, perl-format
+msgid ""
+"The FAT resizer is unable to handle your partition, \n"
+"the following error occurred: %s"
+msgstr ""
+
+#: ../install_interactive.pm:156
+msgid "Computing the size of the Windows partition"
+msgstr ""
+
+#: ../install_interactive.pm:156 ../install_interactive.pm:188
+msgid "Resizing"
+msgstr ""
+
+#: ../install_interactive.pm:163
+msgid ""
+"Your Windows partition is too fragmented. Please reboot your computer under "
+"Windows, run the ``defrag'' utility, then restart the Mandriva Linux "
+"installation."
+msgstr ""
+
+#: ../install_interactive.pm:166
+msgid ""
+"WARNING!\n"
+"\n"
+"DrakX will now resize your Windows partition. Be careful: this\n"
+"operation is dangerous. If you have not already done so, you\n"
+"first need to exit the installation, run \"chkdsk c:\" from a\n"
+"Command Prompt under Windows (beware, running graphical program\n"
+"\"scandisk\" is not enough, be sure to use \"chkdsk\" in a\n"
+"Command Prompt!), optionally run defrag, then restart the\n"
+"installation. You should also backup your data.\n"
+"When sure, press Ok."
+msgstr ""
+
+#: ../install_interactive.pm:178
+msgid "Which size do you want to keep for Windows on"
+msgstr ""
+
+#: ../install_interactive.pm:179
+#, perl-format
+msgid "partition %s"
+msgstr ""
+
+#: ../install_interactive.pm:188
+msgid "Resizing Windows partition"
+msgstr ""
+
+#: ../install_interactive.pm:193
+#, perl-format
+msgid "FAT resizing failed: %s"
+msgstr ""
+
+#: ../install_interactive.pm:196
+msgid ""
+"To ensure data integrity after resizing the partition(s), \n"
+"filesystem checks will be run on your next boot into Windows(TM)"
+msgstr ""
+
+#: ../install_interactive.pm:208
+msgid "There is no FAT partition to resize (or not enough space left)"
+msgstr ""
+
+#: ../install_interactive.pm:213
+msgid "Erase and use entire disk"
+msgstr ""
+
+#: ../install_interactive.pm:213
+msgid "Remove Windows(TM)"
+msgstr ""
+
+#: ../install_interactive.pm:215
+msgid "You have more than one hard drive, which one do you install linux on?"
+msgstr ""
+
+#: ../install_interactive.pm:219
+#, perl-format
+msgid "ALL existing partitions and their data will be lost on drive %s"
+msgstr ""
+
+#: ../install_interactive.pm:228
+msgid "Custom disk partitioning"
+msgstr ""
+
+#: ../install_interactive.pm:232
+msgid "Use fdisk"
+msgstr ""
+
+#: ../install_interactive.pm:235
+#, perl-format
+msgid ""
+"You can now partition %s.\n"
+"When you are done, do not forget to save using `w'"
+msgstr ""
+
+#: ../install_interactive.pm:271
+msgid "I can not find any room for installing"
+msgstr ""
+
+#: ../install_interactive.pm:275
+msgid "The DrakX Partitioning wizard found the following solutions:"
+msgstr ""
+
+#: ../install_interactive.pm:281
+#, perl-format
+msgid "Partitioning failed: %s"
+msgstr ""
+
+#: ../install_interactive.pm:288
+msgid "Bringing up the network"
+msgstr ""
+
+#: ../install_interactive.pm:293
+msgid "Bringing down the network"
+msgstr ""
diff --git a/live/draklive-install/po/pt_BR.po b/live/draklive-install/po/pt_BR.po
new file mode 100644
index 000000000..f16c11e32
--- /dev/null
+++ b/live/draklive-install/po/pt_BR.po
@@ -0,0 +1,300 @@
+#: ../draklive-install:59
+msgid "Mandriva Live"
+msgstr ""
+
+#: ../draklive-install:65
+msgid "This wizard will help you to install the live distribution."
+msgstr ""
+
+#: ../draklive-install:83
+msgid "Computing total size"
+msgstr ""
+
+#: ../draklive-install:95
+msgid "Copying in progress"
+msgstr ""
+
+#: ../draklive-install:163
+msgid "Congratulations"
+msgstr ""
+
+#: ../draklive-install:163
+msgid ""
+"Please halt your computer, remove your live system, and restart your "
+"computer."
+msgstr ""
+
+#: ../draklive-install:179 ../draklive-install:407
+msgid "You need to reboot for the partition table modifications to take place"
+msgstr ""
+
+#: ../draklive-install:230
+msgid "Choose the partitions you want to format"
+msgstr ""
+
+#: ../draklive-install:232
+msgid "Check bad blocks?"
+msgstr ""
+
+#: ../draklive-install:261
+#, c-format
+msgid "Failed to check filesystem %s. Do you want to repair the errors?"
+msgstr ""
+
+#: ../draklive-install:262
+msgid ", $1), 1);"
+msgstr ""
+
+#: ../draklive-install:265
+msgid "Not enough swap space to fulfill installation, please add some"
+msgstr ""
+
+#: ../draklive-install:284
+msgid "$d/$l{$_}"
+msgstr ""
+
+#: ../draklive-install:285
+msgid "$d/.bashrc"
+msgstr ""
+
+#: ../draklive-install:317
+msgid "No partition available"
+msgstr ""
+
+#: ../draklive-install:320
+msgid "Scanning partitions to find mount points"
+msgstr ""
+
+#: ../draklive-install:327
+msgid "Choose the mount points"
+msgstr ""
+
+#: ../draklive-install:328
+msgid "Partitioning"
+msgstr ""
+
+#: ../draklive-install:361
+msgid "none"
+msgstr ""
+
+#: ../draklive-install:363
+#, c-format
+msgid "Duplicate mount point %s"
+msgstr ""
+
+#: ../draklive-install:389
+msgid "Continue anyway?"
+msgstr ""
+
+#: ../draklive-install:394
+msgid "Quit without saving"
+msgstr ""
+
+#: ../draklive-install:394
+msgid "Quit without writing the partition table?"
+msgstr ""
+
+#: ../draklive-install:400
+msgid "Do you want to save /etc/fstab modifications"
+msgstr ""
+
+#: ../draklive-install:412
+#, c-format
+msgid "You should format partition %s."
+msgstr ""
+
+#: ../draklive-install:414
+msgid ""
+", $part->{device}, $part->{mntpoint})) or return if $::isStandalone && 0; #- "
+"no, please"
+msgstr ""
+
+#: ../install_interactive.pm:22
+#, perl-format
+msgid ""
+"Some hardware on your computer needs ``proprietary'' drivers to work.\n"
+"You can find some information about them at: %s"
+msgstr ""
+
+#: ../install_interactive.pm:62
+msgid ""
+"You must have a root partition.\n"
+"For this, create a partition (or click on an existing one).\n"
+"Then choose action ``Mount point'' and set it to `/'"
+msgstr ""
+
+#: ../install_interactive.pm:67
+msgid ""
+"You do not have a swap partition.\n"
+"\n"
+"Continue anyway?"
+msgstr ""
+
+#: ../install_interactive.pm:70
+msgid "You must have a FAT partition mounted in /boot/efi"
+msgstr ""
+
+#: ../install_interactive.pm:95
+msgid "Use free space"
+msgstr ""
+
+#: ../install_interactive.pm:97
+msgid "Not enough free space to allocate new partitions"
+msgstr ""
+
+#: ../install_interactive.pm:105
+msgid "Use existing partitions"
+msgstr ""
+
+#: ../install_interactive.pm:107
+msgid "There is no existing partition to use"
+msgstr ""
+
+#: ../install_interactive.pm:114
+msgid "Use the Windows partition for loopback"
+msgstr ""
+
+#: ../install_interactive.pm:117
+msgid "Which partition do you want to use for Linux4Win?"
+msgstr ""
+
+#: ../install_interactive.pm:119
+msgid "Choose the sizes"
+msgstr ""
+
+#: ../install_interactive.pm:120
+msgid "Root partition size in MB: "
+msgstr ""
+
+#: ../install_interactive.pm:121
+msgid "Swap partition size in MB: "
+msgstr ""
+
+#: ../install_interactive.pm:130
+msgid "There is no FAT partition to use as loopback (or not enough space left)"
+msgstr ""
+
+#: ../install_interactive.pm:137
+msgid "Use the free space on the Windows partition"
+msgstr ""
+
+#: ../install_interactive.pm:139
+msgid "Which partition do you want to resize?"
+msgstr ""
+
+#: ../install_interactive.pm:153
+#, perl-format
+msgid ""
+"The FAT resizer is unable to handle your partition, \n"
+"the following error occurred: %s"
+msgstr ""
+
+#: ../install_interactive.pm:156
+msgid "Computing the size of the Windows partition"
+msgstr ""
+
+#: ../install_interactive.pm:156 ../install_interactive.pm:188
+msgid "Resizing"
+msgstr ""
+
+#: ../install_interactive.pm:163
+msgid ""
+"Your Windows partition is too fragmented. Please reboot your computer under "
+"Windows, run the ``defrag'' utility, then restart the Mandriva Linux "
+"installation."
+msgstr ""
+
+#: ../install_interactive.pm:166
+msgid ""
+"WARNING!\n"
+"\n"
+"DrakX will now resize your Windows partition. Be careful: this\n"
+"operation is dangerous. If you have not already done so, you\n"
+"first need to exit the installation, run \"chkdsk c:\" from a\n"
+"Command Prompt under Windows (beware, running graphical program\n"
+"\"scandisk\" is not enough, be sure to use \"chkdsk\" in a\n"
+"Command Prompt!), optionally run defrag, then restart the\n"
+"installation. You should also backup your data.\n"
+"When sure, press Ok."
+msgstr ""
+
+#: ../install_interactive.pm:178
+msgid "Which size do you want to keep for Windows on"
+msgstr ""
+
+#: ../install_interactive.pm:179
+#, perl-format
+msgid "partition %s"
+msgstr ""
+
+#: ../install_interactive.pm:188
+msgid "Resizing Windows partition"
+msgstr ""
+
+#: ../install_interactive.pm:193
+#, perl-format
+msgid "FAT resizing failed: %s"
+msgstr ""
+
+#: ../install_interactive.pm:196
+msgid ""
+"To ensure data integrity after resizing the partition(s), \n"
+"filesystem checks will be run on your next boot into Windows(TM)"
+msgstr ""
+
+#: ../install_interactive.pm:208
+msgid "There is no FAT partition to resize (or not enough space left)"
+msgstr ""
+
+#: ../install_interactive.pm:213
+msgid "Erase and use entire disk"
+msgstr ""
+
+#: ../install_interactive.pm:213
+msgid "Remove Windows(TM)"
+msgstr ""
+
+#: ../install_interactive.pm:215
+msgid "You have more than one hard drive, which one do you install linux on?"
+msgstr ""
+
+#: ../install_interactive.pm:219
+#, perl-format
+msgid "ALL existing partitions and their data will be lost on drive %s"
+msgstr ""
+
+#: ../install_interactive.pm:228
+msgid "Custom disk partitioning"
+msgstr ""
+
+#: ../install_interactive.pm:232
+msgid "Use fdisk"
+msgstr ""
+
+#: ../install_interactive.pm:235
+#, perl-format
+msgid ""
+"You can now partition %s.\n"
+"When you are done, do not forget to save using `w'"
+msgstr ""
+
+#: ../install_interactive.pm:271
+msgid "I can not find any room for installing"
+msgstr ""
+
+#: ../install_interactive.pm:275
+msgid "The DrakX Partitioning wizard found the following solutions:"
+msgstr ""
+
+#: ../install_interactive.pm:281
+#, perl-format
+msgid "Partitioning failed: %s"
+msgstr ""
+
+#: ../install_interactive.pm:288
+msgid "Bringing up the network"
+msgstr ""
+
+#: ../install_interactive.pm:293
+msgid "Bringing down the network"
+msgstr ""
diff --git a/live/draklive-install/po/ro.po b/live/draklive-install/po/ro.po
new file mode 100644
index 000000000..f16c11e32
--- /dev/null
+++ b/live/draklive-install/po/ro.po
@@ -0,0 +1,300 @@
+#: ../draklive-install:59
+msgid "Mandriva Live"
+msgstr ""
+
+#: ../draklive-install:65
+msgid "This wizard will help you to install the live distribution."
+msgstr ""
+
+#: ../draklive-install:83
+msgid "Computing total size"
+msgstr ""
+
+#: ../draklive-install:95
+msgid "Copying in progress"
+msgstr ""
+
+#: ../draklive-install:163
+msgid "Congratulations"
+msgstr ""
+
+#: ../draklive-install:163
+msgid ""
+"Please halt your computer, remove your live system, and restart your "
+"computer."
+msgstr ""
+
+#: ../draklive-install:179 ../draklive-install:407
+msgid "You need to reboot for the partition table modifications to take place"
+msgstr ""
+
+#: ../draklive-install:230
+msgid "Choose the partitions you want to format"
+msgstr ""
+
+#: ../draklive-install:232
+msgid "Check bad blocks?"
+msgstr ""
+
+#: ../draklive-install:261
+#, c-format
+msgid "Failed to check filesystem %s. Do you want to repair the errors?"
+msgstr ""
+
+#: ../draklive-install:262
+msgid ", $1), 1);"
+msgstr ""
+
+#: ../draklive-install:265
+msgid "Not enough swap space to fulfill installation, please add some"
+msgstr ""
+
+#: ../draklive-install:284
+msgid "$d/$l{$_}"
+msgstr ""
+
+#: ../draklive-install:285
+msgid "$d/.bashrc"
+msgstr ""
+
+#: ../draklive-install:317
+msgid "No partition available"
+msgstr ""
+
+#: ../draklive-install:320
+msgid "Scanning partitions to find mount points"
+msgstr ""
+
+#: ../draklive-install:327
+msgid "Choose the mount points"
+msgstr ""
+
+#: ../draklive-install:328
+msgid "Partitioning"
+msgstr ""
+
+#: ../draklive-install:361
+msgid "none"
+msgstr ""
+
+#: ../draklive-install:363
+#, c-format
+msgid "Duplicate mount point %s"
+msgstr ""
+
+#: ../draklive-install:389
+msgid "Continue anyway?"
+msgstr ""
+
+#: ../draklive-install:394
+msgid "Quit without saving"
+msgstr ""
+
+#: ../draklive-install:394
+msgid "Quit without writing the partition table?"
+msgstr ""
+
+#: ../draklive-install:400
+msgid "Do you want to save /etc/fstab modifications"
+msgstr ""
+
+#: ../draklive-install:412
+#, c-format
+msgid "You should format partition %s."
+msgstr ""
+
+#: ../draklive-install:414
+msgid ""
+", $part->{device}, $part->{mntpoint})) or return if $::isStandalone && 0; #- "
+"no, please"
+msgstr ""
+
+#: ../install_interactive.pm:22
+#, perl-format
+msgid ""
+"Some hardware on your computer needs ``proprietary'' drivers to work.\n"
+"You can find some information about them at: %s"
+msgstr ""
+
+#: ../install_interactive.pm:62
+msgid ""
+"You must have a root partition.\n"
+"For this, create a partition (or click on an existing one).\n"
+"Then choose action ``Mount point'' and set it to `/'"
+msgstr ""
+
+#: ../install_interactive.pm:67
+msgid ""
+"You do not have a swap partition.\n"
+"\n"
+"Continue anyway?"
+msgstr ""
+
+#: ../install_interactive.pm:70
+msgid "You must have a FAT partition mounted in /boot/efi"
+msgstr ""
+
+#: ../install_interactive.pm:95
+msgid "Use free space"
+msgstr ""
+
+#: ../install_interactive.pm:97
+msgid "Not enough free space to allocate new partitions"
+msgstr ""
+
+#: ../install_interactive.pm:105
+msgid "Use existing partitions"
+msgstr ""
+
+#: ../install_interactive.pm:107
+msgid "There is no existing partition to use"
+msgstr ""
+
+#: ../install_interactive.pm:114
+msgid "Use the Windows partition for loopback"
+msgstr ""
+
+#: ../install_interactive.pm:117
+msgid "Which partition do you want to use for Linux4Win?"
+msgstr ""
+
+#: ../install_interactive.pm:119
+msgid "Choose the sizes"
+msgstr ""
+
+#: ../install_interactive.pm:120
+msgid "Root partition size in MB: "
+msgstr ""
+
+#: ../install_interactive.pm:121
+msgid "Swap partition size in MB: "
+msgstr ""
+
+#: ../install_interactive.pm:130
+msgid "There is no FAT partition to use as loopback (or not enough space left)"
+msgstr ""
+
+#: ../install_interactive.pm:137
+msgid "Use the free space on the Windows partition"
+msgstr ""
+
+#: ../install_interactive.pm:139
+msgid "Which partition do you want to resize?"
+msgstr ""
+
+#: ../install_interactive.pm:153
+#, perl-format
+msgid ""
+"The FAT resizer is unable to handle your partition, \n"
+"the following error occurred: %s"
+msgstr ""
+
+#: ../install_interactive.pm:156
+msgid "Computing the size of the Windows partition"
+msgstr ""
+
+#: ../install_interactive.pm:156 ../install_interactive.pm:188
+msgid "Resizing"
+msgstr ""
+
+#: ../install_interactive.pm:163
+msgid ""
+"Your Windows partition is too fragmented. Please reboot your computer under "
+"Windows, run the ``defrag'' utility, then restart the Mandriva Linux "
+"installation."
+msgstr ""
+
+#: ../install_interactive.pm:166
+msgid ""
+"WARNING!\n"
+"\n"
+"DrakX will now resize your Windows partition. Be careful: this\n"
+"operation is dangerous. If you have not already done so, you\n"
+"first need to exit the installation, run \"chkdsk c:\" from a\n"
+"Command Prompt under Windows (beware, running graphical program\n"
+"\"scandisk\" is not enough, be sure to use \"chkdsk\" in a\n"
+"Command Prompt!), optionally run defrag, then restart the\n"
+"installation. You should also backup your data.\n"
+"When sure, press Ok."
+msgstr ""
+
+#: ../install_interactive.pm:178
+msgid "Which size do you want to keep for Windows on"
+msgstr ""
+
+#: ../install_interactive.pm:179
+#, perl-format
+msgid "partition %s"
+msgstr ""
+
+#: ../install_interactive.pm:188
+msgid "Resizing Windows partition"
+msgstr ""
+
+#: ../install_interactive.pm:193
+#, perl-format
+msgid "FAT resizing failed: %s"
+msgstr ""
+
+#: ../install_interactive.pm:196
+msgid ""
+"To ensure data integrity after resizing the partition(s), \n"
+"filesystem checks will be run on your next boot into Windows(TM)"
+msgstr ""
+
+#: ../install_interactive.pm:208
+msgid "There is no FAT partition to resize (or not enough space left)"
+msgstr ""
+
+#: ../install_interactive.pm:213
+msgid "Erase and use entire disk"
+msgstr ""
+
+#: ../install_interactive.pm:213
+msgid "Remove Windows(TM)"
+msgstr ""
+
+#: ../install_interactive.pm:215
+msgid "You have more than one hard drive, which one do you install linux on?"
+msgstr ""
+
+#: ../install_interactive.pm:219
+#, perl-format
+msgid "ALL existing partitions and their data will be lost on drive %s"
+msgstr ""
+
+#: ../install_interactive.pm:228
+msgid "Custom disk partitioning"
+msgstr ""
+
+#: ../install_interactive.pm:232
+msgid "Use fdisk"
+msgstr ""
+
+#: ../install_interactive.pm:235
+#, perl-format
+msgid ""
+"You can now partition %s.\n"
+"When you are done, do not forget to save using `w'"
+msgstr ""
+
+#: ../install_interactive.pm:271
+msgid "I can not find any room for installing"
+msgstr ""
+
+#: ../install_interactive.pm:275
+msgid "The DrakX Partitioning wizard found the following solutions:"
+msgstr ""
+
+#: ../install_interactive.pm:281
+#, perl-format
+msgid "Partitioning failed: %s"
+msgstr ""
+
+#: ../install_interactive.pm:288
+msgid "Bringing up the network"
+msgstr ""
+
+#: ../install_interactive.pm:293
+msgid "Bringing down the network"
+msgstr ""
diff --git a/live/draklive-install/po/ru.po b/live/draklive-install/po/ru.po
new file mode 100644
index 000000000..f16c11e32
--- /dev/null
+++ b/live/draklive-install/po/ru.po
@@ -0,0 +1,300 @@
+#: ../draklive-install:59
+msgid "Mandriva Live"
+msgstr ""
+
+#: ../draklive-install:65
+msgid "This wizard will help you to install the live distribution."
+msgstr ""
+
+#: ../draklive-install:83
+msgid "Computing total size"
+msgstr ""
+
+#: ../draklive-install:95
+msgid "Copying in progress"
+msgstr ""
+
+#: ../draklive-install:163
+msgid "Congratulations"
+msgstr ""
+
+#: ../draklive-install:163
+msgid ""
+"Please halt your computer, remove your live system, and restart your "
+"computer."
+msgstr ""
+
+#: ../draklive-install:179 ../draklive-install:407
+msgid "You need to reboot for the partition table modifications to take place"
+msgstr ""
+
+#: ../draklive-install:230
+msgid "Choose the partitions you want to format"
+msgstr ""
+
+#: ../draklive-install:232
+msgid "Check bad blocks?"
+msgstr ""
+
+#: ../draklive-install:261
+#, c-format
+msgid "Failed to check filesystem %s. Do you want to repair the errors?"
+msgstr ""
+
+#: ../draklive-install:262
+msgid ", $1), 1);"
+msgstr ""
+
+#: ../draklive-install:265
+msgid "Not enough swap space to fulfill installation, please add some"
+msgstr ""
+
+#: ../draklive-install:284
+msgid "$d/$l{$_}"
+msgstr ""
+
+#: ../draklive-install:285
+msgid "$d/.bashrc"
+msgstr ""
+
+#: ../draklive-install:317
+msgid "No partition available"
+msgstr ""
+
+#: ../draklive-install:320
+msgid "Scanning partitions to find mount points"
+msgstr ""
+
+#: ../draklive-install:327
+msgid "Choose the mount points"
+msgstr ""
+
+#: ../draklive-install:328
+msgid "Partitioning"
+msgstr ""
+
+#: ../draklive-install:361
+msgid "none"
+msgstr ""
+
+#: ../draklive-install:363
+#, c-format
+msgid "Duplicate mount point %s"
+msgstr ""
+
+#: ../draklive-install:389
+msgid "Continue anyway?"
+msgstr ""
+
+#: ../draklive-install:394
+msgid "Quit without saving"
+msgstr ""
+
+#: ../draklive-install:394
+msgid "Quit without writing the partition table?"
+msgstr ""
+
+#: ../draklive-install:400
+msgid "Do you want to save /etc/fstab modifications"
+msgstr ""
+
+#: ../draklive-install:412
+#, c-format
+msgid "You should format partition %s."
+msgstr ""
+
+#: ../draklive-install:414
+msgid ""
+", $part->{device}, $part->{mntpoint})) or return if $::isStandalone && 0; #- "
+"no, please"
+msgstr ""
+
+#: ../install_interactive.pm:22
+#, perl-format
+msgid ""
+"Some hardware on your computer needs ``proprietary'' drivers to work.\n"
+"You can find some information about them at: %s"
+msgstr ""
+
+#: ../install_interactive.pm:62
+msgid ""
+"You must have a root partition.\n"
+"For this, create a partition (or click on an existing one).\n"
+"Then choose action ``Mount point'' and set it to `/'"
+msgstr ""
+
+#: ../install_interactive.pm:67
+msgid ""
+"You do not have a swap partition.\n"
+"\n"
+"Continue anyway?"
+msgstr ""
+
+#: ../install_interactive.pm:70
+msgid "You must have a FAT partition mounted in /boot/efi"
+msgstr ""
+
+#: ../install_interactive.pm:95
+msgid "Use free space"
+msgstr ""
+
+#: ../install_interactive.pm:97
+msgid "Not enough free space to allocate new partitions"
+msgstr ""
+
+#: ../install_interactive.pm:105
+msgid "Use existing partitions"
+msgstr ""
+
+#: ../install_interactive.pm:107
+msgid "There is no existing partition to use"
+msgstr ""
+
+#: ../install_interactive.pm:114
+msgid "Use the Windows partition for loopback"
+msgstr ""
+
+#: ../install_interactive.pm:117
+msgid "Which partition do you want to use for Linux4Win?"
+msgstr ""
+
+#: ../install_interactive.pm:119
+msgid "Choose the sizes"
+msgstr ""
+
+#: ../install_interactive.pm:120
+msgid "Root partition size in MB: "
+msgstr ""
+
+#: ../install_interactive.pm:121
+msgid "Swap partition size in MB: "
+msgstr ""
+
+#: ../install_interactive.pm:130
+msgid "There is no FAT partition to use as loopback (or not enough space left)"
+msgstr ""
+
+#: ../install_interactive.pm:137
+msgid "Use the free space on the Windows partition"
+msgstr ""
+
+#: ../install_interactive.pm:139
+msgid "Which partition do you want to resize?"
+msgstr ""
+
+#: ../install_interactive.pm:153
+#, perl-format
+msgid ""
+"The FAT resizer is unable to handle your partition, \n"
+"the following error occurred: %s"
+msgstr ""
+
+#: ../install_interactive.pm:156
+msgid "Computing the size of the Windows partition"
+msgstr ""
+
+#: ../install_interactive.pm:156 ../install_interactive.pm:188
+msgid "Resizing"
+msgstr ""
+
+#: ../install_interactive.pm:163
+msgid ""
+"Your Windows partition is too fragmented. Please reboot your computer under "
+"Windows, run the ``defrag'' utility, then restart the Mandriva Linux "
+"installation."
+msgstr ""
+
+#: ../install_interactive.pm:166
+msgid ""
+"WARNING!\n"
+"\n"
+"DrakX will now resize your Windows partition. Be careful: this\n"
+"operation is dangerous. If you have not already done so, you\n"
+"first need to exit the installation, run \"chkdsk c:\" from a\n"
+"Command Prompt under Windows (beware, running graphical program\n"
+"\"scandisk\" is not enough, be sure to use \"chkdsk\" in a\n"
+"Command Prompt!), optionally run defrag, then restart the\n"
+"installation. You should also backup your data.\n"
+"When sure, press Ok."
+msgstr ""
+
+#: ../install_interactive.pm:178
+msgid "Which size do you want to keep for Windows on"
+msgstr ""
+
+#: ../install_interactive.pm:179
+#, perl-format
+msgid "partition %s"
+msgstr ""
+
+#: ../install_interactive.pm:188
+msgid "Resizing Windows partition"
+msgstr ""
+
+#: ../install_interactive.pm:193
+#, perl-format
+msgid "FAT resizing failed: %s"
+msgstr ""
+
+#: ../install_interactive.pm:196
+msgid ""
+"To ensure data integrity after resizing the partition(s), \n"
+"filesystem checks will be run on your next boot into Windows(TM)"
+msgstr ""
+
+#: ../install_interactive.pm:208
+msgid "There is no FAT partition to resize (or not enough space left)"
+msgstr ""
+
+#: ../install_interactive.pm:213
+msgid "Erase and use entire disk"
+msgstr ""
+
+#: ../install_interactive.pm:213
+msgid "Remove Windows(TM)"
+msgstr ""
+
+#: ../install_interactive.pm:215
+msgid "You have more than one hard drive, which one do you install linux on?"
+msgstr ""
+
+#: ../install_interactive.pm:219
+#, perl-format
+msgid "ALL existing partitions and their data will be lost on drive %s"
+msgstr ""
+
+#: ../install_interactive.pm:228
+msgid "Custom disk partitioning"
+msgstr ""
+
+#: ../install_interactive.pm:232
+msgid "Use fdisk"
+msgstr ""
+
+#: ../install_interactive.pm:235
+#, perl-format
+msgid ""
+"You can now partition %s.\n"
+"When you are done, do not forget to save using `w'"
+msgstr ""
+
+#: ../install_interactive.pm:271
+msgid "I can not find any room for installing"
+msgstr ""
+
+#: ../install_interactive.pm:275
+msgid "The DrakX Partitioning wizard found the following solutions:"
+msgstr ""
+
+#: ../install_interactive.pm:281
+#, perl-format
+msgid "Partitioning failed: %s"
+msgstr ""
+
+#: ../install_interactive.pm:288
+msgid "Bringing up the network"
+msgstr ""
+
+#: ../install_interactive.pm:293
+msgid "Bringing down the network"
+msgstr ""
diff --git a/live/draklive-install/po/sc.po b/live/draklive-install/po/sc.po
new file mode 100644
index 000000000..f16c11e32
--- /dev/null
+++ b/live/draklive-install/po/sc.po
@@ -0,0 +1,300 @@
+#: ../draklive-install:59
+msgid "Mandriva Live"
+msgstr ""
+
+#: ../draklive-install:65
+msgid "This wizard will help you to install the live distribution."
+msgstr ""
+
+#: ../draklive-install:83
+msgid "Computing total size"
+msgstr ""
+
+#: ../draklive-install:95
+msgid "Copying in progress"
+msgstr ""
+
+#: ../draklive-install:163
+msgid "Congratulations"
+msgstr ""
+
+#: ../draklive-install:163
+msgid ""
+"Please halt your computer, remove your live system, and restart your "
+"computer."
+msgstr ""
+
+#: ../draklive-install:179 ../draklive-install:407
+msgid "You need to reboot for the partition table modifications to take place"
+msgstr ""
+
+#: ../draklive-install:230
+msgid "Choose the partitions you want to format"
+msgstr ""
+
+#: ../draklive-install:232
+msgid "Check bad blocks?"
+msgstr ""
+
+#: ../draklive-install:261
+#, c-format
+msgid "Failed to check filesystem %s. Do you want to repair the errors?"
+msgstr ""
+
+#: ../draklive-install:262
+msgid ", $1), 1);"
+msgstr ""
+
+#: ../draklive-install:265
+msgid "Not enough swap space to fulfill installation, please add some"
+msgstr ""
+
+#: ../draklive-install:284
+msgid "$d/$l{$_}"
+msgstr ""
+
+#: ../draklive-install:285
+msgid "$d/.bashrc"
+msgstr ""
+
+#: ../draklive-install:317
+msgid "No partition available"
+msgstr ""
+
+#: ../draklive-install:320
+msgid "Scanning partitions to find mount points"
+msgstr ""
+
+#: ../draklive-install:327
+msgid "Choose the mount points"
+msgstr ""
+
+#: ../draklive-install:328
+msgid "Partitioning"
+msgstr ""
+
+#: ../draklive-install:361
+msgid "none"
+msgstr ""
+
+#: ../draklive-install:363
+#, c-format
+msgid "Duplicate mount point %s"
+msgstr ""
+
+#: ../draklive-install:389
+msgid "Continue anyway?"
+msgstr ""
+
+#: ../draklive-install:394
+msgid "Quit without saving"
+msgstr ""
+
+#: ../draklive-install:394
+msgid "Quit without writing the partition table?"
+msgstr ""
+
+#: ../draklive-install:400
+msgid "Do you want to save /etc/fstab modifications"
+msgstr ""
+
+#: ../draklive-install:412
+#, c-format
+msgid "You should format partition %s."
+msgstr ""
+
+#: ../draklive-install:414
+msgid ""
+", $part->{device}, $part->{mntpoint})) or return if $::isStandalone && 0; #- "
+"no, please"
+msgstr ""
+
+#: ../install_interactive.pm:22
+#, perl-format
+msgid ""
+"Some hardware on your computer needs ``proprietary'' drivers to work.\n"
+"You can find some information about them at: %s"
+msgstr ""
+
+#: ../install_interactive.pm:62
+msgid ""
+"You must have a root partition.\n"
+"For this, create a partition (or click on an existing one).\n"
+"Then choose action ``Mount point'' and set it to `/'"
+msgstr ""
+
+#: ../install_interactive.pm:67
+msgid ""
+"You do not have a swap partition.\n"
+"\n"
+"Continue anyway?"
+msgstr ""
+
+#: ../install_interactive.pm:70
+msgid "You must have a FAT partition mounted in /boot/efi"
+msgstr ""
+
+#: ../install_interactive.pm:95
+msgid "Use free space"
+msgstr ""
+
+#: ../install_interactive.pm:97
+msgid "Not enough free space to allocate new partitions"
+msgstr ""
+
+#: ../install_interactive.pm:105
+msgid "Use existing partitions"
+msgstr ""
+
+#: ../install_interactive.pm:107
+msgid "There is no existing partition to use"
+msgstr ""
+
+#: ../install_interactive.pm:114
+msgid "Use the Windows partition for loopback"
+msgstr ""
+
+#: ../install_interactive.pm:117
+msgid "Which partition do you want to use for Linux4Win?"
+msgstr ""
+
+#: ../install_interactive.pm:119
+msgid "Choose the sizes"
+msgstr ""
+
+#: ../install_interactive.pm:120
+msgid "Root partition size in MB: "
+msgstr ""
+
+#: ../install_interactive.pm:121
+msgid "Swap partition size in MB: "
+msgstr ""
+
+#: ../install_interactive.pm:130
+msgid "There is no FAT partition to use as loopback (or not enough space left)"
+msgstr ""
+
+#: ../install_interactive.pm:137
+msgid "Use the free space on the Windows partition"
+msgstr ""
+
+#: ../install_interactive.pm:139
+msgid "Which partition do you want to resize?"
+msgstr ""
+
+#: ../install_interactive.pm:153
+#, perl-format
+msgid ""
+"The FAT resizer is unable to handle your partition, \n"
+"the following error occurred: %s"
+msgstr ""
+
+#: ../install_interactive.pm:156
+msgid "Computing the size of the Windows partition"
+msgstr ""
+
+#: ../install_interactive.pm:156 ../install_interactive.pm:188
+msgid "Resizing"
+msgstr ""
+
+#: ../install_interactive.pm:163
+msgid ""
+"Your Windows partition is too fragmented. Please reboot your computer under "
+"Windows, run the ``defrag'' utility, then restart the Mandriva Linux "
+"installation."
+msgstr ""
+
+#: ../install_interactive.pm:166
+msgid ""
+"WARNING!\n"
+"\n"
+"DrakX will now resize your Windows partition. Be careful: this\n"
+"operation is dangerous. If you have not already done so, you\n"
+"first need to exit the installation, run \"chkdsk c:\" from a\n"
+"Command Prompt under Windows (beware, running graphical program\n"
+"\"scandisk\" is not enough, be sure to use \"chkdsk\" in a\n"
+"Command Prompt!), optionally run defrag, then restart the\n"
+"installation. You should also backup your data.\n"
+"When sure, press Ok."
+msgstr ""
+
+#: ../install_interactive.pm:178
+msgid "Which size do you want to keep for Windows on"
+msgstr ""
+
+#: ../install_interactive.pm:179
+#, perl-format
+msgid "partition %s"
+msgstr ""
+
+#: ../install_interactive.pm:188
+msgid "Resizing Windows partition"
+msgstr ""
+
+#: ../install_interactive.pm:193
+#, perl-format
+msgid "FAT resizing failed: %s"
+msgstr ""
+
+#: ../install_interactive.pm:196
+msgid ""
+"To ensure data integrity after resizing the partition(s), \n"
+"filesystem checks will be run on your next boot into Windows(TM)"
+msgstr ""
+
+#: ../install_interactive.pm:208
+msgid "There is no FAT partition to resize (or not enough space left)"
+msgstr ""
+
+#: ../install_interactive.pm:213
+msgid "Erase and use entire disk"
+msgstr ""
+
+#: ../install_interactive.pm:213
+msgid "Remove Windows(TM)"
+msgstr ""
+
+#: ../install_interactive.pm:215
+msgid "You have more than one hard drive, which one do you install linux on?"
+msgstr ""
+
+#: ../install_interactive.pm:219
+#, perl-format
+msgid "ALL existing partitions and their data will be lost on drive %s"
+msgstr ""
+
+#: ../install_interactive.pm:228
+msgid "Custom disk partitioning"
+msgstr ""
+
+#: ../install_interactive.pm:232
+msgid "Use fdisk"
+msgstr ""
+
+#: ../install_interactive.pm:235
+#, perl-format
+msgid ""
+"You can now partition %s.\n"
+"When you are done, do not forget to save using `w'"
+msgstr ""
+
+#: ../install_interactive.pm:271
+msgid "I can not find any room for installing"
+msgstr ""
+
+#: ../install_interactive.pm:275
+msgid "The DrakX Partitioning wizard found the following solutions:"
+msgstr ""
+
+#: ../install_interactive.pm:281
+#, perl-format
+msgid "Partitioning failed: %s"
+msgstr ""
+
+#: ../install_interactive.pm:288
+msgid "Bringing up the network"
+msgstr ""
+
+#: ../install_interactive.pm:293
+msgid "Bringing down the network"
+msgstr ""
diff --git a/live/draklive-install/po/sk.po b/live/draklive-install/po/sk.po
new file mode 100644
index 000000000..f16c11e32
--- /dev/null
+++ b/live/draklive-install/po/sk.po
@@ -0,0 +1,300 @@
+#: ../draklive-install:59
+msgid "Mandriva Live"
+msgstr ""
+
+#: ../draklive-install:65
+msgid "This wizard will help you to install the live distribution."
+msgstr ""
+
+#: ../draklive-install:83
+msgid "Computing total size"
+msgstr ""
+
+#: ../draklive-install:95
+msgid "Copying in progress"
+msgstr ""
+
+#: ../draklive-install:163
+msgid "Congratulations"
+msgstr ""
+
+#: ../draklive-install:163
+msgid ""
+"Please halt your computer, remove your live system, and restart your "
+"computer."
+msgstr ""
+
+#: ../draklive-install:179 ../draklive-install:407
+msgid "You need to reboot for the partition table modifications to take place"
+msgstr ""
+
+#: ../draklive-install:230
+msgid "Choose the partitions you want to format"
+msgstr ""
+
+#: ../draklive-install:232
+msgid "Check bad blocks?"
+msgstr ""
+
+#: ../draklive-install:261
+#, c-format
+msgid "Failed to check filesystem %s. Do you want to repair the errors?"
+msgstr ""
+
+#: ../draklive-install:262
+msgid ", $1), 1);"
+msgstr ""
+
+#: ../draklive-install:265
+msgid "Not enough swap space to fulfill installation, please add some"
+msgstr ""
+
+#: ../draklive-install:284
+msgid "$d/$l{$_}"
+msgstr ""
+
+#: ../draklive-install:285
+msgid "$d/.bashrc"
+msgstr ""
+
+#: ../draklive-install:317
+msgid "No partition available"
+msgstr ""
+
+#: ../draklive-install:320
+msgid "Scanning partitions to find mount points"
+msgstr ""
+
+#: ../draklive-install:327
+msgid "Choose the mount points"
+msgstr ""
+
+#: ../draklive-install:328
+msgid "Partitioning"
+msgstr ""
+
+#: ../draklive-install:361
+msgid "none"
+msgstr ""
+
+#: ../draklive-install:363
+#, c-format
+msgid "Duplicate mount point %s"
+msgstr ""
+
+#: ../draklive-install:389
+msgid "Continue anyway?"
+msgstr ""
+
+#: ../draklive-install:394
+msgid "Quit without saving"
+msgstr ""
+
+#: ../draklive-install:394
+msgid "Quit without writing the partition table?"
+msgstr ""
+
+#: ../draklive-install:400
+msgid "Do you want to save /etc/fstab modifications"
+msgstr ""
+
+#: ../draklive-install:412
+#, c-format
+msgid "You should format partition %s."
+msgstr ""
+
+#: ../draklive-install:414
+msgid ""
+", $part->{device}, $part->{mntpoint})) or return if $::isStandalone && 0; #- "
+"no, please"
+msgstr ""
+
+#: ../install_interactive.pm:22
+#, perl-format
+msgid ""
+"Some hardware on your computer needs ``proprietary'' drivers to work.\n"
+"You can find some information about them at: %s"
+msgstr ""
+
+#: ../install_interactive.pm:62
+msgid ""
+"You must have a root partition.\n"
+"For this, create a partition (or click on an existing one).\n"
+"Then choose action ``Mount point'' and set it to `/'"
+msgstr ""
+
+#: ../install_interactive.pm:67
+msgid ""
+"You do not have a swap partition.\n"
+"\n"
+"Continue anyway?"
+msgstr ""
+
+#: ../install_interactive.pm:70
+msgid "You must have a FAT partition mounted in /boot/efi"
+msgstr ""
+
+#: ../install_interactive.pm:95
+msgid "Use free space"
+msgstr ""
+
+#: ../install_interactive.pm:97
+msgid "Not enough free space to allocate new partitions"
+msgstr ""
+
+#: ../install_interactive.pm:105
+msgid "Use existing partitions"
+msgstr ""
+
+#: ../install_interactive.pm:107
+msgid "There is no existing partition to use"
+msgstr ""
+
+#: ../install_interactive.pm:114
+msgid "Use the Windows partition for loopback"
+msgstr ""
+
+#: ../install_interactive.pm:117
+msgid "Which partition do you want to use for Linux4Win?"
+msgstr ""
+
+#: ../install_interactive.pm:119
+msgid "Choose the sizes"
+msgstr ""
+
+#: ../install_interactive.pm:120
+msgid "Root partition size in MB: "
+msgstr ""
+
+#: ../install_interactive.pm:121
+msgid "Swap partition size in MB: "
+msgstr ""
+
+#: ../install_interactive.pm:130
+msgid "There is no FAT partition to use as loopback (or not enough space left)"
+msgstr ""
+
+#: ../install_interactive.pm:137
+msgid "Use the free space on the Windows partition"
+msgstr ""
+
+#: ../install_interactive.pm:139
+msgid "Which partition do you want to resize?"
+msgstr ""
+
+#: ../install_interactive.pm:153
+#, perl-format
+msgid ""
+"The FAT resizer is unable to handle your partition, \n"
+"the following error occurred: %s"
+msgstr ""
+
+#: ../install_interactive.pm:156
+msgid "Computing the size of the Windows partition"
+msgstr ""
+
+#: ../install_interactive.pm:156 ../install_interactive.pm:188
+msgid "Resizing"
+msgstr ""
+
+#: ../install_interactive.pm:163
+msgid ""
+"Your Windows partition is too fragmented. Please reboot your computer under "
+"Windows, run the ``defrag'' utility, then restart the Mandriva Linux "
+"installation."
+msgstr ""
+
+#: ../install_interactive.pm:166
+msgid ""
+"WARNING!\n"
+"\n"
+"DrakX will now resize your Windows partition. Be careful: this\n"
+"operation is dangerous. If you have not already done so, you\n"
+"first need to exit the installation, run \"chkdsk c:\" from a\n"
+"Command Prompt under Windows (beware, running graphical program\n"
+"\"scandisk\" is not enough, be sure to use \"chkdsk\" in a\n"
+"Command Prompt!), optionally run defrag, then restart the\n"
+"installation. You should also backup your data.\n"
+"When sure, press Ok."
+msgstr ""
+
+#: ../install_interactive.pm:178
+msgid "Which size do you want to keep for Windows on"
+msgstr ""
+
+#: ../install_interactive.pm:179
+#, perl-format
+msgid "partition %s"
+msgstr ""
+
+#: ../install_interactive.pm:188
+msgid "Resizing Windows partition"
+msgstr ""
+
+#: ../install_interactive.pm:193
+#, perl-format
+msgid "FAT resizing failed: %s"
+msgstr ""
+
+#: ../install_interactive.pm:196
+msgid ""
+"To ensure data integrity after resizing the partition(s), \n"
+"filesystem checks will be run on your next boot into Windows(TM)"
+msgstr ""
+
+#: ../install_interactive.pm:208
+msgid "There is no FAT partition to resize (or not enough space left)"
+msgstr ""
+
+#: ../install_interactive.pm:213
+msgid "Erase and use entire disk"
+msgstr ""
+
+#: ../install_interactive.pm:213
+msgid "Remove Windows(TM)"
+msgstr ""
+
+#: ../install_interactive.pm:215
+msgid "You have more than one hard drive, which one do you install linux on?"
+msgstr ""
+
+#: ../install_interactive.pm:219
+#, perl-format
+msgid "ALL existing partitions and their data will be lost on drive %s"
+msgstr ""
+
+#: ../install_interactive.pm:228
+msgid "Custom disk partitioning"
+msgstr ""
+
+#: ../install_interactive.pm:232
+msgid "Use fdisk"
+msgstr ""
+
+#: ../install_interactive.pm:235
+#, perl-format
+msgid ""
+"You can now partition %s.\n"
+"When you are done, do not forget to save using `w'"
+msgstr ""
+
+#: ../install_interactive.pm:271
+msgid "I can not find any room for installing"
+msgstr ""
+
+#: ../install_interactive.pm:275
+msgid "The DrakX Partitioning wizard found the following solutions:"
+msgstr ""
+
+#: ../install_interactive.pm:281
+#, perl-format
+msgid "Partitioning failed: %s"
+msgstr ""
+
+#: ../install_interactive.pm:288
+msgid "Bringing up the network"
+msgstr ""
+
+#: ../install_interactive.pm:293
+msgid "Bringing down the network"
+msgstr ""
diff --git a/live/draklive-install/po/sl.po b/live/draklive-install/po/sl.po
new file mode 100644
index 000000000..f16c11e32
--- /dev/null
+++ b/