#!/usr/bin/perl # # Main author Pascal Rigaux (pixel@mandrakesoft.com) # Put together by Guillaume Cottenceau (gc@mandrakesoft.com) # # Copyright 1999,2000,2001 MandrakeSoft # # This software may be freely redistributed under the terms of the GNU # public license. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. # # # This code is extracted from DrakX, the Mandrake Linux graphical installer. # http://www.mandrakelinux.com/drakx/ # Open development rulz, find CVS here: # http://www.mandrakelinux.com/cgi-bin/cvsweb.cgi/gi/ # # Detects partition types using signatures # sub cat_ { local *F; open F, $_[0] or $_[1] ? die "cat of file $_[0] failed: $!\n" : return; my @l = ; wantarray ? @l : join '', @l } sub arch() { my $t = `uname -m`; chomp $t; $t; } # from Perl Cookbook / Pleac # http://pleac.sourceforge.net/pleac_perl/numbers.html#AEN121 sub commify { my $text = reverse $_[0]; $text =~ s/(\d\d\d)(?=\d)(?!\d*\.)/$1,/g; return scalar reverse $text; } my @partitions_signatures = ( [ 0x8e, 0, "HM\1\0" ], [ 0x83, 0x438, "\x53\xEF" ], [ 0x183, 0x10034, "ReIsErFs" ], [ 0x183, 0x10034, "ReIsEr2Fs" ], [ 0x283, 0, 'XFSB', 0x200, 'XAGF', 0x400, 'XAGI' ], [ 0x383, 0x8000, 'JFS1' ], [ 0x82, 4086, "SWAP-SPACE" ], [ 0x82, 4086, "SWAPSPACE2" ], [ 0x7, 0x1FE, "\x55\xAA", 0x3, "NTFS" ], [ 0xc, 0x1FE, "\x55\xAA", 0x52, "FAT32" ], arch() !~ /^sparc/ ? ( [ 0x6, 0x1FE, "\x55\xAA", 0x36, "FAT" ], ) : (), ); sub typeFromMagic { my $f = shift; local *F; sysopen F, $f, 0 or return; my $tmp; M: foreach (@partitions_signatures) { my ($name, @l) = @$_; while (@l) { my ($offset, $signature) = splice(@l, 0, 2); sysseek(F, $offset, 0) or next M; sysread(F, $tmp, length $signature); $tmp eq $signature or next M; } return $name; } return -1; } my %type2name = ( 0x1 => 'DOS 12-bit FAT', 0x4 => 'DOS 16-bit FAT (up to 32M)', 0x5 => 'DOS 3.3+ Extended Partition', 0x6 => 'DOS FAT16', 0x7 => 'NTFS (or HPFS)', 0xb => 'Win98 FAT32', 0xc => 'Win98 FAT32, LBA-mapped', 0xe => 'Win95: DOS 16-bit FAT, LBA-mapped', 0xf => 'Win95: Extended partition, LBA-mapped', 0x82 => 'Linux Swap', 0x83 => 'Ext2', 0x183 => 'ReiserFS', 0x283 => 'XFS', 0x383 => 'JFS', 0x85 => 'Linux extended partition', 0x87 => 'NTFS volume set', 0x8e => 'Linux LVM', -1 => 'unknown' ); my $params = join '', @ARGV; $params =~ /-h/ and die "usage: lsparts [-v]\n"; $params =~ /-v/ and $verbose = 1; my (undef, undef, @parts) = cat_('/proc/partitions'); P: foreach (@parts) { my (undef, undef, $blocks, $dev) = split or next; my %skip_conditions = ( "Skipping <$dev> because too little blocks ($blocks)" => ($blocks <= 1), "Skipping <$dev> because doesn't end with a number (e.g. seems to not be a partition)" => ($dev !~ /\d$/), ); $skip_conditions{$_} and ($verbose and print(STDERR $_, "\n")), next P foreach keys %skip_conditions; my $type = typeFromMagic("/dev/$dev"); $type and printf "$dev: %6s Mbytes, type <0x%0x> (%s)\n", commify($blocks >> 10), $type, $type2name{$type}; } #------------------------------------------------- #- $Log$ #- Revision 1.2 2002/01/10 21:28:15 gc #- better looking output of type of partition (%x => %0x) #- #- Revision 1.1 2001/10/24 22:34:01 gc #- - add a GUI to the rescue #- - provide guessmounts with better efficiency and output, go to console, and reboot #- - provide install_bootloader which runs lilo from /mnt if it seems safe #- - add lsparts to rescue, which prints partitions with detected types #- # Work'>user/animtim/designWork Mageia Installer and base platform for many utilitiesThierry Vignaud [tv]
summaryrefslogtreecommitdiffstats
path: root/perl-install/share/po
diff options
context:
space:
mode:
authorFunda Wang <fwang@mandriva.org>2005-03-18 19:36:23 +0000
committerFunda Wang <fwang@mandriva.org>2005-03-18 19:36:23 +0000
commitde59597f4603df04bb4249d45f46e06b3da1ad8c (patch)
tree678b57ffc0e6a53398da10d8a27eb2026c827157 /perl-install/share/po
parent7cacc169b89f3d3ec7f7489f90b849bb9e19bb33 (diff)
downloaddrakx-de59597f4603df04bb4249d45f46e06b3da1ad8c.tar
drakx-de59597f4603df04bb4249d45f46e06b3da1ad8c.tar.gz
drakx-de59597f4603df04bb4249d45f46e06b3da1ad8c.tar.bz2
drakx-de59597f4603df04bb4249d45f46e06b3da1ad8c.tar.xz
drakx-de59597f4603df04bb4249d45f46e06b3da1ad8c.zip
s/101errata/102errata for the next release. We often forget this.
Diffstat (limited to 'perl-install/share/po')
-rw-r--r--perl-install/share/po/DrakX.pot2
-rw-r--r--perl-install/share/po/af.po4
-rw-r--r--perl-install/share/po/am.po4
-rw-r--r--perl-install/share/po/ar.po4
-rw-r--r--perl-install/share/po/az.po4
-rw-r--r--perl-install/share/po/be.po4
-rw-r--r--perl-install/share/po/bg.po4
-rw-r--r--perl-install/share/po/bn.po4
-rw-r--r--perl-install/share/po/bs.po4
-rw-r--r--perl-install/share/po/ca.po4
-rw-r--r--perl-install/share/po/cs.po4
-rw-r--r--perl-install/share/po/cy.po4
-rw-r--r--perl-install/share/po/da.po4
-rw-r--r--perl-install/share/po/de.po4
-rw-r--r--perl-install/share/po/el.po4
-rw-r--r--perl-install/share/po/eo.po4
-rw-r--r--perl-install/share/po/es.po4
-rw-r--r--perl-install/share/po/et.po4
-rw-r--r--perl-install/share/po/eu.po4
-rw-r--r--perl-install/share/po/fa.po4
-rw-r--r--perl-install/share/po/fi.po4
-rw-r--r--perl-install/share/po/fr.po4
-rw-r--r--perl-install/share/po/fur.po2
-rw-r--r--perl-install/share/po/ga.po4
-rw-r--r--perl-install/share/po/gl.po4
-rw-r--r--perl-install/share/po/he.po4
-rw-r--r--perl-install/share/po/hi.po4
-rw-r--r--perl-install/share/po/hr.po4
-rw-r--r--perl-install/share/po/hu.po4
-rw-r--r--perl-install/share/po/id.po4
-rw-r--r--perl-install/share/po/is.po4
-rw-r--r--perl-install/share/po/it.po4
-rw-r--r--perl-install/share/po/ja.po4
-rw-r--r--perl-install/share/po/ko.po4
-rw-r--r--perl-install/share/po/ky.po2
-rw-r--r--perl-install/share/po/lt.po4
-rw-r--r--perl-install/share/po/ltg.po4
-rw-r--r--perl-install/share/po/lv.po4
-rw-r--r--perl-install/share/po/mk.po4
-rw-r--r--perl-install/share/po/mn.po4
-rw-r--r--perl-install/share/po/ms.po4
-rw-r--r--perl-install/share/po/mt.po4
-rw-r--r--perl-install/share/po/nb.po4
-rw-r--r--perl-install/share/po/nl.po4
-rw-r--r--perl-install/share/po/nn.po4
-rw-r--r--perl-install/share/po/pl.po4
-rw-r--r--perl-install/share/po/pt.po4
-rw-r--r--perl-install/share/po/pt_BR.po4
-rw-r--r--perl-install/share/po/ro.po4
-rw-r--r--perl-install/share/po/ru.po4
-rw-r--r--perl-install/share/po/sk.po4
-rw-r--r--perl-install/share/po/sl.po4
-rw-r--r--perl-install/share/po/sq.po4
-rw-r--r--perl-install/share/po/sr.po4
-rw-r--r--perl-install/share/po/sr@Latn.po4
-rw-r--r--perl-install/share/po/sv.po4
-rw-r--r--perl-install/share/po/ta.po4
-rw-r--r--perl-install/share/po/tg.po4
-rw-r--r--perl-install/share/po/th.po4
-rw-r--r--perl-install/share/po/tl.po4
-rw-r--r--perl-install/share/po/tr.po4
-rw-r--r--perl-install/share/po/uk.po4
-rw-r--r--perl-install/share/po/uz.po4
-rw-r--r--perl-install/share/po/uz@Latn.po4
-rw-r--r--perl-install/share/po/vi.po4
-rw-r--r--perl-install/share/po/wa.po4
-rw-r--r--perl-install/share/po/zh_CN.po4
-rw-r--r--perl-install/share/po/zh_TW.po4
68 files changed, 133 insertions, 133 deletions
diff --git a/perl-install/share/po/DrakX.pot b/perl-install/share/po/DrakX.pot
index 5a552c286..b821c796a 100644
--- a/perl-install/share/po/DrakX.pot
+++ b/perl-install/share/po/DrakX.pot
@@ -4888,7 +4888,7 @@ msgstr ""
#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
#: install_messages.pm:144
#, c-format
-msgid "http://www.mandrakelinux.com/en/101errata.php3"
+msgid "http://www.mandrakelinux.com/en/102errata.php3"
msgstr ""
#: install_steps.pm:246
diff --git a/perl-install/share/po/af.po b/perl-install/share/po/af.po
index 8920299cc..b7e2eb5e2 100644
--- a/perl-install/share/po/af.po
+++ b/perl-install/share/po/af.po
@@ -6216,8 +6216,8 @@ msgstr ""
#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
#: install_messages.pm:144
#, c-format
-msgid "http://www.mandrakelinux.com/en/101errata.php3"
-msgstr "http://www.mandrakelinux.com/en/101errata.php3"
+msgid "http://www.mandrakelinux.com/en/102errata.php3"
+msgstr "http://www.mandrakelinux.com/en/102errata.php3"
#: install_steps.pm:246
#, c-format
diff --git a/perl-install/share/po/am.po b/perl-install/share/po/am.po
index 836c53842..b968e6217 100644
--- a/perl-install/share/po/am.po
+++ b/perl-install/share/po/am.po
@@ -5132,8 +5132,8 @@ msgstr ""
#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
#: install_messages.pm:144
#, c-format
-msgid "http://www.mandrakelinux.com/en/101errata.php3"
-msgstr "http://www.mandrakelinux.com/en/101errata.php3"
+msgid "http://www.mandrakelinux.com/en/102errata.php3"
+msgstr "http://www.mandrakelinux.com/en/102errata.php3"
#: install_steps.pm:246
#, fuzzy, c-format
diff --git a/perl-install/share/po/ar.po b/perl-install/share/po/ar.po
index 94af2d243..37d5bc915 100644
--- a/perl-install/share/po/ar.po
+++ b/perl-install/share/po/ar.po
@@ -6382,8 +6382,8 @@ msgstr ""
#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
#: install_messages.pm:144
#, c-format
-msgid "http://www.mandrakelinux.com/en/101errata.php3"
-msgstr "http://www.mandrakelinux.com/en/101errata.php3"
+msgid "http://www.mandrakelinux.com/en/102errata.php3"
+msgstr "http://www.mandrakelinux.com/en/102errata.php3"
#: install_steps.pm:246
#, c-format
diff --git a/perl-install/share/po/az.po b/perl-install/share/po/az.po
index 49e674ecd..d8816bc1a 100644
--- a/perl-install/share/po/az.po
+++ b/perl-install/share/po/az.po
@@ -6371,8 +6371,8 @@ msgstr ""
#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
#: install_messages.pm:144
#, c-format
-msgid "http://www.mandrakelinux.com/en/101errata.php3"
-msgstr "http://www.mandrakelinux.com/en/101errata.php3"
+msgid "http://www.mandrakelinux.com/en/102errata.php3"
+msgstr "http://www.mandrakelinux.com/en/102errata.php3"
#: install_steps.pm:246
#, c-format
diff --git a/perl-install/share/po/be.po b/perl-install/share/po/be.po
index b85919501..cd027b635 100644
--- a/perl-install/share/po/be.po
+++ b/perl-install/share/po/be.po
@@ -5189,8 +5189,8 @@ msgstr ""
#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
#: install_messages.pm:144
#, c-format
-msgid "http://www.mandrakelinux.com/en/101errata.php3"
-msgstr "http://www.mandrakelinux.com/en/101errata.php3"
+msgid "http://www.mandrakelinux.com/en/102errata.php3"
+msgstr "http://www.mandrakelinux.com/en/102errata.php3"
#: install_steps.pm:246
#, c-format
diff --git a/perl-install/share/po/bg.po b/perl-install/share/po/bg.po
index 70fbb0550..0f3ad472c 100644
--- a/perl-install/share/po/bg.po
+++ b/perl-install/share/po/bg.po
@@ -5983,8 +5983,8 @@ msgstr ""
#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
#: install_messages.pm:144
#, c-format
-msgid "http://www.mandrakelinux.com/en/101errata.php3"
-msgstr "http://www.mandrakelinux.com/en/101errata.php3"
+msgid "http://www.mandrakelinux.com/en/102errata.php3"
+msgstr "http://www.mandrakelinux.com/en/102errata.php3"
#: install_steps.pm:246
#, c-format
diff --git a/perl-install/share/po/bn.po b/perl-install/share/po/bn.po
index 292e92c82..44cebbeb9 100644
--- a/perl-install/share/po/bn.po
+++ b/perl-install/share/po/bn.po
@@ -5723,8 +5723,8 @@ msgstr ""
#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
#: install_messages.pm:144
#, c-format
-msgid "http://www.mandrakelinux.com/en/101errata.php3"
-msgstr "http://www.mandrakelinux.com/en/101errata.php3"
+msgid "http://www.mandrakelinux.com/en/102errata.php3"
+msgstr "http://www.mandrakelinux.com/en/102errata.php3"
#: install_steps.pm:246
#, c-format
diff --git a/perl-install/share/po/bs.po b/perl-install/share/po/bs.po
index 18e6be7f4..c3ea20f6c 100644
--- a/perl-install/share/po/bs.po
+++ b/perl-install/share/po/bs.po
@@ -6498,8 +6498,8 @@ msgstr ""
#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
#: install_messages.pm:144
#, c-format
-msgid "http://www.mandrakelinux.com/en/101errata.php3"
-msgstr "http://www.mandrakelinux.com/en/101errata.php3"
+msgid "http://www.mandrakelinux.com/en/102errata.php3"
+msgstr "http://www.mandrakelinux.com/en/102errata.php3"
#: install_steps.pm:246
#, c-format
diff --git a/perl-install/share/po/ca.po b/perl-install/share/po/ca.po
index dbbb7f214..7625ac570 100644
--- a/perl-install/share/po/ca.po
+++ b/perl-install/share/po/ca.po
@@ -6532,8 +6532,8 @@ msgstr ""
#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
#: install_messages.pm:144
#, c-format
-msgid "http://www.mandrakelinux.com/en/101errata.php3"
-msgstr "http://www.mandrakelinux.com/en/101errata.php3"
+msgid "http://www.mandrakelinux.com/en/102errata.php3"
+msgstr "http://www.mandrakelinux.com/en/102errata.php3"
#: install_steps.pm:246
#, c-format
diff --git a/perl-install/share/po/cs.po b/perl-install/share/po/cs.po
index 22934d469..07e1e858d 100644
--- a/perl-install/share/po/cs.po
+++ b/perl-install/share/po/cs.po
@@ -6471,8 +6471,8 @@ msgstr ""
#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
#: install_messages.pm:144
#, c-format
-msgid "http://www.mandrakelinux.com/en/101errata.php3"
-msgstr "http://www.mandrakelinux.com/en/101errata.php3"
+msgid "http://www.mandrakelinux.com/en/102errata.php3"
+msgstr "http://www.mandrakelinux.com/en/102errata.php3"
#: install_steps.pm:246
#, c-format
diff --git a/perl-install/share/po/cy.po b/perl-install/share/po/cy.po
index 1fde05a56..abcfcfc52 100644
--- a/perl-install/share/po/cy.po
+++ b/perl-install/share/po/cy.po
@@ -6440,8 +6440,8 @@ msgstr ""
#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
#: install_messages.pm:144
#, c-format
-msgid "http://www.mandrakelinux.com/en/101errata.php3"
-msgstr "http://www.mandrakelinux.com/en/101errata.php3"
+msgid "http://www.mandrakelinux.com/en/102errata.php3"
+msgstr "http://www.mandrakelinux.com/en/102errata.php3"
#: install_steps.pm:246
#, c-format
diff --git a/perl-install/share/po/da.po b/perl-install/share/po/da.po
index 6c46e5846..546d0075e 100644
--- a/perl-install/share/po/da.po
+++ b/perl-install/share/po/da.po
@@ -6387,8 +6387,8 @@ msgstr ""
#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
#: install_messages.pm:144
#, c-format
-msgid "http://www.mandrakelinux.com/en/101errata.php3"
-msgstr "http://www.mandrakelinux.com/en/101errata.php3"
+msgid "http://www.mandrakelinux.com/en/102errata.php3"
+msgstr "http://www.mandrakelinux.com/en/102errata.php3"
#: install_steps.pm:246
#, c-format
diff --git a/perl-install/share/po/de.po b/perl-install/share/po/de.po
index 28e812ccf..830cfe404 100644
--- a/perl-install/share/po/de.po
+++ b/perl-install/share/po/de.po
@@ -6611,8 +6611,8 @@ msgstr ""
#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
#: install_messages.pm:144
#, c-format
-msgid "http://www.mandrakelinux.com/en/101errata.php3"
-msgstr "http://www.mandrakelinux.com/en/101errata.php3"
+msgid "http://www.mandrakelinux.com/en/102errata.php3"
+msgstr "http://www.mandrakelinux.com/en/102errata.php3"
#: install_steps.pm:246
#, c-format
diff --git a/perl-install/share/po/el.po b/perl-install/share/po/el.po
index 13e911ed0..66c3abc60 100644
--- a/perl-install/share/po/el.po
+++ b/perl-install/share/po/el.po
@@ -6185,8 +6185,8 @@ msgstr ""
#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
#: install_messages.pm:144
#, c-format
-msgid "http://www.mandrakelinux.com/en/101errata.php3"
-msgstr "http://www.mandrakelinux.com/en/101errata.php3"
+msgid "http://www.mandrakelinux.com/en/102errata.php3"
+msgstr "http://www.mandrakelinux.com/en/102errata.php3"
#: install_steps.pm:246
#, c-format
diff --git a/perl-install/share/po/eo.po b/perl-install/share/po/eo.po
index e87bb1921..c951e7024 100644
--- a/perl-install/share/po/eo.po
+++ b/perl-install/share/po/eo.po
@@ -5425,8 +5425,8 @@ msgstr ""
#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
#: install_messages.pm:144
#, c-format
-msgid "http://www.mandrakelinux.com/en/101errata.php3"
-msgstr "http://www.mandrakelinux.com/en/101errata.php3"
+msgid "http://www.mandrakelinux.com/en/102errata.php3"
+msgstr "http://www.mandrakelinux.com/en/102errata.php3"
#: install_steps.pm:246
#, c-format
diff --git a/perl-install/share/po/es.po b/perl-install/share/po/es.po
index 79a8ad55d..7983bb042 100644
--- a/perl-install/share/po/es.po
+++ b/perl-install/share/po/es.po
@@ -6623,8 +6623,8 @@ msgstr ""
#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
#: install_messages.pm:144
#, c-format
-msgid "http://www.mandrakelinux.com/en/101errata.php3"
-msgstr "http://www.mandrakelinux.com/en/101errata.php3"
+msgid "http://www.mandrakelinux.com/en/102errata.php3"
+msgstr "http://www.mandrakelinux.com/en/102errata.php3"
#: install_steps.pm:246
#, c-format
diff --git a/perl-install/share/po/et.po b/perl-install/share/po/et.po
index b5f0e0e71..20995a1e5 100644
--- a/perl-install/share/po/et.po
+++ b/perl-install/share/po/et.po
@@ -6471,8 +6471,8 @@ msgstr ""
#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
#: install_messages.pm:144
#, c-format
-msgid "http://www.mandrakelinux.com/en/101errata.php3"
-msgstr "http://www.mandrakelinux.com/en/101errata.php3"
+msgid "http://www.mandrakelinux.com/en/102errata.php3"
+msgstr "http://www.mandrakelinux.com/en/102errata.php3"
#: install_steps.pm:246
#, c-format
diff --git a/perl-install/share/po/eu.po b/perl-install/share/po/eu.po
index 2a4ceb5a8..6579d211f 100644
--- a/perl-install/share/po/eu.po
+++ b/perl-install/share/po/eu.po
@@ -6537,8 +6537,8 @@ msgstr ""
#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
#: install_messages.pm:144
#, c-format
-msgid "http://www.mandrakelinux.com/en/101errata.php3"
-msgstr "http://www.mandrakelinux.com/en/101errata.php3"
+msgid "http://www.mandrakelinux.com/en/102errata.php3"
+msgstr "http://www.mandrakelinux.com/en/102errata.php3"
#: install_steps.pm:246
#, c-format
diff --git a/perl-install/share/po/fa.po b/perl-install/share/po/fa.po
index 1e374bcb7..c48d0f3b7 100644
--- a/perl-install/share/po/fa.po
+++ b/perl-install/share/po/fa.po
@@ -6442,8 +6442,8 @@ msgstr ""
#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
#: install_messages.pm:144
#, c-format
-msgid "http://www.mandrakelinux.com/en/101errata.php3"
-msgstr "http://www.mandrakelinux.com/en/101errata.php3"
+msgid "http://www.mandrakelinux.com/en/102errata.php3"
+msgstr "http://www.mandrakelinux.com/en/102errata.php3"
#: install_steps.pm:246
#, c-format
diff --git a/perl-install/share/po/fi.po b/perl-install/share/po/fi.po
index fa844f214..0d02c6f17 100644
--- a/perl-install/share/po/fi.po
+++ b/perl-install/share/po/fi.po
@@ -6596,8 +6596,8 @@ msgstr ""
#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
#: install_messages.pm:144
#, c-format
-msgid "http://www.mandrakelinux.com/en/101errata.php3"
-msgstr "http://www.mandrakelinux.com/en/101errata.php3"
+msgid "http://www.mandrakelinux.com/en/102errata.php3"
+msgstr "http://www.mandrakelinux.com/en/102errata.php3"
#: install_steps.pm:246
#, c-format
diff --git a/perl-install/share/po/fr.po b/perl-install/share/po/fr.po
index d5c286e28..8dc084b35 100644
--- a/perl-install/share/po/fr.po
+++ b/perl-install/share/po/fr.po
@@ -6655,8 +6655,8 @@ msgstr ""
#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
#: install_messages.pm:144
#, c-format
-msgid "http://www.mandrakelinux.com/en/101errata.php3"
-msgstr "http://www.mandrakelinux.com/en/101errata.php3"
+msgid "http://www.mandrakelinux.com/en/102errata.php3"
+msgstr "http://www.mandrakelinux.com/en/102errata.php3"
#: install_steps.pm:246
#, c-format
diff --git a/perl-install/share/po/fur.po b/perl-install/share/po/fur.po
index d71d79be1..e4bdc6a5e 100644
--- a/perl-install/share/po/fur.po
+++ b/perl-install/share/po/fur.po
@@ -5162,7 +5162,7 @@ msgstr ""
#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
#: install_messages.pm:144
#, c-format
-msgid "http://www.mandrakelinux.com/en/101errata.php3"
+msgid "http://www.mandrakelinux.com/en/102errata.php3"
msgstr ""
#: install_steps.pm:246
diff --git a/perl-install/share/po/ga.po b/perl-install/share/po/ga.po
index 3b6d381e3..bd5595d81 100644
--- a/perl-install/share/po/ga.po
+++ b/perl-install/share/po/ga.po
@@ -5159,8 +5159,8 @@ msgstr ""
#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
#: install_messages.pm:144
#, c-format
-msgid "http://www.mandrakelinux.com/en/101errata.php3"
-msgstr "http://www.mandrakelinux.com/en/101errata.php3"
+msgid "http://www.mandrakelinux.com/en/102errata.php3"
+msgstr "http://www.mandrakelinux.com/en/102errata.php3"
#: install_steps.pm:246
#, c-format
diff --git a/perl-install/share/po/gl.po b/perl-install/share/po/gl.po
index 655f562f5..97504535e 100644
--- a/perl-install/share/po/gl.po
+++ b/perl-install/share/po/gl.po
@@ -5538,8 +5538,8 @@ msgstr ""
#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
#: install_messages.pm:144
#, c-format
-msgid "http://www.mandrakelinux.com/en/101errata.php3"
-msgstr "http://www.mandrakelinux.com/en/101errata.php3"
+msgid "http://www.mandrakelinux.com/en/102errata.php3"
+msgstr "http://www.mandrakelinux.com/en/102errata.php3"
#: install_steps.pm:246
#, c-format
diff --git a/perl-install/share/po/he.po b/perl-install/share/po/he.po
index 92bcaee9e..8d8555750 100644
--- a/perl-install/share/po/he.po
+++ b/perl-install/share/po/he.po
@@ -5834,8 +5834,8 @@ msgstr ""
#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
#: install_messages.pm:144
#, c-format
-msgid "http://www.mandrakelinux.com/en/101errata.php3"
-msgstr "http://www.mandrakelinux.com/en/101errata.php3"
+msgid "http://www.mandrakelinux.com/en/102errata.php3"
+msgstr "http://www.mandrakelinux.com/en/102errata.php3"
#: install_steps.pm:246
#, c-format
diff --git a/perl-install/share/po/hi.po b/perl-install/share/po/hi.po
index 289da92b4..e4c6dfd56 100644
--- a/perl-install/share/po/hi.po
+++ b/perl-install/share/po/hi.po
@@ -5942,8 +5942,8 @@ msgstr ""
#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
#: install_messages.pm:144
#, c-format
-msgid "http://www.mandrakelinux.com/en/101errata.php3"
-msgstr "http://www.mandrakelinux.com/en/101errata.php3"
+msgid "http://www.mandrakelinux.com/en/102errata.php3"
+msgstr "http://www.mandrakelinux.com/en/102errata.php3"
#: install_steps.pm:246
#, c-format
diff --git a/perl-install/share/po/hr.po b/perl-install/share/po/hr.po
index cc7525cd3..d7586b051 100644
--- a/perl-install/share/po/hr.po
+++ b/perl-install/share/po/hr.po
@@ -6152,8 +6152,8 @@ msgstr ""
#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
#: install_messages.pm:144
#, c-format
-msgid "http://www.mandrakelinux.com/en/101errata.php3"
-msgstr "http://www.mandrakelinux.com/en/101errata.php3"
+msgid "http://www.mandrakelinux.com/en/102errata.php3"
+msgstr "http://www.mandrakelinux.com/en/102errata.php3"
#: install_steps.pm:246
#, c-format
diff --git a/perl-install/share/po/hu.po b/perl-install/share/po/hu.po
index 1cad16ea1..7274ae102 100644
--- a/perl-install/share/po/hu.po
+++ b/perl-install/share/po/hu.po
@@ -6530,8 +6530,8 @@ msgstr ""
#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
#: install_messages.pm:144
#, c-format
-msgid "http://www.mandrakelinux.com/en/101errata.php3"
-msgstr "http://www.mandrakelinux.com/en/101errata.php3"
+msgid "http://www.mandrakelinux.com/en/102errata.php3"
+msgstr "http://www.mandrakelinux.com/en/102errata.php3"
#: install_steps.pm:246
#, c-format
diff --git a/perl-install/share/po/id.po b/perl-install/share/po/id.po
index 476a198a7..cc0802d6c 100644
--- a/perl-install/share/po/id.po
+++ b/perl-install/share/po/id.po
@@ -6494,8 +6494,8 @@ msgstr ""
#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
#: install_messages.pm:144
#, c-format
-msgid "http://www.mandrakelinux.com/en/101errata.php3"
-msgstr "http://www.mandrakelinux.com/en/101errata.php3"
+msgid "http://www.mandrakelinux.com/en/102errata.php3"
+msgstr "http://www.mandrakelinux.com/en/102errata.php3"
#: install_steps.pm:246
#, c-format
diff --git a/perl-install/share/po/is.po b/perl-install/share/po/is.po
index 4f46b1bae..65b5687e5 100644
--- a/perl-install/share/po/is.po
+++ b/perl-install/share/po/is.po
@@ -5827,8 +5827,8 @@ msgstr ""
#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
#: install_messages.pm:144
#, c-format
-msgid "http://www.mandrakelinux.com/en/101errata.php3"
-msgstr "http://www.mandrakelinux.com/en/101errata.php3"
+msgid "http://www.mandrakelinux.com/en/102errata.php3"
+msgstr "http://www.mandrakelinux.com/en/102errata.php3"
#: install_steps.pm:246
#, c-format
diff --git a/perl-install/share/po/it.po b/perl-install/share/po/it.po
index 5cc551c44..dd5b3bc27 100644
--- a/perl-install/share/po/it.po
+++ b/perl-install/share/po/it.po
@@ -6609,8 +6609,8 @@ msgstr ""
#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
#: install_messages.pm:144
#, c-format
-msgid "http://www.mandrakelinux.com/en/101errata.php3"
-msgstr "http://www.mandrakelinux.com/en/101errata.php3"
+msgid "http://www.mandrakelinux.com/en/102errata.php3"
+msgstr "http://www.mandrakelinux.com/en/102errata.php3"
#: install_steps.pm:246
#, c-format
diff --git a/perl-install/share/po/ja.po b/perl-install/share/po/ja.po
index 80af39e56..392d8eb8a 100644
--- a/perl-install/share/po/ja.po
+++ b/perl-install/share/po/ja.po
@@ -6298,8 +6298,8 @@ msgstr ""
#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
#: install_messages.pm:144
#, c-format
-msgid "http://www.mandrakelinux.com/en/101errata.php3"
-msgstr "http://www.mandrakelinux.com/en/101errata.php3"
+msgid "http://www.mandrakelinux.com/en/102errata.php3"
+msgstr "http://www.mandrakelinux.com/en/102errata.php3"
#: install_steps.pm:246
#, c-format
diff --git a/perl-install/share/po/ko.po b/perl-install/share/po/ko.po
index f1ba8be5a..874ef53ff 100644
--- a/perl-install/share/po/ko.po
+++ b/perl-install/share/po/ko.po
@@ -5647,8 +5647,8 @@ msgstr ""
#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
#: install_messages.pm:144
#, c-format
-msgid "http://www.mandrakelinux.com/en/101errata.php3"
-msgstr "http://www.mandrakelinux.com/en/101errata.php3"
+msgid "http://www.mandrakelinux.com/en/102errata.php3"
+msgstr "http://www.mandrakelinux.com/en/102errata.php3"
#: install_steps.pm:246
#, c-format
diff --git a/perl-install/share/po/ky.po b/perl-install/share/po/ky.po
index 53acba564..4c711ec5e 100644
--- a/perl-install/share/po/ky.po
+++ b/perl-install/share/po/ky.po
@@ -5822,7 +5822,7 @@ msgstr ""
#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
#: install_messages.pm:144
#, c-format
-msgid "http://www.mandrakelinux.com/en/101errata.php3"
+msgid "http://www.mandrakelinux.com/en/102errata.php3"
msgstr ""
#: install_steps.pm:246
diff --git a/perl-install/share/po/lt.po b/perl-install/share/po/lt.po
index 4c01ab708..c02e87c9d 100644
--- a/perl-install/share/po/lt.po
+++ b/perl-install/share/po/lt.po
@@ -5571,8 +5571,8 @@ msgstr ""
#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
#: install_messages.pm:144
#, c-format
-msgid "http://www.mandrakelinux.com/en/101errata.php3"
-msgstr "http://www.mandrakelinux.com/en/101errata.php3"
+msgid "http://www.mandrakelinux.com/en/102errata.php3"
+msgstr "http://www.mandrakelinux.com/en/102errata.php3"
#: install_steps.pm:246
#, c-format
diff --git a/perl-install/share/po/ltg.po b/perl-install/share/po/ltg.po
index a8a1e4e75..8143faac8 100644
--- a/perl-install/share/po/ltg.po
+++ b/perl-install/share/po/ltg.po
@@ -5695,8 +5695,8 @@ msgstr ""
#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
#: install_messages.pm:144
#, c-format
-msgid "http://www.mandrakelinux.com/en/101errata.php3"
-msgstr "http://www.mandrakelinux.com/en/101errata.php3"
+msgid "http://www.mandrakelinux.com/en/102errata.php3"
+msgstr "http://www.mandrakelinux.com/en/102errata.php3"
#: install_steps.pm:246
#, c-format
diff --git a/perl-install/share/po/lv.po b/perl-install/share/po/lv.po
index 8a09a67f5..5e73fa263 100644
--- a/perl-install/share/po/lv.po
+++ b/perl-install/share/po/lv.po
@@ -5646,8 +5646,8 @@ msgstr ""
#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
#: install_messages.pm:144
#, c-format
-msgid "http://www.mandrakelinux.com/en/101errata.php3"
-msgstr "http://www.mandrakelinux.com/en/101errata.php3"
+msgid "http://www.mandrakelinux.com/en/102errata.php3"
+msgstr "http://www.mandrakelinux.com/en/102errata.php3"
#: install_steps.pm:246
#, c-format
diff --git a/perl-install/share/po/mk.po b/perl-install/share/po/mk.po
index 116d8135f..afabee885 100644
--- a/perl-install/share/po/mk.po
+++ b/perl-install/share/po/mk.po
@@ -6326,8 +6326,8 @@ msgstr ""
#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
#: install_messages.pm:144
#, c-format
-msgid "http://www.mandrakelinux.com/en/101errata.php3"
-msgstr "http://www.mandrakelinux.com/en/101errata.php3"
+msgid "http://www.mandrakelinux.com/en/102errata.php3"
+msgstr "http://www.mandrakelinux.com/en/102errata.php3"
#: install_steps.pm:246
#, c-format
diff --git a/perl-install/share/po/mn.po b/perl-install/share/po/mn.po
index f93f20d23..c1d4c3291 100644
--- a/perl-install/share/po/mn.po
+++ b/perl-install/share/po/mn.po
@@ -5228,8 +5228,8 @@ msgstr ""
#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
#: install_messages.pm:144
#, c-format
-msgid "http://www.mandrakelinux.com/en/101errata.php3"
-msgstr "http://www.mandrakelinux.com/en/101errata.php3"
+msgid "http://www.mandrakelinux.com/en/102errata.php3"
+msgstr "http://www.mandrakelinux.com/en/102errata.php3"
#: install_steps.pm:246
#, fuzzy, c-format
diff --git a/perl-install/share/po/ms.po b/perl-install/share/po/ms.po
index f06c249ae..6ff23f79e 100644
--- a/perl-install/share/po/ms.po
+++ b/perl-install/share/po/ms.po
@@ -5252,8 +5252,8 @@ msgstr "Tahniah dan on on dalam Pengguna."
#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
#: install_messages.pm:144
#, c-format
-msgid "http://www.mandrakelinux.com/en/101errata.php3"
-msgstr "http://www.mandrakelinux.com/en/101errata.php3"
+msgid "http://www.mandrakelinux.com/en/102errata.php3"
+msgstr "http://www.mandrakelinux.com/en/102errata.php3"
#: install_steps.pm:246
#, fuzzy, c-format
diff --git a/perl-install/share/po/mt.po b/perl-install/share/po/mt.po
index 69e52887b..b3b2eab67 100644
--- a/perl-install/share/po/mt.po
+++ b/perl-install/share/po/mt.po
@@ -6346,8 +6346,8 @@ msgstr ""
#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
#: install_messages.pm:144
#, c-format
-msgid "http://www.mandrakelinux.com/en/101errata.php3"
-msgstr "http://www.mandrakelinux.com/en/101errata.php3"
+msgid "http://www.mandrakelinux.com/en/102errata.php3"
+msgstr "http://www.mandrakelinux.com/en/102errata.php3"
#: install_steps.pm:246
#, c-format
diff --git a/perl-install/share/po/nb.po b/perl-install/share/po/nb.po
index b38c902d4..124851c72 100644
--- a/perl-install/share/po/nb.po
+++ b/perl-install/share/po/nb.po
@@ -6570,8 +6570,8 @@ msgstr ""
#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
#: install_messages.pm:144
#, c-format
-msgid "http://www.mandrakelinux.com/en/101errata.php3"
-msgstr "http://www.mandrakelinux.com/en/101errata.php3"
+msgid "http://www.mandrakelinux.com/en/102errata.php3"
+msgstr "http://www.mandrakelinux.com/en/102errata.php3"
#: install_steps.pm:246
#, c-format
diff --git a/perl-install/share/po/nl.po b/perl-install/share/po/nl.po
index d042856a1..eb9e90711 100644
--- a/perl-install/share/po/nl.po
+++ b/perl-install/share/po/nl.po
@@ -6596,8 +6596,8 @@ msgstr ""
#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
#: install_messages.pm:144
#, c-format
-msgid "http://www.mandrakelinux.com/en/101errata.php3"
-msgstr "http://www.mandrakelinux.com/nl/101errata.php3"
+msgid "http://www.mandrakelinux.com/en/102errata.php3"
+msgstr "http://www.mandrakelinux.com/nl/102errata.php3"
#: install_steps.pm:246
#, c-format
diff --git a/perl-install/share/po/nn.po b/perl-install/share/po/nn.po
index 51fd65a90..b141457b0 100644
--- a/perl-install/share/po/nn.po
+++ b/perl-install/share/po/nn.po
@@ -6007,8 +6007,8 @@ msgstr ""
#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
#: install_messages.pm:144
#, c-format
-msgid "http://www.mandrakelinux.com/en/101errata.php3"
-msgstr "http://www.mandrakelinux.com/en/101errata.php3"
+msgid "http://www.mandrakelinux.com/en/102errata.php3"
+msgstr "http://www.mandrakelinux.com/en/102errata.php3"
#: install_steps.pm:246
#, c-format
diff --git a/perl-install/share/po/pl.po b/perl-install/share/po/pl.po
index e82ee251f..4604fdbe2 100644
--- a/perl-install/share/po/pl.po
+++ b/perl-install/share/po/pl.po
@@ -6500,8 +6500,8 @@ msgstr ""
#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
#: install_messages.pm:144
#, c-format
-msgid "http://www.mandrakelinux.com/en/101errata.php3"
-msgstr "http://www.mandrakelinux.com/en/101errata.php3"
+msgid "http://www.mandrakelinux.com/en/102errata.php3"
+msgstr "http://www.mandrakelinux.com/en/102errata.php3"
#: install_steps.pm:246
#, c-format
diff --git a/perl-install/share/po/pt.po b/perl-install/share/po/pt.po
index 05d45cae3..565f8f721 100644
--- a/perl-install/share/po/pt.po
+++ b/perl-install/share/po/pt.po
@@ -6472,8 +6472,8 @@ msgstr ""
#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
#: install_messages.pm:144
#, c-format
-msgid "http://www.mandrakelinux.com/en/101errata.php3"
-msgstr "http://www.mandrakelinux.com/en/101errata.php3"
+msgid "http://www.mandrakelinux.com/en/102errata.php3"
+msgstr "http://www.mandrakelinux.com/en/102errata.php3"
#: install_steps.pm:246
#, c-format
diff --git a/perl-install/share/po/pt_BR.po b/perl-install/share/po/pt_BR.po
index 7f0ae30e4..b12574720 100644
--- a/perl-install/share/po/pt_BR.po
+++ b/perl-install/share/po/pt_BR.po
@@ -6417,8 +6417,8 @@ msgstr ""
#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
#: install_messages.pm:144
#, c-format
-msgid "http://www.mandrakelinux.com/en/101errata.php3"
-msgstr "http://www.mandrakelinux.com/en/101errata.php3"
+msgid "http://www.mandrakelinux.com/en/102errata.php3"
+msgstr "http://www.mandrakelinux.com/en/102errata.php3"
#: install_steps.pm:246
#, c-format
diff --git a/perl-install/share/po/ro.po b/perl-install/share/po/ro.po
index d4f3fc62a..70e020e5b 100644
--- a/perl-install/share/po/ro.po
+++ b/perl-install/share/po/ro.po
@@ -5323,8 +5323,8 @@ msgstr ""
#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
#: install_messages.pm:144
#, c-format
-msgid "http://www.mandrakelinux.com/en/101errata.php3"
-msgstr "http://www.mandrakelinux.com/en/101errata.php3"
+msgid "http://www.mandrakelinux.com/en/102errata.php3"
+msgstr "http://www.mandrakelinux.com/en/102errata.php3"
#: install_steps.pm:246
#, c-format
diff --git a/perl-install/share/po/ru.po b/perl-install/share/po/ru.po
index 9c9154a46..ed0c48229 100644
--- a/perl-install/share/po/ru.po
+++ b/perl-install/share/po/ru.po
@@ -6508,8 +6508,8 @@ msgstr ""
#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
#: install_messages.pm:144
#, c-format
-msgid "http://www.mandrakelinux.com/en/101errata.php3"
-msgstr "http://www.mandrakelinux.com/en/101errata.php3"
+msgid "http://www.mandrakelinux.com/en/102errata.php3"
+msgstr "http://www.mandrakelinux.com/en/102errata.php3"
#: install_steps.pm:246
#, c-format
diff --git a/perl-install/share/po/sk.po b/perl-install/share/po/sk.po
index ae32080db..4d0d5c5da 100644
--- a/perl-install/share/po/sk.po
+++ b/perl-install/share/po/sk.po
@@ -6632,8 +6632,8 @@ msgstr ""
#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
#: install_messages.pm:144
#, c-format
-msgid "http://www.mandrakelinux.com/en/101errata.php3"
-msgstr "http://www.mandrakelinux.com/en/101errata.php3"
+msgid "http://www.mandrakelinux.com/en/102errata.php3"
+msgstr "http://www.mandrakelinux.com/en/102errata.php3"
#: install_steps.pm:246
#, c-format
diff --git a/perl-install/share/po/sl.po b/perl-install/share/po/sl.po
index 3461ea466..797d105c5 100644
--- a/perl-install/share/po/sl.po
+++ b/perl-install/share/po/sl.po
@@ -6441,8 +6441,8 @@ msgstr ""
#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
#: install_messages.pm:144
#, c-format
-msgid "http://www.mandrakelinux.com/en/101errata.php3"
-msgstr "http://www.mandrakelinux.com/en/101errata.php3"
+msgid "http://www.mandrakelinux.com/en/102errata.php3"
+msgstr "http://www.mandrakelinux.com/en/102errata.php3"
#: install_steps.pm:246
#, c-format
diff --git a/perl-install/share/po/sq.po b/perl-install/share/po/sq.po
index add4d8a90..095d9a111 100644
--- a/perl-install/share/po/sq.po
+++ b/perl-install/share/po/sq.po
@@ -6403,8 +6403,8 @@ msgstr ""
#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
#: install_messages.pm:144
#, c-format
-msgid "http://www.mandrakelinux.com/en/101errata.php3"
-msgstr "http://www.mandrakelinux.com/en/101errata.php3"
+msgid "http://www.mandrakelinux.com/en/102errata.php3"
+msgstr "http://www.mandrakelinux.com/en/102errata.php3"
#: install_steps.pm:246
#, c-format
diff --git a/perl-install/share/po/sr.po b/perl-install/share/po/sr.po
index a3f96986e..ca6cfa774 100644
--- a/perl-install/share/po/sr.po
+++ b/perl-install/share/po/sr.po
@@ -6328,8 +6328,8 @@ msgstr ""
#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
#: install_messages.pm:144
#, c-format
-msgid "http://www.mandrakelinux.com/en/101errata.php3"
-msgstr "http://www.mandrakelinux.com/en/101errata.php3"
+msgid "http://www.mandrakelinux.com/en/102errata.php3"
+msgstr "http://www.mandrakelinux.com/en/102errata.php3"
#: install_steps.pm:246
#, c-format
diff --git a/perl-install/share/po/sr@Latn.po b/perl-install/share/po/sr@Latn.po
index 7dccf68df..891c3ccca 100644
--- a/perl-install/share/po/sr@Latn.po
+++ b/perl-install/share/po/sr@Latn.po
@@ -6337,8 +6337,8 @@ msgstr ""
#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
#: install_messages.pm:144
#, c-format
-msgid "http://www.mandrakelinux.com/en/101errata.php3"
-msgstr "http://www.mandrakelinux.com/en/101errata.php3"
+msgid "http://www.mandrakelinux.com/en/102errata.php3"
+msgstr "http://www.mandrakelinux.com/en/102errata.php3"
#: install_steps.pm:246
#, c-format
diff --git a/perl-install/share/po/sv.po b/perl-install/share/po/sv.po
index 2024f8394..e031d5a16 100644
--- a/perl-install/share/po/sv.po
+++ b/perl-install/share/po/sv.po
@@ -6476,8 +6476,8 @@ msgstr ""
#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
#: install_messages.pm:144
#, c-format
-msgid "http://www.mandrakelinux.com/en/101errata.php3"
-msgstr "http://www.mandrakelinux.com/en/101errata.php3"
+msgid "http://www.mandrakelinux.com/en/102errata.php3"
+msgstr "http://www.mandrakelinux.com/en/102errata.php3"
#: install_steps.pm:246
#, c-format
diff --git a/perl-install/share/po/ta.po b/perl-install/share/po/ta.po
index d283bc03c..9d070d42f 100644
--- a/perl-install/share/po/ta.po
+++ b/perl-install/share/po/ta.po
@@ -5997,8 +5997,8 @@ msgstr ""
#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
#: install_messages.pm:144
#, c-format
-msgid "http://www.mandrakelinux.com/en/101errata.php3"
-msgstr "http://www.mandrakelinux.com/en/101errata.php3"
+msgid "http://www.mandrakelinux.com/en/102errata.php3"
+msgstr "http://www.mandrakelinux.com/en/102errata.php3"
#: install_steps.pm:246
#, c-format
diff --git a/perl-install/share/po/tg.po b/perl-install/share/po/tg.po
index edd32dcb1..0f6470a9e 100644
--- a/perl-install/share/po/tg.po
+++ b/perl-install/share/po/tg.po
@@ -6566,8 +6566,8 @@ msgstr ""
#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
#: install_messages.pm:144
#, c-format
-msgid "http://www.mandrakelinux.com/en/101errata.php3"
-msgstr "http://www.mandrakelinux.com/en/101errata.php3"
+msgid "http://www.mandrakelinux.com/en/102errata.php3"
+msgstr "http://www.mandrakelinux.com/en/102errata.php3"
#: install_steps.pm:246
#, c-format
diff --git a/perl-install/share/po/th.po b/perl-install/share/po/th.po
index dd930b255..98c7df009 100644
--- a/perl-install/share/po/th.po
+++ b/perl-install/share/po/th.po
@@ -5373,8 +5373,8 @@ msgstr ""
#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
#: install_messages.pm:144
#, c-format
-msgid "http://www.mandrakelinux.com/en/101errata.php3"
-msgstr "http://www.mandrakelinux.com/en/101errata.php3"
+msgid "http://www.mandrakelinux.com/en/102errata.php3"
+msgstr "http://www.mandrakelinux.com/en/102errata.php3"
#: install_steps.pm:246
#, c-format
diff --git a/perl-install/share/po/tl.po b/perl-install/share/po/tl.po
index 150f20d81..7a8c2ce72 100644
--- a/perl-install/share/po/tl.po
+++ b/perl-install/share/po/tl.po
@@ -6649,8 +6649,8 @@ msgstr ""
#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
#: install_messages.pm:144
#, c-format
-msgid "http://www.mandrakelinux.com/en/101errata.php3"
-msgstr "http://www.mandrakelinux.com/en/101errata.php3"
+msgid "http://www.mandrakelinux.com/en/102errata.php3"
+msgstr "http://www.mandrakelinux.com/en/102errata.php3"
#: install_steps.pm:246
#, c-format
diff --git a/perl-install/share/po/tr.po b/perl-install/share/po/tr.po
index 8e016517a..747526e0f 100644
--- a/perl-install/share/po/tr.po
+++ b/perl-install/share/po/tr.po
@@ -6112,8 +6112,8 @@ msgstr ""
#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
#: install_messages.pm:144
#, c-format
-msgid "http://www.mandrakelinux.com/en/101errata.php3"
-msgstr "http://www.mandrakelinux.com/en/101errata.php3"
+msgid "http://www.mandrakelinux.com/en/102errata.php3"
+msgstr "http://www.mandrakelinux.com/en/102errata.php3"
#: install_steps.pm:246
#, c-format
diff --git a/perl-install/share/po/uk.po b/perl-install/share/po/uk.po
index 1e13b1505..6f3768a36 100644
--- a/perl-install/share/po/uk.po
+++ b/perl-install/share/po/uk.po
@@ -6485,8 +6485,8 @@ msgstr ""
#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
#: install_messages.pm:144
#, c-format
-msgid "http://www.mandrakelinux.com/en/101errata.php3"
-msgstr "http://www.mandrakelinux.com/en/101errata.php3"
+msgid "http://www.mandrakelinux.com/en/102errata.php3"
+msgstr "http://www.mandrakelinux.com/en/102errata.php3"
#: install_steps.pm:246
#, c-format
diff --git a/perl-install/share/po/uz.po b/perl-install/share/po/uz.po
index bc6828bea..a18fa4cfa 100644
--- a/perl-install/share/po/uz.po
+++ b/perl-install/share/po/uz.po
@@ -5395,8 +5395,8 @@ msgstr ""
#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
#: install_messages.pm:144
#, c-format
-msgid "http://www.mandrakelinux.com/en/101errata.php3"
-msgstr "http://www.mandrakelinux.com/en/101errata.php3"
+msgid "http://www.mandrakelinux.com/en/102errata.php3"
+msgstr "http://www.mandrakelinux.com/en/102errata.php3"
#: install_steps.pm:246
#, c-format
diff --git a/perl-install/share/po/uz@Latn.po b/perl-install/share/po/uz@Latn.po
index 1a9876ac2..a10f575d3 100644
--- a/perl-install/share/po/uz@Latn.po
+++ b/perl-install/share/po/uz@Latn.po
@@ -5408,8 +5408,8 @@ msgstr ""
#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
#: install_messages.pm:144
#, c-format
-msgid "http://www.mandrakelinux.com/en/101errata.php3"
-msgstr "http://www.mandrakelinux.com/en/101errata.php3"
+msgid "http://www.mandrakelinux.com/en/102errata.php3"
+msgstr "http://www.mandrakelinux.com/en/102errata.php3"
#: install_steps.pm:246
#, c-format
diff --git a/perl-install/share/po/vi.po b/perl-install/share/po/vi.po
index 489bf0bd1..4ad5eeb94 100644
--- a/perl-install/share/po/vi.po
+++ b/perl-install/share/po/vi.po
@@ -6352,8 +6352,8 @@ msgstr ""
#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
#: install_messages.pm:144
#, c-format
-msgid "http://www.mandrakelinux.com/en/101errata.php3"
-msgstr "http://www.mandrakelinux.com/en/101errata.php3"
+msgid "http://www.mandrakelinux.com/en/102errata.php3"
+msgstr "http://www.mandrakelinux.com/en/102errata.php3"
#: install_steps.pm:246
#, c-format
diff --git a/perl-install/share/po/wa.po b/perl-install/share/po/wa.po
index 153958a2a..49eb0d507 100644
--- a/perl-install/share/po/wa.po
+++ b/perl-install/share/po/wa.po
@@ -6421,8 +6421,8 @@ msgstr ""
#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
#: install_messages.pm:144
#, c-format
-msgid "http://www.mandrakelinux.com/en/101errata.php3"
-msgstr "http://www.mandrakelinux.com/en/101errata.php3"
+msgid "http://www.mandrakelinux.com/en/102errata.php3"
+msgstr "http://www.mandrakelinux.com/en/102errata.php3"
#: install_steps.pm:246
#, c-format
diff --git a/perl-install/share/po/zh_CN.po b/perl-install/share/po/zh_CN.po
index 3b41eaf6c..5a72ce5ab 100644
--- a/perl-install/share/po/zh_CN.po
+++ b/perl-install/share/po/zh_CN.po
@@ -6182,8 +6182,8 @@ msgstr ""
#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
#: install_messages.pm:144
#, c-format
-msgid "http://www.mandrakelinux.com/en/101errata.php3"
-msgstr "http://www.mandrakelinux.com/en/101errata.php3"
+msgid "http://www.mandrakelinux.com/en/102errata.php3"
+msgstr "http://www.mandrakelinux.com/en/102errata.php3"
#: install_steps.pm:246
#, c-format
diff --git a/perl-install/share/po/zh_TW.po b/perl-install/share/po/zh_TW.po
index 8ce88202e..237f67717 100644
--- a/perl-install/share/po/zh_TW.po
+++ b/perl-install/share/po/zh_TW.po
@@ -5822,8 +5822,8 @@ msgstr ""
#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
#: install_messages.pm:144
#, c-format
-msgid "http://www.mandrakelinux.com/en/101errata.php3"
-msgstr "http://www.mandrakelinux.com/en/101errata.php3"
+msgid "http://www.mandrakelinux.com/en/102errata.php3"
+msgstr "http://www.mandrakelinux.com/en/102errata.php3"
#: install_steps.pm:246
#, c-format