[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

Bug#861300: marked as done (cdrom-detect: Please merge changes from Ubuntu)



Your message dated Tue, 2 May 2017 09:39:09 +0200
with message-id <[🔎] CAG+KjmN_-y8UTXnJThatkvCA09F41=OjHbsrfvb2UH_HiqV0BQ@mail.gmail.com>
and subject line Re: Bug#861300: cdrom-detect: Please merge changes from Ubuntu
has caused the Debian Bug report #861300,
regarding cdrom-detect: Please merge changes from Ubuntu
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact owner@bugs.debian.org
immediately.)


-- 
861300: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=861300
Debian Bug Tracking System
Contact owner@bugs.debian.org with problems
--- Begin Message ---
Package: cdrom-detect
Version: 1.67
Severity: wishlist
Tags: d-i patch

Dear Maintainers,

Please merge changes from the delta carried by Ubuntu:

commit 84d9d5935a94dec97f88bc9d56c2ba151b320e6a
Author: Balint Reczey <balint.reczey@canonical.com>
Date:   Wed Apr 26 21:10:19 2017 +0200

    Install Artful Aardvark on Ubuntu by default

commit 44dc46c133fa5e87d27eeef4c936e44cb886602b
Author: Balint Reczey <balint.reczey@canonical.com>
Date:   Wed Apr 26 21:07:42 2017 +0200

    Show Ubuntu name on Ubuntu

    Build depend on dpkg-dev (>= 1.15.1) and patch to do so.

commit 08cfa29937f3dfbe796cab4d7e05bf2dd8808f40
Author: Colin Watson <colin.watson@canonical.com>
Date:   Wed Apr 26 20:08:41 2017 +0200

    Update translations for using hdparm

    Those changes should be done in d-i master po files

commit 5f509c6af43f90f8800490ae87287d69678c5445
Author: Colin Watson <colin.watson@canonical.com>
Date:   Wed Apr 26 20:02:14 2017 +0200

    Optionally set CD-ROM drive parameters with hdparm

commit c061fc52c2b5ff1dc2f720df7dc795d0e0b121a9
Author: Colin Watson <colin.watson@canonical.com>
Date:   Wed Apr 26 19:10:44 2017 +0200

    Extend device-scan delay to wait for usb-partition and mmc-partition

commit 2ea63bb2703436cfa7695fe27ce5042d1eaf67fd
Author: Loïc Minier <lool@dooz.org>
Date:   Wed Apr 26 19:08:40 2017 +0200

    Also check SD/MMC partitions ("list-devices mmc-partition")

    Closes: LP: #364604

commit 5414150bde29d7f1432ae91eeb62c5dad8e0e3a2
Author: Colin Watson <colin.watson@canonical.com>
Date:   Wed Apr 26 18:37:29 2017 +0200

    Copy /cdrom/.disk/info to /var/log/media-info

    in order that we get /var/log/installer/media-info on the installed
    system; doing this in save-logs is too late because /cdrom is already
    unmounted by that point.

    Closes: LP: #364649

The device-scan delay may fix #667701.

The commits don't exactly match the Ubuntu delta but are reworked to make
importing them to the packaging repository easier.

Cheers,
Balint

-- 
Balint Reczey
Debian & Ubuntu Developer
From 5414150bde29d7f1432ae91eeb62c5dad8e0e3a2 Mon Sep 17 00:00:00 2001
From: Colin Watson <colin.watson@canonical.com>
Date: Wed, 26 Apr 2017 18:37:29 +0200
Subject: [PATCH 1/7] Copy /cdrom/.disk/info to /var/log/media-info

in order that we get /var/log/installer/media-info on the installed
system; doing this in save-logs is too late because /cdrom is already
unmounted by that point.

Closes: LP: #364649
---
 debian/cdrom-detect.postinst | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/debian/cdrom-detect.postinst b/debian/cdrom-detect.postinst
index 6bf2454..769f527 100755
--- a/debian/cdrom-detect.postinst
+++ b/debian/cdrom-detect.postinst
@@ -85,6 +85,9 @@ mount | grep -q 'on /cdrom' && set_suite_and_codename && exit 0
 if [ -e /cdrom/.disk/info ]; then
 	CDNAME=$(cat /cdrom/.disk/info)
 	log "Detected CD '$CDNAME'"
+	# This produces /var/log/installer/media-info on the installed
+	# system.
+	printf %s "$CDNAME" >/var/log/media-info
 	set_suite_and_codename
 	exit 0
 fi
@@ -265,6 +268,9 @@ fi
 # Install eject-udeb, to be able to use it in the finish-install script.
 anna-install eject-udeb || true
 
+# This produces /var/log/installer/media-info on the installed system.
+printf %s "$CDNAME" >/var/log/media-info
+
 # Hey, we're done
 db_subst cdrom-detect/success cdname "$CDNAME"
 db_input low cdrom-detect/success || [ $? -eq 30 ]
-- 
2.7.4

From 2ea63bb2703436cfa7695fe27ce5042d1eaf67fd Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Lo=C3=AFc=20Minier?= <lool@dooz.org>
Date: Wed, 26 Apr 2017 19:08:40 +0200
Subject: [PATCH 2/7] Also check SD/MMC partitions ("list-devices
 mmc-partition")

Closes: LP: #364604
---
 debian/cdrom-detect.postinst | 1 +
 1 file changed, 1 insertion(+)

diff --git a/debian/cdrom-detect.postinst b/debian/cdrom-detect.postinst
index 769f527..542ca42 100755
--- a/debian/cdrom-detect.postinst
+++ b/debian/cdrom-detect.postinst
@@ -122,6 +122,7 @@ while true; do
 	done
 	
 	devices="$(list-devices usb-partition)"
+	devices="$devices $(list-devices mmc-partition)"
 	for device in $devices; do
 		if try_mount $device $CDFS; then
 			db_set cdrom-detect/hybrid true
-- 
2.7.4

From c061fc52c2b5ff1dc2f720df7dc795d0e0b121a9 Mon Sep 17 00:00:00 2001
From: Colin Watson <colin.watson@canonical.com>
Date: Wed, 26 Apr 2017 19:10:44 +0200
Subject: [PATCH 3/7] Extend device-scan delay to wait for usb-partition and
 mmc-partition

---
 debian/cdrom-detect.postinst | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/debian/cdrom-detect.postinst b/debian/cdrom-detect.postinst
index 542ca42..db678e0 100755
--- a/debian/cdrom-detect.postinst
+++ b/debian/cdrom-detect.postinst
@@ -101,7 +101,8 @@ mkdir /cdrom 2>/dev/null || true
 # Need to wait for the usb device scan to complete
 if [ "$OS" = "linux" ]; then
   for count in 1 2 3 4 5 6 8 9 10; do
-    devices="$(list-devices cd; list-devices maybe-usb-floppy)"
+    devices="$(list-devices cd; list-devices maybe-usb-floppy;
+	       list-devices usb-partition; list-devices mmc-partition)"
     log "Devices: '$devices'"
     if [ -n "$devices" ]; then
       break 2
-- 
2.7.4

From 5f509c6af43f90f8800490ae87287d69678c5445 Mon Sep 17 00:00:00 2001
From: Colin Watson <colin.watson@canonical.com>
Date: Wed, 26 Apr 2017 20:02:14 +0200
Subject: [PATCH 4/7] Optionally set CD-ROM drive parameters with hdparm

---
 debian/cdrom-detect.postinst  | 16 ++++++++++
 debian/cdrom-detect.templates |  7 +++++
 debian/control                |  2 +-
 finish-install                | 68 +++++++++++++++++++++++++++++++++++++++++++
 4 files changed, 92 insertions(+), 1 deletion(-)

diff --git a/debian/cdrom-detect.postinst b/debian/cdrom-detect.postinst
index db678e0..0fbba9c 100755
--- a/debian/cdrom-detect.postinst
+++ b/debian/cdrom-detect.postinst
@@ -228,6 +228,22 @@ while true; do
 	fi
 done
 
+db_get cdrom-detect/cdrom_device
+device="$RET"
+
+ARCH="`udpkg --print-architecture`"
+if [ "$ARCH" = i386 ]; then
+	db_input low cdrom-detect/cdrom_hdparm || [ $? -eq 30 ]
+	db_go
+	db_get cdrom-detect/cdrom_hdparm
+	params="`printf '%s' "$RET" | sed 's/^ *//'`"
+
+	if [ "$device" ] && [ "$params" ]; then
+		hdparm $params "$device"
+		apt-install hdparm || true
+	fi
+fi
+
 # Check for unetbootin files
 UNETBOOTIN_FILES="ubnfilel.txt ubninit ubnkern ubnpathl.txt"
 UNETBOOTIN_DETECTED=0
diff --git a/debian/cdrom-detect.templates b/debian/cdrom-detect.templates
index 5bed26e..8da25d3 100644
--- a/debian/cdrom-detect.templates
+++ b/debian/cdrom-detect.templates
@@ -154,3 +154,10 @@ Type: text
 #  Item in the main menu to select this package
 # :sl2:
 _Description: Detect and mount CD-ROM
+
+Template: cdrom-detect/cdrom_hdparm
+Type: string
+_Description: Tune CD-ROM drive parameters with hdparm?
+ The installer can use hdparm to tune some CD-ROM drive parameters, which
+ may significantly speed up reading packages from the CD. You can change the
+ parameters to be used. To disable hdparm, enter an empty parameter list.
diff --git a/debian/control b/debian/control
index 5894107..d976102 100644
--- a/debian/control
+++ b/debian/control
@@ -11,6 +11,6 @@ Vcs-Git: https://anonscm.debian.org/git/d-i/cdrom-detect.git
 Package: cdrom-detect
 Package-Type: udeb
 Architecture: all
-Depends: ${misc:Depends}, hw-detect, di-utils (>= 1.72)
+Depends: ${misc:Depends}, hw-detect, di-utils (>= 1.72), hdparm-udeb
 XB-Installer-Menu-Item: 1300
 Description: Detect CDROM devices and mount the CD
diff --git a/finish-install b/finish-install
index 028d4b0..266c76c 100755
--- a/finish-install
+++ b/finish-install
@@ -23,3 +23,71 @@ if [ -n "$CDDEV" ]; then
 else
 	log "Not ejecting CD, as nothing is mounted."
 fi
+
+ARCH="`udpkg --print-architecture`"
+if [ "$ARCH" = i386 ]; then
+	# Set CD-ROM drive parameters for post-reboot.
+
+	db_get cdrom-detect/cdrom_device
+	device="$RET"
+
+	db_get cdrom-detect/cdrom_hdparm
+	params="$RET"
+
+	if [ "$device" ] && [ "$params" ]; then
+		mappeddevice="`mapdevfs "$device"`"
+		cat >>/target/etc/hdparm.conf <<EOF
+
+# Added by debian-installer
+
+$mappeddevice {
+EOF
+		set -- $params
+		while [ "$1" ]; do
+			name="$1"
+			shift
+			case "$name" in
+			    -??*)
+				value="${name#-?}"
+				name="`printf '%s' "$name" | sed 's/^\(-.\).*/\1/'`"
+				;;
+			    -?*)
+				value="$1"
+				shift
+				;;
+			    *)
+				continue
+				;;
+			esac
+			boolvalue=no
+			case "$name" in
+			    -a) mappedname=read_ahead_sect ;;
+			    -A) mappedname=lookahead;		boolvalue=yes ;;
+			    -b) mappedname=bus;			boolvalue=yes ;;
+			    -B) mappedname=apm ;;
+			    -c) mappedname=io32_support ;;
+			    -d) mappedname=dma;			boolvalue=yes ;;
+			    -D) mappedname=defect_mana;		boolvalue=yes ;;
+			    -E) mappedname=cd_speed ;;
+			    -m) mappedname=mult_sect_io ;;
+			    -P) mappedname=prefetch_sect ;;
+			    -S) mappedname=spindown_time ;;
+			    -u) mappedname=interrupt_unmask;	boolvalue=yes ;;
+			    -X) mappedname=transfer_mode ;;
+			    *)  continue ;;
+			esac
+			if [ "$boolvalue" = yes ]; then
+				case "$value" in
+				    0) mappedvalue=off ;;
+				    1) mappedvalue=on ;;
+				    *) continue ;;
+				esac
+			else
+				mappedvalue="$value"
+			fi
+			printf '\t%s = %s\n' "$mappedname" "$mappedvalue" \
+				>>/target/etc/hdparm.conf
+		done
+		echo '}' >>/target/etc/hdparm.conf
+	fi
+fi
-- 
2.7.4

From 08cfa29937f3dfbe796cab4d7e05bf2dd8808f40 Mon Sep 17 00:00:00 2001
From: Colin Watson <colin.watson@canonical.com>
Date: Wed, 26 Apr 2017 20:08:41 +0200
Subject: [PATCH 5/7] Update translations for using hdparm

Those changes should be done in d-i master po files
---
 debian/po/am.po         | 15 +++++++++++++++
 debian/po/ar.po         | 19 +++++++++++++++++++
 debian/po/ast.po        | 19 +++++++++++++++++++
 debian/po/be.po         | 19 +++++++++++++++++++
 debian/po/bg.po         | 19 +++++++++++++++++++
 debian/po/bn.po         | 19 +++++++++++++++++++
 debian/po/bo.po         | 15 +++++++++++++++
 debian/po/bs.po         | 19 +++++++++++++++++++
 debian/po/ca.po         | 19 +++++++++++++++++++
 debian/po/cs.po         | 19 +++++++++++++++++++
 debian/po/cy.po         | 15 +++++++++++++++
 debian/po/da.po         | 19 +++++++++++++++++++
 debian/po/de.po         | 19 +++++++++++++++++++
 debian/po/dz.po         | 15 +++++++++++++++
 debian/po/el.po         | 19 +++++++++++++++++++
 debian/po/eo.po         | 19 +++++++++++++++++++
 debian/po/es.po         | 20 ++++++++++++++++++++
 debian/po/et.po         | 19 +++++++++++++++++++
 debian/po/eu.po         | 18 ++++++++++++++++++
 debian/po/fa.po         | 15 +++++++++++++++
 debian/po/fi.po         | 19 +++++++++++++++++++
 debian/po/fr.po         | 19 +++++++++++++++++++
 debian/po/ga.po         | 15 +++++++++++++++
 debian/po/gl.po         | 19 +++++++++++++++++++
 debian/po/gu.po         | 15 +++++++++++++++
 debian/po/he.po         | 18 ++++++++++++++++++
 debian/po/hi.po         | 19 +++++++++++++++++++
 debian/po/hr.po         | 19 +++++++++++++++++++
 debian/po/hu.po         | 19 +++++++++++++++++++
 debian/po/id.po         | 19 +++++++++++++++++++
 debian/po/is.po         | 19 +++++++++++++++++++
 debian/po/it.po         | 19 +++++++++++++++++++
 debian/po/ja.po         | 19 +++++++++++++++++++
 debian/po/ka.po         | 19 +++++++++++++++++++
 debian/po/kk.po         | 19 +++++++++++++++++++
 debian/po/km.po         | 18 ++++++++++++++++++
 debian/po/kn.po         | 15 +++++++++++++++
 debian/po/ko.po         | 19 +++++++++++++++++++
 debian/po/ku.po         | 19 +++++++++++++++++++
 debian/po/lo.po         | 15 +++++++++++++++
 debian/po/lt.po         | 19 +++++++++++++++++++
 debian/po/lv.po         | 19 +++++++++++++++++++
 debian/po/mk.po         | 19 +++++++++++++++++++
 debian/po/ml.po         | 15 +++++++++++++++
 debian/po/mr.po         | 21 +++++++++++++++++++++
 debian/po/nb.po         | 19 +++++++++++++++++++
 debian/po/ne.po         | 15 +++++++++++++++
 debian/po/nl.po         | 19 +++++++++++++++++++
 debian/po/nn.po         | 19 +++++++++++++++++++
 debian/po/pa.po         | 15 +++++++++++++++
 debian/po/pl.po         | 19 +++++++++++++++++++
 debian/po/pt.po         | 19 +++++++++++++++++++
 debian/po/pt_BR.po      | 19 +++++++++++++++++++
 debian/po/ro.po         | 19 +++++++++++++++++++
 debian/po/ru.po         | 19 +++++++++++++++++++
 debian/po/se.po         | 15 +++++++++++++++
 debian/po/si.po         | 15 +++++++++++++++
 debian/po/sk.po         | 18 ++++++++++++++++++
 debian/po/sl.po         | 19 +++++++++++++++++++
 debian/po/sq.po         | 19 +++++++++++++++++++
 debian/po/sr.po         | 19 +++++++++++++++++++
 debian/po/sv.po         | 19 +++++++++++++++++++
 debian/po/ta.po         | 18 ++++++++++++++++++
 debian/po/te.po         | 15 +++++++++++++++
 debian/po/templates.pot | 15 +++++++++++++++
 debian/po/tg.po         | 15 +++++++++++++++
 debian/po/th.po         | 18 ++++++++++++++++++
 debian/po/tl.po         | 15 +++++++++++++++
 debian/po/tr.po         | 19 +++++++++++++++++++
 debian/po/ug.po         | 19 +++++++++++++++++++
 debian/po/uk.po         | 18 ++++++++++++++++++
 debian/po/vi.po         | 19 +++++++++++++++++++
 debian/po/zh_CN.po      | 17 +++++++++++++++++
 debian/po/zh_TW.po      | 18 ++++++++++++++++++
 74 files changed, 1327 insertions(+)

diff --git a/debian/po/am.po b/debian/po/am.po
index e5dbaae..1ee006d 100644
--- a/debian/po/am.po
+++ b/debian/po/am.po
@@ -275,3 +275,18 @@ msgstr "ሲዲ ማጫወቻውን በማውረድና በማስወጣት ላይ..
 #: ../cdrom-detect.templates:20001
 msgid "Detect and mount CD-ROM"
 msgstr "ሲዲ ማጫወቻውን አግኝና ጫን"
+
+#. Type: string
+#. Description
+#: ../cdrom-detect.templates:122
+msgid "Tune CD-ROM drive parameters with hdparm?"
+msgstr ""
+
+#. Type: string
+#. Description
+#: ../cdrom-detect.templates:122
+msgid ""
+"The installer can use hdparm to tune some CD-ROM drive parameters, which may "
+"significantly speed up reading packages from the CD. You can change the "
+"parameters to be used. To disable hdparm, enter an empty parameter list."
+msgstr ""
diff --git a/debian/po/ar.po b/debian/po/ar.po
index 7e42d69..6a2038d 100644
--- a/debian/po/ar.po
+++ b/debian/po/ar.po
@@ -292,3 +292,22 @@ msgstr "فك وإخراج القرص المدمج..."
 #: ../cdrom-detect.templates:20001
 msgid "Detect and mount CD-ROM"
 msgstr "فحص وتركيب قارئ الأقراص المدمجة"
+
+#. Type: string
+#. Description
+#: ../cdrom-detect.templates:122
+msgid "Tune CD-ROM drive parameters with hdparm?"
+msgstr "هل تريد تعديل معطيات قارءة الأقراص المدمجة عن طريق hdparm؟"
+
+#. Type: string
+#. Description
+#: ../cdrom-detect.templates:122
+msgid ""
+"The installer can use hdparm to tune some CD-ROM drive parameters, which may "
+"significantly speed up reading packages from the CD. You can change the "
+"parameters to be used. To disable hdparm, enter an empty parameter list."
+msgstr ""
+"يستطيع برنامج التثبيت استخدام hdparm لتعديل بعض معطيات قارءة الأقراص المدمجة "
+"مما قد يحسن من سرعة قراءة الحزم من القرص المدمج بصورة ملحوظة. يمكنك تغيير "
+"المعطيات المستخدمة كما يمكنك تعطيل hdparm و ذلك عن طريق ادخال قائمة معطيات "
+"خالية."
diff --git a/debian/po/ast.po b/debian/po/ast.po
index 7d2686e..a597029 100644
--- a/debian/po/ast.po
+++ b/debian/po/ast.po
@@ -290,3 +290,22 @@ msgstr "Desmontando y espulsando'l CD-ROM..."
 #: ../cdrom-detect.templates:20001
 msgid "Detect and mount CD-ROM"
 msgstr "Deteutar y montar el CD-ROM"
+
+#. Type: string
+#. Description
+#: ../cdrom-detect.templates:122
+msgid "Tune CD-ROM drive parameters with hdparm?"
+msgstr "¿Axustar los parámetros de la unidá de CD-ROM con hdparm?"
+
+#. Type: string
+#. Description
+#: ../cdrom-detect.templates:122
+msgid ""
+"The installer can use hdparm to tune some CD-ROM drive parameters, which may "
+"significantly speed up reading packages from the CD. You can change the "
+"parameters to be used. To disable hdparm, enter an empty parameter list."
+msgstr ""
+"El programa d'instalación pue usar hdparm p'axustar dalgunos parámetros de "
+"la unidá de CD-ROM, lo que pue acelerar significativamente la velocidá de "
+"llectura de paquetes dende'l CD. Pue camudar los parámetros que se vayan a "
+"usar. Pa desactivar hdparm, introduza una llista de parámetros erma."
diff --git a/debian/po/be.po b/debian/po/be.po
index 6608fc1..ef386aa 100644
--- a/debian/po/be.po
+++ b/debian/po/be.po
@@ -302,3 +302,22 @@ msgstr "Адмацаванне і вызваленне CD-ROM..."
 #: ../cdrom-detect.templates:20001
 msgid "Detect and mount CD-ROM"
 msgstr "Вызначэнне і мацаванне CD-ROM"
+
+#. Type: string
+#. Description
+#: ../cdrom-detect.templates:122
+msgid "Tune CD-ROM drive parameters with hdparm?"
+msgstr "Наладзіць парамэтры кружэльніка з дапамогай hdparm?"
+
+#. Type: string
+#. Description
+#: ../cdrom-detect.templates:122
+msgid ""
+"The installer can use hdparm to tune some CD-ROM drive parameters, which may "
+"significantly speed up reading packages from the CD. You can change the "
+"parameters to be used. To disable hdparm, enter an empty parameter list."
+msgstr ""
+"Усталёўшчык можа скарыстацца hdparm, каб наладзіць некаторыя парамэтры "
+"кружэльніка, што можа значна паскорыць чытаньне пакетаў з гэтага CD. Можаце "
+"зьмяніць парамэтры, якія будуць выкарыстоўвацца. Каб не ўжываць hdparm, "
+"падайце пусты сьпіс парамэтраў."
diff --git a/debian/po/bg.po b/debian/po/bg.po
index 7074c4b..9c0ebf4 100644
--- a/debian/po/bg.po
+++ b/debian/po/bg.po
@@ -317,3 +317,22 @@ msgstr "Демонтиране и изваждане на компактдиск
 #: ../cdrom-detect.templates:20001
 msgid "Detect and mount CD-ROM"
 msgstr "Разпознаване и монтиране на компактдиск"
+
+#. Type: string
+#. Description
+#: ../cdrom-detect.templates:122
+msgid "Tune CD-ROM drive parameters with hdparm?"
+msgstr "Настройка на CD-ROM параметрите с hdparm?"
+
+#. Type: string
+#. Description
+#: ../cdrom-detect.templates:122
+msgid ""
+"The installer can use hdparm to tune some CD-ROM drive parameters, which may "
+"significantly speed up reading packages from the CD. You can change the "
+"parameters to be used. To disable hdparm, enter an empty parameter list."
+msgstr ""
+"Инсталаторът може да използва hdparm за настройка на някои параметри на CD-"
+"ROM устройства, което може значително да увеличи скоростта на четене на "
+"пакетите от компактдиска. Можете да промените параметрите, които ще бъдат "
+"използвани. За деактивация на hdparm въведете празен списък с параметри."
diff --git a/debian/po/bn.po b/debian/po/bn.po
index fbf995b..e7fd0e2 100644
--- a/debian/po/bn.po
+++ b/debian/po/bn.po
@@ -302,3 +302,22 @@ msgstr "সিডি-রম আনমাউন্ট করে বের কর
 #: ../cdrom-detect.templates:20001
 msgid "Detect and mount CD-ROM"
 msgstr "CD-ROM সনাক্ত করে মাউন্ট করা হচ্ছে"
+
+#. Type: string
+#. Description
+#: ../cdrom-detect.templates:122
+msgid "Tune CD-ROM drive parameters with hdparm?"
+msgstr "hdparm দিয়ে CD-ROM ড্রাইভের প্যারামিটার টিউন করা হবে কি?"
+
+#. Type: string
+#. Description
+#: ../cdrom-detect.templates:122
+msgid ""
+"The installer can use hdparm to tune some CD-ROM drive parameters, which may "
+"significantly speed up reading packages from the CD. You can change the "
+"parameters to be used. To disable hdparm, enter an empty parameter list."
+msgstr ""
+"ইনস্টলার CD-ROM ড্রাইভের কিছু প্যারামিটার টিউন করার জন্য hdparm ব্যবহার করতে পারে, "
+"এর ফলে CD থেকে প্যাকেজ পড়ার গতি উল্লেখযোগ্য হারে বৃদ্ধি পায়। এখানে কোন কোন "
+"প্যারামিটার ব্যবহৃত হবে তা আপনি পরিবর্তন করে দিতে পারেন। hdparm নিষ্ক্রিয় করতে, "
+"একটি ফাঁকা প্যারামিটার তালিকা দিন।"
diff --git a/debian/po/bo.po b/debian/po/bo.po
index c82f03e..f572983 100644
--- a/debian/po/bo.po
+++ b/debian/po/bo.po
@@ -270,3 +270,18 @@ msgstr "བཀར་བ་དེ་ཕར་བཤོལ་ནས་CD-ROM ཕ
 #: ../cdrom-detect.templates:20001
 msgid "Detect and mount CD-ROM"
 msgstr "འོད་སྡེར་སྒུལ་ཆས་འཚོལ་ནས་བཀར་བ"
+
+#. Type: string
+#. Description
+#: ../cdrom-detect.templates:122
+msgid "Tune CD-ROM drive parameters with hdparm?"
+msgstr ""
+
+#. Type: string
+#. Description
+#: ../cdrom-detect.templates:122
+msgid ""
+"The installer can use hdparm to tune some CD-ROM drive parameters, which may "
+"significantly speed up reading packages from the CD. You can change the "
+"parameters to be used. To disable hdparm, enter an empty parameter list."
+msgstr ""
diff --git a/debian/po/bs.po b/debian/po/bs.po
index b252c57..15ebe63 100644
--- a/debian/po/bs.po
+++ b/debian/po/bs.po
@@ -296,3 +296,22 @@ msgstr "Demontiranje i izbacivanje CD-ROM-a..."
 #: ../cdrom-detect.templates:20001
 msgid "Detect and mount CD-ROM"
 msgstr "Detektiraj i montiraj CD-ROM"
+
+#. Type: string
+#. Description
+#: ../cdrom-detect.templates:122
+msgid "Tune CD-ROM drive parameters with hdparm?"
+msgstr "Podesiti CD-ROM parametre sa hdparm-om?"
+
+#. Type: string
+#. Description
+#: ../cdrom-detect.templates:122
+msgid ""
+"The installer can use hdparm to tune some CD-ROM drive parameters, which may "
+"significantly speed up reading packages from the CD. You can change the "
+"parameters to be used. To disable hdparm, enter an empty parameter list."
+msgstr ""
+"Instaler može koristiti hdparm kako bi podesio parametre CD-ROM uređaja, što "
+"bi moglo značajno ubrzati čitanje paketa sa CD-a. Možete promjeniti "
+"parametre koje ćete koristiti. Kako biste onemogućili hdparm, ostavite listu "
+"parametrara praznom."
diff --git a/debian/po/ca.po b/debian/po/ca.po
index 14da8b4..12b51e0 100644
--- a/debian/po/ca.po
+++ b/debian/po/ca.po
@@ -293,3 +293,22 @@ msgstr "S'està desmuntant i expulsant el CD-ROM..."
 #: ../cdrom-detect.templates:20001
 msgid "Detect and mount CD-ROM"
 msgstr "Detecta i munta el CD-ROM"
+
+#. Type: string
+#. Description
+#: ../cdrom-detect.templates:122
+msgid "Tune CD-ROM drive parameters with hdparm?"
+msgstr "Voleu ajustar els paràmetres de la unitat de CD-ROM amb hdparm?"
+
+#. Type: string
+#. Description
+#: ../cdrom-detect.templates:122
+msgid ""
+"The installer can use hdparm to tune some CD-ROM drive parameters, which may "
+"significantly speed up reading packages from the CD. You can change the "
+"parameters to be used. To disable hdparm, enter an empty parameter list."
+msgstr ""
+"L'instal·lador pot utilitzar hdparm per a ajustar alguns paràmetres de la "
+"unitat de CD-ROM, que poden accelerar signficativament la lectura de paquets "
+"des del CD. Podeu canviar els paràmetres a utilitzar. Per a inhabilitar "
+"l'hdparm, introduïu una llista de paràmetres buida."
diff --git a/debian/po/cs.po b/debian/po/cs.po
index 99af0a0..cd87b8b 100644
--- a/debian/po/cs.po
+++ b/debian/po/cs.po
@@ -292,3 +292,22 @@ msgstr "Odpojuje se CD-ROM..."
 #: ../cdrom-detect.templates:20001
 msgid "Detect and mount CD-ROM"
 msgstr "Rozpoznat a připojit CD-ROM"
+
+#. Type: string
+#. Description
+#: ../cdrom-detect.templates:122
+msgid "Tune CD-ROM drive parameters with hdparm?"
+msgstr "Vyladit parametrxy CD-ROM mechaniky pomocí hdparm?"
+
+#. Type: string
+#. Description
+#: ../cdrom-detect.templates:122
+msgid ""
+"The installer can use hdparm to tune some CD-ROM drive parameters, which may "
+"significantly speed up reading packages from the CD. You can change the "
+"parameters to be used. To disable hdparm, enter an empty parameter list."
+msgstr ""
+"Instalátor může použít \"hdparm\" pro vyladění některých parametrů CD-ROM "
+"mechaniky, které mohou významně urychlit rychlost čtení balíků z CD. Můžete "
+"měnit parametry, které budou použity. Pro vypnutí \"hdparm\" ponechte seznam "
+"parametrů prázdný."
diff --git a/debian/po/cy.po b/debian/po/cy.po
index 3070f50..2ddac40 100644
--- a/debian/po/cy.po
+++ b/debian/po/cy.po
@@ -292,3 +292,18 @@ msgstr "Yn datglymu ac allfwrw'r CD-ROM..."
 #: ../cdrom-detect.templates:20001
 msgid "Detect and mount CD-ROM"
 msgstr "Canfod a clymu CD-ROM"
+
+#. Type: string
+#. Description
+#: ../cdrom-detect.templates:122
+msgid "Tune CD-ROM drive parameters with hdparm?"
+msgstr ""
+
+#. Type: string
+#. Description
+#: ../cdrom-detect.templates:122
+msgid ""
+"The installer can use hdparm to tune some CD-ROM drive parameters, which may "
+"significantly speed up reading packages from the CD. You can change the "
+"parameters to be used. To disable hdparm, enter an empty parameter list."
+msgstr ""
diff --git a/debian/po/da.po b/debian/po/da.po
index 7552a96..3ec7c91 100644
--- a/debian/po/da.po
+++ b/debian/po/da.po
@@ -314,3 +314,22 @@ msgstr "Afmonterer cd og skubber den ud ..."
 #: ../cdrom-detect.templates:20001
 msgid "Detect and mount CD-ROM"
 msgstr "Led efter cd-rom drev og monter cd"
+
+#. Type: string
+#. Description
+#: ../cdrom-detect.templates:122
+msgid "Tune CD-ROM drive parameters with hdparm?"
+msgstr "Optimer CD-ROM parameter med hdparm?"
+
+#. Type: string
+#. Description
+#: ../cdrom-detect.templates:122
+msgid ""
+"The installer can use hdparm to tune some CD-ROM drive parameters, which may "
+"significantly speed up reading packages from the CD. You can change the "
+"parameters to be used. To disable hdparm, enter an empty parameter list."
+msgstr ""
+"Installationen kan bruge hdparm til at optimerer nogle CD-ROM drev "
+"parameter, dette kan markant øge hastigheden på læsning af pakker fra CD'en. "
+"Du kan ændre parameterne som bruges. For at deaktivere hdparm, indtast en "
+"tom parameter liste."
diff --git a/debian/po/de.po b/debian/po/de.po
index 1a623d6..53d81fb 100644
--- a/debian/po/de.po
+++ b/debian/po/de.po
@@ -323,3 +323,22 @@ msgstr "Aufheben der Laufwerkseinbindung und Auswerfen der CD-ROM ..."
 #: ../cdrom-detect.templates:20001
 msgid "Detect and mount CD-ROM"
 msgstr "CD-ROM erkennen und einbinden"
+
+#. Type: string
+#. Description
+#: ../cdrom-detect.templates:122
+msgid "Tune CD-ROM drive parameters with hdparm?"
+msgstr "CD-ROM Parameter mittels hdparm tunen?"
+
+#. Type: string
+#. Description
+#: ../cdrom-detect.templates:122
+msgid ""
+"The installer can use hdparm to tune some CD-ROM drive parameters, which may "
+"significantly speed up reading packages from the CD. You can change the "
+"parameters to be used. To disable hdparm, enter an empty parameter list."
+msgstr ""
+"Das Installationsprogramm kann »hdparm« verwenden, um bei einigen CD-ROM-"
+"Laufwerken die Lesegeschwindigkeit für die Pakete möglicherweise signifikant "
+"zu erhöhen. Sie können die zu verwendenden Parameter ändern. Um »hdparm« "
+"abzuschalten, lassen Sie die Parameterliste leer."
diff --git a/debian/po/dz.po b/debian/po/dz.po
index 93bcedd..ed2adf1 100644
--- a/debian/po/dz.po
+++ b/debian/po/dz.po
@@ -289,3 +289,18 @@ msgstr "སྦྱར་བརྩེགས་མི་འབད་ནི་དང
 #: ../cdrom-detect.templates:20001
 msgid "Detect and mount CD-ROM"
 msgstr "སི་ཌི་ རོམ་སྦྱར་བརྩེགས་འམད་ནི་དང་སྐྱོན་འཛིན།"
+
+#. Type: string
+#. Description
+#: ../cdrom-detect.templates:122
+msgid "Tune CD-ROM drive parameters with hdparm?"
+msgstr ""
+
+#. Type: string
+#. Description
+#: ../cdrom-detect.templates:122
+msgid ""
+"The installer can use hdparm to tune some CD-ROM drive parameters, which may "
+"significantly speed up reading packages from the CD. You can change the "
+"parameters to be used. To disable hdparm, enter an empty parameter list."
+msgstr ""
diff --git a/debian/po/el.po b/debian/po/el.po
index 0b49aa3..24c5cb9 100644
--- a/debian/po/el.po
+++ b/debian/po/el.po
@@ -310,3 +310,22 @@ msgstr "Αποπροσάρτηση και εξαγωγή του δίσκου CD-
 #: ../cdrom-detect.templates:20001
 msgid "Detect and mount CD-ROM"
 msgstr "Ανίχνευση των μονάδων CD-ROM και προσάρτηση του CD"
+
+#. Type: string
+#. Description
+#: ../cdrom-detect.templates:122
+msgid "Tune CD-ROM drive parameters with hdparm?"
+msgstr "Βελτιστοποίηση των παραμέτρων οδηγού CD-ROM με το hdparm;"
+
+#. Type: string
+#. Description
+#: ../cdrom-detect.templates:122
+msgid ""
+"The installer can use hdparm to tune some CD-ROM drive parameters, which may "
+"significantly speed up reading packages from the CD. You can change the "
+"parameters to be used. To disable hdparm, enter an empty parameter list."
+msgstr ""
+"Η εγκατάσταση μπορεί να κάνει χρήση του  hdparm για να ρυθμίσει μερικές "
+"παραμέτρους του CD-ROM, που βοηθούν στην ταχύτητα ανάγνωση πακέτων από το "
+"CD. Μπορείτε να αλλάξετε τις παραμέτρους που θα χρησιμοποιηθούν. Για να "
+"απενεργοποιήσετε το  hdparm, βάλτε μια κενή παράμετρο."
diff --git a/debian/po/eo.po b/debian/po/eo.po
index 6b5613e..acc7713 100644
--- a/debian/po/eo.po
+++ b/debian/po/eo.po
@@ -290,3 +290,22 @@ msgstr "Malmuntado kaj elmetado de lumdisko..."
 #: ../cdrom-detect.templates:20001
 msgid "Detect and mount CD-ROM"
 msgstr "Detekti kaj munti lumdiskon"
+
+#. Type: string
+#. Description
+#: ../cdrom-detect.templates:122
+msgid "Tune CD-ROM drive parameters with hdparm?"
+msgstr "Ĉu vi volas agordi KD-ingajn parametrojn per 'hdparm'?"
+
+#. Type: string
+#. Description
+#: ../cdrom-detect.templates:122
+msgid ""
+"The installer can use hdparm to tune some CD-ROM drive parameters, which may "
+"significantly speed up reading packages from the CD. You can change the "
+"parameters to be used. To disable hdparm, enter an empty parameter list."
+msgstr ""
+"La instalilo povas uzi 'hdparm' por agordi kelkajn parametrojn de la KD-"
+"legilo, kiuj eble signife plirapidigi la legadon de la pakaĵoj el la KD. Vi "
+"povas ŝanĝi la uzendajn parametrojn. Por malŝalti hdparm, faru malplenan "
+"parametroliston."
diff --git a/debian/po/es.po b/debian/po/es.po
index efd2880..15cb0ff 100644
--- a/debian/po/es.po
+++ b/debian/po/es.po
@@ -338,3 +338,23 @@ msgstr "Desmontando y expulsando el CD-ROM..."
 #: ../cdrom-detect.templates:20001
 msgid "Detect and mount CD-ROM"
 msgstr "Detectar y montar el CD-ROM"
+
+#. Type: string
+#. Description
+#: ../cdrom-detect.templates:122
+msgid "Tune CD-ROM drive parameters with hdparm?"
+msgstr "¿Ajustar los parámetros de la unidad de CD-ROM con hdparm?"
+
+#. Type: string
+#. Description
+#: ../cdrom-detect.templates:122
+msgid ""
+"The installer can use hdparm to tune some CD-ROM drive parameters, which may "
+"significantly speed up reading packages from the CD. You can change the "
+"parameters to be used. To disable hdparm, enter an empty parameter list."
+msgstr ""
+"El programa de instalación puede usar hdparm para ajustar algunos parámetros "
+"de la unidad de CD-ROM, lo que puede acelerar significativamente la "
+"velocidad de lectura de paquetes desde el CD. Puede cambiar los parámetros "
+"que se vayan a usar. Para desactivar hdparm, introduzca una lista de "
+"parámetros vacía."
diff --git a/debian/po/et.po b/debian/po/et.po
index 3210c88..aeb92f6 100644
--- a/debian/po/et.po
+++ b/debian/po/et.po
@@ -302,3 +302,22 @@ msgstr "Laserketta lahtihaakimine ja väljastamine..."
 #: ../cdrom-detect.templates:20001
 msgid "Detect and mount CD-ROM"
 msgstr "CD-ROM'i tuvastamine ja haakimine"
+
+#. Type: string
+#. Description
+#: ../cdrom-detect.templates:122
+msgid "Tune CD-ROM drive parameters with hdparm?"
+msgstr "Säti CD-ROM seadme parameetreid hdparm abil?"
+
+#. Type: string
+#. Description
+#: ../cdrom-detect.templates:122
+msgid ""
+"The installer can use hdparm to tune some CD-ROM drive parameters, which may "
+"significantly speed up reading packages from the CD. You can change the "
+"parameters to be used. To disable hdparm, enter an empty parameter list."
+msgstr ""
+"Paigaldaja võib hdparm-i abil CD-ROM seadme parameetreid muuta, mis võib "
+"oluliselt kiirendada pakettide plaadilt lugemist. Kasutatavaid parameertreid "
+"saad ise muuta. Hdparm-i väljalülitamiseks tuleb sisestada tühi parameetrite "
+"loetelu."
diff --git a/debian/po/eu.po b/debian/po/eu.po
index 0db9810..2428eb4 100644
--- a/debian/po/eu.po
+++ b/debian/po/eu.po
@@ -298,3 +298,21 @@ msgstr "CD-ROMa desmuntatzen eta egozten..."
 #: ../cdrom-detect.templates:20001
 msgid "Detect and mount CD-ROM"
 msgstr "Detektatu eta muntatu CD-ROMa"
+
+#. Type: string
+#. Description
+#: ../cdrom-detect.templates:122
+msgid "Tune CD-ROM drive parameters with hdparm?"
+msgstr "CD-ROM unitatearen parametroak doitu hdparm erabiliz?"
+
+#. Type: string
+#. Description
+#: ../cdrom-detect.templates:122
+msgid ""
+"The installer can use hdparm to tune some CD-ROM drive parameters, which may "
+"significantly speed up reading packages from the CD. You can change the "
+"parameters to be used. To disable hdparm, enter an empty parameter list."
+msgstr ""
+"Instalatzaileak hdparm erabil dezake CD-ROM unitatearen parametroak "
+"doitzeko. Honek CDaren abiadura nabarmen handitu dezake. Erabiliko diren "
+"parametroak alda ditzakezu. Zerrenda hutsik utzi hdparm ezgaitzeko."
diff --git a/debian/po/fa.po b/debian/po/fa.po
index 8ecb0d2..34ed466 100644
--- a/debian/po/fa.po
+++ b/debian/po/fa.po
@@ -292,3 +292,18 @@ msgstr "پیاده‌سازی و خارج ساختن  CD-ROM.."
 #: ../cdrom-detect.templates:20001
 msgid "Detect and mount CD-ROM"
 msgstr "شناخت و ماونت CD-ROM"
+
+#. Type: string
+#. Description
+#: ../cdrom-detect.templates:122
+msgid "Tune CD-ROM drive parameters with hdparm?"
+msgstr ""
+
+#. Type: string
+#. Description
+#: ../cdrom-detect.templates:122
+msgid ""
+"The installer can use hdparm to tune some CD-ROM drive parameters, which may "
+"significantly speed up reading packages from the CD. You can change the "
+"parameters to be used. To disable hdparm, enter an empty parameter list."
+msgstr ""
diff --git a/debian/po/fi.po b/debian/po/fi.po
index 6573b8d..bea9644 100644
--- a/debian/po/fi.po
+++ b/debian/po/fi.po
@@ -294,3 +294,22 @@ msgstr "Irrotetaan ja poistetaan CD-levy..."
 #: ../cdrom-detect.templates:20001
 msgid "Detect and mount CD-ROM"
 msgstr "Tunnista ja liitä CD-levy"
+
+#. Type: string
+#. Description
+#: ../cdrom-detect.templates:122
+msgid "Tune CD-ROM drive parameters with hdparm?"
+msgstr "Säädetäänkö CD-aseman asetuksia hdparm-ohjelman avulla?"
+
+#. Type: string
+#. Description
+#: ../cdrom-detect.templates:122
+msgid ""
+"The installer can use hdparm to tune some CD-ROM drive parameters, which may "
+"significantly speed up reading packages from the CD. You can change the "
+"parameters to be used. To disable hdparm, enter an empty parameter list."
+msgstr ""
+"Asennusohjelma voi käyttää hdparm-ohjelmaa hienosäätääkseen joitain CD-"
+"asemien asetuksia, josta saattaa seurata huomattavaa suorituskyvyn nousua "
+"luettaessa paketteja CD-levyltä. Voit halutessasi muuttaa käytettäviä "
+"asetuksia. Jos et halua käyttää hdparm-ohjelmaa, älä syötä mitään asetuksia."
diff --git a/debian/po/fr.po b/debian/po/fr.po
index 42255d8..a367a16 100644
--- a/debian/po/fr.po
+++ b/debian/po/fr.po
@@ -314,3 +314,22 @@ msgstr "Démontage du CD et éjection..."
 #: ../cdrom-detect.templates:20001
 msgid "Detect and mount CD-ROM"
 msgstr "Détecter et monter le CD"
+
+#. Type: string
+#. Description
+#: ../cdrom-detect.templates:122
+msgid "Tune CD-ROM drive parameters with hdparm?"
+msgstr "Personnaliser les paramètres du lecteur CD avec hdparm ?"
+
+#. Type: string
+#. Description
+#: ../cdrom-detect.templates:122
+msgid ""
+"The installer can use hdparm to tune some CD-ROM drive parameters, which may "
+"significantly speed up reading packages from the CD. You can change the "
+"parameters to be used. To disable hdparm, enter an empty parameter list."
+msgstr ""
+"L'installateur peut utiliser hdparm pour pour régler certains paramètres du "
+"lecteur de CD. Ceci peut  accélérer de manière notable la lecture des "
+"paquets à partir du CD. Vous pouvez modifier les paramètres à utiliser. Pour "
+"désactiver hdparm, laissez la liste de paramètres vide."
diff --git a/debian/po/ga.po b/debian/po/ga.po
index 74eed01..a4f6ccc 100644
--- a/debian/po/ga.po
+++ b/debian/po/ga.po
@@ -296,3 +296,18 @@ msgstr "CD-ROM á dhífheistiú agus á dhíchur..."
 #: ../cdrom-detect.templates:20001
 msgid "Detect and mount CD-ROM"
 msgstr "Braith agus feistigh an CD-ROM"
+
+#. Type: string
+#. Description
+#: ../cdrom-detect.templates:122
+msgid "Tune CD-ROM drive parameters with hdparm?"
+msgstr ""
+
+#. Type: string
+#. Description
+#: ../cdrom-detect.templates:122
+msgid ""
+"The installer can use hdparm to tune some CD-ROM drive parameters, which may "
+"significantly speed up reading packages from the CD. You can change the "
+"parameters to be used. To disable hdparm, enter an empty parameter list."
+msgstr ""
diff --git a/debian/po/gl.po b/debian/po/gl.po
index 2558f02..4400c54 100644
--- a/debian/po/gl.po
+++ b/debian/po/gl.po
@@ -294,3 +294,22 @@ msgstr "Estase a desmontar e extraer o CD-ROM"
 #: ../cdrom-detect.templates:20001
 msgid "Detect and mount CD-ROM"
 msgstr "Detectar e montar o CD-ROM"
+
+#. Type: string
+#. Description
+#: ../cdrom-detect.templates:122
+msgid "Tune CD-ROM drive parameters with hdparm?"
+msgstr "Axustar os parámetros da unidade de CD-ROM con hdparm?"
+
+#. Type: string
+#. Description
+#: ../cdrom-detect.templates:122
+msgid ""
+"The installer can use hdparm to tune some CD-ROM drive parameters, which may "
+"significantly speed up reading packages from the CD. You can change the "
+"parameters to be used. To disable hdparm, enter an empty parameter list."
+msgstr ""
+"O instalador pode utilizar hdparm para axustar algúns parámetros da unidade "
+"de CD-ROM, o que pode acelerar notablemente a velocidade de lectura dos "
+"paquetes desde o CD. Pode cambiar os parámetros que se van usar. Para "
+"desactivar hdparm, escriba unha lista de parámetros baleira."
diff --git a/debian/po/gu.po b/debian/po/gu.po
index 7bf61ce..f9982dd 100644
--- a/debian/po/gu.po
+++ b/debian/po/gu.po
@@ -291,3 +291,18 @@ msgstr "સીડી-રોમને અન્માઉન્ટ કરે છ
 #: ../cdrom-detect.templates:20001
 msgid "Detect and mount CD-ROM"
 msgstr "સીડી-રોમ શોધો અને માઉન્ટ કરો"
+
+#. Type: string
+#. Description
+#: ../cdrom-detect.templates:122
+msgid "Tune CD-ROM drive parameters with hdparm?"
+msgstr ""
+
+#. Type: string
+#. Description
+#: ../cdrom-detect.templates:122
+msgid ""
+"The installer can use hdparm to tune some CD-ROM drive parameters, which may "
+"significantly speed up reading packages from the CD. You can change the "
+"parameters to be used. To disable hdparm, enter an empty parameter list."
+msgstr ""
diff --git a/debian/po/he.po b/debian/po/he.po
index 96d0120..4cf7af7 100644
--- a/debian/po/he.po
+++ b/debian/po/he.po
@@ -300,3 +300,21 @@ msgstr "מסיר עגינה ומוציא את התקליטור..."
 #: ../cdrom-detect.templates:20001
 msgid "Detect and mount CD-ROM"
 msgstr "זיהוי ועגינת כונן תקליטורים"
+
+#. Type: string
+#. Description
+#: ../cdrom-detect.templates:122
+msgid "Tune CD-ROM drive parameters with hdparm?"
+msgstr "לכוון את כונן התקליטורים בעזרת hdparm?"
+
+#. Type: string
+#. Description
+#: ../cdrom-detect.templates:122
+msgid ""
+"The installer can use hdparm to tune some CD-ROM drive parameters, which may "
+"significantly speed up reading packages from the CD. You can change the "
+"parameters to be used. To disable hdparm, enter an empty parameter list."
+msgstr ""
+"תוכנית ההתקנה יכולה להשתמש ב hdparm לכיוון פרמטרי כונן התקליטורים שלך, מה "
+"שיכול להגדיל בצורה משמעותית את מהירות קריאת החבילות מהתקליטור. תוכל לשנות את "
+"הפרמטרים בהם יעשה שימוש. לביטול הפעלת hdparm, הזן רשימת פרמטרים ריקה."
diff --git a/debian/po/hi.po b/debian/po/hi.po
index bf11f35..4893618 100644
--- a/debian/po/hi.po
+++ b/debian/po/hi.po
@@ -296,3 +296,22 @@ msgstr "सीडी-रॉम को अनमाउंट करके नि
 #: ../cdrom-detect.templates:20001
 msgid "Detect and mount CD-ROM"
 msgstr "सीडी-रॉम खोजें और माउंट करें"
+
+#. Type: string
+#. Description
+#: ../cdrom-detect.templates:122
+msgid "Tune CD-ROM drive parameters with hdparm?"
+msgstr "सीडी-रौम ड्राईव को एचडीपार्म के इस्तेमाल से बेहतरीन लय में लाऐं ?"
+
+#. Type: string
+#. Description
+#: ../cdrom-detect.templates:122
+msgid ""
+"The installer can use hdparm to tune some CD-ROM drive parameters, which may "
+"significantly speed up reading packages from the CD. You can change the "
+"parameters to be used. To disable hdparm, enter an empty parameter list."
+msgstr ""
+"संस्थापक एचडीपार्म (जो कम्प्यूटर का एक प्रोग्रॉम है) को इस्तेमाल कर के सीडीरौम ड्राईव को "
+"बेहतरीन लय में ला सकता है, जिस से सीडी काफी ज़्यादा तेज़ चल सकती है। आप सीडी के लय के "
+"पैमाने को देख के बदलाव कर सकते हैं। अगर आप को एचडीपार्म नहीं इस्तेमाल करना हो, तो पैमाना "
+"सूची खाली रखें।"
diff --git a/debian/po/hr.po b/debian/po/hr.po
index fcf33de..cb57480 100644
--- a/debian/po/hr.po
+++ b/debian/po/hr.po
@@ -297,3 +297,22 @@ msgstr "Demontiram i izbacujem CD-ROM..."
 #: ../cdrom-detect.templates:20001
 msgid "Detect and mount CD-ROM"
 msgstr "Pronađi i montiraj CD-ROM"
+
+#. Type: string
+#. Description
+#: ../cdrom-detect.templates:122
+msgid "Tune CD-ROM drive parameters with hdparm?"
+msgstr "Podesiti CD-ROM parametre sa hdparm-om?"
+
+#. Type: string
+#. Description
+#: ../cdrom-detect.templates:122
+msgid ""
+"The installer can use hdparm to tune some CD-ROM drive parameters, which may "
+"significantly speed up reading packages from the CD. You can change the "
+"parameters to be used. To disable hdparm, enter an empty parameter list."
+msgstr ""
+"Instaler može koristiti hdparm kako bi podesio parametre CD-ROM uređaja, što "
+"bi moglo značajno ubrzati čitanje paketa sa CD-a. Možete promjeniti "
+"parametre koje ćete koristiti. Kako biste onemogućili hdparm, ostavite listu "
+"parametrara praznom."
diff --git a/debian/po/hu.po b/debian/po/hu.po
index 5d6bb93..9d973bd 100644
--- a/debian/po/hu.po
+++ b/debian/po/hu.po
@@ -371,3 +371,22 @@ msgstr "CD-ROM lecsatolása és kiadása..."
 #: ../cdrom-detect.templates:20001
 msgid "Detect and mount CD-ROM"
 msgstr "CD-ROM érzékelése és csatolása"
+
+#. Type: string
+#. Description
+#: ../cdrom-detect.templates:122
+msgid "Tune CD-ROM drive parameters with hdparm?"
+msgstr "Hangolja a CD-ROM meghajtót a hdparm segítségével?"
+
+#. Type: string
+#. Description
+#: ../cdrom-detect.templates:122
+msgid ""
+"The installer can use hdparm to tune some CD-ROM drive parameters, which may "
+"significantly speed up reading packages from the CD. You can change the "
+"parameters to be used. To disable hdparm, enter an empty parameter list."
+msgstr ""
+"A telepítő képes a hdparm segítségével bizonyos CD-ROM meghajtók "
+"hangolására, ami jelentősen gyorsíthatja a csomagok olvasását a CD-ről. Itt "
+"megváltoztathatja a használandó paramétereket. A hdparm letiltásához üres "
+"paraméterlistát adjon meg."
diff --git a/debian/po/id.po b/debian/po/id.po
index 5aace44..cd372c6 100644
--- a/debian/po/id.po
+++ b/debian/po/id.po
@@ -303,3 +303,22 @@ msgstr "Melepas dan mengeluarkan CD-ROM..."
 #: ../cdrom-detect.templates:20001
 msgid "Detect and mount CD-ROM"
 msgstr "Mencari dan mengaitkan CD-ROM"
+
+#. Type: string
+#. Description
+#: ../cdrom-detect.templates:122
+msgid "Tune CD-ROM drive parameters with hdparm?"
+msgstr "Atur parameter CD-ROM dengan hdparm?"
+
+#. Type: string
+#. Description
+#: ../cdrom-detect.templates:122
+msgid ""
+"The installer can use hdparm to tune some CD-ROM drive parameters, which may "
+"significantly speed up reading packages from the CD. You can change the "
+"parameters to be used. To disable hdparm, enter an empty parameter list."
+msgstr ""
+"Penginstal ini dapat memanggil hdpam untuk mengatur penggerak CD-ROM yang "
+"dapat mempercepat pembacaan paket dari CD. Anda dapat mengubah parameter "
+"yang digunakan. Jika tidak ingin menggunakan hdparm, kosongkan saja ruas "
+"parameternya."
diff --git a/debian/po/is.po b/debian/po/is.po
index 9f3640b..25613fb 100644
--- a/debian/po/is.po
+++ b/debian/po/is.po
@@ -292,3 +292,22 @@ msgstr "Aftengi disk og opna geisladrif..."
 #: ../cdrom-detect.templates:20001
 msgid "Detect and mount CD-ROM"
 msgstr "Finna og tengja geisladisk"
+
+#. Type: string
+#. Description
+#: ../cdrom-detect.templates:122
+msgid "Tune CD-ROM drive parameters with hdparm?"
+msgstr "Stilla geisladrifs-stillingar með ‚hdparm‘?"
+
+#. Type: string
+#. Description
+#: ../cdrom-detect.templates:122
+msgid ""
+"The installer can use hdparm to tune some CD-ROM drive parameters, which may "
+"significantly speed up reading packages from the CD. You can change the "
+"parameters to be used. To disable hdparm, enter an empty parameter list."
+msgstr ""
+"Uppsetningin getur notað ‚hdparm‘ til að stilla nokkrar "
+"geisladrifsstillingar. Þetta getur hraðað lesningu pakka frá geisladisk. Þú "
+"getur breytt stillingunum sem á að nota. Til að óvirkja ‚hdparm‘ þá þarf "
+"aðeins að slá inn tóman stillingalista."
diff --git a/debian/po/it.po b/debian/po/it.po
index 10333ae..a938a04 100644
--- a/debian/po/it.po
+++ b/debian/po/it.po
@@ -318,3 +318,22 @@ msgstr "Smontaggio ed espulsione del CD-ROM..."
 #: ../cdrom-detect.templates:20001
 msgid "Detect and mount CD-ROM"
 msgstr "Rilevare e montare il CD-ROM"
+
+#. Type: string
+#. Description
+#: ../cdrom-detect.templates:122
+msgid "Tune CD-ROM drive parameters with hdparm?"
+msgstr "Regolare i parametri dell'unità CD-ROM con hdparm?"
+
+#. Type: string
+#. Description
+#: ../cdrom-detect.templates:122
+msgid ""
+"The installer can use hdparm to tune some CD-ROM drive parameters, which may "
+"significantly speed up reading packages from the CD. You can change the "
+"parameters to be used. To disable hdparm, enter an empty parameter list."
+msgstr ""
+"Il sistema di installazione permette di usare hdparm per regolare alcuni "
+"parametri dell'unità CD-ROM in modo da velocizzare la lettura dei pacchetti "
+"dal CD. È possibile cambiare i parametri da usare. Per disabilitare hdparm, "
+"inserire un elenco di parametri vuoto."
diff --git a/debian/po/ja.po b/debian/po/ja.po
index 17d2f05..b3d46b7 100644
--- a/debian/po/ja.po
+++ b/debian/po/ja.po
@@ -301,3 +301,22 @@ msgstr "CD-ROM のアンマウントと取り出しをしています..."
 #: ../cdrom-detect.templates:20001
 msgid "Detect and mount CD-ROM"
 msgstr "CD-ROM の検出とマウント"
+
+#. Type: string
+#. Description
+#: ../cdrom-detect.templates:122
+msgid "Tune CD-ROM drive parameters with hdparm?"
+msgstr "hdparmを使ってCD-ROMドライブのパラメータを最適化しますか?"
+
+#. Type: string
+#. Description
+#: ../cdrom-detect.templates:122
+msgid ""
+"The installer can use hdparm to tune some CD-ROM drive parameters, which may "
+"significantly speed up reading packages from the CD. You can change the "
+"parameters to be used. To disable hdparm, enter an empty parameter list."
+msgstr ""
+"インストーラーはhdparmを使用して、CD-ROMドライブのパラメーターを最適化できま"
+"す。最適化することによって、CDからのパッケージの読み込みが著しく高速化するか"
+"もしれません。使用されるパラメーターを変更できます。hdparmを無効にするには、"
+"空のパラメーターのリストを入力してください。"
diff --git a/debian/po/ka.po b/debian/po/ka.po
index 51e2fbb..c4ea965 100644
--- a/debian/po/ka.po
+++ b/debian/po/ka.po
@@ -299,3 +299,22 @@ msgstr "CD-ROM-ის მოხსნა და ამოღება..."
 #: ../cdrom-detect.templates:20001
 msgid "Detect and mount CD-ROM"
 msgstr "CD-ROM-ის ამოცნობა და ჩამაგრება"
+
+#. Type: string
+#. Description
+#: ../cdrom-detect.templates:122
+msgid "Tune CD-ROM drive parameters with hdparm?"
+msgstr "გსურთ CD-ROM-ის პარამეტრების hdparm-ით ოპტიმიზება?"
+
+#. Type: string
+#. Description
+#: ../cdrom-detect.templates:122
+msgid ""
+"The installer can use hdparm to tune some CD-ROM drive parameters, which may "
+"significantly speed up reading packages from the CD. You can change the "
+"parameters to be used. To disable hdparm, enter an empty parameter list."
+msgstr ""
+"CD-ROM-ის ზოგიერთი პარამეტრის ოპტიმიზებისათვის ინსტალერს hdparm-ის "
+"გამოყენება შეუძლია, რასაც CD-დან პაკეტების კითხვა საგრძნობლად შეუძლია "
+"დააჩქაროს. თქვენ შეგიძლიათ სასურველი პარამეტრების შეცვლა. hdparm-ის "
+"გამოსართავად შეიყვანეთ პარამეტრების ცარიელი სია."
diff --git a/debian/po/kk.po b/debian/po/kk.po
index b4fc945..772bb8a 100644
--- a/debian/po/kk.po
+++ b/debian/po/kk.po
@@ -295,3 +295,22 @@ msgstr "CD-ROM дискіні тіркеуден босатып, шығару...
 #: ../cdrom-detect.templates:20001
 msgid "Detect and mount CD-ROM"
 msgstr "CD-ROM табу және тіркеу"
+
+#. Type: string
+#. Description
+#: ../cdrom-detect.templates:122
+msgid "Tune CD-ROM drive parameters with hdparm?"
+msgstr "CD-ROM параметрлерін hdparm бағдарламасының көмегімен баптау керек пе?"
+
+#. Type: string
+#. Description
+#: ../cdrom-detect.templates:122
+msgid ""
+"The installer can use hdparm to tune some CD-ROM drive parameters, which may "
+"significantly speed up reading packages from the CD. You can change the "
+"parameters to be used. To disable hdparm, enter an empty parameter list."
+msgstr ""
+"Орнатқыш hdparm бағдарламасын CD-ROM құрылғысынң кейбір параметрлерін баптау "
+"үшін қолданыла алады. Осының нәтижесінде CD-дан оқу жылдамдығы арту мүмкін. "
+"Осы баптауларды қолмен де көрсетуге болады. Hdparm бағдарламасын өшіру үшін "
+"параметрлер жолын бос қалдырыңыз."
diff --git a/debian/po/km.po b/debian/po/km.po
index 235e5ed..a5206b2 100644
--- a/debian/po/km.po
+++ b/debian/po/km.po
@@ -277,3 +277,21 @@ msgstr "កំពុង​អាន់ម៉ោន និង ច្រាន​
 #: ../cdrom-detect.templates:20001
 msgid "Detect and mount CD-ROM"
 msgstr "រក និង ម៉ោន​ស៊ីឌីរ៉ូម"
+
+#. Type: string
+#. Description
+#: ../cdrom-detect.templates:122
+msgid "Tune CD-ROM drive parameters with hdparm?"
+msgstr "ដាក់​ប៉ារ៉ាម៉ែត្រ​ដ្រាយ ស៊ីឌីរ៉ូមឲ្យ​ត្រូវគ្នា​ជា​មួយ hdparm ឬ ?"
+
+#. Type: string
+#. Description
+#: ../cdrom-detect.templates:122
+msgid ""
+"The installer can use hdparm to tune some CD-ROM drive parameters, which may "
+"significantly speed up reading packages from the CD. You can change the "
+"parameters to be used. To disable hdparm, enter an empty parameter list."
+msgstr ""
+"កម្មវិធី​ដំឡើង អាច​ប្រើ hdparm ដើម្បី​តម្រូវ​ប៉ារ៉ាម៉ែត្រ​ដ្រាយស៊ីឌីរ៉ូម មួយ​ចំនួន ដែល​នឹង​បង្កើនល្បឿន​ក្នុង​ការ​"
+"អាន​កញ្ចប់​ពី​ស៊ីឌី ។ អ្នក​អាច​ផ្លាស់ប្ដូរ​ប៉ារ៉ាម៉ែត្រ​បាន ដើម្បី​ប្រើ ។ ដើម្បី​បិទ hdparm គឺ​ត្រូវ​បញ្ចូល​នូវ​បញ្ជី​"
+"ប៉ារ៉ាម៉ែត្រ​ទទេ​មួយ ។"
diff --git a/debian/po/kn.po b/debian/po/kn.po
index d27f201..0606518 100644
--- a/debian/po/kn.po
+++ b/debian/po/kn.po
@@ -288,3 +288,18 @@ msgstr "ಸಿ ಡಿ ರೋಮ್ ಅನ್ನು ಆರೋಹಣೆಯಿಂ
 #: ../cdrom-detect.templates:20001
 msgid "Detect and mount CD-ROM"
 msgstr "ಸಿಡಿ-ರಾಮ್ ಪತ್ತೆ ಹಚ್ಚಿ ಹಾಗು ಮೇಲೆರಿಸಿ"
+
+#. Type: string
+#. Description
+#: ../cdrom-detect.templates:122
+msgid "Tune CD-ROM drive parameters with hdparm?"
+msgstr ""
+
+#. Type: string
+#. Description
+#: ../cdrom-detect.templates:122
+msgid ""
+"The installer can use hdparm to tune some CD-ROM drive parameters, which may "
+"significantly speed up reading packages from the CD. You can change the "
+"parameters to be used. To disable hdparm, enter an empty parameter list."
+msgstr ""
diff --git a/debian/po/ko.po b/debian/po/ko.po
index 88fb49b..54aaffb 100644
--- a/debian/po/ko.po
+++ b/debian/po/ko.po
@@ -299,3 +299,22 @@ msgstr "CD-ROM을 마운트 해제하고 뺍니다..."
 #: ../cdrom-detect.templates:20001
 msgid "Detect and mount CD-ROM"
 msgstr "CD-ROM 찾기 및 마운트"
+
+#. Type: string
+#. Description
+#: ../cdrom-detect.templates:122
+msgid "Tune CD-ROM drive parameters with hdparm?"
+msgstr "hdparm을 사용하여 시디롬 드라이브의 파라미터들을 조절할까요?"
+
+#. Type: string
+#. Description
+#: ../cdrom-detect.templates:122
+msgid ""
+"The installer can use hdparm to tune some CD-ROM drive parameters, which may "
+"significantly speed up reading packages from the CD. You can change the "
+"parameters to be used. To disable hdparm, enter an empty parameter list."
+msgstr ""
+"이 설치 프로그램은 시디롬 드라이브의 파라미터 조절을 위해 hdparm을 사용할 수 "
+"있습니다. 이를 통해, 시디로 부터 꾸러미를 읽어오는 속도를 상당히 개선할 수 있"
+"습니다. 사용할 파라미터들을 여러분이 직접 변경할 수 있습니다. hdparm을 사용하"
+"지 않으려면, 비어있는 파라미터 리스트를 입력하세요."
diff --git a/debian/po/ku.po b/debian/po/ku.po
index 4fbab09..ec58a64 100644
--- a/debian/po/ku.po
+++ b/debian/po/ku.po
@@ -290,3 +290,22 @@ msgstr "CD-ROM tê unmountkirin û avêtin..."
 #: ../cdrom-detect.templates:20001
 msgid "Detect and mount CD-ROM"
 msgstr "CD-ROM bibîne û mount bike"
+
+#. Type: string
+#. Description
+#: ../cdrom-detect.templates:122
+msgid "Tune CD-ROM drive parameters with hdparm?"
+msgstr "Bila parametreyên ajogera CD-ROM' ê bi hdparm ê were mîheng kirin?"
+
+#. Type: string
+#. Description
+#: ../cdrom-detect.templates:122
+msgid ""
+"The installer can use hdparm to tune some CD-ROM drive parameters, which may "
+"significantly speed up reading packages from the CD. You can change the "
+"parameters to be used. To disable hdparm, enter an empty parameter list."
+msgstr ""
+"Bernameya sazkirinê, ji bo lezgînkirina xwendina ji pakêtan a ji CD'yê "
+"mîhengkirina hin parametreyên ajokarê CD-ROM'ê, dikare hdparm'ê bi kar bîne. "
+"Tu dikarî parametreyên ku dê bên bikaranîn biguharînî. Ji bo tu hdparm'ê "
+"neçalak bikî, lîsteyeke vala ya parametreyê binivîse."
diff --git a/debian/po/lo.po b/debian/po/lo.po
index afb5cc7..c67068d 100644
--- a/debian/po/lo.po
+++ b/debian/po/lo.po
@@ -275,3 +275,18 @@ msgstr "ກຳລັງເລີກເມາທ ແລະ ດັນແຜ່ນ
 #: ../cdrom-detect.templates:20001
 msgid "Detect and mount CD-ROM"
 msgstr "ກວດຫາ ແລະ ເມົາຊີດີ"
+
+#. Type: string
+#. Description
+#: ../cdrom-detect.templates:122
+msgid "Tune CD-ROM drive parameters with hdparm?"
+msgstr ""
+
+#. Type: string
+#. Description
+#: ../cdrom-detect.templates:122
+msgid ""
+"The installer can use hdparm to tune some CD-ROM drive parameters, which may "
+"significantly speed up reading packages from the CD. You can change the "
+"parameters to be used. To disable hdparm, enter an empty parameter list."
+msgstr ""
diff --git a/debian/po/lt.po b/debian/po/lt.po
index 43d9ca4..0c31e4a 100644
--- a/debian/po/lt.po
+++ b/debian/po/lt.po
@@ -297,3 +297,22 @@ msgstr "CD-ROM laikmenos atjungimas ir išėmimas..."
 #: ../cdrom-detect.templates:20001
 msgid "Detect and mount CD-ROM"
 msgstr "CD-ROM įrenginio aptikimas ir CD prijungimas"
+
+#. Type: string
+#. Description
+#: ../cdrom-detect.templates:122
+msgid "Tune CD-ROM drive parameters with hdparm?"
+msgstr "Ar suderinti CD-ROM įrenginio parametrus su „hdparm“?"
+
+#. Type: string
+#. Description
+#: ../cdrom-detect.templates:122
+msgid ""
+"The installer can use hdparm to tune some CD-ROM drive parameters, which may "
+"significantly speed up reading packages from the CD. You can change the "
+"parameters to be used. To disable hdparm, enter an empty parameter list."
+msgstr ""
+"Diegiklis gali naudoti hdparm CD-ROM irenginio darbo parametrų nustatymui, "
+"kas gali smarkiai pagreitinti paketu skaitymą iš kompaktinio disko. Galite "
+"pasirinkti parametrų nustatymus. Norėdami išjungti hdparm ištrinkite "
+"parametrų eilutę."
diff --git a/debian/po/lv.po b/debian/po/lv.po
index e65c0a9..ea1ad8b 100644
--- a/debian/po/lv.po
+++ b/debian/po/lv.po
@@ -297,3 +297,22 @@ msgstr "Atmontē un izgrūž CD-ROM..."
 #: ../cdrom-detect.templates:20001
 msgid "Detect and mount CD-ROM"
 msgstr "Noteikt un piemontēt CD-ROM"
+
+#. Type: string
+#. Description
+#: ../cdrom-detect.templates:122
+msgid "Tune CD-ROM drive parameters with hdparm?"
+msgstr "Pielāgot CD-ROM dziņa parametrus, izmantojot hdparm?"
+
+#. Type: string
+#. Description
+#: ../cdrom-detect.templates:122
+msgid ""
+"The installer can use hdparm to tune some CD-ROM drive parameters, which may "
+"significantly speed up reading packages from the CD. You can change the "
+"parameters to be used. To disable hdparm, enter an empty parameter list."
+msgstr ""
+"Instalators var lietot hdparm, lai pielāgotu CD-ROM dziņa parametrus. Tas "
+"varētu uzlabot ātrumu, ar kādu tiks nolasītas pakotnes no CD. Jūs varat "
+"mainīt parametrus, kuri tiks lietoti. Lai atslēgtu hdparm lietošanu, "
+"ievadiet tukšu parametru rindu."
diff --git a/debian/po/mk.po b/debian/po/mk.po
index 65f84fb..d692e6c 100644
--- a/debian/po/mk.po
+++ b/debian/po/mk.po
@@ -294,3 +294,22 @@ msgstr "Демонтирање и вадење на CD-ROM..."
 #: ../cdrom-detect.templates:20001
 msgid "Detect and mount CD-ROM"
 msgstr "Детектирање и монтирање CD-ROM"
+
+#. Type: string
+#. Description
+#: ../cdrom-detect.templates:122
+msgid "Tune CD-ROM drive parameters with hdparm?"
+msgstr "Да ги поставам ги параметрите на CD-ROM драјвот со hdparm?"
+
+#. Type: string
+#. Description
+#: ../cdrom-detect.templates:122
+msgid ""
+"The installer can use hdparm to tune some CD-ROM drive parameters, which may "
+"significantly speed up reading packages from the CD. You can change the "
+"parameters to be used. To disable hdparm, enter an empty parameter list."
+msgstr ""
+"Инсталерот може да користи hdparm за да постави некои параметри на CD-ROM "
+"драјвот кои можат значајно да го забрзаат читањето на пакетите од CD-то. "
+"Можете да ги промените параметрите кои ќе се користат. За да го оневозможите "
+"hdparm, не внесувајте ништо во листата со параметри."
diff --git a/debian/po/ml.po b/debian/po/ml.po
index 87c5913..e74e223 100644
--- a/debian/po/ml.po
+++ b/debian/po/ml.po
@@ -296,3 +296,18 @@ msgstr "സിഡി-റോം അണ്‍മൌണ്ട് ചെയ്തു
 #: ../cdrom-detect.templates:20001
 msgid "Detect and mount CD-ROM"
 msgstr "സിഡി-റോം തിരിച്ചറിഞ്ഞു് മൌണ്ട് ചെയ്യുക"
+
+#. Type: string
+#. Description
+#: ../cdrom-detect.templates:122
+msgid "Tune CD-ROM drive parameters with hdparm?"
+msgstr ""
+
+#. Type: string
+#. Description
+#: ../cdrom-detect.templates:122
+msgid ""
+"The installer can use hdparm to tune some CD-ROM drive parameters, which may "
+"significantly speed up reading packages from the CD. You can change the "
+"parameters to be used. To disable hdparm, enter an empty parameter list."
+msgstr ""
diff --git a/debian/po/mr.po b/debian/po/mr.po
index 9149dea..d318b41 100644
--- a/debian/po/mr.po
+++ b/debian/po/mr.po
@@ -286,3 +286,24 @@ msgstr "सीडी-रॉम अनारोहित करून बाह
 #: ../cdrom-detect.templates:20001
 msgid "Detect and mount CD-ROM"
 msgstr "सीडी-रॉम शोधा आणि आरोहित करा."
+
+#. Type: string
+#. Description
+#: ../cdrom-detect.templates:122
+msgid "Tune CD-ROM drive parameters with hdparm?"
+msgstr ""
+"एचडीपीएआरएम(hdparm) ने फक्त वाचनीय स्मृति सघन चकती(सिडी-रॉम) चालकाचे चलित मूल्ये "
+"मिळवायचे का?"
+
+#. Type: string
+#. Description
+#: ../cdrom-detect.templates:122
+msgid ""
+"The installer can use hdparm to tune some CD-ROM drive parameters, which may "
+"significantly speed up reading packages from the CD. You can change the "
+"parameters to be used. To disable hdparm, enter an empty parameter list."
+msgstr ""
+"प्रतिष्ठापक फक्त वाचनीय स्मृति सघन चकती(सिडी-रॉम) चालकाचे काही चलित मूल्ये "
+"मिळविण्यासाठी एचडीपीएआरएम(hdparm) वापरु शकतो, ज्याने सघन चकती वरील पुडके वाचण्याचा "
+"वेग सार्थपणे वाढु शकतो. तुम्ही वापरायची चलित मूल्ये बदलु शकता. एचडीपीएआरएम(hdparm) "
+"निक्रिय करण्यासाठी, रिकामी चलित मूल्य यादीची निविष्टि करा."
diff --git a/debian/po/nb.po b/debian/po/nb.po
index 2013d59..7f3245d 100644
--- a/debian/po/nb.po
+++ b/debian/po/nb.po
@@ -306,3 +306,22 @@ msgstr "Avmonterer og løser ut CD-en ..."
 #: ../cdrom-detect.templates:20001
 msgid "Detect and mount CD-ROM"
 msgstr "Finn og monter CD-en"
+
+#. Type: string
+#. Description
+#: ../cdrom-detect.templates:122
+msgid "Tune CD-ROM drive parameters with hdparm?"
+msgstr "Finstille CD-ROM-parametere med hdparm?"
+
+#. Type: string
+#. Description
+#: ../cdrom-detect.templates:122
+msgid ""
+"The installer can use hdparm to tune some CD-ROM drive parameters, which may "
+"significantly speed up reading packages from the CD. You can change the "
+"parameters to be used. To disable hdparm, enter an empty parameter list."
+msgstr ""
+"Installeringsprogrammet kan bruke hdparm til og finpusse på instillingene "
+"til CD-ROM'en som kan hjelpe på farten under lesing av pakker fra CD'en. Du "
+"kan endre hvilke instillinger som skal bli brukt. For å deaktivere hdparm, "
+"la parameterlisten være tom."
diff --git a/debian/po/ne.po b/debian/po/ne.po
index e378fd5..de42f18 100644
--- a/debian/po/ne.po
+++ b/debian/po/ne.po
@@ -290,3 +290,18 @@ msgstr "सी डी-रोम अनमाउण्ट गरेर बाह
 #: ../cdrom-detect.templates:20001
 msgid "Detect and mount CD-ROM"
 msgstr "सी डी-रोम पत्ता लगाउनुहोस् र माउण्ट गर्नुहोस्"
+
+#. Type: string
+#. Description
+#: ../cdrom-detect.templates:122
+msgid "Tune CD-ROM drive parameters with hdparm?"
+msgstr ""
+
+#. Type: string
+#. Description
+#: ../cdrom-detect.templates:122
+msgid ""
+"The installer can use hdparm to tune some CD-ROM drive parameters, which may "
+"significantly speed up reading packages from the CD. You can change the "
+"parameters to be used. To disable hdparm, enter an empty parameter list."
+msgstr ""
diff --git a/debian/po/nl.po b/debian/po/nl.po
index 783bd62..6a76232 100644
--- a/debian/po/nl.po
+++ b/debian/po/nl.po
@@ -313,3 +313,22 @@ msgstr "CD wordt losgekoppeld en uitgeworpen..."
 #: ../cdrom-detect.templates:20001
 msgid "Detect and mount CD-ROM"
 msgstr "Automatische herkenning en aankoppeling van de CD"
+
+#. Type: string
+#. Description
+#: ../cdrom-detect.templates:122
+msgid "Tune CD-ROM drive parameters with hdparm?"
+msgstr "Parameters van het CD-ROM-station instellen met hdparm?"
+
+#. Type: string
+#. Description
+#: ../cdrom-detect.templates:122
+msgid ""
+"The installer can use hdparm to tune some CD-ROM drive parameters, which may "
+"significantly speed up reading packages from the CD. You can change the "
+"parameters to be used. To disable hdparm, enter an empty parameter list."
+msgstr ""
+"Het installatieprogramma kan hdparm gebruiken om enkele parameters voor het "
+"CD-ROM-station in te stellen die het lezen van pakketten van de CD "
+"aanzienlijk kunnen versnellen. U kunt de parameters die gebruikt worden "
+"wijzigen. Om hdparm uit te schakelen, laat u de parameterlijst leeg."
diff --git a/debian/po/nn.po b/debian/po/nn.po
index b076351..3dce958 100644
--- a/debian/po/nn.po
+++ b/debian/po/nn.po
@@ -295,3 +295,22 @@ msgstr "Avmonterer og løyser ut CD …"
 #: ../cdrom-detect.templates:20001
 msgid "Detect and mount CD-ROM"
 msgstr "Finn og monter CDROM"
+
+#. Type: string
+#. Description
+#: ../cdrom-detect.templates:122
+msgid "Tune CD-ROM drive parameters with hdparm?"
+msgstr "Vil du finstille grenseverdiane for CD-ROM-stasjonen med hdparm?"
+
+#. Type: string
+#. Description
+#: ../cdrom-detect.templates:122
+msgid ""
+"The installer can use hdparm to tune some CD-ROM drive parameters, which may "
+"significantly speed up reading packages from the CD. You can change the "
+"parameters to be used. To disable hdparm, enter an empty parameter list."
+msgstr ""
+"Installeringsprogrammet kan nytte hdparm til å finstille grenseverdiar på CD-"
+"ROM-stasjonen. Dette kan auke farten under lesing av pakkar frå CD'en. Du "
+"kan endre på desse verdiane her. Om du ikkje ønskjer å nytta hdparm let du "
+"parameterlista stå tom."
diff --git a/debian/po/pa.po b/debian/po/pa.po
index ff8080f..cb4edbe 100644
--- a/debian/po/pa.po
+++ b/debian/po/pa.po
@@ -290,3 +290,18 @@ msgstr "CD-ROM ਅਣ-ਮਾਊਂਟ ਅਤੇ ਬਾਹਰ ਕੱਢੀ ਜਾ
 #: ../cdrom-detect.templates:20001
 msgid "Detect and mount CD-ROM"
 msgstr "CD-ROM ਖੋਜ ਅਤੇ ਮਾਊਂਟ ਕੀਤਾ ਜਾ ਰਿਹਾ ਹੈ"
+
+#. Type: string
+#. Description
+#: ../cdrom-detect.templates:122
+msgid "Tune CD-ROM drive parameters with hdparm?"
+msgstr ""
+
+#. Type: string
+#. Description
+#: ../cdrom-detect.templates:122
+msgid ""
+"The installer can use hdparm to tune some CD-ROM drive parameters, which may "
+"significantly speed up reading packages from the CD. You can change the "
+"parameters to be used. To disable hdparm, enter an empty parameter list."
+msgstr ""
diff --git a/debian/po/pl.po b/debian/po/pl.po
index 1f9b6d6..63992ac 100644
--- a/debian/po/pl.po
+++ b/debian/po/pl.po
@@ -315,3 +315,22 @@ msgstr "Odmontowywanie i wysuwanie CD-ROM-u..."
 #: ../cdrom-detect.templates:20001
 msgid "Detect and mount CD-ROM"
 msgstr "Wykryj urządzenia CD-ROM i zamontuj płytę CD"
+
+#. Type: string
+#. Description
+#: ../cdrom-detect.templates:122
+msgid "Tune CD-ROM drive parameters with hdparm?"
+msgstr "Dostroić parametry napędu CD-ROM używając hdparm?"
+
+#. Type: string
+#. Description
+#: ../cdrom-detect.templates:122
+msgid ""
+"The installer can use hdparm to tune some CD-ROM drive parameters, which may "
+"significantly speed up reading packages from the CD. You can change the "
+"parameters to be used. To disable hdparm, enter an empty parameter list."
+msgstr ""
+"Instalator może użyć hdparma aby dostroić parametry napędu CD-ROM, co może "
+"znaczaco podnieść prędkość odczytywania pakietów z płyty CD. Możesz zmienić "
+"parametry, które będą użyte. Aby nie używać hdparm, podaj pustą listę "
+"parametrów."
diff --git a/debian/po/pt.po b/debian/po/pt.po
index 6b1982f..12d2585 100644
--- a/debian/po/pt.po
+++ b/debian/po/pt.po
@@ -303,3 +303,22 @@ msgstr "Desmontar e ejectar o CD-ROM..."
 #: ../cdrom-detect.templates:20001
 msgid "Detect and mount CD-ROM"
 msgstr "Detectar e montar o CD-ROM"
+
+#. Type: string
+#. Description
+#: ../cdrom-detect.templates:122
+msgid "Tune CD-ROM drive parameters with hdparm?"
+msgstr "Configurar parâmetros do CD-ROM com o hdparm?"
+
+#. Type: string
+#. Description
+#: ../cdrom-detect.templates:122
+msgid ""
+"The installer can use hdparm to tune some CD-ROM drive parameters, which may "
+"significantly speed up reading packages from the CD. You can change the "
+"parameters to be used. To disable hdparm, enter an empty parameter list."
+msgstr ""
+"O instalador pode utilizar o hdparm para configurar alguns parâmetros do CD-"
+"ROM, p que pode melhorar a leitura dos pacotes do CD significativamente. "
+"Pode alterar os parâmetros a serem usados. Para desactivar o hdparm "
+"introduza uma lista de parâmetros vazia."
diff --git a/debian/po/pt_BR.po b/debian/po/pt_BR.po
index abab89c..326fc8b 100644
--- a/debian/po/pt_BR.po
+++ b/debian/po/pt_BR.po
@@ -303,3 +303,22 @@ msgstr "Desmontando e ejetando o CD-ROM..."
 #: ../cdrom-detect.templates:20001
 msgid "Detect and mount CD-ROM"
 msgstr "Detectar e montar o CD-ROM"
+
+#. Type: string
+#. Description
+#: ../cdrom-detect.templates:122
+msgid "Tune CD-ROM drive parameters with hdparm?"
+msgstr "Ajustar parâmetros do CD-ROM com hdparm?"
+
+#. Type: string
+#. Description
+#: ../cdrom-detect.templates:122
+msgid ""
+"The installer can use hdparm to tune some CD-ROM drive parameters, which may "
+"significantly speed up reading packages from the CD. You can change the "
+"parameters to be used. To disable hdparm, enter an empty parameter list."
+msgstr ""
+"O instalador pode usar o hdparm para ajustar alguns parâmetros do CD-ROM, os "
+"quais podem melhorar o desempenho do dispositivo ao ler pacotes do CD. Você "
+"pode alterar os parâmetros que serão usados. Para desabilitar o hdparm, "
+"deixe a lista em branco."
diff --git a/debian/po/ro.po b/debian/po/ro.po
index 48a634c..c22ebff 100644
--- a/debian/po/ro.po
+++ b/debian/po/ro.po
@@ -309,3 +309,22 @@ msgstr "Se demontează și se scoate CD-ul..."
 #: ../cdrom-detect.templates:20001
 msgid "Detect and mount CD-ROM"
 msgstr "Detectează și montează CD-ul"
+
+#. Type: string
+#. Description
+#: ../cdrom-detect.templates:122
+msgid "Tune CD-ROM drive parameters with hdparm?"
+msgstr "Doriți să reglați parametrii CD-ROM-ului cu hdparm?"
+
+#. Type: string
+#. Description
+#: ../cdrom-detect.templates:122
+msgid ""
+"The installer can use hdparm to tune some CD-ROM drive parameters, which may "
+"significantly speed up reading packages from the CD. You can change the "
+"parameters to be used. To disable hdparm, enter an empty parameter list."
+msgstr ""
+"Acest instaler poate folosi hdparm să regleze unii parametri ai CD-ROM-ului, "
+"ceea ce poate să mărească in mod semnificativ viteza de citire a pachetelor "
+"de pe CD. Puteți să schimbați parametri folosiți. Pentru a scoate din uz "
+"hdparm, introduceți o listă fără parametri."
diff --git a/debian/po/ru.po b/debian/po/ru.po
index 820a8d9..584a436 100644
--- a/debian/po/ru.po
+++ b/debian/po/ru.po
@@ -305,3 +305,22 @@ msgstr "Размонтирование и извлечение компакт-д
 #: ../cdrom-detect.templates:20001
 msgid "Detect and mount CD-ROM"
 msgstr "Поиск и монтирование CD-ROM"
+
+#. Type: string
+#. Description
+#: ../cdrom-detect.templates:122
+msgid "Tune CD-ROM drive parameters with hdparm?"
+msgstr "Настроить параметры CD-ROM с помощью программы hdparm?"
+
+#. Type: string
+#. Description
+#: ../cdrom-detect.templates:122
+msgid ""
+"The installer can use hdparm to tune some CD-ROM drive parameters, which may "
+"significantly speed up reading packages from the CD. You can change the "
+"parameters to be used. To disable hdparm, enter an empty parameter list."
+msgstr ""
+"Установщик может использовать программу hdparm для настройки некоторых "
+"параметров привода CD-ROM. Настройка может значительно увеличить скорость "
+"чтения установочных пакетов с CD. Вы также можете сами изменить используемые "
+"параметры. Для отключения hdparm введите пустую строку параметров."
diff --git a/debian/po/se.po b/debian/po/se.po
index 066339c..3491ff5 100644
--- a/debian/po/se.po
+++ b/debian/po/se.po
@@ -267,3 +267,18 @@ msgstr "Galgamin ja bálkesteamen CD …"
 #: ../cdrom-detect.templates:20001
 msgid "Detect and mount CD-ROM"
 msgstr "Áicca ja čana CD-ROM"
+
+#. Type: string
+#. Description
+#: ../cdrom-detect.templates:122
+msgid "Tune CD-ROM drive parameters with hdparm?"
+msgstr ""
+
+#. Type: string
+#. Description
+#: ../cdrom-detect.templates:122
+msgid ""
+"The installer can use hdparm to tune some CD-ROM drive parameters, which may "
+"significantly speed up reading packages from the CD. You can change the "
+"parameters to be used. To disable hdparm, enter an empty parameter list."
+msgstr ""
diff --git a/debian/po/si.po b/debian/po/si.po
index 3a1d483..82d186e 100644
--- a/debian/po/si.po
+++ b/debian/po/si.po
@@ -283,3 +283,18 @@ msgstr "CD-ROM අස්ථාපනය හා පිට කරමින්..."
 #: ../cdrom-detect.templates:20001
 msgid "Detect and mount CD-ROM"
 msgstr "CD-ROM හඳුනාගෙන රඳවන්න"
+
+#. Type: string
+#. Description
+#: ../cdrom-detect.templates:122
+msgid "Tune CD-ROM drive parameters with hdparm?"
+msgstr ""
+
+#. Type: string
+#. Description
+#: ../cdrom-detect.templates:122
+msgid ""
+"The installer can use hdparm to tune some CD-ROM drive parameters, which may "
+"significantly speed up reading packages from the CD. You can change the "
+"parameters to be used. To disable hdparm, enter an empty parameter list."
+msgstr ""
diff --git a/debian/po/sk.po b/debian/po/sk.po
index fcbfb40..75b131f 100644
--- a/debian/po/sk.po
+++ b/debian/po/sk.po
@@ -301,3 +301,21 @@ msgstr "CD-ROM sa odpája a vysúva..."
 #: ../cdrom-detect.templates:20001
 msgid "Detect and mount CD-ROM"
 msgstr "Rozpoznanie a pripojenie CD-ROM"
+
+#. Type: string
+#. Description
+#: ../cdrom-detect.templates:122
+msgid "Tune CD-ROM drive parameters with hdparm?"
+msgstr "Vyladiť parametre CD-ROM mechaniky programom hdparm?"
+
+#. Type: string
+#. Description
+#: ../cdrom-detect.templates:122
+msgid ""
+"The installer can use hdparm to tune some CD-ROM drive parameters, which may "
+"significantly speed up reading packages from the CD. You can change the "
+"parameters to be used. To disable hdparm, enter an empty parameter list."
+msgstr ""
+"Inštalátor môže použiť program hdparm aby vyladil parametre CD-ROM "
+"mechaniky. To môže zrýchliť načítavanie balíkov z CD. Teraz môžete zmeniť "
+"použité parametre. Pokiaľ nič nezadáte, hdparm sa nepoužije."
diff --git a/debian/po/sl.po b/debian/po/sl.po
index 88b63cd..9bfa713 100644
--- a/debian/po/sl.po
+++ b/debian/po/sl.po
@@ -307,3 +307,22 @@ msgstr "Odklapljanje in odstranitev CD-ROM ..."
 #: ../cdrom-detect.templates:20001
 msgid "Detect and mount CD-ROM"
 msgstr "Zaznaj in priklopi CD-ROM"
+
+#. Type: string
+#. Description
+#: ../cdrom-detect.templates:122
+msgid "Tune CD-ROM drive parameters with hdparm?"
+msgstr "Ali želite optimizirati nastavitve CD-ROM-a s hdparm?"
+
+#. Type: string
+#. Description
+#: ../cdrom-detect.templates:122
+msgid ""
+"The installer can use hdparm to tune some CD-ROM drive parameters, which may "
+"significantly speed up reading packages from the CD. You can change the "
+"parameters to be used. To disable hdparm, enter an empty parameter list."
+msgstr ""
+"Namestilnik lahko uporabi hdparm za optimizacijo nastavitev CD-ROM-a, kar "
+"lahko precej pospeši branje paketov z njega. Nastavitve je mogoče ročno "
+"spremeniti. V kolikor programa hdparm ne želite uporabljati, ne vpišite "
+"parametrov."
diff --git a/debian/po/sq.po b/debian/po/sq.po
index ee83d4c..dcc24ee 100644
--- a/debian/po/sq.po
+++ b/debian/po/sq.po
@@ -288,3 +288,22 @@ msgstr "Duke çmontuar dhe nxjerrë CD-ROM-in ..."
 #: ../cdrom-detect.templates:20001
 msgid "Detect and mount CD-ROM"
 msgstr "Gjej dhe monto CD-ROM"
+
+#. Type: string
+#. Description
+#: ../cdrom-detect.templates:122
+msgid "Tune CD-ROM drive parameters with hdparm?"
+msgstr "Të rregulloj parametrat e draivit CD-ROM me hdparm?"
+
+#. Type: string
+#. Description
+#: ../cdrom-detect.templates:122
+msgid ""
+"The installer can use hdparm to tune some CD-ROM drive parameters, which may "
+"significantly speed up reading packages from the CD. You can change the "
+"parameters to be used. To disable hdparm, enter an empty parameter list."
+msgstr ""
+"Instaluesi mund të përdorë hdparm për të rregulluar disa nga parametrat e CD-"
+"ROM, gjë që mund të shpejtojë në mënyrë domethënëse leximin e paketave nga "
+"disku. Ju mund t'i ndryshoni parametrat që do të përdoren. Për të "
+"çaktivizuar hdparm, futni një listë të zbrazët të parametrave."
diff --git a/debian/po/sr.po b/debian/po/sr.po
index 51d06dc..fbfd77b 100644
--- a/debian/po/sr.po
+++ b/debian/po/sr.po
@@ -299,3 +299,22 @@ msgstr "Демонтирање и избацивање CD-ROM-а..."
 #: ../cdrom-detect.templates:20001
 msgid "Detect and mount CD-ROM"
 msgstr "Пронађи и монтирај CD-ROM"
+
+#. Type: string
+#. Description
+#: ../cdrom-detect.templates:122
+msgid "Tune CD-ROM drive parameters with hdparm?"
+msgstr "Подесити CD-ROM параметре са hdparm-ом?"
+
+#. Type: string
+#. Description
+#: ../cdrom-detect.templates:122
+msgid ""
+"The installer can use hdparm to tune some CD-ROM drive parameters, which may "
+"significantly speed up reading packages from the CD. You can change the "
+"parameters to be used. To disable hdparm, enter an empty parameter list."
+msgstr ""
+"Инсталер може користити hdparm како би подесио параметре CD-ROM уређаја, што "
+"би могло значајно убрзати читање пакета са CD-а. Можете променити параметре "
+"које ћете користити. Како бисте онемогућили hdparm, оставите листу "
+"параметрара празном."
diff --git a/debian/po/sv.po b/debian/po/sv.po
index 9deee78..21d2121 100644
--- a/debian/po/sv.po
+++ b/debian/po/sv.po
@@ -299,3 +299,22 @@ msgstr "Avmonterar och matar ut cd-skivan ..."
 #: ../cdrom-detect.templates:20001
 msgid "Detect and mount CD-ROM"
 msgstr "Identifiera och montera cd-rom"
+
+#. Type: string
+#. Description
+#: ../cdrom-detect.templates:122
+msgid "Tune CD-ROM drive parameters with hdparm?"
+msgstr "Finställ cd-rom-enhetens parametrar med hdparm?"
+
+#. Type: string
+#. Description
+#: ../cdrom-detect.templates:122
+msgid ""
+"The installer can use hdparm to tune some CD-ROM drive parameters, which may "
+"significantly speed up reading packages from the CD. You can change the "
+"parameters to be used. To disable hdparm, enter an empty parameter list."
+msgstr ""
+"Installationen kan använda hdparm för att finställa några av cd-rom-enhetens "
+"parametrar, vilket drastiskt kan öka hastigheten på läsning av paket från "
+"cdn. Du kan ändra parametrarna som ska användas. För att avaktivera hdparm, "
+"skriv in en tom parameter-lista."
diff --git a/debian/po/ta.po b/debian/po/ta.po
index ce6c655..f21a125 100644
--- a/debian/po/ta.po
+++ b/debian/po/ta.po
@@ -293,3 +293,21 @@ msgstr "குறுந்தட்டு படிநினைவகம் வ
 #: ../cdrom-detect.templates:20001
 msgid "Detect and mount CD-ROM"
 msgstr "குறுந்தட்டை கண்டறிந்து ஏற்றவும்"
+
+#. Type: string
+#. Description
+#: ../cdrom-detect.templates:122
+msgid "Tune CD-ROM drive parameters with hdparm?"
+msgstr "குறுந்தட்டு இயக்கியை ஹெச்டிபார்ம் (hdparm) அளபுருக்களால் அமைக்கலாமா?"
+
+#. Type: string
+#. Description
+#: ../cdrom-detect.templates:122
+msgid ""
+"The installer can use hdparm to tune some CD-ROM drive parameters, which may "
+"significantly speed up reading packages from the CD. You can change the "
+"parameters to be used. To disable hdparm, enter an empty parameter list."
+msgstr ""
+"நிறுவி ஹெச்டிபார்ம் (hdparm) ஆல் குறுந்தட்டு இயக்கி அளபுருக்களை அமைக்க இயலும். இது "
+"குறுந் தட்டிலிருந்து பொதிகளை விரைவில் படிக்க உதவும். நீங்கள் இயக்கி அளபுருக்களை மாற்றி "
+"அமைக்க முடியும். ஹெச்டிபார்ம் ஐ செயல் நீக்க, காலி அளபுரு பட்டியலிலை உள்ளிடுக."
diff --git a/debian/po/te.po b/debian/po/te.po
index c5ebe98..757ffee 100644
--- a/debian/po/te.po
+++ b/debian/po/te.po
@@ -283,3 +283,18 @@ msgstr "CD-ROM అనుసంధానాన్ని తొలగించి,
 #: ../cdrom-detect.templates:20001
 msgid "Detect and mount CD-ROM"
 msgstr "సీడీ-రామ్ ని కనుగొని మౌంట్ చెయ్యి"
+
+#. Type: string
+#. Description
+#: ../cdrom-detect.templates:122
+msgid "Tune CD-ROM drive parameters with hdparm?"
+msgstr ""
+
+#. Type: string
+#. Description
+#: ../cdrom-detect.templates:122
+msgid ""
+"The installer can use hdparm to tune some CD-ROM drive parameters, which may "
+"significantly speed up reading packages from the CD. You can change the "
+"parameters to be used. To disable hdparm, enter an empty parameter list."
+msgstr ""
diff --git a/debian/po/templates.pot b/debian/po/templates.pot
index 46abc2b..46c0af9 100644
--- a/debian/po/templates.pot
+++ b/debian/po/templates.pot
@@ -252,3 +252,18 @@ msgstr ""
 #: ../cdrom-detect.templates:20001
 msgid "Detect and mount CD-ROM"
 msgstr ""
+
+#. Type: string
+#. Description
+#: ../cdrom-detect.templates:122
+msgid "Tune CD-ROM drive parameters with hdparm?"
+msgstr ""
+
+#. Type: string
+#. Description
+#: ../cdrom-detect.templates:122
+msgid ""
+"The installer can use hdparm to tune some CD-ROM drive parameters, which may "
+"significantly speed up reading packages from the CD. You can change the "
+"parameters to be used. To disable hdparm, enter an empty parameter list."
+msgstr ""
diff --git a/debian/po/tg.po b/debian/po/tg.po
index ffc3f0d..641a05c 100644
--- a/debian/po/tg.po
+++ b/debian/po/tg.po
@@ -290,3 +290,18 @@ msgstr "Ҷудокунӣ ва барориши CD-ROM..."
 #: ../cdrom-detect.templates:20001
 msgid "Detect and mount CD-ROM"
 msgstr "Муайян ва васл кардани CD-ROM"
+
+#. Type: string
+#. Description
+#: ../cdrom-detect.templates:122
+msgid "Tune CD-ROM drive parameters with hdparm?"
+msgstr ""
+
+#. Type: string
+#. Description
+#: ../cdrom-detect.templates:122
+msgid ""
+"The installer can use hdparm to tune some CD-ROM drive parameters, which may "
+"significantly speed up reading packages from the CD. You can change the "
+"parameters to be used. To disable hdparm, enter an empty parameter list."
+msgstr ""
diff --git a/debian/po/th.po b/debian/po/th.po
index 8fd0017..f601992 100644
--- a/debian/po/th.po
+++ b/debian/po/th.po
@@ -289,3 +289,21 @@ msgstr "กำลังเลิกเมานท์และดันแผ่
 #: ../cdrom-detect.templates:20001
 msgid "Detect and mount CD-ROM"
 msgstr "ตรวจหาและเมานท์ซีดีรอม"
+
+#. Type: string
+#. Description
+#: ../cdrom-detect.templates:122
+msgid "Tune CD-ROM drive parameters with hdparm?"
+msgstr "ปรับแต่งค่าของเครื่องเล่นซีดีรอมด้วยโปรแกรม hdparm?"
+
+#. Type: string
+#. Description
+#: ../cdrom-detect.templates:122
+msgid ""
+"The installer can use hdparm to tune some CD-ROM drive parameters, which may "
+"significantly speed up reading packages from the CD. You can change the "
+"parameters to be used. To disable hdparm, enter an empty parameter list."
+msgstr ""
+"โปรแกรมติดตั้งสามารถใช้โปรแกรม hdparm ปรับแต่งค่าของเครื่องเล่นซีดีรอม "
+"ซึ่งอาจจะทำให้สามารถอ่นข้อมูลจากซีดีได้เร็วขึ้น ท่านสามารถเปลี่ยนค่าที่จะใช้ได้. "
+"ถ้าไม่ต้องการใช้โปรแกรม hdparm กรุณาใส่ค่าเปล่า"
diff --git a/debian/po/tl.po b/debian/po/tl.po
index 25634fe..5869805 100644
--- a/debian/po/tl.po
+++ b/debian/po/tl.po
@@ -297,3 +297,18 @@ msgstr "Ina-unmount at iluluwa ang CD-ROM..."
 #: ../cdrom-detect.templates:20001
 msgid "Detect and mount CD-ROM"
 msgstr "Hanapin at mag-mount ng CD-ROM"
+
+#. Type: string
+#. Description
+#: ../cdrom-detect.templates:122
+msgid "Tune CD-ROM drive parameters with hdparm?"
+msgstr "Nais mo bang isaayos ang parameters ng CD-ROM gamit ang hdparm?"
+
+#. Type: string
+#. Description
+#: ../cdrom-detect.templates:122
+msgid ""
+"The installer can use hdparm to tune some CD-ROM drive parameters, which may "
+"significantly speed up reading packages from the CD. You can change the "
+"parameters to be used. To disable hdparm, enter an empty parameter list."
+msgstr ""
diff --git a/debian/po/tr.po b/debian/po/tr.po
index 6f56701..045d2bc 100644
--- a/debian/po/tr.po
+++ b/debian/po/tr.po
@@ -306,3 +306,22 @@ msgstr "CD ayrılıyor ve çıkarılıyor..."
 #: ../cdrom-detect.templates:20001
 msgid "Detect and mount CD-ROM"
 msgstr "CD-ROM'u algıla ve bağla"
+
+#. Type: string
+#. Description
+#: ../cdrom-detect.templates:122
+msgid "Tune CD-ROM drive parameters with hdparm?"
+msgstr "CD-ROM sürücü parametreleri hdparm ile ayarlansın mı?"
+
+#. Type: string
+#. Description
+#: ../cdrom-detect.templates:122
+msgid ""
+"The installer can use hdparm to tune some CD-ROM drive parameters, which may "
+"significantly speed up reading packages from the CD. You can change the "
+"parameters to be used. To disable hdparm, enter an empty parameter list."
+msgstr ""
+"Kurulum programı, paketleri CD'den okumayı önemli ölçüde hızlandırabilecek "
+"olan bazı CD-ROM sürücü parametrelerini ayarlamak için, hdparm'ı "
+"kullanabilir. Kullanılacak olan parametreleri değiştirebilirsiniz. hdparm'ı "
+"devre dışı bırakmak için, boş bir parametre listesi girin."
diff --git a/debian/po/ug.po b/debian/po/ug.po
index 78e0e82..63054d8 100644
--- a/debian/po/ug.po
+++ b/debian/po/ug.po
@@ -291,3 +291,22 @@ msgstr "CD-ROM نى ئېگەرسىزلەپ چىقىرىۋاتىدۇ…"
 #: ../cdrom-detect.templates:20001
 msgid "Detect and mount CD-ROM"
 msgstr "CD-ROM نى تەكشۈرۈپ ئېگەرلە"
+
+#. Type: string
+#. Description
+#: ../cdrom-detect.templates:122
+msgid "Tune CD-ROM drive parameters with hdparm?"
+msgstr "hdparm قورالىنى ئىشلىتىپ CD-ROM قوزغاتقۇچ پارامېتىرىنى تەڭشەمسىز؟"
+
+#. Type: string
+#. Description
+#: ../cdrom-detect.templates:122
+msgid ""
+"The installer can use hdparm to tune some CD-ROM drive parameters, which may "
+"significantly speed up reading packages from the CD. You can change the "
+"parameters to be used. To disable hdparm, enter an empty parameter list."
+msgstr ""
+"ئورنىتىش پروگراممىسى hdparm نى ئىشلىتىپ CD-ROM قوزغاتقۇچنىڭ بەزى "
+"پارامېتىرلىرىنى تەڭشىيەلەيدۇ، بۇنداق بولغاندا CD-ROM نىڭ ئوقۇش سۈرئىتى "
+"كۆرۈنەرلىك ئۆسىدۇ. ئىشلىتىۋاتقان پارامېتىرنى ئۆزگەرتسىڭىز بولىدۇ. "
+"پارامېتىرلار بوش قالدۇرۇلسا hdparm ئىشلىتىش چەكلىنىدۇ."
diff --git a/debian/po/uk.po b/debian/po/uk.po
index d2c19b9..9f84cb6 100644
--- a/debian/po/uk.po
+++ b/debian/po/uk.po
@@ -304,3 +304,21 @@ msgstr "Розмонтування та виведення CD-ROM..."
 #: ../cdrom-detect.templates:20001
 msgid "Detect and mount CD-ROM"
 msgstr "Знайти та змонтувати CD-ROM"
+
+#. Type: string
+#. Description
+#: ../cdrom-detect.templates:122
+msgid "Tune CD-ROM drive parameters with hdparm?"
+msgstr "Налаштувати параметри CD-ROM за допомогою hdparm?"
+
+#. Type: string
+#. Description
+#: ../cdrom-detect.templates:122
+msgid ""
+"The installer can use hdparm to tune some CD-ROM drive parameters, which may "
+"significantly speed up reading packages from the CD. You can change the "
+"parameters to be used. To disable hdparm, enter an empty parameter list."
+msgstr ""
+"Програма встановлення може налаштувати CD-ROM за допомою hdparm. Це може "
+"значно прискорити зчитування пакунків з  CD. Ви може змінювати налаштування. "
+"Для відключення hdparm, введіть порожній перелік параметрів."
diff --git a/debian/po/vi.po b/debian/po/vi.po
index 7269c26..48e2a0d 100644
--- a/debian/po/vi.po
+++ b/debian/po/vi.po
@@ -295,3 +295,22 @@ msgstr "Đang tháo lắp và đẩy ra đĩa CD-ROM..."
 #: ../cdrom-detect.templates:20001
 msgid "Detect and mount CD-ROM"
 msgstr "Dò tìm và lắp đĩa CD-ROM"
+
+#. Type: string
+#. Description
+#: ../cdrom-detect.templates:122
+msgid "Tune CD-ROM drive parameters with hdparm?"
+msgstr "Chỉnh thông số của ổ đĩa CD-ROM với hdparm?"
+
+#. Type: string
+#. Description
+#: ../cdrom-detect.templates:122
+msgid ""
+"The installer can use hdparm to tune some CD-ROM drive parameters, which may "
+"significantly speed up reading packages from the CD. You can change the "
+"parameters to be used. To disable hdparm, enter an empty parameter list."
+msgstr ""
+"Chương trình cài đặt có thể dùng hdparm để chỉnh một vài thông số của ổ đĩa "
+"CD-ROM, mà nó có thể tăng tốc việc đọc các gói từ CCD một cách đáng kể. Bạn "
+"có thể thay đổi các thông số được sử dụng. Để vô hiệu hóa hdparm, hãy nhập "
+"vào một danh sách thông số rỗng."
diff --git a/debian/po/zh_CN.po b/debian/po/zh_CN.po
index 3d2a1a7..3192f3e 100644
--- a/debian/po/zh_CN.po
+++ b/debian/po/zh_CN.po
@@ -295,3 +295,20 @@ msgstr "卸载并弹出 CD-ROM..."
 #: ../cdrom-detect.templates:20001
 msgid "Detect and mount CD-ROM"
 msgstr "探测并挂载光盘"
+
+#. Type: string
+#. Description
+#: ../cdrom-detect.templates:122
+msgid "Tune CD-ROM drive parameters with hdparm?"
+msgstr "用 hdparm 工具调试光驱的参数?"
+
+#. Type: string
+#. Description
+#: ../cdrom-detect.templates:122
+msgid ""
+"The installer can use hdparm to tune some CD-ROM drive parameters, which may "
+"significantly speed up reading packages from the CD. You can change the "
+"parameters to be used. To disable hdparm, enter an empty parameter list."
+msgstr ""
+"安装程序可以使用 hdparm 来调整 CD-ROM 的一些参数,这样可能会显著的提高光驱的"
+"读取速度。您可以更改使用的参数。输入空白的参数列表以禁用 hdparm。"
diff --git a/debian/po/zh_TW.po b/debian/po/zh_TW.po
index bc42cd8..9da113e 100644
--- a/debian/po/zh_TW.po
+++ b/debian/po/zh_TW.po
@@ -295,3 +295,21 @@ msgstr "正在卸載並退出光碟片……"
 #: ../cdrom-detect.templates:20001
 msgid "Detect and mount CD-ROM"
 msgstr "偵測並掛載光碟片"
+
+#. Type: string
+#. Description
+#: ../cdrom-detect.templates:122
+msgid "Tune CD-ROM drive parameters with hdparm?"
+msgstr "是否根據 hdparm 程式以微調 CD-ROM 驅動器的參數設定?"
+
+#. Type: string
+#. Description
+#: ../cdrom-detect.templates:122
+msgid ""
+"The installer can use hdparm to tune some CD-ROM drive parameters, which may "
+"significantly speed up reading packages from the CD. You can change the "
+"parameters to be used. To disable hdparm, enter an empty parameter list."
+msgstr ""
+"本安裝程式可以利用 hdparm 程式以進行微調 CD-ROM 驅動器的參數設定,由此可以加"
+"速讀取 CD 中的套件。 您可以自行設定以下參數。 如果您不要執行 hdparm 程式,請"
+"在以下參數列表中留白。"
-- 
2.7.4

From 44dc46c133fa5e87d27eeef4c936e44cb886602b Mon Sep 17 00:00:00 2001
From: Balint Reczey <balint.reczey@canonical.com>
Date: Wed, 26 Apr 2017 21:07:42 +0200
Subject: [PATCH 6/7] Show Ubuntu name on Ubuntu

Build depend on dpkg-dev (>= 1.15.1) and patch to do so.
---
 debian/control                        |  4 +++-
 debian/patches/ubuntu-installer.patch | 39 +++++++++++++++++++++++++++++++++++
 debian/rules                          | 14 +++++++++++++
 3 files changed, 56 insertions(+), 1 deletion(-)
 create mode 100644 debian/patches/ubuntu-installer.patch

diff --git a/debian/control b/debian/control
index d976102..9f9fa12 100644
--- a/debian/control
+++ b/debian/control
@@ -4,7 +4,9 @@ Priority: optional
 Maintainer: Debian Install System Team <debian-boot@lists.debian.org>
 Uploaders: Christian Perrier <bubulle@debian.org>
 Build-Depends: debhelper (>= 9)
-Build-Depends-Indep: dpkg-dev (>= 1.7.0), po-debconf (>= 0.5.0)
+Build-Depends-Indep: dpkg-dev (>= 1.15.1),
+                     patch,
+                     po-debconf (>= 0.5.0)
 Vcs-Browser: https://anonscm.debian.org/cgit/d-i/cdrom-detect.git
 Vcs-Git: https://anonscm.debian.org/git/d-i/cdrom-detect.git
 
diff --git a/debian/patches/ubuntu-installer.patch b/debian/patches/ubuntu-installer.patch
new file mode 100644
index 0000000..391b34b
--- /dev/null
+++ b/debian/patches/ubuntu-installer.patch
@@ -0,0 +1,39 @@
+diff --git a/debian/cdrom-detect.postinst b/debian/cdrom-detect.postinst
+index 0fbba9c..d5fea7c 100755
+--- a/debian/cdrom-detect.postinst
++++ b/debian/cdrom-detect.postinst
+@@ -28,7 +28,7 @@ try_mount() {
+ 			db_set cdrom-detect/cdrom_fs $type
+ 			ret=0
+ 		else
+-			log "The CD in $device is not a Debian CD!"
++			log "The CD in $device is not an Ubuntu CD!"
+ 			umount /cdrom 2>/dev/null || true
+ 			WRONG=1
+ 		fi
+@@ -94,7 +94,7 @@ fi
+ 
+ hw-detect cdrom-detect/detect_progress_title || true
+ 
+-log "Searching for Debian installation media..."
++log "Searching for Ubuntu installation media..."
+ 
+ mkdir /cdrom 2>/dev/null || true
+ 
+diff --git a/debian/cdrom-detect.templates b/debian/cdrom-detect.templates
+index 8da25d3..fe970dd 100644
+--- a/debian/cdrom-detect.templates
++++ b/debian/cdrom-detect.templates
+@@ -134,9 +134,10 @@ Description: for internal use; can be preseeded
+ 
+ Template: cdrom/suite
+ Type: select
+-Choices: stable, testing, unstable
++Choices: precise, trusty, xenial, yakkety, zesty
++Default: zesty
+ Description: for internal use only
+- Debian version to install
++ Ubuntu version to install
+ 
+ Template: cdrom/codename
+ Type: string
diff --git a/debian/rules b/debian/rules
index 78c7615..c4a7e1b 100755
--- a/debian/rules
+++ b/debian/rules
@@ -1,3 +1,17 @@
 #! /usr/bin/make -f
 %:
 	dh $@
+
+
+override_dh_auto_configure-indep:
+ifeq (yes,$(shell dpkg-vendor --derives-from Ubuntu && echo yes))
+	patch -p1 < $(CURDIR)/debian/patches/ubuntu-installer.patch
+endif
+	dh_auto_configure
+
+override_dh_auto_clean-indep:
+ifeq (yes,$(shell dpkg-vendor --derives-from Ubuntu && echo yes))
+	(patch -s -R -f -p1 --dry-run < $(CURDIR)/debian/patches/ubuntu-installer.patch > /dev/null && \
+		patch -R -p1 < $(CURDIR)/debian/patches/ubuntu-installer.patch) || true
+endif
+	dh_auto_clean
-- 
2.7.4

From 84d9d5935a94dec97f88bc9d56c2ba151b320e6a Mon Sep 17 00:00:00 2001
From: Balint Reczey <balint.reczey@canonical.com>
Date: Wed, 26 Apr 2017 21:10:19 +0200
Subject: [PATCH 7/7] Install Artful Aardvark on Ubuntu by default

---
 debian/patches/ubuntu-installer.patch | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/debian/patches/ubuntu-installer.patch b/debian/patches/ubuntu-installer.patch
index 391b34b..7311a2e 100644
--- a/debian/patches/ubuntu-installer.patch
+++ b/debian/patches/ubuntu-installer.patch
@@ -29,8 +29,8 @@ index 8da25d3..fe970dd 100644
  Template: cdrom/suite
  Type: select
 -Choices: stable, testing, unstable
-+Choices: precise, trusty, xenial, yakkety, zesty
-+Default: zesty
++Choices: precise, trusty, xenial, yakkety, zesty, artful
++Default: artful
  Description: for internal use only
 - Debian version to install
 + Ubuntu version to install
-- 
2.7.4


--- End Message ---
--- Begin Message ---
Control: notfound -1 1.67

Hi Colin and All,

On Sun, Apr 30, 2017 at 2:31 AM, Colin Watson <cjwatson@ubuntu.com> wrote:
> On Thu, Apr 27, 2017 at 09:42:47AM +0200, Balint Reczey wrote:
>> Please merge changes from the delta carried by Ubuntu:
>
> For the record, this does not have my approval even though some of the
> commits are in my name.  It would generally be polite to at least try to
> ask people named as committers before you send patches attributed to
> them (and also e.g. ask what email addresses they prefer to be used for
> the patches you've generated in their name: I never use
> colin.watson@canonical.com except in situations where it's been chosen
> for me and I have no alternative).

I'm sorry for not contacting you in advance, I thought it would be ok to forward
the patches. I'll seek approval in the future and discuss the patches to be
forwarded in advance.

I'm closing the bug and in case a new bug will be needed for forwarding some
of the patches I'll open a new one.

Thanks,
Balint

>
>> commit 44dc46c133fa5e87d27eeef4c936e44cb886602b
>> Author: Balint Reczey <balint.reczey@canonical.com>
>> Date:   Wed Apr 26 21:07:42 2017 +0200
>>
>>     Show Ubuntu name on Ubuntu
>>
>>     Build depend on dpkg-dev (>= 1.15.1) and patch to do so.
>
> This is thoroughly gross in a native package, and I don't think it
> should be accepted.  Branding patches are annoying but basically a
> necessary reality.
>
> The only sensible way to avoid carrying these patches in downstream
> distributions is to debrand altogether, i.e. not mention Debian in d-i
> strings.  In some cases that's reasonable, but I don't think it can be
> done everywhere.
>
> (And no, db_subst isn't a solution in the general case: while it isn't a
> problem in this specific case, in general, different proper names are
> translated in various ways in different languages, may undergo
> declension, etc.  My stock example of this is "a Debian image" vs. "an
> Ubuntu image", but there's a wide range of complexity here.)
>
> If I were putting the effort into figuring out how to merge this
> properly rather than just forwarding patches directly, I'd work out a
> rephrasing of the log messages that was more generic and didn't require
> branding, and I'd generate the cdrom/suite template at build time in a
> way that's reasonably easy to maintain (.in files or similar).
> Committing a patch file like this is right out: not only are they highly
> unconventional in native packages but in practice they're a pain to
> maintain and tend to bitrot.
>
>> commit 08cfa29937f3dfbe796cab4d7e05bf2dd8808f40
>> Author: Colin Watson <colin.watson@canonical.com>
>> Date:   Wed Apr 26 20:08:41 2017 +0200
>>
>>     Update translations for using hdparm
>>
>>     Those changes should be done in d-i master po files
>
> This should be disregarded and should not have been sent.  These are
> translations I fetched from Launchpad, and they may have different
> vocabulary standards etc.  d-i manages its own translations, and d-i
> translators are unlikely to thank you for committing unchecked
> translations to their languages.
>
> If the underlying hdparm change were committed (but see below), then it
> might make sense to send copies of the various translated strings to the
> list as a courtesy so that translators could use them as a reference if
> they wanted to, but not to commit them.
>
>> commit 5f509c6af43f90f8800490ae87287d69678c5445
>> Author: Colin Watson <colin.watson@canonical.com>
>> Date:   Wed Apr 26 20:02:14 2017 +0200
>>
>>     Optionally set CD-ROM drive parameters with hdparm
>
> I have mixed feelings about this.  It's a low-priority question,
> probably of pretty limited use nowadays as apparently nobody ever
> thought to enable it on amd64, and I suspect it's largely unused.  It
> made some difference in 2004 but now it's 2017.  My inclination would be
> to just drop this from Ubuntu, which would substantially reduce the size
> of our delta.
>
>> commit c061fc52c2b5ff1dc2f720df7dc795d0e0b121a9
>> Author: Colin Watson <colin.watson@canonical.com>
>> Date:   Wed Apr 26 19:10:44 2017 +0200
>>
>>     Extend device-scan delay to wait for usb-partition and mmc-partition
>>
>> commit 2ea63bb2703436cfa7695fe27ce5042d1eaf67fd
>> Author: Loïc Minier <lool@dooz.org>
>> Date:   Wed Apr 26 19:08:40 2017 +0200
>>
>>     Also check SD/MMC partitions ("list-devices mmc-partition")
>>
>>     Closes: LP: #364604
>
> These rely (in part in the case of c061fc52, and in its entirety in the
> case of 2ea63bb2) on a change to debian-installer-utils, which you
> haven't forwarded.
>
>> commit 5414150bde29d7f1432ae91eeb62c5dad8e0e3a2
>> Author: Colin Watson <colin.watson@canonical.com>
>> Date:   Wed Apr 26 18:37:29 2017 +0200
>>
>>     Copy /cdrom/.disk/info to /var/log/media-info
>>
>>     in order that we get /var/log/installer/media-info on the installed
>>     system; doing this in save-logs is too late because /cdrom is already
>>     unmounted by that point.
>>
>>     Closes: LP: #364649
>
> This is probably vaguely reasonable.
>
> --
> Colin Watson                                       [cjwatson@ubuntu.com]



-- 
Balint Reczey
Debian & Ubuntu Developer

--- End Message ---

Reply to: