package fsedit; use diagnostics; use strict; #-###################################################################################### #- misc imports #-###################################################################################### use common qw(:common :constant :functional :file); use partition_table qw(:types); use partition_table_raw; use detect_devices; use Data::Dumper; use fsedit; use devices; use fs; use log; #-##################################################################################### #- Globals #-##################################################################################### my @suggestions = ( { mntpoint => "/boot", size => 16 << 11, type => 0x83, maxsize => 30 << 11 }, { mntpoint => "/", size => 50 << 11, type => 0x83, ratio => 1, maxsize => 300 << 11 }, { mntpoint => "swap", size => 30 << 11, type => 0x82, ratio => 1, maxsize => 250 << 11 }, { mntpoint => "/usr", size => 200 << 11, type => 0x83, ratio => 6, maxsize =>1500 << 11 }, { mntpoint => "/home", size => 50 << 11, type => 0x83, ratio => 3 }, { mntpoint => "/var", size => 200 << 11, type => 0x83, ratio => 1, maxsize =>1000 << 11 }, { mntpoint => "/tmp", size => 50 << 11, type => 0x83, ratio => 3, maxsize => 500 << 11 }, { mntpoint => "/mnt/iso", size => 700 << 11, type => 0x83 }, ); my @suggestions_mntpoints = qw(/mnt/dos); my @partitions_signatures = ( [ 0x83, 0x438, "\x53\xEF" ], [ 0x82, 4086, "SWAP-SPACE" ], [ 0xc, 0x1FE, "\x55\xAA", 0x52, "FAT32" ], [ 0x6, 0x1FE, "\x55\xAA", 0x36, "FAT" ], ); sub typeOfPart($) { typeFromMagic(devices::make($_[0]), @partitions_signatures) } #-###################################################################################### #- Functions #-###################################################################################### sub hds($$) { my ($drives, $flags) = @_; my @hds; my $rc; foreach (@$drives) { my $file = devices::make($_->{device}); my $hd = partition_table_raw::get_geometry($file) or log::l("An error occurred while getting the geometry of block device $file: $!"), next; $hd = { (%$_, %$hd) }; $hd->{file} = $file; $hd->{prefix} = $hd->{device}; # for RAID arrays of format c0d0p1 $hd->{prefix} .= "p" if $hd->{prefix} =~ m,(rd|ida)/,; eval { partition_table::read($hd, $flags->{clearall}) }; if ($@) { cdie($@) unless $flags->{eraseBadPartitions}; partition_table_raw::zero_MBR($hd); } push @hds, $hd; } [ @hds ]; } sub readProcPartitions { my ($hds) = @_; my @parts; foreach (cat_("/proc/partitions")) { my (undef, undef, $size, $device) = split; next if $size eq "1"; #- extended partitions foreach (@$hds) { push @parts, { start => 0, size => $size * 2, device => $device, type => typeOfPart($device), rootDevice => $_->{device} } if $device =~ /^$_->{device}./; } } @parts; } sub get_fstab(@) { map { partition_table::get_normal_parts($_) } @_; } sub free_space(@) { sum map { $_->{size} } map { partition_table::get_holes($_) } @_; } sub hasRAID { my $b = 0; map { $b ||= isRAID($_) } get_fstab(@_); $b; } sub get_root($) { my ($fstab) = @_; $_->{mntpoint} eq "/" and return $_ foreach @$fstab; undef; } sub get_root_ { get_root([ get_fstab(@{$_[0]}) ]) } sub computeSize($$$$) { my ($part, $best, $hds, $suggestions) = @_; my $max = $part->{maxsize} || $part->{size}; my $tot_ratios = sum(map { $_->{ratio} } grep { !has_mntpoint($_->{mntpoint}, $hds) } @$suggestions); min($max, $best->{maxsize} || $max, $best->{size} + free_space(@$hds) * ($tot_ratios && $best->{ratio} / $tot_ratios)); } sub suggest_part($$$;$) { my ($hd, $part, $hds, $suggestions) = @_; $suggestions ||= \@suggestions; my $has_swap = grep { isSwap($_) } get_fstab(@$hds); my ($best, $second) = grep { !$_->{maxsize} || $part->{size} <= $_->{maxsize} } grep { $_->{size} <= ($part->{maxsize} || $part->{size}) } grep { !has_mntpoint($_->{mntpoint}, $hds) || isSwap($_) && !$has_swap } grep { !$part->{type} || $part->{type} == $_->{type} } @$suggestions or return; $best = $second if $best->{mntpoint} eq '/boot' && $part->{start} + $best->{size} > 1024 * partition_table::cylinder_size($hd); #- if the empty slot is beyond the 1024th cylinder, no use having /boot defined $best or return; #- sorry no suggestion :( $part->{mntpoint} = $best->{mntpoint}; $part->{type} = $best->{type}; $part->{size} = computeSize($part, $best, $hds, $suggestions); 1; } sub suggestions_mntpoint($) { my ($hds) = @_; sort grep { !/swap/ && !has_mntpoint($_, $hds) } (@suggestions_mntpoints, map { $_->{mntpoint} } @suggestions); } #-sub partitionDrives { #- #- my $cmd = "/sbin/fdisk"; #- -x $cmd or $cmd = "/usr/bin/fdisk"; #- #- my $drives = findDrivesPresent() or die "You don't have any hard drives available! You probably forgot to configure a SCSI controller."; #- #- foreach (@$drives) { #- my $text = "/dev/" . $_->{device}; #- $text .= " - SCSI ID " . $_->{id} if $_->{device} =~ /^sd/; #- $text .= " - Model " . $_->{info}; #- $text .= " array" if $_->{device} =~ /^c.d/; #- #- #- truncate at 50 columns for now #- $text = substr $text, 0, 50; #- } #- #-TODO TODO #-} sub has_mntpoint($$) { my ($mntpoint, $hds) = @_; scalar grep { $mntpoint eq $_->{mntpoint} } get_fstab(@$hds); } #- do this before modifying $part->{mntpoint} #- $part->{mntpoint} should not be used here, use $mntpoint instead sub check_mntpoint { my ($mntpoint, $hd, $part, $hds) = @_; $mntpoint eq '' || isSwap($part) || isRAID($part) and return; local $_ = $mntpoint; m|^/| or die _("Mount points must begin with a leading /"); #- m|(.)/$| and die "The mount point $_ is illegal.\nMount points may not end with a /"; has_mntpoint($mntpoint, $hds) and die _("There is already a partition with mount point %s", $mntpoint); if ($part->{start} + $part->{size} > 1024 * partition_table::cylinder_size($hd)) { die "/boot ending on cylinder > 1024" if $mntpoint eq "/boot"; die "/ ending on cylinder > 1024" if $mntpoint eq "/" && !has_mntpoint("/boot", $hds); } } sub add($$$;$) { my ($hd, $part, $hds, $options) = @_; isSwap($part) ? ($part->{mntpoint} = 'swap') : $options->{force} || check_mntpoint($part->{mntpoint}, $hd, $part, $hds); delete $part->{maxsize}; partition_table::add($hd, $part, $options->{primaryOrExtended}); } sub allocatePartitions($$) { my ($hds, $to_add) = @_; foreach my $hd (@$hds) { foreach (partition_table::get_holes($hd)) { my ($start, $size) = @$_{"start", "size"}; my $part; while (suggest_part($hd, $part = { start => $start, size => 0, maxsize => $size }, $hds, $to_add)) { add($hd, $part, $hds); $start = $part->{start} + $part->{size}; $size -= $part->{size}; } $start = $_->{start} + $_->{size}; } } } sub auto_allocate($;$) { my ($hds, $suggestions) = @_; allocatePartitions($hds, $suggestions || \@suggestions); map { partition_table::assign_device_numbers($_) } @$hds; } sub undo_prepare($) { my ($hds) = @_; $Data::Dumper::Purity = 1; foreach (@$hds) { my @h = @{$_}{@partition_table::fields2save}; push @{$_->{undo}}, Data::Dumper->Dump([\@h], ['$h']); } } sub undo_forget($) { my ($hds) = @_; pop @{$_->{undo}} foreach @$hds; } sub undo($) { my ($hds) = @_; foreach (@$hds) { my $h; eval pop @{$_->{undo}} || next; @{$_}{@partition_table::fields2save} = @$h; $_->{isDirty} = $_->{needKernelReread} = 1; } } sub move { my ($hd, $part, $hd2, $sector2) = @_; my $part1 = { %$part }; my $part2 = { %$part }; $part2->{start} = $sector2; $part2->{size} += partition_table::cylinder_size($hd2) - 1; partition_table::remove($hd, $part); { local ($part2->{notFormatted}, $part2->{isFormatted}); #- do not allow partition::add to change this partition_table::add($hd2, $part2); } return if $part2->{notFormatted} && !$part2->{isFormatted} || $::testing; local (*F, *G); sysopen F, $hd->{file}, 0 or die ''; sysopen G, $hd2->{file}, 2 or die _("Error opening %s for writing: %s", $hd2->{file}, "$!"); my $base = $part1->{start}; my $base2 = $part2->{start}; my $step = 10; if ($hd eq $hd2) { $base == $base2 and return; $step = min($step, abs($base2 - $base)); if ($base < $base2) { $base += $part1->{size} - $step; $base2 += $part1->{size} - $step; $step = -$step; } } my $f = sub { $base < 0 and $base2 += -$base, $base = 0; $base2 < 0 and $base += -$base2, $base2 = 0; c::lseek_sector(fileno(F), $base, 0) or die "seeking to sector $base failed on drive $hd->{device}"; c::lseek_sector(fileno(G), $base2, 0) or die "seeking to sector $base2 failed on drive $hd2->{device}"; my $buf; sysread F, $buf, $SECTORSIZE * abs($_[0]) or die ''; syswrite G, $buf; }; for (my $i = 0; $i < $part1->{size} / abs($step); $i++, $base += $step, $base2 += $step) { print "$base $base2\n"; &$f($step); } if (my $v = ($part1->{size} % abs($step)) * sign($step)) { $base += $v; $base2 += $v; &$f($v); } } sub rescuept($) { my ($hd) = @_; my ($ext, @hd); my $dev = devices::make($hd->{device}); open F, "rescuept $dev|"; foreach () { my ($st, $si, $id) = /start=\s*(\d+),\s*size=\s*(\d+),\s*Id=\s*(\d+)/ or next; my $part = { start => $st, size => $si, type => hex($id) }; if (isExtended($part)) { $ext = $part; } else { push @hd, $part; } } close F or die "rescuept failed"; partition_table_raw::zero_MBR($hd); foreach (@hd) { my $b = partition_table::verifyInside($_, $ext); if ($b) { $_->{start}--; $_->{size}++; } local $b->{notFormatted}; partition_table::add($hd, $_, ($b ? 'Extended' : 'Primary'), 1); } } sub verifyHds { my ($hds, $readonly, $ok) = @_; if (is_empty_array_ref($hds)) { #- no way die _("An error has occurred - no valid devices were found on which to create new filesystems. Please check your hardware for the cause of this problem"); } my @parts = readProcPartitions($hds); $ok &&= @parts == listlength(get_fstab(@$hds)); if ($readonly && !$ok) { log::l("using /proc/partitions as diskdrake failed :("); foreach my $hd (@$hds) { partition_table_raw::zero_MBR($hd); $hd->{primary} = { normal => [ grep { $hd->{device} eq $_->{rootDevice} } @parts ] }; } } my $fstab = [ get_fstab(@$hds) ]; if (is_empty_array_ref($fstab) && $readonly) { die _("You don't have any partitions!"); } ($hds, $fstab, $ok); } #-###################################################################################### #- Wonderful perl :( #-###################################################################################### 1; # 4896'>perl-install/share/po/ast.po16
-rw-r--r--perl-install/share/po/az.po16
-rw-r--r--perl-install/share/po/be.po16
-rw-r--r--perl-install/share/po/bg.po16
-rw-r--r--perl-install/share/po/bn.po16
-rw-r--r--perl-install/share/po/br.po16
-rw-r--r--perl-install/share/po/bs.po16
-rw-r--r--perl-install/share/po/ca.po16
-rw-r--r--perl-install/share/po/cs.po16
-rw-r--r--perl-install/share/po/cy.po16
-rw-r--r--perl-install/share/po/da.po16
-rw-r--r--perl-install/share/po/de.po16
-rw-r--r--perl-install/share/po/el.po16
-rw-r--r--perl-install/share/po/eo.po16
-rw-r--r--perl-install/share/po/es.po16
-rw-r--r--perl-install/share/po/et.po16
-rw-r--r--perl-install/share/po/eu.po16
-rw-r--r--perl-install/share/po/fa.po16
-rw-r--r--perl-install/share/po/fi.po16
-rw-r--r--perl-install/share/po/fr.po16
-rw-r--r--perl-install/share/po/fur.po16
-rw-r--r--perl-install/share/po/ga.po16
-rw-r--r--perl-install/share/po/gl.po16
-rw-r--r--perl-install/share/po/he.po16
-rw-r--r--perl-install/share/po/hi.po16
-rw-r--r--perl-install/share/po/hr.po16
-rw-r--r--perl-install/share/po/hu.po16
-rw-r--r--perl-install/share/po/id.po16
-rw-r--r--perl-install/share/po/is.po16
-rw-r--r--perl-install/share/po/it.po16
-rw-r--r--perl-install/share/po/ja.po16
-rw-r--r--perl-install/share/po/ko.po16
-rw-r--r--perl-install/share/po/ky.po16
-rw-r--r--perl-install/share/po/lt.po16
-rw-r--r--perl-install/share/po/ltg.po16
-rw-r--r--perl-install/share/po/lv.po16
-rw-r--r--perl-install/share/po/mk.po16
-rw-r--r--perl-install/share/po/mn.po16
-rw-r--r--perl-install/share/po/ms.po16
-rw-r--r--perl-install/share/po/mt.po16
-rw-r--r--perl-install/share/po/nb.po16
-rw-r--r--perl-install/share/po/nl.po16
-rw-r--r--perl-install/share/po/nn.po16
-rw-r--r--perl-install/share/po/pa_IN.po16
-rw-r--r--perl-install/share/po/pl.po16
-rw-r--r--perl-install/share/po/pt.po16
-rw-r--r--perl-install/share/po/pt_BR.po16
-rw-r--r--perl-install/share/po/ro.po16
-rw-r--r--perl-install/share/po/ru.po16
-rw-r--r--perl-install/share/po/sc.po16
-rw-r--r--perl-install/share/po/sk.po16
-rw-r--r--perl-install/share/po/sl.po16
-rw-r--r--perl-install/share/po/sq.po16
-rw-r--r--perl-install/share/po/sr.po16
-rw-r--r--perl-install/share/po/sr@Latn.po16
-rw-r--r--perl-install/share/po/sv.po16
-rw-r--r--perl-install/share/po/ta.po16
-rw-r--r--perl-install/share/po/tg.po16
-rw-r--r--perl-install/share/po/th.po16
-rw-r--r--perl-install/share/po/tl.po16
-rw-r--r--perl-install/share/po/tr.po19
-rw-r--r--perl-install/share/po/uk.po16
-rw-r--r--perl-install/share/po/uz.po16
-rw-r--r--perl-install/share/po/uz@cyrillic.po16
-rw-r--r--perl-install/share/po/vi.po16
-rw-r--r--perl-install/share/po/wa.po16
-rw-r--r--perl-install/share/po/zh_CN.po16
-rw-r--r--perl-install/share/po/zh_TW.po16
71 files changed, 924 insertions, 215 deletions
diff --git a/perl-install/share/po/af.po b/perl-install/share/po/af.po
index 0aa8cdf52..f8da6a49f 100644
--- a/perl-install/share/po/af.po
+++ b/perl-install/share/po/af.po
@@ -10,7 +10,7 @@
msgid ""
msgstr ""
"Project-Id-Version: DrakX-af\n"
-"POT-Creation-Date: 2016-02-09 00:37+0100\n"
+"POT-Creation-Date: 2016-06-08 18:03+0200\n"
"PO-Revision-Date: 2005-04-21 17:33+0200\n"
"Last-Translator: Dirk van der Walt <dirkvanderwalt@webmail.co.za>\n"
"Language-Team: Afrikaans\n"
@@ -285,7 +285,12 @@ msgstr ""
"Hier is die huidige inskrywings\n"
"U kan byvoeg or verwyder soos nodig."
-#: any.pm:857
+#: any.pm:640
+#, c-format
+msgid "Probe Foreign OS"
+msgstr ""
+
+#: any.pm:864
#, c-format
msgid "access to X programs"
msgstr "toegang na X-programme"
@@ -1012,7 +1017,12 @@ msgstr "LILO met tekskieskaart"
msgid "GRUB2 with graphical menu"
msgstr ""
-#: bootloader.pm:1280
+#: bootloader.pm:1266
+#, fuzzy, c-format
+msgid "GRUB2 with text menu"
+msgstr "LILO met tekskieskaart"
+
+#: bootloader.pm:1267
#, c-format
msgid "GRUB with graphical menu"
msgstr ""
diff --git a/perl-install/share/po/am.po b/perl-install/share/po/am.po
index 4a76d14f2..3fbebd628 100644
--- a/perl-install/share/po/am.po
+++ b/perl-install/share/po/am.po
@@ -5,7 +5,7 @@
msgid ""
msgstr ""
"Project-Id-Version: DrakX\n"
-"POT-Creation-Date: 2016-02-09 00:37+0100\n"
+"POT-Creation-Date: 2016-06-08 18:03+0200\n"
"PO-Revision-Date: 2004-06-01 03:36+0100\n"
"Last-Translator: Alemayehu <alemayehu@gmx.at>\n"
"Language-Team: Amharic <am-translate@geez.org>\n"
@@ -272,7 +272,12 @@ msgid ""
"You can create additional entries or change the existing ones."
msgstr ""
-#: any.pm:857
+#: any.pm:640
+#, c-format
+msgid "Probe Foreign OS"
+msgstr ""
+
+#: any.pm:864
#, c-format
msgid "access to X programs"
msgstr "የX ፕሮግራሞች ማሳያ"
@@ -981,7 +986,12 @@ msgstr "LILO ከጽሁፍ መዘርዝር ጋር"
msgid "GRUB2 with graphical menu"
msgstr ""
-#: bootloader.pm:1280
+#: bootloader.pm:1266
+#, fuzzy, c-format
+msgid "GRUB2 with text menu"
+msgstr "LILO ከጽሁፍ መዘርዝር ጋር"
+
+#: bootloader.pm:1267
#, c-format
msgid "GRUB with graphical menu"
msgstr ""
diff --git a/perl-install/share/po/ar.po b/perl-install/share/po/ar.po
index a994d7d41..0fac4bcc4 100644
--- a/perl-install/share/po/ar.po
+++ b/perl-install/share/po/ar.po
@@ -5,7 +5,7 @@
msgid ""
msgstr ""
"Project-Id-Version: Mageia\n"
-"POT-Creation-Date: 2016-02-09 00:37+0100\n"
+"POT-Creation-Date: 2016-06-08 18:03+0200\n"
"PO-Revision-Date: 2016-02-09 07:19+0000\n"
"Last-Translator: Yuri Chornoivan <yurchor@ukr.net>\n"
"Language-Team: Arabic (http://www.transifex.com/MageiaLinux/mageia/language/"
@@ -287,7 +287,12 @@ msgstr ""
"هذه هي المدخلات المختلفة في قائمة الإقلاع حتى الآن.\n"
"يمكنك إضافة مدخلات أخرى أو تغيير الموجودة."
-#: any.pm:857
+#: any.pm:640
+#, c-format
+msgid "Probe Foreign OS"
+msgstr ""
+
+#: any.pm:864
#, c-format
msgid "access to X programs"
msgstr "الوصول إلى برامج X"
@@ -1014,7 +1019,12 @@ msgstr "LILO مع قائمة نصية"
msgid "GRUB2 with graphical menu"
msgstr ""
-#: bootloader.pm:1280
+#: bootloader.pm:1266
+#, fuzzy, c-format
+msgid "GRUB2 with text menu"
+msgstr "LILO مع قائمة نصية"
+
+#: bootloader.pm:1267
#, c-format
msgid "GRUB with graphical menu"
msgstr ""
diff --git a/perl-install/share/po/ast.po b/perl-install/share/po/ast.po
index 87257522f..f60035ce0 100644
--- a/perl-install/share/po/ast.po
+++ b/perl-install/share/po/ast.po
@@ -8,7 +8,7 @@
msgid ""
msgstr ""
"Project-Id-Version: Mageia\n"
-"POT-Creation-Date: 2016-02-09 00:37+0100\n"
+"POT-Creation-Date: 2016-06-08 18:03+0200\n"
"PO-Revision-Date: 2016-02-09 07:19+0000\n"
"Last-Translator: Yuri Chornoivan <yurchor@ukr.net>\n"
"Language-Team: Asturian (http://www.transifex.com/MageiaLinux/mageia/"
@@ -291,7 +291,12 @@ msgstr ""
"Equí tán les entraes nel to menú d'arranque.\n"
"Pues crear entraes adicionales o camudar les esistentes"
-#: any.pm:857
+#: any.pm:640
+#, c-format
+msgid "Probe Foreign OS"
+msgstr ""
+
+#: any.pm:864
#, c-format
msgid "access to X programs"
msgstr "accesu a X programes"
@@ -1040,7 +1045,12 @@ msgstr ""
msgid "GRUB2 with graphical menu"
msgstr ""
-#: bootloader.pm:1280
+#: bootloader.pm:1266
+#, c-format
+msgid "GRUB2 with text menu"
+msgstr ""
+
+#: bootloader.pm:1267
#, c-format
msgid "GRUB with graphical menu"
msgstr ""
diff --git a/perl-install/share/po/az.po b/perl-install/share/po/az.po
index 472eca18a..fbc723063 100644
--- a/perl-install/share/po/az.po
+++ b/perl-install/share/po/az.po
@@ -9,7 +9,7 @@
msgid ""
msgstr ""
"Project-Id-Version: DrakX-az\n"
-"POT-Creation-Date: 2016-02-09 00:37+0100\n"
+"POT-Creation-Date: 2016-06-08 18:03+0200\n"
"PO-Revision-Date: 2005-03-31 14:21+0200\n"
"Last-Translator: Mətin Əmirov <metin@karegen.com>\n"
"Language-Team: Azerbaijani <translation-team-az@lists.sourceforge.net>\n"
@@ -285,7 +285,12 @@ msgstr ""
"Buradakı bir birindən fərqli seçimlərə yenilərini əlavə edə bilər,\n"
"ya da mövcud olanları dəyişdirə bilərsiniz."
-#: any.pm:857
+#: any.pm:640
+#, c-format
+msgid "Probe Foreign OS"
+msgstr ""
+
+#: any.pm:864
#, c-format
msgid "access to X programs"
msgstr "X proqramlarına yetişmə icazəsi"
@@ -1019,7 +1024,12 @@ msgstr "Mətn menyulu LILO"
msgid "GRUB2 with graphical menu"
msgstr ""
-#: bootloader.pm:1280
+#: bootloader.pm:1266
+#, fuzzy, c-format
+msgid "GRUB2 with text menu"
+msgstr "Mətn menyulu LILO"
+
+#: bootloader.pm:1267
#, c-format
msgid "GRUB with graphical menu"
msgstr ""
diff --git a/perl-install/share/po/be.po b/perl-install/share/po/be.po
index ca6ba091a..0f9566fb8 100644
--- a/perl-install/share/po/be.po
+++ b/perl-install/share/po/be.po
@@ -5,7 +5,7 @@
msgid ""
msgstr ""
"Project-Id-Version: DrakX VERSION\n"
-"POT-Creation-Date: 2016-02-09 00:37+0100\n"
+"POT-Creation-Date: 2016-06-08 18:03+0200\n"
"PO-Revision-Date: 2000-09-24 12:30 +0100\n"
"Last-Translator: Alexander Bokovoy <ab@avilink.net>\n"
"Language-Team: be\n"
@@ -274,7 +274,12 @@ msgstr ""
"У меню маюцца наступныя пункты.\n"
"Вы можаце дадаць яшчэ, альбо змяніць існуючыя."
-#: any.pm:857
+#: any.pm:640
+#, c-format
+msgid "Probe Foreign OS"
+msgstr ""
+
+#: any.pm:864
#, c-format
msgid "access to X programs"
msgstr ""
@@ -986,7 +991,12 @@ msgstr ""
msgid "GRUB2 with graphical menu"
msgstr ""
-#: bootloader.pm:1280
+#: bootloader.pm:1266
+#, c-format
+msgid "GRUB2 with text menu"
+msgstr ""
+
+#: bootloader.pm:1267
#, c-format
msgid "GRUB with graphical menu"
msgstr ""
diff --git a/perl-install/share/po/bg.po b/perl-install/share/po/bg.po
index 87fdc4119..9f8baf90b 100644
--- a/perl-install/share/po/bg.po
+++ b/perl-install/share/po/bg.po
@@ -10,7 +10,7 @@
msgid ""
msgstr ""
"Project-Id-Version: Mageia\n"
-"POT-Creation-Date: 2016-02-09 00:37+0100\n"
+"POT-Creation-Date: 2016-06-08 18:03+0200\n"
"PO-Revision-Date: 2016-04-16 21:43+0000\n"
"Last-Translator: Yuri Chornoivan <yurchor@ukr.net>\n"
"Language-Team: Bulgarian (http://www.transifex.com/MageiaLinux/mageia/"
@@ -288,7 +288,12 @@ msgstr ""
"Това са записите в менюто за начално зареждане.\n"
"Можете да добавите още или да промените съществуващите."
-#: any.pm:857
+#: any.pm:640
+#, c-format
+msgid "Probe Foreign OS"
+msgstr ""
+
+#: any.pm:864
#, c-format
msgid "access to X programs"
msgstr "достъп до X програми"
@@ -1021,7 +1026,12 @@ msgstr "LILO с текстово меню"
msgid "GRUB2 with graphical menu"
msgstr ""
-#: bootloader.pm:1280
+#: bootloader.pm:1266
+#, fuzzy, c-format
+msgid "GRUB2 with text menu"
+msgstr "GRUB с текстово меню"
+
+#: bootloader.pm:1267
#, c-format
msgid "GRUB with graphical menu"
msgstr "GRUB в графично меню"
diff --git a/perl-install/share/po/bn.po b/perl-install/share/po/bn.po
index 37302b13e..7c9f6f88b 100644
--- a/perl-install/share/po/bn.po
+++ b/perl-install/share/po/bn.po
@@ -10,7 +10,7 @@
msgid ""
msgstr ""
"Project-Id-Version: Mageia\n"
-"POT-Creation-Date: 2016-02-09 00:37+0100\n"
+"POT-Creation-Date: 2016-06-08 18:03+0200\n"
"PO-Revision-Date: 2016-05-07 07:34+0000\n"
"Last-Translator: Yuri Chornoivan <yurchor@ukr.net>\n"
"Language-Team: Bengali (http://www.transifex.com/MageiaLinux/mageia/language/"
@@ -291,7 +291,12 @@ msgstr ""
"এপর্যন্ত আপনার বুটমেনুর এন্ট্রিগুলি এখানে।\n"
"আপনি অন্যান্য এন্ট্রি তৈরী করতে পারেন অথবা আগের এন্ট্রিগুলি পরিবর্তন করতে পারেন।"
-#: any.pm:857
+#: any.pm:640
+#, c-format
+msgid "Probe Foreign OS"
+msgstr ""
+
+#: any.pm:864
#, c-format
msgid "access to X programs"
msgstr "X প্রোগ্রামসমূহে প্রবেশাধিকার"
@@ -1018,7 +1023,12 @@ msgstr "টেক্সট মেনুর সাথে LILO"
msgid "GRUB2 with graphical menu"
msgstr ""
-#: bootloader.pm:1280
+#: bootloader.pm:1266
+#, fuzzy, c-format
+msgid "GRUB2 with text menu"
+msgstr "টেক্সট মেনুর সাথে LILO"
+
+#: bootloader.pm:1267
#, c-format
msgid "GRUB with graphical menu"
msgstr ""
diff --git a/perl-install/share/po/br.po b/perl-install/share/po/br.po
index 0f09c1a79..a108003e6 100644
--- a/perl-install/share/po/br.po
+++ b/perl-install/share/po/br.po
@@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Project-Id-Version: DrakX 10.2\n"
-"POT-Creation-Date: 2016-02-09 00:37+0100\n"
+"POT-Creation-Date: 2016-06-08 18:03+0200\n"
"PO-Revision-Date: 2016-01-02 15:32+0100\n"
"Last-Translator: Thierry Vignaud <thierry.vignaud.com>\n"
"Language-Team: Brezhoneg <ofisk@wanadoo.fr>\n"
@@ -277,7 +277,12 @@ msgstr ""
"Setu da heul an enmontoù liesseurt.\n"
"Gallout a rit ouzhpennañ lod pe gemmañ a re a zo."
-#: any.pm:857
+#: any.pm:640
+#, c-format
+msgid "Probe Foreign OS"
+msgstr ""
+
+#: any.pm:864
#, c-format
msgid "access to X programs"
msgstr ""
@@ -996,7 +1001,12 @@ msgstr "LILO gant meuziad skrid"
msgid "GRUB2 with graphical menu"
msgstr "GRUB2 gant meuziad grafek"
-#: bootloader.pm:1280
+#: bootloader.pm:1266
+#, fuzzy, c-format
+msgid "GRUB2 with text menu"
+msgstr "GRUB gant meuziad skrid"
+
+#: bootloader.pm:1267
#, c-format
msgid "GRUB with graphical menu"
msgstr "GRUB gant meuziad grafek"
diff --git a/perl-install/share/po/bs.po b/perl-install/share/po/bs.po
index efd9300c5..aeee24c24 100644
--- a/perl-install/share/po/bs.po
+++ b/perl-install/share/po/bs.po
@@ -9,7 +9,7 @@
msgid ""
msgstr ""
"Project-Id-Version: bs\n"
-"POT-Creation-Date: 2016-02-09 00:37+0100\n"
+"POT-Creation-Date: 2016-06-08 18:03+0200\n"
"PO-Revision-Date: 2006-09-13 19:15+0200\n"
"Last-Translator: Vedran Ljubovic <vljubovic@smartnet.ba>\n"
"Language-Team: Bosnian <lokal@linux.org.ba>\n"
@@ -291,7 +291,12 @@ msgstr ""
"Ovo su trenutne opcije u vašem boot meniju.\n"
"Možete dodati nove ili promijeniti postojeće."
-#: any.pm:857
+#: any.pm:640
+#, c-format
+msgid "Probe Foreign OS"
+msgstr ""
+
+#: any.pm:864
#, c-format
msgid "access to X programs"
msgstr "pristup X programima"
@@ -1038,7 +1043,12 @@ msgstr "LILO sa tekstualnim menijem"
msgid "GRUB2 with graphical menu"
msgstr "GRUB sa grafičkim menijem"
-#: bootloader.pm:1280
+#: bootloader.pm:1266
+#, fuzzy, c-format
+msgid "GRUB2 with text menu"
+msgstr "GRUB sa tekstualnim menijem"
+
+#: bootloader.pm:1267
#, c-format
msgid "GRUB with graphical menu"
msgstr "GRUB sa grafičkim menijem"
diff --git a/perl-install/share/po/ca.po b/perl-install/share/po/ca.po
index 84f54a00e..213c9a91e 100644
--- a/perl-install/share/po/ca.po
+++ b/perl-install/share/po/ca.po
@@ -8,7 +8,7 @@
msgid ""
msgstr ""
"Project-Id-Version: Mageia\n"
-"POT-Creation-Date: 2016-02-09 00:37+0100\n"
+"POT-Creation-Date: 2016-06-08 18:03+0200\n"
"PO-Revision-Date: 2016-05-30 16:39+0000\n"
"Last-Translator: Davidmp <medipas@gmail.com>\n"
"Language-Team: Catalan (http://www.transifex.com/MageiaLinux/mageia/language/"
@@ -292,7 +292,12 @@ msgstr ""
"Aquestes són les diferents entrades en el menú d'arrencada.\n"
"Podeu afegir-ne més o canviar les existents."
-#: any.pm:857
+#: any.pm:640
+#, c-format
+msgid "Probe Foreign OS"
+msgstr ""
+
+#: any.pm:864
#, c-format
msgid "access to X programs"
msgstr "accés a programes X"
@@ -1038,7 +1043,12 @@ msgstr "LILO amb menú de text"
msgid "GRUB2 with graphical menu"
msgstr "GRUB2 amb menú gràfic"
-#: bootloader.pm:1280
+#: bootloader.pm:1266
+#, fuzzy, c-format
+msgid "GRUB2 with text menu"
+msgstr "GRUB amb menú de text"
+
+#: bootloader.pm:1267
#, c-format
msgid "GRUB with graphical menu"
msgstr "GRUB amb menú gràfic"
diff --git a/perl-install/share/po/cs.po b/perl-install/share/po/cs.po
index 3cd1430ce..565df2c6f 100644
--- a/perl-install/share/po/cs.po
+++ b/perl-install/share/po/cs.po
@@ -9,7 +9,7 @@
msgid ""
msgstr ""
"Project-Id-Version: Mageia\n"
-"POT-Creation-Date: 2016-02-09 00:37+0100\n"
+"POT-Creation-Date: 2016-06-08 18:03+0200\n"
"PO-Revision-Date: 2016-06-02 13:38+0000\n"
"Last-Translator: fri\n"
"Language-Team: Czech (http://www.transifex.com/MageiaLinux/mageia/language/"
@@ -292,7 +292,12 @@ msgstr ""
"Zde jsou záznamy z vaší zaváděcí nabídky.\n"
"Můžete přidat další nebo změnit stávající."
-#: any.pm:857
+#: any.pm:640
+#, c-format
+msgid "Probe Foreign OS"
+msgstr ""
+
+#: any.pm:864
#, c-format
msgid "access to X programs"
msgstr "přístup k programům v X prostředí"
@@ -1042,7 +1047,12 @@ msgstr "LILO s textovou nabídkou"
msgid "GRUB2 with graphical menu"
msgstr "GRUB2 s grafickou nabídkou"
-#: bootloader.pm:1280
+#: bootloader.pm:1266
+#, fuzzy, c-format
+msgid "GRUB2 with text menu"
+msgstr "GRUB s textovou nabídkou"
+
+#: bootloader.pm:1267
#, c-format
msgid "GRUB with graphical menu"
msgstr "GRUB s grafickou nabídkou"
diff --git a/perl-install/share/po/cy.po b/perl-install/share/po/cy.po
index ad9f57f17..35fd76491 100644
--- a/perl-install/share/po/cy.po
+++ b/perl-install/share/po/cy.po
@@ -7,7 +7,7 @@
msgid ""
msgstr ""
"Project-Id-Version: Mageia\n"
-"POT-Creation-Date: 2016-02-09 00:37+0100\n"
+"POT-Creation-Date: 2016-06-08 18:03+0200\n"
"PO-Revision-Date: 2016-02-09 07:19+0000\n"
"Last-Translator: Yuri Chornoivan <yurchor@ukr.net>\n"
"Language-Team: Welsh (http://www.transifex.com/MageiaLinux/mageia/language/"
@@ -289,7 +289,12 @@ msgstr ""
"Dyma'r cofnodion gwahanol ar eich dewislen cychwyn hyd yma.\n"
"Mae modd i chi ychwanegu rhagor neu newid y rhai presennol."
-#: any.pm:857
+#: any.pm:640
+#, c-format
+msgid "Probe Foreign OS"
+msgstr ""
+
+#: any.pm:864
#, c-format
msgid "access to X programs"
msgstr "mynediad i raglenni X"
@@ -1030,7 +1035,12 @@ msgstr "LILO gyda dewislen testun"
msgid "GRUB2 with graphical menu"
msgstr ""
-#: bootloader.pm:1280
+#: bootloader.pm:1266
+#, fuzzy, c-format
+msgid "GRUB2 with text menu"
+msgstr "GRUB gyda dewislen testun"
+
+#: bootloader.pm:1267
#, c-format
msgid "GRUB with graphical menu"
msgstr "GRUB gyda dewislen raffigol"
diff --git a/perl-install/share/po/da.po b/perl-install/share/po/da.po
index 574ab1068..c52c005f8 100644
--- a/perl-install/share/po/da.po
+++ b/perl-install/share/po/da.po
@@ -9,7 +9,7 @@
msgid ""
msgstr ""
"Project-Id-Version: Mageia\n"
-"POT-Creation-Date: 2016-02-09 00:37+0100\n"
+"POT-Creation-Date: 2016-06-08 18:03+0200\n"
"PO-Revision-Date: 2016-02-09 07:19+0000\n"
"Last-Translator: Yuri Chornoivan <yurchor@ukr.net>\n"
"Language-Team: Danish (http://www.transifex.com/MageiaLinux/mageia/language/"
@@ -291,7 +291,12 @@ msgstr ""
"Her er følgende typer indgange.\n"
"Du kan tilføje flere eller ændre de eksisterende."
-#: any.pm:857
+#: any.pm:640
+#, c-format
+msgid "Probe Foreign OS"
+msgstr ""
+
+#: any.pm:864
#, c-format
msgid "access to X programs"
msgstr "adgang til X-programmer"
@@ -1039,7 +1044,12 @@ msgstr "LILO med tekstmenu"
msgid "GRUB2 with graphical menu"
msgstr "GRUB 2 med grafisk menu"
-#: bootloader.pm:1280
+#: bootloader.pm:1266
+#, fuzzy, c-format
+msgid "GRUB2 with text menu"
+msgstr "GRUB med tekstmenu"
+
+#: bootloader.pm:1267
#, c-format
msgid "GRUB with graphical menu"
msgstr "GRUB med grafisk menu"
diff --git a/perl-install/share/po/de.po b/perl-install/share/po/de.po
index f495ea6bf..b8f39c088 100644
--- a/perl-install/share/po/de.po
+++ b/perl-install/share/po/de.po
@@ -12,7 +12,7 @@
msgid ""
msgstr ""
"Project-Id-Version: Mageia\n"
-"POT-Creation-Date: 2016-02-09 00:37+0100\n"
+"POT-Creation-Date: 2016-06-08 18:03+0200\n"
"PO-Revision-Date: 2016-05-06 20:31+0000\n"
"Last-Translator: Ettore Atalan <atalanttore@googlemail.com>\n"
"Language-Team: German (http://www.transifex.com/MageiaLinux/mageia/language/"
@@ -297,7 +297,12 @@ msgstr ""
"Hier sind die verschiedenen Einträge.\n"
"Sie können weitere hinzufügen oder existierende ändern."
-#: any.pm:857
+#: any.pm:640
+#, c-format
+msgid "Probe Foreign OS"
+msgstr ""
+
+#: any.pm:864
#, c-format
msgid "access to X programs"
msgstr "Zugriff auf X-Programme"
@@ -1054,7 +1059,12 @@ msgstr "LILO mit Textmenü"
msgid "GRUB2 with graphical menu"
msgstr "GRUB2 mit grafischem Menü"
-#: bootloader.pm:1280
+#: bootloader.pm:1266
+#, fuzzy, c-format
+msgid "GRUB2 with text menu"
+msgstr "GRUB mit Textmenü"
+
+#: bootloader.pm:1267
#, c-format
msgid "GRUB with graphical menu"
msgstr "GRUB mit grafischem Menü"
diff --git a/perl-install/share/po/el.po b/perl-install/share/po/el.po
index a916bbb00..efd3bfd85 100644
--- a/perl-install/share/po/el.po
+++ b/perl-install/share/po/el.po
@@ -11,7 +11,7 @@
msgid ""
msgstr ""
"Project-Id-Version: drakx_share\n"
-"POT-Creation-Date: 2016-02-09 00:37+0100\n"
+"POT-Creation-Date: 2016-06-08 18:03+0200\n"
"PO-Revision-Date: 2016-03-31 07:06+0200\n"
"Last-Translator: Dimitrios Glentadakis <dglent@free.fr>\n"
"Language-Team: Greek <i18n-el@ml.mageia.org>\n"
@@ -299,7 +299,12 @@ msgstr ""
"Ορίστε οι καταχωρήσεις στο μενού εκκίνησης.\n"
"Μπορείτε να προσθέσετε κι άλλες ή να αλλάξετε τις υπάρχουσες."
-#: any.pm:857
+#: any.pm:640
+#, c-format
+msgid "Probe Foreign OS"
+msgstr ""
+
+#: any.pm:864
#, c-format
msgid "access to X programs"
msgstr "πρόσβαση σε προγράμματα γραφικού περιβάλλοντος"
@@ -1056,7 +1061,12 @@ msgstr "LILO με μενού κειμένου"
msgid "GRUB2 with graphical menu"
msgstr "GRUB2 με γραφικό περιβάλλον"
-#: bootloader.pm:1280
+#: bootloader.pm:1266
+#, fuzzy, c-format
+msgid "GRUB2 with text menu"
+msgstr "GRUB με μενού κειμένου"
+
+#: bootloader.pm:1267
#, c-format
msgid "GRUB with graphical menu"
msgstr "GRUB με γραφικό περιβάλλον "
diff --git a/perl-install/share/po/eo.po b/perl-install/share/po/eo.po
index 30eadd0ef..fd699b159 100644
--- a/perl-install/share/po/eo.po
+++ b/perl-install/share/po/eo.po
@@ -8,7 +8,7 @@
msgid ""
msgstr ""
"Project-Id-Version: Mageia\n"
-"POT-Creation-Date: 2016-02-09 00:37+0100\n"
+"POT-Creation-Date: 2016-06-08 18:03+0200\n"
"PO-Revision-Date: 2016-02-09 07:19+0000\n"
"Last-Translator: Yuri Chornoivan <yurchor@ukr.net>\n"
"Language-Team: Esperanto (http://www.transifex.com/MageiaLinux/mageia/"
@@ -284,7 +284,12 @@ msgstr ""
"Jen la diversaj enskriboj.\n"
"Vi povas aldoni pli aŭ ŝanĝi la ekzistantajn."
-#: any.pm:857
+#: any.pm:640
+#, c-format
+msgid "Probe Foreign OS"
+msgstr ""
+
+#: any.pm:864
#, c-format
msgid "access to X programs"
msgstr "aliro al X-programoj"
@@ -1003,7 +1008,12 @@ msgstr ""
msgid "GRUB2 with graphical menu"
msgstr ""
-#: bootloader.pm:1280
+#: bootloader.pm:1266
+#, c-format
+msgid "GRUB2 with text menu"
+msgstr ""
+
+#: bootloader.pm:1267
#, c-format
msgid "GRUB with graphical menu"
msgstr ""
diff --git a/perl-install/share/po/es.po b/perl-install/share/po/es.po
index 548820b10..4e0d8fe62 100644
--- a/perl-install/share/po/es.po
+++ b/perl-install/share/po/es.po
@@ -9,7 +9,7 @@
msgid ""
msgstr ""
"Project-Id-Version: Mageia\n"
-"POT-Creation-Date: 2016-02-09 00:37+0100\n"
+"POT-Creation-Date: 2016-06-08 18:03+0200\n"
"PO-Revision-Date: 2016-04-07 11:35+0000\n"
"Last-Translator: Jose Manuel López <joselp@outlook.es>\n"
"Language-Team: Spanish (http://www.transifex.com/MageiaLinux/mageia/language/"
@@ -292,7 +292,12 @@ msgstr ""
"Aquí están las diferentes entradas.\n"
"Puede añadir otras o cambiar las que ya existen."
-#: any.pm:857
+#: any.pm:640
+#, c-format
+msgid "Probe Foreign OS"
+msgstr ""
+
+#: any.pm:864
#, c-format
msgid "access to X programs"
msgstr "acceso a programas X"
@@ -1046,7 +1051,12 @@ msgstr "LILO con menú de texto"
msgid "GRUB2 with graphical menu"
msgstr "GRUB2 con menú gráfico"
-#: bootloader.pm:1280
+#: bootloader.pm:1266
+#, fuzzy, c-format
+msgid "GRUB2 with text menu"
+msgstr "GRUB con menú de texto"
+
+#: bootloader.pm:1267
#, c-format
msgid "GRUB with graphical menu"
msgstr "GRUB con menú gráfico"
diff --git a/perl-install/share/po/et.po b/perl-install/share/po/et.po
index 2727c9f51..425eaf162 100644
--- a/perl-install/share/po/et.po
+++ b/perl-install/share/po/et.po
@@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Project-Id-Version: Mageia\n"
-"POT-Creation-Date: 2016-02-09 00:37+0100\n"
+"POT-Creation-Date: 2016-06-08 18:03+0200\n"
"PO-Revision-Date: 2016-05-26 18:09+0300\n"
"Last-Translator: Marek Laane <qiilaq69@gmail.com>\n"
"Language-Team: Estonian <i18n-et@ml.mageia.org>\n"
@@ -289,7 +289,12 @@ msgstr ""
"Praegu on kasutusel sellised kirjed.\n"
"Te võite neid lisada ning olemasolevaid muuta."
-#: any.pm:857
+#: any.pm:640
+#, c-format
+msgid "Probe Foreign OS"
+msgstr ""
+
+#: any.pm:864
#, c-format
msgid "access to X programs"
msgstr "ligipääs X'i rakendustele"
@@ -1035,7 +1040,12 @@ msgstr "LiLo tekstirežiimis"
msgid "GRUB2 with graphical menu"
msgstr "GRUB2 graafilise menüüga"
-#: bootloader.pm:1280
+#: bootloader.pm:1266
+#, fuzzy, c-format
+msgid "GRUB2 with text menu"
+msgstr "GRUB tekstirežiimis"
+
+#: bootloader.pm:1267
#, c-format
msgid "GRUB with graphical menu"
msgstr "GRUB graafilise menüüga"
diff --git a/perl-install/share/po/eu.po b/perl-install/share/po/eu.po
index c28fe4ae2..bd70de08a 100644
--- a/perl-install/share/po/eu.po
+++ b/perl-install/share/po/eu.po
@@ -11,7 +11,7 @@
msgid ""
msgstr ""
"Project-Id-Version: Mageia\n"
-"POT-Creation-Date: 2016-02-09 00:37+0100\n"
+"POT-Creation-Date: 2016-06-08 18:03+0200\n"
"PO-Revision-Date: 2016-03-25 09:57+0000\n"
"Last-Translator: Egoitz Rodriguez Obieta <egoitzro@gmail.com>\n"
"Language-Team: Basque (http://www.transifex.com/MageiaLinux/mageia/language/"
@@ -294,7 +294,12 @@ msgstr ""
"Hona hemen abioko menuko orain arteko sarrerak.\n"
"Sarrera gehgiago sor ditzakezu, edo lehendik daudenak aldatu."
-#: any.pm:857
+#: any.pm:640
+#, c-format
+msgid "Probe Foreign OS"
+msgstr ""
+
+#: any.pm:864
#, c-format
msgid "access to X programs"
msgstr "X programen atzipena"
@@ -1048,7 +1053,12 @@ msgstr "LILO testu-menuarekin"
msgid "GRUB2 with graphical menu"
msgstr "GRUB2 menu grafikoarekin"
-#: bootloader.pm:1280
+#: bootloader.pm:1266
+#, fuzzy, c-format
+msgid "GRUB2 with text menu"
+msgstr "GRUB testu menuarekin"
+
+#: bootloader.pm:1267
#, c-format
msgid "GRUB with graphical menu"
msgstr "GRUB menu grafikoarekin"
diff --git a/perl-install/share/po/fa.po b/perl-install/share/po/fa.po
index 50a024fd1..24469065d 100644
--- a/perl-install/share/po/fa.po
+++ b/perl-install/share/po/fa.po
@@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Project-Id-Version: Mageia\n"
-"POT-Creation-Date: 2016-02-09 00:37+0100\n"
+"POT-Creation-Date: 2016-06-08 18:03+0200\n"
"PO-Revision-Date: 2015-07-05 06:47+0000\n"
"Last-Translator: Yuri Chornoivan <yurchor@ukr.net>\n"
"Language-Team: Persian (http://www.transifex.com/MageiaLinux/mageia/language/"
@@ -288,7 +288,12 @@ msgstr ""
"اینها فعلاً ورودی‌های منوی آغازگری شما هستند.\n"
"می‌توانید ورودی‌های بیشتری را ایجاد کرده یا ورودی‌های موجود را تغییر دهید."
-#: any.pm:857
+#: any.pm:640
+#, c-format
+msgid "Probe Foreign OS"
+msgstr ""
+
+#: any.pm:864
#, c-format
msgid "access to X programs"
msgstr "دستیابی به برنامه‌های X"
@@ -1020,7 +1025,12 @@ msgstr "LILO با منوی متنی"
msgid "GRUB2 with graphical menu"
msgstr ""
-#: bootloader.pm:1280
+#: bootloader.pm:1266
+#, fuzzy, c-format
+msgid "GRUB2 with text menu"
+msgstr "LILO با منوی متنی"
+
+#: bootloader.pm:1267
#, c-format
msgid "GRUB with graphical menu"
msgstr ""
diff --git a/perl-install/share/po/fi.po b/perl-install/share/po/fi.po
index 45c52dbba..d29be6938 100644
--- a/perl-install/share/po/fi.po
+++ b/perl-install/share/po/fi.po
@@ -13,7 +13,7 @@
msgid ""
msgstr ""
"Project-Id-Version: Mageia\n"
-"POT-Creation-Date: 2016-02-09 00:37+0100\n"
+"POT-Creation-Date: 2016-06-08 18:03+0200\n"
"PO-Revision-Date: 2016-02-09 07:19+0000\n"
"Last-Translator: Yuri Chornoivan <yurchor@ukr.net>\n"
"Language-Team: Finnish (http://www.transifex.com/MageiaLinux/mageia/language/"
@@ -296,7 +296,12 @@ msgstr ""
"Tämän hetkiset käynnistysvalikon tietueet.\n"
"Voit lisätä uusia tai muuttaa olemassa olevia."
-#: any.pm:857
+#: any.pm:640
+#, c-format
+msgid "Probe Foreign OS"
+msgstr ""
+
+#: any.pm:864
#, c-format
msgid "access to X programs"
msgstr "Oikeudet X-ohjelmiin"
@@ -1042,7 +1047,12 @@ msgstr "LILO tekstipohjaisella valikolla"
msgid "GRUB2 with graphical menu"
msgstr ""
-#: bootloader.pm:1280
+#: bootloader.pm:1266
+#, fuzzy, c-format
+msgid "GRUB2 with text menu"
+msgstr "GRUB tekstipohjaisella valikolla"
+
+#: bootloader.pm:1267
#, c-format
msgid "GRUB with graphical menu"
msgstr "GRUB graafisella valikolla"
diff --git a/perl-install/share/po/fr.po b/perl-install/share/po/fr.po
index 94ced6b8b..d1080ae6a 100644
--- a/perl-install/share/po/fr.po
+++ b/perl-install/share/po/fr.po
@@ -14,7 +14,7 @@
msgid ""
msgstr ""
"Project-Id-Version: Mageia\n"
-"POT-Creation-Date: 2016-02-09 00:37+0100\n"
+"POT-Creation-Date: 2016-06-08 18:03+0200\n"
"PO-Revision-Date: 2016-02-09 14:37+0000\n"
"Last-Translator: Eric Barbero <dune06@free.fr>\n"
"Language-Team: French (http://www.transifex.com/MageiaLinux/mageia/language/"
@@ -298,7 +298,12 @@ msgstr ""
"Voici les différentes entrées.\n"
"Vous pouvez en ajouter de nouvelles ou modifier les entrées existantes."
-#: any.pm:857
+#: any.pm:640
+#, c-format
+msgid "Probe Foreign OS"
+msgstr ""
+
+#: any.pm:864
#, c-format
msgid "access to X programs"
msgstr "accès aux programmes graphiques"
@@ -1051,7 +1056,12 @@ msgstr "LILO en mode texte"
msgid "GRUB2 with graphical menu"
msgstr "GRUB2 en mode graphique"
-#: bootloader.pm:1280
+#: bootloader.pm:1266
+#, fuzzy, c-format
+msgid "GRUB2 with text menu"
+msgstr "GRUB en mode texte"
+
+#: bootloader.pm:1267
#, c-format
msgid "GRUB with graphical menu"
msgstr "GRUB en mode graphique"
diff --git a/perl-install/share/po/fur.po b/perl-install/share/po/fur.po
index 33a5e0f93..e2f900db9 100644
--- a/perl-install/share/po/fur.po
+++ b/perl-install/share/po/fur.po
@@ -5,7 +5,7 @@
msgid ""
msgstr ""
"Project-Id-Version: DrakX\n"
-"POT-Creation-Date: 2016-02-09 00:37+0100\n"
+"POT-Creation-Date: 2016-06-08 18:03+0200\n"
"PO-Revision-Date: 2004-06-28 17:41+0200\n"
"Last-Translator: Andrea Gracco <graccoandrea@tin.it>\n"
"Language-Team: furlan <gft@freelists.org>\n"
@@ -273,7 +273,12 @@ msgid ""
"You can create additional entries or change the existing ones."
msgstr ""
-#: any.pm:857
+#: any.pm:640
+#, c-format
+msgid "Probe Foreign OS"
+msgstr ""
+
+#: any.pm:864
#, c-format
msgid "access to X programs"
msgstr "acès ai programs X"
@@ -982,7 +987,12 @@ msgstr "LILO cun menu di test"
msgid "GRUB2 with graphical menu"
msgstr ""
-#: bootloader.pm:1280
+#: bootloader.pm:1266
+#, fuzzy, c-format
+msgid "GRUB2 with text menu"
+msgstr "LILO cun menu di test"
+
+#: bootloader.pm:1267
#, c-format
msgid "GRUB with graphical menu"
msgstr ""
diff --git a/perl-install/share/po/ga.po b/perl-install/share/po/ga.po
index d767f2384..22b89ad1c 100644
--- a/perl-install/share/po/ga.po
+++ b/perl-install/share/po/ga.po
@@ -4,7 +4,7 @@
msgid ""
msgstr ""
"Project-Id-Version: DrakX\n"
-"POT-Creation-Date: 2016-02-09 00:37+0100\n"
+"POT-Creation-Date: 2016-06-08 18:03+0200\n"
"PO-Revision-Date: 2005-09-12 18:04+0200\n"
"Last-Translator: Alastair McKinstry <mckinstry@computer.org>\n"
"Language-Team: Irish <ga@li.org>\n"
@@ -271,7 +271,12 @@ msgid ""
"You can create additional entries or change the existing ones."
msgstr ""
-#: any.pm:857
+#: any.pm:640
+#, c-format
+msgid "Probe Foreign OS"
+msgstr ""
+
+#: any.pm:864
#, c-format
msgid "access to X programs"
msgstr ""
@@ -982,7 +987,12 @@ msgstr "LILO le chlár teacs"
msgid "GRUB2 with graphical menu"
msgstr ""
-#: bootloader.pm:1280
+#: bootloader.pm:1266
+#, fuzzy, c-format
+msgid "GRUB2 with text menu"
+msgstr "LILO le chlár teacs"
+
+#: bootloader.pm:1267
#, c-format
msgid "GRUB with graphical menu"
msgstr ""
diff --git a/perl-install/share/po/gl.po b/perl-install/share/po/gl.po
index e30e9f707..df736f144 100644
--- a/perl-install/share/po/gl.po
+++ b/perl-install/share/po/gl.po
@@ -8,7 +8,7 @@
msgid ""
msgstr ""
"Project-Id-Version: Mageia\n"
-"POT-Creation-Date: 2016-02-09 00:37+0100\n"
+"POT-Creation-Date: 2016-06-08 18:03+0200\n"
"PO-Revision-Date: 2015-05-26 19:12+0000\n"
"Last-Translator: Yuri Chornoivan <yurchor@ukr.net>\n"
"Language-Team: Galician (http://www.transifex.com/projects/p/mageia/language/"
@@ -290,7 +290,12 @@ msgstr ""
"Estas son as diferentes entradas.\n"
"Pode engadir algunhas máis ou cambia-las que xa existen."
-#: any.pm:857
+#: any.pm:640
+#, c-format
+msgid "Probe Foreign OS"
+msgstr ""
+
+#: any.pm:864
#, c-format
msgid "access to X programs"
msgstr "acceso ós programas X"
@@ -1026,7 +1031,12 @@ msgstr "LILO con menú de texto"
msgid "GRUB2 with graphical menu"
msgstr ""
-#: bootloader.pm:1280
+#: bootloader.pm:1266
+#, fuzzy, c-format
+msgid "GRUB2 with text menu"
+msgstr "GRUB con menú de texto"
+
+#: bootloader.pm:1267
#, c-format
msgid "GRUB with graphical menu"
msgstr "GRUB con menú gráfico"
diff --git a/perl-install/share/po/he.po b/perl-install/share/po/he.po
index 0b0755742..50eaf5821 100644
--- a/perl-install/share/po/he.po
+++ b/perl-install/share/po/he.po
@@ -12,7 +12,7 @@
msgid ""
msgstr ""
"Project-Id-Version: Mageia\n"
-"POT-Creation-Date: 2016-02-09 00:37+0100\n"
+"POT-Creation-Date: 2016-06-08 18:03+0200\n"
"PO-Revision-Date: 2015-05-26 19:12+0000\n"
"Last-Translator: Yuri Chornoivan <yurchor@ukr.net>\n"
"Language-Team: Hebrew (http://www.transifex.com/projects/p/mageia/language/"
@@ -292,7 +292,12 @@ msgstr ""
"להלן הרשומות שהוגדרו כבר בתפריט האתחול\n"
"ניתן להוסיף רשומות או לשנות רשומות קיימות."
-#: any.pm:857
+#: any.pm:640
+#, c-format
+msgid "Probe Foreign OS"
+msgstr ""
+
+#: any.pm:864
#, c-format
msgid "access to X programs"
msgstr "גישה ליישומים גרפיים"
@@ -1018,7 +1023,12 @@ msgstr "מנהל אתחול 'לילו' עם תפריט טקסט"
msgid "GRUB2 with graphical menu"
msgstr ""
-#: bootloader.pm:1280
+#: bootloader.pm:1266
+#, fuzzy, c-format
+msgid "GRUB2 with text menu"
+msgstr "מנהל אתחול 'גראב' עם תפריט טקסט"
+
+#: bootloader.pm:1267
#, c-format
msgid "GRUB with graphical menu"
msgstr "מנהל אתחול 'גראב' עם תפריט גרפי"
diff --git a/perl-install/share/po/hi.po b/perl-install/share/po/hi.po
index fb43a9b59..55809f75c 100644
--- a/perl-install/share/po/hi.po
+++ b/perl-install/share/po/hi.po
@@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Project-Id-Version: Mageia\n"
-"POT-Creation-Date: 2016-02-09 00:37+0100\n"
+"POT-Creation-Date: 2016-06-08 18:03+0200\n"
"PO-Revision-Date: 2015-05-26 19:12+0000\n"
"Last-Translator: Yuri Chornoivan <yurchor@ukr.net>\n"
"Language-Team: Hindi (http://www.transifex.com/projects/p/mageia/language/"
@@ -282,7 +282,12 @@ msgstr ""
"आपके बूट मीनू में अभी तक यह प्रविष्टीयां है । \n"
"आप अतिरिक्त प्रविष्टीयों का निर्माण या वर्तमान प्रविष्टीयों को परिवर्तित कर सकते है ।"
-#: any.pm:857
+#: any.pm:640
+#, c-format
+msgid "Probe Foreign OS"
+msgstr ""
+
+#: any.pm:864
#, c-format
msgid "access to X programs"
msgstr "एक्स कार्यक्रमों तक पहुँच"
@@ -1006,7 +1011,12 @@ msgstr "पाठ्य मीनू के साथ लिलो"
msgid "GRUB2 with graphical menu"
msgstr ""
-#: bootloader.pm:1280
+#: bootloader.pm:1266
+#, fuzzy, c-format
+msgid "GRUB2 with text menu"
+msgstr "पाठ्य मीनू के साथ लिलो"
+
+#: bootloader.pm:1267
#, c-format
msgid "GRUB with graphical menu"
msgstr ""
diff --git a/perl-install/share/po/hr.po b/perl-install/share/po/hr.po
index 093e31171..9dbe7d3d1 100644
--- a/perl-install/share/po/hr.po
+++ b/perl-install/share/po/hr.po
@@ -5,7 +5,7 @@
msgid ""
msgstr ""
"Project-Id-Version: Mageia\n"
-"POT-Creation-Date: 2016-02-09 00:37+0100\n"
+"POT-Creation-Date: 2016-06-08 18:03+0200\n"
"PO-Revision-Date: 2015-05-26 19:01+0000\n"
"Last-Translator: Yuri Chornoivan <yurchor@ukr.net>\n"
"Language-Team: Croatian (http://www.transifex.com/projects/p/mageia/language/"
@@ -283,7 +283,12 @@ msgstr ""
"Ovo su trenutni zapisi.\n"
"Možete dodati još koji ili urediti postojeći."
-#: any.pm:857
+#: any.pm:640
+#, c-format
+msgid "Probe Foreign OS"
+msgstr ""
+
+#: any.pm:864
#, c-format
msgid "access to X programs"
msgstr "pristup X programima"
@@ -1000,7 +1005,12 @@ msgstr "LILO sa tekstualnim menijem"
msgid "GRUB2 with graphical menu"
msgstr ""
-#: bootloader.pm:1280
+#: bootloader.pm:1266
+#, fuzzy, c-format
+msgid "GRUB2 with text menu"
+msgstr "LILO sa tekstualnim menijem"
+
+#: bootloader.pm:1267
#, c-format
msgid "GRUB with graphical menu"
msgstr ""
diff --git a/perl-install/share/po/hu.po b/perl-install/share/po/hu.po
index 56bba6c22..1521bce1f 100644
--- a/perl-install/share/po/hu.po
+++ b/perl-install/share/po/hu.po
@@ -10,7 +10,7 @@
msgid ""
msgstr ""
"Project-Id-Version: Mageia\n"
-"POT-Creation-Date: 2016-02-09 00:37+0100\n"
+"POT-Creation-Date: 2016-06-08 18:03+0200\n"
"PO-Revision-Date: 2016-03-01 09:24+0000\n"
"Last-Translator: Csaba Mészáros <pingvin@y2k.hu>\n"
"Language-Team: Hungarian (http://www.transifex.com/MageiaLinux/mageia/"
@@ -294,7 +294,12 @@ msgstr ""
"Itt láthatók az indítási menü jelenlegi bejegyzései.\n"
"Új bejegyzések vehetők fel, illetve módosíthatók a meglevők."
-#: any.pm:857
+#: any.pm:640
+#, c-format
+msgid "Probe Foreign OS"
+msgstr ""
+
+#: any.pm:864
#, c-format
msgid "access to X programs"
msgstr "hozzáférés az X-es programokhoz"
@@ -1044,7 +1049,12 @@ msgstr "LILO, szöveges menüvel"
msgid "GRUB2 with graphical menu"
msgstr "GRUB2, grafikus menüvel"
-#: bootloader.pm:1280
+#: bootloader.pm:1266
+#, fuzzy, c-format
+msgid "GRUB2 with text menu"
+msgstr "GRUB, szöveges menüvel"
+
+#: bootloader.pm:1267
#, c-format
msgid "GRUB with graphical menu"
msgstr "GRUB, grafikus menüvel"
diff --git a/perl-install/share/po/id.po b/perl-install/share/po/id.po
index 307edb8cb..355c4debe 100644
--- a/perl-install/share/po/id.po
+++ b/perl-install/share/po/id.po
@@ -16,7 +16,7 @@
msgid ""
msgstr ""
"Project-Id-Version: Mageia\n"
-"POT-Creation-Date: 2016-02-09 00:37+0100\n"
+"POT-Creation-Date: 2016-06-08 18:03+0200\n"
"PO-Revision-Date: 2016-02-09 07:19+0000\n"
"Last-Translator: Yuri Chornoivan <yurchor@ukr.net>\n"
"Language-Team: Indonesian (http://www.transifex.com/MageiaLinux/mageia/"
@@ -297,7 +297,12 @@ msgstr ""
"Ini adalah daftar pada menu boot Anda saat ini.\n"
"Anda bisa membuat entri tambahan atau mengubah yang sudah ada."
-#: any.pm:857
+#: any.pm:640
+#, c-format
+msgid "Probe Foreign OS"
+msgstr ""
+
+#: any.pm:864
#, c-format
msgid "access to X programs"
msgstr "akses ke program X"
@@ -1047,7 +1052,12 @@ msgstr "LILO dengan menu teks"
msgid "GRUB2 with graphical menu"
msgstr "GRUB2 dengan menu grafis"
-#: bootloader.pm:1280
+#: bootloader.pm:1266
+#, fuzzy, c-format
+msgid "GRUB2 with text menu"
+msgstr "GRUB dengan menu teks"
+
+#: bootloader.pm:1267
#, c-format
msgid "GRUB with graphical menu"
msgstr "GRUB dengan menu grafis"
diff --git a/perl-install/share/po/is.po b/perl-install/share/po/is.po
index 2caeba0af..0f47a1b6a 100644
--- a/perl-install/share/po/is.po
+++ b/perl-install/share/po/is.po
@@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Project-Id-Version: Mageia\n"
-"POT-Creation-Date: 2016-02-09 00:37+0100\n"
+"POT-Creation-Date: 2016-06-08 18:03+0200\n"
"PO-Revision-Date: 2015-04-13 15:22+0000\n"
"Last-Translator: Yuri Chornoivan <yurchor@ukr.net>\n"
"Language-Team: Icelandic (http://www.transifex.com/projects/p/mageia/"
@@ -288,7 +288,12 @@ msgstr ""
"Hérna eru núverandi færslur í ræsivalmynd.\n"
"Þú getur bætt við fleirum eða breytt þessum."
-#: any.pm:857
+#: any.pm:640
+#, c-format
+msgid "Probe Foreign OS"
+msgstr ""
+
+#: any.pm:864
#, c-format
msgid "access to X programs"
msgstr "aðgengi að X forritum"
@@ -1024,7 +1029,12 @@ msgstr "LILO með textavalmynd"
msgid "GRUB2 with graphical menu"
msgstr ""
-#: bootloader.pm:1280
+#: bootloader.pm:1266
+#, fuzzy, c-format
+msgid "GRUB2 with text menu"
+msgstr "GRUB með texavalmynd"
+
+#: bootloader.pm:1267
#, c-format
msgid "GRUB with graphical menu"
msgstr "GRUB með myndrænni valmynd"
diff --git a/perl-install/share/po/it.po b/perl-install/share/po/it.po
index daa8c6b11..40c0f98f4 100644
--- a/perl-install/share/po/it.po
+++ b/perl-install/share/po/it.po
@@ -11,7 +11,7 @@
msgid ""
msgstr ""
"Project-Id-Version: Mageia\n"
-"POT-Creation-Date: 2016-02-09 00:37+0100\n"
+"POT-Creation-Date: 2016-06-08 18:03+0200\n"
"PO-Revision-Date: 2016-02-09 07:19+0000\n"
"Last-Translator: Yuri Chornoivan <yurchor@ukr.net>\n"
"Language-Team: Italian (http://www.transifex.com/MageiaLinux/mageia/language/"
@@ -296,7 +296,12 @@ msgstr ""
"Finora ci sono queste voci nel menu di boot.\n"
"Puoi aggiungerne altre o cambiare quelle esistenti."
-#: any.pm:857
+#: any.pm:640
+#, c-format
+msgid "Probe Foreign OS"
+msgstr ""
+
+#: any.pm:864
#, c-format
msgid "access to X programs"
msgstr "accesso ai programmi X"
@@ -1049,7 +1054,12 @@ msgstr "LILO con menu testuale"
msgid "GRUB2 with graphical menu"
msgstr "GRUB2 con menu grafico"
-#: bootloader.pm:1280
+#: bootloader.pm:1266
+#, fuzzy, c-format
+msgid "GRUB2 with text menu"
+msgstr "GRUB con menu testuale"
+
+#: bootloader.pm:1267
#, c-format
msgid "GRUB with graphical menu"
msgstr "GRUB con menu grafico"
diff --git a/perl-install/share/po/ja.po b/perl-install/share/po/ja.po
index b8ec41ec6..e441333ad 100644
--- a/perl-install/share/po/ja.po
+++ b/perl-install/share/po/ja.po
@@ -7,7 +7,7 @@
msgid ""
msgstr ""
"Project-Id-Version: Mageia\n"
-"POT-Creation-Date: 2016-02-09 00:37+0100\n"
+"POT-Creation-Date: 2016-06-08 18:03+0200\n"
"PO-Revision-Date: 2016-02-09 07:19+0000\n"
"Last-Translator: Yuri Chornoivan <yurchor@ukr.net>\n"
"Language-Team: Japanese (http://www.transifex.com/MageiaLinux/mageia/"
@@ -289,7 +289,12 @@ msgstr ""
"起動メニューのエントリは以下のとおりです。\n"
"エントリは追加/変更できます。"
-#: any.pm:857
+#: any.pm:640
+#, c-format
+msgid "Probe Foreign OS"
+msgstr ""
+
+#: any.pm:864
#, c-format
msgid "access to X programs"
msgstr "X プログラムへのアクセス"
@@ -1013,7 +1018,12 @@ msgstr "LILO (テキスト表示)"
msgid "GRUB2 with graphical menu"
msgstr ""
-#: bootloader.pm:1280
+#: bootloader.pm:1266
+#, fuzzy, c-format
+msgid "GRUB2 with text menu"
+msgstr "GRUB (テキスト表示)"
+
+#: bootloader.pm:1267
#, c-format
msgid "GRUB with graphical menu"
msgstr "GRUB (グラフィカル表示)"
diff --git a/perl-install/share/po/ko.po b/perl-install/share/po/ko.po
index ef8e4aeb6..076b04604 100644
--- a/perl-install/share/po/ko.po
+++ b/perl-install/share/po/ko.po
@@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Project-Id-Version: Mageia\n"
-"POT-Creation-Date: 2016-02-09 00:37+0100\n"
+"POT-Creation-Date: 2016-06-08 18:03+0200\n"
"PO-Revision-Date: 2015-07-05 06:47+0000\n"
"Last-Translator: Yuri Chornoivan <yurchor@ukr.net>\n"
"Language-Team: Korean (http://www.transifex.com/MageiaLinux/mageia/language/"
@@ -288,7 +288,12 @@ msgstr ""
"몇 가지 항목이 여기에 표시되고 있습니다.\n"
"더 추가하거나, 기존의 것들을 수정할수 있습니다."
-#: any.pm:857
+#: any.pm:640
+#, c-format
+msgid "Probe Foreign OS"
+msgstr ""
+
+#: any.pm:864
#, c-format
msgid "access to X programs"
msgstr "X 프로그램 액세스"
@@ -1013,7 +1018,12 @@ msgstr "텍스트 메뉴 LILO"
msgid "GRUB2 with graphical menu"
msgstr ""
-#: bootloader.pm:1280
+#: bootloader.pm:1266
+#, fuzzy, c-format
+msgid "GRUB2 with text menu"
+msgstr "텍스트 메뉴 GRUB"
+
+#: bootloader.pm:1267
#, c-format
msgid "GRUB with graphical menu"
msgstr "그래픽 메뉴 GRUB"
diff --git a/perl-install/share/po/ky.po b/perl-install/share/po/ky.po
index 52754e375..f5b8b7b65 100644
--- a/perl-install/share/po/ky.po
+++ b/perl-install/share/po/ky.po
@@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Project-Id-Version: DrakX-ky\n"
-"POT-Creation-Date: 2016-02-09 00:37+0100\n"
+"POT-Creation-Date: 2016-06-08 18:03+0200\n"
"PO-Revision-Date: 2005-04-20 20:27+01000\n"
"Last-Translator: Nurlan Borubaev <nurlan@tamga.info>\n"
"Language-Team: Kyrgyz\n"
@@ -290,7 +290,12 @@ msgstr ""
"Учурда сиздин жүктөө менюңузда төмөнкүлөр бар.\n"
"Сиз кошумча пунктарды түзсөңүз же барларын өзгөртсөңүз болот."
-#: any.pm:857
+#: any.pm:640
+#, c-format
+msgid "Probe Foreign OS"
+msgstr ""
+
+#: any.pm:864
#, c-format
msgid "access to X programs"
msgstr "X программаларын пайдалануу уруксаты"
@@ -1038,7 +1043,12 @@ msgstr "LILO тексттик меню менен"
msgid "GRUB2 with graphical menu"
msgstr "GRUB графикалык меню менен"
-#: bootloader.pm:1280
+#: bootloader.pm:1266
+#, fuzzy, c-format
+msgid "GRUB2 with text menu"
+msgstr "GRUB текстик меню менен"
+
+#: bootloader.pm:1267
#, c-format
msgid "GRUB with graphical menu"
msgstr "GRUB графикалык меню менен"
diff --git a/perl-install/share/po/lt.po b/perl-install/share/po/lt.po
index 7af0aa047..87994c221 100644
--- a/perl-install/share/po/lt.po
+++ b/perl-install/share/po/lt.po
@@ -8,7 +8,7 @@
msgid ""
msgstr ""
"Project-Id-Version: Mageia\n"
-"POT-Creation-Date: 2016-02-09 00:37+0100\n"
+"POT-Creation-Date: 2016-06-08 18:03+0200\n"
"PO-Revision-Date: 2016-04-15 13:10+0000\n"
"Last-Translator: Moo\n"
"Language-Team: Lithuanian (http://www.transifex.com/MageiaLinux/mageia/"
@@ -280,7 +280,12 @@ msgstr ""
"Čia yra skirtingi įrašai.\n"
"Tu gali pakeisti esamus arba prijungti naujus."
-#: any.pm:857
+#: any.pm:640
+#, c-format
+msgid "Probe Foreign OS"
+msgstr ""
+
+#: any.pm:864
#, c-format
msgid "access to X programs"
msgstr ""
@@ -988,7 +993,12 @@ msgstr "LILO su tekstiniu meniu"
msgid "GRUB2 with graphical menu"
msgstr "GRUB2 su grafiniu meniu"
-#: bootloader.pm:1280
+#: bootloader.pm:1266
+#, fuzzy, c-format
+msgid "GRUB2 with text menu"
+msgstr "GRUB su tekstiniu meniu"
+
+#: bootloader.pm:1267
#, c-format
msgid "GRUB with graphical menu"
msgstr "GRUB su grafiniu meniu"
diff --git a/perl-install/share/po/ltg.po b/perl-install/share/po/ltg.po
index b2459d8d3..676f7fcdd 100644
--- a/perl-install/share/po/ltg.po
+++ b/perl-install/share/po/ltg.po
@@ -5,7 +5,7 @@
msgid ""
msgstr ""
"Project-Id-Version: DrakX\n"
-"POT-Creation-Date: 2016-02-09 00:37+0100\n"
+"POT-Creation-Date: 2016-06-08 18:03+0200\n"
"PO-Revision-Date: 2004-02-24 13:01+0200\n"
"Last-Translator: Māris Laureckis <linux@latgola.lv>\n"
"Language-Team: Latgalian <linux@latgola.lv>\n"
@@ -279,7 +279,12 @@ msgstr ""
"Ite ir dažaidi suokneišonys īroksti.\n"
"Jius varit pīvīnuot jaunus voi izmaineit esūšūs."
-#: any.pm:857
+#: any.pm:640
+#, c-format
+msgid "Probe Foreign OS"
+msgstr ""
+
+#: any.pm:864
#, c-format
msgid "access to X programs"
msgstr "pīkļuve X programmom"
@@ -1013,7 +1018,12 @@ msgstr "LILO ar teksta izvieļni"
msgid "GRUB2 with graphical menu"
msgstr ""
-#: bootloader.pm:1280
+#: bootloader.pm:1266
+#, fuzzy, c-format
+msgid "GRUB2 with text menu"
+msgstr "LILO ar teksta izvieļni"
+
+#: bootloader.pm:1267
#, c-format
msgid "GRUB with graphical menu"
msgstr ""
diff --git a/perl-install/share/po/lv.po b/perl-install/share/po/lv.po
index e09a5a710..0e12139e3 100644
--- a/perl-install/share/po/lv.po
+++ b/perl-install/share/po/lv.po
@@ -5,7 +5,7 @@
msgid ""
msgstr ""
"Project-Id-Version: Mageia\n"
-"POT-Creation-Date: 2016-02-09 00:37+0100\n"
+"POT-Creation-Date: 2016-06-08 18:03+0200\n"
"PO-Revision-Date: 2015-07-05 06:47+0000\n"
"Last-Translator: Yuri Chornoivan <yurchor@ukr.net>\n"
"Language-Team: Latvian (http://www.transifex.com/MageiaLinux/mageia/language/"
@@ -282,7 +282,12 @@ msgstr ""
"Šeit ir dažādi sāknēšanas ieraksti.\n"
"Jūs varat pievienot jaunus vai izmainīt esošos."
-#: any.pm:857
+#: any.pm:640
+#, c-format
+msgid "Probe Foreign OS"
+msgstr ""
+
+#: any.pm:864
#, c-format
msgid "access to X programs"
msgstr "piekļuve X programmām"
@@ -999,7 +1004,12 @@ msgstr "LILO ar teksta izvēlni"
msgid "GRUB2 with graphical menu"
msgstr ""
-#: bootloader.pm:1280
+#: bootloader.pm:1266
+#, fuzzy, c-format
+msgid "GRUB2 with text menu"
+msgstr "LILO ar teksta izvēlni"
+
+#: bootloader.pm:1267
#, c-format
msgid "GRUB with graphical menu"
msgstr ""
diff --git a/perl-install/share/po/mk.po b/perl-install/share/po/mk.po
index 935ad0632..d9afd3e00 100644
--- a/perl-install/share/po/mk.po
+++ b/perl-install/share/po/mk.po
@@ -11,7 +11,7 @@
msgid ""
msgstr ""
"Project-Id-Version: DrakX-mk\n"
-"POT-Creation-Date: 2016-02-09 00:37+0100\n"
+"POT-Creation-Date: 2016-06-08 18:03+0200\n"
"PO-Revision-Date: 2004-11-03 18:47+0100\n"
"Last-Translator: Зоран Димовски <decata@mt.net.mk>\n"
"Language-Team: Macedonian <mkde-l10n@lists.sourceforge.net>\n"
@@ -286,7 +286,12 @@ msgstr ""
"Ова се досегашните внесови на Вашето мени за подигање.\n"
"Можете да додадете уште или да ги промените постоечките."
-#: any.pm:857
+#: any.pm:640
+#, c-format
+msgid "Probe Foreign OS"
+msgstr ""
+
+#: any.pm:864
#, c-format
msgid "access to X programs"
msgstr "пристап до X програми"
@@ -1020,7 +1025,12 @@ msgstr "LILO со текстуално мени"
msgid "GRUB2 with graphical menu"
msgstr ""
-#: bootloader.pm:1280
+#: bootloader.pm:1266
+#, fuzzy, c-format
+msgid "GRUB2 with text menu"
+msgstr "LILO со текстуално мени"
+
+#: bootloader.pm:1267
#, c-format
msgid "GRUB with graphical menu"
msgstr ""
diff --git a/perl-install/share/po/mn.po b/perl-install/share/po/mn.po
index be4292c4b..62cae986a 100644
--- a/perl-install/share/po/mn.po
+++ b/perl-install/share/po/mn.po
@@ -7,7 +7,7 @@
msgid ""
msgstr ""
"Project-Id-Version: DrakX\n"
-"POT-Creation-Date: 2016-02-09 00:37+0100\n"
+"POT-Creation-Date: 2016-06-08 18:03+0200\n"
"PO-Revision-Date: 2004-01-02 00:35+0100\n"
"Last-Translator: Sanlig Badral <Badral@openmn.org>\n"
"Language-Team: Mongolian <openmn-core@lists.sf.net>\n"
@@ -275,7 +275,12 @@ msgid ""
"You can create additional entries or change the existing ones."
msgstr "Цэс."
-#: any.pm:857
+#: any.pm:640
+#, c-format
+msgid "Probe Foreign OS"
+msgstr ""
+
+#: any.pm:864
#, c-format
msgid "access to X programs"
msgstr ""
@@ -983,7 +988,12 @@ msgstr "текст"
msgid "GRUB2 with graphical menu"
msgstr ""
-#: bootloader.pm:1280
+#: bootloader.pm:1266
+#, fuzzy, c-format
+msgid "GRUB2 with text menu"
+msgstr "текст"
+
+#: bootloader.pm:1267
#, c-format
msgid "GRUB with graphical menu"
msgstr ""
diff --git a/perl-install/share/po/ms.po b/perl-install/share/po/ms.po
index 53c9a426a..be71ca012 100644
--- a/perl-install/share/po/ms.po
+++ b/perl-install/share/po/ms.po
@@ -5,7 +5,7 @@
msgid ""
msgstr ""
"Project-Id-Version: libDrakX\n"
-"POT-Creation-Date: 2016-02-09 00:37+0100\n"
+"POT-Creation-Date: 2016-06-08 18:03+0200\n"
"PO-Revision-Date: 2008-05-04 13:34+0800\n"
"Last-Translator: Sharuzzaman Ahmat Raslan <sharuzzaman@myrealbox.com>\n"
"Language-Team: Malay <translation-team-ms@lists.sourceforge.net>\n"
@@ -272,7 +272,12 @@ msgid ""
"You can create additional entries or change the existing ones."
msgstr "on."
-#: any.pm:857
+#: any.pm:640
+#, c-format
+msgid "Probe Foreign OS"
+msgstr ""
+
+#: any.pm:864
#, c-format
msgid "access to X programs"
msgstr "akses ke program X"
@@ -980,7 +985,12 @@ msgstr "Ganti teks dinyatakan dengan teks berlainan"
msgid "GRUB2 with graphical menu"
msgstr "Konfigurasi kemaskini menu selesai dg ERROR !!!"
-#: bootloader.pm:1280
+#: bootloader.pm:1266
+#, fuzzy, c-format
+msgid "GRUB2 with text menu"
+msgstr "Ganti teks dinyatakan dengan teks berlainan"
+
+#: bootloader.pm:1267
#, fuzzy, c-format
msgid "GRUB with graphical menu"
msgstr "Konfigurasi kemaskini menu selesai dg ERROR !!!"
diff --git a/perl-install/share/po/mt.po b/perl-install/share/po/mt.po
index 710853517..3cb15a9ef 100644
--- a/perl-install/share/po/mt.po
+++ b/perl-install/share/po/mt.po
@@ -7,7 +7,7 @@
msgid ""
msgstr ""
"Project-Id-Version: mt\n"
-"POT-Creation-Date: 2016-02-09 00:37+0100\n"
+"POT-Creation-Date: 2016-06-08 18:03+0200\n"
"PO-Revision-Date: 2004-10-04 18:45+0200\n"
"Last-Translator: Ramon Casha <ramon.casha@linux.org.mt>\n"
"Language-Team: Maltese <mt@li.org>\n"
@@ -289,7 +289,12 @@ msgstr ""
"Hawn huma l-elementi differenti>\n"
"Tista' żżid iżjed jew tibdel dawk li hemm."
-#: any.pm:857
+#: any.pm:640
+#, c-format
+msgid "Probe Foreign OS"
+msgstr ""
+
+#: any.pm:864
#, c-format
msgid "access to X programs"
msgstr "aċċess għall-programmi X"
@@ -1029,7 +1034,12 @@ msgstr "LILO b'menu testwali"
msgid "GRUB2 with graphical menu"
msgstr ""
-#: bootloader.pm:1280
+#: bootloader.pm:1266
+#, fuzzy, c-format
+msgid "GRUB2 with text menu"
+msgstr "LILO b'menu testwali"
+
+#: bootloader.pm:1267
#, c-format
msgid "GRUB with graphical menu"
msgstr ""
diff --git a/perl-install/share/po/nb.po b/perl-install/share/po/nb.po
index 060834516..89eec9bc3 100644
--- a/perl-install/share/po/nb.po
+++ b/perl-install/share/po/nb.po
@@ -16,7 +16,7 @@
msgid ""
msgstr ""
"Project-Id-Version: Mageia\n"
-"POT-Creation-Date: 2016-02-09 00:37+0100\n"
+"POT-Creation-Date: 2016-06-08 18:03+0200\n"
"PO-Revision-Date: 2015-05-26 19:12+0000\n"
"Last-Translator: Yuri Chornoivan <yurchor@ukr.net>\n"
"Language-Team: Norwegian Bokmål (http://www.transifex.com/projects/p/mageia/"
@@ -297,7 +297,12 @@ msgstr ""
"Her er de forskjellige oppføringene på oppstartsmenyen.\n"
"Du kan legge til flere eller endre de som er der."
-#: any.pm:857
+#: any.pm:640
+#, c-format
+msgid "Probe Foreign OS"
+msgstr ""
+
+#: any.pm:864
#, c-format
msgid "access to X programs"
msgstr "tilgang til X-programmer"
@@ -1035,7 +1040,12 @@ msgstr "LILO med tekstmeny"
msgid "GRUB2 with graphical menu"
msgstr ""
-#: bootloader.pm:1280
+#: bootloader.pm:1266
+#, fuzzy, c-format
+msgid "GRUB2 with text menu"
+msgstr "GRUB med tekstmeny"
+
+#: bootloader.pm:1267
#, c-format
msgid "GRUB with graphical menu"
msgstr "GRUB med grafisk meny"
diff --git a/perl-install/share/po/nl.po b/perl-install/share/po/nl.po
index edc0a7bdd..8a115a169 100644
--- a/perl-install/share/po/nl.po
+++ b/perl-install/share/po/nl.po
@@ -15,7 +15,7 @@
msgid ""
msgstr ""
"Project-Id-Version: libDrakX\n"
-"POT-Creation-Date: 2016-02-09 00:37+0100\n"
+"POT-Creation-Date: 2016-06-08 18:03+0200\n"
"PO-Revision-Date: 2016-01-02 22:42+0100\n"
"Last-Translator: Marja van Waes <marja@mageia.org>\n"
"Language-Team: Nederlands <i18n-nl@ml.mageia.org>\n"
@@ -299,7 +299,12 @@ msgstr ""
"Hier zijn de waardes voor uw opstartmenu tot dusver.\n"
"U kunt er enkele toevoegen of de bestaande wijzigen."
-#: any.pm:857
+#: any.pm:640
+#, c-format
+msgid "Probe Foreign OS"
+msgstr ""
+
+#: any.pm:864
#, c-format
msgid "access to X programs"
msgstr "toegang tot X-programma's"
@@ -1053,7 +1058,12 @@ msgstr "LILO met tekst-menu"
msgid "GRUB2 with graphical menu"
msgstr "GRUB2 met grafisch menu"
-#: bootloader.pm:1280
+#: bootloader.pm:1266
+#, fuzzy, c-format
+msgid "GRUB2 with text menu"
+msgstr "GRUB met tekstmenu"
+
+#: bootloader.pm:1267
#, c-format
msgid "GRUB with graphical menu"
msgstr "GRUB met grafisch menu"
diff --git a/perl-install/share/po/nn.po b/perl-install/share/po/nn.po
index d7855f84a..51600f6c6 100644
--- a/perl-install/share/po/nn.po
+++ b/perl-install/share/po/nn.po
@@ -4,7 +4,7 @@
msgid ""
msgstr ""
"Project-Id-Version: libDrakX\n"
-"POT-Creation-Date: 2016-02-09 00:37+0100\n"
+"POT-Creation-Date: 2016-06-08 18:03+0200\n"
"PO-Revision-Date: 2010-06-07 22:03+0200\n"
"Last-Translator: Karl Ove Hufthammer <karl@huftis.org>\n"
"Language-Team: Norwegian Nynorsk <i18n-nn@lister.ping.uio.no>\n"
@@ -285,7 +285,12 @@ msgstr ""
"Her er oppføringane på oppstartsmenyen.\n"
"Du kan leggja til fleire, eller endra dei som er der."
-#: any.pm:857
+#: any.pm:640
+#, c-format
+msgid "Probe Foreign OS"
+msgstr ""
+
+#: any.pm:864
#, c-format
msgid "access to X programs"
msgstr "tilgang til X-program"
@@ -1024,7 +1029,12 @@ msgstr "LILO med tekstmeny"
msgid "GRUB2 with graphical menu"
msgstr "GRUB med grafisk meny"
-#: bootloader.pm:1280
+#: bootloader.pm:1266
+#, fuzzy, c-format
+msgid "GRUB2 with text menu"
+msgstr "GRUB med tekstmeny"
+
+#: bootloader.pm:1267
#, c-format
msgid "GRUB with graphical menu"
msgstr "GRUB med grafisk meny"
diff --git a/perl-install/share/po/pa_IN.po b/perl-install/share/po/pa_IN.po
index 8f4bde32a..6ba94a53b 100644
--- a/perl-install/share/po/pa_IN.po
+++ b/perl-install/share/po/pa_IN.po
@@ -7,7 +7,7 @@
msgid ""
msgstr ""
"Project-Id-Version: DrakX\n"
-"POT-Creation-Date: 2016-02-09 00:37+0100\n"
+"POT-Creation-Date: 2016-06-08 18:03+0200\n"
"PO-Revision-Date: 2005-03-27 17:55+0530\n"
"Last-Translator: Jaswinder Singh Phulewala <jaswinderphulewala@yahoo.com>\n"
"Language-Team: Punjabi <punlinux-i18n@lists.soruceforge.net>\n"
@@ -287,7 +287,12 @@ msgstr ""
"ਇੱਥੇ ਤੁਹਾਡੇ ਬੂਟ ਮੇਨੂ ਉਪਰਲੀਆਂ ਇੰਦਰਾਜਾਂ ਹਨ।\n"
"ਤੁਸੀਂ ਵਾਧੂ ਇੰਦਰਾਜਾਂ ਬਣਾ ਜਾਂ ਮੌਜੂਦ ਨੂੰ ਤਬਦੀਲ ਕਰ ਸਕਦੇ ਹੋ।"
-#: any.pm:857
+#: any.pm:640
+#, c-format
+msgid "Probe Foreign OS"
+msgstr ""
+
+#: any.pm:864
#, c-format
msgid "access to X programs"
msgstr "X ਪ੍ਰੋਗਰਾਮਾਂ ਨੂੰ ਪਹੁੰਚ"
@@ -1019,7 +1024,12 @@ msgstr "ਪਾਠ ਮੇਨੂ ਨਾਲ LILO"
msgid "GRUB2 with graphical menu"
msgstr ""
-#: bootloader.pm:1280
+#: bootloader.pm:1266
+#, fuzzy, c-format
+msgid "GRUB2 with text menu"
+msgstr "ਪਾਠ ਮੇਨੂ ਨਾਲ LILO"
+
+#: bootloader.pm:1267
#, c-format
msgid "GRUB with graphical menu"
msgstr ""
diff --git a/perl-install/share/po/pl.po b/perl-install/share/po/pl.po
index 03a48476f..125eb85b5 100644
--- a/perl-install/share/po/pl.po
+++ b/perl-install/share/po/pl.po
@@ -18,7 +18,7 @@
msgid ""
msgstr ""
"Project-Id-Version: Mageia\n"
-"POT-Creation-Date: 2016-02-09 00:37+0100\n"
+"POT-Creation-Date: 2016-06-08 18:03+0200\n"
"PO-Revision-Date: 2016-02-09 07:19+0000\n"
"Last-Translator: Yuri Chornoivan <yurchor@ukr.net>\n"
"Language-Team: Polish (http://www.transifex.com/MageiaLinux/mageia/language/"
@@ -302,7 +302,12 @@ msgstr ""
"W menu startowym znajdują się następujące pozycje.\n"
"Można dodać następne lub zmienić istniejące."
-#: any.pm:857
+#: any.pm:640
+#, c-format
+msgid "Probe Foreign OS"
+msgstr ""
+
+#: any.pm:864
#, c-format
msgid "access to X programs"
msgstr "dostęp do programów X Window"
@@ -1055,7 +1060,12 @@ msgstr "LILO z menu tekstowym"
msgid "GRUB2 with graphical menu"
msgstr "GRUB2 z graficznym menu"
-#: bootloader.pm:1280
+#: bootloader.pm:1266
+#, fuzzy, c-format
+msgid "GRUB2 with text menu"
+msgstr "GRUB z tekstowym menu"
+
+#: bootloader.pm:1267
#, c-format
msgid "GRUB with graphical menu"
msgstr "GRUB z graficznym menu"
diff --git a/perl-install/share/po/pt.po b/perl-install/share/po/pt.po
index 373be1a78..5f74dc664 100644
--- a/perl-install/share/po/pt.po
+++ b/perl-install/share/po/pt.po
@@ -14,7 +14,7 @@
msgid ""
msgstr ""
"Project-Id-Version: Mageia\n"
-"POT-Creation-Date: 2016-02-09 00:37+0100\n"
+"POT-Creation-Date: 2016-06-08 18:03+0200\n"
"PO-Revision-Date: 2015-05-26 19:12+0000\n"
"Last-Translator: Yuri Chornoivan <yurchor@ukr.net>\n"
"Language-Team: Portuguese (http://www.transifex.com/projects/p/mageia/"
@@ -296,7 +296,12 @@ msgstr ""
"Aqui estão as entradas no seu menu de arranque.\n"
"Pode criar entradas adicionais ou mudar as existentes."
-#: any.pm:857
+#: any.pm:640
+#, c-format
+msgid "Probe Foreign OS"
+msgstr ""
+
+#: any.pm:864
#, c-format
msgid "access to X programs"
msgstr "acesso a programas X"
@@ -1049,7 +1054,12 @@ msgstr "LILO com menu textual"
msgid "GRUB2 with graphical menu"
msgstr ""
-#: bootloader.pm:1280
+#: bootloader.pm:1266
+#, fuzzy, c-format
+msgid "GRUB2 with text menu"
+msgstr "GRUB com menu textual"
+
+#: bootloader.pm:1267
#, c-format
msgid "GRUB with graphical menu"
msgstr "GRUB com menu gráfico"
diff --git a/perl-install/share/po/pt_BR.po b/perl-install/share/po/pt_BR.po
index 8876066c1..d9a459384 100644
--- a/perl-install/share/po/pt_BR.po
+++ b/perl-install/share/po/pt_BR.po
@@ -20,7 +20,7 @@
msgid ""
msgstr ""
"Project-Id-Version: Mageia\n"
-"POT-Creation-Date: 2016-02-09 00:37+0100\n"
+"POT-Creation-Date: 2016-06-08 18:03+0200\n"
"PO-Revision-Date: 2016-02-21 17:31+0000\n"
"Last-Translator: Marcio Andre Padula <padula1000@gmail.com>\n"
"Language-Team: Portuguese (Brazil) (http://www.transifex.com/MageiaLinux/"
@@ -304,7 +304,12 @@ msgstr ""
"Aqui estão as entradas contidas no menu de boot.\n"
"Você pode adicionar mais ou modificar as existentes."
-#: any.pm:857
+#: any.pm:640
+#, c-format
+msgid "Probe Foreign OS"
+msgstr ""
+
+#: any.pm:864
#, c-format
msgid "access to X programs"
msgstr "Acesso a programas X"
@@ -1061,7 +1066,12 @@ msgstr "LILO com menu de texto"
msgid "GRUB2 with graphical menu"
msgstr "GRUB2 com menu gráfico"
-#: bootloader.pm:1280
+#: bootloader.pm:1266
+#, fuzzy, c-format
+msgid "GRUB2 with text menu"
+msgstr "GRUB com menu de texto"
+
+#: bootloader.pm:1267
#, c-format
msgid "GRUB with graphical menu"
msgstr "GRUB com menu gráfico"
diff --git a/perl-install/share/po/ro.po b/perl-install/share/po/ro.po
index 8d8cccbf7..a723d61c1 100644
--- a/perl-install/share/po/ro.po
+++ b/perl-install/share/po/ro.po
@@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Project-Id-Version: Mageia\n"
-"POT-Creation-Date: 2016-02-09 00:37+0100\n"
+"POT-Creation-Date: 2016-06-08 18:03+0200\n"
"PO-Revision-Date: 2016-02-09 07:19+0000\n"
"Last-Translator: Yuri Chornoivan <yurchor@ukr.net>\n"
"Language-Team: Romanian (http://www.transifex.com/MageiaLinux/mageia/"
@@ -292,7 +292,12 @@ msgstr ""
"Acestea sînt intrările din meniul de pornire.\n"
"Puteți să mai adăugați și altele sau să le schimbați pe cele existente."
-#: any.pm:857
+#: any.pm:640
+#, c-format
+msgid "Probe Foreign OS"
+msgstr ""
+
+#: any.pm:864
#, c-format
msgid "access to X programs"
msgstr "acces la programele X"
@@ -1043,7 +1048,12 @@ msgstr "LILO cu meniu text"
msgid "GRUB2 with graphical menu"
msgstr "GRUB2 cu meniu grafic"
-#: bootloader.pm:1280
+#: bootloader.pm:1266
+#, fuzzy, c-format
+msgid "GRUB2 with text menu"
+msgstr "GRUB cu meniu text"
+
+#: bootloader.pm:1267
#, c-format
msgid "GRUB with graphical menu"
msgstr "GRUB cu meniu grafic"
diff --git a/perl-install/share/po/ru.po b/perl-install/share/po/ru.po
index 4d5d9826c..d6dfef916 100644
--- a/perl-install/share/po/ru.po
+++ b/perl-install/share/po/ru.po
@@ -16,7 +16,7 @@
msgid ""
msgstr ""
"Project-Id-Version: Mageia\n"
-"POT-Creation-Date: 2016-02-09 00:37+0100\n"
+"POT-Creation-Date: 2016-06-08 18:03+0200\n"
"PO-Revision-Date: 2016-01-02 17:47+0000\n"
"Last-Translator: AlexL <loginov.alex.valer@gmail.com>\n"
"Language-Team: Russian (http://www.transifex.com/MageiaLinux/mageia/language/"
@@ -302,7 +302,12 @@ msgstr ""
"На данный момент в вашем меню загрузки имеются следующие пункты.\n"
"Вы можете добавить еще несколько или изменить существующие."
-#: any.pm:857
+#: any.pm:640
+#, c-format
+msgid "Probe Foreign OS"
+msgstr ""
+
+#: any.pm:864
#, c-format
msgid "access to X programs"
msgstr "доступ к Х-программам"
@@ -1046,7 +1051,12 @@ msgstr "LILO с текстовым меню"
msgid "GRUB2 with graphical menu"
msgstr "GRUB2 с графическим меню"
-#: bootloader.pm:1280
+#: bootloader.pm:1266
+#, fuzzy, c-format
+msgid "GRUB2 with text menu"
+msgstr "GRUB с текстовым меню"
+
+#: bootloader.pm:1267
#, c-format
msgid "GRUB with graphical menu"
msgstr "GRUB с графическим меню"
diff --git a/perl-install/share/po/sc.po b/perl-install/share/po/sc.po
index 32f6993fc..994b1a884 100644
--- a/perl-install/share/po/sc.po
+++ b/perl-install/share/po/sc.po
@@ -5,7 +5,7 @@
msgid ""
msgstr ""
"Project-Id-Version: DrakX-sc\n"
-"POT-Creation-Date: 2016-02-09 00:37+0100\n"
+"POT-Creation-Date: 2016-06-08 18:03+0200\n"
"PO-Revision-Date: 2005-09-14 11:29+0100\n"
"Last-Translator: Antoni Pistis <antonio.pistis@virgilio.it>\n"
"Language-Team: Sardu\n"
@@ -281,7 +281,12 @@ msgstr ""
"Innoi dui funt is boxis de sa lista de alluidura finas a imoi.\n"
"Podis açungi atras boxis o mudai is ki nci funt."
-#: any.pm:857
+#: any.pm:640
+#, c-format
+msgid "Probe Foreign OS"
+msgstr ""
+
+#: any.pm:864
#, c-format
msgid "access to X programs"
msgstr "acessu a programas X"
@@ -1017,7 +1022,12 @@ msgstr "LILO cun lista scriturali"
msgid "GRUB2 with graphical menu"
msgstr "GRUB cun lista gràfiga"
-#: bootloader.pm:1280
+#: bootloader.pm:1266
+#, fuzzy, c-format
+msgid "GRUB2 with text menu"
+msgstr "GRUB cun lista scriturali"
+
+#: bootloader.pm:1267
#, c-format
msgid "GRUB with graphical menu"
msgstr "GRUB cun lista gràfiga"
diff --git a/perl-install/share/po/sk.po b/perl-install/share/po/sk.po
index 76b665f7c..f35f1f1f7 100644
--- a/perl-install/share/po/sk.po
+++ b/perl-install/share/po/sk.po
@@ -11,7 +11,7 @@
msgid ""
msgstr ""
"Project-Id-Version: Mageia\n"
-"POT-Creation-Date: 2016-02-09 00:37+0100\n"
+"POT-Creation-Date: 2016-06-08 18:03+0200\n"
"PO-Revision-Date: 2016-01-13 00:52+0000\n"
"Last-Translator: Jajo Pajo\n"
"Language-Team: Slovak (http://www.transifex.com/MageiaLinux/mageia/language/"
@@ -293,7 +293,12 @@ msgstr ""
"Momentálne sa tu nachádzajú tieto záznamy.\n"
"Môžete pridávať ďalšie alebo meniť existujúce."
-#: any.pm:857
+#: any.pm:640
+#, c-format
+msgid "Probe Foreign OS"
+msgstr ""
+
+#: any.pm:864
#, c-format
msgid "access to X programs"
msgstr "prístup ku X programom"
@@ -1038,7 +1043,12 @@ msgstr "LILO s textovým menu"
msgid "GRUB2 with graphical menu"
msgstr "GRUB2 s grafickým menu"
-#: bootloader.pm:1280
+#: bootloader.pm:1266
+#, fuzzy, c-format
+msgid "GRUB2 with text menu"
+msgstr "GRUB s textovým menu"
+
+#: bootloader.pm:1267
#, c-format
msgid "GRUB with graphical menu"
msgstr "GRUB s grafickým menu"
diff --git a/perl-install/share/po/sl.po b/perl-install/share/po/sl.po
index 5fbc3f1ba..779cf8dad 100644
--- a/perl-install/share/po/sl.po
+++ b/perl-install/share/po/sl.po
@@ -10,7 +10,7 @@
msgid ""
msgstr ""
"Project-Id-Version: drakx_share\n"
-"POT-Creation-Date: 2016-02-09 00:37+0100\n"
+"POT-Creation-Date: 2016-06-08 18:03+0200\n"
"PO-Revision-Date: 2016-02-09 19:46+0100\n"
"Last-Translator: Filip Komar <filip.komar@gmail.com>\n"
"Language-Team: Slovenian <lugos-slo@lugos.si>, Translation list <mageia-"
@@ -292,7 +292,12 @@ msgstr ""
"To so dosedanje možnosti zagona.\n"
"Lahko dodajate nove ali spreminjate obstoječe."
-#: any.pm:857
+#: any.pm:640
+#, c-format
+msgid "Probe Foreign OS"
+msgstr ""
+
+#: any.pm:864
#, c-format
msgid "access to X programs"
msgstr "dostop do programov X"
@@ -1033,7 +1038,12 @@ msgstr "LILO v besedilnem načinu."
msgid "GRUB2 with graphical menu"
msgstr "GRUB2 v grafičnem načinu"
-#: bootloader.pm:1280
+#: bootloader.pm:1266
+#, fuzzy, c-format
+msgid "GRUB2 with text menu"
+msgstr "GRUB v besedilnem načinu"
+
+#: bootloader.pm:1267
#, c-format
msgid "GRUB with graphical menu"
msgstr "GRUB v grafičnem načinu"
diff --git a/perl-install/share/po/sq.po b/perl-install/share/po/sq.po
index b63e70967..cbd392d2d 100644
--- a/perl-install/share/po/sq.po
+++ b/perl-install/share/po/sq.po
@@ -7,7 +7,7 @@
msgid ""
msgstr ""
"Project-Id-Version: Mageia\n"
-"POT-Creation-Date: 2016-02-09 00:37+0100\n"
+"POT-Creation-Date: 2016-06-08 18:03+0200\n"
"PO-Revision-Date: 2016-04-08 10:38+0000\n"
"Last-Translator: Ardit Dani <ardit.dani@gmail.com>\n"
"Language-Team: Albanian (http://www.transifex.com/MageiaLinux/mageia/"
@@ -284,7 +284,12 @@ msgstr ""
"Këto janë hyrjet e ndryshme në nisje udhëzuese.\n"
"Ju mund ta shtoni ndonjë të reja dhe ti ndryshoni hyrjet e më parme."
-#: any.pm:857
+#: any.pm:640
+#, c-format
+msgid "Probe Foreign OS"
+msgstr ""
+
+#: any.pm:864
#, c-format
msgid "access to X programs"
msgstr "hyrjer në programet grafike X"
@@ -1032,7 +1037,12 @@ msgstr "LILO në modë teksti"
msgid "GRUB2 with graphical menu"
msgstr ""
-#: bootloader.pm:1280
+#: bootloader.pm:1266
+#, fuzzy, c-format
+msgid "GRUB2 with text menu"
+msgstr "LILO në modë teksti"
+
+#: bootloader.pm:1267
#, c-format
msgid "GRUB with graphical menu"
msgstr ""
diff --git a/perl-install/share/po/sr.po b/perl-install/share/po/sr.po
index e0f529be4..c7e7b98df 100644
--- a/perl-install/share/po/sr.po
+++ b/perl-install/share/po/sr.po
@@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Project-Id-Version: DrakX\n"
-"POT-Creation-Date: 2016-02-09 00:37+0100\n"
+"POT-Creation-Date: 2016-06-08 18:03+0200\n"
"PO-Revision-Date: 2004-09-15 13:33+0200\n"
"Last-Translator: Toma Jankovic <tomaja@net.yu>\n"
"Language-Team: Serbian <i18n@mandrake.co.yu>\n"
@@ -283,7 +283,12 @@ msgstr ""
"Ово су постављне опције.\n"
"Можете додати нове или изменити старе."
-#: any.pm:857
+#: any.pm:640
+#, c-format
+msgid "Probe Foreign OS"
+msgstr ""
+
+#: any.pm:864
#, c-format
msgid "access to X programs"
msgstr "приступ X програмима"
@@ -1009,7 +1014,12 @@ msgstr "LILO са текстуалним менијем"
msgid "GRUB2 with graphical menu"
msgstr ""
-#: bootloader.pm:1280
+#: bootloader.pm:1266
+#, fuzzy, c-format
+msgid "GRUB2 with text menu"
+msgstr "LILO са текстуалним менијем"
+
+#: bootloader.pm:1267
#, c-format
msgid "GRUB with graphical menu"
msgstr ""
diff --git a/perl-install/share/po/sr@Latn.po b/perl-install/share/po/sr@Latn.po
index fd09ac9b9..20dc3511f 100644
--- a/perl-install/share/po/sr@Latn.po
+++ b/perl-install/share/po/sr@Latn.po