Merge ~enr0n/ubuntu-release-upgrader:lp2015087 into ubuntu-release-upgrader:ubuntu/main

Proposed by Nick Rosbrook
Status: Merged
Merged at revision: 06bf6cf1980b14bf8f5a5ff7a1c2a5009920be93
Proposed branch: ~enr0n/ubuntu-release-upgrader:lp2015087
Merge into: ubuntu-release-upgrader:ubuntu/main
Diff against target: 43607 lines (+8260/-8218)
133 files modified
DistUpgrade/DistUpgradeVersion.py (+1/-1)
DistUpgrade/DistUpgradeViewGtk3.py (+8/-1)
DistUpgrade/DistUpgradeViewKDE.py (+9/-1)
data/mirrors.cfg (+16/-22)
debian/changelog (+7/-0)
po/af.po (+65/-65)
po/am.po (+65/-65)
po/an.po (+65/-65)
po/ar.po (+65/-65)
po/ast.po (+65/-65)
po/az.po (+65/-65)
po/be.po (+65/-65)
po/bg.po (+65/-65)
po/bn.po (+65/-65)
po/bo.po (+65/-65)
po/br.po (+65/-65)
po/bs.po (+65/-65)
po/ca.po (+65/-65)
po/ca@valencia.po (+65/-65)
po/ce.po (+65/-65)
po/ceb.po (+65/-65)
po/ckb.po (+65/-65)
po/crh.po (+65/-65)
po/cs.po (+65/-65)
po/csb.po (+65/-65)
po/cv.po (+65/-65)
po/cy.po (+65/-65)
po/da.po (+65/-65)
po/de.po (+65/-65)
po/dv.po (+65/-65)
po/el.po (+65/-65)
po/en_AU.po (+65/-65)
po/en_CA.po (+65/-65)
po/en_GB.po (+65/-65)
po/eo.po (+65/-65)
po/es.po (+65/-65)
po/et.po (+65/-65)
po/eu.po (+65/-65)
po/fa.po (+65/-65)
po/fi.po (+65/-65)
po/fil.po (+65/-65)
po/fo.po (+65/-65)
po/fr.po (+65/-65)
po/fr_CA.po (+65/-65)
po/fur.po (+65/-65)
po/fy.po (+65/-65)
po/ga.po (+65/-65)
po/gd.po (+65/-65)
po/gl.po (+65/-65)
po/gu.po (+65/-65)
po/gv.po (+65/-65)
po/he.po (+65/-65)
po/hi.po (+65/-65)
po/hr.po (+65/-65)
po/hu.po (+65/-65)
po/hy.po (+65/-65)
po/ia.po (+65/-65)
po/id.po (+65/-65)
po/is.po (+65/-65)
po/it.po (+65/-65)
po/ja.po (+65/-65)
po/jv.po (+65/-65)
po/ka.po (+65/-65)
po/kk.po (+65/-65)
po/km.po (+65/-65)
po/kn.po (+65/-65)
po/ko.po (+65/-65)
po/ku.po (+65/-65)
po/ky.po (+65/-65)
po/lb.po (+65/-65)
po/ln.po (+65/-65)
po/lo.po (+65/-65)
po/lt.po (+65/-65)
po/lv.po (+65/-65)
po/mhr.po (+65/-65)
po/mjw.po (+65/-65)
po/mk.po (+65/-65)
po/ml.po (+65/-65)
po/mn.po (+65/-65)
po/mnw.po (+65/-65)
po/mr.po (+65/-65)
po/ms.po (+65/-65)
po/mus.po (+65/-65)
po/my.po (+65/-65)
po/nb.po (+65/-65)
po/nds.po (+65/-65)
po/ne.po (+65/-65)
po/nl.po (+65/-65)
po/nn.po (+65/-65)
po/oc.po (+65/-65)
po/om.po (+65/-65)
po/pa.po (+65/-65)
po/pam.po (+65/-65)
po/pl.po (+65/-65)
po/ps.po (+65/-65)
po/pt.po (+65/-65)
po/pt_BR.po (+65/-65)
po/qu.po (+65/-65)
po/ro.po (+65/-65)
po/ru.po (+65/-65)
po/rw.po (+65/-65)
po/sc.po (+65/-65)
po/sco.po (+65/-65)
po/sd.po (+65/-65)
po/se.po (+65/-65)
po/shn.po (+65/-65)
po/si.po (+65/-65)
po/sk.po (+65/-65)
po/sl.po (+65/-65)
po/sq.po (+65/-65)
po/sr.po (+65/-65)
po/sv.po (+65/-65)
po/szl.po (+65/-65)
po/ta.po (+65/-65)
po/ta_LK.po (+65/-65)
po/te.po (+65/-65)
po/tg.po (+65/-65)
po/th.po (+65/-65)
po/tl.po (+65/-65)
po/tr.po (+65/-65)
po/ubuntu-release-upgrader.pot (+65/-65)
po/ug.po (+65/-65)
po/uk.po (+65/-65)
po/ur.po (+65/-65)
po/uz.po (+65/-65)
po/vi.po (+65/-65)
po/xh.po (+65/-65)
po/zh_CN.po (+65/-65)
po/zh_HK.po (+65/-65)
po/zh_TW.po (+65/-65)
po/zu.po (+65/-65)
utils/demoted.cfg (+17/-0)
utils/demoted.cfg.jammy (+12/-3)
Reviewer Review Type Date Requested Status
Brian Murray Pending
Review via email: mp+440263@code.launchpad.net

Description of the change

Instead of using string literals like '22.10' for the next Ubuntu version, use distro_info to map the codename to the version string.

This fixes LP: #2015087 and also prevents this from happening again in the future.

To post a comment you must log in.

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1diff --git a/DistUpgrade/DistUpgradeVersion.py b/DistUpgrade/DistUpgradeVersion.py
2index 4094985..f8f9ce9 100644
3--- a/DistUpgrade/DistUpgradeVersion.py
4+++ b/DistUpgrade/DistUpgradeVersion.py
5@@ -1 +1 @@
6-VERSION = '23.04.2'
7+VERSION = '23.04.3'
8diff --git a/DistUpgrade/DistUpgradeViewGtk3.py b/DistUpgrade/DistUpgradeViewGtk3.py
9index d092c90..118f747 100644
10--- a/DistUpgrade/DistUpgradeViewGtk3.py
11+++ b/DistUpgrade/DistUpgradeViewGtk3.py
12@@ -47,11 +47,13 @@ import subprocess
13
14 import apt
15 import apt_pkg
16+import distro_info
17 import os
18
19 from .DistUpgradeApport import run_apport, apport_crash
20
21 from .DistUpgradeView import DistUpgradeView, FuzzyTimeToStr, InstallProgress, AcquireProgress
22+from .DistUpgradeConfigParser import DistUpgradeConfig
23 from .telemetry import get as get_telemetry
24 from .SimpleGtk3builderApp import SimpleGtkbuilderApp
25
26@@ -450,9 +452,11 @@ class DistUpgradeViewGtk3(DistUpgradeView,SimpleGtkbuilderApp):
27 if not datadir or datadir == '.':
28 localedir=os.path.join(os.getcwd(),"mo")
29 gladedir=os.getcwd()
30+ self.config = DistUpgradeConfig(os.getcwd())
31 else:
32 localedir="/usr/share/locale/"
33 gladedir=os.path.join(datadir, "gtkbuilder")
34+ self.config = DistUpgradeConfig(datadir)
35
36 # check if we have a display etc
37 Gtk.init_check(sys.argv)
38@@ -476,8 +480,11 @@ class DistUpgradeViewGtk3(DistUpgradeView,SimpleGtkbuilderApp):
39 logging.debug("error setting default icon, ignoring (%s)" % e)
40 pass
41
42+ to_dist = self.config.get("Sources", "To")
43+ to_version = distro_info.UbuntuDistroInfo().version(to_dist)
44+
45 title_string = self.label_title.get_label()
46- title_string = title_string.replace("%s", "22.10")
47+ title_string = title_string.replace("%s", to_version)
48 self.label_title.set_label(title_string)
49
50 # terminal stuff
51diff --git a/DistUpgrade/DistUpgradeViewKDE.py b/DistUpgrade/DistUpgradeViewKDE.py
52index c3ee326..f7c241a 100644
53--- a/DistUpgrade/DistUpgradeViewKDE.py
54+++ b/DistUpgrade/DistUpgradeViewKDE.py
55@@ -54,6 +54,7 @@ import traceback
56
57 import apt
58 import apt_pkg
59+import distro_info
60 import shlex # for osrelease
61 import os
62
63@@ -62,6 +63,7 @@ import pty
64 from .DistUpgradeApport import run_apport, apport_crash
65
66 from .DistUpgradeView import DistUpgradeView, FuzzyTimeToStr, InstallProgress, AcquireProgress
67+from .DistUpgradeConfigParser import DistUpgradeConfig
68 from .telemetry import get as get_telemetry
69
70 import select
71@@ -568,8 +570,10 @@ class DistUpgradeViewKDE(DistUpgradeView):
72 logger.setLevel(logging.INFO)
73 if not datadir or datadir == '.':
74 localedir=os.path.join(os.getcwd(),"mo")
75+ self.config = DistUpgradeConfig(os.getcwd())
76 else:
77 localedir="/usr/share/locale/ubuntu-release-upgrader"
78+ self.config = DistUpgradeConfig(datadir)
79
80 # FIXME: i18n must be somewhere relative do this dir
81 try:
82@@ -637,9 +641,13 @@ class DistUpgradeViewKDE(DistUpgradeView):
83 name = _OSRelease().result["PRETTY_NAME"]
84 if not name or name == "Ubuntu":
85 name = "Kubuntu"
86+
87+ to_dist = self.config.get("Sources", "To")
88+ to_version = distro_info.UbuntuDistroInfo().version(to_dist)
89+
90 title_string = self.window_main.label_title.text()
91 title_string = title_string.replace("Ubuntu", name)
92- title_string = title_string.replace("%s", "22.10")
93+ title_string = title_string.replace("%s", to_version)
94 self.window_main.label_title.setText(title_string)
95
96 # setup terminal text in hidden by default spot
97diff --git a/data/mirrors.cfg b/data/mirrors.cfg
98index 4adecf3..9ca737b 100644
99--- a/data/mirrors.cfg
100+++ b/data/mirrors.cfg
101@@ -137,7 +137,6 @@ http://ftp.tu-ilmenau.de/mirror/ubuntu/
102 http://mirror.as29550.net/archive.ubuntu.com/
103 http://mirror.bytemark.co.uk/ubuntu/
104 http://mirror.corbina.net/ubuntu/
105-http://mirror.timeweb.ru/ubuntu/
106 http://mirror.umd.edu/ubuntu/
107 http://mirror.unix-solutions.be/ubuntu/
108 http://mirrors.accretive-networks.net/ubuntu/
109@@ -185,7 +184,6 @@ http://mirror.vorboss.net/ubuntu-archive/
110 http://ubuntu.ethz.ch/ubuntu/
111 http://ftp.fau.de/ubuntu/
112 http://mirror.transip.net/ubuntu/ubuntu/
113-http://mirror.amsiohosting.net/archive.ubuntu.com/
114 http://mirror.uchile.cl/ubuntu/
115 http://mirrors.aliyun.com/ubuntu/
116 http://archive.ubuntu.mirror.rafal.ca/ubuntu/
117@@ -244,8 +242,6 @@ http://distrib-coffee.ipsl.jussieu.fr/pub/linux/ubuntu/
118 http://repo.iut.ac.ir/repo/Ubuntu/
119 http://mirror.previder.nl/ubuntu/
120 http://mirror.team-cymru.org/ubuntu/
121-http://mirror.renu.ac.ug/ubuntu/
122-http://mirror.library.ucy.ac.cy/linux/ubuntu/archive/
123 http://ftp.cc.uoc.gr/mirrors/linux/ubuntu/packages/
124 http://ubuntu.vargonen.com/ubuntu/
125 http://mirrors.vhost.vn/ubuntu/
126@@ -361,7 +357,6 @@ http://mirror.as.kamatera.com/ubuntu/
127 http://ntc.net.np/ubuntu/
128 http://www.ubuntu.org.tw/
129 http://dafi.inf.um.es/ubuntu/
130-http://mirrors.c0urier.net/linux/ubuntu/
131 http://ubuntu.uib.no/archive/
132 http://mirrors.huaweicloud.com/repository/ubuntu/
133 http://mirrors.eze.sysarmy.com/ubuntu/
134@@ -386,13 +381,9 @@ http://tux.rainside.sk/ubuntu/
135 http://mirror.rcg.sfu.ca/mirror/ubuntu/
136 https://mirror.asergo.com/ubuntu/
137 https://mirror.sh.com.tr/ubuntu/
138-https://mirror.kumi.systems/ubuntu-ports/
139 https://mirror.ufro.cl/ubuntu/
140 http://mirror.ca-tr.kamatera.com/ubuntu/
141-https://mirror.kumi.systems/ubuntu/
142-https://rs.mirror.kumi.systems/ubuntu/
143 http://ubuntu.hbcse.tifr.res.in/ubuntu/
144-https://si.mirror.kumi.systems/ubuntu/
145 http://mirror.easyname.at/ubuntu-archive/
146 http://ftp.ntua.gr/ubuntu/
147 https://mirrors.switch.ca/ubuntu/
148@@ -401,7 +392,6 @@ https://mirror.dogado.de/ubuntu/
149 https://quantum-mirror.hu/mirrors/pub/ubuntu/
150 https://mirror.kku.ac.th/ubuntu/
151 http://download.nust.na/pub/ubuntu/ubuntu/
152-http://mirror.0x.sg/ubuntu/
153 http://ubuntu.otenet.gr/
154 https://mirrors.bloomu.edu/ubuntu/
155 https://ftp.uni-stuttgart.de/ubuntu/
156@@ -420,7 +410,6 @@ https://nl.mirrors.clouvider.net/ubuntu/
157 https://mirrors.opensource.is/ubuntu/
158 https://archive.ubuntu.petiak.ir/ubuntu/
159 https://mirror.linux-ia64.org/ubuntu/
160-https://mirror.faizuladib.com/ubuntu/
161 https://atl.mirrors.clouvider.net/ubuntu/
162 https://de.mirrors.clouvider.net/ubuntu/
163 http://mirrors.cmich.edu/ubuntu/
164@@ -435,7 +424,6 @@ http://mirror.bizflycloud.vn/ubuntu/
165 https://nyc.mirrors.clouvider.net/ubuntu/
166 https://mirror.telepoint.bg/ubuntu/
167 https://mirror.de.vangus.co.il/ubuntu/
168-https://ubuntu.ch.altushost.com/
169 https://mirror.sabay.com.kh/ubuntu/
170 https://ubuntu.mirror.shastacoe.net/ubuntu/
171 http://ftp.heanet.ie/pub/ubuntu/
172@@ -463,7 +451,6 @@ https://mirror.xtom.com.hk/ubuntu/
173 http://mirror.hostafrica.co.za/ubuntu/
174 https://mirrors.cloud.tencent.com/ubuntu/
175 https://mirror.it4i.cz/ubuntu/
176-http://ubuntu.hostiran.ir/ubuntuarchive/
177 https://mirror.it.ubc.ca/ubuntu/
178 https://mirrors.hit.edu.cn/ubuntu/
179 https://mirror.realcompute.io/ubuntu/
180@@ -534,7 +521,6 @@ http://mirrors.cqu.edu.cn/ubuntu/
181 https://mirror.ossplanet.net/ubuntu/
182 https://lug.mines.edu/mirrors/ubuntu/
183 http://mirror.cloudhosting.lv/ubuntu/
184-http://mirror.dlut.edu.cn/ubuntu/
185 https://mirror.vpsnet.com/ubuntu/
186 https://ftp.ulak.net.tr/ubuntu/
187 https://mirror.dal.nexril.net/ubuntu/
188@@ -545,7 +531,6 @@ https://mirrors.ustc.edu.cn/ubuntu/
189 https://mirror.cxserv.de/ubuntu/
190 https://mirror.cs.pitt.edu/ubuntu/archive/
191 https://mirror.fcix.net/ubuntu/
192-http://mirror.labkom.id/ubuntu/
193 https://mirror.netsite.dk/ubuntu/archive/
194 https://mirrors.storpool.com/ubuntu/archive/
195 http://mirror.onevip.mk/ubuntu/
196@@ -555,7 +540,6 @@ https://linux.domainesia.com/ubuntu/ubuntu-archive/
197 http://mirror.kst.asia/ubuntu/
198 https://mirror.hep.gg/ubuntu/
199 https://mirror.nevacloud.com/ubuntu/ubuntu-archive/
200-http://mirror.cedille.club/ubuntu/
201 https://mirror.clarkson.edu/ubuntu/
202 https://mirrors.gbnetwork.com/ubuntu/
203 http://ftp.mirror.tw/pub/ubuntu/ubuntu/
204@@ -612,7 +596,6 @@ http://mirrors.dgut.edu.cn/ubuntu/
205 https://mirrors.bfsu.edu.cn/ubuntu/
206 http://mirror.kapteyan.com.tr/ubuntu/
207 https://us.mirror.nsec.pt/ubuntu/
208-https://mirror.linux.pizza/ubuntu/
209 https://mirror.hnd.cl/ubuntu/
210 https://edgeuno-bog2.mm.fcix.net/ubuntu/
211 https://devpg.net/ubuntu/
212@@ -620,16 +603,12 @@ https://mirrors.iu13.net/ubuntu/
213 http://mirror.infomaniak.ch/ubuntu/
214 http://mirror.cloudxchange.id/ubuntu/
215 https://ubuntu-mirror.cloud.mu/ubuntu-ports/
216-http://mirrors-ca.muzzy.us/ubuntu/
217-https://hr.mirror.kumi.systems/ubuntu/
218 https://mirror.xtx.cloud/ubuntu/
219 https://mirror.yer.az/ubuntu/archive/
220 https://mirror.rasanegar.com/ubuntu/
221-https://ubuntu-archive.mirror.net.in/
222 https://mirrors.sarak.as/ubuntu/
223 https://mirror.enzu.com/ubuntu/
224 https://mirrors.hostico.ro/ubuntu/archive/
225-https://ubuntu.brontocdn.com/
226 http://mirror.lostpacket.org/ubuntu/
227 https://ubuntu.mirrors.orange.ro/ubuntu/
228 https://ubuntu.repo.cure.edu.uy/mirror/
229@@ -642,6 +621,21 @@ https://ir.ubuntu.sindad.cloud/ubuntu/
230 http://mirror.rise.ph/ubuntu/
231 http://0ms.run/mirrors/mirror.enzu.com/ubuntu/
232 https://mirrors.united.cd/ubuntu/
233-https://labs.etsit.urjc.es/ubuntu/
234 http://mirror.bg.host.ag/ubuntu/
235 https://mirror.0-1.cloud/ubuntu/
236+https://mirrors-ubuntu.behostings.com/ubuntu/
237+https://mirror.dewabiz.com/ubuntu/
238+https://mirror.elice.io/ubuntu/
239+https://mirrors.xjtu.edu.cn/ubuntu/
240+http://sft.if.usp.br/ubuntu/
241+https://mirrors.c0urier.net/linux/ubuntu/
242+https://mirror.servaxnet.com/ubuntu/
243+http://mirror.vietnix.vn/ubuntu/
244+https://ubuntu.hostiran.ir/ubuntuarchive/
245+http://repo.ugm.ac.id/ubuntu/
246+https://mirrors.zju.edu.cn/ubuntu/
247+http://mirror.espol.edu.ec/ubuntu/
248+https://mirror.papua.go.id/ubuntu/
249+http://ubuntu.mirror.iweb.ca/
250+https://labs.eif.urjc.es/mirror/ubuntu/
251+https://ubuntu.uvigo.es/
252diff --git a/debian/changelog b/debian/changelog
253index ed1bd67..b991c7e 100644
254--- a/debian/changelog
255+++ b/debian/changelog
256@@ -1,3 +1,10 @@
257+ubuntu-release-upgrader (1:23.04.3) lunar; urgency=medium
258+
259+ * DistUpgrade: Dynamically get new version string for UI labels (LP: #2015087)
260+ * Run pre-build.sh: updating mirrors, demotions, and translations.
261+
262+ -- Nick Rosbrook <nick.rosbrook@canonical.com> Mon, 03 Apr 2023 12:39:16 -0400
263+
264 ubuntu-release-upgrader (1:23.04.2) lunar; urgency=medium
265
266 [ Nick Rosbrook ]
267diff --git a/po/af.po b/po/af.po
268index 5b0f52b..fa28fc6 100644
269--- a/po/af.po
270+++ b/po/af.po
271@@ -8,7 +8,7 @@ msgid ""
272 msgstr ""
273 "Project-Id-Version: update-manager\n"
274 "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n"
275-"POT-Creation-Date: 2023-02-22 21:53+0000\n"
276+"POT-Creation-Date: 2023-04-03 16:33+0000\n"
277 "PO-Revision-Date: 2013-05-22 11:00+0000\n"
278 "Last-Translator: Brian Murray <brian@ubuntu.com>\n"
279 "Language-Team: Afrikaans <af@li.org>\n"
280@@ -1013,7 +1013,7 @@ msgid "&Upgrade"
281 msgstr "&Opgradering"
282
283 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:154
284-#: ../DistUpgrade/DistUpgradeViewKDE.py:682
285+#: ../DistUpgrade/DistUpgradeViewKDE.py:690
286 msgid "&Cancel"
287 msgstr "&Kanselleer"
288
289@@ -1043,8 +1043,8 @@ msgstr "Lêer %s van %s"
290
291 #. print("mediaChange %s %s" % (medium, drive))
292 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:235
293-#: ../DistUpgrade/DistUpgradeViewGtk3.py:125
294-#: ../DistUpgrade/DistUpgradeViewKDE.py:300
295+#: ../DistUpgrade/DistUpgradeViewGtk3.py:127
296+#: ../DistUpgrade/DistUpgradeViewKDE.py:302
297 #, python-format
298 msgid "Please insert '%s' into the drive '%s'"
299 msgstr "Plaas asseblief '%s' in dryf '%s'"
300@@ -1052,7 +1052,7 @@ msgstr "Plaas asseblief '%s' in dryf '%s'"
301 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:237
302 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:242
303 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:243
304-#: ../DistUpgrade/DistUpgradeViewKDE.py:301
305+#: ../DistUpgrade/DistUpgradeViewKDE.py:303
306 msgid "Media Change"
307 msgstr "Media verwisseling"
308
309@@ -1351,27 +1351,27 @@ msgstr "Stel datadir"
310 msgid "Upgrade to the development release"
311 msgstr "Opgradeer na die ontwikkeling vrystelling"
312
313-#: ../DistUpgrade/DistUpgradeViewGtk3.py:146
314-#: ../DistUpgrade/DistUpgradeViewKDE.py:314
315+#: ../DistUpgrade/DistUpgradeViewGtk3.py:148
316+#: ../DistUpgrade/DistUpgradeViewKDE.py:316
317 msgid "Fetching is complete"
318 msgstr "Fetching voltooi is"
319
320-#: ../DistUpgrade/DistUpgradeViewGtk3.py:161
321-#: ../DistUpgrade/DistUpgradeViewKDE.py:330
322+#: ../DistUpgrade/DistUpgradeViewGtk3.py:163
323+#: ../DistUpgrade/DistUpgradeViewKDE.py:332
324 #, python-format
325 msgid "Fetching file %li of %li at %sB/s"
326 msgstr "Haal lêer %li van %li teen %sB/s"
327
328-#: ../DistUpgrade/DistUpgradeViewGtk3.py:163
329-#: ../DistUpgrade/DistUpgradeViewGtk3.py:325
330-#: ../DistUpgrade/DistUpgradeViewKDE.py:331
331-#: ../DistUpgrade/DistUpgradeViewKDE.py:481
332+#: ../DistUpgrade/DistUpgradeViewGtk3.py:165
333+#: ../DistUpgrade/DistUpgradeViewGtk3.py:327
334+#: ../DistUpgrade/DistUpgradeViewKDE.py:333
335+#: ../DistUpgrade/DistUpgradeViewKDE.py:483
336 #, python-format
337 msgid "About %s remaining"
338 msgstr "Omtrent %s oorblywende"
339
340-#: ../DistUpgrade/DistUpgradeViewGtk3.py:166
341-#: ../DistUpgrade/DistUpgradeViewKDE.py:333
342+#: ../DistUpgrade/DistUpgradeViewGtk3.py:168
343+#: ../DistUpgrade/DistUpgradeViewKDE.py:335
344 #, python-format
345 msgid "Fetching file %li of %li"
346 msgstr "Haal lêer %li van %li"
347@@ -1379,25 +1379,25 @@ msgstr "Haal lêer %li van %li"
348 #. FIXME: add support for the timeout
349 #. of the terminal (to display something useful then)
350 #. -> longer term, move this code into python-apt
351-#: ../DistUpgrade/DistUpgradeViewGtk3.py:198
352-#: ../DistUpgrade/DistUpgradeViewKDE.py:371
353+#: ../DistUpgrade/DistUpgradeViewGtk3.py:200
354+#: ../DistUpgrade/DistUpgradeViewKDE.py:373
355 msgid "Applying changes"
356 msgstr "Pas veranderings toe"
357
358 #. we do not report followup errors from earlier failures
359-#: ../DistUpgrade/DistUpgradeViewGtk3.py:224
360-#: ../DistUpgrade/DistUpgradeViewKDE.py:384
361+#: ../DistUpgrade/DistUpgradeViewGtk3.py:226
362+#: ../DistUpgrade/DistUpgradeViewKDE.py:386
363 msgid "dependency problems - leaving unconfigured"
364 msgstr "afhanklikheid probleme - verlaat ongekonfigureerde"
365
366-#: ../DistUpgrade/DistUpgradeViewGtk3.py:229
367-#: ../DistUpgrade/DistUpgradeViewKDE.py:386
368+#: ../DistUpgrade/DistUpgradeViewGtk3.py:231
369+#: ../DistUpgrade/DistUpgradeViewKDE.py:388
370 #, python-format
371 msgid "Could not install '%s'"
372 msgstr "Kon nie '%s' installeer nie"
373
374-#: ../DistUpgrade/DistUpgradeViewGtk3.py:230
375-#: ../DistUpgrade/DistUpgradeViewKDE.py:387
376+#: ../DistUpgrade/DistUpgradeViewGtk3.py:232
377+#: ../DistUpgrade/DistUpgradeViewKDE.py:389
378 #, python-format
379 msgid ""
380 "The upgrade will continue but the '%s' package may not be in a working "
381@@ -1407,8 +1407,8 @@ msgstr ""
382 "werkende toestand nie. Oorweeg dit asseblief om hierdie fout te rapporteer."
383
384 #. self.expander.set_expanded(True)
385-#: ../DistUpgrade/DistUpgradeViewGtk3.py:247
386-#: ../DistUpgrade/DistUpgradeViewKDE.py:409
387+#: ../DistUpgrade/DistUpgradeViewGtk3.py:249
388+#: ../DistUpgrade/DistUpgradeViewKDE.py:411
389 #, python-format
390 msgid ""
391 "Replace the customized configuration file\n"
392@@ -1417,8 +1417,8 @@ msgstr ""
393 "Vervang die pasgemaakte konfigurasie lêer\n"
394 "'%s'?"
395
396-#: ../DistUpgrade/DistUpgradeViewGtk3.py:248
397-#: ../DistUpgrade/DistUpgradeViewKDE.py:410
398+#: ../DistUpgrade/DistUpgradeViewGtk3.py:250
399+#: ../DistUpgrade/DistUpgradeViewKDE.py:412
400 msgid ""
401 "You will lose any changes you have made to this configuration file if you "
402 "choose to replace it with a newer version."
403@@ -1426,17 +1426,17 @@ msgstr ""
404 "U sal enige veranderinge wat u aan hierdie instellingslêer gemaak het "
405 "verloor indien u kies om dit met 'n nuwer weergawe te vervang."
406
407-#: ../DistUpgrade/DistUpgradeViewGtk3.py:268
408-#: ../DistUpgrade/DistUpgradeViewKDE.py:433
409+#: ../DistUpgrade/DistUpgradeViewGtk3.py:270
410+#: ../DistUpgrade/DistUpgradeViewKDE.py:435
411 msgid "The 'diff' command was not found"
412 msgstr "Die 'diff' bevel is nie gevind nie"
413
414-#: ../DistUpgrade/DistUpgradeViewGtk3.py:535
415+#: ../DistUpgrade/DistUpgradeViewGtk3.py:542
416 #: ../DistUpgrade/DistUpgradeViewText.py:140
417 msgid "A fatal error occurred"
418 msgstr "'n Fatale fout het voorgekom"
419
420-#: ../DistUpgrade/DistUpgradeViewGtk3.py:536
421+#: ../DistUpgrade/DistUpgradeViewGtk3.py:543
422 msgid ""
423 "Please report this as a bug (if you haven't already) and include the files /"
424 "var/log/dist-upgrade/main.log and /var/log/dist-upgrade/apt.log in your "
425@@ -1449,11 +1449,11 @@ msgstr ""
426 "Jou oorspronklike sources.list was gestoor in /etc/apt/sources.list."
427 "distUpgrade."
428
429-#: ../DistUpgrade/DistUpgradeViewGtk3.py:566
430+#: ../DistUpgrade/DistUpgradeViewGtk3.py:573
431 msgid "Ctrl-c pressed"
432 msgstr "Ctrl-c gedruk"
433
434-#: ../DistUpgrade/DistUpgradeViewGtk3.py:567
435+#: ../DistUpgrade/DistUpgradeViewGtk3.py:574
436 msgid ""
437 "This will abort the operation and may leave the system in a broken state. "
438 "Are you sure you want to do that?"
439@@ -1462,132 +1462,132 @@ msgstr ""
440 "Is jy seker jy wil dit doen?"
441
442 #. append warning
443-#: ../DistUpgrade/DistUpgradeViewGtk3.py:706
444+#: ../DistUpgrade/DistUpgradeViewGtk3.py:713
445 msgid "To prevent data loss close all open applications and documents."
446 msgstr ""
447 "Om dataverlies te voorkom, sluit asseblief alle toepassings en dokumente."
448
449-#: ../DistUpgrade/DistUpgradeViewGtk3.py:720
450+#: ../DistUpgrade/DistUpgradeViewGtk3.py:727
451 #, python-format
452 msgid "No longer supported by Canonical (%s)"
453 msgstr "Nie meer ondersteun deur Canonical (%s)"
454
455-#: ../DistUpgrade/DistUpgradeViewGtk3.py:721
456+#: ../DistUpgrade/DistUpgradeViewGtk3.py:728
457 #, python-format
458 msgid "<b>Downgrade (%s)</b>"
459 msgstr "<b>Afgradeer (%s)</b>"
460
461-#: ../DistUpgrade/DistUpgradeViewGtk3.py:722
462+#: ../DistUpgrade/DistUpgradeViewGtk3.py:729
463 #, python-format
464 msgid "Remove (%s)"
465 msgstr "Verwyder (%s)"
466
467-#: ../DistUpgrade/DistUpgradeViewGtk3.py:723
468+#: ../DistUpgrade/DistUpgradeViewGtk3.py:730
469 #, python-format
470 msgid "No longer needed (%s)"
471 msgstr "Nie meer nodig (%s)"
472
473-#: ../DistUpgrade/DistUpgradeViewGtk3.py:724
474+#: ../DistUpgrade/DistUpgradeViewGtk3.py:731
475 #, python-format
476 msgid "Install (%s)"
477 msgstr "Installeer (%s)"
478
479-#: ../DistUpgrade/DistUpgradeViewGtk3.py:725
480+#: ../DistUpgrade/DistUpgradeViewGtk3.py:732
481 #, python-format
482 msgid "Upgrade (%s)"
483 msgstr "Opgrader (%s)"
484
485-#: ../DistUpgrade/DistUpgradeViewGtk3.py:773
486+#: ../DistUpgrade/DistUpgradeViewGtk3.py:780
487 msgid "Cancel"
488 msgstr "Kanselleer"
489
490-#: ../DistUpgrade/DistUpgradeViewGtk3.py:774
491-#: ../DistUpgrade/DistUpgradeViewKDE.py:906
492+#: ../DistUpgrade/DistUpgradeViewGtk3.py:781
493+#: ../DistUpgrade/DistUpgradeViewKDE.py:914
494 msgid "Continue"
495 msgstr "Voortgaan"
496
497-#: ../DistUpgrade/DistUpgradeViewKDE.py:445
498+#: ../DistUpgrade/DistUpgradeViewKDE.py:447
499 msgid "Show Difference >>>"
500 msgstr "Toon verskil >>>"
501
502-#: ../DistUpgrade/DistUpgradeViewKDE.py:448
503+#: ../DistUpgrade/DistUpgradeViewKDE.py:450
504 msgid "<<< Hide Difference"
505 msgstr "<<< Versteek verskil"
506
507-#: ../DistUpgrade/DistUpgradeViewKDE.py:668
508+#: ../DistUpgrade/DistUpgradeViewKDE.py:676
509 msgid "Error"
510 msgstr "Fout"
511
512-#: ../DistUpgrade/DistUpgradeViewKDE.py:686
513-#: ../DistUpgrade/DistUpgradeViewKDE.py:927
514+#: ../DistUpgrade/DistUpgradeViewKDE.py:694
515+#: ../DistUpgrade/DistUpgradeViewKDE.py:935
516 msgid "&Close"
517 msgstr "&Sluit"
518
519-#: ../DistUpgrade/DistUpgradeViewKDE.py:720
520+#: ../DistUpgrade/DistUpgradeViewKDE.py:728
521 msgid "Show Terminal >>>"
522 msgstr "Wys Terminale >>>"
523
524-#: ../DistUpgrade/DistUpgradeViewKDE.py:723
525+#: ../DistUpgrade/DistUpgradeViewKDE.py:731
526 msgid "<<< Hide Terminal"
527 msgstr "<<< Versteek Terminaal"
528
529-#: ../DistUpgrade/DistUpgradeViewKDE.py:796
530+#: ../DistUpgrade/DistUpgradeViewKDE.py:804
531 msgid "Information"
532 msgstr "Inligting"
533
534-#: ../DistUpgrade/DistUpgradeViewKDE.py:844
535+#: ../DistUpgrade/DistUpgradeViewKDE.py:852
536 msgid "&Start Upgrade"
537 msgstr "&Begin Opgrader"
538
539-#: ../DistUpgrade/DistUpgradeViewKDE.py:846
540-#: ../DistUpgrade/DistUpgradeViewKDE.py:890
541-#: ../DistUpgrade/DistUpgradeViewKDE.py:893
542+#: ../DistUpgrade/DistUpgradeViewKDE.py:854
543+#: ../DistUpgrade/DistUpgradeViewKDE.py:898
544+#: ../DistUpgrade/DistUpgradeViewKDE.py:901
545 #: ../data/gtkbuilder/DistUpgrade.ui.h:7
546 msgid "Details"
547 msgstr "Besonderhede"
548
549-#: ../DistUpgrade/DistUpgradeViewKDE.py:868
550+#: ../DistUpgrade/DistUpgradeViewKDE.py:876
551 #, python-format
552 msgid "No longer supported %s"
553 msgstr "Nie meer ondersteun %s"
554
555-#: ../DistUpgrade/DistUpgradeViewKDE.py:870
556+#: ../DistUpgrade/DistUpgradeViewKDE.py:878
557 #, python-format
558 msgid "Remove %s"
559 msgstr "Verwyder %s"
560
561-#: ../DistUpgrade/DistUpgradeViewKDE.py:872
562+#: ../DistUpgrade/DistUpgradeViewKDE.py:880
563 #: ../DistUpgrade/DistUpgradeViewText.py:239
564 #, python-format
565 msgid "Remove (was auto installed) %s"
566 msgstr "Verwyder (is outomaties geïinstalleer) %s"
567
568-#: ../DistUpgrade/DistUpgradeViewKDE.py:874
569+#: ../DistUpgrade/DistUpgradeViewKDE.py:882
570 #, python-format
571 msgid "Install %s"
572 msgstr "Installeer %s"
573
574-#: ../DistUpgrade/DistUpgradeViewKDE.py:876
575+#: ../DistUpgrade/DistUpgradeViewKDE.py:884
576 #, python-format
577 msgid "Upgrade %s"
578 msgstr "Opgradeer %s"
579
580-#: ../DistUpgrade/DistUpgradeViewKDE.py:923
581+#: ../DistUpgrade/DistUpgradeViewKDE.py:931
582 #: ../DistUpgrade/DistUpgradeViewText.py:292
583 msgid "Restart required"
584 msgstr "Herlaai benodig"
585
586-#: ../DistUpgrade/DistUpgradeViewKDE.py:923
587+#: ../DistUpgrade/DistUpgradeViewKDE.py:931
588 msgid "<b><big>Restart the system to complete the upgrade</big></b>"
589 msgstr "<b><big>Herlaai die sisteem om die opgradering te voltooi</big></b>"
590
591-#: ../DistUpgrade/DistUpgradeViewKDE.py:926
592+#: ../DistUpgrade/DistUpgradeViewKDE.py:934
593 #: ../data/gtkbuilder/DistUpgrade.ui.h:14
594 msgid "_Restart Now"
595 msgstr "He_rlaai nou"
596
597 #. FIXME make this user friendly
598-#: ../DistUpgrade/DistUpgradeViewKDE.py:944
599+#: ../DistUpgrade/DistUpgradeViewKDE.py:952
600 msgid ""
601 "<b><big>Cancel the running upgrade?</big></b>\n"
602 "\n"
603@@ -1599,7 +1599,7 @@ msgstr ""
604 "Die stelsel kan in 'n onbruikbare staat wees as jy die opgrader kanselleer. "
605 "Jy word sterk aangeraai om die opgrader te hervat."
606
607-#: ../DistUpgrade/DistUpgradeViewKDE.py:948
608+#: ../DistUpgrade/DistUpgradeViewKDE.py:956
609 msgid "Cancel Upgrade?"
610 msgstr "Opgradering kanselleer?"
611
612diff --git a/po/am.po b/po/am.po
613index 8d5f112..a6b1d56 100644
614--- a/po/am.po
615+++ b/po/am.po
616@@ -8,7 +8,7 @@ msgid ""
617 msgstr ""
618 "Project-Id-Version: update-manager\n"
619 "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n"
620-"POT-Creation-Date: 2023-02-22 21:53+0000\n"
621+"POT-Creation-Date: 2023-04-03 16:33+0000\n"
622 "PO-Revision-Date: 2013-05-22 11:00+0000\n"
623 "Last-Translator: Brian Murray <brian@ubuntu.com>\n"
624 "Language-Team: Amharic <am@li.org>\n"
625@@ -918,7 +918,7 @@ msgid "&Upgrade"
626 msgstr "&ማሻሻያ"
627
628 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:154
629-#: ../DistUpgrade/DistUpgradeViewKDE.py:682
630+#: ../DistUpgrade/DistUpgradeViewKDE.py:690
631 msgid "&Cancel"
632 msgstr "&መሰረዣ"
633
634@@ -948,8 +948,8 @@ msgstr "ፋይል %s ከ %s"
635
636 #. print("mediaChange %s %s" % (medium, drive))
637 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:235
638-#: ../DistUpgrade/DistUpgradeViewGtk3.py:125
639-#: ../DistUpgrade/DistUpgradeViewKDE.py:300
640+#: ../DistUpgrade/DistUpgradeViewGtk3.py:127
641+#: ../DistUpgrade/DistUpgradeViewKDE.py:302
642 #, python-format
643 msgid "Please insert '%s' into the drive '%s'"
644 msgstr "እባክዎ ያስገቡ '%s' በመንጂያው ውስጥ '%s'"
645@@ -957,7 +957,7 @@ msgstr "እባክዎ ያስገቡ '%s' በመንጂያው ውስጥ '%s'"
646 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:237
647 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:242
648 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:243
649-#: ../DistUpgrade/DistUpgradeViewKDE.py:301
650+#: ../DistUpgrade/DistUpgradeViewKDE.py:303
651 msgid "Media Change"
652 msgstr "የሜዲያ ለውጥ"
653
654@@ -1226,27 +1226,27 @@ msgstr "የ ዳታ ዳይሬክቶሪ ማሰናጃ"
655 msgid "Upgrade to the development release"
656 msgstr "ማሻሻያ ወደ አበልፃጊዎች እትም"
657
658-#: ../DistUpgrade/DistUpgradeViewGtk3.py:146
659-#: ../DistUpgrade/DistUpgradeViewKDE.py:314
660+#: ../DistUpgrade/DistUpgradeViewGtk3.py:148
661+#: ../DistUpgrade/DistUpgradeViewKDE.py:316
662 msgid "Fetching is complete"
663 msgstr "ሄዶ ማምጣት ተጠናቋል"
664
665-#: ../DistUpgrade/DistUpgradeViewGtk3.py:161
666-#: ../DistUpgrade/DistUpgradeViewKDE.py:330
667+#: ../DistUpgrade/DistUpgradeViewGtk3.py:163
668+#: ../DistUpgrade/DistUpgradeViewKDE.py:332
669 #, python-format
670 msgid "Fetching file %li of %li at %sB/s"
671 msgstr "ፋይል ሄዳ በማምጣት ላይ %li ከ %li ወደ %sቢ/ሰ"
672
673-#: ../DistUpgrade/DistUpgradeViewGtk3.py:163
674-#: ../DistUpgrade/DistUpgradeViewGtk3.py:325
675-#: ../DistUpgrade/DistUpgradeViewKDE.py:331
676-#: ../DistUpgrade/DistUpgradeViewKDE.py:481
677+#: ../DistUpgrade/DistUpgradeViewGtk3.py:165
678+#: ../DistUpgrade/DistUpgradeViewGtk3.py:327
679+#: ../DistUpgrade/DistUpgradeViewKDE.py:333
680+#: ../DistUpgrade/DistUpgradeViewKDE.py:483
681 #, python-format
682 msgid "About %s remaining"
683 msgstr "ስለ %s ቀሪው"
684
685-#: ../DistUpgrade/DistUpgradeViewGtk3.py:166
686-#: ../DistUpgrade/DistUpgradeViewKDE.py:333
687+#: ../DistUpgrade/DistUpgradeViewGtk3.py:168
688+#: ../DistUpgrade/DistUpgradeViewKDE.py:335
689 #, python-format
690 msgid "Fetching file %li of %li"
691 msgstr "ፋይል ሄዶ ማምጣት %li ከ %li"
692@@ -1254,25 +1254,25 @@ msgstr "ፋይል ሄዶ ማምጣት %li ከ %li"
693 #. FIXME: add support for the timeout
694 #. of the terminal (to display something useful then)
695 #. -> longer term, move this code into python-apt
696-#: ../DistUpgrade/DistUpgradeViewGtk3.py:198
697-#: ../DistUpgrade/DistUpgradeViewKDE.py:371
698+#: ../DistUpgrade/DistUpgradeViewGtk3.py:200
699+#: ../DistUpgrade/DistUpgradeViewKDE.py:373
700 msgid "Applying changes"
701 msgstr "ለውጦችን በመፈጸም ላይ"
702
703 #. we do not report followup errors from earlier failures
704-#: ../DistUpgrade/DistUpgradeViewGtk3.py:224
705-#: ../DistUpgrade/DistUpgradeViewKDE.py:384
706+#: ../DistUpgrade/DistUpgradeViewGtk3.py:226
707+#: ../DistUpgrade/DistUpgradeViewKDE.py:386
708 msgid "dependency problems - leaving unconfigured"
709 msgstr "የ ጥገኝነት ችግር - ሳይሰናድ መተው"
710
711-#: ../DistUpgrade/DistUpgradeViewGtk3.py:229
712-#: ../DistUpgrade/DistUpgradeViewKDE.py:386
713+#: ../DistUpgrade/DistUpgradeViewGtk3.py:231
714+#: ../DistUpgrade/DistUpgradeViewKDE.py:388
715 #, python-format
716 msgid "Could not install '%s'"
717 msgstr "መግጠም አልተቻለም '%s'"
718
719-#: ../DistUpgrade/DistUpgradeViewGtk3.py:230
720-#: ../DistUpgrade/DistUpgradeViewKDE.py:387
721+#: ../DistUpgrade/DistUpgradeViewGtk3.py:232
722+#: ../DistUpgrade/DistUpgradeViewKDE.py:389
723 #, python-format
724 msgid ""
725 "The upgrade will continue but the '%s' package may not be in a working "
726@@ -1280,8 +1280,8 @@ msgid ""
727 msgstr "ማሻያው ይቀጥላል ነገር ግን '%s' ጥቅሉ ላይሰራ ይችላል: እባክዎን ችግሩን ያስውቁ"
728
729 #. self.expander.set_expanded(True)
730-#: ../DistUpgrade/DistUpgradeViewGtk3.py:247
731-#: ../DistUpgrade/DistUpgradeViewKDE.py:409
732+#: ../DistUpgrade/DistUpgradeViewGtk3.py:249
733+#: ../DistUpgrade/DistUpgradeViewKDE.py:411
734 #, python-format
735 msgid ""
736 "Replace the customized configuration file\n"
737@@ -1290,24 +1290,24 @@ msgstr ""
738 "የ ተቀየረውን የ ማዋቀሪያ ፋይል ማስተካከያ\n"
739 "'%s'?"
740
741-#: ../DistUpgrade/DistUpgradeViewGtk3.py:248
742-#: ../DistUpgrade/DistUpgradeViewKDE.py:410
743+#: ../DistUpgrade/DistUpgradeViewGtk3.py:250
744+#: ../DistUpgrade/DistUpgradeViewKDE.py:412
745 msgid ""
746 "You will lose any changes you have made to this configuration file if you "
747 "choose to replace it with a newer version."
748 msgstr "እርስዎ የ ቀየሩት ለውጦች በዚህ ማሰናጃ ውስጥ ይጠፋል እርስዎ አዲሱን እትም መቀየር ከ ፈለጉ"
749
750-#: ../DistUpgrade/DistUpgradeViewGtk3.py:268
751-#: ../DistUpgrade/DistUpgradeViewKDE.py:433
752+#: ../DistUpgrade/DistUpgradeViewGtk3.py:270
753+#: ../DistUpgrade/DistUpgradeViewKDE.py:435
754 msgid "The 'diff' command was not found"
755 msgstr "የ 'diff' ትእዛዝ አልተገኘም"
756
757-#: ../DistUpgrade/DistUpgradeViewGtk3.py:535
758+#: ../DistUpgrade/DistUpgradeViewGtk3.py:542
759 #: ../DistUpgrade/DistUpgradeViewText.py:140
760 msgid "A fatal error occurred"
761 msgstr "አደገኛ ስህተት ተፈጥሯል"
762
763-#: ../DistUpgrade/DistUpgradeViewGtk3.py:536
764+#: ../DistUpgrade/DistUpgradeViewGtk3.py:543
765 msgid ""
766 "Please report this as a bug (if you haven't already) and include the files /"
767 "var/log/dist-upgrade/main.log and /var/log/dist-upgrade/apt.log in your "
768@@ -1319,142 +1319,142 @@ msgstr ""
769 "aborted.\n"
770 "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade."
771
772-#: ../DistUpgrade/DistUpgradeViewGtk3.py:566
773+#: ../DistUpgrade/DistUpgradeViewGtk3.py:573
774 msgid "Ctrl-c pressed"
775 msgstr "ኮንትሮል-ሲ መጫን"
776
777-#: ../DistUpgrade/DistUpgradeViewGtk3.py:567
778+#: ../DistUpgrade/DistUpgradeViewGtk3.py:574
779 msgid ""
780 "This will abort the operation and may leave the system in a broken state. "
781 "Are you sure you want to do that?"
782 msgstr "ይህ ተግባሩን ያቋርጣል እና ስርአቱን በተሰበረ ሁኔታ ላይ ይተወዋል ፤ በእርግጥ ይህን ማድረግ ይፈልጋሉ?"
783
784 #. append warning
785-#: ../DistUpgrade/DistUpgradeViewGtk3.py:706
786+#: ../DistUpgrade/DistUpgradeViewGtk3.py:713
787 msgid "To prevent data loss close all open applications and documents."
788 msgstr "የተከፈቱ መተግበሪያዎች እና ሰነዶችን ይዝጉ ዳታዎች እንዳይጠፉ ለመከላከል"
789
790-#: ../DistUpgrade/DistUpgradeViewGtk3.py:720
791+#: ../DistUpgrade/DistUpgradeViewGtk3.py:727
792 #, python-format
793 msgid "No longer supported by Canonical (%s)"
794 msgstr "በ Canonical አይደገፍም (%s)"
795
796-#: ../DistUpgrade/DistUpgradeViewGtk3.py:721
797+#: ../DistUpgrade/DistUpgradeViewGtk3.py:728
798 #, python-format
799 msgid "<b>Downgrade (%s)</b>"
800 msgstr "<b>ዝቅ ማድረጊያ (%s)</b>"
801
802-#: ../DistUpgrade/DistUpgradeViewGtk3.py:722
803+#: ../DistUpgrade/DistUpgradeViewGtk3.py:729
804 #, python-format
805 msgid "Remove (%s)"
806 msgstr "ማስወገጃ (%s)"
807
808-#: ../DistUpgrade/DistUpgradeViewGtk3.py:723
809+#: ../DistUpgrade/DistUpgradeViewGtk3.py:730
810 #, python-format
811 msgid "No longer needed (%s)"
812 msgstr "አስፈላጊ አይደለም (%s)"
813
814-#: ../DistUpgrade/DistUpgradeViewGtk3.py:724
815+#: ../DistUpgrade/DistUpgradeViewGtk3.py:731
816 #, python-format
817 msgid "Install (%s)"
818 msgstr "መግጠሚያ (%s)"
819
820-#: ../DistUpgrade/DistUpgradeViewGtk3.py:725
821+#: ../DistUpgrade/DistUpgradeViewGtk3.py:732
822 #, python-format
823 msgid "Upgrade (%s)"
824 msgstr "ማሻሻያ (%s)"
825
826-#: ../DistUpgrade/DistUpgradeViewGtk3.py:773
827+#: ../DistUpgrade/DistUpgradeViewGtk3.py:780
828 msgid "Cancel"
829 msgstr ""
830
831-#: ../DistUpgrade/DistUpgradeViewGtk3.py:774
832-#: ../DistUpgrade/DistUpgradeViewKDE.py:906
833+#: ../DistUpgrade/DistUpgradeViewGtk3.py:781
834+#: ../DistUpgrade/DistUpgradeViewKDE.py:914
835 msgid "Continue"
836 msgstr ""
837
838-#: ../DistUpgrade/DistUpgradeViewKDE.py:445
839+#: ../DistUpgrade/DistUpgradeViewKDE.py:447
840 msgid "Show Difference >>>"
841 msgstr "ልዩነቱን ማሳያ >>>"
842
843-#: ../DistUpgrade/DistUpgradeViewKDE.py:448
844+#: ../DistUpgrade/DistUpgradeViewKDE.py:450
845 msgid "<<< Hide Difference"
846 msgstr "<<< ልዩነቱን መደበቂያ"
847
848-#: ../DistUpgrade/DistUpgradeViewKDE.py:668
849+#: ../DistUpgrade/DistUpgradeViewKDE.py:676
850 msgid "Error"
851 msgstr "ስህተት"
852
853-#: ../DistUpgrade/DistUpgradeViewKDE.py:686
854-#: ../DistUpgrade/DistUpgradeViewKDE.py:927
855+#: ../DistUpgrade/DistUpgradeViewKDE.py:694
856+#: ../DistUpgrade/DistUpgradeViewKDE.py:935
857 msgid "&Close"
858 msgstr "&መዝጊያ"
859
860-#: ../DistUpgrade/DistUpgradeViewKDE.py:720
861+#: ../DistUpgrade/DistUpgradeViewKDE.py:728
862 msgid "Show Terminal >>>"
863 msgstr "ተርሚናልን ማሳያ >>>"
864
865-#: ../DistUpgrade/DistUpgradeViewKDE.py:723
866+#: ../DistUpgrade/DistUpgradeViewKDE.py:731
867 msgid "<<< Hide Terminal"
868 msgstr "<<< ተርሚናልን መደበቂያ"
869
870-#: ../DistUpgrade/DistUpgradeViewKDE.py:796
871+#: ../DistUpgrade/DistUpgradeViewKDE.py:804
872 msgid "Information"
873 msgstr "መረጃ"
874
875-#: ../DistUpgrade/DistUpgradeViewKDE.py:844
876+#: ../DistUpgrade/DistUpgradeViewKDE.py:852
877 msgid "&Start Upgrade"
878 msgstr "ማሻሻል &ማስጀመሪያ"
879
880-#: ../DistUpgrade/DistUpgradeViewKDE.py:846
881-#: ../DistUpgrade/DistUpgradeViewKDE.py:890
882-#: ../DistUpgrade/DistUpgradeViewKDE.py:893
883+#: ../DistUpgrade/DistUpgradeViewKDE.py:854
884+#: ../DistUpgrade/DistUpgradeViewKDE.py:898
885+#: ../DistUpgrade/DistUpgradeViewKDE.py:901
886 #: ../data/gtkbuilder/DistUpgrade.ui.h:7
887 msgid "Details"
888 msgstr "ዝርዝሮች"
889
890-#: ../DistUpgrade/DistUpgradeViewKDE.py:868
891+#: ../DistUpgrade/DistUpgradeViewKDE.py:876
892 #, python-format
893 msgid "No longer supported %s"
894 msgstr "የ ተደገፈ አይደለም %s"
895
896-#: ../DistUpgrade/DistUpgradeViewKDE.py:870
897+#: ../DistUpgrade/DistUpgradeViewKDE.py:878
898 #, python-format
899 msgid "Remove %s"
900 msgstr "ማስወገጃ %s"
901
902-#: ../DistUpgrade/DistUpgradeViewKDE.py:872
903+#: ../DistUpgrade/DistUpgradeViewKDE.py:880
904 #: ../DistUpgrade/DistUpgradeViewText.py:239
905 #, python-format
906 msgid "Remove (was auto installed) %s"
907 msgstr "ማስወገድ (በራሱ ተገጥሟል) %s"
908
909-#: ../DistUpgrade/DistUpgradeViewKDE.py:874
910+#: ../DistUpgrade/DistUpgradeViewKDE.py:882
911 #, python-format
912 msgid "Install %s"
913 msgstr "መግጠሚያ %s"
914
915-#: ../DistUpgrade/DistUpgradeViewKDE.py:876
916+#: ../DistUpgrade/DistUpgradeViewKDE.py:884
917 #, python-format
918 msgid "Upgrade %s"
919 msgstr "ማሻሻያ %s"
920
921-#: ../DistUpgrade/DistUpgradeViewKDE.py:923
922+#: ../DistUpgrade/DistUpgradeViewKDE.py:931
923 #: ../DistUpgrade/DistUpgradeViewText.py:292
924 msgid "Restart required"
925 msgstr "እንደገና ማስጀመር ያስፈልጋል"
926
927-#: ../DistUpgrade/DistUpgradeViewKDE.py:923
928+#: ../DistUpgrade/DistUpgradeViewKDE.py:931
929 msgid "<b><big>Restart the system to complete the upgrade</big></b>"
930 msgstr "<b><big>እንደገና ማስጀመር ያስፈልጋል ማሻሻያውን ለማጠናቀቅ</big></b>"
931
932-#: ../DistUpgrade/DistUpgradeViewKDE.py:926
933+#: ../DistUpgrade/DistUpgradeViewKDE.py:934
934 #: ../data/gtkbuilder/DistUpgrade.ui.h:14
935 msgid "_Restart Now"
936 msgstr "_አሁን እንደገና ላስጀምር"
937
938 #. FIXME make this user friendly
939-#: ../DistUpgrade/DistUpgradeViewKDE.py:944
940+#: ../DistUpgrade/DistUpgradeViewKDE.py:952
941 msgid ""
942 "<b><big>Cancel the running upgrade?</big></b>\n"
943 "\n"
944@@ -1465,7 +1465,7 @@ msgstr ""
945 "\n"
946 "ማሻሻሉን ከሰረዙት ስርአቱ ባልተረጋጋ ሁኔታ ላይ ይሆናል ፤ ማሻሻሉን አንዲቀጥሉ አጥብቀን እናሳስባለን"
947
948-#: ../DistUpgrade/DistUpgradeViewKDE.py:948
949+#: ../DistUpgrade/DistUpgradeViewKDE.py:956
950 msgid "Cancel Upgrade?"
951 msgstr "ማሻሻሉን ልሰረዝ?"
952
953diff --git a/po/an.po b/po/an.po
954index 505f812..ea2b23e 100644
955--- a/po/an.po
956+++ b/po/an.po
957@@ -8,7 +8,7 @@ msgid ""
958 msgstr ""
959 "Project-Id-Version: update-manager\n"
960 "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n"
961-"POT-Creation-Date: 2023-02-22 21:53+0000\n"
962+"POT-Creation-Date: 2023-04-03 16:33+0000\n"
963 "PO-Revision-Date: 2013-05-22 11:00+0000\n"
964 "Last-Translator: Daniel Martinez <entaltoaragon@gmail.com>\n"
965 "Language-Team: Aragonese <an@li.org>\n"
966@@ -865,7 +865,7 @@ msgid "&Upgrade"
967 msgstr ""
968
969 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:154
970-#: ../DistUpgrade/DistUpgradeViewKDE.py:682
971+#: ../DistUpgrade/DistUpgradeViewKDE.py:690
972 msgid "&Cancel"
973 msgstr ""
974
975@@ -895,8 +895,8 @@ msgstr ""
976
977 #. print("mediaChange %s %s" % (medium, drive))
978 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:235
979-#: ../DistUpgrade/DistUpgradeViewGtk3.py:125
980-#: ../DistUpgrade/DistUpgradeViewKDE.py:300
981+#: ../DistUpgrade/DistUpgradeViewGtk3.py:127
982+#: ../DistUpgrade/DistUpgradeViewKDE.py:302
983 #, python-format
984 msgid "Please insert '%s' into the drive '%s'"
985 msgstr ""
986@@ -904,7 +904,7 @@ msgstr ""
987 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:237
988 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:242
989 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:243
990-#: ../DistUpgrade/DistUpgradeViewKDE.py:301
991+#: ../DistUpgrade/DistUpgradeViewKDE.py:303
992 msgid "Media Change"
993 msgstr ""
994
995@@ -1154,27 +1154,27 @@ msgstr ""
996 msgid "Upgrade to the development release"
997 msgstr ""
998
999-#: ../DistUpgrade/DistUpgradeViewGtk3.py:146
1000-#: ../DistUpgrade/DistUpgradeViewKDE.py:314
1001+#: ../DistUpgrade/DistUpgradeViewGtk3.py:148
1002+#: ../DistUpgrade/DistUpgradeViewKDE.py:316
1003 msgid "Fetching is complete"
1004 msgstr ""
1005
1006-#: ../DistUpgrade/DistUpgradeViewGtk3.py:161
1007-#: ../DistUpgrade/DistUpgradeViewKDE.py:330
1008+#: ../DistUpgrade/DistUpgradeViewGtk3.py:163
1009+#: ../DistUpgrade/DistUpgradeViewKDE.py:332
1010 #, python-format
1011 msgid "Fetching file %li of %li at %sB/s"
1012 msgstr ""
1013
1014-#: ../DistUpgrade/DistUpgradeViewGtk3.py:163
1015-#: ../DistUpgrade/DistUpgradeViewGtk3.py:325
1016-#: ../DistUpgrade/DistUpgradeViewKDE.py:331
1017-#: ../DistUpgrade/DistUpgradeViewKDE.py:481
1018+#: ../DistUpgrade/DistUpgradeViewGtk3.py:165
1019+#: ../DistUpgrade/DistUpgradeViewGtk3.py:327
1020+#: ../DistUpgrade/DistUpgradeViewKDE.py:333
1021+#: ../DistUpgrade/DistUpgradeViewKDE.py:483
1022 #, python-format
1023 msgid "About %s remaining"
1024 msgstr ""
1025
1026-#: ../DistUpgrade/DistUpgradeViewGtk3.py:166
1027-#: ../DistUpgrade/DistUpgradeViewKDE.py:333
1028+#: ../DistUpgrade/DistUpgradeViewGtk3.py:168
1029+#: ../DistUpgrade/DistUpgradeViewKDE.py:335
1030 #, python-format
1031 msgid "Fetching file %li of %li"
1032 msgstr ""
1033@@ -1182,25 +1182,25 @@ msgstr ""
1034 #. FIXME: add support for the timeout
1035 #. of the terminal (to display something useful then)
1036 #. -> longer term, move this code into python-apt
1037-#: ../DistUpgrade/DistUpgradeViewGtk3.py:198
1038-#: ../DistUpgrade/DistUpgradeViewKDE.py:371
1039+#: ../DistUpgrade/DistUpgradeViewGtk3.py:200
1040+#: ../DistUpgrade/DistUpgradeViewKDE.py:373
1041 msgid "Applying changes"
1042 msgstr ""
1043
1044 #. we do not report followup errors from earlier failures
1045-#: ../DistUpgrade/DistUpgradeViewGtk3.py:224
1046-#: ../DistUpgrade/DistUpgradeViewKDE.py:384
1047+#: ../DistUpgrade/DistUpgradeViewGtk3.py:226
1048+#: ../DistUpgrade/DistUpgradeViewKDE.py:386
1049 msgid "dependency problems - leaving unconfigured"
1050 msgstr ""
1051
1052-#: ../DistUpgrade/DistUpgradeViewGtk3.py:229
1053-#: ../DistUpgrade/DistUpgradeViewKDE.py:386
1054+#: ../DistUpgrade/DistUpgradeViewGtk3.py:231
1055+#: ../DistUpgrade/DistUpgradeViewKDE.py:388
1056 #, python-format
1057 msgid "Could not install '%s'"
1058 msgstr ""
1059
1060-#: ../DistUpgrade/DistUpgradeViewGtk3.py:230
1061-#: ../DistUpgrade/DistUpgradeViewKDE.py:387
1062+#: ../DistUpgrade/DistUpgradeViewGtk3.py:232
1063+#: ../DistUpgrade/DistUpgradeViewKDE.py:389
1064 #, python-format
1065 msgid ""
1066 "The upgrade will continue but the '%s' package may not be in a working "
1067@@ -1208,32 +1208,32 @@ msgid ""
1068 msgstr ""
1069
1070 #. self.expander.set_expanded(True)
1071-#: ../DistUpgrade/DistUpgradeViewGtk3.py:247
1072-#: ../DistUpgrade/DistUpgradeViewKDE.py:409
1073+#: ../DistUpgrade/DistUpgradeViewGtk3.py:249
1074+#: ../DistUpgrade/DistUpgradeViewKDE.py:411
1075 #, python-format
1076 msgid ""
1077 "Replace the customized configuration file\n"
1078 "'%s'?"
1079 msgstr ""
1080
1081-#: ../DistUpgrade/DistUpgradeViewGtk3.py:248
1082-#: ../DistUpgrade/DistUpgradeViewKDE.py:410
1083+#: ../DistUpgrade/DistUpgradeViewGtk3.py:250
1084+#: ../DistUpgrade/DistUpgradeViewKDE.py:412
1085 msgid ""
1086 "You will lose any changes you have made to this configuration file if you "
1087 "choose to replace it with a newer version."
1088 msgstr ""
1089
1090-#: ../DistUpgrade/DistUpgradeViewGtk3.py:268
1091-#: ../DistUpgrade/DistUpgradeViewKDE.py:433
1092+#: ../DistUpgrade/DistUpgradeViewGtk3.py:270
1093+#: ../DistUpgrade/DistUpgradeViewKDE.py:435
1094 msgid "The 'diff' command was not found"
1095 msgstr ""
1096
1097-#: ../DistUpgrade/DistUpgradeViewGtk3.py:535
1098+#: ../DistUpgrade/DistUpgradeViewGtk3.py:542
1099 #: ../DistUpgrade/DistUpgradeViewText.py:140
1100 msgid "A fatal error occurred"
1101 msgstr ""
1102
1103-#: ../DistUpgrade/DistUpgradeViewGtk3.py:536
1104+#: ../DistUpgrade/DistUpgradeViewGtk3.py:543
1105 msgid ""
1106 "Please report this as a bug (if you haven't already) and include the files /"
1107 "var/log/dist-upgrade/main.log and /var/log/dist-upgrade/apt.log in your "
1108@@ -1241,142 +1241,142 @@ msgid ""
1109 "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade."
1110 msgstr ""
1111
1112-#: ../DistUpgrade/DistUpgradeViewGtk3.py:566
1113+#: ../DistUpgrade/DistUpgradeViewGtk3.py:573
1114 msgid "Ctrl-c pressed"
1115 msgstr ""
1116
1117-#: ../DistUpgrade/DistUpgradeViewGtk3.py:567
1118+#: ../DistUpgrade/DistUpgradeViewGtk3.py:574
1119 msgid ""
1120 "This will abort the operation and may leave the system in a broken state. "
1121 "Are you sure you want to do that?"
1122 msgstr ""
1123
1124 #. append warning
1125-#: ../DistUpgrade/DistUpgradeViewGtk3.py:706
1126+#: ../DistUpgrade/DistUpgradeViewGtk3.py:713
1127 msgid "To prevent data loss close all open applications and documents."
1128 msgstr ""
1129
1130-#: ../DistUpgrade/DistUpgradeViewGtk3.py:720
1131+#: ../DistUpgrade/DistUpgradeViewGtk3.py:727
1132 #, python-format
1133 msgid "No longer supported by Canonical (%s)"
1134 msgstr ""
1135
1136-#: ../DistUpgrade/DistUpgradeViewGtk3.py:721
1137+#: ../DistUpgrade/DistUpgradeViewGtk3.py:728
1138 #, python-format
1139 msgid "<b>Downgrade (%s)</b>"
1140 msgstr ""
1141
1142-#: ../DistUpgrade/DistUpgradeViewGtk3.py:722
1143+#: ../DistUpgrade/DistUpgradeViewGtk3.py:729
1144 #, python-format
1145 msgid "Remove (%s)"
1146 msgstr ""
1147
1148-#: ../DistUpgrade/DistUpgradeViewGtk3.py:723
1149+#: ../DistUpgrade/DistUpgradeViewGtk3.py:730
1150 #, python-format
1151 msgid "No longer needed (%s)"
1152 msgstr ""
1153
1154-#: ../DistUpgrade/DistUpgradeViewGtk3.py:724
1155+#: ../DistUpgrade/DistUpgradeViewGtk3.py:731
1156 #, python-format
1157 msgid "Install (%s)"
1158 msgstr ""
1159
1160-#: ../DistUpgrade/DistUpgradeViewGtk3.py:725
1161+#: ../DistUpgrade/DistUpgradeViewGtk3.py:732
1162 #, python-format
1163 msgid "Upgrade (%s)"
1164 msgstr ""
1165
1166-#: ../DistUpgrade/DistUpgradeViewGtk3.py:773
1167+#: ../DistUpgrade/DistUpgradeViewGtk3.py:780
1168 msgid "Cancel"
1169 msgstr ""
1170
1171-#: ../DistUpgrade/DistUpgradeViewGtk3.py:774
1172-#: ../DistUpgrade/DistUpgradeViewKDE.py:906
1173+#: ../DistUpgrade/DistUpgradeViewGtk3.py:781
1174+#: ../DistUpgrade/DistUpgradeViewKDE.py:914
1175 msgid "Continue"
1176 msgstr ""
1177
1178-#: ../DistUpgrade/DistUpgradeViewKDE.py:445
1179+#: ../DistUpgrade/DistUpgradeViewKDE.py:447
1180 msgid "Show Difference >>>"
1181 msgstr ""
1182
1183-#: ../DistUpgrade/DistUpgradeViewKDE.py:448
1184+#: ../DistUpgrade/DistUpgradeViewKDE.py:450
1185 msgid "<<< Hide Difference"
1186 msgstr ""
1187
1188-#: ../DistUpgrade/DistUpgradeViewKDE.py:668
1189+#: ../DistUpgrade/DistUpgradeViewKDE.py:676
1190 msgid "Error"
1191 msgstr ""
1192
1193-#: ../DistUpgrade/DistUpgradeViewKDE.py:686
1194-#: ../DistUpgrade/DistUpgradeViewKDE.py:927
1195+#: ../DistUpgrade/DistUpgradeViewKDE.py:694
1196+#: ../DistUpgrade/DistUpgradeViewKDE.py:935
1197 msgid "&Close"
1198 msgstr ""
1199
1200-#: ../DistUpgrade/DistUpgradeViewKDE.py:720
1201+#: ../DistUpgrade/DistUpgradeViewKDE.py:728
1202 msgid "Show Terminal >>>"
1203 msgstr ""
1204
1205-#: ../DistUpgrade/DistUpgradeViewKDE.py:723
1206+#: ../DistUpgrade/DistUpgradeViewKDE.py:731
1207 msgid "<<< Hide Terminal"
1208 msgstr ""
1209
1210-#: ../DistUpgrade/DistUpgradeViewKDE.py:796
1211+#: ../DistUpgrade/DistUpgradeViewKDE.py:804
1212 msgid "Information"
1213 msgstr ""
1214
1215-#: ../DistUpgrade/DistUpgradeViewKDE.py:844
1216+#: ../DistUpgrade/DistUpgradeViewKDE.py:852
1217 msgid "&Start Upgrade"
1218 msgstr ""
1219
1220-#: ../DistUpgrade/DistUpgradeViewKDE.py:846
1221-#: ../DistUpgrade/DistUpgradeViewKDE.py:890
1222-#: ../DistUpgrade/DistUpgradeViewKDE.py:893
1223+#: ../DistUpgrade/DistUpgradeViewKDE.py:854
1224+#: ../DistUpgrade/DistUpgradeViewKDE.py:898
1225+#: ../DistUpgrade/DistUpgradeViewKDE.py:901
1226 #: ../data/gtkbuilder/DistUpgrade.ui.h:7
1227 msgid "Details"
1228 msgstr ""
1229
1230-#: ../DistUpgrade/DistUpgradeViewKDE.py:868
1231+#: ../DistUpgrade/DistUpgradeViewKDE.py:876
1232 #, python-format
1233 msgid "No longer supported %s"
1234 msgstr ""
1235
1236-#: ../DistUpgrade/DistUpgradeViewKDE.py:870
1237+#: ../DistUpgrade/DistUpgradeViewKDE.py:878
1238 #, python-format
1239 msgid "Remove %s"
1240 msgstr ""
1241
1242-#: ../DistUpgrade/DistUpgradeViewKDE.py:872
1243+#: ../DistUpgrade/DistUpgradeViewKDE.py:880
1244 #: ../DistUpgrade/DistUpgradeViewText.py:239
1245 #, python-format
1246 msgid "Remove (was auto installed) %s"
1247 msgstr ""
1248
1249-#: ../DistUpgrade/DistUpgradeViewKDE.py:874
1250+#: ../DistUpgrade/DistUpgradeViewKDE.py:882
1251 #, python-format
1252 msgid "Install %s"
1253 msgstr ""
1254
1255-#: ../DistUpgrade/DistUpgradeViewKDE.py:876
1256+#: ../DistUpgrade/DistUpgradeViewKDE.py:884
1257 #, python-format
1258 msgid "Upgrade %s"
1259 msgstr ""
1260
1261-#: ../DistUpgrade/DistUpgradeViewKDE.py:923
1262+#: ../DistUpgrade/DistUpgradeViewKDE.py:931
1263 #: ../DistUpgrade/DistUpgradeViewText.py:292
1264 msgid "Restart required"
1265 msgstr ""
1266
1267-#: ../DistUpgrade/DistUpgradeViewKDE.py:923
1268+#: ../DistUpgrade/DistUpgradeViewKDE.py:931
1269 msgid "<b><big>Restart the system to complete the upgrade</big></b>"
1270 msgstr ""
1271
1272-#: ../DistUpgrade/DistUpgradeViewKDE.py:926
1273+#: ../DistUpgrade/DistUpgradeViewKDE.py:934
1274 #: ../data/gtkbuilder/DistUpgrade.ui.h:14
1275 msgid "_Restart Now"
1276 msgstr ""
1277
1278 #. FIXME make this user friendly
1279-#: ../DistUpgrade/DistUpgradeViewKDE.py:944
1280+#: ../DistUpgrade/DistUpgradeViewKDE.py:952
1281 msgid ""
1282 "<b><big>Cancel the running upgrade?</big></b>\n"
1283 "\n"
1284@@ -1384,7 +1384,7 @@ msgid ""
1285 "strongly advised to resume the upgrade."
1286 msgstr ""
1287
1288-#: ../DistUpgrade/DistUpgradeViewKDE.py:948
1289+#: ../DistUpgrade/DistUpgradeViewKDE.py:956
1290 msgid "Cancel Upgrade?"
1291 msgstr ""
1292
1293diff --git a/po/ar.po b/po/ar.po
1294index 1eee6df..cb8a04d 100644
1295--- a/po/ar.po
1296+++ b/po/ar.po
1297@@ -10,7 +10,7 @@ msgid ""
1298 msgstr ""
1299 "Project-Id-Version: po_update-manager-ar\n"
1300 "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n"
1301-"POT-Creation-Date: 2023-02-22 21:53+0000\n"
1302+"POT-Creation-Date: 2023-04-03 16:33+0000\n"
1303 "PO-Revision-Date: 2019-06-18 17:52+0000\n"
1304 "Last-Translator: Ibrahim Saed <ibraheem5000@gmail.com>\n"
1305 "Language-Team: Arabic\n"
1306@@ -959,7 +959,7 @@ msgid "&Upgrade"
1307 msgstr ""
1308
1309 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:154
1310-#: ../DistUpgrade/DistUpgradeViewKDE.py:682
1311+#: ../DistUpgrade/DistUpgradeViewKDE.py:690
1312 msgid "&Cancel"
1313 msgstr "أل&غِ"
1314
1315@@ -989,8 +989,8 @@ msgstr "ملف %s من %s"
1316
1317 #. print("mediaChange %s %s" % (medium, drive))
1318 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:235
1319-#: ../DistUpgrade/DistUpgradeViewGtk3.py:125
1320-#: ../DistUpgrade/DistUpgradeViewKDE.py:300
1321+#: ../DistUpgrade/DistUpgradeViewGtk3.py:127
1322+#: ../DistUpgrade/DistUpgradeViewKDE.py:302
1323 #, python-format
1324 msgid "Please insert '%s' into the drive '%s'"
1325 msgstr "رجاء أدرج '%s' في محرك الأقراص '%s'"
1326@@ -998,7 +998,7 @@ msgstr "رجاء أدرج '%s' في محرك الأقراص '%s'"
1327 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:237
1328 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:242
1329 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:243
1330-#: ../DistUpgrade/DistUpgradeViewKDE.py:301
1331+#: ../DistUpgrade/DistUpgradeViewKDE.py:303
1332 msgid "Media Change"
1333 msgstr "تغيير الوسائط"
1334
1335@@ -1272,27 +1272,27 @@ msgstr "حدد مجلد البيانات"
1336 msgid "Upgrade to the development release"
1337 msgstr "الترقية إلى الإصدارة التجريبية"
1338
1339-#: ../DistUpgrade/DistUpgradeViewGtk3.py:146
1340-#: ../DistUpgrade/DistUpgradeViewKDE.py:314
1341+#: ../DistUpgrade/DistUpgradeViewGtk3.py:148
1342+#: ../DistUpgrade/DistUpgradeViewKDE.py:316
1343 msgid "Fetching is complete"
1344 msgstr "اكتمل الجلب"
1345
1346-#: ../DistUpgrade/DistUpgradeViewGtk3.py:161
1347-#: ../DistUpgrade/DistUpgradeViewKDE.py:330
1348+#: ../DistUpgrade/DistUpgradeViewGtk3.py:163
1349+#: ../DistUpgrade/DistUpgradeViewKDE.py:332
1350 #, python-format
1351 msgid "Fetching file %li of %li at %sB/s"
1352 msgstr "يجلب الملف %li من %li بـ %s.بايت/ثانية"
1353
1354-#: ../DistUpgrade/DistUpgradeViewGtk3.py:163
1355-#: ../DistUpgrade/DistUpgradeViewGtk3.py:325
1356-#: ../DistUpgrade/DistUpgradeViewKDE.py:331
1357-#: ../DistUpgrade/DistUpgradeViewKDE.py:481
1358+#: ../DistUpgrade/DistUpgradeViewGtk3.py:165
1359+#: ../DistUpgrade/DistUpgradeViewGtk3.py:327
1360+#: ../DistUpgrade/DistUpgradeViewKDE.py:333
1361+#: ../DistUpgrade/DistUpgradeViewKDE.py:483
1362 #, python-format
1363 msgid "About %s remaining"
1364 msgstr "بقي %s تقريبا"
1365
1366-#: ../DistUpgrade/DistUpgradeViewGtk3.py:166
1367-#: ../DistUpgrade/DistUpgradeViewKDE.py:333
1368+#: ../DistUpgrade/DistUpgradeViewGtk3.py:168
1369+#: ../DistUpgrade/DistUpgradeViewKDE.py:335
1370 #, python-format
1371 msgid "Fetching file %li of %li"
1372 msgstr "يجلب الملف %li من %li"
1373@@ -1300,25 +1300,25 @@ msgstr "يجلب الملف %li من %li"
1374 #. FIXME: add support for the timeout
1375 #. of the terminal (to display something useful then)
1376 #. -> longer term, move this code into python-apt
1377-#: ../DistUpgrade/DistUpgradeViewGtk3.py:198
1378-#: ../DistUpgrade/DistUpgradeViewKDE.py:371
1379+#: ../DistUpgrade/DistUpgradeViewGtk3.py:200
1380+#: ../DistUpgrade/DistUpgradeViewKDE.py:373
1381 msgid "Applying changes"
1382 msgstr "يطبّق التغييرات"
1383
1384 #. we do not report followup errors from earlier failures
1385-#: ../DistUpgrade/DistUpgradeViewGtk3.py:224
1386-#: ../DistUpgrade/DistUpgradeViewKDE.py:384
1387+#: ../DistUpgrade/DistUpgradeViewGtk3.py:226
1388+#: ../DistUpgrade/DistUpgradeViewKDE.py:386
1389 msgid "dependency problems - leaving unconfigured"
1390 msgstr "مشكلة اعتمادية - سأغادر بدون إعداد"
1391
1392-#: ../DistUpgrade/DistUpgradeViewGtk3.py:229
1393-#: ../DistUpgrade/DistUpgradeViewKDE.py:386
1394+#: ../DistUpgrade/DistUpgradeViewGtk3.py:231
1395+#: ../DistUpgrade/DistUpgradeViewKDE.py:388
1396 #, python-format
1397 msgid "Could not install '%s'"
1398 msgstr "تعذّر تثبيت '%s'"
1399
1400-#: ../DistUpgrade/DistUpgradeViewGtk3.py:230
1401-#: ../DistUpgrade/DistUpgradeViewKDE.py:387
1402+#: ../DistUpgrade/DistUpgradeViewGtk3.py:232
1403+#: ../DistUpgrade/DistUpgradeViewKDE.py:389
1404 #, python-format
1405 msgid ""
1406 "The upgrade will continue but the '%s' package may not be in a working "
1407@@ -1326,8 +1326,8 @@ msgid ""
1408 msgstr "ستواصل الترقية لكن حزمة '%s' قد لا تعمل. من فضلك أبلغ عن هذه العلة."
1409
1410 #. self.expander.set_expanded(True)
1411-#: ../DistUpgrade/DistUpgradeViewGtk3.py:247
1412-#: ../DistUpgrade/DistUpgradeViewKDE.py:409
1413+#: ../DistUpgrade/DistUpgradeViewGtk3.py:249
1414+#: ../DistUpgrade/DistUpgradeViewKDE.py:411
1415 #, python-format
1416 msgid ""
1417 "Replace the customized configuration file\n"
1418@@ -1336,8 +1336,8 @@ msgstr ""
1419 "أأستبدل الملف المطوع\n"
1420 "'%s'؟"
1421
1422-#: ../DistUpgrade/DistUpgradeViewGtk3.py:248
1423-#: ../DistUpgrade/DistUpgradeViewKDE.py:410
1424+#: ../DistUpgrade/DistUpgradeViewGtk3.py:250
1425+#: ../DistUpgrade/DistUpgradeViewKDE.py:412
1426 msgid ""
1427 "You will lose any changes you have made to this configuration file if you "
1428 "choose to replace it with a newer version."
1429@@ -1345,17 +1345,17 @@ msgstr ""
1430 "ستفقد أي تغيرات كنت قد أحدثتها في ملف التضبيطات هذا إن اخترت استبداله "
1431 "بإصدارة أحدث."
1432
1433-#: ../DistUpgrade/DistUpgradeViewGtk3.py:268
1434-#: ../DistUpgrade/DistUpgradeViewKDE.py:433
1435+#: ../DistUpgrade/DistUpgradeViewGtk3.py:270
1436+#: ../DistUpgrade/DistUpgradeViewKDE.py:435
1437 msgid "The 'diff' command was not found"
1438 msgstr "تعذّر العثور على أمر 'diff'"
1439
1440-#: ../DistUpgrade/DistUpgradeViewGtk3.py:535
1441+#: ../DistUpgrade/DistUpgradeViewGtk3.py:542
1442 #: ../DistUpgrade/DistUpgradeViewText.py:140
1443 msgid "A fatal error occurred"
1444 msgstr "حدث خطأ فادح"
1445
1446-#: ../DistUpgrade/DistUpgradeViewGtk3.py:536
1447+#: ../DistUpgrade/DistUpgradeViewGtk3.py:543
1448 msgid ""
1449 "Please report this as a bug (if you haven't already) and include the files /"
1450 "var/log/dist-upgrade/main.log and /var/log/dist-upgrade/apt.log in your "
1451@@ -1367,11 +1367,11 @@ msgstr ""
1452 "الترقية.\n"
1453 "ملف sources.list الأصلي حُفِظَ في /etc/apt/sources.list.distUpgrade."
1454
1455-#: ../DistUpgrade/DistUpgradeViewGtk3.py:566
1456+#: ../DistUpgrade/DistUpgradeViewGtk3.py:573
1457 msgid "Ctrl-c pressed"
1458 msgstr "ضُغط Ctrl-c"
1459
1460-#: ../DistUpgrade/DistUpgradeViewGtk3.py:567
1461+#: ../DistUpgrade/DistUpgradeViewGtk3.py:574
1462 msgid ""
1463 "This will abort the operation and may leave the system in a broken state. "
1464 "Are you sure you want to do that?"
1465@@ -1379,131 +1379,131 @@ msgstr ""
1466 "هذا سيجهض العملية وقد يترك النظام في حالة معطوبة. أمتأكد أنك تريد فعل ذلك؟"
1467
1468 #. append warning
1469-#: ../DistUpgrade/DistUpgradeViewGtk3.py:706
1470+#: ../DistUpgrade/DistUpgradeViewGtk3.py:713
1471 msgid "To prevent data loss close all open applications and documents."
1472 msgstr "لتلافي فقد البيانات أغلق جميع التطبيقات والمستندات."
1473
1474-#: ../DistUpgrade/DistUpgradeViewGtk3.py:720
1475+#: ../DistUpgrade/DistUpgradeViewGtk3.py:727
1476 #, python-format
1477 msgid "No longer supported by Canonical (%s)"
1478 msgstr "لم تعد كانونيكال تدعمها (%s)"
1479
1480-#: ../DistUpgrade/DistUpgradeViewGtk3.py:721
1481+#: ../DistUpgrade/DistUpgradeViewGtk3.py:728
1482 #, python-format
1483 msgid "<b>Downgrade (%s)</b>"
1484 msgstr "<b>إلى إصدارة أقدم (%s)</b>"
1485
1486-#: ../DistUpgrade/DistUpgradeViewGtk3.py:722
1487+#: ../DistUpgrade/DistUpgradeViewGtk3.py:729
1488 #, python-format
1489 msgid "Remove (%s)"
1490 msgstr "أزل (%s)"
1491
1492-#: ../DistUpgrade/DistUpgradeViewGtk3.py:723
1493+#: ../DistUpgrade/DistUpgradeViewGtk3.py:730
1494 #, python-format
1495 msgid "No longer needed (%s)"
1496 msgstr "لم تعد مطلوبة (%s)"
1497
1498-#: ../DistUpgrade/DistUpgradeViewGtk3.py:724
1499+#: ../DistUpgrade/DistUpgradeViewGtk3.py:731
1500 #, python-format
1501 msgid "Install (%s)"
1502 msgstr "تثبيت (%s)"
1503
1504-#: ../DistUpgrade/DistUpgradeViewGtk3.py:725
1505+#: ../DistUpgrade/DistUpgradeViewGtk3.py:732
1506 #, python-format
1507 msgid "Upgrade (%s)"
1508 msgstr "ترقية (%s)"
1509
1510-#: ../DistUpgrade/DistUpgradeViewGtk3.py:773
1511+#: ../DistUpgrade/DistUpgradeViewGtk3.py:780
1512 msgid "Cancel"
1513 msgstr ""
1514
1515-#: ../DistUpgrade/DistUpgradeViewGtk3.py:774
1516-#: ../DistUpgrade/DistUpgradeViewKDE.py:906
1517+#: ../DistUpgrade/DistUpgradeViewGtk3.py:781
1518+#: ../DistUpgrade/DistUpgradeViewKDE.py:914
1519 msgid "Continue"
1520 msgstr ""
1521
1522-#: ../DistUpgrade/DistUpgradeViewKDE.py:445
1523+#: ../DistUpgrade/DistUpgradeViewKDE.py:447
1524 msgid "Show Difference >>>"
1525 msgstr "أظهر الفرق >>>"
1526
1527-#: ../DistUpgrade/DistUpgradeViewKDE.py:448
1528+#: ../DistUpgrade/DistUpgradeViewKDE.py:450
1529 msgid "<<< Hide Difference"
1530 msgstr "<<< أخف الفرق"
1531
1532-#: ../DistUpgrade/DistUpgradeViewKDE.py:668
1533+#: ../DistUpgrade/DistUpgradeViewKDE.py:676
1534 msgid "Error"
1535 msgstr "خطأ"
1536
1537-#: ../DistUpgrade/DistUpgradeViewKDE.py:686
1538-#: ../DistUpgrade/DistUpgradeViewKDE.py:927
1539+#: ../DistUpgrade/DistUpgradeViewKDE.py:694
1540+#: ../DistUpgrade/DistUpgradeViewKDE.py:935
1541 msgid "&Close"
1542 msgstr "أ&غلق"
1543
1544-#: ../DistUpgrade/DistUpgradeViewKDE.py:720
1545+#: ../DistUpgrade/DistUpgradeViewKDE.py:728
1546 msgid "Show Terminal >>>"
1547 msgstr "أظهر الطرفية >>>"
1548
1549-#: ../DistUpgrade/DistUpgradeViewKDE.py:723
1550+#: ../DistUpgrade/DistUpgradeViewKDE.py:731
1551 msgid "<<< Hide Terminal"
1552 msgstr "<<< أخف الطرفية"
1553
1554-#: ../DistUpgrade/DistUpgradeViewKDE.py:796
1555+#: ../DistUpgrade/DistUpgradeViewKDE.py:804
1556 msgid "Information"
1557 msgstr "معلومات"
1558
1559-#: ../DistUpgrade/DistUpgradeViewKDE.py:844
1560+#: ../DistUpgrade/DistUpgradeViewKDE.py:852
1561 msgid "&Start Upgrade"
1562 msgstr ""
1563
1564-#: ../DistUpgrade/DistUpgradeViewKDE.py:846
1565-#: ../DistUpgrade/DistUpgradeViewKDE.py:890
1566-#: ../DistUpgrade/DistUpgradeViewKDE.py:893
1567+#: ../DistUpgrade/DistUpgradeViewKDE.py:854
1568+#: ../DistUpgrade/DistUpgradeViewKDE.py:898
1569+#: ../DistUpgrade/DistUpgradeViewKDE.py:901
1570 #: ../data/gtkbuilder/DistUpgrade.ui.h:7
1571 msgid "Details"
1572 msgstr "التّفاصيل"
1573
1574-#: ../DistUpgrade/DistUpgradeViewKDE.py:868
1575+#: ../DistUpgrade/DistUpgradeViewKDE.py:876
1576 #, python-format
1577 msgid "No longer supported %s"
1578 msgstr "لم تعد مدعومة %s"
1579
1580-#: ../DistUpgrade/DistUpgradeViewKDE.py:870
1581+#: ../DistUpgrade/DistUpgradeViewKDE.py:878
1582 #, python-format
1583 msgid "Remove %s"
1584 msgstr "أزل %s"
1585
1586-#: ../DistUpgrade/DistUpgradeViewKDE.py:872
1587+#: ../DistUpgrade/DistUpgradeViewKDE.py:880
1588 #: ../DistUpgrade/DistUpgradeViewText.py:239
1589 #, python-format
1590 msgid "Remove (was auto installed) %s"
1591 msgstr "أزل %s (ثبّت تلقائيا)"
1592
1593-#: ../DistUpgrade/DistUpgradeViewKDE.py:874
1594+#: ../DistUpgrade/DistUpgradeViewKDE.py:882
1595 #, python-format
1596 msgid "Install %s"
1597 msgstr "ثبّت %s"
1598
1599-#: ../DistUpgrade/DistUpgradeViewKDE.py:876
1600+#: ../DistUpgrade/DistUpgradeViewKDE.py:884
1601 #, python-format
1602 msgid "Upgrade %s"
1603 msgstr "رقِّ %s"
1604
1605-#: ../DistUpgrade/DistUpgradeViewKDE.py:923
1606+#: ../DistUpgrade/DistUpgradeViewKDE.py:931
1607 #: ../DistUpgrade/DistUpgradeViewText.py:292
1608 msgid "Restart required"
1609 msgstr "إعادة التشغيل مطلوبة"
1610
1611-#: ../DistUpgrade/DistUpgradeViewKDE.py:923
1612+#: ../DistUpgrade/DistUpgradeViewKDE.py:931
1613 msgid "<b><big>Restart the system to complete the upgrade</big></b>"
1614 msgstr "<b><big>أعد تشغيل النظام لإتمام الترقية</big><b>"
1615
1616-#: ../DistUpgrade/DistUpgradeViewKDE.py:926
1617+#: ../DistUpgrade/DistUpgradeViewKDE.py:934
1618 #: ../data/gtkbuilder/DistUpgrade.ui.h:14
1619 msgid "_Restart Now"
1620 msgstr "أ_عد التشغيل الآن"
1621
1622 #. FIXME make this user friendly
1623-#: ../DistUpgrade/DistUpgradeViewKDE.py:944
1624+#: ../DistUpgrade/DistUpgradeViewKDE.py:952
1625 msgid ""
1626 "<b><big>Cancel the running upgrade?</big></b>\n"
1627 "\n"
1628@@ -1515,7 +1515,7 @@ msgstr ""
1629 "قد يصبح النظام في حالة غير صالحة للاستعمال إذا ألغيت الترقية. ننصح بشدة "
1630 "استئناف الترقية."
1631
1632-#: ../DistUpgrade/DistUpgradeViewKDE.py:948
1633+#: ../DistUpgrade/DistUpgradeViewKDE.py:956
1634 msgid "Cancel Upgrade?"
1635 msgstr "أألغي الترقية؟"
1636
1637diff --git a/po/ast.po b/po/ast.po
1638index 5bf3aca..53ba0a5 100644
1639--- a/po/ast.po
1640+++ b/po/ast.po
1641@@ -8,7 +8,7 @@ msgid ""
1642 msgstr ""
1643 "Project-Id-Version: update-manager\n"
1644 "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n"
1645-"POT-Creation-Date: 2023-02-22 21:53+0000\n"
1646+"POT-Creation-Date: 2023-04-03 16:33+0000\n"
1647 "PO-Revision-Date: 2019-06-18 17:54+0000\n"
1648 "Last-Translator: ivarela <ivarela@ubuntu.com>\n"
1649 "Language-Team: Asturian <ast@li.org>\n"
1650@@ -953,7 +953,7 @@ msgid "&Upgrade"
1651 msgstr "&Anovar"
1652
1653 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:154
1654-#: ../DistUpgrade/DistUpgradeViewKDE.py:682
1655+#: ../DistUpgrade/DistUpgradeViewKDE.py:690
1656 msgid "&Cancel"
1657 msgstr "En&caboxar"
1658
1659@@ -983,8 +983,8 @@ msgstr "Ficheru %s de %s"
1660
1661 #. print("mediaChange %s %s" % (medium, drive))
1662 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:235
1663-#: ../DistUpgrade/DistUpgradeViewGtk3.py:125
1664-#: ../DistUpgrade/DistUpgradeViewKDE.py:300
1665+#: ../DistUpgrade/DistUpgradeViewGtk3.py:127
1666+#: ../DistUpgrade/DistUpgradeViewKDE.py:302
1667 #, python-format
1668 msgid "Please insert '%s' into the drive '%s'"
1669 msgstr "Por favor, inserta '%s' nel dispositivu '%s'"
1670@@ -992,7 +992,7 @@ msgstr "Por favor, inserta '%s' nel dispositivu '%s'"
1671 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:237
1672 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:242
1673 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:243
1674-#: ../DistUpgrade/DistUpgradeViewKDE.py:301
1675+#: ../DistUpgrade/DistUpgradeViewKDE.py:303
1676 msgid "Media Change"
1677 msgstr "Cambéu de preséu"
1678
1679@@ -1278,27 +1278,27 @@ msgstr "Afitar datadir"
1680 msgid "Upgrade to the development release"
1681 msgstr "Anovar a la versión en desendolcu"
1682
1683-#: ../DistUpgrade/DistUpgradeViewGtk3.py:146
1684-#: ../DistUpgrade/DistUpgradeViewKDE.py:314
1685+#: ../DistUpgrade/DistUpgradeViewGtk3.py:148
1686+#: ../DistUpgrade/DistUpgradeViewKDE.py:316
1687 msgid "Fetching is complete"
1688 msgstr "La descarga completóse"
1689
1690-#: ../DistUpgrade/DistUpgradeViewGtk3.py:161
1691-#: ../DistUpgrade/DistUpgradeViewKDE.py:330
1692+#: ../DistUpgrade/DistUpgradeViewGtk3.py:163
1693+#: ../DistUpgrade/DistUpgradeViewKDE.py:332
1694 #, python-format
1695 msgid "Fetching file %li of %li at %sB/s"
1696 msgstr "Descargando ficheru %li de %li a %sB/s"
1697
1698-#: ../DistUpgrade/DistUpgradeViewGtk3.py:163
1699-#: ../DistUpgrade/DistUpgradeViewGtk3.py:325
1700-#: ../DistUpgrade/DistUpgradeViewKDE.py:331
1701-#: ../DistUpgrade/DistUpgradeViewKDE.py:481
1702+#: ../DistUpgrade/DistUpgradeViewGtk3.py:165
1703+#: ../DistUpgrade/DistUpgradeViewGtk3.py:327
1704+#: ../DistUpgrade/DistUpgradeViewKDE.py:333
1705+#: ../DistUpgrade/DistUpgradeViewKDE.py:483
1706 #, python-format
1707 msgid "About %s remaining"
1708 msgstr "Falten al rodiu de %s"
1709
1710-#: ../DistUpgrade/DistUpgradeViewGtk3.py:166
1711-#: ../DistUpgrade/DistUpgradeViewKDE.py:333
1712+#: ../DistUpgrade/DistUpgradeViewGtk3.py:168
1713+#: ../DistUpgrade/DistUpgradeViewKDE.py:335
1714 #, python-format
1715 msgid "Fetching file %li of %li"
1716 msgstr "Descargando ficheru %li de %li"
1717@@ -1306,25 +1306,25 @@ msgstr "Descargando ficheru %li de %li"
1718 #. FIXME: add support for the timeout
1719 #. of the terminal (to display something useful then)
1720 #. -> longer term, move this code into python-apt
1721-#: ../DistUpgrade/DistUpgradeViewGtk3.py:198
1722-#: ../DistUpgrade/DistUpgradeViewKDE.py:371
1723+#: ../DistUpgrade/DistUpgradeViewGtk3.py:200
1724+#: ../DistUpgrade/DistUpgradeViewKDE.py:373
1725 msgid "Applying changes"
1726 msgstr "Aplicando cambeos"
1727
1728 #. we do not report followup errors from earlier failures
1729-#: ../DistUpgrade/DistUpgradeViewGtk3.py:224
1730-#: ../DistUpgrade/DistUpgradeViewKDE.py:384
1731+#: ../DistUpgrade/DistUpgradeViewGtk3.py:226
1732+#: ../DistUpgrade/DistUpgradeViewKDE.py:386
1733 msgid "dependency problems - leaving unconfigured"
1734 msgstr "problemes de dependencies - déxase ensin configurar"
1735
1736-#: ../DistUpgrade/DistUpgradeViewGtk3.py:229
1737-#: ../DistUpgrade/DistUpgradeViewKDE.py:386
1738+#: ../DistUpgrade/DistUpgradeViewGtk3.py:231
1739+#: ../DistUpgrade/DistUpgradeViewKDE.py:388
1740 #, python-format
1741 msgid "Could not install '%s'"
1742 msgstr "Nun puede istalase '%s'"
1743
1744-#: ../DistUpgrade/DistUpgradeViewGtk3.py:230
1745-#: ../DistUpgrade/DistUpgradeViewKDE.py:387
1746+#: ../DistUpgrade/DistUpgradeViewGtk3.py:232
1747+#: ../DistUpgrade/DistUpgradeViewKDE.py:389
1748 #, python-format
1749 msgid ""
1750 "The upgrade will continue but the '%s' package may not be in a working "
1751@@ -1334,16 +1334,16 @@ msgstr ""
1752 "Por favor, considera unviar un informe col fallu tocante a esti problema."
1753
1754 #. self.expander.set_expanded(True)
1755-#: ../DistUpgrade/DistUpgradeViewGtk3.py:247
1756-#: ../DistUpgrade/DistUpgradeViewKDE.py:409
1757+#: ../DistUpgrade/DistUpgradeViewGtk3.py:249
1758+#: ../DistUpgrade/DistUpgradeViewKDE.py:411
1759 #, python-format
1760 msgid ""
1761 "Replace the customized configuration file\n"
1762 "'%s'?"
1763 msgstr "¿Deseya sustituyir el ficheru de configuración modificáu«%s»?"
1764
1765-#: ../DistUpgrade/DistUpgradeViewGtk3.py:248
1766-#: ../DistUpgrade/DistUpgradeViewKDE.py:410
1767+#: ../DistUpgrade/DistUpgradeViewGtk3.py:250
1768+#: ../DistUpgrade/DistUpgradeViewKDE.py:412
1769 msgid ""
1770 "You will lose any changes you have made to this configuration file if you "
1771 "choose to replace it with a newer version."
1772@@ -1351,17 +1351,17 @@ msgstr ""
1773 "Perderá tolos cambeos que tenga fecho nesi ficheru de configuración si "
1774 "decide sustituyilu por una nueva versión."
1775
1776-#: ../DistUpgrade/DistUpgradeViewGtk3.py:268
1777-#: ../DistUpgrade/DistUpgradeViewKDE.py:433
1778+#: ../DistUpgrade/DistUpgradeViewGtk3.py:270
1779+#: ../DistUpgrade/DistUpgradeViewKDE.py:435
1780 msgid "The 'diff' command was not found"
1781 msgstr "El comandu 'diff' nun fue atopau"
1782
1783-#: ../DistUpgrade/DistUpgradeViewGtk3.py:535
1784+#: ../DistUpgrade/DistUpgradeViewGtk3.py:542
1785 #: ../DistUpgrade/DistUpgradeViewText.py:140
1786 msgid "A fatal error occurred"
1787 msgstr "Ocurrió un error fatal"
1788
1789-#: ../DistUpgrade/DistUpgradeViewGtk3.py:536
1790+#: ../DistUpgrade/DistUpgradeViewGtk3.py:543
1791 msgid ""
1792 "Please report this as a bug (if you haven't already) and include the files /"
1793 "var/log/dist-upgrade/main.log and /var/log/dist-upgrade/apt.log in your "
1794@@ -1374,11 +1374,11 @@ msgstr ""
1795 "El ficheru sources.list orixinal guardóse en /etc/apt/sources.list."
1796 "distUpgrade."
1797
1798-#: ../DistUpgrade/DistUpgradeViewGtk3.py:566
1799+#: ../DistUpgrade/DistUpgradeViewGtk3.py:573
1800 msgid "Ctrl-c pressed"
1801 msgstr "Calcóse Ctrl-C"
1802
1803-#: ../DistUpgrade/DistUpgradeViewGtk3.py:567
1804+#: ../DistUpgrade/DistUpgradeViewGtk3.py:574
1805 msgid ""
1806 "This will abort the operation and may leave the system in a broken state. "
1807 "Are you sure you want to do that?"
1808@@ -1387,133 +1387,133 @@ msgstr ""
1809 "¿Daveres que quier facer eso?"
1810
1811 #. append warning
1812-#: ../DistUpgrade/DistUpgradeViewGtk3.py:706
1813+#: ../DistUpgrade/DistUpgradeViewGtk3.py:713
1814 msgid "To prevent data loss close all open applications and documents."
1815 msgstr ""
1816 "Pa prevenir la perda de datos, zarra toles aplicaciones y documentos "
1817 "abiertos."
1818
1819-#: ../DistUpgrade/DistUpgradeViewGtk3.py:720
1820+#: ../DistUpgrade/DistUpgradeViewGtk3.py:727
1821 #, python-format
1822 msgid "No longer supported by Canonical (%s)"
1823 msgstr "Yá nun ta sofitáu téunicamente por Canonical (%s)"
1824
1825-#: ../DistUpgrade/DistUpgradeViewGtk3.py:721
1826+#: ../DistUpgrade/DistUpgradeViewGtk3.py:728
1827 #, python-format
1828 msgid "<b>Downgrade (%s)</b>"
1829 msgstr "<b>Desanovar (%s)</b>"
1830
1831-#: ../DistUpgrade/DistUpgradeViewGtk3.py:722
1832+#: ../DistUpgrade/DistUpgradeViewGtk3.py:729
1833 #, python-format
1834 msgid "Remove (%s)"
1835 msgstr "Desaniciar (%s)"
1836
1837-#: ../DistUpgrade/DistUpgradeViewGtk3.py:723
1838+#: ../DistUpgrade/DistUpgradeViewGtk3.py:730
1839 #, python-format
1840 msgid "No longer needed (%s)"
1841 msgstr "Yá nun fai falta (%s)"
1842
1843-#: ../DistUpgrade/DistUpgradeViewGtk3.py:724
1844+#: ../DistUpgrade/DistUpgradeViewGtk3.py:731
1845 #, python-format
1846 msgid "Install (%s)"
1847 msgstr "Instalar (%s)"
1848
1849-#: ../DistUpgrade/DistUpgradeViewGtk3.py:725
1850+#: ../DistUpgrade/DistUpgradeViewGtk3.py:732
1851 #, python-format
1852 msgid "Upgrade (%s)"
1853 msgstr "Anovar (%s)"
1854
1855-#: ../DistUpgrade/DistUpgradeViewGtk3.py:773
1856+#: ../DistUpgrade/DistUpgradeViewGtk3.py:780
1857 msgid "Cancel"
1858 msgstr ""
1859
1860-#: ../DistUpgrade/DistUpgradeViewGtk3.py:774
1861-#: ../DistUpgrade/DistUpgradeViewKDE.py:906
1862+#: ../DistUpgrade/DistUpgradeViewGtk3.py:781
1863+#: ../DistUpgrade/DistUpgradeViewKDE.py:914
1864 msgid "Continue"
1865 msgstr ""
1866
1867-#: ../DistUpgrade/DistUpgradeViewKDE.py:445
1868+#: ../DistUpgrade/DistUpgradeViewKDE.py:447
1869 msgid "Show Difference >>>"
1870 msgstr "Amosar diferencies >>>"
1871
1872-#: ../DistUpgrade/DistUpgradeViewKDE.py:448
1873+#: ../DistUpgrade/DistUpgradeViewKDE.py:450
1874 msgid "<<< Hide Difference"
1875 msgstr "<<< Soverar diferencies"
1876
1877-#: ../DistUpgrade/DistUpgradeViewKDE.py:668
1878+#: ../DistUpgrade/DistUpgradeViewKDE.py:676
1879 msgid "Error"
1880 msgstr "Fallu"
1881
1882-#: ../DistUpgrade/DistUpgradeViewKDE.py:686
1883-#: ../DistUpgrade/DistUpgradeViewKDE.py:927
1884+#: ../DistUpgrade/DistUpgradeViewKDE.py:694
1885+#: ../DistUpgrade/DistUpgradeViewKDE.py:935
1886 msgid "&Close"
1887 msgstr "&Zarrar"
1888
1889-#: ../DistUpgrade/DistUpgradeViewKDE.py:720
1890+#: ../DistUpgrade/DistUpgradeViewKDE.py:728
1891 msgid "Show Terminal >>>"
1892 msgstr "Amosar terminal >>>"
1893
1894-#: ../DistUpgrade/DistUpgradeViewKDE.py:723
1895+#: ../DistUpgrade/DistUpgradeViewKDE.py:731
1896 msgid "<<< Hide Terminal"
1897 msgstr "<<< Soverar terminal"
1898
1899-#: ../DistUpgrade/DistUpgradeViewKDE.py:796
1900+#: ../DistUpgrade/DistUpgradeViewKDE.py:804
1901 msgid "Information"
1902 msgstr "Información"
1903
1904-#: ../DistUpgrade/DistUpgradeViewKDE.py:844
1905+#: ../DistUpgrade/DistUpgradeViewKDE.py:852
1906 msgid "&Start Upgrade"
1907 msgstr "&Aniciar anovamientu"
1908
1909-#: ../DistUpgrade/DistUpgradeViewKDE.py:846
1910-#: ../DistUpgrade/DistUpgradeViewKDE.py:890
1911-#: ../DistUpgrade/DistUpgradeViewKDE.py:893
1912+#: ../DistUpgrade/DistUpgradeViewKDE.py:854
1913+#: ../DistUpgrade/DistUpgradeViewKDE.py:898
1914+#: ../DistUpgrade/DistUpgradeViewKDE.py:901
1915 #: ../data/gtkbuilder/DistUpgrade.ui.h:7
1916 msgid "Details"
1917 msgstr "Detalles"
1918
1919-#: ../DistUpgrade/DistUpgradeViewKDE.py:868
1920+#: ../DistUpgrade/DistUpgradeViewKDE.py:876
1921 #, python-format
1922 msgid "No longer supported %s"
1923 msgstr "Yá nun ta sofitáu %s"
1924
1925-#: ../DistUpgrade/DistUpgradeViewKDE.py:870
1926+#: ../DistUpgrade/DistUpgradeViewKDE.py:878
1927 #, python-format
1928 msgid "Remove %s"
1929 msgstr "Esaniciar %s"
1930
1931-#: ../DistUpgrade/DistUpgradeViewKDE.py:872
1932+#: ../DistUpgrade/DistUpgradeViewKDE.py:880
1933 #: ../DistUpgrade/DistUpgradeViewText.py:239
1934 #, python-format
1935 msgid "Remove (was auto installed) %s"
1936 msgstr "Desaniciar (autoinstalóse) %s"
1937
1938-#: ../DistUpgrade/DistUpgradeViewKDE.py:874
1939+#: ../DistUpgrade/DistUpgradeViewKDE.py:882
1940 #, python-format
1941 msgid "Install %s"
1942 msgstr "Instalar %s"
1943
1944-#: ../DistUpgrade/DistUpgradeViewKDE.py:876
1945+#: ../DistUpgrade/DistUpgradeViewKDE.py:884
1946 #, python-format
1947 msgid "Upgrade %s"
1948 msgstr "Anovar %s"
1949
1950-#: ../DistUpgrade/DistUpgradeViewKDE.py:923
1951+#: ../DistUpgrade/DistUpgradeViewKDE.py:931
1952 #: ../DistUpgrade/DistUpgradeViewText.py:292
1953 msgid "Restart required"
1954 msgstr "Necesítase reaniciar"
1955
1956-#: ../DistUpgrade/DistUpgradeViewKDE.py:923
1957+#: ../DistUpgrade/DistUpgradeViewKDE.py:931
1958 msgid "<b><big>Restart the system to complete the upgrade</big></b>"
1959 msgstr "<b><big>Reanicia'l sistema pa completar l'anovamientu</big></b>"
1960
1961-#: ../DistUpgrade/DistUpgradeViewKDE.py:926
1962+#: ../DistUpgrade/DistUpgradeViewKDE.py:934
1963 #: ../data/gtkbuilder/DistUpgrade.ui.h:14
1964 msgid "_Restart Now"
1965 msgstr "_Reaniciar agora"
1966
1967 #. FIXME make this user friendly
1968-#: ../DistUpgrade/DistUpgradeViewKDE.py:944
1969+#: ../DistUpgrade/DistUpgradeViewKDE.py:952
1970 msgid ""
1971 "<b><big>Cancel the running upgrade?</big></b>\n"
1972 "\n"
1973@@ -1525,7 +1525,7 @@ msgstr ""
1974 "El sistema podría quedar nun estáu non usable si encaboxa l'anovamientu. "
1975 "Encamentámos-y que siga col anovamientu."
1976
1977-#: ../DistUpgrade/DistUpgradeViewKDE.py:948
1978+#: ../DistUpgrade/DistUpgradeViewKDE.py:956
1979 msgid "Cancel Upgrade?"
1980 msgstr "¿Encaboxar l'anovamientu?"
1981
1982diff --git a/po/az.po b/po/az.po
1983index 366f8ee..bda3a1c 100644
1984--- a/po/az.po
1985+++ b/po/az.po
1986@@ -8,7 +8,7 @@ msgid ""
1987 msgstr ""
1988 "Project-Id-Version: update-manager\n"
1989 "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n"
1990-"POT-Creation-Date: 2023-02-22 21:53+0000\n"
1991+"POT-Creation-Date: 2023-04-03 16:33+0000\n"
1992 "PO-Revision-Date: 2013-05-22 11:00+0000\n"
1993 "Last-Translator: Emin Mastizadeh <emin25@ovi.com>\n"
1994 "Language-Team: Azerbaijani <az@li.org>\n"
1995@@ -850,7 +850,7 @@ msgid "&Upgrade"
1996 msgstr ""
1997
1998 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:154
1999-#: ../DistUpgrade/DistUpgradeViewKDE.py:682
2000+#: ../DistUpgrade/DistUpgradeViewKDE.py:690
2001 msgid "&Cancel"
2002 msgstr ""
2003
2004@@ -880,8 +880,8 @@ msgstr ""
2005
2006 #. print("mediaChange %s %s" % (medium, drive))
2007 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:235
2008-#: ../DistUpgrade/DistUpgradeViewGtk3.py:125
2009-#: ../DistUpgrade/DistUpgradeViewKDE.py:300
2010+#: ../DistUpgrade/DistUpgradeViewGtk3.py:127
2011+#: ../DistUpgrade/DistUpgradeViewKDE.py:302
2012 #, python-format
2013 msgid "Please insert '%s' into the drive '%s'"
2014 msgstr "Xaiş olunur '%s' mənbəyini '%s' sürücüsünə yerləşdirin"
2015@@ -889,7 +889,7 @@ msgstr "Xaiş olunur '%s' mənbəyini '%s' sürücüsünə yerləşdirin"
2016 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:237
2017 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:242
2018 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:243
2019-#: ../DistUpgrade/DistUpgradeViewKDE.py:301
2020+#: ../DistUpgrade/DistUpgradeViewKDE.py:303
2021 msgid "Media Change"
2022 msgstr ""
2023
2024@@ -1139,27 +1139,27 @@ msgstr ""
2025 msgid "Upgrade to the development release"
2026 msgstr ""
2027
2028-#: ../DistUpgrade/DistUpgradeViewGtk3.py:146
2029-#: ../DistUpgrade/DistUpgradeViewKDE.py:314
2030+#: ../DistUpgrade/DistUpgradeViewGtk3.py:148
2031+#: ../DistUpgrade/DistUpgradeViewKDE.py:316
2032 msgid "Fetching is complete"
2033 msgstr "Paketlərin alınması başa çatdı"
2034
2035-#: ../DistUpgrade/DistUpgradeViewGtk3.py:161
2036-#: ../DistUpgrade/DistUpgradeViewKDE.py:330
2037+#: ../DistUpgrade/DistUpgradeViewGtk3.py:163
2038+#: ../DistUpgrade/DistUpgradeViewKDE.py:332
2039 #, python-format
2040 msgid "Fetching file %li of %li at %sB/s"
2041 msgstr ""
2042
2043-#: ../DistUpgrade/DistUpgradeViewGtk3.py:163
2044-#: ../DistUpgrade/DistUpgradeViewGtk3.py:325
2045-#: ../DistUpgrade/DistUpgradeViewKDE.py:331
2046-#: ../DistUpgrade/DistUpgradeViewKDE.py:481
2047+#: ../DistUpgrade/DistUpgradeViewGtk3.py:165
2048+#: ../DistUpgrade/DistUpgradeViewGtk3.py:327
2049+#: ../DistUpgrade/DistUpgradeViewKDE.py:333
2050+#: ../DistUpgrade/DistUpgradeViewKDE.py:483
2051 #, python-format
2052 msgid "About %s remaining"
2053 msgstr "Təxminən %s qalıb"
2054
2055-#: ../DistUpgrade/DistUpgradeViewGtk3.py:166
2056-#: ../DistUpgrade/DistUpgradeViewKDE.py:333
2057+#: ../DistUpgrade/DistUpgradeViewGtk3.py:168
2058+#: ../DistUpgrade/DistUpgradeViewKDE.py:335
2059 #, python-format
2060 msgid "Fetching file %li of %li"
2061 msgstr ""
2062@@ -1167,25 +1167,25 @@ msgstr ""
2063 #. FIXME: add support for the timeout
2064 #. of the terminal (to display something useful then)
2065 #. -> longer term, move this code into python-apt
2066-#: ../DistUpgrade/DistUpgradeViewGtk3.py:198
2067-#: ../DistUpgrade/DistUpgradeViewKDE.py:371
2068+#: ../DistUpgrade/DistUpgradeViewGtk3.py:200
2069+#: ../DistUpgrade/DistUpgradeViewKDE.py:373
2070 msgid "Applying changes"
2071 msgstr "Dəyişikliklər tətbiq olunur"
2072
2073 #. we do not report followup errors from earlier failures
2074-#: ../DistUpgrade/DistUpgradeViewGtk3.py:224
2075-#: ../DistUpgrade/DistUpgradeViewKDE.py:384
2076+#: ../DistUpgrade/DistUpgradeViewGtk3.py:226
2077+#: ../DistUpgrade/DistUpgradeViewKDE.py:386
2078 msgid "dependency problems - leaving unconfigured"
2079 msgstr ""
2080
2081-#: ../DistUpgrade/DistUpgradeViewGtk3.py:229
2082-#: ../DistUpgrade/DistUpgradeViewKDE.py:386
2083+#: ../DistUpgrade/DistUpgradeViewGtk3.py:231
2084+#: ../DistUpgrade/DistUpgradeViewKDE.py:388
2085 #, python-format
2086 msgid "Could not install '%s'"
2087 msgstr "'%s' qurula bilmədi"
2088
2089-#: ../DistUpgrade/DistUpgradeViewGtk3.py:230
2090-#: ../DistUpgrade/DistUpgradeViewKDE.py:387
2091+#: ../DistUpgrade/DistUpgradeViewGtk3.py:232
2092+#: ../DistUpgrade/DistUpgradeViewKDE.py:389
2093 #, python-format
2094 msgid ""
2095 "The upgrade will continue but the '%s' package may not be in a working "
2096@@ -1193,8 +1193,8 @@ msgid ""
2097 msgstr ""
2098
2099 #. self.expander.set_expanded(True)
2100-#: ../DistUpgrade/DistUpgradeViewGtk3.py:247
2101-#: ../DistUpgrade/DistUpgradeViewKDE.py:409
2102+#: ../DistUpgrade/DistUpgradeViewGtk3.py:249
2103+#: ../DistUpgrade/DistUpgradeViewKDE.py:411
2104 #, python-format
2105 msgid ""
2106 "Replace the customized configuration file\n"
2107@@ -1203,24 +1203,24 @@ msgstr ""
2108 "'%s'\n"
2109 "xüsusiləşdirilmiş quraşdırma faylı əvəz edilsin?"
2110
2111-#: ../DistUpgrade/DistUpgradeViewGtk3.py:248
2112-#: ../DistUpgrade/DistUpgradeViewKDE.py:410
2113+#: ../DistUpgrade/DistUpgradeViewGtk3.py:250
2114+#: ../DistUpgrade/DistUpgradeViewKDE.py:412
2115 msgid ""
2116 "You will lose any changes you have made to this configuration file if you "
2117 "choose to replace it with a newer version."
2118 msgstr ""
2119
2120-#: ../DistUpgrade/DistUpgradeViewGtk3.py:268
2121-#: ../DistUpgrade/DistUpgradeViewKDE.py:433
2122+#: ../DistUpgrade/DistUpgradeViewGtk3.py:270
2123+#: ../DistUpgrade/DistUpgradeViewKDE.py:435
2124 msgid "The 'diff' command was not found"
2125 msgstr "'dif' əmri tapılmadı"
2126
2127-#: ../DistUpgrade/DistUpgradeViewGtk3.py:535
2128+#: ../DistUpgrade/DistUpgradeViewGtk3.py:542
2129 #: ../DistUpgrade/DistUpgradeViewText.py:140
2130 msgid "A fatal error occurred"
2131 msgstr ""
2132
2133-#: ../DistUpgrade/DistUpgradeViewGtk3.py:536
2134+#: ../DistUpgrade/DistUpgradeViewGtk3.py:543
2135 msgid ""
2136 "Please report this as a bug (if you haven't already) and include the files /"
2137 "var/log/dist-upgrade/main.log and /var/log/dist-upgrade/apt.log in your "
2138@@ -1228,143 +1228,143 @@ msgid ""
2139 "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade."
2140 msgstr ""
2141
2142-#: ../DistUpgrade/DistUpgradeViewGtk3.py:566
2143+#: ../DistUpgrade/DistUpgradeViewGtk3.py:573
2144 msgid "Ctrl-c pressed"
2145 msgstr ""
2146
2147-#: ../DistUpgrade/DistUpgradeViewGtk3.py:567
2148+#: ../DistUpgrade/DistUpgradeViewGtk3.py:574
2149 msgid ""
2150 "This will abort the operation and may leave the system in a broken state. "
2151 "Are you sure you want to do that?"
2152 msgstr ""
2153
2154 #. append warning
2155-#: ../DistUpgrade/DistUpgradeViewGtk3.py:706
2156+#: ../DistUpgrade/DistUpgradeViewGtk3.py:713
2157 msgid "To prevent data loss close all open applications and documents."
2158 msgstr ""
2159
2160-#: ../DistUpgrade/DistUpgradeViewGtk3.py:720
2161+#: ../DistUpgrade/DistUpgradeViewGtk3.py:727
2162 #, python-format
2163 msgid "No longer supported by Canonical (%s)"
2164 msgstr ""
2165
2166-#: ../DistUpgrade/DistUpgradeViewGtk3.py:721
2167+#: ../DistUpgrade/DistUpgradeViewGtk3.py:728
2168 #, python-format
2169 msgid "<b>Downgrade (%s)</b>"
2170 msgstr ""
2171
2172-#: ../DistUpgrade/DistUpgradeViewGtk3.py:722
2173+#: ../DistUpgrade/DistUpgradeViewGtk3.py:729
2174 #, python-format
2175 msgid "Remove (%s)"
2176 msgstr ""
2177
2178-#: ../DistUpgrade/DistUpgradeViewGtk3.py:723
2179+#: ../DistUpgrade/DistUpgradeViewGtk3.py:730
2180 #, python-format
2181 msgid "No longer needed (%s)"
2182 msgstr ""
2183
2184-#: ../DistUpgrade/DistUpgradeViewGtk3.py:724
2185+#: ../DistUpgrade/DistUpgradeViewGtk3.py:731
2186 #, python-format
2187 msgid "Install (%s)"
2188 msgstr ""
2189
2190-#: ../DistUpgrade/DistUpgradeViewGtk3.py:725
2191+#: ../DistUpgrade/DistUpgradeViewGtk3.py:732
2192 #, python-format
2193 msgid "Upgrade (%s)"
2194 msgstr ""
2195
2196-#: ../DistUpgrade/DistUpgradeViewGtk3.py:773
2197+#: ../DistUpgrade/DistUpgradeViewGtk3.py:780
2198 msgid "Cancel"
2199 msgstr ""
2200
2201-#: ../DistUpgrade/DistUpgradeViewGtk3.py:774
2202-#: ../DistUpgrade/DistUpgradeViewKDE.py:906
2203+#: ../DistUpgrade/DistUpgradeViewGtk3.py:781
2204+#: ../DistUpgrade/DistUpgradeViewKDE.py:914
2205 msgid "Continue"
2206 msgstr ""
2207
2208-#: ../DistUpgrade/DistUpgradeViewKDE.py:445
2209+#: ../DistUpgrade/DistUpgradeViewKDE.py:447
2210 msgid "Show Difference >>>"
2211 msgstr ""
2212
2213-#: ../DistUpgrade/DistUpgradeViewKDE.py:448
2214+#: ../DistUpgrade/DistUpgradeViewKDE.py:450
2215 msgid "<<< Hide Difference"
2216 msgstr ""
2217
2218-#: ../DistUpgrade/DistUpgradeViewKDE.py:668
2219+#: ../DistUpgrade/DistUpgradeViewKDE.py:676
2220 msgid "Error"
2221 msgstr ""
2222
2223-#: ../DistUpgrade/DistUpgradeViewKDE.py:686
2224-#: ../DistUpgrade/DistUpgradeViewKDE.py:927
2225+#: ../DistUpgrade/DistUpgradeViewKDE.py:694
2226+#: ../DistUpgrade/DistUpgradeViewKDE.py:935
2227 msgid "&Close"
2228 msgstr ""
2229
2230-#: ../DistUpgrade/DistUpgradeViewKDE.py:720
2231+#: ../DistUpgrade/DistUpgradeViewKDE.py:728
2232 msgid "Show Terminal >>>"
2233 msgstr "Terminalı Göstər >>>"
2234
2235-#: ../DistUpgrade/DistUpgradeViewKDE.py:723
2236+#: ../DistUpgrade/DistUpgradeViewKDE.py:731
2237 msgid "<<< Hide Terminal"
2238 msgstr ""
2239
2240-#: ../DistUpgrade/DistUpgradeViewKDE.py:796
2241+#: ../DistUpgrade/DistUpgradeViewKDE.py:804
2242 msgid "Information"
2243 msgstr ""
2244
2245-#: ../DistUpgrade/DistUpgradeViewKDE.py:844
2246+#: ../DistUpgrade/DistUpgradeViewKDE.py:852
2247 msgid "&Start Upgrade"
2248 msgstr ""
2249
2250-#: ../DistUpgrade/DistUpgradeViewKDE.py:846
2251-#: ../DistUpgrade/DistUpgradeViewKDE.py:890
2252-#: ../DistUpgrade/DistUpgradeViewKDE.py:893
2253+#: ../DistUpgrade/DistUpgradeViewKDE.py:854
2254+#: ../DistUpgrade/DistUpgradeViewKDE.py:898
2255+#: ../DistUpgrade/DistUpgradeViewKDE.py:901
2256 #: ../data/gtkbuilder/DistUpgrade.ui.h:7
2257 msgid "Details"
2258 msgstr "Təfsilatlar"
2259
2260-#: ../DistUpgrade/DistUpgradeViewKDE.py:868
2261+#: ../DistUpgrade/DistUpgradeViewKDE.py:876
2262 #, python-format
2263 msgid "No longer supported %s"
2264 msgstr ""
2265
2266-#: ../DistUpgrade/DistUpgradeViewKDE.py:870
2267+#: ../DistUpgrade/DistUpgradeViewKDE.py:878
2268 #, python-format
2269 msgid "Remove %s"
2270 msgstr ""
2271
2272-#: ../DistUpgrade/DistUpgradeViewKDE.py:872
2273+#: ../DistUpgrade/DistUpgradeViewKDE.py:880
2274 #: ../DistUpgrade/DistUpgradeViewText.py:239
2275 #, python-format
2276 msgid "Remove (was auto installed) %s"
2277 msgstr ""
2278
2279-#: ../DistUpgrade/DistUpgradeViewKDE.py:874
2280+#: ../DistUpgrade/DistUpgradeViewKDE.py:882
2281 #, python-format
2282 msgid "Install %s"
2283 msgstr ""
2284
2285-#: ../DistUpgrade/DistUpgradeViewKDE.py:876
2286+#: ../DistUpgrade/DistUpgradeViewKDE.py:884
2287 #, python-format
2288 msgid "Upgrade %s"
2289 msgstr "%s paketini təzələ"
2290
2291-#: ../DistUpgrade/DistUpgradeViewKDE.py:923
2292+#: ../DistUpgrade/DistUpgradeViewKDE.py:931
2293 #: ../DistUpgrade/DistUpgradeViewText.py:292
2294 msgid "Restart required"
2295 msgstr ""
2296
2297-#: ../DistUpgrade/DistUpgradeViewKDE.py:923
2298+#: ../DistUpgrade/DistUpgradeViewKDE.py:931
2299 msgid "<b><big>Restart the system to complete the upgrade</big></b>"
2300 msgstr ""
2301 "<b><big>Təzələməni başa çatdırmaq üçün sistemi yenidən başladın</big></b>"
2302
2303-#: ../DistUpgrade/DistUpgradeViewKDE.py:926
2304+#: ../DistUpgrade/DistUpgradeViewKDE.py:934
2305 #: ../data/gtkbuilder/DistUpgrade.ui.h:14
2306 msgid "_Restart Now"
2307 msgstr "İndi _yenidən başlad"
2308
2309 #. FIXME make this user friendly
2310-#: ../DistUpgrade/DistUpgradeViewKDE.py:944
2311+#: ../DistUpgrade/DistUpgradeViewKDE.py:952
2312 msgid ""
2313 "<b><big>Cancel the running upgrade?</big></b>\n"
2314 "\n"
2315@@ -1372,7 +1372,7 @@ msgid ""
2316 "strongly advised to resume the upgrade."
2317 msgstr ""
2318
2319-#: ../DistUpgrade/DistUpgradeViewKDE.py:948
2320+#: ../DistUpgrade/DistUpgradeViewKDE.py:956
2321 msgid "Cancel Upgrade?"
2322 msgstr "Təzələmə Dayandırılsın?"
2323
2324diff --git a/po/be.po b/po/be.po
2325index 34398ea..3f52a89 100644
2326--- a/po/be.po
2327+++ b/po/be.po
2328@@ -8,7 +8,7 @@ msgid ""
2329 msgstr ""
2330 "Project-Id-Version: update-manager\n"
2331 "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n"
2332-"POT-Creation-Date: 2023-02-22 21:53+0000\n"
2333+"POT-Creation-Date: 2023-04-03 16:33+0000\n"
2334 "PO-Revision-Date: 2019-06-18 17:54+0000\n"
2335 "Last-Translator: Brian Murray <brian@ubuntu.com>\n"
2336 "Language-Team: Belarusian <be@li.org>\n"
2337@@ -959,7 +959,7 @@ msgid "&Upgrade"
2338 msgstr "&Абнавіць"
2339
2340 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:154
2341-#: ../DistUpgrade/DistUpgradeViewKDE.py:682
2342+#: ../DistUpgrade/DistUpgradeViewKDE.py:690
2343 msgid "&Cancel"
2344 msgstr "&Скасаваць"
2345
2346@@ -989,8 +989,8 @@ msgstr "Файл %s з %s"
2347
2348 #. print("mediaChange %s %s" % (medium, drive))
2349 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:235
2350-#: ../DistUpgrade/DistUpgradeViewGtk3.py:125
2351-#: ../DistUpgrade/DistUpgradeViewKDE.py:300
2352+#: ../DistUpgrade/DistUpgradeViewGtk3.py:127
2353+#: ../DistUpgrade/DistUpgradeViewKDE.py:302
2354 #, python-format
2355 msgid "Please insert '%s' into the drive '%s'"
2356 msgstr "Калі ласка, устаўце \"%s\" у прыладу \"%s\""
2357@@ -998,7 +998,7 @@ msgstr "Калі ласка, устаўце \"%s\" у прыладу \"%s\""
2358 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:237
2359 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:242
2360 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:243
2361-#: ../DistUpgrade/DistUpgradeViewKDE.py:301
2362+#: ../DistUpgrade/DistUpgradeViewKDE.py:303
2363 msgid "Media Change"
2364 msgstr "Змена носьбіта"
2365
2366@@ -1282,27 +1282,27 @@ msgstr "Наладзіць каталог з дадзенымі"
2367 msgid "Upgrade to the development release"
2368 msgstr "Абнавіцца да выпуску, што распрацоўваецца"
2369
2370-#: ../DistUpgrade/DistUpgradeViewGtk3.py:146
2371-#: ../DistUpgrade/DistUpgradeViewKDE.py:314
2372+#: ../DistUpgrade/DistUpgradeViewGtk3.py:148
2373+#: ../DistUpgrade/DistUpgradeViewKDE.py:316
2374 msgid "Fetching is complete"
2375 msgstr "Загрузка скончана"
2376
2377-#: ../DistUpgrade/DistUpgradeViewGtk3.py:161
2378-#: ../DistUpgrade/DistUpgradeViewKDE.py:330
2379+#: ../DistUpgrade/DistUpgradeViewGtk3.py:163
2380+#: ../DistUpgrade/DistUpgradeViewKDE.py:332
2381 #, python-format
2382 msgid "Fetching file %li of %li at %sB/s"
2383 msgstr "Загрузка файла %li з %li на хуткасці %sБайт/с"
2384
2385-#: ../DistUpgrade/DistUpgradeViewGtk3.py:163
2386-#: ../DistUpgrade/DistUpgradeViewGtk3.py:325
2387-#: ../DistUpgrade/DistUpgradeViewKDE.py:331
2388-#: ../DistUpgrade/DistUpgradeViewKDE.py:481
2389+#: ../DistUpgrade/DistUpgradeViewGtk3.py:165
2390+#: ../DistUpgrade/DistUpgradeViewGtk3.py:327
2391+#: ../DistUpgrade/DistUpgradeViewKDE.py:333
2392+#: ../DistUpgrade/DistUpgradeViewKDE.py:483
2393 #, python-format
2394 msgid "About %s remaining"
2395 msgstr "Засталося прыблізна %s"
2396
2397-#: ../DistUpgrade/DistUpgradeViewGtk3.py:166
2398-#: ../DistUpgrade/DistUpgradeViewKDE.py:333
2399+#: ../DistUpgrade/DistUpgradeViewGtk3.py:168
2400+#: ../DistUpgrade/DistUpgradeViewKDE.py:335
2401 #, python-format
2402 msgid "Fetching file %li of %li"
2403 msgstr "Загрузка файла %li з %li"
2404@@ -1310,25 +1310,25 @@ msgstr "Загрузка файла %li з %li"
2405 #. FIXME: add support for the timeout
2406 #. of the terminal (to display something useful then)
2407 #. -> longer term, move this code into python-apt
2408-#: ../DistUpgrade/DistUpgradeViewGtk3.py:198
2409-#: ../DistUpgrade/DistUpgradeViewKDE.py:371
2410+#: ../DistUpgrade/DistUpgradeViewGtk3.py:200
2411+#: ../DistUpgrade/DistUpgradeViewKDE.py:373
2412 msgid "Applying changes"
2413 msgstr "Ужыванне зменаў"
2414
2415 #. we do not report followup errors from earlier failures
2416-#: ../DistUpgrade/DistUpgradeViewGtk3.py:224
2417-#: ../DistUpgrade/DistUpgradeViewKDE.py:384
2418+#: ../DistUpgrade/DistUpgradeViewGtk3.py:226
2419+#: ../DistUpgrade/DistUpgradeViewKDE.py:386
2420 msgid "dependency problems - leaving unconfigured"
2421 msgstr "праблемы залежнасьцяў — пакідаем неналаджанымі"
2422
2423-#: ../DistUpgrade/DistUpgradeViewGtk3.py:229
2424-#: ../DistUpgrade/DistUpgradeViewKDE.py:386
2425+#: ../DistUpgrade/DistUpgradeViewGtk3.py:231
2426+#: ../DistUpgrade/DistUpgradeViewKDE.py:388
2427 #, python-format
2428 msgid "Could not install '%s'"
2429 msgstr "Немагчыма ўсталяваць \"%s\""
2430
2431-#: ../DistUpgrade/DistUpgradeViewGtk3.py:230
2432-#: ../DistUpgrade/DistUpgradeViewKDE.py:387
2433+#: ../DistUpgrade/DistUpgradeViewGtk3.py:232
2434+#: ../DistUpgrade/DistUpgradeViewKDE.py:389
2435 #, python-format
2436 msgid ""
2437 "The upgrade will continue but the '%s' package may not be in a working "
2438@@ -1339,8 +1339,8 @@ msgstr ""
2439 "памылкі."
2440
2441 #. self.expander.set_expanded(True)
2442-#: ../DistUpgrade/DistUpgradeViewGtk3.py:247
2443-#: ../DistUpgrade/DistUpgradeViewKDE.py:409
2444+#: ../DistUpgrade/DistUpgradeViewGtk3.py:249
2445+#: ../DistUpgrade/DistUpgradeViewKDE.py:411
2446 #, python-format
2447 msgid ""
2448 "Replace the customized configuration file\n"
2449@@ -1349,8 +1349,8 @@ msgstr ""
2450 "Замяніць адмысловы файл наладкі\n"
2451 " \"%s\"?"
2452
2453-#: ../DistUpgrade/DistUpgradeViewGtk3.py:248
2454-#: ../DistUpgrade/DistUpgradeViewKDE.py:410
2455+#: ../DistUpgrade/DistUpgradeViewGtk3.py:250
2456+#: ../DistUpgrade/DistUpgradeViewKDE.py:412
2457 msgid ""
2458 "You will lose any changes you have made to this configuration file if you "
2459 "choose to replace it with a newer version."
2460@@ -1358,17 +1358,17 @@ msgstr ""
2461 "Вы страціце ўсе змены, якія зрабілі ў гэтым файле канфігурацыі, калі "
2462 "заменіце яго новай версіяй."
2463
2464-#: ../DistUpgrade/DistUpgradeViewGtk3.py:268
2465-#: ../DistUpgrade/DistUpgradeViewKDE.py:433
2466+#: ../DistUpgrade/DistUpgradeViewGtk3.py:270
2467+#: ../DistUpgrade/DistUpgradeViewKDE.py:435
2468 msgid "The 'diff' command was not found"
2469 msgstr "Ня знойдзена праграма \"diff\""
2470
2471-#: ../DistUpgrade/DistUpgradeViewGtk3.py:535
2472+#: ../DistUpgrade/DistUpgradeViewGtk3.py:542
2473 #: ../DistUpgrade/DistUpgradeViewText.py:140
2474 msgid "A fatal error occurred"
2475 msgstr "Адбылася крытычная памылка"
2476
2477-#: ../DistUpgrade/DistUpgradeViewGtk3.py:536
2478+#: ../DistUpgrade/DistUpgradeViewGtk3.py:543
2479 msgid ""
2480 "Please report this as a bug (if you haven't already) and include the files /"
2481 "var/log/dist-upgrade/main.log and /var/log/dist-upgrade/apt.log in your "
2482@@ -1381,11 +1381,11 @@ msgstr ""
2483 "Ваш арыгінальны файл sources.list быў захаваны ў /etc/apt/sources.list."
2484 "distUpgrade."
2485
2486-#: ../DistUpgrade/DistUpgradeViewGtk3.py:566
2487+#: ../DistUpgrade/DistUpgradeViewGtk3.py:573
2488 msgid "Ctrl-c pressed"
2489 msgstr "націснута Ctrl-c"
2490
2491-#: ../DistUpgrade/DistUpgradeViewGtk3.py:567
2492+#: ../DistUpgrade/DistUpgradeViewGtk3.py:574
2493 msgid ""
2494 "This will abort the operation and may leave the system in a broken state. "
2495 "Are you sure you want to do that?"
2496@@ -1394,132 +1394,132 @@ msgstr ""
2497 "Вы сапраўды хочаце зрабіць гэта ?"
2498
2499 #. append warning
2500-#: ../DistUpgrade/DistUpgradeViewGtk3.py:706
2501+#: ../DistUpgrade/DistUpgradeViewGtk3.py:713
2502 msgid "To prevent data loss close all open applications and documents."
2503 msgstr ""
2504 "Каб пазбегнуць страты дадзеных, зачыніце ўсе адчыненыя праграмы і дакументы."
2505
2506-#: ../DistUpgrade/DistUpgradeViewGtk3.py:720
2507+#: ../DistUpgrade/DistUpgradeViewGtk3.py:727
2508 #, python-format
2509 msgid "No longer supported by Canonical (%s)"
2510 msgstr "Больш не падтрымліваецца Canonical (%s)"
2511
2512-#: ../DistUpgrade/DistUpgradeViewGtk3.py:721
2513+#: ../DistUpgrade/DistUpgradeViewGtk3.py:728
2514 #, python-format
2515 msgid "<b>Downgrade (%s)</b>"
2516 msgstr "<b>Усталяванне старой версіі (%s)</b>"
2517
2518-#: ../DistUpgrade/DistUpgradeViewGtk3.py:722
2519+#: ../DistUpgrade/DistUpgradeViewGtk3.py:729
2520 #, python-format
2521 msgid "Remove (%s)"
2522 msgstr "Выдаліць (%s)"
2523
2524-#: ../DistUpgrade/DistUpgradeViewGtk3.py:723
2525+#: ../DistUpgrade/DistUpgradeViewGtk3.py:730
2526 #, python-format
2527 msgid "No longer needed (%s)"
2528 msgstr "Больш не патрэбны (%s)"
2529
2530-#: ../DistUpgrade/DistUpgradeViewGtk3.py:724
2531+#: ../DistUpgrade/DistUpgradeViewGtk3.py:731
2532 #, python-format
2533 msgid "Install (%s)"
2534 msgstr "Усталяваць (%s)"
2535
2536-#: ../DistUpgrade/DistUpgradeViewGtk3.py:725
2537+#: ../DistUpgrade/DistUpgradeViewGtk3.py:732
2538 #, python-format
2539 msgid "Upgrade (%s)"
2540 msgstr "Абнавіць (%s)"
2541
2542-#: ../DistUpgrade/DistUpgradeViewGtk3.py:773
2543+#: ../DistUpgrade/DistUpgradeViewGtk3.py:780
2544 msgid "Cancel"
2545 msgstr ""
2546
2547-#: ../DistUpgrade/DistUpgradeViewGtk3.py:774
2548-#: ../DistUpgrade/DistUpgradeViewKDE.py:906
2549+#: ../DistUpgrade/DistUpgradeViewGtk3.py:781
2550+#: ../DistUpgrade/DistUpgradeViewKDE.py:914
2551 msgid "Continue"
2552 msgstr ""
2553
2554-#: ../DistUpgrade/DistUpgradeViewKDE.py:445
2555+#: ../DistUpgrade/DistUpgradeViewKDE.py:447
2556 msgid "Show Difference >>>"
2557 msgstr "Паказаць адрозненні >>>"
2558
2559-#: ../DistUpgrade/DistUpgradeViewKDE.py:448
2560+#: ../DistUpgrade/DistUpgradeViewKDE.py:450
2561 msgid "<<< Hide Difference"
2562 msgstr "<<< Схаваць адрозненні"
2563
2564-#: ../DistUpgrade/DistUpgradeViewKDE.py:668
2565+#: ../DistUpgrade/DistUpgradeViewKDE.py:676
2566 msgid "Error"
2567 msgstr "Памылка"
2568
2569-#: ../DistUpgrade/DistUpgradeViewKDE.py:686
2570-#: ../DistUpgrade/DistUpgradeViewKDE.py:927
2571+#: ../DistUpgrade/DistUpgradeViewKDE.py:694
2572+#: ../DistUpgrade/DistUpgradeViewKDE.py:935
2573 msgid "&Close"
2574 msgstr "&Зачыніць"
2575
2576-#: ../DistUpgrade/DistUpgradeViewKDE.py:720
2577+#: ../DistUpgrade/DistUpgradeViewKDE.py:728
2578 msgid "Show Terminal >>>"
2579 msgstr "Паказаць тэрмінал >>>"
2580
2581-#: ../DistUpgrade/DistUpgradeViewKDE.py:723
2582+#: ../DistUpgrade/DistUpgradeViewKDE.py:731
2583 msgid "<<< Hide Terminal"
2584 msgstr "<<< Схаваць тэрмінал"
2585
2586-#: ../DistUpgrade/DistUpgradeViewKDE.py:796
2587+#: ../DistUpgrade/DistUpgradeViewKDE.py:804
2588 msgid "Information"
2589 msgstr "Інфармацыя"
2590
2591-#: ../DistUpgrade/DistUpgradeViewKDE.py:844
2592+#: ../DistUpgrade/DistUpgradeViewKDE.py:852
2593 msgid "&Start Upgrade"
2594 msgstr "&Пачаць абнаўленне"
2595
2596-#: ../DistUpgrade/DistUpgradeViewKDE.py:846
2597-#: ../DistUpgrade/DistUpgradeViewKDE.py:890
2598-#: ../DistUpgrade/DistUpgradeViewKDE.py:893
2599+#: ../DistUpgrade/DistUpgradeViewKDE.py:854
2600+#: ../DistUpgrade/DistUpgradeViewKDE.py:898
2601+#: ../DistUpgrade/DistUpgradeViewKDE.py:901
2602 #: ../data/gtkbuilder/DistUpgrade.ui.h:7
2603 msgid "Details"
2604 msgstr "Дэталі"
2605
2606-#: ../DistUpgrade/DistUpgradeViewKDE.py:868
2607+#: ../DistUpgrade/DistUpgradeViewKDE.py:876
2608 #, python-format
2609 msgid "No longer supported %s"
2610 msgstr "Больш не падтрымліваецца (%s)"
2611
2612-#: ../DistUpgrade/DistUpgradeViewKDE.py:870
2613+#: ../DistUpgrade/DistUpgradeViewKDE.py:878
2614 #, python-format
2615 msgid "Remove %s"
2616 msgstr "Выдаліць %s"
2617
2618-#: ../DistUpgrade/DistUpgradeViewKDE.py:872
2619+#: ../DistUpgrade/DistUpgradeViewKDE.py:880
2620 #: ../DistUpgrade/DistUpgradeViewText.py:239
2621 #, python-format
2622 msgid "Remove (was auto installed) %s"
2623 msgstr "Выдаліць %s (было ўсталявана аўтаматычна)"
2624
2625-#: ../DistUpgrade/DistUpgradeViewKDE.py:874
2626+#: ../DistUpgrade/DistUpgradeViewKDE.py:882
2627 #, python-format
2628 msgid "Install %s"
2629 msgstr "Усталёўка %s"
2630
2631-#: ../DistUpgrade/DistUpgradeViewKDE.py:876
2632+#: ../DistUpgrade/DistUpgradeViewKDE.py:884
2633 #, python-format
2634 msgid "Upgrade %s"
2635 msgstr "Абнаўленне %s"
2636
2637-#: ../DistUpgrade/DistUpgradeViewKDE.py:923
2638+#: ../DistUpgrade/DistUpgradeViewKDE.py:931
2639 #: ../DistUpgrade/DistUpgradeViewText.py:292
2640 msgid "Restart required"
2641 msgstr "Патрабуецца перазагрузка"
2642
2643-#: ../DistUpgrade/DistUpgradeViewKDE.py:923
2644+#: ../DistUpgrade/DistUpgradeViewKDE.py:931
2645 msgid "<b><big>Restart the system to complete the upgrade</big></b>"
2646 msgstr "<b><big>Перагрузіце сістэму для завяршэння абнаўлення</big></b>"
2647
2648-#: ../DistUpgrade/DistUpgradeViewKDE.py:926
2649+#: ../DistUpgrade/DistUpgradeViewKDE.py:934
2650 #: ../data/gtkbuilder/DistUpgrade.ui.h:14
2651 msgid "_Restart Now"
2652 msgstr "Пера_запусціць"
2653
2654 #. FIXME make this user friendly
2655-#: ../DistUpgrade/DistUpgradeViewKDE.py:944
2656+#: ../DistUpgrade/DistUpgradeViewKDE.py:952
2657 msgid ""
2658 "<b><big>Cancel the running upgrade?</big></b>\n"
2659 "\n"
2660@@ -1530,7 +1530,7 @@ msgstr ""
2661 "Калі вы перапыніце абнаўленне, сістэма можа працаваць нестабільна. "
2662 "Настойліва рэкамендуем працягваць абнаўленне."
2663
2664-#: ../DistUpgrade/DistUpgradeViewKDE.py:948
2665+#: ../DistUpgrade/DistUpgradeViewKDE.py:956
2666 msgid "Cancel Upgrade?"
2667 msgstr "Скасаваць абнаўленне?"
2668
2669diff --git a/po/bg.po b/po/bg.po
2670index 73e0920..771baf6 100644
2671--- a/po/bg.po
2672+++ b/po/bg.po
2673@@ -9,7 +9,7 @@ msgid ""
2674 msgstr ""
2675 "Project-Id-Version: update manager\n"
2676 "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n"
2677-"POT-Creation-Date: 2023-02-22 21:53+0000\n"
2678+"POT-Creation-Date: 2023-04-03 16:33+0000\n"
2679 "PO-Revision-Date: 2019-06-18 17:55+0000\n"
2680 "Last-Translator: Brian Murray <brian@ubuntu.com>\n"
2681 "Language-Team: Bulgarian <dict@fsa-bg.org>\n"
2682@@ -953,7 +953,7 @@ msgid "&Upgrade"
2683 msgstr ""
2684
2685 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:154
2686-#: ../DistUpgrade/DistUpgradeViewKDE.py:682
2687+#: ../DistUpgrade/DistUpgradeViewKDE.py:690
2688 msgid "&Cancel"
2689 msgstr "&Отмени"
2690
2691@@ -983,8 +983,8 @@ msgstr "Файл %s от %s"
2692
2693 #. print("mediaChange %s %s" % (medium, drive))
2694 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:235
2695-#: ../DistUpgrade/DistUpgradeViewGtk3.py:125
2696-#: ../DistUpgrade/DistUpgradeViewKDE.py:300
2697+#: ../DistUpgrade/DistUpgradeViewGtk3.py:127
2698+#: ../DistUpgrade/DistUpgradeViewKDE.py:302
2699 #, python-format
2700 msgid "Please insert '%s' into the drive '%s'"
2701 msgstr "Моля, поставете диск «%s» в устройство «%s»"
2702@@ -992,7 +992,7 @@ msgstr "Моля, поставете диск «%s» в устройство «%
2703 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:237
2704 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:242
2705 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:243
2706-#: ../DistUpgrade/DistUpgradeViewKDE.py:301
2707+#: ../DistUpgrade/DistUpgradeViewKDE.py:303
2708 msgid "Media Change"
2709 msgstr "Смяна на носител"
2710
2711@@ -1269,27 +1269,27 @@ msgstr "Задай директорията за данни"
2712 msgid "Upgrade to the development release"
2713 msgstr "Надгради се до изданието в разработка"
2714
2715-#: ../DistUpgrade/DistUpgradeViewGtk3.py:146
2716-#: ../DistUpgrade/DistUpgradeViewKDE.py:314
2717+#: ../DistUpgrade/DistUpgradeViewGtk3.py:148
2718+#: ../DistUpgrade/DistUpgradeViewKDE.py:316
2719 msgid "Fetching is complete"
2720 msgstr "Изтеглянето е завършено"
2721
2722-#: ../DistUpgrade/DistUpgradeViewGtk3.py:161
2723-#: ../DistUpgrade/DistUpgradeViewKDE.py:330
2724+#: ../DistUpgrade/DistUpgradeViewGtk3.py:163
2725+#: ../DistUpgrade/DistUpgradeViewKDE.py:332
2726 #, python-format
2727 msgid "Fetching file %li of %li at %sB/s"
2728 msgstr "Изтегляне на файл %li от %li с %sБ/с"
2729
2730-#: ../DistUpgrade/DistUpgradeViewGtk3.py:163
2731-#: ../DistUpgrade/DistUpgradeViewGtk3.py:325
2732-#: ../DistUpgrade/DistUpgradeViewKDE.py:331
2733-#: ../DistUpgrade/DistUpgradeViewKDE.py:481
2734+#: ../DistUpgrade/DistUpgradeViewGtk3.py:165
2735+#: ../DistUpgrade/DistUpgradeViewGtk3.py:327
2736+#: ../DistUpgrade/DistUpgradeViewKDE.py:333
2737+#: ../DistUpgrade/DistUpgradeViewKDE.py:483
2738 #, python-format
2739 msgid "About %s remaining"
2740 msgstr "Остават около %s"
2741
2742-#: ../DistUpgrade/DistUpgradeViewGtk3.py:166
2743-#: ../DistUpgrade/DistUpgradeViewKDE.py:333
2744+#: ../DistUpgrade/DistUpgradeViewGtk3.py:168
2745+#: ../DistUpgrade/DistUpgradeViewKDE.py:335
2746 #, python-format
2747 msgid "Fetching file %li of %li"
2748 msgstr "Изтегляне на файл %li от %li"
2749@@ -1297,25 +1297,25 @@ msgstr "Изтегляне на файл %li от %li"
2750 #. FIXME: add support for the timeout
2751 #. of the terminal (to display something useful then)
2752 #. -> longer term, move this code into python-apt
2753-#: ../DistUpgrade/DistUpgradeViewGtk3.py:198
2754-#: ../DistUpgrade/DistUpgradeViewKDE.py:371
2755+#: ../DistUpgrade/DistUpgradeViewGtk3.py:200
2756+#: ../DistUpgrade/DistUpgradeViewKDE.py:373
2757 msgid "Applying changes"
2758 msgstr "Прилагане на промените"
2759
2760 #. we do not report followup errors from earlier failures
2761-#: ../DistUpgrade/DistUpgradeViewGtk3.py:224
2762-#: ../DistUpgrade/DistUpgradeViewKDE.py:384
2763+#: ../DistUpgrade/DistUpgradeViewGtk3.py:226
2764+#: ../DistUpgrade/DistUpgradeViewKDE.py:386
2765 msgid "dependency problems - leaving unconfigured"
2766 msgstr "проблеми със зависимости - остава не конфигуриран"
2767
2768-#: ../DistUpgrade/DistUpgradeViewGtk3.py:229
2769-#: ../DistUpgrade/DistUpgradeViewKDE.py:386
2770+#: ../DistUpgrade/DistUpgradeViewGtk3.py:231
2771+#: ../DistUpgrade/DistUpgradeViewKDE.py:388
2772 #, python-format
2773 msgid "Could not install '%s'"
2774 msgstr "Не можеше да бъде инсталиран «%s»"
2775
2776-#: ../DistUpgrade/DistUpgradeViewGtk3.py:230
2777-#: ../DistUpgrade/DistUpgradeViewKDE.py:387
2778+#: ../DistUpgrade/DistUpgradeViewGtk3.py:232
2779+#: ../DistUpgrade/DistUpgradeViewKDE.py:389
2780 #, python-format
2781 msgid ""
2782 "The upgrade will continue but the '%s' package may not be in a working "
2783@@ -1325,8 +1325,8 @@ msgstr ""
2784 "за представянето на грешки"
2785
2786 #. self.expander.set_expanded(True)
2787-#: ../DistUpgrade/DistUpgradeViewGtk3.py:247
2788-#: ../DistUpgrade/DistUpgradeViewKDE.py:409
2789+#: ../DistUpgrade/DistUpgradeViewGtk3.py:249
2790+#: ../DistUpgrade/DistUpgradeViewKDE.py:411
2791 #, python-format
2792 msgid ""
2793 "Replace the customized configuration file\n"
2794@@ -1335,8 +1335,8 @@ msgstr ""
2795 "Да се замени ли персонализирания конфигурационен файл\n"
2796 "«%s»?"
2797
2798-#: ../DistUpgrade/DistUpgradeViewGtk3.py:248
2799-#: ../DistUpgrade/DistUpgradeViewKDE.py:410
2800+#: ../DistUpgrade/DistUpgradeViewGtk3.py:250
2801+#: ../DistUpgrade/DistUpgradeViewKDE.py:412
2802 msgid ""
2803 "You will lose any changes you have made to this configuration file if you "
2804 "choose to replace it with a newer version."
2805@@ -1344,17 +1344,17 @@ msgstr ""
2806 "Ще изгубите всички промени, които сте направили в този конфигурационен файл "
2807 "ако изберете да го замените с по-нова версия."
2808
2809-#: ../DistUpgrade/DistUpgradeViewGtk3.py:268
2810-#: ../DistUpgrade/DistUpgradeViewKDE.py:433
2811+#: ../DistUpgrade/DistUpgradeViewGtk3.py:270
2812+#: ../DistUpgrade/DistUpgradeViewKDE.py:435
2813 msgid "The 'diff' command was not found"
2814 msgstr "Командата «diff» не бе намерена"
2815
2816-#: ../DistUpgrade/DistUpgradeViewGtk3.py:535
2817+#: ../DistUpgrade/DistUpgradeViewGtk3.py:542
2818 #: ../DistUpgrade/DistUpgradeViewText.py:140
2819 msgid "A fatal error occurred"
2820 msgstr "Възникна фатална грешка"
2821
2822-#: ../DistUpgrade/DistUpgradeViewGtk3.py:536
2823+#: ../DistUpgrade/DistUpgradeViewGtk3.py:543
2824 msgid ""
2825 "Please report this as a bug (if you haven't already) and include the files /"
2826 "var/log/dist-upgrade/main.log and /var/log/dist-upgrade/apt.log in your "
2827@@ -1367,11 +1367,11 @@ msgstr ""
2828 "Оригиналният файл sources.list бе запазен в /etc/apt/sources.list."
2829 "distUpgrade."
2830
2831-#: ../DistUpgrade/DistUpgradeViewGtk3.py:566
2832+#: ../DistUpgrade/DistUpgradeViewGtk3.py:573
2833 msgid "Ctrl-c pressed"
2834 msgstr "Ctrl-c натиснат"
2835
2836-#: ../DistUpgrade/DistUpgradeViewGtk3.py:567
2837+#: ../DistUpgrade/DistUpgradeViewGtk3.py:574
2838 msgid ""
2839 "This will abort the operation and may leave the system in a broken state. "
2840 "Are you sure you want to do that?"
2841@@ -1380,134 +1380,134 @@ msgstr ""
2842 "състояние. Сигурни ли сте, че искате да направите това?"
2843
2844 #. append warning
2845-#: ../DistUpgrade/DistUpgradeViewGtk3.py:706
2846+#: ../DistUpgrade/DistUpgradeViewGtk3.py:713
2847 msgid "To prevent data loss close all open applications and documents."
2848 msgstr ""
2849 "За да предотвратите загуба на данни, затворете всички отворени приложения и "
2850 "документи."
2851
2852-#: ../DistUpgrade/DistUpgradeViewGtk3.py:720
2853+#: ../DistUpgrade/DistUpgradeViewGtk3.py:727
2854 #, python-format
2855 msgid "No longer supported by Canonical (%s)"
2856 msgstr "Вече не се поддържа от Каноникал. (%s)"
2857
2858-#: ../DistUpgrade/DistUpgradeViewGtk3.py:721
2859+#: ../DistUpgrade/DistUpgradeViewGtk3.py:728
2860 #, python-format
2861 msgid "<b>Downgrade (%s)</b>"
2862 msgstr "<b>Инсталиране на по-стара версия (%s)</b>"
2863
2864-#: ../DistUpgrade/DistUpgradeViewGtk3.py:722
2865+#: ../DistUpgrade/DistUpgradeViewGtk3.py:729
2866 #, python-format
2867 msgid "Remove (%s)"
2868 msgstr "За премахване (%s)"
2869
2870-#: ../DistUpgrade/DistUpgradeViewGtk3.py:723
2871+#: ../DistUpgrade/DistUpgradeViewGtk3.py:730
2872 #, python-format
2873 msgid "No longer needed (%s)"
2874 msgstr "Вече не са необходими (%s)"
2875
2876-#: ../DistUpgrade/DistUpgradeViewGtk3.py:724
2877+#: ../DistUpgrade/DistUpgradeViewGtk3.py:731
2878 #, python-format
2879 msgid "Install (%s)"
2880 msgstr "За инсталиране (%s)"
2881
2882-#: ../DistUpgrade/DistUpgradeViewGtk3.py:725
2883+#: ../DistUpgrade/DistUpgradeViewGtk3.py:732
2884 #, python-format
2885 msgid "Upgrade (%s)"
2886 msgstr "За надграждане (%s)"
2887
2888-#: ../DistUpgrade/DistUpgradeViewGtk3.py:773
2889+#: ../DistUpgrade/DistUpgradeViewGtk3.py:780
2890 msgid "Cancel"
2891 msgstr ""
2892
2893-#: ../DistUpgrade/DistUpgradeViewGtk3.py:774
2894-#: ../DistUpgrade/DistUpgradeViewKDE.py:906
2895+#: ../DistUpgrade/DistUpgradeViewGtk3.py:781
2896+#: ../DistUpgrade/DistUpgradeViewKDE.py:914
2897 msgid "Continue"
2898 msgstr ""
2899
2900-#: ../DistUpgrade/DistUpgradeViewKDE.py:445
2901+#: ../DistUpgrade/DistUpgradeViewKDE.py:447
2902 msgid "Show Difference >>>"
2903 msgstr "Покажи разликите >>>"
2904
2905-#: ../DistUpgrade/DistUpgradeViewKDE.py:448
2906+#: ../DistUpgrade/DistUpgradeViewKDE.py:450
2907 msgid "<<< Hide Difference"
2908 msgstr "<<< Скрий разликите"
2909
2910-#: ../DistUpgrade/DistUpgradeViewKDE.py:668
2911+#: ../DistUpgrade/DistUpgradeViewKDE.py:676
2912 msgid "Error"
2913 msgstr "Грешка"
2914
2915-#: ../DistUpgrade/DistUpgradeViewKDE.py:686
2916-#: ../DistUpgrade/DistUpgradeViewKDE.py:927
2917+#: ../DistUpgrade/DistUpgradeViewKDE.py:694
2918+#: ../DistUpgrade/DistUpgradeViewKDE.py:935
2919 msgid "&Close"
2920 msgstr "&Затвори"
2921
2922-#: ../DistUpgrade/DistUpgradeViewKDE.py:720
2923+#: ../DistUpgrade/DistUpgradeViewKDE.py:728
2924 msgid "Show Terminal >>>"
2925 msgstr "Покажи терминала >>>"
2926
2927-#: ../DistUpgrade/DistUpgradeViewKDE.py:723
2928+#: ../DistUpgrade/DistUpgradeViewKDE.py:731
2929 msgid "<<< Hide Terminal"
2930 msgstr "<<< Скрий терминала"
2931
2932-#: ../DistUpgrade/DistUpgradeViewKDE.py:796
2933+#: ../DistUpgrade/DistUpgradeViewKDE.py:804
2934 msgid "Information"
2935 msgstr "Информация"
2936
2937-#: ../DistUpgrade/DistUpgradeViewKDE.py:844
2938+#: ../DistUpgrade/DistUpgradeViewKDE.py:852
2939 msgid "&Start Upgrade"
2940 msgstr ""
2941
2942-#: ../DistUpgrade/DistUpgradeViewKDE.py:846
2943-#: ../DistUpgrade/DistUpgradeViewKDE.py:890
2944-#: ../DistUpgrade/DistUpgradeViewKDE.py:893
2945+#: ../DistUpgrade/DistUpgradeViewKDE.py:854
2946+#: ../DistUpgrade/DistUpgradeViewKDE.py:898
2947+#: ../DistUpgrade/DistUpgradeViewKDE.py:901
2948 #: ../data/gtkbuilder/DistUpgrade.ui.h:7
2949 msgid "Details"
2950 msgstr "Детайли"
2951
2952-#: ../DistUpgrade/DistUpgradeViewKDE.py:868
2953+#: ../DistUpgrade/DistUpgradeViewKDE.py:876
2954 #, python-format
2955 msgid "No longer supported %s"
2956 msgstr "Вече не се поддържа %s"
2957
2958-#: ../DistUpgrade/DistUpgradeViewKDE.py:870
2959+#: ../DistUpgrade/DistUpgradeViewKDE.py:878
2960 #, python-format
2961 msgid "Remove %s"
2962 msgstr "Премахване на %s"
2963
2964-#: ../DistUpgrade/DistUpgradeViewKDE.py:872
2965+#: ../DistUpgrade/DistUpgradeViewKDE.py:880
2966 #: ../DistUpgrade/DistUpgradeViewText.py:239
2967 #, python-format
2968 msgid "Remove (was auto installed) %s"
2969 msgstr "Премахване (на автоматично инсталиран) %s"
2970
2971-#: ../DistUpgrade/DistUpgradeViewKDE.py:874
2972+#: ../DistUpgrade/DistUpgradeViewKDE.py:882
2973 #, python-format
2974 msgid "Install %s"
2975 msgstr "Инсталиране на %s"
2976
2977-#: ../DistUpgrade/DistUpgradeViewKDE.py:876
2978+#: ../DistUpgrade/DistUpgradeViewKDE.py:884
2979 #, python-format
2980 msgid "Upgrade %s"
2981 msgstr "Надграждане на %s"
2982
2983-#: ../DistUpgrade/DistUpgradeViewKDE.py:923
2984+#: ../DistUpgrade/DistUpgradeViewKDE.py:931
2985 #: ../DistUpgrade/DistUpgradeViewText.py:292
2986 msgid "Restart required"
2987 msgstr "Изисква рестартиране"
2988
2989-#: ../DistUpgrade/DistUpgradeViewKDE.py:923
2990+#: ../DistUpgrade/DistUpgradeViewKDE.py:931
2991 msgid "<b><big>Restart the system to complete the upgrade</big></b>"
2992 msgstr ""
2993 "<b><big>Рестратирайте системата, за да завършите надграждането</big></b>"
2994
2995-#: ../DistUpgrade/DistUpgradeViewKDE.py:926
2996+#: ../DistUpgrade/DistUpgradeViewKDE.py:934
2997 #: ../data/gtkbuilder/DistUpgrade.ui.h:14
2998 msgid "_Restart Now"
2999 msgstr "_Рестартирай сега"
3000
3001 #. FIXME make this user friendly
3002-#: ../DistUpgrade/DistUpgradeViewKDE.py:944
3003+#: ../DistUpgrade/DistUpgradeViewKDE.py:952
3004 msgid ""
3005 "<b><big>Cancel the running upgrade?</big></b>\n"
3006 "\n"
3007@@ -1519,7 +1519,7 @@ msgstr ""
3008 "Ако откажете надграждането системата може да остане в състояние, в което е "
3009 "неизползваема. Силно ви препоръчваме да продължите надграждането."
3010
3011-#: ../DistUpgrade/DistUpgradeViewKDE.py:948
3012+#: ../DistUpgrade/DistUpgradeViewKDE.py:956
3013 msgid "Cancel Upgrade?"
3014 msgstr "Да отменим ли надграждането?"
3015
3016diff --git a/po/bn.po b/po/bn.po
3017index 0ff3f27..8fce4a1 100644
3018--- a/po/bn.po
3019+++ b/po/bn.po
3020@@ -12,7 +12,7 @@ msgid ""
3021 msgstr ""
3022 "Project-Id-Version: shotwell-0.7.2\n"
3023 "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n"
3024-"POT-Creation-Date: 2023-02-22 21:53+0000\n"
3025+"POT-Creation-Date: 2023-04-03 16:33+0000\n"
3026 "PO-Revision-Date: 2019-02-10 12:11+0000\n"
3027 "Last-Translator: Istiak Ferdous <Unknown>\n"
3028 "Language-Team: Bengali <ankur-bd-l10n@googlegroups.com>\n"
3029@@ -940,7 +940,7 @@ msgid "&Upgrade"
3030 msgstr ""
3031
3032 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:154
3033-#: ../DistUpgrade/DistUpgradeViewKDE.py:682
3034+#: ../DistUpgrade/DistUpgradeViewKDE.py:690
3035 msgid "&Cancel"
3036 msgstr ""
3037
3038@@ -971,8 +971,8 @@ msgstr "ফাইল %s এর %s"
3039
3040 #. print("mediaChange %s %s" % (medium, drive))
3041 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:235
3042-#: ../DistUpgrade/DistUpgradeViewGtk3.py:125
3043-#: ../DistUpgrade/DistUpgradeViewKDE.py:300
3044+#: ../DistUpgrade/DistUpgradeViewGtk3.py:127
3045+#: ../DistUpgrade/DistUpgradeViewKDE.py:302
3046 #, python-format
3047 msgid "Please insert '%s' into the drive '%s'"
3048 msgstr "দয়া করে '%s' ড্রাইভে '%s' প্রবেশ করান"
3049@@ -980,7 +980,7 @@ msgstr "দয়া করে '%s' ড্রাইভে '%s' প্রবেশ
3050 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:237
3051 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:242
3052 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:243
3053-#: ../DistUpgrade/DistUpgradeViewKDE.py:301
3054+#: ../DistUpgrade/DistUpgradeViewKDE.py:303
3055 msgid "Media Change"
3056 msgstr "মিডিয়া পরিবর্তন"
3057
3058@@ -1253,28 +1253,28 @@ msgstr "datadir নির্ধারণ"
3059 msgid "Upgrade to the development release"
3060 msgstr ""
3061
3062-#: ../DistUpgrade/DistUpgradeViewGtk3.py:146
3063-#: ../DistUpgrade/DistUpgradeViewKDE.py:314
3064+#: ../DistUpgrade/DistUpgradeViewGtk3.py:148
3065+#: ../DistUpgrade/DistUpgradeViewKDE.py:316
3066 msgid "Fetching is complete"
3067 msgstr "টেনে আনা সম্পূর্ণ"
3068
3069-#: ../DistUpgrade/DistUpgradeViewGtk3.py:161
3070-#: ../DistUpgrade/DistUpgradeViewKDE.py:330
3071+#: ../DistUpgrade/DistUpgradeViewGtk3.py:163
3072+#: ../DistUpgrade/DistUpgradeViewKDE.py:332
3073 #, python-format
3074 msgid "Fetching file %li of %li at %sB/s"
3075 msgstr "ফাইল আনা হচ্ছে %li এর %li %sB/s এ"
3076
3077-#: ../DistUpgrade/DistUpgradeViewGtk3.py:163
3078-#: ../DistUpgrade/DistUpgradeViewGtk3.py:325
3079-#: ../DistUpgrade/DistUpgradeViewKDE.py:331
3080-#: ../DistUpgrade/DistUpgradeViewKDE.py:481
3081+#: ../DistUpgrade/DistUpgradeViewGtk3.py:165
3082+#: ../DistUpgrade/DistUpgradeViewGtk3.py:327
3083+#: ../DistUpgrade/DistUpgradeViewKDE.py:333
3084+#: ../DistUpgrade/DistUpgradeViewKDE.py:483
3085 #, python-format
3086 msgid "About %s remaining"
3087 msgstr "%s বাকি আছে"
3088
3089 # prb
3090-#: ../DistUpgrade/DistUpgradeViewGtk3.py:166
3091-#: ../DistUpgrade/DistUpgradeViewKDE.py:333
3092+#: ../DistUpgrade/DistUpgradeViewGtk3.py:168
3093+#: ../DistUpgrade/DistUpgradeViewKDE.py:335
3094 #, python-format
3095 msgid "Fetching file %li of %li"
3096 msgstr "%li এর %li ফাইল নিয়ে আসা হয়"
3097@@ -1282,27 +1282,27 @@ msgstr "%li এর %li ফাইল নিয়ে আসা হয়"
3098 #. FIXME: add support for the timeout
3099 #. of the terminal (to display something useful then)
3100 #. -> longer term, move this code into python-apt
3101-#: ../DistUpgrade/DistUpgradeViewGtk3.py:198
3102-#: ../DistUpgrade/DistUpgradeViewKDE.py:371
3103+#: ../DistUpgrade/DistUpgradeViewGtk3.py:200
3104+#: ../DistUpgrade/DistUpgradeViewKDE.py:373
3105 msgid "Applying changes"
3106 msgstr "পরিবর্তনগুলো প্রয়োগ করছি"
3107
3108 # snigdha
3109 #. we do not report followup errors from earlier failures
3110-#: ../DistUpgrade/DistUpgradeViewGtk3.py:224
3111-#: ../DistUpgrade/DistUpgradeViewKDE.py:384
3112+#: ../DistUpgrade/DistUpgradeViewGtk3.py:226
3113+#: ../DistUpgrade/DistUpgradeViewKDE.py:386
3114 msgid "dependency problems - leaving unconfigured"
3115 msgstr "ডিপেন্ডেন্সী সমস্যা - আনকনফিগার হিসাবে রয়েছে"
3116
3117-#: ../DistUpgrade/DistUpgradeViewGtk3.py:229
3118-#: ../DistUpgrade/DistUpgradeViewKDE.py:386
3119+#: ../DistUpgrade/DistUpgradeViewGtk3.py:231
3120+#: ../DistUpgrade/DistUpgradeViewKDE.py:388
3121 #, python-format
3122 msgid "Could not install '%s'"
3123 msgstr "'%s' ইন্সটল করা যায় নি"
3124
3125 # snigdha
3126-#: ../DistUpgrade/DistUpgradeViewGtk3.py:230
3127-#: ../DistUpgrade/DistUpgradeViewKDE.py:387
3128+#: ../DistUpgrade/DistUpgradeViewGtk3.py:232
3129+#: ../DistUpgrade/DistUpgradeViewKDE.py:389
3130 #, python-format
3131 msgid ""
3132 "The upgrade will continue but the '%s' package may not be in a working "
3133@@ -1313,8 +1313,8 @@ msgstr ""
3134
3135 # snigdha
3136 #. self.expander.set_expanded(True)
3137-#: ../DistUpgrade/DistUpgradeViewGtk3.py:247
3138-#: ../DistUpgrade/DistUpgradeViewKDE.py:409
3139+#: ../DistUpgrade/DistUpgradeViewGtk3.py:249
3140+#: ../DistUpgrade/DistUpgradeViewKDE.py:411
3141 #, python-format
3142 msgid ""
3143 "Replace the customized configuration file\n"
3144@@ -1324,8 +1324,8 @@ msgstr ""
3145 "'%s' প্রতিস্থাপন?"
3146
3147 # snigdha
3148-#: ../DistUpgrade/DistUpgradeViewGtk3.py:248
3149-#: ../DistUpgrade/DistUpgradeViewKDE.py:410
3150+#: ../DistUpgrade/DistUpgradeViewGtk3.py:250
3151+#: ../DistUpgrade/DistUpgradeViewKDE.py:412
3152 msgid ""
3153 "You will lose any changes you have made to this configuration file if you "
3154 "choose to replace it with a newer version."
3155@@ -1333,18 +1333,18 @@ msgstr ""
3156 "আপনি যদি নতুন সংস্করণ দ্বারা এটি প্রতিস্থাপন করেন তবে কনফিগারেশন ফাইলে কোনো "
3157 "পরিবর্তন করে থাকলে তা চলে যাবে।"
3158
3159-#: ../DistUpgrade/DistUpgradeViewGtk3.py:268
3160-#: ../DistUpgrade/DistUpgradeViewKDE.py:433
3161+#: ../DistUpgrade/DistUpgradeViewGtk3.py:270
3162+#: ../DistUpgrade/DistUpgradeViewKDE.py:435
3163 msgid "The 'diff' command was not found"
3164 msgstr "'diff' কমান্ডটি পাওয়া যায় নি"
3165
3166-#: ../DistUpgrade/DistUpgradeViewGtk3.py:535
3167+#: ../DistUpgrade/DistUpgradeViewGtk3.py:542
3168 #: ../DistUpgrade/DistUpgradeViewText.py:140
3169 msgid "A fatal error occurred"
3170 msgstr "একটি মারাত্মক সমস্যা সংঘটিত হয়েছে"
3171
3172 # snigdha
3173-#: ../DistUpgrade/DistUpgradeViewGtk3.py:536
3174+#: ../DistUpgrade/DistUpgradeViewGtk3.py:543
3175 msgid ""
3176 "Please report this as a bug (if you haven't already) and include the files /"
3177 "var/log/dist-upgrade/main.log and /var/log/dist-upgrade/apt.log in your "
3178@@ -1356,12 +1356,12 @@ msgstr ""
3179 "করুন। আপগ্রেড বন্ধ আছে।\n"
3180 "আপনার মূল উৎস তালিকা /etc/apt/sources.list.distUpgrade এ সংরক্ষিত আছে।"
3181
3182-#: ../DistUpgrade/DistUpgradeViewGtk3.py:566
3183+#: ../DistUpgrade/DistUpgradeViewGtk3.py:573
3184 msgid "Ctrl-c pressed"
3185 msgstr "Ctrl-c চাপা হয়েছে"
3186
3187 # snigdha
3188-#: ../DistUpgrade/DistUpgradeViewGtk3.py:567
3189+#: ../DistUpgrade/DistUpgradeViewGtk3.py:574
3190 msgid ""
3191 "This will abort the operation and may leave the system in a broken state. "
3192 "Are you sure you want to do that?"
3193@@ -1370,133 +1370,133 @@ msgstr ""
3194 "আপনি কি নিশ্চিত যে আপনি এমন করতে চান?"
3195
3196 #. append warning
3197-#: ../DistUpgrade/DistUpgradeViewGtk3.py:706
3198+#: ../DistUpgrade/DistUpgradeViewGtk3.py:713
3199 msgid "To prevent data loss close all open applications and documents."
3200 msgstr "তথ্য হারাতে না চাইলে সকল অ্যাপলিকেশন এবং ডকুমেন্ট বন্ধ রাখুন।"
3201
3202-#: ../DistUpgrade/DistUpgradeViewGtk3.py:720
3203+#: ../DistUpgrade/DistUpgradeViewGtk3.py:727
3204 #, python-format
3205 msgid "No longer supported by Canonical (%s)"
3206 msgstr "ক্যানোনিক্যাল দ্বারা আর সমর্থিত নয় (%s)"
3207
3208-#: ../DistUpgrade/DistUpgradeViewGtk3.py:721
3209+#: ../DistUpgrade/DistUpgradeViewGtk3.py:728
3210 #, python-format
3211 msgid "<b>Downgrade (%s)</b>"
3212 msgstr "<b>ডাউনগ্রেড (%s)</b>"
3213
3214-#: ../DistUpgrade/DistUpgradeViewGtk3.py:722
3215+#: ../DistUpgrade/DistUpgradeViewGtk3.py:729
3216 #, python-format
3217 msgid "Remove (%s)"
3218 msgstr "(%s) অপসারণ"
3219
3220-#: ../DistUpgrade/DistUpgradeViewGtk3.py:723
3221+#: ../DistUpgrade/DistUpgradeViewGtk3.py:730
3222 #, python-format
3223 msgid "No longer needed (%s)"
3224 msgstr "আর প্রয়োজন নেই (%s)"
3225
3226-#: ../DistUpgrade/DistUpgradeViewGtk3.py:724
3227+#: ../DistUpgrade/DistUpgradeViewGtk3.py:731
3228 #, python-format
3229 msgid "Install (%s)"
3230 msgstr "(%s) ইন্সটল"
3231
3232-#: ../DistUpgrade/DistUpgradeViewGtk3.py:725
3233+#: ../DistUpgrade/DistUpgradeViewGtk3.py:732
3234 #, python-format
3235 msgid "Upgrade (%s)"
3236 msgstr "(%s) আপগ্রেড"
3237
3238-#: ../DistUpgrade/DistUpgradeViewGtk3.py:773
3239+#: ../DistUpgrade/DistUpgradeViewGtk3.py:780
3240 msgid "Cancel"
3241 msgstr ""
3242
3243-#: ../DistUpgrade/DistUpgradeViewGtk3.py:774
3244-#: ../DistUpgrade/DistUpgradeViewKDE.py:906
3245+#: ../DistUpgrade/DistUpgradeViewGtk3.py:781
3246+#: ../DistUpgrade/DistUpgradeViewKDE.py:914
3247 msgid "Continue"
3248 msgstr ""
3249
3250-#: ../DistUpgrade/DistUpgradeViewKDE.py:445
3251+#: ../DistUpgrade/DistUpgradeViewKDE.py:447
3252 msgid "Show Difference >>>"
3253 msgstr "পার্থক্য প্রদর্শন >>>"
3254
3255-#: ../DistUpgrade/DistUpgradeViewKDE.py:448
3256+#: ../DistUpgrade/DistUpgradeViewKDE.py:450
3257 msgid "<<< Hide Difference"
3258 msgstr "<<< পার্থক্য আড়াল করা"
3259
3260-#: ../DistUpgrade/DistUpgradeViewKDE.py:668
3261+#: ../DistUpgrade/DistUpgradeViewKDE.py:676
3262 msgid "Error"
3263 msgstr "ত্রুটি"
3264
3265 # confused..coz here & seems not a shortcut
3266-#: ../DistUpgrade/DistUpgradeViewKDE.py:686
3267-#: ../DistUpgrade/DistUpgradeViewKDE.py:927
3268+#: ../DistUpgrade/DistUpgradeViewKDE.py:694
3269+#: ../DistUpgrade/DistUpgradeViewKDE.py:935
3270 msgid "&Close"
3271 msgstr "ও বন্ধ"
3272
3273-#: ../DistUpgrade/DistUpgradeViewKDE.py:720
3274+#: ../DistUpgrade/DistUpgradeViewKDE.py:728
3275 msgid "Show Terminal >>>"
3276 msgstr "টার্মিনাল প্রদর্শন >>>"
3277
3278-#: ../DistUpgrade/DistUpgradeViewKDE.py:723
3279+#: ../DistUpgrade/DistUpgradeViewKDE.py:731
3280 msgid "<<< Hide Terminal"
3281 msgstr "<<< টার্মিনাল আড়াল করা"
3282
3283-#: ../DistUpgrade/DistUpgradeViewKDE.py:796
3284+#: ../DistUpgrade/DistUpgradeViewKDE.py:804
3285 msgid "Information"
3286 msgstr "তথ্য"
3287
3288-#: ../DistUpgrade/DistUpgradeViewKDE.py:844
3289+#: ../DistUpgrade/DistUpgradeViewKDE.py:852
3290 msgid "&Start Upgrade"
3291 msgstr ""
3292
3293-#: ../DistUpgrade/DistUpgradeViewKDE.py:846
3294-#: ../DistUpgrade/DistUpgradeViewKDE.py:890
3295-#: ../DistUpgrade/DistUpgradeViewKDE.py:893
3296+#: ../DistUpgrade/DistUpgradeViewKDE.py:854
3297+#: ../DistUpgrade/DistUpgradeViewKDE.py:898
3298+#: ../DistUpgrade/DistUpgradeViewKDE.py:901
3299 #: ../data/gtkbuilder/DistUpgrade.ui.h:7
3300 msgid "Details"
3301 msgstr "বিস্তারিত"
3302
3303-#: ../DistUpgrade/DistUpgradeViewKDE.py:868
3304+#: ../DistUpgrade/DistUpgradeViewKDE.py:876
3305 #, python-format
3306 msgid "No longer supported %s"
3307 msgstr "আর সমর্থিত নয় %s"
3308
3309-#: ../DistUpgrade/DistUpgradeViewKDE.py:870
3310+#: ../DistUpgrade/DistUpgradeViewKDE.py:878
3311 #, python-format
3312 msgid "Remove %s"
3313 msgstr "%s অপসারণ"
3314
3315-#: ../DistUpgrade/DistUpgradeViewKDE.py:872
3316+#: ../DistUpgrade/DistUpgradeViewKDE.py:880
3317 #: ../DistUpgrade/DistUpgradeViewText.py:239
3318 #, python-format
3319 msgid "Remove (was auto installed) %s"
3320 msgstr "%s অপসারণ (যা স্বয়ংক্রিয় ভাবে ইনস্টল করা হয়েছিল)"
3321
3322-#: ../DistUpgrade/DistUpgradeViewKDE.py:874
3323+#: ../DistUpgrade/DistUpgradeViewKDE.py:882
3324 #, python-format
3325 msgid "Install %s"
3326 msgstr "%s ইন্সটল"
3327
3328-#: ../DistUpgrade/DistUpgradeViewKDE.py:876
3329+#: ../DistUpgrade/DistUpgradeViewKDE.py:884
3330 #, python-format
3331 msgid "Upgrade %s"
3332 msgstr "%s আপগ্রেড"
3333
3334-#: ../DistUpgrade/DistUpgradeViewKDE.py:923
3335+#: ../DistUpgrade/DistUpgradeViewKDE.py:931
3336 #: ../DistUpgrade/DistUpgradeViewText.py:292
3337 msgid "Restart required"
3338 msgstr "পুনরায় শুরু করা প্রয়োজন"
3339
3340-#: ../DistUpgrade/DistUpgradeViewKDE.py:923
3341+#: ../DistUpgrade/DistUpgradeViewKDE.py:931
3342 msgid "<b><big>Restart the system to complete the upgrade</big></b>"
3343 msgstr "<b><big>আপগ্রেড সম্পন্ন করতে সিস্টেমটি রিস্টার্ট করুন</big></b>"
3344
3345-#: ../DistUpgrade/DistUpgradeViewKDE.py:926
3346+#: ../DistUpgrade/DistUpgradeViewKDE.py:934
3347 #: ../data/gtkbuilder/DistUpgrade.ui.h:14
3348 msgid "_Restart Now"
3349 msgstr "এক্ষুনি রিস্টার্ট (_R)"
3350
3351 # snigdha
3352 #. FIXME make this user friendly
3353-#: ../DistUpgrade/DistUpgradeViewKDE.py:944
3354+#: ../DistUpgrade/DistUpgradeViewKDE.py:952
3355 msgid ""
3356 "<b><big>Cancel the running upgrade?</big></b>\n"
3357 "\n"
3358@@ -1508,7 +1508,7 @@ msgstr ""
3359 "আপগ্রেড বন্ধ করলে সিস্টেম অকার্যকর হয়ে পড়বে। আপনাকে অবশ্যই আপগ্রেড চালিয়ে যেতে বলা "
3360 "হচ্ছে।"
3361
3362-#: ../DistUpgrade/DistUpgradeViewKDE.py:948
3363+#: ../DistUpgrade/DistUpgradeViewKDE.py:956
3364 msgid "Cancel Upgrade?"
3365 msgstr "আপগ্রেড বাতিল করা হবে কি?"
3366
3367diff --git a/po/bo.po b/po/bo.po
3368index b8919e8..9a51891 100644
3369--- a/po/bo.po
3370+++ b/po/bo.po
3371@@ -8,7 +8,7 @@ msgid ""
3372 msgstr ""
3373 "Project-Id-Version: update-manager\n"
3374 "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n"
3375-"POT-Creation-Date: 2023-02-22 21:53+0000\n"
3376+"POT-Creation-Date: 2023-04-03 16:33+0000\n"
3377 "PO-Revision-Date: 2013-05-22 11:00+0000\n"
3378 "Last-Translator: Brian Murray <brian@ubuntu.com>\n"
3379 "Language-Team: Tibetan <bo@li.org>\n"
3380@@ -876,7 +876,7 @@ msgid "&Upgrade"
3381 msgstr ""
3382
3383 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:154
3384-#: ../DistUpgrade/DistUpgradeViewKDE.py:682
3385+#: ../DistUpgrade/DistUpgradeViewKDE.py:690
3386 msgid "&Cancel"
3387 msgstr ""
3388
3389@@ -906,8 +906,8 @@ msgstr "ཡིག་ཆ་ %2s ནང་གི་ %1s"
3390
3391 #. print("mediaChange %s %s" % (medium, drive))
3392 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:235
3393-#: ../DistUpgrade/DistUpgradeViewGtk3.py:125
3394-#: ../DistUpgrade/DistUpgradeViewKDE.py:300
3395+#: ../DistUpgrade/DistUpgradeViewGtk3.py:127
3396+#: ../DistUpgrade/DistUpgradeViewKDE.py:302
3397 #, python-format
3398 msgid "Please insert '%s' into the drive '%s'"
3399 msgstr "སྒུལ་ཆས་'%2s'ནང་དུ་'%1s'འཇུག་རོགས"
3400@@ -915,7 +915,7 @@ msgstr "སྒུལ་ཆས་'%2s'ནང་དུ་'%1s'འཇུག་ར
3401 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:237
3402 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:242
3403 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:243
3404-#: ../DistUpgrade/DistUpgradeViewKDE.py:301
3405+#: ../DistUpgrade/DistUpgradeViewKDE.py:303
3406 msgid "Media Change"
3407 msgstr "འཇུག་ཟམ་བརྗེ་བ"
3408
3409@@ -1183,27 +1183,27 @@ msgstr "datadir་སྒྲིག་འཛུགས་བྱེད་པ"
3410 msgid "Upgrade to the development release"
3411 msgstr ""
3412
3413-#: ../DistUpgrade/DistUpgradeViewGtk3.py:146
3414-#: ../DistUpgrade/DistUpgradeViewKDE.py:314
3415+#: ../DistUpgrade/DistUpgradeViewGtk3.py:148
3416+#: ../DistUpgrade/DistUpgradeViewKDE.py:316
3417 msgid "Fetching is complete"
3418 msgstr "ལེན་འཇུག་ལེགས་འགྲུབ"
3419
3420-#: ../DistUpgrade/DistUpgradeViewGtk3.py:161
3421-#: ../DistUpgrade/DistUpgradeViewKDE.py:330
3422+#: ../DistUpgrade/DistUpgradeViewGtk3.py:163
3423+#: ../DistUpgrade/DistUpgradeViewKDE.py:332
3424 #, python-format
3425 msgid "Fetching file %li of %li at %sB/s"
3426 msgstr "ཡིག་ཆ་ %2li ནང་ནས་ %1li ཚད་ %s B/s ཐོག་ལེན་འཇུག་བྱེད་བཞིན་པ"
3427
3428-#: ../DistUpgrade/DistUpgradeViewGtk3.py:163
3429-#: ../DistUpgrade/DistUpgradeViewGtk3.py:325
3430-#: ../DistUpgrade/DistUpgradeViewKDE.py:331
3431-#: ../DistUpgrade/DistUpgradeViewKDE.py:481
3432+#: ../DistUpgrade/DistUpgradeViewGtk3.py:165
3433+#: ../DistUpgrade/DistUpgradeViewGtk3.py:327
3434+#: ../DistUpgrade/DistUpgradeViewKDE.py:333
3435+#: ../DistUpgrade/DistUpgradeViewKDE.py:483
3436 #, python-format
3437 msgid "About %s remaining"
3438 msgstr "ཕལ་ཆེར་ %s ་ལྷགས་ཡོད"
3439
3440-#: ../DistUpgrade/DistUpgradeViewGtk3.py:166
3441-#: ../DistUpgrade/DistUpgradeViewKDE.py:333
3442+#: ../DistUpgrade/DistUpgradeViewGtk3.py:168
3443+#: ../DistUpgrade/DistUpgradeViewKDE.py:335
3444 #, python-format
3445 msgid "Fetching file %li of %li"
3446 msgstr "ཡིག་ཆ་ %2li ནང་ནས་ %1li ལེན་འཇུག་བཞིན་པ"
3447@@ -1211,25 +1211,25 @@ msgstr "ཡིག་ཆ་ %2li ནང་ནས་ %1li ལེན་འཇུག
3448 #. FIXME: add support for the timeout
3449 #. of the terminal (to display something useful then)
3450 #. -> longer term, move this code into python-apt
3451-#: ../DistUpgrade/DistUpgradeViewGtk3.py:198
3452-#: ../DistUpgrade/DistUpgradeViewKDE.py:371
3453+#: ../DistUpgrade/DistUpgradeViewGtk3.py:200
3454+#: ../DistUpgrade/DistUpgradeViewKDE.py:373
3455 msgid "Applying changes"
3456 msgstr "བཟོ་བཅོས་འདོན་བཞིན་པ"
3457
3458 #. we do not report followup errors from earlier failures
3459-#: ../DistUpgrade/DistUpgradeViewGtk3.py:224
3460-#: ../DistUpgrade/DistUpgradeViewKDE.py:384
3461+#: ../DistUpgrade/DistUpgradeViewGtk3.py:226
3462+#: ../DistUpgrade/DistUpgradeViewKDE.py:386
3463 msgid "dependency problems - leaving unconfigured"
3464 msgstr "འཁོར་གཏོགས་སྐོར་སྐྱོན - སྒྲིག་བཟོ་མེད་པ་སྐྱུར་ཡོད་པ"
3465
3466-#: ../DistUpgrade/DistUpgradeViewGtk3.py:229
3467-#: ../DistUpgrade/DistUpgradeViewKDE.py:386
3468+#: ../DistUpgrade/DistUpgradeViewGtk3.py:231
3469+#: ../DistUpgrade/DistUpgradeViewKDE.py:388
3470 #, python-format
3471 msgid "Could not install '%s'"
3472 msgstr "Could not install '%s'"
3473
3474-#: ../DistUpgrade/DistUpgradeViewGtk3.py:230
3475-#: ../DistUpgrade/DistUpgradeViewKDE.py:387
3476+#: ../DistUpgrade/DistUpgradeViewGtk3.py:232
3477+#: ../DistUpgrade/DistUpgradeViewKDE.py:389
3478 #, python-format
3479 msgid ""
3480 "The upgrade will continue but the '%s' package may not be in a working "
3481@@ -1239,8 +1239,8 @@ msgstr ""
3482 "སྐོར་སྐྱོན་ཞིག་ཡར་ཞུ་དགོས་མིན་བསམ་གཞིགས་གནང་རོགས"
3483
3484 #. self.expander.set_expanded(True)
3485-#: ../DistUpgrade/DistUpgradeViewGtk3.py:247
3486-#: ../DistUpgrade/DistUpgradeViewKDE.py:409
3487+#: ../DistUpgrade/DistUpgradeViewGtk3.py:249
3488+#: ../DistUpgrade/DistUpgradeViewKDE.py:411
3489 #, python-format
3490 msgid ""
3491 "Replace the customized configuration file\n"
3492@@ -1249,8 +1249,8 @@ msgstr ""
3493 "རང་བཟོས་སྒྲིག་བཟོ་ཡིག་ཆ་\n"
3494 "'%s'བརྗེ་དགོས་སམ"
3495
3496-#: ../DistUpgrade/DistUpgradeViewGtk3.py:248
3497-#: ../DistUpgrade/DistUpgradeViewKDE.py:410
3498+#: ../DistUpgrade/DistUpgradeViewGtk3.py:250
3499+#: ../DistUpgrade/DistUpgradeViewKDE.py:412
3500 msgid ""
3501 "You will lose any changes you have made to this configuration file if you "
3502 "choose to replace it with a newer version."
3503@@ -1258,17 +1258,17 @@ msgstr ""
3504 "ཁྱོད་ཀྱིས་གལ་སྲིད་སྒྲིག་བཟོ་ཡིག་ཆ་དེ་པར་གཞི་གསར་པ་ཞིག་གིས་ཚབས་བཅུག་ན་ དེ་སྔར་དེའི་ཐོག་སྒྲིག་བཟོ་བྱས་པ་"
3505 "རྣམས་བཀླགས་འགྲོའོ།"
3506
3507-#: ../DistUpgrade/DistUpgradeViewGtk3.py:268
3508-#: ../DistUpgrade/DistUpgradeViewKDE.py:433
3509+#: ../DistUpgrade/DistUpgradeViewGtk3.py:270
3510+#: ../DistUpgrade/DistUpgradeViewKDE.py:435
3511 msgid "The 'diff' command was not found"
3512 msgstr "'diff'བཀའ་བརྡ་མ་རྙེད་པ"
3513
3514-#: ../DistUpgrade/DistUpgradeViewGtk3.py:535
3515+#: ../DistUpgrade/DistUpgradeViewGtk3.py:542
3516 #: ../DistUpgrade/DistUpgradeViewText.py:140
3517 msgid "A fatal error occurred"
3518 msgstr "ནོར་འཁྲུལ་ཚབས་ཆེན་ཞིག་བྱུང་བ"
3519
3520-#: ../DistUpgrade/DistUpgradeViewGtk3.py:536
3521+#: ../DistUpgrade/DistUpgradeViewGtk3.py:543
3522 msgid ""
3523 "Please report this as a bug (if you haven't already) and include the files /"
3524 "var/log/dist-upgrade/main.log and /var/log/dist-upgrade/apt.log in your "
3525@@ -1280,11 +1280,11 @@ msgstr ""
3526 "འགྲོའོ།\n"
3527 "ཁྱོད་ཀྱི་ཐོག་མའི་འབྱུང་ཁུངས་མིང་ཐོ /etc/apt/sources.list.distUpgrade་གསོག་འཇོག་བྱས་ཡོད།"
3528
3529-#: ../DistUpgrade/DistUpgradeViewGtk3.py:566
3530+#: ../DistUpgrade/DistUpgradeViewGtk3.py:573
3531 msgid "Ctrl-c pressed"
3532 msgstr "Ctrl-c ་གནོན་བྱུང་།"
3533
3534-#: ../DistUpgrade/DistUpgradeViewGtk3.py:567
3535+#: ../DistUpgrade/DistUpgradeViewGtk3.py:574
3536 msgid ""
3537 "This will abort the operation and may leave the system in a broken state. "
3538 "Are you sure you want to do that?"
3539@@ -1292,131 +1292,131 @@ msgstr ""
3540 "འདིས་བྱ་འགུལ་འདི་མཚམས་གཅོད་པ་དང་མ་ལག་ལའང་སྐྱོན་གཏོང་ངེས་ཡིན།ཁྱོད་ཀྱིས་འདི་བྱེད་པར་གཏན་ཁེལ་ཡིན་ནམ།"
3541
3542 #. append warning
3543-#: ../DistUpgrade/DistUpgradeViewGtk3.py:706
3544+#: ../DistUpgrade/DistUpgradeViewGtk3.py:713
3545 msgid "To prevent data loss close all open applications and documents."
3546 msgstr "ཆ་འཕྲིན་གྲངས་མི་བརླགས་པའི་ཆེད་དུ་ཉེར་སྤྱོད་དང་ཡིག་གེ་ཡོངས་རྫོགས་སྒོ་རྒྱག་དགོས"
3547
3548-#: ../DistUpgrade/DistUpgradeViewGtk3.py:720
3549+#: ../DistUpgrade/DistUpgradeViewGtk3.py:727
3550 #, python-format
3551 msgid "No longer supported by Canonical (%s)"
3552 msgstr "Canonical (%s)ཡིས་རམ་འདེགས་མི་བྱེད་པ"
3553
3554-#: ../DistUpgrade/DistUpgradeViewGtk3.py:721
3555+#: ../DistUpgrade/DistUpgradeViewGtk3.py:728
3556 #, python-format
3557 msgid "<b>Downgrade (%s)</b>"
3558 msgstr "<b>རིམ་ཆགས (%s)</b>"
3559
3560-#: ../DistUpgrade/DistUpgradeViewGtk3.py:722
3561+#: ../DistUpgrade/DistUpgradeViewGtk3.py:729
3562 #, python-format
3563 msgid "Remove (%s)"
3564 msgstr "(%s)འདོར་བ"
3565
3566-#: ../DistUpgrade/DistUpgradeViewGtk3.py:723
3567+#: ../DistUpgrade/DistUpgradeViewGtk3.py:730
3568 #, python-format
3569 msgid "No longer needed (%s)"
3570 msgstr "འདི་མི་དགོས་པ(%s)"
3571
3572-#: ../DistUpgrade/DistUpgradeViewGtk3.py:724
3573+#: ../DistUpgrade/DistUpgradeViewGtk3.py:731
3574 #, python-format
3575 msgid "Install (%s)"
3576 msgstr "(%s)སྒྲིག་འཇུག་བྱེད་པ"
3577
3578-#: ../DistUpgrade/DistUpgradeViewGtk3.py:725
3579+#: ../DistUpgrade/DistUpgradeViewGtk3.py:732
3580 #, python-format
3581 msgid "Upgrade (%s)"
3582 msgstr "(%s)་རིམ་སྤོར"
3583
3584-#: ../DistUpgrade/DistUpgradeViewGtk3.py:773
3585+#: ../DistUpgrade/DistUpgradeViewGtk3.py:780
3586 msgid "Cancel"
3587 msgstr ""
3588
3589-#: ../DistUpgrade/DistUpgradeViewGtk3.py:774
3590-#: ../DistUpgrade/DistUpgradeViewKDE.py:906
3591+#: ../DistUpgrade/DistUpgradeViewGtk3.py:781
3592+#: ../DistUpgrade/DistUpgradeViewKDE.py:914
3593 msgid "Continue"
3594 msgstr ""
3595
3596-#: ../DistUpgrade/DistUpgradeViewKDE.py:445
3597+#: ../DistUpgrade/DistUpgradeViewKDE.py:447
3598 msgid "Show Difference >>>"
3599 msgstr "ཁྱད་པར་མངོན་པ>>>"
3600
3601-#: ../DistUpgrade/DistUpgradeViewKDE.py:448
3602+#: ../DistUpgrade/DistUpgradeViewKDE.py:450
3603 msgid "<<< Hide Difference"
3604 msgstr "<<< ཁྱད་པར་སྐུངས་པ"
3605
3606-#: ../DistUpgrade/DistUpgradeViewKDE.py:668
3607+#: ../DistUpgrade/DistUpgradeViewKDE.py:676
3608 msgid "Error"
3609 msgstr "ནོར་འཁྲུལ"
3610
3611-#: ../DistUpgrade/DistUpgradeViewKDE.py:686
3612-#: ../DistUpgrade/DistUpgradeViewKDE.py:927
3613+#: ../DistUpgrade/DistUpgradeViewKDE.py:694
3614+#: ../DistUpgrade/DistUpgradeViewKDE.py:935
3615 msgid "&Close"
3616 msgstr "སྒོ་རྒྱག་ &C"
3617
3618-#: ../DistUpgrade/DistUpgradeViewKDE.py:720
3619+#: ../DistUpgrade/DistUpgradeViewKDE.py:728
3620 msgid "Show Terminal >>>"
3621 msgstr "འཇུག་སྒོ་སྟོན་པ >>>"
3622
3623-#: ../DistUpgrade/DistUpgradeViewKDE.py:723
3624+#: ../DistUpgrade/DistUpgradeViewKDE.py:731
3625 msgid "<<< Hide Terminal"
3626 msgstr "<<< འཇུག་སྒོ་སྐུངས་པ"
3627
3628-#: ../DistUpgrade/DistUpgradeViewKDE.py:796
3629+#: ../DistUpgrade/DistUpgradeViewKDE.py:804
3630 msgid "Information"
3631 msgstr "གནས་ཚུལ"
3632
3633-#: ../DistUpgrade/DistUpgradeViewKDE.py:844
3634+#: ../DistUpgrade/DistUpgradeViewKDE.py:852
3635 msgid "&Start Upgrade"
3636 msgstr ""
3637
3638-#: ../DistUpgrade/DistUpgradeViewKDE.py:846
3639-#: ../DistUpgrade/DistUpgradeViewKDE.py:890
3640-#: ../DistUpgrade/DistUpgradeViewKDE.py:893
3641+#: ../DistUpgrade/DistUpgradeViewKDE.py:854
3642+#: ../DistUpgrade/DistUpgradeViewKDE.py:898
3643+#: ../DistUpgrade/DistUpgradeViewKDE.py:901
3644 #: ../data/gtkbuilder/DistUpgrade.ui.h:7
3645 msgid "Details"
3646 msgstr "ཞིབ་ཕྲ"
3647
3648-#: ../DistUpgrade/DistUpgradeViewKDE.py:868
3649+#: ../DistUpgrade/DistUpgradeViewKDE.py:876
3650 #, python-format
3651 msgid "No longer supported %s"
3652 msgstr "འདི་ལ་རམ་འདེགས་མི་བྱེད་པ %s"
3653
3654-#: ../DistUpgrade/DistUpgradeViewKDE.py:870
3655+#: ../DistUpgrade/DistUpgradeViewKDE.py:878
3656 #, python-format
3657 msgid "Remove %s"
3658 msgstr "%s་འདོར་བ"
3659
3660-#: ../DistUpgrade/DistUpgradeViewKDE.py:872
3661+#: ../DistUpgrade/DistUpgradeViewKDE.py:880
3662 #: ../DistUpgrade/DistUpgradeViewText.py:239
3663 #, python-format
3664 msgid "Remove (was auto installed) %s"
3665 msgstr "%s་འདོར་བ (རང་འགུལ་སྒྲིག་འཇུག་བྱས་པ)"
3666
3667-#: ../DistUpgrade/DistUpgradeViewKDE.py:874
3668+#: ../DistUpgrade/DistUpgradeViewKDE.py:882
3669 #, python-format
3670 msgid "Install %s"
3671 msgstr "%s་སྒྲིག་འཇུག་བྱེད་པ"
3672
3673-#: ../DistUpgrade/DistUpgradeViewKDE.py:876
3674+#: ../DistUpgrade/DistUpgradeViewKDE.py:884
3675 #, python-format
3676 msgid "Upgrade %s"
3677 msgstr "%s་རིམ་སྤོར"
3678
3679-#: ../DistUpgrade/DistUpgradeViewKDE.py:923
3680+#: ../DistUpgrade/DistUpgradeViewKDE.py:931
3681 #: ../DistUpgrade/DistUpgradeViewText.py:292
3682 msgid "Restart required"
3683 msgstr "འགོ་བསྐྱར་འཛུགས་དགོས་པ"
3684
3685-#: ../DistUpgrade/DistUpgradeViewKDE.py:923
3686+#: ../DistUpgrade/DistUpgradeViewKDE.py:931
3687 msgid "<b><big>Restart the system to complete the upgrade</big></b>"
3688 msgstr "<b><big>་མ་ལག་འགོ་བསྐྱར་འཛུགས་བྱས་ནས་རིམ་སྤོར་ལེགས་འགྲུབ་བྱེད་པ</big></b>"
3689
3690-#: ../DistUpgrade/DistUpgradeViewKDE.py:926
3691+#: ../DistUpgrade/DistUpgradeViewKDE.py:934
3692 #: ../data/gtkbuilder/DistUpgrade.ui.h:14
3693 msgid "_Restart Now"
3694 msgstr "ད་ལྟ་འགོ་བསྐྱར་འཛུགས_R"
3695
3696 #. FIXME make this user friendly
3697-#: ../DistUpgrade/DistUpgradeViewKDE.py:944
3698+#: ../DistUpgrade/DistUpgradeViewKDE.py:952
3699 msgid ""
3700 "<b><big>Cancel the running upgrade?</big></b>\n"
3701 "\n"
3702@@ -1427,7 +1427,7 @@ msgstr ""
3703 "\n"
3704 "རིམ་སྤོར་རྩིས་མེད་གཏོང་ན་མ་ལག་སྤྱོད་མི་རུང་བ་འགྱུར་ཉེན་ཡོད་པས་རིམ་སྤོར་ མུ་མཐུད་ན་དགའ་ངོས་ཡིན"
3705
3706-#: ../DistUpgrade/DistUpgradeViewKDE.py:948
3707+#: ../DistUpgrade/DistUpgradeViewKDE.py:956
3708 msgid "Cancel Upgrade?"
3709 msgstr "རིམ་སྤོར་རྩིས་མེད་གཏོང་དགོས་སམ"
3710
3711diff --git a/po/br.po b/po/br.po
3712index a741f0d..0862564 100644
3713--- a/po/br.po
3714+++ b/po/br.po
3715@@ -8,7 +8,7 @@ msgid ""
3716 msgstr ""
3717 "Project-Id-Version: update-manager\n"
3718 "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n"
3719-"POT-Creation-Date: 2023-02-22 21:53+0000\n"
3720+"POT-Creation-Date: 2023-04-03 16:33+0000\n"
3721 "PO-Revision-Date: 2013-05-22 11:00+0000\n"
3722 "Last-Translator: Brian Murray <brian@ubuntu.com>\n"
3723 "Language-Team: Breton <br@li.org>\n"
3724@@ -897,7 +897,7 @@ msgid "&Upgrade"
3725 msgstr ""
3726
3727 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:154
3728-#: ../DistUpgrade/DistUpgradeViewKDE.py:682
3729+#: ../DistUpgrade/DistUpgradeViewKDE.py:690
3730 msgid "&Cancel"
3731 msgstr ""
3732
3733@@ -927,8 +927,8 @@ msgstr "Restr %s eus %s"
3734
3735 #. print("mediaChange %s %s" % (medium, drive))
3736 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:235
3737-#: ../DistUpgrade/DistUpgradeViewGtk3.py:125
3738-#: ../DistUpgrade/DistUpgradeViewKDE.py:300
3739+#: ../DistUpgrade/DistUpgradeViewGtk3.py:127
3740+#: ../DistUpgrade/DistUpgradeViewKDE.py:302
3741 #, python-format
3742 msgid "Please insert '%s' into the drive '%s'"
3743 msgstr "Mar plij, enlakait '%s' el lenner '%s'"
3744@@ -936,7 +936,7 @@ msgstr "Mar plij, enlakait '%s' el lenner '%s'"
3745 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:237
3746 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:242
3747 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:243
3748-#: ../DistUpgrade/DistUpgradeViewKDE.py:301
3749+#: ../DistUpgrade/DistUpgradeViewKDE.py:303
3750 msgid "Media Change"
3751 msgstr "Kemm ar media"
3752
3753@@ -1207,27 +1207,27 @@ msgstr "Arventennañ kavlec'hiad ar roadennoù"
3754 msgid "Upgrade to the development release"
3755 msgstr ""
3756
3757-#: ../DistUpgrade/DistUpgradeViewGtk3.py:146
3758-#: ../DistUpgrade/DistUpgradeViewKDE.py:314
3759+#: ../DistUpgrade/DistUpgradeViewGtk3.py:148
3760+#: ../DistUpgrade/DistUpgradeViewKDE.py:316
3761 msgid "Fetching is complete"
3762 msgstr "Echu eo an dastum"
3763
3764-#: ../DistUpgrade/DistUpgradeViewGtk3.py:161
3765-#: ../DistUpgrade/DistUpgradeViewKDE.py:330
3766+#: ../DistUpgrade/DistUpgradeViewGtk3.py:163
3767+#: ../DistUpgrade/DistUpgradeViewKDE.py:332
3768 #, python-format
3769 msgid "Fetching file %li of %li at %sB/s"
3770 msgstr "O tastum ar restr %li eus %li da %s eizhbit/eilenn"
3771
3772-#: ../DistUpgrade/DistUpgradeViewGtk3.py:163
3773-#: ../DistUpgrade/DistUpgradeViewGtk3.py:325
3774-#: ../DistUpgrade/DistUpgradeViewKDE.py:331
3775-#: ../DistUpgrade/DistUpgradeViewKDE.py:481
3776+#: ../DistUpgrade/DistUpgradeViewGtk3.py:165
3777+#: ../DistUpgrade/DistUpgradeViewGtk3.py:327
3778+#: ../DistUpgrade/DistUpgradeViewKDE.py:333
3779+#: ../DistUpgrade/DistUpgradeViewKDE.py:483
3780 #, python-format
3781 msgid "About %s remaining"
3782 msgstr "Chom a ra tro dro %s"
3783
3784-#: ../DistUpgrade/DistUpgradeViewGtk3.py:166
3785-#: ../DistUpgrade/DistUpgradeViewKDE.py:333
3786+#: ../DistUpgrade/DistUpgradeViewGtk3.py:168
3787+#: ../DistUpgrade/DistUpgradeViewKDE.py:335
3788 #, python-format
3789 msgid "Fetching file %li of %li"
3790 msgstr "O tastum ar restr %li eus %li"
3791@@ -1235,25 +1235,25 @@ msgstr "O tastum ar restr %li eus %li"
3792 #. FIXME: add support for the timeout
3793 #. of the terminal (to display something useful then)
3794 #. -> longer term, move this code into python-apt
3795-#: ../DistUpgrade/DistUpgradeViewGtk3.py:198
3796-#: ../DistUpgrade/DistUpgradeViewKDE.py:371
3797+#: ../DistUpgrade/DistUpgradeViewGtk3.py:200
3798+#: ../DistUpgrade/DistUpgradeViewKDE.py:373
3799 msgid "Applying changes"
3800 msgstr "O seveniñ ar c'hemmoù"
3801
3802 #. we do not report followup errors from earlier failures
3803-#: ../DistUpgrade/DistUpgradeViewGtk3.py:224
3804-#: ../DistUpgrade/DistUpgradeViewKDE.py:384
3805+#: ../DistUpgrade/DistUpgradeViewGtk3.py:226
3806+#: ../DistUpgrade/DistUpgradeViewKDE.py:386
3807 msgid "dependency problems - leaving unconfigured"
3808 msgstr "Kudennoù gant an diazalc'hadennoù - laosket eo bet ankefluniet"
3809
3810-#: ../DistUpgrade/DistUpgradeViewGtk3.py:229
3811-#: ../DistUpgrade/DistUpgradeViewKDE.py:386
3812+#: ../DistUpgrade/DistUpgradeViewGtk3.py:231
3813+#: ../DistUpgrade/DistUpgradeViewKDE.py:388
3814 #, python-format
3815 msgid "Could not install '%s'"
3816 msgstr "N'eo ket bet gouest da staliañ '%s'"
3817
3818-#: ../DistUpgrade/DistUpgradeViewGtk3.py:230
3819-#: ../DistUpgrade/DistUpgradeViewKDE.py:387
3820+#: ../DistUpgrade/DistUpgradeViewGtk3.py:232
3821+#: ../DistUpgrade/DistUpgradeViewKDE.py:389
3822 #, python-format
3823 msgid ""
3824 "The upgrade will continue but the '%s' package may not be in a working "
3825@@ -1263,8 +1263,8 @@ msgstr ""
3826 "da vont en-dro. Mar plij, savit un danevell a-fet beugoù diwar e benn."
3827
3828 #. self.expander.set_expanded(True)
3829-#: ../DistUpgrade/DistUpgradeViewGtk3.py:247
3830-#: ../DistUpgrade/DistUpgradeViewKDE.py:409
3831+#: ../DistUpgrade/DistUpgradeViewGtk3.py:249
3832+#: ../DistUpgrade/DistUpgradeViewKDE.py:411
3833 #, python-format
3834 msgid ""
3835 "Replace the customized configuration file\n"
3836@@ -1273,8 +1273,8 @@ msgstr ""
3837 "Amsaviñ ar restr kefluniañ personelaet\n"
3838 "'%s' ?"
3839
3840-#: ../DistUpgrade/DistUpgradeViewGtk3.py:248
3841-#: ../DistUpgrade/DistUpgradeViewKDE.py:410
3842+#: ../DistUpgrade/DistUpgradeViewGtk3.py:250
3843+#: ../DistUpgrade/DistUpgradeViewKDE.py:412
3844 msgid ""
3845 "You will lose any changes you have made to this configuration file if you "
3846 "choose to replace it with a newer version."
3847@@ -1282,17 +1282,17 @@ msgstr ""
3848 "Kollet e vo an holl gemmoù graet ganeoc'h d'ar restr kefluniañ-mañ mar "
3849 "dibabot da amsaviñ ar restr-mañ gant unan nevesoc'h."
3850
3851-#: ../DistUpgrade/DistUpgradeViewGtk3.py:268
3852-#: ../DistUpgrade/DistUpgradeViewKDE.py:433
3853+#: ../DistUpgrade/DistUpgradeViewGtk3.py:270
3854+#: ../DistUpgrade/DistUpgradeViewKDE.py:435
3855 msgid "The 'diff' command was not found"
3856 msgstr "N'eo ket bet kavet an arc'had 'diff'"
3857
3858-#: ../DistUpgrade/DistUpgradeViewGtk3.py:535
3859+#: ../DistUpgrade/DistUpgradeViewGtk3.py:542
3860 #: ../DistUpgrade/DistUpgradeViewText.py:140
3861 msgid "A fatal error occurred"
3862 msgstr "Degouezhet ez eus bet ur fazi lazhus"
3863
3864-#: ../DistUpgrade/DistUpgradeViewGtk3.py:536
3865+#: ../DistUpgrade/DistUpgradeViewGtk3.py:543
3866 msgid ""
3867 "Please report this as a bug (if you haven't already) and include the files /"
3868 "var/log/dist-upgrade/main.log and /var/log/dist-upgrade/apt.log in your "
3869@@ -1300,11 +1300,11 @@ msgid ""
3870 "Your original sources.list was saved in /etc/apt/sources.list.distUpgrade."
3871 msgstr ""
3872
3873-#: ../DistUpgrade/DistUpgradeViewGtk3.py:566
3874+#: ../DistUpgrade/DistUpgradeViewGtk3.py:573
3875 msgid "Ctrl-c pressed"
3876 msgstr "Ctrl-c pouezet"
3877
3878-#: ../DistUpgrade/DistUpgradeViewGtk3.py:567
3879+#: ../DistUpgrade/DistUpgradeViewGtk3.py:574
3880 msgid ""
3881 "This will abort the operation and may leave the system in a broken state. "
3882 "Are you sure you want to do that?"
3883@@ -1313,133 +1313,133 @@ msgstr ""
3884 "gant ur stad torr. Ha sur oc'h e fell deoc'h ober an dra-mañ ?"
3885
3886 #. append warning
3887-#: ../DistUpgrade/DistUpgradeViewGtk3.py:706
3888+#: ../DistUpgrade/DistUpgradeViewGtk3.py:713
3889 msgid "To prevent data loss close all open applications and documents."
3890 msgstr ""
3891 "A-benn mirout ouzh koll roadennoù e vefe gwell serriñ an arloadoù digor hag "
3892 "an teulioù :"
3893
3894-#: ../DistUpgrade/DistUpgradeViewGtk3.py:720
3895+#: ../DistUpgrade/DistUpgradeViewGtk3.py:727
3896 #, python-format
3897 msgid "No longer supported by Canonical (%s)"
3898 msgstr ""
3899
3900-#: ../DistUpgrade/DistUpgradeViewGtk3.py:721
3901+#: ../DistUpgrade/DistUpgradeViewGtk3.py:728
3902 #, python-format
3903 msgid "<b>Downgrade (%s)</b>"
3904 msgstr ""
3905
3906-#: ../DistUpgrade/DistUpgradeViewGtk3.py:722
3907+#: ../DistUpgrade/DistUpgradeViewGtk3.py:729
3908 #, python-format
3909 msgid "Remove (%s)"
3910 msgstr "Dilemel (%s)"
3911
3912-#: ../DistUpgrade/DistUpgradeViewGtk3.py:723
3913+#: ../DistUpgrade/DistUpgradeViewGtk3.py:730
3914 #, python-format
3915 msgid "No longer needed (%s)"
3916 msgstr ""
3917
3918-#: ../DistUpgrade/DistUpgradeViewGtk3.py:724
3919+#: ../DistUpgrade/DistUpgradeViewGtk3.py:731
3920 #, python-format
3921 msgid "Install (%s)"
3922 msgstr "Staliañ (%s)"
3923
3924-#: ../DistUpgrade/DistUpgradeViewGtk3.py:725
3925+#: ../DistUpgrade/DistUpgradeViewGtk3.py:732
3926 #, python-format
3927 msgid "Upgrade (%s)"
3928 msgstr "Hiziavaat (%s)"
3929
3930-#: ../DistUpgrade/DistUpgradeViewGtk3.py:773
3931+#: ../DistUpgrade/DistUpgradeViewGtk3.py:780
3932 msgid "Cancel"
3933 msgstr ""
3934
3935-#: ../DistUpgrade/DistUpgradeViewGtk3.py:774
3936-#: ../DistUpgrade/DistUpgradeViewKDE.py:906
3937+#: ../DistUpgrade/DistUpgradeViewGtk3.py:781
3938+#: ../DistUpgrade/DistUpgradeViewKDE.py:914
3939 msgid "Continue"
3940 msgstr ""
3941
3942-#: ../DistUpgrade/DistUpgradeViewKDE.py:445
3943+#: ../DistUpgrade/DistUpgradeViewKDE.py:447
3944 msgid "Show Difference >>>"
3945 msgstr "Diskouez an disheñvelder >>>"
3946
3947-#: ../DistUpgrade/DistUpgradeViewKDE.py:448
3948+#: ../DistUpgrade/DistUpgradeViewKDE.py:450
3949 msgid "<<< Hide Difference"
3950 msgstr "<<< Kuzhat an disheñvelder"
3951
3952-#: ../DistUpgrade/DistUpgradeViewKDE.py:668
3953+#: ../DistUpgrade/DistUpgradeViewKDE.py:676
3954 msgid "Error"
3955 msgstr "Fazi"
3956
3957-#: ../DistUpgrade/DistUpgradeViewKDE.py:686
3958-#: ../DistUpgrade/DistUpgradeViewKDE.py:927
3959+#: ../DistUpgrade/DistUpgradeViewKDE.py:694
3960+#: ../DistUpgrade/DistUpgradeViewKDE.py:935
3961 msgid "&Close"
3962 msgstr "&Serriñ"
3963
3964-#: ../DistUpgrade/DistUpgradeViewKDE.py:720
3965+#: ../DistUpgrade/DistUpgradeViewKDE.py:728
3966 msgid "Show Terminal >>>"
3967 msgstr "Diskouez an dermenell >>>"
3968
3969-#: ../DistUpgrade/DistUpgradeViewKDE.py:723
3970+#: ../DistUpgrade/DistUpgradeViewKDE.py:731
3971 msgid "<<< Hide Terminal"
3972 msgstr "<<< Kuzhat an dermenell"
3973
3974-#: ../DistUpgrade/DistUpgradeViewKDE.py:796
3975+#: ../DistUpgrade/DistUpgradeViewKDE.py:804
3976 msgid "Information"
3977 msgstr "Titouroù"
3978
3979-#: ../DistUpgrade/DistUpgradeViewKDE.py:844
3980+#: ../DistUpgrade/DistUpgradeViewKDE.py:852
3981 msgid "&Start Upgrade"
3982 msgstr ""
3983
3984-#: ../DistUpgrade/DistUpgradeViewKDE.py:846
3985-#: ../DistUpgrade/DistUpgradeViewKDE.py:890
3986-#: ../DistUpgrade/DistUpgradeViewKDE.py:893
3987+#: ../DistUpgrade/DistUpgradeViewKDE.py:854
3988+#: ../DistUpgrade/DistUpgradeViewKDE.py:898
3989+#: ../DistUpgrade/DistUpgradeViewKDE.py:901
3990 #: ../data/gtkbuilder/DistUpgrade.ui.h:7
3991 msgid "Details"
3992 msgstr "Munudoù"
3993
3994-#: ../DistUpgrade/DistUpgradeViewKDE.py:868
3995+#: ../DistUpgrade/DistUpgradeViewKDE.py:876
3996 #, python-format
3997 msgid "No longer supported %s"
3998 msgstr "N'eo ket skoret ken %s"
3999
4000-#: ../DistUpgrade/DistUpgradeViewKDE.py:870
4001+#: ../DistUpgrade/DistUpgradeViewKDE.py:878
4002 #, python-format
4003 msgid "Remove %s"
4004 msgstr "Dilemel %s"
4005
4006-#: ../DistUpgrade/DistUpgradeViewKDE.py:872
4007+#: ../DistUpgrade/DistUpgradeViewKDE.py:880
4008 #: ../DistUpgrade/DistUpgradeViewText.py:239
4009 #, python-format
4010 msgid "Remove (was auto installed) %s"
4011 msgstr "Dilemel (staliet e oa bet emgefreek) %s"
4012
4013-#: ../DistUpgrade/DistUpgradeViewKDE.py:874
4014+#: ../DistUpgrade/DistUpgradeViewKDE.py:882
4015 #, python-format
4016 msgid "Install %s"
4017 msgstr "Staliañ %s"
4018
4019-#: ../DistUpgrade/DistUpgradeViewKDE.py:876
4020+#: ../DistUpgrade/DistUpgradeViewKDE.py:884
4021 #, python-format
4022 msgid "Upgrade %s"
4023 msgstr "Hizivaat %s"
4024
4025-#: ../DistUpgrade/DistUpgradeViewKDE.py:923
4026+#: ../DistUpgrade/DistUpgradeViewKDE.py:931
4027 #: ../DistUpgrade/DistUpgradeViewText.py:292
4028 msgid "Restart required"
4029 msgstr "Ret eo adloc'hañ"
4030
4031-#: ../DistUpgrade/DistUpgradeViewKDE.py:923
4032+#: ../DistUpgrade/DistUpgradeViewKDE.py:931
4033 msgid "<b><big>Restart the system to complete the upgrade</big></b>"
4034 msgstr "<b><big>Adloc'hañ ar reizhiad evit echuiñ an hizivadenn</big></b>"
4035
4036-#: ../DistUpgrade/DistUpgradeViewKDE.py:926
4037+#: ../DistUpgrade/DistUpgradeViewKDE.py:934
4038 #: ../data/gtkbuilder/DistUpgrade.ui.h:14
4039 msgid "_Restart Now"
4040 msgstr "_Adloc'hañ diouzhtu"
4041
4042 #. FIXME make this user friendly
4043-#: ../DistUpgrade/DistUpgradeViewKDE.py:944
4044+#: ../DistUpgrade/DistUpgradeViewKDE.py:952
4045 msgid ""
4046 "<b><big>Cancel the running upgrade?</big></b>\n"
4047 "\n"
4048@@ -1451,7 +1451,7 @@ msgstr ""
4049 "Marteze e vo distabil ar reizhiad mar dilezot an hizivaat. Gwell e vefe "
4050 "deoc'h adloc'hañ an hizivaat."
4051
4052-#: ../DistUpgrade/DistUpgradeViewKDE.py:948
4053+#: ../DistUpgrade/DistUpgradeViewKDE.py:956
4054 msgid "Cancel Upgrade?"
4055 msgstr "Nullañ an hizivadenn ?"
4056
4057diff --git a/po/bs.po b/po/bs.po
4058index 59c1cfe..d06c36a 100644
4059--- a/po/bs.po
4060+++ b/po/bs.po
4061@@ -8,7 +8,7 @@ msgid ""
4062 msgstr ""
4063 "Project-Id-Version: update-manager\n"
4064 "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n"
4065-"POT-Creation-Date: 2023-02-22 21:53+0000\n"
4066+"POT-Creation-Date: 2023-04-03 16:33+0000\n"
4067 "PO-Revision-Date: 2019-06-18 17:53+0000\n"
4068 "Last-Translator: Brian Murray <brian@ubuntu.com>\n"
4069 "Language-Team: Bosnian <bs@li.org>\n"
4070@@ -984,7 +984,7 @@ msgid "&Upgrade"
4071 msgstr "&Nadogradi"
4072
4073 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:154
4074-#: ../DistUpgrade/DistUpgradeViewKDE.py:682
4075+#: ../DistUpgrade/DistUpgradeViewKDE.py:690
4076 msgid "&Cancel"
4077 msgstr "&Otkaži"
4078
4079@@ -1014,8 +1014,8 @@ msgstr "Datoteka %s od %s"
4080
4081 #. print("mediaChange %s %s" % (medium, drive))
4082 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:235
4083-#: ../DistUpgrade/DistUpgradeViewGtk3.py:125
4084-#: ../DistUpgrade/DistUpgradeViewKDE.py:300
4085+#: ../DistUpgrade/DistUpgradeViewGtk3.py:127
4086+#: ../DistUpgrade/DistUpgradeViewKDE.py:302
4087 #, python-format
4088 msgid "Please insert '%s' into the drive '%s'"
4089 msgstr "Molim, ubacite '%s' u uređaj '%s'"
4090@@ -1023,7 +1023,7 @@ msgstr "Molim, ubacite '%s' u uređaj '%s'"
4091 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:237
4092 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:242
4093 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:243
4094-#: ../DistUpgrade/DistUpgradeViewKDE.py:301
4095+#: ../DistUpgrade/DistUpgradeViewKDE.py:303
4096 msgid "Media Change"
4097 msgstr "Izmjena Medija"
4098
4099@@ -1305,27 +1305,27 @@ msgstr "Postavi datadir"
4100 msgid "Upgrade to the development release"
4101 msgstr "Nadogradi na razvojn u verziju"
4102
4103-#: ../DistUpgrade/DistUpgradeViewGtk3.py:146
4104-#: ../DistUpgrade/DistUpgradeViewKDE.py:314
4105+#: ../DistUpgrade/DistUpgradeViewGtk3.py:148
4106+#: ../DistUpgrade/DistUpgradeViewKDE.py:316
4107 msgid "Fetching is complete"
4108 msgstr "Preuzimanje je završeno"
4109
4110-#: ../DistUpgrade/DistUpgradeViewGtk3.py:161
4111-#: ../DistUpgrade/DistUpgradeViewKDE.py:330
4112+#: ../DistUpgrade/DistUpgradeViewGtk3.py:163
4113+#: ../DistUpgrade/DistUpgradeViewKDE.py:332
4114 #, python-format
4115 msgid "Fetching file %li of %li at %sB/s"
4116 msgstr "Preuzimam datoteku broj %li od ukupno %li brzinom %sB/s"
4117
4118-#: ../DistUpgrade/DistUpgradeViewGtk3.py:163
4119-#: ../DistUpgrade/DistUpgradeViewGtk3.py:325
4120-#: ../DistUpgrade/DistUpgradeViewKDE.py:331
4121-#: ../DistUpgrade/DistUpgradeViewKDE.py:481
4122+#: ../DistUpgrade/DistUpgradeViewGtk3.py:165
4123+#: ../DistUpgrade/DistUpgradeViewGtk3.py:327
4124+#: ../DistUpgrade/DistUpgradeViewKDE.py:333
4125+#: ../DistUpgrade/DistUpgradeViewKDE.py:483
4126 #, python-format
4127 msgid "About %s remaining"
4128 msgstr "Otprilike je ostalo %s"
4129
4130-#: ../DistUpgrade/DistUpgradeViewGtk3.py:166
4131-#: ../DistUpgrade/DistUpgradeViewKDE.py:333
4132+#: ../DistUpgrade/DistUpgradeViewGtk3.py:168
4133+#: ../DistUpgrade/DistUpgradeViewKDE.py:335
4134 #, python-format
4135 msgid "Fetching file %li of %li"
4136 msgstr "Preuzimam datoteku %li od %li"
4137@@ -1333,25 +1333,25 @@ msgstr "Preuzimam datoteku %li od %li"
4138 #. FIXME: add support for the timeout
4139 #. of the terminal (to display something useful then)
4140 #. -> longer term, move this code into python-apt
4141-#: ../DistUpgrade/DistUpgradeViewGtk3.py:198
4142-#: ../DistUpgrade/DistUpgradeViewKDE.py:371
4143+#: ../DistUpgrade/DistUpgradeViewGtk3.py:200
4144+#: ../DistUpgrade/DistUpgradeViewKDE.py:373
4145 msgid "Applying changes"
4146 msgstr "Primijenjujem promjene"
4147
4148 #. we do not report followup errors from earlier failures
4149-#: ../DistUpgrade/DistUpgradeViewGtk3.py:224
4150-#: ../DistUpgrade/DistUpgradeViewKDE.py:384
4151+#: ../DistUpgrade/DistUpgradeViewGtk3.py:226
4152+#: ../DistUpgrade/DistUpgradeViewKDE.py:386
4153 msgid "dependency problems - leaving unconfigured"
4154 msgstr "problemi sa međuzavisnostima - ostavljam nekonfigurisano"
4155
4156-#: ../DistUpgrade/DistUpgradeViewGtk3.py:229
4157-#: ../DistUpgrade/DistUpgradeViewKDE.py:386
4158+#: ../DistUpgrade/DistUpgradeViewGtk3.py:231
4159+#: ../DistUpgrade/DistUpgradeViewKDE.py:388
4160 #, python-format
4161 msgid "Could not install '%s'"
4162 msgstr "Nisam mogao instalirati '%s'"
4163
4164-#: ../DistUpgrade/DistUpgradeViewGtk3.py:230
4165-#: ../DistUpgrade/DistUpgradeViewKDE.py:387
4166+#: ../DistUpgrade/DistUpgradeViewGtk3.py:232
4167+#: ../DistUpgrade/DistUpgradeViewKDE.py:389
4168 #, python-format
4169 msgid ""
4170 "The upgrade will continue but the '%s' package may not be in a working "
4171@@ -1361,8 +1361,8 @@ msgstr ""
4172 "razmotirite podnošenje izveštaja o grešci."
4173
4174 #. self.expander.set_expanded(True)
4175-#: ../DistUpgrade/DistUpgradeViewGtk3.py:247
4176-#: ../DistUpgrade/DistUpgradeViewKDE.py:409
4177+#: ../DistUpgrade/DistUpgradeViewGtk3.py:249
4178+#: ../DistUpgrade/DistUpgradeViewKDE.py:411
4179 #, python-format
4180 msgid ""
4181 "Replace the customized configuration file\n"
4182@@ -1371,8 +1371,8 @@ msgstr ""
4183 "Zamijeniti konfiguracijsku datoteku\n"
4184 "'%s'?"
4185
4186-#: ../DistUpgrade/DistUpgradeViewGtk3.py:248
4187-#: ../DistUpgrade/DistUpgradeViewKDE.py:410
4188+#: ../DistUpgrade/DistUpgradeViewGtk3.py:250
4189+#: ../DistUpgrade/DistUpgradeViewKDE.py:412
4190 msgid ""
4191 "You will lose any changes you have made to this configuration file if you "
4192 "choose to replace it with a newer version."
4193@@ -1380,17 +1380,17 @@ msgstr ""
4194 "Izgubit ćete sve promjene napravljene na ovoj konfiguracijskoj datoteci ako "
4195 "odaberete izmjenu s novijom verzijom programa."
4196
4197-#: ../DistUpgrade/DistUpgradeViewGtk3.py:268
4198-#: ../DistUpgrade/DistUpgradeViewKDE.py:433
4199+#: ../DistUpgrade/DistUpgradeViewGtk3.py:270
4200+#: ../DistUpgrade/DistUpgradeViewKDE.py:435
4201 msgid "The 'diff' command was not found"
4202 msgstr "Nisam našao naredbu 'diff'"
4203
4204-#: ../DistUpgrade/DistUpgradeViewGtk3.py:535
4205+#: ../DistUpgrade/DistUpgradeViewGtk3.py:542
4206 #: ../DistUpgrade/DistUpgradeViewText.py:140
4207 msgid "A fatal error occurred"
4208 msgstr "Pojavila se ozbiljna greška"
4209
4210-#: ../DistUpgrade/DistUpgradeViewGtk3.py:536
4211+#: ../DistUpgrade/DistUpgradeViewGtk3.py:543
4212 msgid ""
4213 "Please report this as a bug (if you haven't already) and include the files /"
4214 "var/log/dist-upgrade/main.log and /var/log/dist-upgrade/apt.log in your "
4215@@ -1403,11 +1403,11 @@ msgstr ""
4216 "Izvorna inačica datoteke sources.list je spremljena u /etc/apt/sources.list."
4217 "distUpgrade."
4218
4219-#: ../DistUpgrade/DistUpgradeViewGtk3.py:566
4220+#: ../DistUpgrade/DistUpgradeViewGtk3.py:573
4221 msgid "Ctrl-c pressed"
4222 msgstr "Pritisnuto Ctrl-c"
4223
4224-#: ../DistUpgrade/DistUpgradeViewGtk3.py:567
4225+#: ../DistUpgrade/DistUpgradeViewGtk3.py:574
4226 msgid ""
4227 "This will abort the operation and may leave the system in a broken state. "
4228 "Are you sure you want to do that?"
4229@@ -1416,133 +1416,133 @@ msgstr ""
4230 "Da li ste sigurni da to želite učiniti?"
4231
4232 #. append warning
4233-#: ../DistUpgrade/DistUpgradeViewGtk3.py:706
4234+#: ../DistUpgrade/DistUpgradeViewGtk3.py:713
4235 msgid "To prevent data loss close all open applications and documents."
4236 msgstr "Da spriječite gubitak podataka zatvorite sve programe i datoteke."
4237
4238-#: ../DistUpgrade/DistUpgradeViewGtk3.py:720
4239+#: ../DistUpgrade/DistUpgradeViewGtk3.py:727
4240 #, python-format
4241 msgid "No longer supported by Canonical (%s)"
4242 msgstr "Više ne podržava Canonical (%s)"
4243
4244-#: ../DistUpgrade/DistUpgradeViewGtk3.py:721
4245+#: ../DistUpgrade/DistUpgradeViewGtk3.py:728
4246 #, python-format
4247 msgid "<b>Downgrade (%s)</b>"
4248 msgstr "<b>Povratak na stariju verziju (%s)</b>"
4249
4250-#: ../DistUpgrade/DistUpgradeViewGtk3.py:722
4251+#: ../DistUpgrade/DistUpgradeViewGtk3.py:729
4252 #, python-format
4253 msgid "Remove (%s)"
4254 msgstr "Ukloni (%s)"
4255
4256-#: ../DistUpgrade/DistUpgradeViewGtk3.py:723
4257+#: ../DistUpgrade/DistUpgradeViewGtk3.py:730
4258 #, python-format
4259 msgid "No longer needed (%s)"
4260 msgstr "Nije više potrebno (%s)"
4261
4262-#: ../DistUpgrade/DistUpgradeViewGtk3.py:724
4263+#: ../DistUpgrade/DistUpgradeViewGtk3.py:731
4264 #, python-format
4265 msgid "Install (%s)"
4266 msgstr "Instaliraj (%s)"
4267
4268-#: ../DistUpgrade/DistUpgradeViewGtk3.py:725
4269+#: ../DistUpgrade/DistUpgradeViewGtk3.py:732
4270 #, python-format
4271 msgid "Upgrade (%s)"
4272 msgstr "Nadogradi (%s)"
4273
4274-#: ../DistUpgrade/DistUpgradeViewGtk3.py:773
4275+#: ../DistUpgrade/DistUpgradeViewGtk3.py:780
4276 msgid "Cancel"
4277 msgstr ""
4278
4279-#: ../DistUpgrade/DistUpgradeViewGtk3.py:774
4280-#: ../DistUpgrade/DistUpgradeViewKDE.py:906
4281+#: ../DistUpgrade/DistUpgradeViewGtk3.py:781
4282+#: ../DistUpgrade/DistUpgradeViewKDE.py:914
4283 msgid "Continue"
4284 msgstr ""
4285
4286-#: ../DistUpgrade/DistUpgradeViewKDE.py:445
4287+#: ../DistUpgrade/DistUpgradeViewKDE.py:447
4288 msgid "Show Difference >>>"
4289 msgstr "Pokaži Razliku >>>"
4290
4291-#: ../DistUpgrade/DistUpgradeViewKDE.py:448
4292+#: ../DistUpgrade/DistUpgradeViewKDE.py:450
4293 msgid "<<< Hide Difference"
4294 msgstr "<<< Sakrij Razliku"
4295
4296-#: ../DistUpgrade/DistUpgradeViewKDE.py:668
4297+#: ../DistUpgrade/DistUpgradeViewKDE.py:676
4298 msgid "Error"
4299 msgstr "Greška"
4300
4301-#: ../DistUpgrade/DistUpgradeViewKDE.py:686
4302-#: ../DistUpgrade/DistUpgradeViewKDE.py:927
4303+#: ../DistUpgrade/DistUpgradeViewKDE.py:694
4304+#: ../DistUpgrade/DistUpgradeViewKDE.py:935
4305 msgid "&Close"
4306 msgstr "&Zatvori"
4307
4308-#: ../DistUpgrade/DistUpgradeViewKDE.py:720
4309+#: ../DistUpgrade/DistUpgradeViewKDE.py:728
4310 msgid "Show Terminal >>>"
4311 msgstr "Pokaži Terminal >>>"
4312
4313-#: ../DistUpgrade/DistUpgradeViewKDE.py:723
4314+#: ../DistUpgrade/DistUpgradeViewKDE.py:731
4315 msgid "<<< Hide Terminal"
4316 msgstr "<<< Sakrij Terminal"
4317
4318-#: ../DistUpgrade/DistUpgradeViewKDE.py:796
4319+#: ../DistUpgrade/DistUpgradeViewKDE.py:804
4320 msgid "Information"
4321 msgstr "Obavještenje"
4322
4323-#: ../DistUpgrade/DistUpgradeViewKDE.py:844
4324+#: ../DistUpgrade/DistUpgradeViewKDE.py:852
4325 msgid "&Start Upgrade"
4326 msgstr "&Poćni nadogradnju"
4327
4328-#: ../DistUpgrade/DistUpgradeViewKDE.py:846
4329-#: ../DistUpgrade/DistUpgradeViewKDE.py:890
4330-#: ../DistUpgrade/DistUpgradeViewKDE.py:893
4331+#: ../DistUpgrade/DistUpgradeViewKDE.py:854
4332+#: ../DistUpgrade/DistUpgradeViewKDE.py:898
4333+#: ../DistUpgrade/DistUpgradeViewKDE.py:901
4334 #: ../data/gtkbuilder/DistUpgrade.ui.h:7
4335 msgid "Details"
4336 msgstr "Detalji"
4337
4338-#: ../DistUpgrade/DistUpgradeViewKDE.py:868
4339+#: ../DistUpgrade/DistUpgradeViewKDE.py:876
4340 #, python-format
4341 msgid "No longer supported %s"
4342 msgstr "Nije više podržano %s"
4343
4344-#: ../DistUpgrade/DistUpgradeViewKDE.py:870
4345+#: ../DistUpgrade/DistUpgradeViewKDE.py:878
4346 #, python-format
4347 msgid "Remove %s"
4348 msgstr "Ukloni %s"
4349
4350-#: ../DistUpgrade/DistUpgradeViewKDE.py:872
4351+#: ../DistUpgrade/DistUpgradeViewKDE.py:880
4352 #: ../DistUpgrade/DistUpgradeViewText.py:239
4353 #, python-format
4354 msgid "Remove (was auto installed) %s"
4355 msgstr "Ukloni (bio autoinstaliran) %s"
4356
4357-#: ../DistUpgrade/DistUpgradeViewKDE.py:874
4358+#: ../DistUpgrade/DistUpgradeViewKDE.py:882
4359 #, python-format
4360 msgid "Install %s"
4361 msgstr "Instaliraj %s"
4362
4363-#: ../DistUpgrade/DistUpgradeViewKDE.py:876
4364+#: ../DistUpgrade/DistUpgradeViewKDE.py:884
4365 #, python-format
4366 msgid "Upgrade %s"
4367 msgstr "Nadogradi %s"
4368
4369-#: ../DistUpgrade/DistUpgradeViewKDE.py:923
4370+#: ../DistUpgrade/DistUpgradeViewKDE.py:931
4371 #: ../DistUpgrade/DistUpgradeViewText.py:292
4372 msgid "Restart required"
4373 msgstr "Potreban restart"
4374
4375-#: ../DistUpgrade/DistUpgradeViewKDE.py:923
4376+#: ../DistUpgrade/DistUpgradeViewKDE.py:931
4377 msgid "<b><big>Restart the system to complete the upgrade</big></b>"
4378 msgstr ""
4379 "<b><big>Ponovno pokretanje računara potrebno je za završetak nadogradnje</"
4380 "big></b>"
4381
4382-#: ../DistUpgrade/DistUpgradeViewKDE.py:926
4383+#: ../DistUpgrade/DistUpgradeViewKDE.py:934
4384 #: ../data/gtkbuilder/DistUpgrade.ui.h:14
4385 msgid "_Restart Now"
4386 msgstr "Ponovno pok_reni računar"
4387
4388 #. FIXME make this user friendly
4389-#: ../DistUpgrade/DistUpgradeViewKDE.py:944
4390+#: ../DistUpgrade/DistUpgradeViewKDE.py:952
4391 msgid ""
4392 "<b><big>Cancel the running upgrade?</big></b>\n"
4393 "\n"
4394@@ -1550,7 +1550,7 @@ msgid ""
4395 "strongly advised to resume the upgrade."
4396 msgstr "<b><big>otkaži tekuću nadogradnju?</big></b>"
4397
4398-#: ../DistUpgrade/DistUpgradeViewKDE.py:948
4399+#: ../DistUpgrade/DistUpgradeViewKDE.py:956
4400 msgid "Cancel Upgrade?"
4401 msgstr "Poništi Nadogradnju?"
4402
4403diff --git a/po/ca.po b/po/ca.po
4404index 74a613c..e042928 100644
4405--- a/po/ca.po
4406+++ b/po/ca.po
4407@@ -8,7 +8,7 @@ msgid ""
4408 msgstr ""
4409 "Project-Id-Version: update-manager\n"
4410 "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n"
4411-"POT-Creation-Date: 2023-02-22 21:53+0000\n"
4412+"POT-Creation-Date: 2023-04-03 16:33+0000\n"
4413 "PO-Revision-Date: 2019-06-18 17:52+0000\n"
4414 "Last-Translator: Walter Garcia-Fontes <walter.garcia@upf.edu>\n"
4415 "Language-Team: Catalan <tradgnome@softcatala.org>\n"
4416@@ -995,7 +995,7 @@ msgid "&Upgrade"
4417 msgstr "&Actualitza"
4418
4419 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:154
4420-#: ../DistUpgrade/DistUpgradeViewKDE.py:682
4421+#: ../DistUpgrade/DistUpgradeViewKDE.py:690
4422 msgid "&Cancel"
4423 msgstr "&Cancel·la"
4424
4425@@ -1025,8 +1025,8 @@ msgstr "Fitxer %s de %s"
4426
4427 #. print("mediaChange %s %s" % (medium, drive))
4428 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:235
4429-#: ../DistUpgrade/DistUpgradeViewGtk3.py:125
4430-#: ../DistUpgrade/DistUpgradeViewKDE.py:300
4431+#: ../DistUpgrade/DistUpgradeViewGtk3.py:127
4432+#: ../DistUpgrade/DistUpgradeViewKDE.py:302
4433 #, python-format
4434 msgid "Please insert '%s' into the drive '%s'"
4435 msgstr "Inseriu «%s» a la unitat «%s»"
4436@@ -1034,7 +1034,7 @@ msgstr "Inseriu «%s» a la unitat «%s»"
4437 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:237
4438 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:242
4439 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:243
4440-#: ../DistUpgrade/DistUpgradeViewKDE.py:301
4441+#: ../DistUpgrade/DistUpgradeViewKDE.py:303
4442 msgid "Media Change"
4443 msgstr "Canvi de suport"
4444
4445@@ -1331,27 +1331,27 @@ msgstr "Estableix el «datadir» (directori de dades)"
4446 msgid "Upgrade to the development release"
4447 msgstr "Actualitza a la versió de desenvolupament"
4448
4449-#: ../DistUpgrade/DistUpgradeViewGtk3.py:146
4450-#: ../DistUpgrade/DistUpgradeViewKDE.py:314
4451+#: ../DistUpgrade/DistUpgradeViewGtk3.py:148
4452+#: ../DistUpgrade/DistUpgradeViewKDE.py:316
4453 msgid "Fetching is complete"
4454 msgstr "S'ha completat el recull"
4455
4456-#: ../DistUpgrade/DistUpgradeViewGtk3.py:161
4457-#: ../DistUpgrade/DistUpgradeViewKDE.py:330
4458+#: ../DistUpgrade/DistUpgradeViewGtk3.py:163
4459+#: ../DistUpgrade/DistUpgradeViewKDE.py:332
4460 #, python-format
4461 msgid "Fetching file %li of %li at %sB/s"
4462 msgstr "S'està obtenint el fitxer %li de %li a %s B/s"
4463
4464-#: ../DistUpgrade/DistUpgradeViewGtk3.py:163
4465-#: ../DistUpgrade/DistUpgradeViewGtk3.py:325
4466-#: ../DistUpgrade/DistUpgradeViewKDE.py:331
4467-#: ../DistUpgrade/DistUpgradeViewKDE.py:481
4468+#: ../DistUpgrade/DistUpgradeViewGtk3.py:165
4469+#: ../DistUpgrade/DistUpgradeViewGtk3.py:327
4470+#: ../DistUpgrade/DistUpgradeViewKDE.py:333
4471+#: ../DistUpgrade/DistUpgradeViewKDE.py:483
4472 #, python-format
4473 msgid "About %s remaining"
4474 msgstr "Queden %s"
4475
4476-#: ../DistUpgrade/DistUpgradeViewGtk3.py:166
4477-#: ../DistUpgrade/DistUpgradeViewKDE.py:333
4478+#: ../DistUpgrade/DistUpgradeViewGtk3.py:168
4479+#: ../DistUpgrade/DistUpgradeViewKDE.py:335
4480 #, python-format
4481 msgid "Fetching file %li of %li"
4482 msgstr "S'està obtenint el fitxer %li de %li"
4483@@ -1359,25 +1359,25 @@ msgstr "S'està obtenint el fitxer %li de %li"
4484 #. FIXME: add support for the timeout
4485 #. of the terminal (to display something useful then)
4486 #. -> longer term, move this code into python-apt
4487-#: ../DistUpgrade/DistUpgradeViewGtk3.py:198
4488-#: ../DistUpgrade/DistUpgradeViewKDE.py:371
4489+#: ../DistUpgrade/DistUpgradeViewGtk3.py:200
4490+#: ../DistUpgrade/DistUpgradeViewKDE.py:373
4491 msgid "Applying changes"
4492 msgstr "S'estan aplicant els canvis"
4493
4494 #. we do not report followup errors from earlier failures
4495-#: ../DistUpgrade/DistUpgradeViewGtk3.py:224
4496-#: ../DistUpgrade/DistUpgradeViewKDE.py:384
4497+#: ../DistUpgrade/DistUpgradeViewGtk3.py:226
4498+#: ../DistUpgrade/DistUpgradeViewKDE.py:386
4499 msgid "dependency problems - leaving unconfigured"
4500 msgstr "problemes de dependències - es deixarà sense configurar"
4501
4502-#: ../DistUpgrade/DistUpgradeViewGtk3.py:229
4503-#: ../DistUpgrade/DistUpgradeViewKDE.py:386
4504+#: ../DistUpgrade/DistUpgradeViewGtk3.py:231
4505+#: ../DistUpgrade/DistUpgradeViewKDE.py:388
4506 #, python-format
4507 msgid "Could not install '%s'"
4508 msgstr "No s'ha pogut instal·lar «%s»"
4509
4510-#: ../DistUpgrade/DistUpgradeViewGtk3.py:230
4511-#: ../DistUpgrade/DistUpgradeViewKDE.py:387
4512+#: ../DistUpgrade/DistUpgradeViewGtk3.py:232
4513+#: ../DistUpgrade/DistUpgradeViewKDE.py:389
4514 #, python-format
4515 msgid ""
4516 "The upgrade will continue but the '%s' package may not be in a working "
4517@@ -1388,8 +1388,8 @@ msgstr ""
4518 "aquest fet."
4519
4520 #. self.expander.set_expanded(True)
4521-#: ../DistUpgrade/DistUpgradeViewGtk3.py:247
4522-#: ../DistUpgrade/DistUpgradeViewKDE.py:409
4523+#: ../DistUpgrade/DistUpgradeViewGtk3.py:249
4524+#: ../DistUpgrade/DistUpgradeViewKDE.py:411
4525 #, python-format
4526 msgid ""
4527 "Replace the customized configuration file\n"
4528@@ -1398,8 +1398,8 @@ msgstr ""
4529 "Voleu reemplaçar el fitxer de\n"
4530 "configuració personalitzat «%s»?"
4531
4532-#: ../DistUpgrade/DistUpgradeViewGtk3.py:248
4533-#: ../DistUpgrade/DistUpgradeViewKDE.py:410
4534+#: ../DistUpgrade/DistUpgradeViewGtk3.py:250
4535+#: ../DistUpgrade/DistUpgradeViewKDE.py:412
4536 msgid ""
4537 "You will lose any changes you have made to this configuration file if you "
4538 "choose to replace it with a newer version."
4539@@ -1407,17 +1407,17 @@ msgstr ""
4540 "Perdreu tots els canvis realitzats en el fitxer de configuració si trieu "
4541 "reemplaçar-lo per una versió més nova."
4542
4543-#: ../DistUpgrade/DistUpgradeViewGtk3.py:268
4544-#: ../DistUpgrade/DistUpgradeViewKDE.py:433
4545+#: ../DistUpgrade/DistUpgradeViewGtk3.py:270
4546+#: ../DistUpgrade/DistUpgradeViewKDE.py:435
4547 msgid "The 'diff' command was not found"
4548 msgstr "No s'ha trobat l'ordre «diff»"
4549
4550-#: ../DistUpgrade/DistUpgradeViewGtk3.py:535
4551+#: ../DistUpgrade/DistUpgradeViewGtk3.py:542
4552 #: ../DistUpgrade/DistUpgradeViewText.py:140
4553 msgid "A fatal error occurred"
4554 msgstr "S'ha produït un error greu"
4555
4556-#: ../DistUpgrade/DistUpgradeViewGtk3.py:536
4557+#: ../DistUpgrade/DistUpgradeViewGtk3.py:543
4558 msgid ""
4559 "Please report this as a bug (if you haven't already) and include the files /"
4560 "var/log/dist-upgrade/main.log and /var/log/dist-upgrade/apt.log in your "
4561@@ -1430,11 +1430,11 @@ msgstr ""
4562 "S'ha desat el vostre fitxer sources.list original a /etc/apt/sources.list."
4563 "distUpgrade."
4564
4565-#: ../DistUpgrade/DistUpgradeViewGtk3.py:566
4566+#: ../DistUpgrade/DistUpgradeViewGtk3.py:573
4567 msgid "Ctrl-c pressed"
4568 msgstr "S'ha premut Ctrl+C"
4569
4570-#: ../DistUpgrade/DistUpgradeViewGtk3.py:567
4571+#: ../DistUpgrade/DistUpgradeViewGtk3.py:574
4572 msgid ""
4573 "This will abort the operation and may leave the system in a broken state. "
4574 "Are you sure you want to do that?"
4575@@ -1443,133 +1443,133 @@ msgstr ""
4576 "sistema. Esteu segur que ho voleu fer?"
4577
4578 #. append warning
4579-#: ../DistUpgrade/DistUpgradeViewGtk3.py:706
4580+#: ../DistUpgrade/DistUpgradeViewGtk3.py:713
4581 msgid "To prevent data loss close all open applications and documents."
4582 msgstr ""
4583 "Per a evitar una possible pèrdua de dades, tanqueu tots els documents i "
4584 "aplicacions."
4585
4586-#: ../DistUpgrade/DistUpgradeViewGtk3.py:720
4587+#: ../DistUpgrade/DistUpgradeViewGtk3.py:727
4588 #, python-format
4589 msgid "No longer supported by Canonical (%s)"
4590 msgstr "Ja no mantinguts per Canonical (%s)"
4591
4592-#: ../DistUpgrade/DistUpgradeViewGtk3.py:721
4593+#: ../DistUpgrade/DistUpgradeViewGtk3.py:728
4594 #, python-format
4595 msgid "<b>Downgrade (%s)</b>"
4596 msgstr "<b>Es desactualitzaran (%s)</b>"
4597
4598-#: ../DistUpgrade/DistUpgradeViewGtk3.py:722
4599+#: ../DistUpgrade/DistUpgradeViewGtk3.py:729
4600 #, python-format
4601 msgid "Remove (%s)"
4602 msgstr "Se suprimiran (%s)"
4603
4604-#: ../DistUpgrade/DistUpgradeViewGtk3.py:723
4605+#: ../DistUpgrade/DistUpgradeViewGtk3.py:730
4606 #, python-format
4607 msgid "No longer needed (%s)"
4608 msgstr "Ja no són necessaris (%s)"
4609
4610-#: ../DistUpgrade/DistUpgradeViewGtk3.py:724
4611+#: ../DistUpgrade/DistUpgradeViewGtk3.py:731
4612 #, python-format
4613 msgid "Install (%s)"
4614 msgstr "S'instal·laran (%s)"
4615
4616-#: ../DistUpgrade/DistUpgradeViewGtk3.py:725
4617+#: ../DistUpgrade/DistUpgradeViewGtk3.py:732
4618 #, python-format
4619 msgid "Upgrade (%s)"
4620 msgstr "S'actualitzaran (%s)"
4621
4622-#: ../DistUpgrade/DistUpgradeViewGtk3.py:773
4623+#: ../DistUpgrade/DistUpgradeViewGtk3.py:780
4624 msgid "Cancel"
4625 msgstr ""
4626
4627-#: ../DistUpgrade/DistUpgradeViewGtk3.py:774
4628-#: ../DistUpgrade/DistUpgradeViewKDE.py:906
4629+#: ../DistUpgrade/DistUpgradeViewGtk3.py:781
4630+#: ../DistUpgrade/DistUpgradeViewKDE.py:914
4631 msgid "Continue"
4632 msgstr ""
4633
4634-#: ../DistUpgrade/DistUpgradeViewKDE.py:445
4635+#: ../DistUpgrade/DistUpgradeViewKDE.py:447
4636 msgid "Show Difference >>>"
4637 msgstr "Mostra les diferències >>>"
4638
4639-#: ../DistUpgrade/DistUpgradeViewKDE.py:448
4640+#: ../DistUpgrade/DistUpgradeViewKDE.py:450
4641 msgid "<<< Hide Difference"
4642 msgstr "<<< Oculta les diferències"
4643
4644-#: ../DistUpgrade/DistUpgradeViewKDE.py:668
4645+#: ../DistUpgrade/DistUpgradeViewKDE.py:676
4646 msgid "Error"
4647 msgstr "S'ha produït un error"
4648
4649-#: ../DistUpgrade/DistUpgradeViewKDE.py:686
4650-#: ../DistUpgrade/DistUpgradeViewKDE.py:927
4651+#: ../DistUpgrade/DistUpgradeViewKDE.py:694
4652+#: ../DistUpgrade/DistUpgradeViewKDE.py:935
4653 msgid "&Close"
4654 msgstr "&Tanca"
4655
4656-#: ../DistUpgrade/DistUpgradeViewKDE.py:720
4657+#: ../DistUpgrade/DistUpgradeViewKDE.py:728
4658 msgid "Show Terminal >>>"
4659 msgstr "Mostra el terminal >>>"
4660
4661-#: ../DistUpgrade/DistUpgradeViewKDE.py:723
4662+#: ../DistUpgrade/DistUpgradeViewKDE.py:731
4663 msgid "<<< Hide Terminal"
4664 msgstr "<<< Oculta el terminal"
4665
4666-#: ../DistUpgrade/DistUpgradeViewKDE.py:796
4667+#: ../DistUpgrade/DistUpgradeViewKDE.py:804
4668 msgid "Information"
4669 msgstr "Informació"
4670
4671-#: ../DistUpgrade/DistUpgradeViewKDE.py:844
4672+#: ../DistUpgrade/DistUpgradeViewKDE.py:852
4673 msgid "&Start Upgrade"
4674 msgstr "&Inicia l'actualització"
4675
4676-#: ../DistUpgrade/DistUpgradeViewKDE.py:846
4677-#: ../DistUpgrade/DistUpgradeViewKDE.py:890
4678-#: ../DistUpgrade/DistUpgradeViewKDE.py:893
4679+#: ../DistUpgrade/DistUpgradeViewKDE.py:854
4680+#: ../DistUpgrade/DistUpgradeViewKDE.py:898
4681+#: ../DistUpgrade/DistUpgradeViewKDE.py:901
4682 #: ../data/gtkbuilder/DistUpgrade.ui.h:7
4683 msgid "Details"
4684 msgstr "Detalls"
4685
4686-#: ../DistUpgrade/DistUpgradeViewKDE.py:868
4687+#: ../DistUpgrade/DistUpgradeViewKDE.py:876
4688 #, python-format
4689 msgid "No longer supported %s"
4690 msgstr "Ja no es mantenen %s"
4691
4692-#: ../DistUpgrade/DistUpgradeViewKDE.py:870
4693+#: ../DistUpgrade/DistUpgradeViewKDE.py:878
4694 #, python-format
4695 msgid "Remove %s"
4696 msgstr "Suprimeix %s"
4697
4698-#: ../DistUpgrade/DistUpgradeViewKDE.py:872
4699+#: ../DistUpgrade/DistUpgradeViewKDE.py:880
4700 #: ../DistUpgrade/DistUpgradeViewText.py:239
4701 #, python-format
4702 msgid "Remove (was auto installed) %s"
4703 msgstr "Suprimeix %s (s'havia instal·lat automàticament)"
4704
4705-#: ../DistUpgrade/DistUpgradeViewKDE.py:874
4706+#: ../DistUpgrade/DistUpgradeViewKDE.py:882
4707 #, python-format
4708 msgid "Install %s"
4709 msgstr "Instal·la %s"
4710
4711-#: ../DistUpgrade/DistUpgradeViewKDE.py:876
4712+#: ../DistUpgrade/DistUpgradeViewKDE.py:884
4713 #, python-format
4714 msgid "Upgrade %s"
4715 msgstr "Actualitza %s"
4716
4717-#: ../DistUpgrade/DistUpgradeViewKDE.py:923
4718+#: ../DistUpgrade/DistUpgradeViewKDE.py:931
4719 #: ../DistUpgrade/DistUpgradeViewText.py:292
4720 msgid "Restart required"
4721 msgstr "Cal que reinicieu el sistema"
4722
4723-#: ../DistUpgrade/DistUpgradeViewKDE.py:923
4724+#: ../DistUpgrade/DistUpgradeViewKDE.py:931
4725 msgid "<b><big>Restart the system to complete the upgrade</big></b>"
4726 msgstr "<b><big>Reinicieu el sistema per a completar l'actualització</big></b>"
4727
4728-#: ../DistUpgrade/DistUpgradeViewKDE.py:926
4729+#: ../DistUpgrade/DistUpgradeViewKDE.py:934
4730 #: ../data/gtkbuilder/DistUpgrade.ui.h:14
4731 msgid "_Restart Now"
4732 msgstr "_Reinicia"
4733
4734 #. FIXME make this user friendly
4735-#: ../DistUpgrade/DistUpgradeViewKDE.py:944
4736+#: ../DistUpgrade/DistUpgradeViewKDE.py:952
4737 msgid ""
4738 "<b><big>Cancel the running upgrade?</big></b>\n"
4739 "\n"
4740@@ -1581,7 +1581,7 @@ msgstr ""
4741 "El sistema pot quedar inusable si la cancel·leu. És molt recomanable "
4742 "continuar amb l'actualització."
4743
4744-#: ../DistUpgrade/DistUpgradeViewKDE.py:948
4745+#: ../DistUpgrade/DistUpgradeViewKDE.py:956
4746 msgid "Cancel Upgrade?"
4747 msgstr "Voleu cancel·lar l'actualització?"
4748
4749diff --git a/po/ca@valencia.po b/po/ca@valencia.po
4750index f170608..0b1da41 100644
4751--- a/po/ca@valencia.po
4752+++ b/po/ca@valencia.po
4753@@ -8,7 +8,7 @@ msgid ""
4754 msgstr ""
4755 "Project-Id-Version: update-manager\n"
4756 "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n"
4757-"POT-Creation-Date: 2023-02-22 21:53+0000\n"
4758+"POT-Creation-Date: 2023-04-03 16:33+0000\n"
4759 "PO-Revision-Date: 2013-05-22 11:00+0000\n"
4760 "Last-Translator: Joan Duran <jodufi@gmail.com>\n"
4761 "Language-Team: Catalan <tradgnome@softcatala.org>\n"
4762@@ -926,7 +926,7 @@ msgid "&Upgrade"
4763 msgstr ""
4764
4765 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:154
4766-#: ../DistUpgrade/DistUpgradeViewKDE.py:682
4767+#: ../DistUpgrade/DistUpgradeViewKDE.py:690
4768 msgid "&Cancel"
4769 msgstr ""
4770
4771@@ -956,8 +956,8 @@ msgstr "Fitxer %s de %s"
4772
4773 #. print("mediaChange %s %s" % (medium, drive))
4774 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:235
4775-#: ../DistUpgrade/DistUpgradeViewGtk3.py:125
4776-#: ../DistUpgrade/DistUpgradeViewKDE.py:300
4777+#: ../DistUpgrade/DistUpgradeViewGtk3.py:127
4778+#: ../DistUpgrade/DistUpgradeViewKDE.py:302
4779 #, python-format
4780 msgid "Please insert '%s' into the drive '%s'"
4781 msgstr "Inseriu «%s» a la unitat «%s»"
4782@@ -965,7 +965,7 @@ msgstr "Inseriu «%s» a la unitat «%s»"
4783 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:237
4784 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:242
4785 #: ../DistUpgrade/DistUpgradeFetcherKDE.py:243
4786-#: ../DistUpgrade/DistUpgradeViewKDE.py:301
4787+#: ../DistUpgrade/DistUpgradeViewKDE.py:303
4788 msgid "Media Change"
4789 msgstr "Canvi de suport"
4790
4791@@ -1241,27 +1241,27 @@ msgstr "Estableix el «datadir» (directori de dades)"
4792 msgid "Upgrade to the development release"
4793 msgstr "Actualitza a la versió de desenvolupament"
4794
4795-#: ../DistUpgrade/DistUpgradeViewGtk3.py:146
4796-#: ../DistUpgrade/DistUpgradeViewKDE.py:314
4797+#: ../DistUpgrade/DistUpgradeViewGtk3.py:148
4798+#: ../DistUpgrade/DistUpgradeViewKDE.py:316
4799 msgid "Fetching is complete"
4800 msgstr "S'ha completat el recull"
4801
4802-#: ../DistUpgrade/DistUpgradeViewGtk3.py:161
4803-#: ../DistUpgrade/DistUpgradeViewKDE.py:330
4804+#: ../DistUpgrade/DistUpgradeViewGtk3.py:163
4805+#: ../DistUpgrade/DistUpgradeViewKDE.py:332
4806 #, python-format
4807 msgid "Fetching file %li of %li at %sB/s"
4808 msgstr "S'està obtenint el fitxer %li de %li a %s B/s"
4809
4810-#: ../DistUpgrade/DistUpgradeViewGtk3.py:163
4811-#: ../DistUpgrade/DistUpgradeViewGtk3.py:325
4812-#: ../DistUpgrade/DistUpgradeViewKDE.py:331
4813-#: ../DistUpgrade/DistUpgradeViewKDE.py:481
4814+#: ../DistUpgrade/DistUpgradeViewGtk3.py:165
4815+#: ../DistUpgrade/DistUpgradeViewGtk3.py:327
4816+#: ../DistUpgrade/DistUpgradeViewKDE.py:333
4817+#: ../DistUpgrade/DistUpgradeViewKDE.py:483
4818 #, python-format
4819 msgid "About %s remaining"
4820 msgstr "Queden %s"
4821
4822-#: ../DistUpgrade/DistUpgradeViewGtk3.py:166
4823-#: ../DistUpgrade/DistUpgradeViewKDE.py:333
4824+#: ../DistUpgrade/DistUpgradeViewGtk3.py:168
4825+#: ../DistUpgrade/DistUpgradeViewKDE.py:335
4826 #, python-format
4827 msgid "Fetching file %li of %li"
4828 msgstr "S'està obtenint el fitxer %li de %li"
4829@@ -1269,25 +1269,25 @@ msgstr "S'està obtenint el fitxer %li de %li"
4830 #. FIXME: add support for the timeout
4831 #. of the terminal (to display something useful then)
4832 #. -> longer term, move this code into python-apt
4833-#: ../DistUpgrade/DistUpgradeViewGtk3.py:198
4834-#: ../DistUpgrade/DistUpgradeViewKDE.py:371
4835+#: ../DistUpgrade/DistUpgradeViewGtk3.py:200
4836+#: ../DistUpgrade/DistUpgradeViewKDE.py:373
4837 msgid "Applying changes"
4838 msgstr "S'estan aplicant els canvis"
4839
4840 #. we do not report followup errors from earlier failures
4841-#: ../DistUpgrade/DistUpgradeViewGtk3.py:224
4842-#: ../DistUpgrade/DistUpgradeViewKDE.py:384
4843+#: ../DistUpgrade/DistUpgradeViewGtk3.py:226
4844+#: ../DistUpgrade/DistUpgradeViewKDE.py:386
4845 msgid "dependency problems - leaving unconfigured"
4846 msgstr "problemes de dependències - es deixarà sense configurar"
4847
4848-#: ../DistUpgrade/DistUpgradeViewGtk3.py:229
4849-#: ../DistUpgrade/DistUpgradeViewKDE.py:386
4850+#: ../DistUpgrade/DistUpgradeViewGtk3.py:231
4851+#: ../DistUpgrade/DistUpgradeViewKDE.py:388
4852 #, python-format
4853 msgid "Could not install '%s'"
4854 msgstr "No s'ha pogut instal·lar «%s»"
4855
4856-#: ../DistUpgrade/DistUpgradeViewGtk3.py:230
4857-#: ../DistUpgrade/DistUpgradeViewKDE.py:387
4858+#: ../DistUpgrade/DistUpgradeViewGtk3.py:232
4859+#: ../DistUpgrade/DistUpgradeViewKDE.py:389
4860 #, python-format
4861 msgid ""
4862 "The upgrade will continue but the '%s' package may not be in a working "
4863@@ -1298,8 +1298,8 @@ msgstr ""
4864 "fet."
4865
4866 #. self.expander.set_expanded(True)
4867-#: ../DistUpgrade/DistUpgradeViewGtk3.py:247
4868-#: ../DistUpgrade/DistUpgradeViewKDE.py:409
4869+#: ../DistUpgrade/DistUpgradeViewGtk3.py:249
4870+#: ../DistUpgrade/DistUpgradeViewKDE.py:411
4871 #, python-format
4872 msgid ""
4873 "Replace the customized configuration file\n"
4874@@ -1308,8 +1308,8 @@ msgstr ""
4875 "Voleu reemplaçar el fitxer de\n"
4876 "configuració personalitzat «%s»?"
4877
4878-#: ../DistUpgrade/DistUpgradeViewGtk3.py:248
4879-#: ../DistUpgrade/DistUpgradeViewKDE.py:410
4880+#: ../DistUpgrade/DistUpgradeViewGtk3.py:250
4881+#: ../DistUpgrade/DistUpgradeViewKDE.py:412
4882 msgid ""
4883 "You will lose any changes you have made to this configuration file if you "
4884 "choose to replace it with a newer version."
4885@@ -1317,17 +1317,17 @@ msgstr ""
4886 "Perdreu tots els canvis realitzats en el fitxer de configuració si trieu "
4887 "reemplaçar-lo per una versió més nova."
4888
4889-#: ../DistUpgrade/DistUpgradeViewGtk3.py:268
4890-#: ../DistUpgrade/DistUpgradeViewKDE.py:433
4891+#: ../DistUpgrade/DistUpgradeViewGtk3.py:270
4892+#: ../DistUpgrade/DistUpgradeViewKDE.py:435
4893 msgid "The 'diff' command was not found"
4894 msgstr "No s'ha trobat l'orde «diff»"
4895
4896-#: ../DistUpgrade/DistUpgradeViewGtk3.py:535
4897+#: ../DistUpgrade/DistUpgradeViewGtk3.py:542
4898 #: ../DistUpgrade/DistUpgradeViewText.py:140
4899 msgid "A fatal error occurred"
4900 msgstr "S'ha produït un error greu"
4901
4902-#: ../DistUpgrade/DistUpgradeViewGtk3.py:536
4903+#: ../DistUpgrade/DistUpgradeViewGtk3.py:543
4904 msgid ""
4905 "Please report this as a bug (if you haven't already) and include the files /"
4906 "var/log/dist-upgrade/main.log and /var/log/dist-upgrade/apt.log in your "
4907@@ -1340,11 +1340,11 @@ msgstr ""
4908 "S'ha guardat el vostre fitxer sources.list original a /etc/apt/sources.list."
4909 "distUpgrade."
4910
4911-#: ../DistUpgrade/DistUpgradeViewGtk3.py:566
4912+#: ../DistUpgrade/DistUpgradeViewGtk3.py:573
4913 msgid "Ctrl-c pressed"
4914 msgstr "S'ha premut Ctrl+C"
4915
4916-#: ../DistUpgrade/DistUpgradeViewGtk3.py:567
4917+#: ../DistUpgrade/DistUpgradeViewGtk3.py:574
4918 msgid ""
4919 "This will abort the operation and may leave the system in a broken state. "
4920 "Are you sure you want to do that?"
4921@@ -1353,133 +1353,133 @@ msgstr ""
4922 "sistema. Esteu segur que ho voleu fer?"
4923
4924 #. append warning
4925-#: ../DistUpgrade/DistUpgradeViewGtk3.py:706
4926+#: ../DistUpgrade/DistUpgradeViewGtk3.py:713
4927 msgid "To prevent data loss close all open applications and documents."
4928 msgstr ""
4929 "Per a evitar una possible pèrdua de dades, tanqueu tots els documents i "
4930 "aplicacions."
4931
4932-#: ../DistUpgrade/DistUpgradeViewGtk3.py:720
4933+#: ../DistUpgrade/DistUpgradeViewGtk3.py:727
4934 #, python-format
4935 msgid "No longer supported by Canonical (%s)"
4936 msgstr "Ja no mantinguts per Canonical (%s)"
4937
4938-#: ../DistUpgrade/DistUpgradeViewGtk3.py:721
4939+#: ../DistUpgrade/DistUpgradeViewGtk3.py:728
4940 #, python-format
4941 msgid "<b>Downgrade (%s)</b>"
4942 msgstr "<b>Es desactualitzaran (%s)</b>"
4943
4944-#: ../DistUpgrade/DistUpgradeViewGtk3.py:722
4945+#: ../DistUpgrade/DistUpgradeViewGtk3.py:729
4946 #, python-format
4947 msgid "Remove (%s)"
4948 msgstr "Se suprimiran (%s)"
4949
4950-#: ../DistUpgrade/DistUpgradeViewGtk3.py:723
4951+#: ../DistUpgrade/DistUpgradeViewGtk3.py:730
4952 #, python-format
4953 msgid "No longer needed (%s)"
4954 msgstr "Ja no són necessaris (%s)"
4955
4956-#: ../DistUpgrade/DistUpgradeViewGtk3.py:724
4957+#: ../DistUpgrade/DistUpgradeViewGtk3.py:731
4958 #, python-format
4959 msgid "Install (%s)"
4960 msgstr "S'instal·laran (%s)"
4961
4962-#: ../DistUpgrade/DistUpgradeViewGtk3.py:725
4963+#: ../DistUpgrade/DistUpgradeViewGtk3.py:732
4964 #, python-format
4965 msgid "Upgrade (%s)"
4966 msgstr "S'actualitzaran (%s)"
4967
4968-#: ../DistUpgrade/DistUpgradeViewGtk3.py:773
4969+#: ../DistUpgrade/DistUpgradeViewGtk3.py:780
4970 msgid "Cancel"
4971 msgstr ""
4972
4973-#: ../DistUpgrade/DistUpgradeViewGtk3.py:774
4974-#: ../DistUpgrade/DistUpgradeViewKDE.py:906
4975+#: ../DistUpgrade/DistUpgradeViewGtk3.py:781
4976+#: ../DistUpgrade/DistUpgradeViewKDE.py:914
4977 msgid "Continue"
4978 msgstr ""
4979
4980-#: ../DistUpgrade/DistUpgradeViewKDE.py:445
4981+#: ../DistUpgrade/DistUpgradeViewKDE.py:447
4982 msgid "Show Difference >>>"
4983 msgstr "Mostra les diferències >>>"
4984
4985-#: ../DistUpgrade/DistUpgradeViewKDE.py:448
4986+#: ../DistUpgrade/DistUpgradeViewKDE.py:450
4987 msgid "<<< Hide Difference"
4988 msgstr "<<< Oculta les diferències"
4989
4990-#: ../DistUpgrade/DistUpgradeViewKDE.py:668
4991+#: ../DistUpgrade/DistUpgradeViewKDE.py:676
4992 msgid "Error"
4993 msgstr "S'ha produït un error"
4994
4995-#: ../DistUpgrade/DistUpgradeViewKDE.py:686
4996-#: ../DistUpgrade/DistUpgradeViewKDE.py:927
4997+#: ../DistUpgrade/DistUpgradeViewKDE.py:694
4998+#: ../DistUpgrade/DistUpgradeViewKDE.py:935
4999 msgid "&Close"
5000 msgstr "&Tanca"
The diff has been truncated for viewing.

Subscribers

People subscribed via source and target branches