diff -pruN 120/check.d/biosgrub 120ubuntu3/check.d/biosgrub
--- 120/check.d/biosgrub	1970-01-01 00:00:00.000000000 +0000
+++ 120ubuntu3/check.d/biosgrub	2018-10-10 14:41:48.000000000 +0000
@@ -0,0 +1,88 @@
+#! /bin/sh
+
+. /lib/partman/lib/base.sh
+
+# Keep this in sync with grub-installer.
+want_method=
+ARCH="$(archdetect)"
+case $ARCH in
+    i386/mac|amd64/mac)
+	if [ -d /sys/firmware/efi ]; then
+	    want_method=efi
+	else
+	    want_method=biosgrub
+	fi
+	;;
+    i386/efi|amd64/efi)
+	want_method=efi
+	;;
+    i386/*|amd64/*|*-i386/*|*-amd64/*)
+	want_method=biosgrub
+	;;
+    *)
+	exit 0
+	;;
+esac
+
+# Do all the disks on this system use GPT?
+found_gpt=no
+found_non_gpt=no
+for dev in $DEVICES/*; do
+	[ -d "$dev" ] || continue
+	cd "$dev"
+	open_dialog GET_LABEL_TYPE
+	read_line label_type
+	close_dialog
+	if [ "$label_type" = gpt ]; then
+		found_gpt=yes
+	else
+		found_non_gpt=yes
+	fi
+done
+# For EFI we want to warn the user about a missing ESP partition regardless
+# of whether we have GPT or any non-GPT partitions.
+if [ "$want_method" != efi ]; then
+	if [ "$found_gpt" = no ] || [ "$found_non_gpt" = yes ]; then
+		# We might be intending to boot from one of the non-GPT disks.
+		exit 0
+	fi
+fi
+
+# Is there at least one EFI System Partition or BIOS Boot Partition, as
+# appropriate?
+have_bootable=no
+for dev in $DEVICES/*; do
+	[ -d "$dev" ] || continue
+	cd "$dev"
+	partitions=
+	open_dialog PARTITIONS
+	while { read_line num id size type fs path name; [ "$id" ]; }; do
+		[ "$fs" != free ] || continue
+		partitions="$partitions $id,$num"
+	done
+	close_dialog
+
+	for part in $partitions; do
+		id="${part%,*}"
+		num="${part#*,}"
+		[ -f "$id/method" ] || continue
+		method="$(cat "$id/method")"
+		if [ "$method" = "$want_method" ]; then
+			have_bootable=yes
+			break
+		fi
+	done
+done
+
+if [ "$have_bootable" = no ]; then
+	template="partman-partitioning/no_bootable_$want_method"
+	db_set "$template" true
+	db_input critical "$template" || true
+	db_go || true
+	db_get "$template"
+	if [ "$RET" = true ]; then
+		exit 1
+	fi
+fi
+
+exit 0
diff -pruN 120/check.d/_numbers 120ubuntu3/check.d/_numbers
--- 120/check.d/_numbers	1970-01-01 00:00:00.000000000 +0000
+++ 120ubuntu3/check.d/_numbers	2016-08-12 08:47:56.000000000 +0000
@@ -0,0 +1 @@
+08 biosgrub
diff -pruN 120/debian/changelog 120ubuntu3/debian/changelog
--- 120/debian/changelog	2018-01-15 05:55:03.000000000 +0000
+++ 120ubuntu3/debian/changelog	2020-05-28 16:55:46.000000000 +0000
@@ -1,3 +1,37 @@
+partman-partitioning (120ubuntu3) groovy; urgency=medium
+
+  * Default to GPT on amd64 for any fresh disk installs, be it bios or EFI.
+    LP: #1796260
+
+ -- Dimitri John Ledkov <xnox@ubuntu.com>  Thu, 28 May 2020 17:55:46 +0100
+
+partman-partitioning (120ubuntu2) cosmic; urgency=medium
+
+  * On EFI systems, make sure there's an ESP partition present regardless of
+    whether there's GPT or non-GPT partitions. We need to assume the user is
+    unaware of the consequences. (LP: #1783996)
+  * Change the wording of the missing ESP partition text to fit more all the
+    cases we are trying to handle.
+
+ -- Łukasz 'sil2100' Zemczak <lukasz.zemczak@ubuntu.com>  Wed, 10 Oct 2018 16:41:48 +0200
+
+partman-partitioning (120ubuntu1) bionic; urgency=low
+
+  * Merge from Debian unstable.  Remaining changes:
+    - DASD-FBA drives should still use msdos partition table, and not dasd
+      one.
+    - Add PATH, RAWMINSIZE, RAWPREFSIZE, and RAWMAXSIZE substitutions to
+      partman-partitioning/new_size in support of ubiquity's resize widget.
+    - Check that minimum filesystem sizes reported by tune2fs and ntfsresize
+      are between the minimum partition size and the current partition size;
+      if not, refuse to resize the partition at all.
+    - Save the swap size for ubiquity.
+    - On systems with only GPT disks, check that an EFI System Partition or
+      a BIOS Boot Partition exists, as appropriate.
+    - Detect "fsl" subarch for powerpc and set partition map to GPT.
+
+ -- Dimitri John Ledkov <xnox@ubuntu.com>  Wed, 17 Jan 2018 11:17:38 +0000
+
 partman-partitioning (120) unstable; urgency=medium
 
   [ Updated translations ]
@@ -52,6 +86,29 @@ partman-partitioning (115) unstable; urg
 
  -- Cyril Brulebois <kibi@debian.org>  Thu, 09 Mar 2017 19:43:52 +0100
 
+partman-partitioning (114ubuntu2) zesty; urgency=medium
+
+  * DASD-FBA drives should still use msdos partition table, and not dasd
+    one. LP: #1650300
+
+ -- Dimitri John Ledkov <xnox@ubuntu.com>  Thu, 12 Jan 2017 12:36:28 +0000
+
+partman-partitioning (114ubuntu1) zesty; urgency=low
+
+  [ Ubuntu Merge-o-Matic ]
+  * Merge from Debian unstable.  Remaining changes:
+    - Add PATH, RAWMINSIZE, RAWPREFSIZE, and RAWMAXSIZE substitutions to
+      partman-partitioning/new_size in support of ubiquity's resize widget.
+    - Check that minimum filesystem sizes reported by tune2fs and ntfsresize
+      are between the minimum partition size and the current partition size;
+      if not, refuse to resize the partition at all.
+    - Save the swap size for ubiquity.
+    - On systems with only GPT disks, check that an EFI System Partition or
+      a BIOS Boot Partition exists, as appropriate.
+    - Detect "fsl" subarch for powerpc and set partition map to GPT.
+
+ -- Dimitri John Ledkov <xnox@ubuntu.com>  Tue, 06 Dec 2016 14:18:27 +0100
+
 partman-partitioning (114) unstable; urgency=medium
 
   [ Viktor Mihajlovski ]
@@ -68,6 +125,23 @@ partman-partitioning (113) unstable; urg
 
  -- Christian Perrier <bubulle@debian.org>  Mon, 15 Aug 2016 10:42:14 +0200
 
+partman-partitioning (112ubuntu1) yakkety; urgency=medium
+
+  * Resynchronise with Debian.  Remaining changes:
+    - Add PATH, RAWMINSIZE, RAWPREFSIZE, and RAWMAXSIZE substitutions to
+      partman-partitioning/new_size in support of ubiquity's resize widget.
+    - Check that minimum filesystem sizes reported by tune2fs and ntfsresize
+      are between the minimum partition size and the current partition size;
+      if not, refuse to resize the partition at all.
+    - Save the swap size for ubiquity.
+    - On systems with only GPT disks, check that an EFI System Partition or
+      a BIOS Boot Partition exists, as appropriate.
+    - Detect "fsl" subarch for powerpc and set partition map to GPT.
+    - On s390x use msdos partition table by default, unless partman
+      advises dasd.
+
+ -- Dimitri John Ledkov <xnox@ubuntu.com>  Fri, 12 Aug 2016 09:52:51 +0100
+
 partman-partitioning (112) unstable; urgency=medium
 
   [ Aurelien Jarno ]
@@ -84,6 +158,37 @@ partman-partitioning (111) unstable; urg
 
  -- Christian Perrier <bubulle@debian.org>  Sun, 07 Feb 2016 18:31:43 +0100
 
+partman-partitioning (110ubuntu4) xenial; urgency=medium
+
+  [ Viktor Mihajlovski ]
+  * Revert to using msdos partitioning table on s390x as a fallback,
+    however use dasd partitioning table if advised to do so by
+    partman. LP: #1548411
+
+ -- Dimitri John Ledkov <xnox@ubuntu.com>  Mon, 29 Feb 2016 14:27:51 +0000
+
+partman-partitioning (110ubuntu3) xenial; urgency=medium
+
+  * Set s390x partitioning tables (parted label type) to dasd. LP:
+    #1534629, LP: #1527328, LP: #1537942.
+
+ -- Dimitri John Ledkov <xnox@ubuntu.com>  Tue, 09 Feb 2016 19:32:43 +0000
+
+partman-partitioning (110ubuntu1) xenial; urgency=medium
+
+  * Resynchronise with Debian.  Remaining changes:
+    - Add PATH, RAWMINSIZE, RAWPREFSIZE, and RAWMAXSIZE substitutions to
+      partman-partitioning/new_size in support of ubiquity's resize widget.
+    - Check that minimum filesystem sizes reported by tune2fs and ntfsresize
+      are between the minimum partition size and the current partition size;
+      if not, refuse to resize the partition at all.
+    - Save the swap size for ubiquity.
+    - On systems with only GPT disks, check that an EFI System Partition or
+      a BIOS Boot Partition exists, as appropriate.
+    - Detect "fsl" subarch for powerpc and set partition map to GPT.
+
+ -- Mathieu Trudel-Lapierre <mathieu-tl@ubuntu.com>  Tue, 22 Dec 2015 16:06:54 -0500
+
 partman-partitioning (110) unstable; urgency=medium
 
   [ Updated translations ]
@@ -113,6 +218,24 @@ partman-partitioning (107) unstable; urg
 
  -- Christian Perrier <bubulle@debian.org>  Mon, 09 Mar 2015 06:56:31 +0100
 
+partman-partitioning (106ubuntu1) vivid; urgency=medium
+
+  * Resynchronise with Debian.  Remaining changes:
+    - Add PATH, RAWMINSIZE, RAWPREFSIZE, and RAWMAXSIZE substitutions to
+      partman-partitioning/new_size in support of ubiquity's resize widget.
+    - Check that minimum filesystem sizes reported by tune2fs and ntfsresize
+      are between the minimum partition size and the current partition size;
+      if not, refuse to resize the partition at all.
+    - Save the swap size for ubiquity.
+    - On systems with only GPT disks, check that an EFI System Partition or
+      a BIOS Boot Partition exists, as appropriate.
+    - Detect "fsl" subarch for powerpc and set partition map to GPT.
+  * Dropped changes:
+    - Make sure to wipe disk label on Sun disks before creating a new one.
+    - Use mac as the default disk label on ppc64.
+
+ -- Colin Watson <cjwatson@ubuntu.com>  Mon, 17 Nov 2014 13:52:43 +0000
+
 partman-partitioning (106) unstable; urgency=low
 
   [ Updated translations ]
@@ -158,6 +281,27 @@ partman-partitioning (102) unstable; urg
 
  -- Aurelien Jarno <aurel32@debian.org>  Sat, 12 Jul 2014 17:08:15 +0200
 
+partman-partitioning (101ubuntu1) utopic; urgency=medium
+
+  * Resynchronise with Debian.  Remaining changes:
+    - Make sure to wipe disk label on Sun disks before creating a new one.
+    - Depend on ntfs-3g-udeb as well as ntfsprogs-udeb.
+    - Add PATH, RAWMINSIZE, RAWPREFSIZE, and RAWMAXSIZE substitutions to
+      partman-partitioning/new_size in support of ubiquity's resize widget.
+    - Cache calls to tune2fs and ntfsresize, to make navigating through the
+      resize UI a little faster.
+    - Check that minimum filesystem sizes reported by tune2fs and ntfsresize
+      are between the minimum partition size and the current partition size;
+      if not, refuse to resize the partition at all.
+    - Use mac as the default disk label on ppc64.
+    - Save the swap size for ubiquity.
+    - On systems with only GPT disks, check that an EFI System Partition or
+      a BIOS Boot Partition exists, as appropriate.
+    - Detect "fsl" subarch for powerpc and set partition map to GPT.
+    - Use GPT as the default disk label on ppc64el.
+
+ -- Colin Watson <cjwatson@ubuntu.com>  Mon, 07 Jul 2014 11:14:42 +0100
+
 partman-partitioning (101) unstable; urgency=low
 
   [ Phillip Susi ]
@@ -194,6 +338,27 @@ partman-partitioning (100) unstable; urg
 
  -- Cyril Brulebois <kibi@debian.org>  Fri, 14 Mar 2014 18:48:35 +0100
 
+partman-partitioning (99ubuntu1) trusty; urgency=medium
+
+  * Resynchronise with Debian (LP: #1263756).  Remaining changes:
+    - Make sure to wipe disk label on Sun disks before creating a new one.
+    - Depend on ntfs-3g-udeb as well as ntfsprogs-udeb.
+    - Add PATH, RAWMINSIZE, RAWPREFSIZE, and RAWMAXSIZE substitutions to
+      partman-partitioning/new_size in support of ubiquity's resize widget.
+    - Cache calls to tune2fs and ntfsresize, to make navigating through the
+      resize UI a little faster.
+    - Check that minimum filesystem sizes reported by tune2fs and ntfsresize
+      are between the minimum partition size and the current partition size;
+      if not, refuse to resize the partition at all.
+    - Use mac as the default disk label on ppc64.
+    - Save the swap size for ubiquity.
+    - On systems with only GPT disks, check that an EFI System Partition or
+      a BIOS Boot Partition exists, as appropriate.
+    - Detect "fsl" subarch for powerpc and set partition map to GPT.
+  * Use GPT as the default disk label on ppc64el.
+
+ -- Colin Watson <cjwatson@ubuntu.com>  Mon, 27 Jan 2014 16:16:10 +0000
+
 partman-partitioning (99) unstable; urgency=low
 
   [ Updated translations ]
@@ -271,6 +436,32 @@ partman-partitioning (90) unstable; urge
 
  -- Christian Perrier <bubulle@debian.org>  Wed, 26 Dec 2012 07:56:50 +0100
 
+partman-partitioning (89ubuntu2) raring; urgency=low
+
+  * Detect "fsl" subarch for powerpc and set partion map to gpt
+
+ -- Ben Collins <ben.c@servergy.com>  Thu, 17 Jan 2013 14:23:43 -0500
+
+partman-partitioning (89ubuntu1) raring; urgency=low
+
+  * Resynchronise with Debian.  Remaining changes:
+    - Make sure to wipe disk label on Sun disks before creating a new one.
+    - Depend on ntfs-3g-udeb as well as ntfsprogs-udeb.
+    - Add PATH, RAWMINSIZE, RAWPREFSIZE, and RAWMAXSIZE substitutions to
+      partman-partitioning/new_size in support of ubiquity's resize widget.
+    - Cache calls to tune2fs and ntfsresize, to make navigating through the
+      resize UI a little faster.
+    - Check that minimum filesystem sizes reported by tune2fs and ntfsresize
+      are between the minimum partition size and the current partition size;
+      if not, refuse to resize the partition at all.
+    - Support archdetect being anywhere on PATH.
+    - Use mac as the default disk label on ppc64.
+    - Save the swap size for ubiquity.
+    - On systems with only GPT disks, check that an EFI System Partition or
+      a BIOS Boot Partition exists, as appropriate.
+
+ -- Colin Watson <cjwatson@ubuntu.com>  Tue, 04 Dec 2012 00:25:13 +0000
+
 partman-partitioning (89) unstable; urgency=low
 
   * Add myself to Uploaders and remove Anton Zinoviev (now inactive)
@@ -288,6 +479,28 @@ partman-partitioning (88) unstable; urge
 
  -- Cyril Brulebois <kibi@debian.org>  Thu, 20 Sep 2012 14:33:48 +0200
 
+partman-partitioning (87ubuntu1) quantal; urgency=low
+
+  * Resynchronise with Debian.  Remaining changes:
+    - Make sure to wipe disk label on Sun disks before creating a new one.
+    - Depend on ntfs-3g-udeb as well as ntfsprogs-udeb.
+    - Add PATH, RAWMINSIZE, RAWPREFSIZE, and RAWMAXSIZE substitutions to
+      partman-partitioning/new_size in support of ubiquity's resize widget.
+    - Cache calls to tune2fs and ntfsresize, to make navigating through the
+      resize UI a little faster.
+    - Check that minimum filesystem sizes reported by tune2fs and ntfsresize
+      are between the minimum partition size and the current partition size;
+      if not, refuse to resize the partition at all.
+    - Use the GPT disk label by default on *i386/efi and *amd64/efi
+      subarchitectures.
+    - Support archdetect being anywhere on PATH.
+    - Use mac as the default disk label on ppc64.
+    - Save the swap size for ubiquity.
+    - On systems with only GPT disks, check that an EFI System Partition or
+      a BIOS Boot Partition exists, as appropriate.
+
+ -- Colin Watson <cjwatson@ubuntu.com>  Fri, 10 Aug 2012 15:24:57 +0100
+
 partman-partitioning (87) unstable; urgency=low
 
   * Team upload
@@ -316,6 +529,34 @@ partman-partitioning (86) unstable; urge
 
  -- Christian Perrier <bubulle@debian.org>  Fri, 15 Jun 2012 12:50:04 +0200
 
+partman-partitioning (85ubuntu2) precise; urgency=low
+
+  * Update Ubuntu-specific translations from Launchpad.
+
+ -- Colin Watson <cjwatson@ubuntu.com>  Wed, 11 Apr 2012 16:07:03 +0100
+
+partman-partitioning (85ubuntu1) precise; urgency=low
+
+  * Resynchronise with Debian.  Remaining changes:
+    - Make sure to wipe disk label on Sun disks before creating a new one.
+    - Depend on ntfs-3g-udeb as well as ntfsprogs-udeb.
+    - Add PATH, RAWMINSIZE, RAWPREFSIZE, and RAWMAXSIZE substitutions to
+      partman-partitioning/new_size in support of ubiquity's resize widget.
+    - Cache calls to tune2fs and ntfsresize, to make navigating through the
+      resize UI a little faster.
+    - Check that minimum filesystem sizes reported by tune2fs and ntfsresize
+      are between the minimum partition size and the current partition size;
+      if not, refuse to resize the partition at all.
+    - Use the GPT disk label by default on *i386/efi and *amd64/efi
+      subarchitectures.
+    - Support archdetect being anywhere on PATH.
+    - Use mac as the default disk label on ppc64.
+    - Save the swap size for ubiquity.
+    - On systems with only GPT disks, check that an EFI System Partition or
+      a BIOS Boot Partition exists, as appropriate.
+
+ -- Colin Watson <cjwatson@ubuntu.com>  Fri, 30 Mar 2012 15:20:01 +0100
+
 partman-partitioning (85) unstable; urgency=low
 
   * Allow overriding the default disk label selection by preseeding
@@ -345,6 +586,33 @@ partman-partitioning (84) unstable; urge
 
  -- Otavio Salvador <otavio@debian.org>  Thu, 15 Mar 2012 15:10:16 -0300
 
+partman-partitioning (83ubuntu2) precise; urgency=low
+
+  * On systems with only GPT disks, check that an EFI System Partition or a
+    BIOS Boot Partition exists, as appropriate (LP: #855871).
+
+ -- Colin Watson <cjwatson@ubuntu.com>  Tue, 20 Mar 2012 18:17:34 +0000
+
+partman-partitioning (83ubuntu1) precise; urgency=low
+
+  * Resynchronise with Debian.  Remaining changes:
+    - Make sure to wipe disk label on Sun disks before creating a new one.
+    - Depend on ntfs-3g-udeb as well as ntfsprogs-udeb.
+    - Add PATH, RAWMINSIZE, RAWPREFSIZE, and RAWMAXSIZE substitutions to
+      partman-partitioning/new_size in support of ubiquity's resize widget.
+    - Cache calls to tune2fs and ntfsresize, to make navigating through the
+      resize UI a little faster.
+    - Check that minimum filesystem sizes reported by tune2fs and ntfsresize
+      are between the minimum partition size and the current partition size;
+      if not, refuse to resize the partition at all.
+    - Use the GPT disk label by default on *i386/efi and *amd64/efi
+      subarchitectures.
+    - Support archdetect being anywhere on PATH.
+    - Use mac as the default disk label on ppc64.
+    - Save the swap size for ubiquity.
+
+ -- Evan Dandrea <ev@ubuntu.com>  Wed, 19 Oct 2011 11:07:37 +0100
+
 partman-partitioning (83) unstable; urgency=low
 
   [ Colin Watson ]
@@ -376,6 +644,38 @@ partman-partitioning (82) unstable; urge
 
  -- Colin Watson <cjwatson@debian.org>  Thu, 02 Jun 2011 11:04:36 +0100
 
+partman-partitioning (81ubuntu3) oneiric; urgency=low
+
+  * Save the swap size for ubiquity (LP: #769350).
+
+ -- Evan Dandrea <ev@ubuntu.com>  Wed, 05 Oct 2011 16:58:43 +0100
+
+partman-partitioning (81ubuntu2) oneiric; urgency=low
+
+  * Drop ntfsprogs-udeb dependency and switch to ntfs-3g-udeb across the
+    board, now that it includes ntfsresize.
+
+ -- Colin Watson <cjwatson@ubuntu.com>  Tue, 16 Aug 2011 16:43:32 +0100
+
+partman-partitioning (81ubuntu1) oneiric; urgency=low
+
+  * Resynchronise with Debian.  Remaining changes:
+    - Make sure to wipe disk label on Sun disks before creating a new one.
+    - Depend on ntfs-3g-udeb as well as ntfsprogs-udeb.
+    - Add PATH, RAWMINSIZE, RAWPREFSIZE, and RAWMAXSIZE substitutions to
+      partman-partitioning/new_size in support of ubiquity's resize widget.
+    - Cache calls to tune2fs and ntfsresize, to make navigating through the
+      resize UI a little faster.
+    - Check that minimum filesystem sizes reported by tune2fs and ntfsresize
+      are between the minimum partition size and the current partition size;
+      if not, refuse to resize the partition at all.
+    - Use the GPT disk label by default on *i386/efi and *amd64/efi
+      subarchitectures.
+    - Support archdetect being anywhere on PATH.
+    - Use mac as the default disk label on ppc64.
+
+ -- Colin Watson <cjwatson@ubuntu.com>  Tue, 03 May 2011 12:59:53 +0100
+
 partman-partitioning (81) unstable; urgency=low
 
   [ Updated translations ]
@@ -397,6 +697,96 @@ partman-partitioning (80) unstable; urge
 
  -- Hector Oron <zumbi@debian.org>  Tue, 22 Mar 2011 12:36:53 +0000
 
+partman-partitioning (79ubuntu2) natty; urgency=low
+
+  * Use mac as the default disk label on ppc64 (see
+    http://debian-ppc64.alioth.debian.org/patches/partman-base_108.0.0.1.gcc4_ppc64.diff).
+
+ -- Colin Watson <cjwatson@ubuntu.com>  Wed, 09 Feb 2011 01:24:00 +0000
+
+partman-partitioning (79ubuntu1) natty; urgency=low
+
+  * Resynchronise with Debian.  Remaining changes:
+    - Make sure to wipe disk label on Sun disks before creating a new one.
+    - Depend on ntfs-3g-udeb as well as ntfsprogs-udeb.
+    - Add PATH, RAWMINSIZE, RAWPREFSIZE, and RAWMAXSIZE substitutions to
+      partman-partitioning/new_size in support of ubiquity's resize widget.
+    - Cache calls to tune2fs and ntfsresize, to make navigating through the
+      resize UI a little faster.
+    - Check that minimum filesystem sizes reported by tune2fs and ntfsresize
+      are between the minimum partition size and the current partition size;
+      if not, refuse to resize the partition at all.
+    - Use the GPT disk label by default on *i386/efi and *amd64/efi
+      subarchitectures.
+    - Support archdetect being anywhere on PATH.
+  * Use 'type' to check for archdetect on PATH, not 'which', which isn't
+    available in d-i (LP: #705377).
+
+ -- Colin Watson <cjwatson@ubuntu.com>  Thu, 20 Jan 2011 13:13:17 +0000
+
+partman-partitioning (79) unstable; urgency=low
+
+  [ Updated translations ]
+  * Lao (lo.po) by Anousak Souphavanh
+  * Malayalam (ml.po) by Praveen Arimbrathodiyil
+  * Northern Sami (se.po) by Børre Gaup
+  * Sinhala (si.po) by Danishka Navin
+  * Slovenian (sl.po) by Vanja Cvelbar
+
+ -- Otavio Salvador <otavio@debian.org>  Fri, 24 Dec 2010 21:16:32 -0200
+
+partman-partitioning (78ubuntu2) natty; urgency=low
+
+  * Support archdetect being anywhere in PATH rather than assuming it to be in
+    /bin.  It's moved locations in archdetect-deb.
+
+ -- Mario Limonciello <Mario_Limonciello@Dell.com>  Tue, 18 Jan 2011 13:51:38 -0600
+
+partman-partitioning (78ubuntu1) natty; urgency=low
+
+  * Resynchronise with Debian.  Remaining changes:
+    - Make sure to wipe disk label on Sun disks before creating a new one.
+    - Depend on ntfs-3g-udeb as well as ntfsprogs-udeb.
+    - Add PATH, RAWMINSIZE, RAWPREFSIZE, and RAWMAXSIZE substitutions to
+      partman-partitioning/new_size in support of ubiquity's resize widget.
+    - Cache calls to tune2fs and ntfsresize, to make navigating through the
+      resize UI a little faster.
+    - Check that minimum filesystem sizes reported by tune2fs and ntfsresize
+      are between the minimum partition size and the current partition size;
+      if not, refuse to resize the partition at all.
+    - Use the GPT disk label by default on *i386/efi and *amd64/efi
+      subarchitectures.
+
+ -- Colin Watson <cjwatson@ubuntu.com>  Mon, 15 Nov 2010 11:02:14 +0000
+
+partman-partitioning (78) unstable; urgency=low
+
+  [ Updated translations ]
+  * Bengali (bn.po) by Israt Jahan
+  * Danish (da.po) by Anders Jenbo
+  * Indonesian (id.po) by Arief S Fitrianto
+  * Icelandic (is.po) by Sveinn í Felli
+  * Telugu (te.po) by Arjuna Rao Chavala
+
+ -- Otavio Salvador <otavio@debian.org>  Fri, 12 Nov 2010 16:26:34 -0200
+
+partman-partitioning (77ubuntu1) natty; urgency=low
+
+  * Resynchronise with Debian.  Remaining changes:
+    - Make sure to wipe disk label on Sun disks before creating a new one.
+    - Depend on ntfs-3g-udeb as well as ntfsprogs-udeb.
+    - Add PATH, RAWMINSIZE, RAWPREFSIZE, and RAWMAXSIZE substitutions to
+      partman-partitioning/new_size in support of ubiquity's resize widget.
+    - Cache calls to tune2fs and ntfsresize, to make navigating through the
+      resize UI a little faster.
+    - Check that minimum filesystem sizes reported by tune2fs and ntfsresize
+      are between the minimum partition size and the current partition size;
+      if not, refuse to resize the partition at all.
+    - Use the GPT disk label by default on *i386/efi and *amd64/efi
+      subarchitectures.
+
+ -- Colin Watson <cjwatson@ubuntu.com>  Tue, 12 Oct 2010 12:36:17 +0100
+
 partman-partitioning (77) unstable; urgency=low
 
   [ Colin Watson ]
@@ -455,6 +845,29 @@ partman-partitioning (75) unreleased; ur
 
  -- Samuel Thibault <sthibault@debian.org>  Wed, 23 Jun 2010 09:14:02 +0200
 
+partman-partitioning (74ubuntu2) maverick; urgency=low
+
+  * Use the GPT disk label by default on *i386/efi and *amd64/efi
+    subarchitectures.
+
+ -- Colin Watson <cjwatson@ubuntu.com>  Thu, 10 Jun 2010 18:21:08 +0100
+
+partman-partitioning (74ubuntu1) maverick; urgency=low
+
+  * Resynchronise with Debian.  Remaining changes:
+    - Make sure to wipe disk label on Sun disks before creating a new one.
+    - Depend on ntfs-3g-udeb as well as ntfsprogs-udeb.
+    - Add PATH, RAWMINSIZE, RAWPREFSIZE, and RAWMAXSIZE substitutions to
+      partman-partitioning/new_size in support of ubiquity's resize widget.
+    - Cache calls to tune2fs and ntfsresize, to make navigating through the
+      resize UI a little faster.
+    - Check that minimum filesystem sizes reported by tune2fs and ntfsresize
+      are between the minimum partition size and the current partition size;
+      if not, refuse to resize the partition at all.
+  * Remove support for lpia.
+
+ -- Colin Watson <cjwatson@ubuntu.com>  Wed, 26 May 2010 14:42:50 +0100
+
 partman-partitioning (74) unstable; urgency=low
 
   * Add support for sh4 and sparc64 architectures. 
@@ -520,6 +933,44 @@ partman-partitioning (73) unstable; urge
 
  -- Frans Pop <fjp@debian.org>  Mon, 22 Feb 2010 04:19:51 +0100
 
+partman-partitioning (72ubuntu4) lucid; urgency=low
+
+  * Check that minimum filesystem sizes reported by tune2fs and ntfsresize
+    are between the minimum partition size and the current partition size;
+    if not, refuse to resize the partition at all (LP: #568021).
+
+ -- Colin Watson <cjwatson@ubuntu.com>  Fri, 23 Apr 2010 11:54:21 +0100
+
+partman-partitioning (72ubuntu3) lucid; urgency=low
+
+  * Cache calls to tune2fs and ntfsresize, to make navigating through the
+    resize UI a little faster.
+
+ -- Colin Watson <cjwatson@ubuntu.com>  Thu, 11 Feb 2010 01:42:14 +0000
+
+partman-partitioning (72ubuntu2) karmic; urgency=low
+
+  * Set prefsize in get_*resize_range functions; pass RAWPREFSIZE instead of
+    RAWCURSIZE to ubiquity (preferred size instead of current size) and stop
+    passing ORISIZE. This allows ubiquity to set sensible preferred sizes
+    when resizing partitions (LP: #421407).
+
+ -- Colin Watson <cjwatson@ubuntu.com>  Tue, 06 Oct 2009 18:18:13 +0100
+
+partman-partitioning (72ubuntu1) karmic; urgency=low
+
+  * Resynchronise with Debian. Remaining changes:
+    - Make sure to wipe disk label on Sun disks before creating a new one.
+    - Depend on ntfs-3g-udeb as well as ntfsprogs-udeb.
+    - Add ORISIZE, PATH, RAWMINSIZE, RAWCURSIZE, and RAWMAXSIZE
+      substitutions to partman-partitioning/new_size in support of
+      ubiquity's resize widget.
+    - When creating a new partition, default to logical if a primary
+      partition already exists.
+    - Add NTFS dependencies on lpia.
+
+ -- Colin Watson <cjwatson@ubuntu.com>  Wed, 23 Sep 2009 15:33:12 +0100
+
 partman-partitioning (72) unstable; urgency=low
 
   [ Updated translations ]
@@ -532,6 +983,20 @@ partman-partitioning (72) unstable; urge
 
  -- Colin Watson <cjwatson@debian.org>  Wed, 23 Sep 2009 10:36:25 +0100
 
+partman-partitioning (71ubuntu1) karmic; urgency=low
+
+  * Resynchronise with Debian. Remaining changes:
+    - Make sure to wipe disk label on Sun disks before creating a new one.
+    - Depend on ntfs-3g-udeb as well as ntfsprogs-udeb.
+    - Add ORISIZE, PATH, RAWMINSIZE, RAWCURSIZE, and RAWMAXSIZE
+      substitutions to partman-partitioning/new_size in support of
+      ubiquity's resize widget.
+    - When creating a new partition, default to logical if a primary
+      partition already exists.
+    - Add NTFS dependencies on lpia.
+
+ -- Colin Watson <cjwatson@ubuntu.com>  Wed, 09 Sep 2009 01:26:40 +0100
+
 partman-partitioning (71) unstable; urgency=low
 
   * Upgrade to debhelper v7.
@@ -568,6 +1033,20 @@ partman-partitioning (70) unstable; urge
 
  -- Aurelien Jarno <aurel32@debian.org>  Sun, 23 Aug 2009 22:11:41 +0200
 
+partman-partitioning (69ubuntu1) karmic; urgency=low
+
+  * Resynchronise with Debian. Remaining changes:
+    - Make sure to wipe disk label on Sun disks before creating a new one.
+    - Depend on ntfs-3g-udeb as well as ntfsprogs-udeb.
+    - Add ORISIZE, PATH, RAWMINSIZE, RAWCURSIZE, and RAWMAXSIZE
+      substitutions to partman-partitioning/new_size in support of
+      ubiquity's resize widget.
+    - When creating a new partition, default to logical if a primary
+      partition already exists.
+    - Add NTFS dependencies on lpia.
+
+ -- Colin Watson <cjwatson@ubuntu.com>  Tue, 04 Aug 2009 12:36:11 +0100
+
 partman-partitioning (69) unstable; urgency=low
 
   [ Max Vozeler ]
@@ -581,6 +1060,20 @@ partman-partitioning (69) unstable; urge
 
  -- Colin Watson <cjwatson@debian.org>  Tue, 04 Aug 2009 12:12:09 +0100
 
+partman-partitioning (68ubuntu1) karmic; urgency=low
+
+  * Resynchronise with Debian. Remaining changes:
+    - Make sure to wipe disk label on Sun disks before creating a new one.
+    - Depend on ntfs-3g-udeb as well as ntfsprogs-udeb.
+    - Add ORISIZE, PATH, RAWMINSIZE, RAWCURSIZE, and RAWMAXSIZE
+      substitutions to partman-partitioning/new_size in support of
+      ubiquity's resize widget.
+    - When creating a new partition, default to logical if a primary
+      partition already exists.
+    - Add NTFS dependencies on lpia.
+
+ -- Colin Watson <cjwatson@ubuntu.com>  Thu, 25 Jun 2009 22:06:35 +0100
+
 partman-partitioning (68) unstable; urgency=low
 
   * Use cdebconf column alignment rather than stralign in toggle_biosgrub.
@@ -595,6 +1088,20 @@ partman-partitioning (67) unstable; urge
 
  -- Colin Watson <cjwatson@debian.org>  Thu, 18 Jun 2009 14:47:44 +0100
 
+partman-partitioning (66ubuntu1) karmic; urgency=low
+
+  * Resynchronise with Debian. Remaining changes:
+    - Make sure to wipe disk label on Sun disks before creating a new one.
+    - Depend on ntfs-3g-udeb as well as ntfsprogs-udeb.
+    - Add ORISIZE, PATH, RAWMINSIZE, RAWCURSIZE, and RAWMAXSIZE
+      substitutions to partman-partitioning/new_size in support of
+      ubiquity's resize widget.
+    - When creating a new partition, default to logical if a primary
+      partition already exists.
+    - Add NTFS dependencies on lpia.
+
+ -- Colin Watson <cjwatson@ubuntu.com>  Mon, 15 Jun 2009 15:36:01 +0100
+
 partman-partitioning (66) unstable; urgency=low
 
   [ Colin Watson ]
@@ -613,6 +1120,30 @@ partman-partitioning (66) unstable; urge
 
  -- Christian Perrier <bubulle@debian.org>  Sat, 13 Jun 2009 09:05:52 +0200
 
+partman-partitioning (65ubuntu2) jaunty; urgency=low
+
+  * When resizing a non-virtual partition, update it after committing
+    changes, otherwise we might miss a change of filesystem that was just
+    committed (LP: #333356).
+
+ -- Colin Watson <cjwatson@ubuntu.com>  Tue, 31 Mar 2009 13:45:41 +0100
+
+partman-partitioning (65ubuntu1) jaunty; urgency=low
+
+  * Resynchronise with Debian. Remaining changes:
+    - Make sure to wipe disk label on Sun disks before creating a new one.
+    - Depend on ntfs-3g-udeb as well as ntfsprogs-udeb.
+    - Add ORISIZE, PATH, RAWMINSIZE, RAWCURSIZE, and RAWMAXSIZE
+      substitutions to partman-partitioning/new_size in support of
+      ubiquity's resize widget.
+    - When creating a new partition, default to logical if a primary
+      partition already exists.
+    - Add NTFS dependencies on lpia.
+    - get_real_device: Add support for /dev/vd*, /dev/xvd*, /dev/cciss/*,
+      /dev/ida/*, and /dev/mmcblk*.
+
+ -- Colin Watson <cjwatson@ubuntu.com>  Fri, 20 Mar 2009 15:29:17 +0000
+
 partman-partitioning (65) unstable; urgency=low
 
   [ Colin Watson ]
@@ -645,6 +1176,59 @@ partman-partitioning (65) unstable; urge
 
  -- Colin Watson <cjwatson@debian.org>  Wed, 04 Mar 2009 11:20:49 +0000
 
+partman-partitioning (64ubuntu6) jaunty; urgency=low
+
+  * get_real_device: Add support for /dev/vd*, /dev/xvd*, /dev/cciss/*,
+    /dev/ida/*, and /dev/mmcblk* (LP: #282756).
+
+ -- Colin Watson <cjwatson@ubuntu.com>  Wed, 18 Mar 2009 10:28:55 +0000
+
+partman-partitioning (64ubuntu5) jaunty; urgency=low
+
+  * Use 'update-dev --settle' rather than 'update-dev' after resizing or
+    committing. Requires di-utils 1.66.
+
+ -- Colin Watson <cjwatson@ubuntu.com>  Mon, 09 Mar 2009 11:54:38 +0000
+
+partman-partitioning (64ubuntu4) jaunty; urgency=low
+
+  * Cope with rounding errors while asking for the new partition size; if
+    the value we convert back from human-readable notation is in the
+    round-off range at either end, just use the appropriate extreme.
+
+ -- Colin Watson <cjwatson@ubuntu.com>  Fri, 27 Feb 2009 04:47:09 +0000
+
+partman-partitioning (64ubuntu3) jaunty; urgency=low
+
+  * Don't default to logical if an extended partition already exists, only
+    if a real primary partition exists.
+  * Honour partman/default_filesystem when creating new partitions. Requires
+    partman-base 128ubuntu6.
+
+ -- Colin Watson <cjwatson@ubuntu.com>  Mon, 09 Feb 2009 22:32:49 +0100
+
+partman-partitioning (64ubuntu2) jaunty; urgency=low
+
+  * Add ext4 support (LP: #293465).
+
+ -- Colin Watson <cjwatson@ubuntu.com>  Thu, 08 Jan 2009 16:55:00 +0000
+
+partman-partitioning (64ubuntu1) jaunty; urgency=low
+
+  * Resynchronise with Debian. Remaining changes:
+    - Make sure to wipe disk label on Sun disks before creating a new one.
+    - Depend on ntfs-3g-udeb as well as ntfsprogs-udeb.
+    - Add ORISIZE, PATH, RAWMINSIZE, RAWCURSIZE, and RAWMAXSIZE
+      substitutions to partman-partitioning/new_size in support of
+      ubiquity's resize widget.
+    - Add lpia support to default_disk_label.
+    - When creating a new partition, default to logical if a primary
+      partition already exists.
+    - Exit straight away if a called script is killed by a signal.
+    - Add NTFS dependencies on lpia.
+
+ -- Colin Watson <cjwatson@ubuntu.com>  Sat, 15 Nov 2008 00:35:14 +0000
+
 partman-partitioning (64) unstable; urgency=low
 
   [ Giuseppe Iuculano ]
@@ -806,6 +1390,68 @@ partman-partitioning (60) unstable; urge
 
  -- Frans Pop <fjp@debian.org>  Wed, 16 Jul 2008 13:56:27 +0200
 
+partman-partitioning (59ubuntu7) intrepid; urgency=low
+
+  * Exit straight away if a called script is killed by a signal.
+  * Add NTFS dependencies on lpia.
+
+ -- Colin Watson <cjwatson@ubuntu.com>  Tue, 30 Sep 2008 18:08:22 +0100
+
+partman-partitioning (59ubuntu6) intrepid; urgency=low
+
+  * When creating a new partition, default to logical if a primary partition
+    already exists, since there are stricter constraints on primary
+    partitions and the only real reasons for them are Microsoft operating
+    systems or boot partitions (LP: #218938).
+
+ -- Colin Watson <cjwatson@ubuntu.com>  Tue, 16 Sep 2008 14:21:03 +0100
+
+partman-partitioning (59ubuntu5) intrepid; urgency=low
+
+  [ Emmet Hikory ]
+  * Add lpia support to default_disk_label.
+
+ -- Colin Watson <cjwatson@ubuntu.com>  Thu, 11 Sep 2008 11:24:13 +0100
+
+partman-partitioning (59ubuntu4) intrepid; urgency=low
+
+  * free_space/new/do_option: Remove check for sataraid when setting
+    options for partitions. Sataraid partitions are now treated like
+    any other partition.
+
+ -- Luke Yelavich <themuso@ubuntu.com>  Thu, 21 Aug 2008 09:46:46 +1000
+
+partman-partitioning (59ubuntu3) intrepid; urgency=low
+
+  * Don't convert origsize to a human readable number (LP: #247999).
+
+ -- Evan Dandrea <evand@ubuntu.com>  Mon, 14 Jul 2008 11:15:06 +0100
+
+partman-partitioning (59ubuntu2) intrepid; urgency=low
+
+  * Substitute RAWMINSIZE, RAWCURSIZE, and RAWMAXSIZE variables on
+    partman-partitioning/new_size, so that ubiquity can set accurate bounds
+    on resize widgets.
+
+ -- Colin Watson <cjwatson@ubuntu.com>  Thu, 22 May 2008 11:35:38 +0200
+
+partman-partitioning (59ubuntu1) intrepid; urgency=low
+
+  * Resynchronise with Debian. Remaining changes:
+    - Make sure to wipe disk label on Sun disks before creating a new one.
+    - Depend on ntfs-3g-udeb as well as ntfsprogs-udeb.
+    - Add ORISIZE (the actual size of the partition) and PATH (the block
+      device) debconf variables to partman-partitioning/new_size in support
+      of ubiquity's resize widget.
+    - When creating a new filesystem, set the default mount options to the
+      contents of /lib/partman/mountoptions/${fs}_defaults if it exists.
+    - Silence warning in case $id/options already exists.
+    - Move 'local' down a line in create_new_partition in order to work
+      properly with bash, which initialises local variables without an
+      accompanying assignment to empty rather than to any previous value.
+
+ -- Colin Watson <cjwatson@ubuntu.com>  Sun, 18 May 2008 14:33:43 +0200
+
 partman-partitioning (59) unstable; urgency=low
 
   [ Frans Pop ]
@@ -927,6 +1573,47 @@ partman-partitioning (55) unstable; urge
 
  -- Frans Pop <fjp@debian.org>  Sat, 29 Dec 2007 22:15:28 +0100
 
+partman-partitioning (54ubuntu5) hardy; urgency=low
+
+  * Backport from trunk:
+    - Only disable swap on devices that are being changed (LP: #199048).
+      Requires partman-base (>= 114ubuntu4).
+  * Move 'local' down a line in create_new_partition in order to work
+    properly with bash, which initialises local variables without an
+    accompanying assignment to empty rather than to any previous value.
+
+ -- Colin Watson <cjwatson@ubuntu.com>  Fri, 21 Mar 2008 00:27:06 +0000
+
+partman-partitioning (54ubuntu4) hardy; urgency=low
+
+  * Silence warning in case $id/options already exists.
+
+ -- Colin Watson <cjwatson@ubuntu.com>  Thu, 06 Mar 2008 12:07:30 +0000
+
+partman-partitioning (54ubuntu3) hardy; urgency=low
+
+  * When creating a new filesystem, set the default mount options to the
+    contents of /lib/partman/mountoptions/${fs}_defaults if it exists
+    (LP: #160450).
+
+ -- Colin Watson <cjwatson@ubuntu.com>  Tue, 04 Mar 2008 13:15:28 +0000
+
+partman-partitioning (54ubuntu2) hardy; urgency=low
+
+  * Add ORISIZE (the actual size of the partition) and PATH (the block
+    device) debconf variables to partman-partitioning/new_size in support of
+    ubiquity's new resize widget.
+
+ -- Evan Dandrea <evand@ubuntu.com>  Wed, 13 Feb 2008 09:43:42 -0500
+
+partman-partitioning (54ubuntu1) hardy; urgency=low
+
+  * Resynchronise with Debian. Remaining changes:
+    - Make sure to wipe disk label on Sun disks before creating a new one.
+    - Depend on ntfs-3g-udeb as well as ntfsprogs-udeb.
+
+ -- Colin Watson <cjwatson@ubuntu.com>  Wed, 12 Dec 2007 10:53:41 +0000
+
 partman-partitioning (54) unstable; urgency=low
 
   [ Frans Pop ]
@@ -956,6 +1643,15 @@ partman-partitioning (54) unstable; urge
 
  -- Frans Pop <fjp@debian.org>  Tue, 11 Dec 2007 14:02:38 +0100
 
+partman-partitioning (53ubuntu1) hardy; urgency=low
+
+  * Resynchronise with Debian. Remaining changes:
+    - Make sure to wipe disk label on Sun disks before creating a new one.
+    - Depend on ntfs-3g-udeb as well as ntfsprogs-udeb.
+  * Set Vcs-Bzr for Ubuntu.
+
+ -- Colin Watson <cjwatson@ubuntu.com>  Thu, 06 Dec 2007 13:37:35 +0000
+
 partman-partitioning (53) unstable; urgency=low
 
   [ Max Vozeler ]
@@ -978,6 +1674,14 @@ partman-partitioning (53) unstable; urge
 
  -- Frans Pop <fjp@debian.org>  Wed, 05 Dec 2007 13:23:10 +0100
 
+partman-partitioning (52ubuntu1) hardy; urgency=low
+
+  * Resynchronise with Debian. Remaining changes:
+    - Make sure to wipe disk label on Sun disks before creating a new one.
+    - Depend on ntfs-3g-udeb as well as ntfsprogs-udeb.
+
+ -- Colin Watson <cjwatson@ubuntu.com>  Tue, 23 Oct 2007 18:07:51 +0100
+
 partman-partitioning (52) unstable; urgency=low
 
   * Use 'mkdir -p' rather than more awkward test-then-create constructions.
@@ -1043,6 +1747,19 @@ partman-partitioning (51) unstable; urge
 
  -- Frans Pop <fjp@debian.org>  Fri, 06 Jul 2007 00:24:43 +0200
 
+partman-partitioning (50ubuntu2) gutsy; urgency=low
+
+  * Depend on ntfs-3g-udeb as well as ntfsprogs-udeb.
+
+ -- Colin Watson <cjwatson@ubuntu.com>  Mon, 20 Aug 2007 19:47:29 +0100
+
+partman-partitioning (50ubuntu1) gutsy; urgency=low
+
+  * Resynchronise with Debian. Remaining changes:
+    - Make sure to wipe disk label on Sun disks before creating a new one.
+
+ -- Colin Watson <cjwatson@ubuntu.com>  Thu, 24 May 2007 10:20:20 +0100
+
 partman-partitioning (50) unstable; urgency=low
 
   [ Colin Watson ]
@@ -1059,6 +1776,15 @@ partman-partitioning (50) unstable; urge
 
  -- Frans Pop <fjp@debian.org>  Mon, 21 May 2007 16:59:33 +0200
 
+partman-partitioning (49ubuntu1) gutsy; urgency=low
+
+  * Resynchronise with Debian. Remaining changes:
+    - Make sure to wipe disk label on Sun disks before creating a new one.
+    - Use expr in resize logic rather than assuming that shell arithmetic is
+      64-bit clean.
+
+ -- Colin Watson <cjwatson@ubuntu.com>  Fri, 27 Apr 2007 09:41:25 +0100
+
 partman-partitioning (49) unstable; urgency=low
 
   [ Colin Watson ]
@@ -1092,6 +1818,46 @@ partman-partitioning (48) unstable; urge
 
  -- Frans Pop <fjp@debian.org>  Wed, 21 Mar 2007 18:08:40 +0100
 
+partman-partitioning (47ubuntu5) feisty; urgency=low
+
+  * Use expr in resize logic rather than assuming that shell arithmetic is
+    64-bit clean, which it isn't in dash (LP: #95400).
+
+ -- Colin Watson <cjwatson@ubuntu.com>  Mon, 26 Mar 2007 13:58:59 +0100
+
+partman-partitioning (47ubuntu4) feisty; urgency=low
+
+  * Run e2fsck before resizing ext2/ext3 partitions (LP: #94647).
+  * Add progress bar (albeit trivial) for NTFS resizing.
+
+ -- Colin Watson <cjwatson@ubuntu.com>  Sat, 24 Mar 2007 18:10:29 +0000
+
+partman-partitioning (47ubuntu3) feisty; urgency=low
+
+  * Add another couple of update-dev calls; partition devices can be removed
+    and re-added just after committing partition table changes (LP: #94410).
+
+ -- Colin Watson <cjwatson@ubuntu.com>  Wed, 21 Mar 2007 13:19:04 +0000
+
+partman-partitioning (47ubuntu2) feisty; urgency=low
+
+  * Use tune2fs/resize2fs to handle ext2/ext3 resizing, since libparted
+    can't deal with the resize_inode feature (LP: #59620).
+
+ -- Colin Watson <cjwatson@ubuntu.com>  Mon, 19 Mar 2007 11:41:11 +0000
+
+partman-partitioning (47ubuntu1) feisty; urgency=low
+
+  * Resynchronise with Debian. Remaining changes:
+    - Offer resize option for HFS, HFS+, and HFSX.
+    - Make sure to wipe disk label on Sun disks before creating a new one.
+    - Backing up from the "new partition size" question when resizing a
+      partition now goes back to the menu of options for that partition, not
+      to the partition tree.
+  * Set Maintainer to ubuntu-installer@lists.ubuntu.com.
+
+ -- Colin Watson <cjwatson@ubuntu.com>  Wed, 14 Mar 2007 12:15:12 +0000
+
 partman-partitioning (47) unstable; urgency=low
 
   * Enable resizing of Windows Vista NTFS partitions again. Closes: #379835.
@@ -1107,6 +1873,17 @@ partman-partitioning (46) unstable; urge
 
  -- Frans Pop <fjp@debian.org>  Tue, 27 Feb 2007 18:24:57 +0100
 
+partman-partitioning (45ubuntu1) feisty; urgency=low
+
+  * Resynchronise with Debian. Remaining changes:
+    - Offer resize option for HFS, HFS+, and HFSX.
+    - Make sure to wipe disk label on Sun disks before creating a new one.
+  * Backing up from the "new partition size" question when resizing a
+    partition now goes back to the menu of options for that partition, not
+    to the partition tree.
+
+ -- Colin Watson <cjwatson@ubuntu.com>  Fri,  2 Feb 2007 19:44:04 +0000
+
 partman-partitioning (45) unstable; urgency=low
 
   [ Colin Watson ]
@@ -1132,6 +1909,14 @@ partman-partitioning (45) unstable; urge
 
  -- Frans Pop <fjp@debian.org>  Tue, 30 Jan 2007 22:01:24 +0100
 
+partman-partitioning (44ubuntu1) feisty; urgency=low
+
+  * Resynchronise with Debian. Remaining changes:
+    - Offer resize option for HFS, HFS+, and HFSX.
+    - Make sure to wipe disk label on Sun disks before creating a new one.
+
+ -- Colin Watson <cjwatson@ubuntu.com>  Mon, 13 Nov 2006 12:29:10 -0800
+
 partman-partitioning (44) unstable; urgency=low
 
   [ Updated translations ]
@@ -1197,6 +1982,12 @@ partman-partitioning (41) unstable; urge
 
  -- Frans Pop <fjp@debian.org>  Tue, 15 Aug 2006 02:47:17 +0200
 
+partman-partitioning (40ubuntu1) edgy; urgency=low
+
+  * Resynchronise with Debian.
+
+ -- Colin Watson <cjwatson@ubuntu.com>  Thu, 29 Jun 2006 15:40:20 +0100
+
 partman-partitioning (40) unstable; urgency=low
 
   [ Colin Watson ]
@@ -1328,6 +2119,41 @@ partman-partitioning (38) unstable; urge
 
  -- Frans Pop <fjp@debian.org>  Tue, 24 Jan 2006 22:12:16 +0100
 
+partman-partitioning (37ubuntu3) dapper; urgency=low
+
+  * Backport from trunk:
+    - Rename dev to bdev in get_ntfs_resize_range; bash clobbers the
+      existing contents of dev when 'local bdev' is executed, and we need
+      those contents.
+    - Handle /dev/hd* and /dev/sd* device names in get_ntfs_resize_range as
+      well as devfs-style device names.
+
+ -- Colin Watson <cjwatson@ubuntu.com>  Tue, 23 May 2006 19:27:36 +0100
+
+partman-partitioning (37ubuntu2) dapper; urgency=low
+
+  * Offer resize option for HFS, HFS+, and HFSX (closes: Malone #33482).
+
+ -- Colin Watson <cjwatson@ubuntu.com>  Fri,  3 Mar 2006 11:14:04 +0000
+
+partman-partitioning (37ubuntu1) dapper; urgency=low
+
+  [ Fabio M. Di Nitto ]
+  * Make sure to wipe disk label on sun disks before recreating a new one.
+
+  libparted did grow a C/H/S sanity check in disk_sun.c. While this is a sane
+  check to perform, parted_server doesn't understand the exception and fails
+  because it gets a wrong size of the disk when writing a new label.
+  Since we are in deep feature freeze, there is no time to make a proper fix
+  into parted_server (that needs to be propagated all the way and back to
+  the UI to handle it properly).
+
+  Make sure to wipe the first 512 bytes of the device once the user confirm
+  what really should be done so that libparted will initialize the label
+  properly and everything will work as it should.
+
+ -- Fabio M. Di Nitto <fabbione@ubuntu.com>  Tue, 28 Feb 2006 11:40:24 +0100
+
 partman-partitioning (37) unstable; urgency=low
 
   [ Joey Hess ]
@@ -2113,3 +2939,4 @@ partman-parted-partitioning (1) unstable
   * First version.
 
  -- Anton Zinoviev <zinoviev@debian.org>  Wed, 27 Aug 2003 07:03:28 +0200
+
diff -pruN 120/debian/control 120ubuntu3/debian/control
--- 120/debian/control	2016-01-30 04:08:58.000000000 +0000
+++ 120ubuntu3/debian/control	2018-01-15 09:44:56.000000000 +0000
@@ -1,11 +1,13 @@
 Source: partman-partitioning
 Section: debian-installer
 Priority: optional
-Maintainer: Debian Install System Team <debian-boot@lists.debian.org>
+Maintainer: Ubuntu Installer Team <ubuntu-installer@lists.ubuntu.com>
+XSBC-Original-Maintainer: Debian Install System Team <debian-boot@lists.debian.org>
 Uploaders: Christian Perrier <bubulle@debian.org>
 Build-Depends: debhelper (>= 9), dh-di, po-debconf (>= 0.5.0)
-Vcs-Browser: https://anonscm.debian.org/cgit/d-i/partman-partitioning.git
-Vcs-Git: https://anonscm.debian.org/git/d-i/partman-partitioning.git
+XS-Debian-Vcs-Browser: https://anonscm.debian.org/cgit/d-i/partman-partitioning.git
+XS-Debian-Vcs-Git: https://anonscm.debian.org/git/d-i/partman-partitioning.git
+Vcs-Bzr: http://bazaar.launchpad.net/~ubuntu-core-dev/partman-partitioning/ubuntu
 
 Package: partman-partitioning
 Package-Type: udeb
diff -pruN 120/debian/di-numbers 120ubuntu3/debian/di-numbers
--- 120/debian/di-numbers	2011-01-19 05:05:10.000000000 +0000
+++ 120ubuntu3/debian/di-numbers	2018-01-15 09:44:56.000000000 +0000
@@ -4,3 +4,4 @@ free_space lib/partman
 init.d lib/partman
 update.d lib/partman
 choose_method lib/partman
+check.d lib/partman
diff -pruN 120/debian/partman-partitioning.templates 120ubuntu3/debian/partman-partitioning.templates
--- 120/debian/partman-partitioning.templates	2014-09-04 05:45:57.000000000 +0000
+++ 120ubuntu3/debian/partman-partitioning.templates	2018-10-10 14:41:48.000000000 +0000
@@ -248,3 +248,29 @@ Type: text
 # Up to 10 character positions
 _Description: biosgrub
 
+Template: partman-partitioning/no_bootable_efi
+Type: boolean
+# :sl5:
+_Description: Go back to the menu and correct this problem?
+ It is normally required for you to create a separate partition for the boot
+ loader code in order to boot your system in EFI mode. This partition should
+ be marked for use as an "EFI boot partition" and should be at least 35 MB
+ in size. Note that this is not the same as a partition mounted on /boot.
+ .
+ If you do not go back to the partitioning menu and correct this error, boot
+ loader installation may fail later, although it may still be possible to
+ install the boot loader to a partition.
+
+Template: partman-partitioning/no_bootable_biosgrub
+Type: boolean
+# :sl5:
+_Description: Go back to the menu and correct this problem?
+ The partition table format in use on your disks normally requires you to
+ create a separate partition for boot loader code. This partition should be
+ marked for use as a "Reserved BIOS boot area" and should be at least 1 MB
+ in size. Note that this is not the same as a partition mounted on /boot.
+ .
+ If you do not go back to the partitioning menu and correct this error, boot
+ loader installation may fail later, although it may still be possible to
+ install the boot loader to a partition.
+
diff -pruN 120/debian/po/am.po 120ubuntu3/debian/po/am.po
--- 120/debian/po/am.po	2016-06-04 18:02:55.000000000 +0000
+++ 120ubuntu3/debian/po/am.po	2018-01-15 09:44:57.000000000 +0000
@@ -523,3 +523,50 @@ msgstr ""
 #: ../partman-partitioning.templates:33001
 msgid "biosgrub"
 msgstr ""
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:38001
+#: ../partman-partitioning.templates:39001
+msgid "Go back to the menu and correct this problem?"
+msgstr "ወደ ምናሌው ልመለስና ስህተቱ ይታረም?"
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:38001
+msgid ""
+"The partition table format in use on your disks normally requires you to "
+"create a separate partition for boot loader code. This partition should be "
+"marked for use as an \"EFI boot partition\" and should be at least 35 MB in "
+"size. Note that this is not the same as a partition mounted on /boot."
+msgstr ""
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:38001
+#: ../partman-partitioning.templates:39001
+msgid ""
+"If you do not go back to the partitioning menu and correct this error, boot "
+"loader installation may fail later, although it may still be possible to "
+"install the boot loader to a partition."
+msgstr ""
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:39001
+msgid ""
+"The partition table format in use on your disks normally requires you to "
+"create a separate partition for boot loader code. This partition should be "
+"marked for use as a \"Reserved BIOS boot area\" and should be at least 1 MB "
+"in size. Note that this is not the same as a partition mounted on /boot."
+msgstr ""
diff -pruN 120/debian/po/ar.po 120ubuntu3/debian/po/ar.po
--- 120/debian/po/ar.po	2016-06-04 18:02:55.000000000 +0000
+++ 120ubuntu3/debian/po/ar.po	2018-01-15 09:44:58.000000000 +0000
@@ -538,3 +538,50 @@ msgstr "منطقة إقلاع BIOS مح
 #: ../partman-partitioning.templates:33001
 msgid "biosgrub"
 msgstr "biosgrub"
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:38001
+#: ../partman-partitioning.templates:39001
+msgid "Go back to the menu and correct this problem?"
+msgstr "هل تريد العودة إلى القائمة و تصحيح هذه المشكلة؟"
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:38001
+msgid ""
+"The partition table format in use on your disks normally requires you to "
+"create a separate partition for boot loader code. This partition should be "
+"marked for use as an \"EFI boot partition\" and should be at least 35 MB in "
+"size. Note that this is not the same as a partition mounted on /boot."
+msgstr ""
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:38001
+#: ../partman-partitioning.templates:39001
+msgid ""
+"If you do not go back to the partitioning menu and correct this error, boot "
+"loader installation may fail later, although it may still be possible to "
+"install the boot loader to a partition."
+msgstr ""
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:39001
+msgid ""
+"The partition table format in use on your disks normally requires you to "
+"create a separate partition for boot loader code. This partition should be "
+"marked for use as a \"Reserved BIOS boot area\" and should be at least 1 MB "
+"in size. Note that this is not the same as a partition mounted on /boot."
+msgstr ""
diff -pruN 120/debian/po/ast.po 120ubuntu3/debian/po/ast.po
--- 120/debian/po/ast.po	2016-06-04 18:02:55.000000000 +0000
+++ 120ubuntu3/debian/po/ast.po	2018-01-15 09:44:58.000000000 +0000
@@ -551,3 +551,50 @@ msgstr "Reservar área d'arranque BIOS:"
 #: ../partman-partitioning.templates:33001
 msgid "biosgrub"
 msgstr "biosgrub"
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:38001
+#: ../partman-partitioning.templates:39001
+msgid "Go back to the menu and correct this problem?"
+msgstr "¿Volver al menú y correxir esti problema?"
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:38001
+msgid ""
+"The partition table format in use on your disks normally requires you to "
+"create a separate partition for boot loader code. This partition should be "
+"marked for use as an \"EFI boot partition\" and should be at least 35 MB in "
+"size. Note that this is not the same as a partition mounted on /boot."
+msgstr ""
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:38001
+#: ../partman-partitioning.templates:39001
+msgid ""
+"If you do not go back to the partitioning menu and correct this error, boot "
+"loader installation may fail later, although it may still be possible to "
+"install the boot loader to a partition."
+msgstr ""
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:39001
+msgid ""
+"The partition table format in use on your disks normally requires you to "
+"create a separate partition for boot loader code. This partition should be "
+"marked for use as a \"Reserved BIOS boot area\" and should be at least 1 MB "
+"in size. Note that this is not the same as a partition mounted on /boot."
+msgstr ""
diff -pruN 120/debian/po/be.po 120ubuntu3/debian/po/be.po
--- 120/debian/po/be.po	2016-07-14 03:05:29.000000000 +0000
+++ 120ubuntu3/debian/po/be.po	2018-01-15 09:44:57.000000000 +0000
@@ -554,3 +554,50 @@ msgstr "Прастора загрузк
 #: ../partman-partitioning.templates:33001
 msgid "biosgrub"
 msgstr "biosgrub"
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:38001
+#: ../partman-partitioning.templates:39001
+msgid "Go back to the menu and correct this problem?"
+msgstr "Вярнуцца ў меню, каб выправіць праблему?"
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:38001
+msgid ""
+"The partition table format in use on your disks normally requires you to "
+"create a separate partition for boot loader code. This partition should be "
+"marked for use as an \"EFI boot partition\" and should be at least 35 MB in "
+"size. Note that this is not the same as a partition mounted on /boot."
+msgstr ""
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:38001
+#: ../partman-partitioning.templates:39001
+msgid ""
+"If you do not go back to the partitioning menu and correct this error, boot "
+"loader installation may fail later, although it may still be possible to "
+"install the boot loader to a partition."
+msgstr ""
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:39001
+msgid ""
+"The partition table format in use on your disks normally requires you to "
+"create a separate partition for boot loader code. This partition should be "
+"marked for use as a \"Reserved BIOS boot area\" and should be at least 1 MB "
+"in size. Note that this is not the same as a partition mounted on /boot."
+msgstr ""
diff -pruN 120/debian/po/bg.po 120ubuntu3/debian/po/bg.po
--- 120/debian/po/bg.po	2016-06-04 18:02:55.000000000 +0000
+++ 120ubuntu3/debian/po/bg.po	2018-01-15 09:44:57.000000000 +0000
@@ -570,3 +570,50 @@ msgstr "Резервирана обла
 #: ../partman-partitioning.templates:33001
 msgid "biosgrub"
 msgstr "biosgrub"
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:38001
+#: ../partman-partitioning.templates:39001
+msgid "Go back to the menu and correct this problem?"
+msgstr "Връщане обратно в менюто и поправяне на проблема?"
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:38001
+msgid ""
+"The partition table format in use on your disks normally requires you to "
+"create a separate partition for boot loader code. This partition should be "
+"marked for use as an \"EFI boot partition\" and should be at least 35 MB in "
+"size. Note that this is not the same as a partition mounted on /boot."
+msgstr ""
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:38001
+#: ../partman-partitioning.templates:39001
+msgid ""
+"If you do not go back to the partitioning menu and correct this error, boot "
+"loader installation may fail later, although it may still be possible to "
+"install the boot loader to a partition."
+msgstr ""
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:39001
+msgid ""
+"The partition table format in use on your disks normally requires you to "
+"create a separate partition for boot loader code. This partition should be "
+"marked for use as a \"Reserved BIOS boot area\" and should be at least 1 MB "
+"in size. Note that this is not the same as a partition mounted on /boot."
+msgstr ""
diff -pruN 120/debian/po/bn.po 120ubuntu3/debian/po/bn.po
--- 120/debian/po/bn.po	2016-06-04 18:02:55.000000000 +0000
+++ 120ubuntu3/debian/po/bn.po	2018-01-15 09:44:57.000000000 +0000
@@ -560,3 +560,50 @@ msgstr "সংরক্ষিত BIOS 
 #: ../partman-partitioning.templates:33001
 msgid "biosgrub"
 msgstr "biosgrub"
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:38001
+#: ../partman-partitioning.templates:39001
+msgid "Go back to the menu and correct this problem?"
+msgstr "মেনুতে ফিরে গিয়ে এই সমস্যাটি দূর করা হবে কি?"
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:38001
+msgid ""
+"The partition table format in use on your disks normally requires you to "
+"create a separate partition for boot loader code. This partition should be "
+"marked for use as an \"EFI boot partition\" and should be at least 35 MB in "
+"size. Note that this is not the same as a partition mounted on /boot."
+msgstr ""
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:38001
+#: ../partman-partitioning.templates:39001
+msgid ""
+"If you do not go back to the partitioning menu and correct this error, boot "
+"loader installation may fail later, although it may still be possible to "
+"install the boot loader to a partition."
+msgstr ""
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:39001
+msgid ""
+"The partition table format in use on your disks normally requires you to "
+"create a separate partition for boot loader code. This partition should be "
+"marked for use as a \"Reserved BIOS boot area\" and should be at least 1 MB "
+"in size. Note that this is not the same as a partition mounted on /boot."
+msgstr ""
diff -pruN 120/debian/po/bo.po 120ubuntu3/debian/po/bo.po
--- 120/debian/po/bo.po	2016-06-04 18:02:55.000000000 +0000
+++ 120ubuntu3/debian/po/bo.po	2018-01-15 09:44:57.000000000 +0000
@@ -523,3 +523,50 @@ msgstr ""
 #: ../partman-partitioning.templates:33001
 msgid "biosgrub"
 msgstr ""
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:38001
+#: ../partman-partitioning.templates:39001
+msgid "Go back to the menu and correct this problem?"
+msgstr ""
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:38001
+msgid ""
+"The partition table format in use on your disks normally requires you to "
+"create a separate partition for boot loader code. This partition should be "
+"marked for use as an \"EFI boot partition\" and should be at least 35 MB in "
+"size. Note that this is not the same as a partition mounted on /boot."
+msgstr ""
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:38001
+#: ../partman-partitioning.templates:39001
+msgid ""
+"If you do not go back to the partitioning menu and correct this error, boot "
+"loader installation may fail later, although it may still be possible to "
+"install the boot loader to a partition."
+msgstr ""
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:39001
+msgid ""
+"The partition table format in use on your disks normally requires you to "
+"create a separate partition for boot loader code. This partition should be "
+"marked for use as a \"Reserved BIOS boot area\" and should be at least 1 MB "
+"in size. Note that this is not the same as a partition mounted on /boot."
+msgstr ""
diff -pruN 120/debian/po/bs.po 120ubuntu3/debian/po/bs.po
--- 120/debian/po/bs.po	2016-06-04 18:02:55.000000000 +0000
+++ 120ubuntu3/debian/po/bs.po	2018-01-15 09:44:58.000000000 +0000
@@ -559,3 +559,50 @@ msgstr "Rezervisana BIOS boot zona"
 #: ../partman-partitioning.templates:33001
 msgid "biosgrub"
 msgstr "biosgrup"
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:38001
+#: ../partman-partitioning.templates:39001
+msgid "Go back to the menu and correct this problem?"
+msgstr "Da li se želite vratiti se nazad na meni i ispraviti greške?"
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:38001
+msgid ""
+"The partition table format in use on your disks normally requires you to "
+"create a separate partition for boot loader code. This partition should be "
+"marked for use as an \"EFI boot partition\" and should be at least 35 MB in "
+"size. Note that this is not the same as a partition mounted on /boot."
+msgstr ""
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:38001
+#: ../partman-partitioning.templates:39001
+msgid ""
+"If you do not go back to the partitioning menu and correct this error, boot "
+"loader installation may fail later, although it may still be possible to "
+"install the boot loader to a partition."
+msgstr ""
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:39001
+msgid ""
+"The partition table format in use on your disks normally requires you to "
+"create a separate partition for boot loader code. This partition should be "
+"marked for use as a \"Reserved BIOS boot area\" and should be at least 1 MB "
+"in size. Note that this is not the same as a partition mounted on /boot."
+msgstr ""
diff -pruN 120/debian/po/ca.po 120ubuntu3/debian/po/ca.po
--- 120/debian/po/ca.po	2016-06-04 18:02:55.000000000 +0000
+++ 120ubuntu3/debian/po/ca.po	2018-01-15 09:44:57.000000000 +0000
@@ -554,3 +554,50 @@ msgstr "Àrea reservada per a l'arrencad
 #: ../partman-partitioning.templates:33001
 msgid "biosgrub"
 msgstr "biosgrub"
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:38001
+#: ../partman-partitioning.templates:39001
+msgid "Go back to the menu and correct this problem?"
+msgstr "Voleu tornar al menú i corregir aquest problema?"
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:38001
+msgid ""
+"The partition table format in use on your disks normally requires you to "
+"create a separate partition for boot loader code. This partition should be "
+"marked for use as an \"EFI boot partition\" and should be at least 35 MB in "
+"size. Note that this is not the same as a partition mounted on /boot."
+msgstr ""
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:38001
+#: ../partman-partitioning.templates:39001
+msgid ""
+"If you do not go back to the partitioning menu and correct this error, boot "
+"loader installation may fail later, although it may still be possible to "
+"install the boot loader to a partition."
+msgstr ""
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:39001
+msgid ""
+"The partition table format in use on your disks normally requires you to "
+"create a separate partition for boot loader code. This partition should be "
+"marked for use as a \"Reserved BIOS boot area\" and should be at least 1 MB "
+"in size. Note that this is not the same as a partition mounted on /boot."
+msgstr ""
diff -pruN 120/debian/po/cs.po 120ubuntu3/debian/po/cs.po
--- 120/debian/po/cs.po	2016-06-04 18:02:55.000000000 +0000
+++ 120ubuntu3/debian/po/cs.po	2018-01-15 09:44:57.000000000 +0000
@@ -548,3 +548,50 @@ msgstr "rezervované místo pro BIOS zav
 #: ../partman-partitioning.templates:33001
 msgid "biosgrub"
 msgstr "biosgrub"
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:38001
+#: ../partman-partitioning.templates:39001
+msgid "Go back to the menu and correct this problem?"
+msgstr "Vrátit se zpět do menu a opravit tento problém?"
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:38001
+msgid ""
+"The partition table format in use on your disks normally requires you to "
+"create a separate partition for boot loader code. This partition should be "
+"marked for use as an \"EFI boot partition\" and should be at least 35 MB in "
+"size. Note that this is not the same as a partition mounted on /boot."
+msgstr ""
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:38001
+#: ../partman-partitioning.templates:39001
+msgid ""
+"If you do not go back to the partitioning menu and correct this error, boot "
+"loader installation may fail later, although it may still be possible to "
+"install the boot loader to a partition."
+msgstr ""
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:39001
+msgid ""
+"The partition table format in use on your disks normally requires you to "
+"create a separate partition for boot loader code. This partition should be "
+"marked for use as a \"Reserved BIOS boot area\" and should be at least 1 MB "
+"in size. Note that this is not the same as a partition mounted on /boot."
+msgstr ""
diff -pruN 120/debian/po/cy.po 120ubuntu3/debian/po/cy.po
--- 120/debian/po/cy.po	2016-06-04 18:02:55.000000000 +0000
+++ 120ubuntu3/debian/po/cy.po	2018-01-15 09:44:57.000000000 +0000
@@ -549,3 +549,50 @@ msgstr "Ardal ymgychwyn BIOS neilltuedig
 #: ../partman-partitioning.templates:33001
 msgid "biosgrub"
 msgstr "biosgrub"
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:38001
+#: ../partman-partitioning.templates:39001
+msgid "Go back to the menu and correct this problem?"
+msgstr ""
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:38001
+msgid ""
+"The partition table format in use on your disks normally requires you to "
+"create a separate partition for boot loader code. This partition should be "
+"marked for use as an \"EFI boot partition\" and should be at least 35 MB in "
+"size. Note that this is not the same as a partition mounted on /boot."
+msgstr ""
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:38001
+#: ../partman-partitioning.templates:39001
+msgid ""
+"If you do not go back to the partitioning menu and correct this error, boot "
+"loader installation may fail later, although it may still be possible to "
+"install the boot loader to a partition."
+msgstr ""
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:39001
+msgid ""
+"The partition table format in use on your disks normally requires you to "
+"create a separate partition for boot loader code. This partition should be "
+"marked for use as a \"Reserved BIOS boot area\" and should be at least 1 MB "
+"in size. Note that this is not the same as a partition mounted on /boot."
+msgstr ""
diff -pruN 120/debian/po/da.po 120ubuntu3/debian/po/da.po
--- 120/debian/po/da.po	2016-07-14 03:05:29.000000000 +0000
+++ 120ubuntu3/debian/po/da.po	2018-01-15 09:44:58.000000000 +0000
@@ -572,3 +572,50 @@ msgstr "Reserveret BIOS-opstartsområde"
 #: ../partman-partitioning.templates:33001
 msgid "biosgrub"
 msgstr "biosgrub"
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:38001
+#: ../partman-partitioning.templates:39001
+msgid "Go back to the menu and correct this problem?"
+msgstr "Gå tilbage til menuen for at ordne dette problem?"
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:38001
+msgid ""
+"The partition table format in use on your disks normally requires you to "
+"create a separate partition for boot loader code. This partition should be "
+"marked for use as an \"EFI boot partition\" and should be at least 35 MB in "
+"size. Note that this is not the same as a partition mounted on /boot."
+msgstr ""
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:38001
+#: ../partman-partitioning.templates:39001
+msgid ""
+"If you do not go back to the partitioning menu and correct this error, boot "
+"loader installation may fail later, although it may still be possible to "
+"install the boot loader to a partition."
+msgstr ""
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:39001
+msgid ""
+"The partition table format in use on your disks normally requires you to "
+"create a separate partition for boot loader code. This partition should be "
+"marked for use as a \"Reserved BIOS boot area\" and should be at least 1 MB "
+"in size. Note that this is not the same as a partition mounted on /boot."
+msgstr ""
diff -pruN 120/debian/po/de.po 120ubuntu3/debian/po/de.po
--- 120/debian/po/de.po	2016-06-04 18:02:55.000000000 +0000
+++ 120ubuntu3/debian/po/de.po	2018-01-15 09:44:57.000000000 +0000
@@ -583,3 +583,50 @@ msgstr "Reservierter BIOS Boot-Bereich"
 #: ../partman-partitioning.templates:33001
 msgid "biosgrub"
 msgstr "biosgrub"
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:38001
+#: ../partman-partitioning.templates:39001
+msgid "Go back to the menu and correct this problem?"
+msgstr "Möchten Sie zum Hauptmenü zurückkehren, um die Fehler zu beheben?"
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:38001
+msgid ""
+"The partition table format in use on your disks normally requires you to "
+"create a separate partition for boot loader code. This partition should be "
+"marked for use as an \"EFI boot partition\" and should be at least 35 MB in "
+"size. Note that this is not the same as a partition mounted on /boot."
+msgstr ""
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:38001
+#: ../partman-partitioning.templates:39001
+msgid ""
+"If you do not go back to the partitioning menu and correct this error, boot "
+"loader installation may fail later, although it may still be possible to "
+"install the boot loader to a partition."
+msgstr ""
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:39001
+msgid ""
+"The partition table format in use on your disks normally requires you to "
+"create a separate partition for boot loader code. This partition should be "
+"marked for use as a \"Reserved BIOS boot area\" and should be at least 1 MB "
+"in size. Note that this is not the same as a partition mounted on /boot."
+msgstr ""
diff -pruN 120/debian/po/dz.po 120ubuntu3/debian/po/dz.po
--- 120/debian/po/dz.po	2016-06-04 18:02:55.000000000 +0000
+++ 120ubuntu3/debian/po/dz.po	2018-01-15 09:44:58.000000000 +0000
@@ -546,3 +546,50 @@ msgstr " ཟུར་གསོག་འ
 #: ../partman-partitioning.templates:33001
 msgid "biosgrub"
 msgstr "བ་ཡོསི་ག་རབ་"
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:38001
+#: ../partman-partitioning.templates:39001
+msgid "Go back to the menu and correct this problem?"
+msgstr "དཀར་ཆག་ལུ་ལོག་འགྱོ་འདི་དཀའ་ངལ་འདི་ནོར་བཅོས་འབད?"
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:38001
+msgid ""
+"The partition table format in use on your disks normally requires you to "
+"create a separate partition for boot loader code. This partition should be "
+"marked for use as an \"EFI boot partition\" and should be at least 35 MB in "
+"size. Note that this is not the same as a partition mounted on /boot."
+msgstr ""
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:38001
+#: ../partman-partitioning.templates:39001
+msgid ""
+"If you do not go back to the partitioning menu and correct this error, boot "
+"loader installation may fail later, although it may still be possible to "
+"install the boot loader to a partition."
+msgstr ""
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:39001
+msgid ""
+"The partition table format in use on your disks normally requires you to "
+"create a separate partition for boot loader code. This partition should be "
+"marked for use as a \"Reserved BIOS boot area\" and should be at least 1 MB "
+"in size. Note that this is not the same as a partition mounted on /boot."
+msgstr ""
diff -pruN 120/debian/po/el.po 120ubuntu3/debian/po/el.po
--- 120/debian/po/el.po	2017-11-21 04:12:59.000000000 +0000
+++ 120ubuntu3/debian/po/el.po	2018-01-15 09:44:57.000000000 +0000
@@ -576,3 +576,50 @@ msgstr "Δεσμευμένη περιο
 #: ../partman-partitioning.templates:33001
 msgid "biosgrub"
 msgstr "biosgrub"
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:38001
+#: ../partman-partitioning.templates:39001
+msgid "Go back to the menu and correct this problem?"
+msgstr "Θέλετε να επιστρέψετε στο μενού και να διορθώσετε τα σφάλματα;"
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:38001
+msgid ""
+"The partition table format in use on your disks normally requires you to "
+"create a separate partition for boot loader code. This partition should be "
+"marked for use as an \"EFI boot partition\" and should be at least 35 MB in "
+"size. Note that this is not the same as a partition mounted on /boot."
+msgstr ""
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:38001
+#: ../partman-partitioning.templates:39001
+msgid ""
+"If you do not go back to the partitioning menu and correct this error, boot "
+"loader installation may fail later, although it may still be possible to "
+"install the boot loader to a partition."
+msgstr ""
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:39001
+msgid ""
+"The partition table format in use on your disks normally requires you to "
+"create a separate partition for boot loader code. This partition should be "
+"marked for use as a \"Reserved BIOS boot area\" and should be at least 1 MB "
+"in size. Note that this is not the same as a partition mounted on /boot."
+msgstr ""
diff -pruN 120/debian/po/eo.po 120ubuntu3/debian/po/eo.po
--- 120/debian/po/eo.po	2017-12-03 04:08:26.000000000 +0000
+++ 120ubuntu3/debian/po/eo.po	2018-01-15 09:44:58.000000000 +0000
@@ -552,3 +552,50 @@ msgstr "Rezervita ekŝarg-areo por BIOS"
 #: ../partman-partitioning.templates:33001
 msgid "biosgrub"
 msgstr "biosgrub"
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:38001
+#: ../partman-partitioning.templates:39001
+msgid "Go back to the menu and correct this problem?"
+msgstr "Ĉu reiri al la menuo por korekti ĉi tiun problemon?"
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:38001
+msgid ""
+"The partition table format in use on your disks normally requires you to "
+"create a separate partition for boot loader code. This partition should be "
+"marked for use as an \"EFI boot partition\" and should be at least 35 MB in "
+"size. Note that this is not the same as a partition mounted on /boot."
+msgstr ""
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:38001
+#: ../partman-partitioning.templates:39001
+msgid ""
+"If you do not go back to the partitioning menu and correct this error, boot "
+"loader installation may fail later, although it may still be possible to "
+"install the boot loader to a partition."
+msgstr ""
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:39001
+msgid ""
+"The partition table format in use on your disks normally requires you to "
+"create a separate partition for boot loader code. This partition should be "
+"marked for use as a \"Reserved BIOS boot area\" and should be at least 1 MB "
+"in size. Note that this is not the same as a partition mounted on /boot."
+msgstr ""
diff -pruN 120/debian/po/es.po 120ubuntu3/debian/po/es.po
--- 120/debian/po/es.po	2016-06-04 18:02:55.000000000 +0000
+++ 120ubuntu3/debian/po/es.po	2018-01-15 09:44:58.000000000 +0000
@@ -595,3 +595,50 @@ msgstr "Área reservada de la BIOS de ar
 #: ../partman-partitioning.templates:33001
 msgid "biosgrub"
 msgstr "biosgrub"
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:38001
+#: ../partman-partitioning.templates:39001
+msgid "Go back to the menu and correct this problem?"
+msgstr "¿Desea volver al menú y corregir este error?"
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:38001
+msgid ""
+"The partition table format in use on your disks normally requires you to "
+"create a separate partition for boot loader code. This partition should be "
+"marked for use as an \"EFI boot partition\" and should be at least 35 MB in "
+"size. Note that this is not the same as a partition mounted on /boot."
+msgstr ""
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:38001
+#: ../partman-partitioning.templates:39001
+msgid ""
+"If you do not go back to the partitioning menu and correct this error, boot "
+"loader installation may fail later, although it may still be possible to "
+"install the boot loader to a partition."
+msgstr ""
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:39001
+msgid ""
+"The partition table format in use on your disks normally requires you to "
+"create a separate partition for boot loader code. This partition should be "
+"marked for use as a \"Reserved BIOS boot area\" and should be at least 1 MB "
+"in size. Note that this is not the same as a partition mounted on /boot."
+msgstr ""
diff -pruN 120/debian/po/et.po 120ubuntu3/debian/po/et.po
--- 120/debian/po/et.po	2016-06-04 18:02:55.000000000 +0000
+++ 120ubuntu3/debian/po/et.po	2018-01-15 09:44:58.000000000 +0000
@@ -555,3 +555,50 @@ msgstr "Reserveeritud BIOS-i alglaadimis
 #: ../partman-partitioning.templates:33001
 msgid "biosgrub"
 msgstr "biosgrub"
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:38001
+#: ../partman-partitioning.templates:39001
+msgid "Go back to the menu and correct this problem?"
+msgstr "Kas minna tagasi menüüsse ja viga parandada?"
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:38001
+msgid ""
+"The partition table format in use on your disks normally requires you to "
+"create a separate partition for boot loader code. This partition should be "
+"marked for use as an \"EFI boot partition\" and should be at least 35 MB in "
+"size. Note that this is not the same as a partition mounted on /boot."
+msgstr ""
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:38001
+#: ../partman-partitioning.templates:39001
+msgid ""
+"If you do not go back to the partitioning menu and correct this error, boot "
+"loader installation may fail later, although it may still be possible to "
+"install the boot loader to a partition."
+msgstr ""
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:39001
+msgid ""
+"The partition table format in use on your disks normally requires you to "
+"create a separate partition for boot loader code. This partition should be "
+"marked for use as a \"Reserved BIOS boot area\" and should be at least 1 MB "
+"in size. Note that this is not the same as a partition mounted on /boot."
+msgstr ""
diff -pruN 120/debian/po/eu.po 120ubuntu3/debian/po/eu.po
--- 120/debian/po/eu.po	2016-06-04 18:02:55.000000000 +0000
+++ 120ubuntu3/debian/po/eu.po	2018-01-15 09:44:57.000000000 +0000
@@ -556,3 +556,50 @@ msgstr "Erreserbatutako BIOSeko abioaren
 #: ../partman-partitioning.templates:33001
 msgid "biosgrub"
 msgstr "biosgrub"
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:38001
+#: ../partman-partitioning.templates:39001
+msgid "Go back to the menu and correct this problem?"
+msgstr "Menura itzuli eta arazo hau konpondu nahi duzu?"
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:38001
+msgid ""
+"The partition table format in use on your disks normally requires you to "
+"create a separate partition for boot loader code. This partition should be "
+"marked for use as an \"EFI boot partition\" and should be at least 35 MB in "
+"size. Note that this is not the same as a partition mounted on /boot."
+msgstr ""
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:38001
+#: ../partman-partitioning.templates:39001
+msgid ""
+"If you do not go back to the partitioning menu and correct this error, boot "
+"loader installation may fail later, although it may still be possible to "
+"install the boot loader to a partition."
+msgstr ""
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:39001
+msgid ""
+"The partition table format in use on your disks normally requires you to "
+"create a separate partition for boot loader code. This partition should be "
+"marked for use as a \"Reserved BIOS boot area\" and should be at least 1 MB "
+"in size. Note that this is not the same as a partition mounted on /boot."
+msgstr ""
diff -pruN 120/debian/po/fa.po 120ubuntu3/debian/po/fa.po
--- 120/debian/po/fa.po	2016-06-04 18:02:55.000000000 +0000
+++ 120ubuntu3/debian/po/fa.po	2018-01-15 09:44:57.000000000 +0000
@@ -552,3 +552,50 @@ msgstr "ناحیه بوت BIOS رزرو
 #: ../partman-partitioning.templates:33001
 msgid "biosgrub"
 msgstr "biosgrub"
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:38001
+#: ../partman-partitioning.templates:39001
+msgid "Go back to the menu and correct this problem?"
+msgstr "بازگشت به منو و تصحیح این مشکل؟"
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:38001
+msgid ""
+"The partition table format in use on your disks normally requires you to "
+"create a separate partition for boot loader code. This partition should be "
+"marked for use as an \"EFI boot partition\" and should be at least 35 MB in "
+"size. Note that this is not the same as a partition mounted on /boot."
+msgstr ""
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:38001
+#: ../partman-partitioning.templates:39001
+msgid ""
+"If you do not go back to the partitioning menu and correct this error, boot "
+"loader installation may fail later, although it may still be possible to "
+"install the boot loader to a partition."
+msgstr ""
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:39001
+msgid ""
+"The partition table format in use on your disks normally requires you to "
+"create a separate partition for boot loader code. This partition should be "
+"marked for use as a \"Reserved BIOS boot area\" and should be at least 1 MB "
+"in size. Note that this is not the same as a partition mounted on /boot."
+msgstr ""
diff -pruN 120/debian/po/fi.po 120ubuntu3/debian/po/fi.po
--- 120/debian/po/fi.po	2016-06-04 18:02:55.000000000 +0000
+++ 120ubuntu3/debian/po/fi.po	2018-01-15 09:44:57.000000000 +0000
@@ -553,3 +553,50 @@ msgstr "BIOSille varattu käynnistysalue
 #: ../partman-partitioning.templates:33001
 msgid "biosgrub"
 msgstr "biosgrub"
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:38001
+#: ../partman-partitioning.templates:39001
+msgid "Go back to the menu and correct this problem?"
+msgstr "Palataanko valikkoon korjaamaan tämä ongelma?"
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:38001
+msgid ""
+"The partition table format in use on your disks normally requires you to "
+"create a separate partition for boot loader code. This partition should be "
+"marked for use as an \"EFI boot partition\" and should be at least 35 MB in "
+"size. Note that this is not the same as a partition mounted on /boot."
+msgstr ""
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:38001
+#: ../partman-partitioning.templates:39001
+msgid ""
+"If you do not go back to the partitioning menu and correct this error, boot "
+"loader installation may fail later, although it may still be possible to "
+"install the boot loader to a partition."
+msgstr ""
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:39001
+msgid ""
+"The partition table format in use on your disks normally requires you to "
+"create a separate partition for boot loader code. This partition should be "
+"marked for use as a \"Reserved BIOS boot area\" and should be at least 1 MB "
+"in size. Note that this is not the same as a partition mounted on /boot."
+msgstr ""
diff -pruN 120/debian/po/fr.po 120ubuntu3/debian/po/fr.po
--- 120/debian/po/fr.po	2016-06-04 18:02:55.000000000 +0000
+++ 120ubuntu3/debian/po/fr.po	2018-01-15 09:44:57.000000000 +0000
@@ -568,3 +568,50 @@ msgstr "Zone réservée pour le chargeur
 #: ../partman-partitioning.templates:33001
 msgid "biosgrub"
 msgstr "biosgrub"
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:38001
+#: ../partman-partitioning.templates:39001
+msgid "Go back to the menu and correct this problem?"
+msgstr "Revenir au menu et corriger ce défaut ?"
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:38001
+msgid ""
+"The partition table format in use on your disks normally requires you to "
+"create a separate partition for boot loader code. This partition should be "
+"marked for use as an \"EFI boot partition\" and should be at least 35 MB in "
+"size. Note that this is not the same as a partition mounted on /boot."
+msgstr ""
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:38001
+#: ../partman-partitioning.templates:39001
+msgid ""
+"If you do not go back to the partitioning menu and correct this error, boot "
+"loader installation may fail later, although it may still be possible to "
+"install the boot loader to a partition."
+msgstr ""
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:39001
+msgid ""
+"The partition table format in use on your disks normally requires you to "
+"create a separate partition for boot loader code. This partition should be "
+"marked for use as a \"Reserved BIOS boot area\" and should be at least 1 MB "
+"in size. Note that this is not the same as a partition mounted on /boot."
+msgstr ""
diff -pruN 120/debian/po/ga.po 120ubuntu3/debian/po/ga.po
--- 120/debian/po/ga.po	2016-06-04 18:02:55.000000000 +0000
+++ 120ubuntu3/debian/po/ga.po	2018-01-15 09:44:57.000000000 +0000
@@ -551,3 +551,50 @@ msgstr "Limistéar forchoimeádta tosait
 #: ../partman-partitioning.templates:33001
 msgid "biosgrub"
 msgstr "biosgrub"
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:38001
+#: ../partman-partitioning.templates:39001
+msgid "Go back to the menu and correct this problem?"
+msgstr "Fill ar an roghchlár agus ceartaigh an fhadhb seo?"
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:38001
+msgid ""
+"The partition table format in use on your disks normally requires you to "
+"create a separate partition for boot loader code. This partition should be "
+"marked for use as an \"EFI boot partition\" and should be at least 35 MB in "
+"size. Note that this is not the same as a partition mounted on /boot."
+msgstr ""
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:38001
+#: ../partman-partitioning.templates:39001
+msgid ""
+"If you do not go back to the partitioning menu and correct this error, boot "
+"loader installation may fail later, although it may still be possible to "
+"install the boot loader to a partition."
+msgstr ""
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:39001
+msgid ""
+"The partition table format in use on your disks normally requires you to "
+"create a separate partition for boot loader code. This partition should be "
+"marked for use as a \"Reserved BIOS boot area\" and should be at least 1 MB "
+"in size. Note that this is not the same as a partition mounted on /boot."
+msgstr ""
diff -pruN 120/debian/po/gl.po 120ubuntu3/debian/po/gl.po
--- 120/debian/po/gl.po	2016-06-04 18:02:55.000000000 +0000
+++ 120ubuntu3/debian/po/gl.po	2018-01-15 09:44:58.000000000 +0000
@@ -557,3 +557,50 @@ msgstr "Área de arranque reservada para
 #: ../partman-partitioning.templates:33001
 msgid "biosgrub"
 msgstr "biosgrub"
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:38001
+#: ../partman-partitioning.templates:39001
+msgid "Go back to the menu and correct this problem?"
+msgstr "Desexa volver ao menú e corrixir este problema?"
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:38001
+msgid ""
+"The partition table format in use on your disks normally requires you to "
+"create a separate partition for boot loader code. This partition should be "
+"marked for use as an \"EFI boot partition\" and should be at least 35 MB in "
+"size. Note that this is not the same as a partition mounted on /boot."
+msgstr ""
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:38001
+#: ../partman-partitioning.templates:39001
+msgid ""
+"If you do not go back to the partitioning menu and correct this error, boot "
+"loader installation may fail later, although it may still be possible to "
+"install the boot loader to a partition."
+msgstr ""
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:39001
+msgid ""
+"The partition table format in use on your disks normally requires you to "
+"create a separate partition for boot loader code. This partition should be "
+"marked for use as a \"Reserved BIOS boot area\" and should be at least 1 MB "
+"in size. Note that this is not the same as a partition mounted on /boot."
+msgstr ""
diff -pruN 120/debian/po/gu.po 120ubuntu3/debian/po/gu.po
--- 120/debian/po/gu.po	2016-06-04 18:02:55.000000000 +0000
+++ 120ubuntu3/debian/po/gu.po	2018-01-15 09:44:58.000000000 +0000
@@ -548,3 +548,50 @@ msgstr "આરક્ષિત BIOS બ
 #: ../partman-partitioning.templates:33001
 msgid "biosgrub"
 msgstr "biosgrub"
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:38001
+#: ../partman-partitioning.templates:39001
+msgid "Go back to the menu and correct this problem?"
+msgstr "મેનુમાં પાછા જશો અને આ સમસ્યા દૂર કરશો?"
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:38001
+msgid ""
+"The partition table format in use on your disks normally requires you to "
+"create a separate partition for boot loader code. This partition should be "
+"marked for use as an \"EFI boot partition\" and should be at least 35 MB in "
+"size. Note that this is not the same as a partition mounted on /boot."
+msgstr ""
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:38001
+#: ../partman-partitioning.templates:39001
+msgid ""
+"If you do not go back to the partitioning menu and correct this error, boot "
+"loader installation may fail later, although it may still be possible to "
+"install the boot loader to a partition."
+msgstr ""
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:39001
+msgid ""
+"The partition table format in use on your disks normally requires you to "
+"create a separate partition for boot loader code. This partition should be "
+"marked for use as a \"Reserved BIOS boot area\" and should be at least 1 MB "
+"in size. Note that this is not the same as a partition mounted on /boot."
+msgstr ""
diff -pruN 120/debian/po/he.po 120ubuntu3/debian/po/he.po
--- 120/debian/po/he.po	2016-06-04 18:02:55.000000000 +0000
+++ 120ubuntu3/debian/po/he.po	2018-01-15 09:44:57.000000000 +0000
@@ -550,3 +550,50 @@ msgstr "אזור שמור לאתחול 
 #: ../partman-partitioning.templates:33001
 msgid "biosgrub"
 msgstr "biosgrub"
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:38001
+#: ../partman-partitioning.templates:39001
+msgid "Go back to the menu and correct this problem?"
+msgstr "לחזור חזרה לתפריט ולתקן את השגיאה?"
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:38001
+msgid ""
+"The partition table format in use on your disks normally requires you to "
+"create a separate partition for boot loader code. This partition should be "
+"marked for use as an \"EFI boot partition\" and should be at least 35 MB in "
+"size. Note that this is not the same as a partition mounted on /boot."
+msgstr ""
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:38001
+#: ../partman-partitioning.templates:39001
+msgid ""
+"If you do not go back to the partitioning menu and correct this error, boot "
+"loader installation may fail later, although it may still be possible to "
+"install the boot loader to a partition."
+msgstr ""
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:39001
+msgid ""
+"The partition table format in use on your disks normally requires you to "
+"create a separate partition for boot loader code. This partition should be "
+"marked for use as a \"Reserved BIOS boot area\" and should be at least 1 MB "
+"in size. Note that this is not the same as a partition mounted on /boot."
+msgstr ""
diff -pruN 120/debian/po/hi.po 120ubuntu3/debian/po/hi.po
--- 120/debian/po/hi.po	2016-06-04 18:02:55.000000000 +0000
+++ 120ubuntu3/debian/po/hi.po	2018-01-15 09:44:57.000000000 +0000
@@ -547,3 +547,50 @@ msgstr "सुरक्षित बा
 #: ../partman-partitioning.templates:33001
 msgid "biosgrub"
 msgstr "बायोसग्रब"
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:38001
+#: ../partman-partitioning.templates:39001
+msgid "Go back to the menu and correct this problem?"
+msgstr "मेन्यू में वापस जाएँ तथा त्रुटियों को सुधारें?"
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:38001
+msgid ""
+"The partition table format in use on your disks normally requires you to "
+"create a separate partition for boot loader code. This partition should be "
+"marked for use as an \"EFI boot partition\" and should be at least 35 MB in "
+"size. Note that this is not the same as a partition mounted on /boot."
+msgstr ""
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:38001
+#: ../partman-partitioning.templates:39001
+msgid ""
+"If you do not go back to the partitioning menu and correct this error, boot "
+"loader installation may fail later, although it may still be possible to "
+"install the boot loader to a partition."
+msgstr ""
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:39001
+msgid ""
+"The partition table format in use on your disks normally requires you to "
+"create a separate partition for boot loader code. This partition should be "
+"marked for use as a \"Reserved BIOS boot area\" and should be at least 1 MB "
+"in size. Note that this is not the same as a partition mounted on /boot."
+msgstr ""
diff -pruN 120/debian/po/hr.po 120ubuntu3/debian/po/hr.po
--- 120/debian/po/hr.po	2016-06-04 18:02:55.000000000 +0000
+++ 120ubuntu3/debian/po/hr.po	2018-01-15 09:44:57.000000000 +0000
@@ -553,3 +553,50 @@ msgstr "Rezervirano BIOS boot područje"
 #: ../partman-partitioning.templates:33001
 msgid "biosgrub"
 msgstr "biosgrub"
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:38001
+#: ../partman-partitioning.templates:39001
+msgid "Go back to the menu and correct this problem?"
+msgstr "Vrati se u izbornik i ispravi taj problem"
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:38001
+msgid ""
+"The partition table format in use on your disks normally requires you to "
+"create a separate partition for boot loader code. This partition should be "
+"marked for use as an \"EFI boot partition\" and should be at least 35 MB in "
+"size. Note that this is not the same as a partition mounted on /boot."
+msgstr ""
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:38001
+#: ../partman-partitioning.templates:39001
+msgid ""
+"If you do not go back to the partitioning menu and correct this error, boot "
+"loader installation may fail later, although it may still be possible to "
+"install the boot loader to a partition."
+msgstr ""
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:39001
+msgid ""
+"The partition table format in use on your disks normally requires you to "
+"create a separate partition for boot loader code. This partition should be "
+"marked for use as a \"Reserved BIOS boot area\" and should be at least 1 MB "
+"in size. Note that this is not the same as a partition mounted on /boot."
+msgstr ""
diff -pruN 120/debian/po/hu.po 120ubuntu3/debian/po/hu.po
--- 120/debian/po/hu.po	2016-06-04 18:02:55.000000000 +0000
+++ 120ubuntu3/debian/po/hu.po	2018-01-15 09:44:58.000000000 +0000
@@ -827,3 +827,50 @@ msgstr "Fenntartott BIOS boot terület"
 #: ../partman-partitioning.templates:33001
 msgid "biosgrub"
 msgstr "biosgrub"
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:38001
+#: ../partman-partitioning.templates:39001
+msgid "Go back to the menu and correct this problem?"
+msgstr "Visszalép a menübe és javítja a hibát?"
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:38001
+msgid ""
+"The partition table format in use on your disks normally requires you to "
+"create a separate partition for boot loader code. This partition should be "
+"marked for use as an \"EFI boot partition\" and should be at least 35 MB in "
+"size. Note that this is not the same as a partition mounted on /boot."
+msgstr ""
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:38001
+#: ../partman-partitioning.templates:39001
+msgid ""
+"If you do not go back to the partitioning menu and correct this error, boot "
+"loader installation may fail later, although it may still be possible to "
+"install the boot loader to a partition."
+msgstr ""
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:39001
+msgid ""
+"The partition table format in use on your disks normally requires you to "
+"create a separate partition for boot loader code. This partition should be "
+"marked for use as a \"Reserved BIOS boot area\" and should be at least 1 MB "
+"in size. Note that this is not the same as a partition mounted on /boot."
+msgstr ""
diff -pruN 120/debian/po/id.po 120ubuntu3/debian/po/id.po
--- 120/debian/po/id.po	2016-06-04 18:02:55.000000000 +0000
+++ 120ubuntu3/debian/po/id.po	2018-01-15 09:44:57.000000000 +0000
@@ -566,3 +566,50 @@ msgstr "Area khusus boot BIOS"
 #: ../partman-partitioning.templates:33001
 msgid "biosgrub"
 msgstr "bootbios"
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:38001
+#: ../partman-partitioning.templates:39001
+msgid "Go back to the menu and correct this problem?"
+msgstr "Kembali ke menu sebelumnya dan perbaiki kesalahan tersebut?"
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:38001
+msgid ""
+"The partition table format in use on your disks normally requires you to "
+"create a separate partition for boot loader code. This partition should be "
+"marked for use as an \"EFI boot partition\" and should be at least 35 MB in "
+"size. Note that this is not the same as a partition mounted on /boot."
+msgstr ""
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:38001
+#: ../partman-partitioning.templates:39001
+msgid ""
+"If you do not go back to the partitioning menu and correct this error, boot "
+"loader installation may fail later, although it may still be possible to "
+"install the boot loader to a partition."
+msgstr ""
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:39001
+msgid ""
+"The partition table format in use on your disks normally requires you to "
+"create a separate partition for boot loader code. This partition should be "
+"marked for use as a \"Reserved BIOS boot area\" and should be at least 1 MB "
+"in size. Note that this is not the same as a partition mounted on /boot."
+msgstr ""
diff -pruN 120/debian/po/is.po 120ubuntu3/debian/po/is.po
--- 120/debian/po/is.po	2018-01-13 04:21:04.000000000 +0000
+++ 120ubuntu3/debian/po/is.po	2018-01-15 09:44:58.000000000 +0000
@@ -557,3 +557,50 @@ msgstr "Frátekið BIOS ræsisvæði"
 #: ../partman-partitioning.templates:33001
 msgid "biosgrub"
 msgstr "biosgrub"
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:38001
+#: ../partman-partitioning.templates:39001
+msgid "Go back to the menu and correct this problem?"
+msgstr "Fara aftur í valmyndina og laga vandamálið?"
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:38001
+msgid ""
+"The partition table format in use on your disks normally requires you to "
+"create a separate partition for boot loader code. This partition should be "
+"marked for use as an \"EFI boot partition\" and should be at least 35 MB in "
+"size. Note that this is not the same as a partition mounted on /boot."
+msgstr ""
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:38001
+#: ../partman-partitioning.templates:39001
+msgid ""
+"If you do not go back to the partitioning menu and correct this error, boot "
+"loader installation may fail later, although it may still be possible to "
+"install the boot loader to a partition."
+msgstr ""
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:39001
+msgid ""
+"The partition table format in use on your disks normally requires you to "
+"create a separate partition for boot loader code. This partition should be "
+"marked for use as a \"Reserved BIOS boot area\" and should be at least 1 MB "
+"in size. Note that this is not the same as a partition mounted on /boot."
+msgstr ""
diff -pruN 120/debian/po/it.po 120ubuntu3/debian/po/it.po
--- 120/debian/po/it.po	2016-06-04 18:02:55.000000000 +0000
+++ 120ubuntu3/debian/po/it.po	2018-01-15 09:44:57.000000000 +0000
@@ -573,3 +573,50 @@ msgstr "Area di boot BIOS riservata"
 #: ../partman-partitioning.templates:33001
 msgid "biosgrub"
 msgstr "biosgrub"
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:38001
+#: ../partman-partitioning.templates:39001
+msgid "Go back to the menu and correct this problem?"
+msgstr "Tornare al menù e correggere questo problema?"
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:38001
+msgid ""
+"The partition table format in use on your disks normally requires you to "
+"create a separate partition for boot loader code. This partition should be "
+"marked for use as an \"EFI boot partition\" and should be at least 35 MB in "
+"size. Note that this is not the same as a partition mounted on /boot."
+msgstr ""
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:38001
+#: ../partman-partitioning.templates:39001
+msgid ""
+"If you do not go back to the partitioning menu and correct this error, boot "
+"loader installation may fail later, although it may still be possible to "
+"install the boot loader to a partition."
+msgstr ""
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:39001
+msgid ""
+"The partition table format in use on your disks normally requires you to "
+"create a separate partition for boot loader code. This partition should be "
+"marked for use as a \"Reserved BIOS boot area\" and should be at least 1 MB "
+"in size. Note that this is not the same as a partition mounted on /boot."
+msgstr ""
diff -pruN 120/debian/po/ja.po 120ubuntu3/debian/po/ja.po
--- 120/debian/po/ja.po	2016-06-04 18:02:55.000000000 +0000
+++ 120ubuntu3/debian/po/ja.po	2018-01-15 09:44:57.000000000 +0000
@@ -557,3 +557,50 @@ msgstr "予約済み BIOS ブート領
 #: ../partman-partitioning.templates:33001
 msgid "biosgrub"
 msgstr "biosgrub"
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:38001
+#: ../partman-partitioning.templates:39001
+msgid "Go back to the menu and correct this problem?"
+msgstr "メニューに戻ってこの問題を修正しますか?"
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:38001
+msgid ""
+"The partition table format in use on your disks normally requires you to "
+"create a separate partition for boot loader code. This partition should be "
+"marked for use as an \"EFI boot partition\" and should be at least 35 MB in "
+"size. Note that this is not the same as a partition mounted on /boot."
+msgstr ""
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:38001
+#: ../partman-partitioning.templates:39001
+msgid ""
+"If you do not go back to the partitioning menu and correct this error, boot "
+"loader installation may fail later, although it may still be possible to "
+"install the boot loader to a partition."
+msgstr ""
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:39001
+msgid ""
+"The partition table format in use on your disks normally requires you to "
+"create a separate partition for boot loader code. This partition should be "
+"marked for use as a \"Reserved BIOS boot area\" and should be at least 1 MB "
+"in size. Note that this is not the same as a partition mounted on /boot."
+msgstr ""
diff -pruN 120/debian/po/ka.po 120ubuntu3/debian/po/ka.po
--- 120/debian/po/ka.po	2016-06-04 18:02:55.000000000 +0000
+++ 120ubuntu3/debian/po/ka.po	2018-01-15 09:44:57.000000000 +0000
@@ -557,3 +557,50 @@ msgstr "BIOS ჩატვირთვი
 #: ../partman-partitioning.templates:33001
 msgid "biosgrub"
 msgstr "biosgrub"
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:38001
+#: ../partman-partitioning.templates:39001
+msgid "Go back to the menu and correct this problem?"
+msgstr "დავბრუნდეთ მენუში და გავასწოროთ შეცდომები?"
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:38001
+msgid ""
+"The partition table format in use on your disks normally requires you to "
+"create a separate partition for boot loader code. This partition should be "
+"marked for use as an \"EFI boot partition\" and should be at least 35 MB in "
+"size. Note that this is not the same as a partition mounted on /boot."
+msgstr ""
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:38001
+#: ../partman-partitioning.templates:39001
+msgid ""
+"If you do not go back to the partitioning menu and correct this error, boot "
+"loader installation may fail later, although it may still be possible to "
+"install the boot loader to a partition."
+msgstr ""
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:39001
+msgid ""
+"The partition table format in use on your disks normally requires you to "
+"create a separate partition for boot loader code. This partition should be "
+"marked for use as a \"Reserved BIOS boot area\" and should be at least 1 MB "
+"in size. Note that this is not the same as a partition mounted on /boot."
+msgstr ""
diff -pruN 120/debian/po/kk.po 120ubuntu3/debian/po/kk.po
--- 120/debian/po/kk.po	2016-06-04 18:02:55.000000000 +0000
+++ 120ubuntu3/debian/po/kk.po	2018-01-15 09:44:58.000000000 +0000
@@ -547,3 +547,50 @@ msgstr "BIOS жүктеуішісіні
 #: ../partman-partitioning.templates:33001
 msgid "biosgrub"
 msgstr "biosgrub"
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:38001
+#: ../partman-partitioning.templates:39001
+msgid "Go back to the menu and correct this problem?"
+msgstr "Мәзірге оралып, қателерді түзетуді қалайсыз ба?"
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:38001
+msgid ""
+"The partition table format in use on your disks normally requires you to "
+"create a separate partition for boot loader code. This partition should be "
+"marked for use as an \"EFI boot partition\" and should be at least 35 MB in "
+"size. Note that this is not the same as a partition mounted on /boot."
+msgstr ""
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:38001
+#: ../partman-partitioning.templates:39001
+msgid ""
+"If you do not go back to the partitioning menu and correct this error, boot "
+"loader installation may fail later, although it may still be possible to "
+"install the boot loader to a partition."
+msgstr ""
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:39001
+msgid ""
+"The partition table format in use on your disks normally requires you to "
+"create a separate partition for boot loader code. This partition should be "
+"marked for use as a \"Reserved BIOS boot area\" and should be at least 1 MB "
+"in size. Note that this is not the same as a partition mounted on /boot."
+msgstr ""
diff -pruN 120/debian/po/km.po 120ubuntu3/debian/po/km.po
--- 120/debian/po/km.po	2016-06-04 18:02:55.000000000 +0000
+++ 120ubuntu3/debian/po/km.po	2018-01-15 09:44:57.000000000 +0000
@@ -525,3 +525,50 @@ msgstr "ផ្ទៃ​ចាប់ផ
 #: ../partman-partitioning.templates:33001
 msgid "biosgrub"
 msgstr "biosgrub"
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:38001
+#: ../partman-partitioning.templates:39001
+msgid "Go back to the menu and correct this problem?"
+msgstr "ត្រឡប់​ទៅ​ម៉ឺនុយ ហើយ​កែ​កំហុស​នេះ ?"
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:38001
+msgid ""
+"The partition table format in use on your disks normally requires you to "
+"create a separate partition for boot loader code. This partition should be "
+"marked for use as an \"EFI boot partition\" and should be at least 35 MB in "
+"size. Note that this is not the same as a partition mounted on /boot."
+msgstr ""
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:38001
+#: ../partman-partitioning.templates:39001
+msgid ""
+"If you do not go back to the partitioning menu and correct this error, boot "
+"loader installation may fail later, although it may still be possible to "
+"install the boot loader to a partition."
+msgstr ""
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:39001
+msgid ""
+"The partition table format in use on your disks normally requires you to "
+"create a separate partition for boot loader code. This partition should be "
+"marked for use as a \"Reserved BIOS boot area\" and should be at least 1 MB "
+"in size. Note that this is not the same as a partition mounted on /boot."
+msgstr ""
diff -pruN 120/debian/po/kn.po 120ubuntu3/debian/po/kn.po
--- 120/debian/po/kn.po	2016-06-04 18:02:55.000000000 +0000
+++ 120ubuntu3/debian/po/kn.po	2018-01-15 09:44:57.000000000 +0000
@@ -562,3 +562,50 @@ msgstr "ಕಾಯ್ದಿರಿಸಲ
 #: ../partman-partitioning.templates:33001
 msgid "biosgrub"
 msgstr "biosgrub"
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:38001
+#: ../partman-partitioning.templates:39001
+msgid "Go back to the menu and correct this problem?"
+msgstr ""
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:38001
+msgid ""
+"The partition table format in use on your disks normally requires you to "
+"create a separate partition for boot loader code. This partition should be "
+"marked for use as an \"EFI boot partition\" and should be at least 35 MB in "
+"size. Note that this is not the same as a partition mounted on /boot."
+msgstr ""
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:38001
+#: ../partman-partitioning.templates:39001
+msgid ""
+"If you do not go back to the partitioning menu and correct this error, boot "
+"loader installation may fail later, although it may still be possible to "
+"install the boot loader to a partition."
+msgstr ""
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:39001
+msgid ""
+"The partition table format in use on your disks normally requires you to "
+"create a separate partition for boot loader code. This partition should be "
+"marked for use as a \"Reserved BIOS boot area\" and should be at least 1 MB "
+"in size. Note that this is not the same as a partition mounted on /boot."
+msgstr ""
diff -pruN 120/debian/po/ko.po 120ubuntu3/debian/po/ko.po
--- 120/debian/po/ko.po	2016-06-04 18:02:55.000000000 +0000
+++ 120ubuntu3/debian/po/ko.po	2018-01-15 09:44:57.000000000 +0000
@@ -551,3 +551,50 @@ msgstr "BIOS 예약 부팅 영역"
 #: ../partman-partitioning.templates:33001
 msgid "biosgrub"
 msgstr "BIOS부팅"
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:38001
+#: ../partman-partitioning.templates:39001
+msgid "Go back to the menu and correct this problem?"
+msgstr "메뉴로 돌아가서 이 문제를 바로잡으시겠습니까?"
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:38001
+msgid ""
+"The partition table format in use on your disks normally requires you to "
+"create a separate partition for boot loader code. This partition should be "
+"marked for use as an \"EFI boot partition\" and should be at least 35 MB in "
+"size. Note that this is not the same as a partition mounted on /boot."
+msgstr ""
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:38001
+#: ../partman-partitioning.templates:39001
+msgid ""
+"If you do not go back to the partitioning menu and correct this error, boot "
+"loader installation may fail later, although it may still be possible to "
+"install the boot loader to a partition."
+msgstr ""
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:39001
+msgid ""
+"The partition table format in use on your disks normally requires you to "
+"create a separate partition for boot loader code. This partition should be "
+"marked for use as a \"Reserved BIOS boot area\" and should be at least 1 MB "
+"in size. Note that this is not the same as a partition mounted on /boot."
+msgstr ""
diff -pruN 120/debian/po/ku.po 120ubuntu3/debian/po/ku.po
--- 120/debian/po/ku.po	2016-06-04 18:02:55.000000000 +0000
+++ 120ubuntu3/debian/po/ku.po	2018-01-15 09:44:57.000000000 +0000
@@ -548,3 +548,50 @@ msgstr "Qada boot a BIOS'ê a rezervekir
 #: ../partman-partitioning.templates:33001
 msgid "biosgrub"
 msgstr ""
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:38001
+#: ../partman-partitioning.templates:39001
+msgid "Go back to the menu and correct this problem?"
+msgstr "Bizivire pêşekê û şaştiyan serast bike?"
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:38001
+msgid ""
+"The partition table format in use on your disks normally requires you to "
+"create a separate partition for boot loader code. This partition should be "
+"marked for use as an \"EFI boot partition\" and should be at least 35 MB in "
+"size. Note that this is not the same as a partition mounted on /boot."
+msgstr ""
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:38001
+#: ../partman-partitioning.templates:39001
+msgid ""
+"If you do not go back to the partitioning menu and correct this error, boot "
+"loader installation may fail later, although it may still be possible to "
+"install the boot loader to a partition."
+msgstr ""
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:39001
+msgid ""
+"The partition table format in use on your disks normally requires you to "
+"create a separate partition for boot loader code. This partition should be "
+"marked for use as a \"Reserved BIOS boot area\" and should be at least 1 MB "
+"in size. Note that this is not the same as a partition mounted on /boot."
+msgstr ""
diff -pruN 120/debian/po/lo.po 120ubuntu3/debian/po/lo.po
--- 120/debian/po/lo.po	2016-06-04 18:02:55.000000000 +0000
+++ 120ubuntu3/debian/po/lo.po	2018-01-15 09:44:57.000000000 +0000
@@ -522,3 +522,50 @@ msgstr "ພື້ນທີ່ບູດ
 #: ../partman-partitioning.templates:33001
 msgid "biosgrub"
 msgstr "biosgrub"
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:38001
+#: ../partman-partitioning.templates:39001
+msgid "Go back to the menu and correct this problem?"
+msgstr "ຍອ້ນກັບໄປທີ່ລາຍການເພື່ອແກ້ໄຂປັນຫານີ້ຫຼືບໍ່?"
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:38001
+msgid ""
+"The partition table format in use on your disks normally requires you to "
+"create a separate partition for boot loader code. This partition should be "
+"marked for use as an \"EFI boot partition\" and should be at least 35 MB in "
+"size. Note that this is not the same as a partition mounted on /boot."
+msgstr ""
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:38001
+#: ../partman-partitioning.templates:39001
+msgid ""
+"If you do not go back to the partitioning menu and correct this error, boot "
+"loader installation may fail later, although it may still be possible to "
+"install the boot loader to a partition."
+msgstr ""
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:39001
+msgid ""
+"The partition table format in use on your disks normally requires you to "
+"create a separate partition for boot loader code. This partition should be "
+"marked for use as a \"Reserved BIOS boot area\" and should be at least 1 MB "
+"in size. Note that this is not the same as a partition mounted on /boot."
+msgstr ""
diff -pruN 120/debian/po/lt.po 120ubuntu3/debian/po/lt.po
--- 120/debian/po/lt.po	2017-11-27 04:09:33.000000000 +0000
+++ 120ubuntu3/debian/po/lt.po	2018-01-15 09:44:58.000000000 +0000
@@ -558,3 +558,50 @@ msgstr "Rezervinė BIOS įkelties sritis
 #: ../partman-partitioning.templates:33001
 msgid "biosgrub"
 msgstr "biosgrub"
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:38001
+#: ../partman-partitioning.templates:39001
+msgid "Go back to the menu and correct this problem?"
+msgstr "Ar grįžti į meniu ir pataisyti šią problemą?"
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:38001
+msgid ""
+"The partition table format in use on your disks normally requires you to "
+"create a separate partition for boot loader code. This partition should be "
+"marked for use as an \"EFI boot partition\" and should be at least 35 MB in "
+"size. Note that this is not the same as a partition mounted on /boot."
+msgstr ""
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:38001
+#: ../partman-partitioning.templates:39001
+msgid ""
+"If you do not go back to the partitioning menu and correct this error, boot "
+"loader installation may fail later, although it may still be possible to "
+"install the boot loader to a partition."
+msgstr ""
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:39001
+msgid ""
+"The partition table format in use on your disks normally requires you to "
+"create a separate partition for boot loader code. This partition should be "
+"marked for use as a \"Reserved BIOS boot area\" and should be at least 1 MB "
+"in size. Note that this is not the same as a partition mounted on /boot."
+msgstr ""
diff -pruN 120/debian/po/lv.po 120ubuntu3/debian/po/lv.po
--- 120/debian/po/lv.po	2016-06-04 18:02:55.000000000 +0000
+++ 120ubuntu3/debian/po/lv.po	2018-01-15 09:44:58.000000000 +0000
@@ -557,3 +557,50 @@ msgstr "Rezervēta BIOS palaišanas zona
 #: ../partman-partitioning.templates:33001
 msgid "biosgrub"
 msgstr "biosgrub"
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:38001
+#: ../partman-partitioning.templates:39001
+msgid "Go back to the menu and correct this problem?"
+msgstr "Atgriezties uz galveno izvēlni un izlabot kļūdas?"
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:38001
+msgid ""
+"The partition table format in use on your disks normally requires you to "
+"create a separate partition for boot loader code. This partition should be "
+"marked for use as an \"EFI boot partition\" and should be at least 35 MB in "
+"size. Note that this is not the same as a partition mounted on /boot."
+msgstr ""
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:38001
+#: ../partman-partitioning.templates:39001
+msgid ""
+"If you do not go back to the partitioning menu and correct this error, boot "
+"loader installation may fail later, although it may still be possible to "
+"install the boot loader to a partition."
+msgstr ""
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:39001
+msgid ""
+"The partition table format in use on your disks normally requires you to "
+"create a separate partition for boot loader code. This partition should be "
+"marked for use as a \"Reserved BIOS boot area\" and should be at least 1 MB "
+"in size. Note that this is not the same as a partition mounted on /boot."
+msgstr ""
diff -pruN 120/debian/po/mk.po 120ubuntu3/debian/po/mk.po
--- 120/debian/po/mk.po	2016-06-04 18:02:55.000000000 +0000
+++ 120ubuntu3/debian/po/mk.po	2018-01-15 09:44:57.000000000 +0000
@@ -557,3 +557,50 @@ msgstr "Место резервиран
 #: ../partman-partitioning.templates:33001
 msgid "biosgrub"
 msgstr "biosgrub"
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:38001
+#: ../partman-partitioning.templates:39001
+msgid "Go back to the menu and correct this problem?"
+msgstr "Врати се во менито и поправи го проблемот?"
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:38001
+msgid ""
+"The partition table format in use on your disks normally requires you to "
+"create a separate partition for boot loader code. This partition should be "
+"marked for use as an \"EFI boot partition\" and should be at least 35 MB in "
+"size. Note that this is not the same as a partition mounted on /boot."
+msgstr ""
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:38001
+#: ../partman-partitioning.templates:39001
+msgid ""
+"If you do not go back to the partitioning menu and correct this error, boot "
+"loader installation may fail later, although it may still be possible to "
+"install the boot loader to a partition."
+msgstr ""
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:39001
+msgid ""
+"The partition table format in use on your disks normally requires you to "
+"create a separate partition for boot loader code. This partition should be "
+"marked for use as a \"Reserved BIOS boot area\" and should be at least 1 MB "
+"in size. Note that this is not the same as a partition mounted on /boot."
+msgstr ""
diff -pruN 120/debian/po/ml.po 120ubuntu3/debian/po/ml.po
--- 120/debian/po/ml.po	2016-06-04 18:02:55.000000000 +0000
+++ 120ubuntu3/debian/po/ml.po	2018-01-15 09:44:58.000000000 +0000
@@ -552,3 +552,50 @@ msgstr "നീക്കി വച്ച
 #: ../partman-partitioning.templates:33001
 msgid "biosgrub"
 msgstr "biosgrub"
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:38001
+#: ../partman-partitioning.templates:39001
+msgid "Go back to the menu and correct this problem?"
+msgstr "മെനുവിലേയ്ക്കു് തിരിച്ചു് പോയി ഈ പ്രശ്നം ശരിയാക്കണോ?"
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:38001
+msgid ""
+"The partition table format in use on your disks normally requires you to "
+"create a separate partition for boot loader code. This partition should be "
+"marked for use as an \"EFI boot partition\" and should be at least 35 MB in "
+"size. Note that this is not the same as a partition mounted on /boot."
+msgstr ""
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:38001
+#: ../partman-partitioning.templates:39001
+msgid ""
+"If you do not go back to the partitioning menu and correct this error, boot "
+"loader installation may fail later, although it may still be possible to "
+"install the boot loader to a partition."
+msgstr ""
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:39001
+msgid ""
+"The partition table format in use on your disks normally requires you to "
+"create a separate partition for boot loader code. This partition should be "
+"marked for use as a \"Reserved BIOS boot area\" and should be at least 1 MB "
+"in size. Note that this is not the same as a partition mounted on /boot."
+msgstr ""
diff -pruN 120/debian/po/mr.po 120ubuntu3/debian/po/mr.po
--- 120/debian/po/mr.po	2016-06-04 18:02:55.000000000 +0000
+++ 120ubuntu3/debian/po/mr.po	2018-01-15 09:44:57.000000000 +0000
@@ -546,3 +546,50 @@ msgstr "राखीव बायोस
 #: ../partman-partitioning.templates:33001
 msgid "biosgrub"
 msgstr "बायोसग्रब"
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:38001
+#: ../partman-partitioning.templates:39001
+msgid "Go back to the menu and correct this problem?"
+msgstr "मागे मेन्यूकडे जाउन ही समस्या सुधारायची?"
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:38001
+msgid ""
+"The partition table format in use on your disks normally requires you to "
+"create a separate partition for boot loader code. This partition should be "
+"marked for use as an \"EFI boot partition\" and should be at least 35 MB in "
+"size. Note that this is not the same as a partition mounted on /boot."
+msgstr ""
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:38001
+#: ../partman-partitioning.templates:39001
+msgid ""
+"If you do not go back to the partitioning menu and correct this error, boot "
+"loader installation may fail later, although it may still be possible to "
+"install the boot loader to a partition."
+msgstr ""
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:39001
+msgid ""
+"The partition table format in use on your disks normally requires you to "
+"create a separate partition for boot loader code. This partition should be "
+"marked for use as a \"Reserved BIOS boot area\" and should be at least 1 MB "
+"in size. Note that this is not the same as a partition mounted on /boot."
+msgstr ""
diff -pruN 120/debian/po/nb.po 120ubuntu3/debian/po/nb.po
--- 120/debian/po/nb.po	2016-06-04 18:02:55.000000000 +0000
+++ 120ubuntu3/debian/po/nb.po	2018-01-15 09:44:57.000000000 +0000
@@ -563,3 +563,50 @@ msgstr "Reservert BIOS oppstartsområde"
 #: ../partman-partitioning.templates:33001
 msgid "biosgrub"
 msgstr "biosgrub"
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:38001
+#: ../partman-partitioning.templates:39001
+msgid "Go back to the menu and correct this problem?"
+msgstr "Vil du gå tilbake til menyen og rette opp feilen?"
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:38001
+msgid ""
+"The partition table format in use on your disks normally requires you to "
+"create a separate partition for boot loader code. This partition should be "
+"marked for use as an \"EFI boot partition\" and should be at least 35 MB in "
+"size. Note that this is not the same as a partition mounted on /boot."
+msgstr ""
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:38001
+#: ../partman-partitioning.templates:39001
+msgid ""
+"If you do not go back to the partitioning menu and correct this error, boot "
+"loader installation may fail later, although it may still be possible to "
+"install the boot loader to a partition."
+msgstr ""
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:39001
+msgid ""
+"The partition table format in use on your disks normally requires you to "
+"create a separate partition for boot loader code. This partition should be "
+"marked for use as a \"Reserved BIOS boot area\" and should be at least 1 MB "
+"in size. Note that this is not the same as a partition mounted on /boot."
+msgstr ""
diff -pruN 120/debian/po/ne.po 120ubuntu3/debian/po/ne.po
--- 120/debian/po/ne.po	2016-06-04 18:02:55.000000000 +0000
+++ 120ubuntu3/debian/po/ne.po	2018-01-15 09:44:58.000000000 +0000
@@ -549,3 +549,50 @@ msgstr "संचित BIOS बुट 
 #: ../partman-partitioning.templates:33001
 msgid "biosgrub"
 msgstr "biosqrup"
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:38001
+#: ../partman-partitioning.templates:39001
+msgid "Go back to the menu and correct this problem?"
+msgstr "मेनुमा फर्केर यो समस्या सुधार्नुहुन्छ?"
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:38001
+msgid ""
+"The partition table format in use on your disks normally requires you to "
+"create a separate partition for boot loader code. This partition should be "
+"marked for use as an \"EFI boot partition\" and should be at least 35 MB in "
+"size. Note that this is not the same as a partition mounted on /boot."
+msgstr ""
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:38001
+#: ../partman-partitioning.templates:39001
+msgid ""
+"If you do not go back to the partitioning menu and correct this error, boot "
+"loader installation may fail later, although it may still be possible to "
+"install the boot loader to a partition."
+msgstr ""
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:39001
+msgid ""
+"The partition table format in use on your disks normally requires you to "
+"create a separate partition for boot loader code. This partition should be "
+"marked for use as a \"Reserved BIOS boot area\" and should be at least 1 MB "
+"in size. Note that this is not the same as a partition mounted on /boot."
+msgstr ""
diff -pruN 120/debian/po/nl.po 120ubuntu3/debian/po/nl.po
--- 120/debian/po/nl.po	2016-06-04 18:02:55.000000000 +0000
+++ 120ubuntu3/debian/po/nl.po	2018-01-15 09:44:57.000000000 +0000
@@ -563,3 +563,50 @@ msgstr "Gereserveerd opstartgebied voor
 #: ../partman-partitioning.templates:33001
 msgid "biosgrub"
 msgstr "biosgrub"
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:38001
+#: ../partman-partitioning.templates:39001
+msgid "Go back to the menu and correct this problem?"
+msgstr "Wilt u teruggaan naar het menu om dit probleem op te lossen?"
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:38001
+msgid ""
+"The partition table format in use on your disks normally requires you to "
+"create a separate partition for boot loader code. This partition should be "
+"marked for use as an \"EFI boot partition\" and should be at least 35 MB in "
+"size. Note that this is not the same as a partition mounted on /boot."
+msgstr ""
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:38001
+#: ../partman-partitioning.templates:39001
+msgid ""
+"If you do not go back to the partitioning menu and correct this error, boot "
+"loader installation may fail later, although it may still be possible to "
+"install the boot loader to a partition."
+msgstr ""
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:39001
+msgid ""
+"The partition table format in use on your disks normally requires you to "
+"create a separate partition for boot loader code. This partition should be "
+"marked for use as a \"Reserved BIOS boot area\" and should be at least 1 MB "
+"in size. Note that this is not the same as a partition mounted on /boot."
+msgstr ""
diff -pruN 120/debian/po/nn.po 120ubuntu3/debian/po/nn.po
--- 120/debian/po/nn.po	2017-11-26 04:08:23.000000000 +0000
+++ 120ubuntu3/debian/po/nn.po	2018-01-15 09:44:58.000000000 +0000
@@ -558,3 +558,50 @@ msgstr "Reservert oppstartsområde for B
 #: ../partman-partitioning.templates:33001
 msgid "biosgrub"
 msgstr ""
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:38001
+#: ../partman-partitioning.templates:39001
+msgid "Go back to the menu and correct this problem?"
+msgstr "Gå tilbake til menyen og retta opp dette problemet?"
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:38001
+msgid ""
+"The partition table format in use on your disks normally requires you to "
+"create a separate partition for boot loader code. This partition should be "
+"marked for use as an \"EFI boot partition\" and should be at least 35 MB in "
+"size. Note that this is not the same as a partition mounted on /boot."
+msgstr ""
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:38001
+#: ../partman-partitioning.templates:39001
+msgid ""
+"If you do not go back to the partitioning menu and correct this error, boot "
+"loader installation may fail later, although it may still be possible to "
+"install the boot loader to a partition."
+msgstr ""
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:39001
+msgid ""
+"The partition table format in use on your disks normally requires you to "
+"create a separate partition for boot loader code. This partition should be "
+"marked for use as a \"Reserved BIOS boot area\" and should be at least 1 MB "
+"in size. Note that this is not the same as a partition mounted on /boot."
+msgstr ""
diff -pruN 120/debian/po/pa.po 120ubuntu3/debian/po/pa.po
--- 120/debian/po/pa.po	2018-01-12 04:16:32.000000000 +0000
+++ 120ubuntu3/debian/po/pa.po	2018-01-15 09:44:58.000000000 +0000
@@ -548,3 +548,50 @@ msgstr "ਰਾਖਵਾਂ BIOS ਬੂ
 #: ../partman-partitioning.templates:33001
 msgid "biosgrub"
 msgstr "biosgrub"
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:38001
+#: ../partman-partitioning.templates:39001
+msgid "Go back to the menu and correct this problem?"
+msgstr "ਪਿੱਛੇ ਸੂਚੀ ਤੇ ਜਾਓ ਅਤੇ ਇਸ ਸਮੱਸਿਆ ਨੂੰ ਠੀਕ ਕਰੋ?"
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:38001
+msgid ""
+"The partition table format in use on your disks normally requires you to "
+"create a separate partition for boot loader code. This partition should be "
+"marked for use as an \"EFI boot partition\" and should be at least 35 MB in "
+"size. Note that this is not the same as a partition mounted on /boot."
+msgstr ""
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:38001
+#: ../partman-partitioning.templates:39001
+msgid ""
+"If you do not go back to the partitioning menu and correct this error, boot "
+"loader installation may fail later, although it may still be possible to "
+"install the boot loader to a partition."
+msgstr ""
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:39001
+msgid ""
+"The partition table format in use on your disks normally requires you to "
+"create a separate partition for boot loader code. This partition should be "
+"marked for use as a \"Reserved BIOS boot area\" and should be at least 1 MB "
+"in size. Note that this is not the same as a partition mounted on /boot."
+msgstr ""
diff -pruN 120/debian/po/pl.po 120ubuntu3/debian/po/pl.po
--- 120/debian/po/pl.po	2016-06-04 18:02:55.000000000 +0000
+++ 120ubuntu3/debian/po/pl.po	2018-01-15 09:44:57.000000000 +0000
@@ -564,3 +564,50 @@ msgstr ""
 #: ../partman-partitioning.templates:33001
 msgid "biosgrub"
 msgstr "biosgrub"
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:38001
+#: ../partman-partitioning.templates:39001
+msgid "Go back to the menu and correct this problem?"
+msgstr "Powrócić do menu i poprawić ten błąd?"
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:38001
+msgid ""
+"The partition table format in use on your disks normally requires you to "
+"create a separate partition for boot loader code. This partition should be "
+"marked for use as an \"EFI boot partition\" and should be at least 35 MB in "
+"size. Note that this is not the same as a partition mounted on /boot."
+msgstr ""
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:38001
+#: ../partman-partitioning.templates:39001
+msgid ""
+"If you do not go back to the partitioning menu and correct this error, boot "
+"loader installation may fail later, although it may still be possible to "
+"install the boot loader to a partition."
+msgstr ""
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:39001
+msgid ""
+"The partition table format in use on your disks normally requires you to "
+"create a separate partition for boot loader code. This partition should be "
+"marked for use as a \"Reserved BIOS boot area\" and should be at least 1 MB "
+"in size. Note that this is not the same as a partition mounted on /boot."
+msgstr ""
diff -pruN 120/debian/po/pt_BR.po 120ubuntu3/debian/po/pt_BR.po
--- 120/debian/po/pt_BR.po	2016-06-04 18:02:55.000000000 +0000
+++ 120ubuntu3/debian/po/pt_BR.po	2018-01-15 09:44:57.000000000 +0000
@@ -563,3 +563,50 @@ msgstr "Área reservada de inicializaç
 #: ../partman-partitioning.templates:33001
 msgid "biosgrub"
 msgstr "biosgrub"
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:38001
+#: ../partman-partitioning.templates:39001
+msgid "Go back to the menu and correct this problem?"
+msgstr "Voltar ao menu e corrigir esse problema?"
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:38001
+msgid ""
+"The partition table format in use on your disks normally requires you to "
+"create a separate partition for boot loader code. This partition should be "
+"marked for use as an \"EFI boot partition\" and should be at least 35 MB in "
+"size. Note that this is not the same as a partition mounted on /boot."
+msgstr ""
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:38001
+#: ../partman-partitioning.templates:39001
+msgid ""
+"If you do not go back to the partitioning menu and correct this error, boot "
+"loader installation may fail later, although it may still be possible to "
+"install the boot loader to a partition."
+msgstr ""
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:39001
+msgid ""
+"The partition table format in use on your disks normally requires you to "
+"create a separate partition for boot loader code. This partition should be "
+"marked for use as a \"Reserved BIOS boot area\" and should be at least 1 MB "
+"in size. Note that this is not the same as a partition mounted on /boot."
+msgstr ""
diff -pruN 120/debian/po/pt.po 120ubuntu3/debian/po/pt.po
--- 120/debian/po/pt.po	2016-06-04 18:02:55.000000000 +0000
+++ 120ubuntu3/debian/po/pt.po	2018-01-15 09:44:58.000000000 +0000
@@ -560,3 +560,50 @@ msgstr "Área de arranque da BIOS reserv
 #: ../partman-partitioning.templates:33001
 msgid "biosgrub"
 msgstr "biosgrub"
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:38001
+#: ../partman-partitioning.templates:39001
+msgid "Go back to the menu and correct this problem?"
+msgstr "Voltar atrás ao menu e corrigir este problema?"
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:38001
+msgid ""
+"The partition table format in use on your disks normally requires you to "
+"create a separate partition for boot loader code. This partition should be "
+"marked for use as an \"EFI boot partition\" and should be at least 35 MB in "
+"size. Note that this is not the same as a partition mounted on /boot."
+msgstr ""
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:38001
+#: ../partman-partitioning.templates:39001
+msgid ""
+"If you do not go back to the partitioning menu and correct this error, boot "
+"loader installation may fail later, although it may still be possible to "
+"install the boot loader to a partition."
+msgstr ""
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:39001
+msgid ""
+"The partition table format in use on your disks normally requires you to "
+"create a separate partition for boot loader code. This partition should be "
+"marked for use as a \"Reserved BIOS boot area\" and should be at least 1 MB "
+"in size. Note that this is not the same as a partition mounted on /boot."
+msgstr ""
diff -pruN 120/debian/po/ro.po 120ubuntu3/debian/po/ro.po
--- 120/debian/po/ro.po	2016-06-04 18:02:55.000000000 +0000
+++ 120ubuntu3/debian/po/ro.po	2018-01-15 09:44:57.000000000 +0000
@@ -574,3 +574,50 @@ msgstr "Zonă de pornire rezervată pent
 #: ../partman-partitioning.templates:33001
 msgid "biosgrub"
 msgstr "biosgrub"
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:38001
+#: ../partman-partitioning.templates:39001
+msgid "Go back to the menu and correct this problem?"
+msgstr "Înapoi la meniu pentru a corecta această problemă?"
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:38001
+msgid ""
+"The partition table format in use on your disks normally requires you to "
+"create a separate partition for boot loader code. This partition should be "
+"marked for use as an \"EFI boot partition\" and should be at least 35 MB in "
+"size. Note that this is not the same as a partition mounted on /boot."
+msgstr ""
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:38001
+#: ../partman-partitioning.templates:39001
+msgid ""
+"If you do not go back to the partitioning menu and correct this error, boot "
+"loader installation may fail later, although it may still be possible to "
+"install the boot loader to a partition."
+msgstr ""
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:39001
+msgid ""
+"The partition table format in use on your disks normally requires you to "
+"create a separate partition for boot loader code. This partition should be "
+"marked for use as a \"Reserved BIOS boot area\" and should be at least 1 MB "
+"in size. Note that this is not the same as a partition mounted on /boot."
+msgstr ""
diff -pruN 120/debian/po/ru.po 120ubuntu3/debian/po/ru.po
--- 120/debian/po/ru.po	2016-06-04 18:02:55.000000000 +0000
+++ 120ubuntu3/debian/po/ru.po	2018-01-15 09:44:58.000000000 +0000
@@ -557,3 +557,50 @@ msgstr "Резервная загруз
 #: ../partman-partitioning.templates:33001
 msgid "biosgrub"
 msgstr "biosgrub"
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:38001
+#: ../partman-partitioning.templates:39001
+msgid "Go back to the menu and correct this problem?"
+msgstr "Вернуться в меню и исправить эту проблему?"
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:38001
+msgid ""
+"The partition table format in use on your disks normally requires you to "
+"create a separate partition for boot loader code. This partition should be "
+"marked for use as an \"EFI boot partition\" and should be at least 35 MB in "
+"size. Note that this is not the same as a partition mounted on /boot."
+msgstr ""
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:38001
+#: ../partman-partitioning.templates:39001
+msgid ""
+"If you do not go back to the partitioning menu and correct this error, boot "
+"loader installation may fail later, although it may still be possible to "
+"install the boot loader to a partition."
+msgstr ""
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:39001
+msgid ""
+"The partition table format in use on your disks normally requires you to "
+"create a separate partition for boot loader code. This partition should be "
+"marked for use as a \"Reserved BIOS boot area\" and should be at least 1 MB "
+"in size. Note that this is not the same as a partition mounted on /boot."
+msgstr ""
diff -pruN 120/debian/po/se.po 120ubuntu3/debian/po/se.po
--- 120/debian/po/se.po	2016-06-04 18:02:55.000000000 +0000
+++ 120ubuntu3/debian/po/se.po	2018-01-15 09:44:58.000000000 +0000
@@ -518,3 +518,50 @@ msgstr ""
 #: ../partman-partitioning.templates:33001
 msgid "biosgrub"
 msgstr ""
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:38001
+#: ../partman-partitioning.templates:39001
+msgid "Go back to the menu and correct this problem?"
+msgstr "Mana ruovttoluotta fállui ja divo meattáhusaid?"
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:38001
+msgid ""
+"The partition table format in use on your disks normally requires you to "
+"create a separate partition for boot loader code. This partition should be "
+"marked for use as an \"EFI boot partition\" and should be at least 35 MB in "
+"size. Note that this is not the same as a partition mounted on /boot."
+msgstr ""
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:38001
+#: ../partman-partitioning.templates:39001
+msgid ""
+"If you do not go back to the partitioning menu and correct this error, boot "
+"loader installation may fail later, although it may still be possible to "
+"install the boot loader to a partition."
+msgstr ""
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:39001
+msgid ""
+"The partition table format in use on your disks normally requires you to "
+"create a separate partition for boot loader code. This partition should be "
+"marked for use as a \"Reserved BIOS boot area\" and should be at least 1 MB "
+"in size. Note that this is not the same as a partition mounted on /boot."
+msgstr ""
diff -pruN 120/debian/po/si.po 120ubuntu3/debian/po/si.po
--- 120/debian/po/si.po	2016-06-04 18:02:55.000000000 +0000
+++ 120ubuntu3/debian/po/si.po	2018-01-15 09:44:57.000000000 +0000
@@ -535,3 +535,50 @@ msgstr "වෙන්කල BIOS ආර
 #: ../partman-partitioning.templates:33001
 msgid "biosgrub"
 msgstr "biosgrub"
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:38001
+#: ../partman-partitioning.templates:39001
+msgid "Go back to the menu and correct this problem?"
+msgstr "මෙනුවට ආපසු ගොස් මෙම දෝශය නිවැරදි කරන්නද?"
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:38001
+msgid ""
+"The partition table format in use on your disks normally requires you to "
+"create a separate partition for boot loader code. This partition should be "
+"marked for use as an \"EFI boot partition\" and should be at least 35 MB in "
+"size. Note that this is not the same as a partition mounted on /boot."
+msgstr ""
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:38001
+#: ../partman-partitioning.templates:39001
+msgid ""
+"If you do not go back to the partitioning menu and correct this error, boot "
+"loader installation may fail later, although it may still be possible to "
+"install the boot loader to a partition."
+msgstr ""
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:39001
+msgid ""
+"The partition table format in use on your disks normally requires you to "
+"create a separate partition for boot loader code. This partition should be "
+"marked for use as a \"Reserved BIOS boot area\" and should be at least 1 MB "
+"in size. Note that this is not the same as a partition mounted on /boot."
+msgstr ""
diff -pruN 120/debian/po/sk.po 120ubuntu3/debian/po/sk.po
--- 120/debian/po/sk.po	2016-06-04 18:02:55.000000000 +0000
+++ 120ubuntu3/debian/po/sk.po	2018-01-15 09:44:57.000000000 +0000
@@ -557,3 +557,50 @@ msgstr "Vyhradená štartovacia oblasť
 #: ../partman-partitioning.templates:33001
 msgid "biosgrub"
 msgstr "biosgrub"
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:38001
+#: ../partman-partitioning.templates:39001
+msgid "Go back to the menu and correct this problem?"
+msgstr "Vrátiť sa späť do menu a odstrániť tento problém?"
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:38001
+msgid ""
+"The partition table format in use on your disks normally requires you to "
+"create a separate partition for boot loader code. This partition should be "
+"marked for use as an \"EFI boot partition\" and should be at least 35 MB in "
+"size. Note that this is not the same as a partition mounted on /boot."
+msgstr ""
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:38001
+#: ../partman-partitioning.templates:39001
+msgid ""
+"If you do not go back to the partitioning menu and correct this error, boot "
+"loader installation may fail later, although it may still be possible to "
+"install the boot loader to a partition."
+msgstr ""
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:39001
+msgid ""
+"The partition table format in use on your disks normally requires you to "
+"create a separate partition for boot loader code. This partition should be "
+"marked for use as a \"Reserved BIOS boot area\" and should be at least 1 MB "
+"in size. Note that this is not the same as a partition mounted on /boot."
+msgstr ""
diff -pruN 120/debian/po/sl.po 120ubuntu3/debian/po/sl.po
--- 120/debian/po/sl.po	2016-06-04 18:02:55.000000000 +0000
+++ 120ubuntu3/debian/po/sl.po	2018-01-15 09:44:58.000000000 +0000
@@ -563,3 +563,50 @@ msgstr "Rezervirano zagonsko polje BIOS-
 #: ../partman-partitioning.templates:33001
 msgid "biosgrub"
 msgstr "biosgrub"
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:38001
+#: ../partman-partitioning.templates:39001
+msgid "Go back to the menu and correct this problem?"
+msgstr "Ali se želite vrniti v meni in popraviti to napako?"
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:38001
+msgid ""
+"The partition table format in use on your disks normally requires you to "
+"create a separate partition for boot loader code. This partition should be "
+"marked for use as an \"EFI boot partition\" and should be at least 35 MB in "
+"size. Note that this is not the same as a partition mounted on /boot."
+msgstr ""
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:38001
+#: ../partman-partitioning.templates:39001
+msgid ""
+"If you do not go back to the partitioning menu and correct this error, boot "
+"loader installation may fail later, although it may still be possible to "
+"install the boot loader to a partition."
+msgstr ""
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:39001
+msgid ""
+"The partition table format in use on your disks normally requires you to "
+"create a separate partition for boot loader code. This partition should be "
+"marked for use as a \"Reserved BIOS boot area\" and should be at least 1 MB "
+"in size. Note that this is not the same as a partition mounted on /boot."
+msgstr ""
diff -pruN 120/debian/po/sq.po 120ubuntu3/debian/po/sq.po
--- 120/debian/po/sq.po	2016-06-04 18:02:55.000000000 +0000
+++ 120ubuntu3/debian/po/sq.po	2018-01-15 09:44:57.000000000 +0000
@@ -549,3 +549,50 @@ msgstr "Zonë e rezervuar për ngarkimin
 #: ../partman-partitioning.templates:33001
 msgid "biosgrub"
 msgstr "biosgrub"
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:38001
+#: ../partman-partitioning.templates:39001
+msgid "Go back to the menu and correct this problem?"
+msgstr "Të kthehem mbrapa në menu dhe të korrigjoj gabimet?"
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:38001
+msgid ""
+"The partition table format in use on your disks normally requires you to "
+"create a separate partition for boot loader code. This partition should be "
+"marked for use as an \"EFI boot partition\" and should be at least 35 MB in "
+"size. Note that this is not the same as a partition mounted on /boot."
+msgstr ""
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:38001
+#: ../partman-partitioning.templates:39001
+msgid ""
+"If you do not go back to the partitioning menu and correct this error, boot "
+"loader installation may fail later, although it may still be possible to "
+"install the boot loader to a partition."
+msgstr ""
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:39001
+msgid ""
+"The partition table format in use on your disks normally requires you to "
+"create a separate partition for boot loader code. This partition should be "
+"marked for use as a \"Reserved BIOS boot area\" and should be at least 1 MB "
+"in size. Note that this is not the same as a partition mounted on /boot."
+msgstr ""
diff -pruN 120/debian/po/sr.po 120ubuntu3/debian/po/sr.po
--- 120/debian/po/sr.po	2018-01-12 04:16:32.000000000 +0000
+++ 120ubuntu3/debian/po/sr.po	2018-01-15 09:44:58.000000000 +0000
@@ -551,3 +551,50 @@ msgstr "Резеревисана BIOS б
 #: ../partman-partitioning.templates:33001
 msgid "biosgrub"
 msgstr "biosgrub"
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:38001
+#: ../partman-partitioning.templates:39001
+msgid "Go back to the menu and correct this problem?"
+msgstr "Вратити се назад у мени и исправити проблем?"
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:38001
+msgid ""
+"The partition table format in use on your disks normally requires you to "
+"create a separate partition for boot loader code. This partition should be "
+"marked for use as an \"EFI boot partition\" and should be at least 35 MB in "
+"size. Note that this is not the same as a partition mounted on /boot."
+msgstr ""
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:38001
+#: ../partman-partitioning.templates:39001
+msgid ""
+"If you do not go back to the partitioning menu and correct this error, boot "
+"loader installation may fail later, although it may still be possible to "
+"install the boot loader to a partition."
+msgstr ""
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:39001
+msgid ""
+"The partition table format in use on your disks normally requires you to "
+"create a separate partition for boot loader code. This partition should be "
+"marked for use as a \"Reserved BIOS boot area\" and should be at least 1 MB "
+"in size. Note that this is not the same as a partition mounted on /boot."
+msgstr ""
diff -pruN 120/debian/po/sv.po 120ubuntu3/debian/po/sv.po
--- 120/debian/po/sv.po	2017-11-30 04:09:08.000000000 +0000
+++ 120ubuntu3/debian/po/sv.po	2018-01-15 09:44:58.000000000 +0000
@@ -557,3 +557,50 @@ msgstr "Reserverat BIOS-uppstartsutrymme
 #: ../partman-partitioning.templates:33001
 msgid "biosgrub"
 msgstr "biosgrub"
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:38001
+#: ../partman-partitioning.templates:39001
+msgid "Go back to the menu and correct this problem?"
+msgstr "Gå tillbaka till menyn och korrigera det här felet?"
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:38001
+msgid ""
+"The partition table format in use on your disks normally requires you to "
+"create a separate partition for boot loader code. This partition should be "
+"marked for use as an \"EFI boot partition\" and should be at least 35 MB in "
+"size. Note that this is not the same as a partition mounted on /boot."
+msgstr ""
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:38001
+#: ../partman-partitioning.templates:39001
+msgid ""
+"If you do not go back to the partitioning menu and correct this error, boot "
+"loader installation may fail later, although it may still be possible to "
+"install the boot loader to a partition."
+msgstr ""
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:39001
+msgid ""
+"The partition table format in use on your disks normally requires you to "
+"create a separate partition for boot loader code. This partition should be "
+"marked for use as a \"Reserved BIOS boot area\" and should be at least 1 MB "
+"in size. Note that this is not the same as a partition mounted on /boot."
+msgstr ""
diff -pruN 120/debian/po/ta.po 120ubuntu3/debian/po/ta.po
--- 120/debian/po/ta.po	2016-06-04 18:02:55.000000000 +0000
+++ 120ubuntu3/debian/po/ta.po	2018-01-15 09:44:58.000000000 +0000
@@ -546,3 +546,50 @@ msgstr "ஒதுக்கீடு ச
 #: ../partman-partitioning.templates:33001
 msgid "biosgrub"
 msgstr "பயாஸ்க்ரப்"
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:38001
+#: ../partman-partitioning.templates:39001
+msgid "Go back to the menu and correct this problem?"
+msgstr "மீண்டும் பட்டியலுக்கு சென்று தவறுகளை திருத்தவா?"
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:38001
+msgid ""
+"The partition table format in use on your disks normally requires you to "
+"create a separate partition for boot loader code. This partition should be "
+"marked for use as an \"EFI boot partition\" and should be at least 35 MB in "
+"size. Note that this is not the same as a partition mounted on /boot."
+msgstr ""
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:38001
+#: ../partman-partitioning.templates:39001
+msgid ""
+"If you do not go back to the partitioning menu and correct this error, boot "
+"loader installation may fail later, although it may still be possible to "
+"install the boot loader to a partition."
+msgstr ""
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:39001
+msgid ""
+"The partition table format in use on your disks normally requires you to "
+"create a separate partition for boot loader code. This partition should be "
+"marked for use as a \"Reserved BIOS boot area\" and should be at least 1 MB "
+"in size. Note that this is not the same as a partition mounted on /boot."
+msgstr ""
diff -pruN 120/debian/po/templates.pot 120ubuntu3/debian/po/templates.pot
--- 120/debian/po/templates.pot	2014-09-04 05:45:57.000000000 +0000
+++ 120ubuntu3/debian/po/templates.pot	2018-01-15 09:44:56.000000000 +0000
@@ -495,3 +495,50 @@ msgstr ""
 #: ../partman-partitioning.templates:33001
 msgid "biosgrub"
 msgstr ""
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:38001
+#: ../partman-partitioning.templates:39001
+msgid "Go back to the menu and correct this problem?"
+msgstr ""
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:38001
+msgid ""
+"The partition table format in use on your disks normally requires you to "
+"create a separate partition for boot loader code. This partition should be "
+"marked for use as an \"EFI boot partition\" and should be at least 35 MB in "
+"size. Note that this is not the same as a partition mounted on /boot."
+msgstr ""
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:38001
+#: ../partman-partitioning.templates:39001
+msgid ""
+"If you do not go back to the partitioning menu and correct this error, boot "
+"loader installation may fail later, although it may still be possible to "
+"install the boot loader to a partition."
+msgstr ""
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:39001
+msgid ""
+"The partition table format in use on your disks normally requires you to "
+"create a separate partition for boot loader code. This partition should be "
+"marked for use as a \"Reserved BIOS boot area\" and should be at least 1 MB "
+"in size. Note that this is not the same as a partition mounted on /boot."
+msgstr ""
diff -pruN 120/debian/po/te.po 120ubuntu3/debian/po/te.po
--- 120/debian/po/te.po	2016-06-04 18:02:55.000000000 +0000
+++ 120ubuntu3/debian/po/te.po	2018-01-15 09:44:57.000000000 +0000
@@ -532,3 +532,50 @@ msgstr "కేటాయించబడ
 #: ../partman-partitioning.templates:33001
 msgid "biosgrub"
 msgstr "biosgrub"
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:38001
+#: ../partman-partitioning.templates:39001
+msgid "Go back to the menu and correct this problem?"
+msgstr "వెనక్కి వెళ్ళి జాబితాలో ఈ సమస్యని సరిచెయ్యాలా ?"
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:38001
+msgid ""
+"The partition table format in use on your disks normally requires you to "
+"create a separate partition for boot loader code. This partition should be "
+"marked for use as an \"EFI boot partition\" and should be at least 35 MB in "
+"size. Note that this is not the same as a partition mounted on /boot."
+msgstr ""
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:38001
+#: ../partman-partitioning.templates:39001
+msgid ""
+"If you do not go back to the partitioning menu and correct this error, boot "
+"loader installation may fail later, although it may still be possible to "
+"install the boot loader to a partition."
+msgstr ""
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:39001
+msgid ""
+"The partition table format in use on your disks normally requires you to "
+"create a separate partition for boot loader code. This partition should be "
+"marked for use as a \"Reserved BIOS boot area\" and should be at least 1 MB "
+"in size. Note that this is not the same as a partition mounted on /boot."
+msgstr ""
diff -pruN 120/debian/po/tg.po 120ubuntu3/debian/po/tg.po
--- 120/debian/po/tg.po	2016-06-04 18:02:55.000000000 +0000
+++ 120ubuntu3/debian/po/tg.po	2018-01-15 09:44:58.000000000 +0000
@@ -552,3 +552,50 @@ msgstr "Ноҳияи роҳандози
 #: ../partman-partitioning.templates:33001
 msgid "biosgrub"
 msgstr "biosgrub"
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:38001
+#: ../partman-partitioning.templates:39001
+msgid "Go back to the menu and correct this problem?"
+msgstr ""
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:38001
+msgid ""
+"The partition table format in use on your disks normally requires you to "
+"create a separate partition for boot loader code. This partition should be "
+"marked for use as an \"EFI boot partition\" and should be at least 35 MB in "
+"size. Note that this is not the same as a partition mounted on /boot."
+msgstr ""
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:38001
+#: ../partman-partitioning.templates:39001
+msgid ""
+"If you do not go back to the partitioning menu and correct this error, boot "
+"loader installation may fail later, although it may still be possible to "
+"install the boot loader to a partition."
+msgstr ""
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:39001
+msgid ""
+"The partition table format in use on your disks normally requires you to "
+"create a separate partition for boot loader code. This partition should be "
+"marked for use as a \"Reserved BIOS boot area\" and should be at least 1 MB "
+"in size. Note that this is not the same as a partition mounted on /boot."
+msgstr ""
diff -pruN 120/debian/po/th.po 120ubuntu3/debian/po/th.po
--- 120/debian/po/th.po	2016-06-04 18:02:55.000000000 +0000
+++ 120ubuntu3/debian/po/th.po	2018-01-15 09:44:57.000000000 +0000
@@ -538,3 +538,50 @@ msgstr "พื้นที่บูต
 #: ../partman-partitioning.templates:33001
 msgid "biosgrub"
 msgstr "biosgrub"
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:38001
+#: ../partman-partitioning.templates:39001
+msgid "Go back to the menu and correct this problem?"
+msgstr "ย้อนกลับไปที่เมนูเพื่อแก้ไขปัญหานี้หรือไม่?"
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:38001
+msgid ""
+"The partition table format in use on your disks normally requires you to "
+"create a separate partition for boot loader code. This partition should be "
+"marked for use as an \"EFI boot partition\" and should be at least 35 MB in "
+"size. Note that this is not the same as a partition mounted on /boot."
+msgstr ""
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:38001
+#: ../partman-partitioning.templates:39001
+msgid ""
+"If you do not go back to the partitioning menu and correct this error, boot "
+"loader installation may fail later, although it may still be possible to "
+"install the boot loader to a partition."
+msgstr ""
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:39001
+msgid ""
+"The partition table format in use on your disks normally requires you to "
+"create a separate partition for boot loader code. This partition should be "
+"marked for use as a \"Reserved BIOS boot area\" and should be at least 1 MB "
+"in size. Note that this is not the same as a partition mounted on /boot."
+msgstr ""
diff -pruN 120/debian/po/tl.po 120ubuntu3/debian/po/tl.po
--- 120/debian/po/tl.po	2016-06-04 18:02:55.000000000 +0000
+++ 120ubuntu3/debian/po/tl.po	2018-01-15 09:44:57.000000000 +0000
@@ -560,3 +560,50 @@ msgstr "Ireserba ang boot area ng BIOS:"
 #: ../partman-partitioning.templates:33001
 msgid "biosgrub"
 msgstr ""
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:38001
+#: ../partman-partitioning.templates:39001
+msgid "Go back to the menu and correct this problem?"
+msgstr "Bumalik sa menu at ayusin ang problemang ito?"
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:38001
+msgid ""
+"The partition table format in use on your disks normally requires you to "
+"create a separate partition for boot loader code. This partition should be "
+"marked for use as an \"EFI boot partition\" and should be at least 35 MB in "
+"size. Note that this is not the same as a partition mounted on /boot."
+msgstr ""
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:38001
+#: ../partman-partitioning.templates:39001
+msgid ""
+"If you do not go back to the partitioning menu and correct this error, boot "
+"loader installation may fail later, although it may still be possible to "
+"install the boot loader to a partition."
+msgstr ""
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:39001
+msgid ""
+"The partition table format in use on your disks normally requires you to "
+"create a separate partition for boot loader code. This partition should be "
+"marked for use as a \"Reserved BIOS boot area\" and should be at least 1 MB "
+"in size. Note that this is not the same as a partition mounted on /boot."
+msgstr ""
diff -pruN 120/debian/po/tr.po 120ubuntu3/debian/po/tr.po
--- 120/debian/po/tr.po	2016-07-26 03:04:20.000000000 +0000
+++ 120ubuntu3/debian/po/tr.po	2018-01-15 09:44:58.000000000 +0000
@@ -563,3 +563,50 @@ msgstr "Ayrılmış BIOS bölgesi"
 #: ../partman-partitioning.templates:33001
 msgid "biosgrub"
 msgstr "biosgrub"
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:38001
+#: ../partman-partitioning.templates:39001
+msgid "Go back to the menu and correct this problem?"
+msgstr "Seçkeye geri dönerek hataları düzeltmek ister misiniz?"
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:38001
+msgid ""
+"The partition table format in use on your disks normally requires you to "
+"create a separate partition for boot loader code. This partition should be "
+"marked for use as an \"EFI boot partition\" and should be at least 35 MB in "
+"size. Note that this is not the same as a partition mounted on /boot."
+msgstr ""
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:38001
+#: ../partman-partitioning.templates:39001
+msgid ""
+"If you do not go back to the partitioning menu and correct this error, boot "
+"loader installation may fail later, although it may still be possible to "
+"install the boot loader to a partition."
+msgstr ""
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:39001
+msgid ""
+"The partition table format in use on your disks normally requires you to "
+"create a separate partition for boot loader code. This partition should be "
+"marked for use as a \"Reserved BIOS boot area\" and should be at least 1 MB "
+"in size. Note that this is not the same as a partition mounted on /boot."
+msgstr ""
diff -pruN 120/debian/po/ug.po 120ubuntu3/debian/po/ug.po
--- 120/debian/po/ug.po	2016-06-04 18:02:55.000000000 +0000
+++ 120ubuntu3/debian/po/ug.po	2018-01-15 09:44:57.000000000 +0000
@@ -546,3 +546,50 @@ msgstr "BIOS  نى قوزغىتىش ئۈ
 #: ../partman-partitioning.templates:33001
 msgid "biosgrub"
 msgstr "biosgrub"
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:38001
+#: ../partman-partitioning.templates:39001
+msgid "Go back to the menu and correct this problem?"
+msgstr "تىزىملىككە قايتىپ بۇ مەسىلىنى ھەل قىلامسىز؟"
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:38001
+msgid ""
+"The partition table format in use on your disks normally requires you to "
+"create a separate partition for boot loader code. This partition should be "
+"marked for use as an \"EFI boot partition\" and should be at least 35 MB in "
+"size. Note that this is not the same as a partition mounted on /boot."
+msgstr ""
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:38001
+#: ../partman-partitioning.templates:39001
+msgid ""
+"If you do not go back to the partitioning menu and correct this error, boot "
+"loader installation may fail later, although it may still be possible to "
+"install the boot loader to a partition."
+msgstr ""
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:39001
+msgid ""
+"The partition table format in use on your disks normally requires you to "
+"create a separate partition for boot loader code. This partition should be "
+"marked for use as a \"Reserved BIOS boot area\" and should be at least 1 MB "
+"in size. Note that this is not the same as a partition mounted on /boot."
+msgstr ""
diff -pruN 120/debian/po/uk.po 120ubuntu3/debian/po/uk.po
--- 120/debian/po/uk.po	2016-06-04 18:02:55.000000000 +0000
+++ 120ubuntu3/debian/po/uk.po	2018-01-15 09:44:57.000000000 +0000
@@ -554,3 +554,50 @@ msgstr "Резервна заванта
 #: ../partman-partitioning.templates:33001
 msgid "biosgrub"
 msgstr "biosgrub"
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:38001
+#: ../partman-partitioning.templates:39001
+msgid "Go back to the menu and correct this problem?"
+msgstr "Повернутися до меню та виправити цю проблему?"
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:38001
+msgid ""
+"The partition table format in use on your disks normally requires you to "
+"create a separate partition for boot loader code. This partition should be "
+"marked for use as an \"EFI boot partition\" and should be at least 35 MB in "
+"size. Note that this is not the same as a partition mounted on /boot."
+msgstr ""
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:38001
+#: ../partman-partitioning.templates:39001
+msgid ""
+"If you do not go back to the partitioning menu and correct this error, boot "
+"loader installation may fail later, although it may still be possible to "
+"install the boot loader to a partition."
+msgstr ""
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:39001
+msgid ""
+"The partition table format in use on your disks normally requires you to "
+"create a separate partition for boot loader code. This partition should be "
+"marked for use as a \"Reserved BIOS boot area\" and should be at least 1 MB "
+"in size. Note that this is not the same as a partition mounted on /boot."
+msgstr ""
diff -pruN 120/debian/po/vi.po 120ubuntu3/debian/po/vi.po
--- 120/debian/po/vi.po	2016-06-04 18:02:55.000000000 +0000
+++ 120ubuntu3/debian/po/vi.po	2018-01-15 09:44:57.000000000 +0000
@@ -550,3 +550,50 @@ msgstr "Vùng khởi động BIOS dành
 #: ../partman-partitioning.templates:33001
 msgid "biosgrub"
 msgstr "biosgrub"
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:38001
+#: ../partman-partitioning.templates:39001
+msgid "Go back to the menu and correct this problem?"
+msgstr "Trở về trình đơn để sửa chữa lỗi này chứ ?"
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:38001
+msgid ""
+"The partition table format in use on your disks normally requires you to "
+"create a separate partition for boot loader code. This partition should be "
+"marked for use as an \"EFI boot partition\" and should be at least 35 MB in "
+"size. Note that this is not the same as a partition mounted on /boot."
+msgstr ""
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:38001
+#: ../partman-partitioning.templates:39001
+msgid ""
+"If you do not go back to the partitioning menu and correct this error, boot "
+"loader installation may fail later, although it may still be possible to "
+"install the boot loader to a partition."
+msgstr ""
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:39001
+msgid ""
+"The partition table format in use on your disks normally requires you to "
+"create a separate partition for boot loader code. This partition should be "
+"marked for use as a \"Reserved BIOS boot area\" and should be at least 1 MB "
+"in size. Note that this is not the same as a partition mounted on /boot."
+msgstr ""
diff -pruN 120/debian/po/zh_CN.po 120ubuntu3/debian/po/zh_CN.po
--- 120/debian/po/zh_CN.po	2017-06-12 03:05:13.000000000 +0000
+++ 120ubuntu3/debian/po/zh_CN.po	2018-01-15 09:44:57.000000000 +0000
@@ -540,3 +540,50 @@ msgstr "保留 BIOS 启动区域"
 #: ../partman-partitioning.templates:33001
 msgid "biosgrub"
 msgstr "biosgrub"
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:38001
+#: ../partman-partitioning.templates:39001
+msgid "Go back to the menu and correct this problem?"
+msgstr "返回菜单并更正此问题吗？"
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:38001
+msgid ""
+"The partition table format in use on your disks normally requires you to "
+"create a separate partition for boot loader code. This partition should be "
+"marked for use as an \"EFI boot partition\" and should be at least 35 MB in "
+"size. Note that this is not the same as a partition mounted on /boot."
+msgstr ""
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:38001
+#: ../partman-partitioning.templates:39001
+msgid ""
+"If you do not go back to the partitioning menu and correct this error, boot "
+"loader installation may fail later, although it may still be possible to "
+"install the boot loader to a partition."
+msgstr ""
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:39001
+msgid ""
+"The partition table format in use on your disks normally requires you to "
+"create a separate partition for boot loader code. This partition should be "
+"marked for use as a \"Reserved BIOS boot area\" and should be at least 1 MB "
+"in size. Note that this is not the same as a partition mounted on /boot."
+msgstr ""
diff -pruN 120/debian/po/zh_TW.po 120ubuntu3/debian/po/zh_TW.po
--- 120/debian/po/zh_TW.po	2016-06-04 18:02:55.000000000 +0000
+++ 120ubuntu3/debian/po/zh_TW.po	2018-01-15 09:44:57.000000000 +0000
@@ -542,3 +542,50 @@ msgstr "被保留的 BIOS 開機區"
 #: ../partman-partitioning.templates:33001
 msgid "biosgrub"
 msgstr "biosgrub"
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:38001
+#: ../partman-partitioning.templates:39001
+msgid "Go back to the menu and correct this problem?"
+msgstr "是否返回選單並更正此錯誤？"
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:38001
+msgid ""
+"The partition table format in use on your disks normally requires you to "
+"create a separate partition for boot loader code. This partition should be "
+"marked for use as an \"EFI boot partition\" and should be at least 35 MB in "
+"size. Note that this is not the same as a partition mounted on /boot."
+msgstr ""
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:38001
+#: ../partman-partitioning.templates:39001
+msgid ""
+"If you do not go back to the partitioning menu and correct this error, boot "
+"loader installation may fail later, although it may still be possible to "
+"install the boot loader to a partition."
+msgstr ""
+
+#. Type: boolean
+#. Description
+#. :sl5:
+#: ../partman-partitioning.templates:39001
+msgid ""
+"The partition table format in use on your disks normally requires you to "
+"create a separate partition for boot loader code. This partition should be "
+"marked for use as a \"Reserved BIOS boot area\" and should be at least 1 MB "
+"in size. Note that this is not the same as a partition mounted on /boot."
+msgstr ""
diff -pruN 120/lib/disk-label.sh 120ubuntu3/lib/disk-label.sh
--- 120/lib/disk-label.sh	2017-09-23 06:11:51.000000000 +0000
+++ 120ubuntu3/lib/disk-label.sh	2020-05-28 16:55:32.000000000 +0000
@@ -19,12 +19,7 @@ default_disk_label () {
 			echo msdos
 		fi;;
 	    amd64|kfreebsd-amd64|i386|kfreebsd-i386|hurd-i386)
-		case "$sub" in
-		    mac|efi)
-			echo gpt;;
-		    *)
-			echo msdos;;
-		esac;;
+		echo gpt;;
 	    arm|armeb|armel|armhf)
 		echo msdos;;
 	    arm64)
@@ -74,6 +69,8 @@ default_disk_label () {
 			echo msdos;;
 		    cell)
 			echo msdos;;
+		    fsl)
+			echo gpt;;
 		    *)
 			echo UNKNOWN;;
 		esac;;
@@ -83,6 +80,13 @@ default_disk_label () {
 		if [ -e ./label ]; then
 		    disklabel=$(cat label)
 		fi
+		# FBA devices have parted label dasd, but should not use dasd
+		# partition table. Maybe FBA|ECKD type should be exposed by
+		# partman-base and/or parted. LP: #1650300
+		device=$(sed 's|.*/||' ./device)
+		if grep -q "(FBA ).*$device" /proc/dasd/devices; then
+		    disklabel=msdos
+		fi
 		if [ "$disklabel" != dasd ]; then
 		    disklabel=msdos
 		fi
diff -pruN 120/lib/resize.sh 120ubuntu3/lib/resize.sh
--- 120/lib/resize.sh	2017-06-25 03:04:17.000000000 +0000
+++ 120ubuntu3/lib/resize.sh	2018-01-15 09:44:56.000000000 +0000
@@ -1,5 +1,6 @@
 . /lib/partman/lib/base.sh
 . /lib/partman/lib/commit.sh
+. /lib/partman/lib/recipes.sh
 
 # Sets $virtual; used by other functions here.
 check_virtual () {
@@ -49,6 +50,7 @@ get_ntfs_resize_range () {
 	open_dialog GET_VIRTUAL_RESIZE_RANGE $oldid
 	read_line minsize cursize maxsize
 	close_dialog
+	prefsize=$cursize
 	get_real_device
 	if [ "$bdev" ]; then
 		if ! do_ntfsresize -f -i $bdev; then
@@ -60,16 +62,27 @@ get_ntfs_resize_range () {
 			sed 's/^You might resize at \([0-9]*\) bytes.*/\1/' | \
 			grep '^[0-9]*$')
 		if [ "$size" ]; then
-			minsize=$size
+			if ! longint_le "$size" "$cursize"; then
+				logger -t partman "ntfsresize reported minimum size $size, but current partition size is $cursize"
+				unset minsize cursize maxsize prefsize
+				return 1
+			elif ! longint_le "$minsize" "$size"; then
+				logger -t partman "ntfsresize reported minimum size $size, but minimum partition size is $minsize"
+				unset minsize cursize maxsize prefsize
+				return 1
+			else
+				minsize=$size
+			fi
 		fi
 	fi
 }
 
 get_ext2_resize_range () {
-	local bdev tune2fs block_size block_count free_blocks
+	local bdev tune2fs block_size block_count free_blocks real_minsize
 	open_dialog GET_VIRTUAL_RESIZE_RANGE $oldid
 	read_line minsize cursize maxsize
 	close_dialog
+	prefsize=$cursize
 	get_real_device
 	if [ "$bdev" ]; then
 		if ! tune2fs="$(tune2fs -l $bdev)"; then
@@ -85,7 +98,18 @@ get_ext2_resize_range () {
 		if expr "$block_size" : '[0-9][0-9]*$' >/dev/null && \
 		   expr "$block_count" : '[0-9][0-9]*$' >/dev/null && \
 		   expr "$free_blocks" : '[0-9][0-9]*$' >/dev/null; then
-			minsize="$(expr \( "$block_count" - "$free_blocks" \) \* "$block_size")"
+			real_minsize="$(expr \( "$block_count" - "$free_blocks" \) \* "$block_size")"
+			if ! longint_le "$real_minsize" "$cursize"; then
+				logger -t partman "tune2fs reported minimum size $real_minsize, but current partition size is $cursize"
+				unset minsize cursize maxsize prefsize
+				return 1
+			elif ! longint_le "$minsize" "$real_minsize"; then
+				logger -t partman "tune2fs reported minimum size $real_minsize, but minimum partition size is $minsize"
+				unset minsize cursize maxsize prefsize
+				return 1
+			else
+				minsize="$real_minsize"
+			fi
 		fi
 	fi
 	return 0
@@ -95,6 +119,7 @@ get_resize_range () {
 	open_dialog GET_RESIZE_RANGE $oldid
 	read_line minsize cursize maxsize
 	close_dialog
+	prefsize=$cursize
 }
 
 # This function works only on non-virtual (i.e. committed) filesystems.  It
@@ -132,9 +157,31 @@ human_resize_range () {
 	minpercent="$(expr 100 \* "$minsize" / "$maxsize")"
 }
 
+decode_swap_size () {
+	if [ "$4" = linux-swap ]; then
+		echo "$1"
+	fi
+}
+
+find_swap_size_val=
+find_swap_size () {
+	if [ -z "$find_swap_size_val" ]; then
+		decode_recipe $(get_recipedir)/[0-9][0-9]atomic linux-swap
+		find_swap_size_val=$(foreach_partition 'decode_swap_size $*')
+	fi
+	echo "$find_swap_size_val"
+}
+
 ask_for_size () {
 	local noninteractive digits minmb minsize_rounded maxsize_rounded
+
+	# Get the original size of the partition being resized.
+	open_dialog PARTITION_INFO $oldid
+	read_line x1 x2 origsize x4 x5 path x7
+	close_dialog
+
 	noninteractive=true
+	swap_size="$(find_swap_size)"
 	minsize_rounded="$(human2longint "$hminsize")"
 	maxsize_rounded="$(human2longint "$hmaxsize")"
 	while true; do
@@ -144,6 +191,12 @@ ask_for_size () {
 			db_subst partman-partitioning/new_size MINSIZE "$hminsize"
 			db_subst partman-partitioning/new_size MAXSIZE "$hmaxsize"
 			db_subst partman-partitioning/new_size PERCENT "$minpercent%"
+			# Used by ubiquity to set accurate bounds on resize widgets.
+			db_subst partman-partitioning/new_size RAWMINSIZE "$minsize"
+			db_subst partman-partitioning/new_size RAWPREFSIZE "$prefsize"
+			db_subst partman-partitioning/new_size RAWMAXSIZE "$maxsize"
+			db_subst partman-partitioning/new_size PATH "$path"
+			db_subst partman-partitioning/new_size SWAPSIZE "$swap_size"
 			db_input critical partman-partitioning/new_size || $noninteractive
 			noninteractive="return 1"
 			db_go || return 1
