Merge ~enr0n/ubuntu-release-upgrader:lp.2012638 into ubuntu-release-upgrader:ubuntu/main
- Git
- lp:~enr0n/ubuntu-release-upgrader
- lp.2012638
- Merge into ubuntu/main
Proposed by
Nick Rosbrook
Status: | Merged |
---|---|
Merged at revision: | 2fcdc4d71c0d940426266d3aaf612de3ec55c78c |
Proposed branch: | ~enr0n/ubuntu-release-upgrader:lp.2012638 |
Merge into: | ubuntu-release-upgrader:ubuntu/main |
Diff against target: |
31429 lines (+4442/-4424) 132 files modified
DistUpgrade/DistUpgradeQuirks.py (+20/-0) DistUpgrade/DistUpgradeVersion.py (+1/-1) data/mirrors.cfg (+4/-5) debian/changelog (+7/-2) po/af.po (+35/-35) po/am.po (+35/-35) po/an.po (+35/-35) po/ar.po (+35/-35) po/ast.po (+35/-35) po/az.po (+35/-35) po/be.po (+35/-35) po/bg.po (+35/-35) po/bn.po (+35/-35) po/bo.po (+35/-35) po/br.po (+35/-35) po/bs.po (+35/-35) po/ca.po (+35/-35) po/ca@valencia.po (+35/-35) po/ce.po (+35/-35) po/ceb.po (+35/-35) po/ckb.po (+35/-35) po/crh.po (+35/-35) po/cs.po (+35/-35) po/csb.po (+35/-35) po/cv.po (+35/-35) po/cy.po (+35/-35) po/da.po (+35/-35) po/de.po (+35/-35) po/dv.po (+35/-35) po/el.po (+35/-35) po/en_AU.po (+35/-35) po/en_CA.po (+35/-35) po/en_GB.po (+35/-35) po/eo.po (+35/-35) po/es.po (+35/-35) po/et.po (+35/-35) po/eu.po (+35/-35) po/fa.po (+35/-35) po/fi.po (+35/-35) po/fil.po (+35/-35) po/fo.po (+35/-35) po/fr.po (+35/-35) po/fr_CA.po (+35/-35) po/fur.po (+35/-35) po/fy.po (+35/-35) po/ga.po (+35/-35) po/gd.po (+35/-35) po/gl.po (+35/-35) po/gu.po (+35/-35) po/gv.po (+35/-35) po/he.po (+35/-35) po/hi.po (+35/-35) po/hr.po (+35/-35) po/hu.po (+35/-35) po/hy.po (+35/-35) po/ia.po (+35/-35) po/id.po (+35/-35) po/is.po (+35/-35) po/it.po (+35/-35) po/ja.po (+35/-35) po/jv.po (+35/-35) po/ka.po (+35/-35) po/kk.po (+35/-35) po/km.po (+35/-35) po/kn.po (+35/-35) po/ko.po (+35/-35) po/ku.po (+35/-35) po/ky.po (+35/-35) po/lb.po (+35/-35) po/ln.po (+35/-35) po/lo.po (+35/-35) po/lt.po (+35/-35) po/lv.po (+35/-35) po/mhr.po (+35/-35) po/mjw.po (+35/-35) po/mk.po (+35/-35) po/ml.po (+35/-35) po/mn.po (+35/-35) po/mnw.po (+35/-35) po/mr.po (+35/-35) po/ms.po (+35/-35) po/mus.po (+35/-35) po/my.po (+35/-35) po/nb.po (+35/-35) po/nds.po (+35/-35) po/ne.po (+35/-35) po/nl.po (+35/-35) po/nn.po (+35/-35) po/oc.po (+35/-35) po/om.po (+35/-35) po/pa.po (+35/-35) po/pam.po (+35/-35) po/pl.po (+35/-35) po/ps.po (+35/-35) po/pt.po (+35/-35) po/pt_BR.po (+35/-35) po/qu.po (+35/-35) po/ro.po (+35/-35) po/ru.po (+35/-35) po/rw.po (+35/-35) po/sc.po (+35/-35) po/sco.po (+35/-35) po/sd.po (+35/-35) po/se.po (+35/-35) po/shn.po (+35/-35) po/si.po (+35/-35) po/sk.po (+35/-35) po/sl.po (+35/-35) po/sq.po (+35/-35) po/sr.po (+35/-35) po/sv.po (+35/-35) po/szl.po (+35/-35) po/ta.po (+35/-35) po/ta_LK.po (+35/-35) po/te.po (+35/-35) po/tg.po (+35/-35) po/th.po (+35/-35) po/tl.po (+35/-35) po/tr.po (+35/-35) po/ubuntu-release-upgrader.pot (+35/-35) po/ug.po (+35/-35) po/uk.po (+35/-35) po/ur.po (+35/-35) po/uz.po (+35/-35) po/vi.po (+35/-35) po/xh.po (+35/-35) po/zh_CN.po (+35/-35) po/zh_HK.po (+35/-35) po/zh_TW.po (+35/-35) po/zu.po (+35/-35) utils/demoted.cfg (+0/-3) utils/demoted.cfg.jammy (+0/-3) |
Related bugs: |
Reviewer | Review Type | Date Requested | Status |
---|---|---|---|
Brian Murray | Approve | ||
Review via email:
|
Commit message
Description of the change
Add a quirk to workaround tracker-extract-3 crashing during the upgrade.
To post a comment you must log in.
Revision history for this message

Brian Murray (brian-murray) wrote : | # |
Revision history for this message

Brian Murray (brian-murray) : | # |
review:
Approve
Preview Diff
[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1 | diff --git a/DistUpgrade/DistUpgradeQuirks.py b/DistUpgrade/DistUpgradeQuirks.py |
2 | index 261c7d5..059408d 100644 |
3 | --- a/DistUpgrade/DistUpgradeQuirks.py |
4 | +++ b/DistUpgrade/DistUpgradeQuirks.py |
5 | @@ -109,6 +109,7 @@ class DistUpgradeQuirks(object): |
6 | def PreCacheOpen(self): |
7 | """ run before the apt cache is opened the first time """ |
8 | logging.debug("running Quirks.PreCacheOpen") |
9 | + self._add_apport_ignore_tracker_extract() |
10 | |
11 | # individual quirks handler that run *after* the cache is opened |
12 | def lunarPostInitialUpdate(self): |
13 | @@ -158,6 +159,7 @@ class DistUpgradeQuirks(object): |
14 | def PostCleanup(self): |
15 | " run after cleanup " |
16 | logging.debug("running Quirks.PostCleanup") |
17 | + self._remove_apport_ignore_tracker_extract() |
18 | |
19 | # run right before the first packages get installed |
20 | def StartUpgrade(self): |
21 | @@ -521,6 +523,24 @@ class DistUpgradeQuirks(object): |
22 | self._view.getInstallProgress(self.controller.cache) |
23 | ) |
24 | |
25 | + def _add_apport_ignore_tracker_extract(self): |
26 | + path = '/etc/apport/blacklist.d/upgrade-quirk-tracker-extract-3' |
27 | + |
28 | + try: |
29 | + os.makedirs(os.path.dirname(path), exist_ok=True) |
30 | + with open(path, 'w') as f: |
31 | + f.write('/usr/libexec/tracker-extract-3\n') |
32 | + except Exception as e: |
33 | + logging.debug('Failed to create {}: {}'.format(path, e)) |
34 | + |
35 | + def _remove_apport_ignore_tracker_extract(self): |
36 | + path = '/etc/apport/blacklist.d/upgrade-quirk-tracker-extract-3' |
37 | + |
38 | + try: |
39 | + os.remove(path) |
40 | + except Exception as e: |
41 | + logging.debug('Failed to remove {}: {}'.format(path, e)) |
42 | + |
43 | def _checkArmCPU(self): |
44 | """ |
45 | parse /proc/cpuinfo and search for ARMv6 or greater |
46 | diff --git a/DistUpgrade/DistUpgradeVersion.py b/DistUpgrade/DistUpgradeVersion.py |
47 | index f8f9ce9..fc003b4 100644 |
48 | --- a/DistUpgrade/DistUpgradeVersion.py |
49 | +++ b/DistUpgrade/DistUpgradeVersion.py |
50 | @@ -1 +1 @@ |
51 | -VERSION = '23.04.3' |
52 | +VERSION = '23.04.4' |
53 | diff --git a/data/mirrors.cfg b/data/mirrors.cfg |
54 | index 9ca737b..7bff0ec 100644 |
55 | --- a/data/mirrors.cfg |
56 | +++ b/data/mirrors.cfg |
57 | @@ -362,7 +362,6 @@ http://mirrors.huaweicloud.com/repository/ubuntu/ |
58 | http://mirrors.eze.sysarmy.com/ubuntu/ |
59 | https://mirrors.ptisp.pt/ubuntu/ |
60 | https://mirrors.chroot.ro/ubuntu/ |
61 | -https://ftp.csuc.cat/ubuntu/archieve/ |
62 | http://uk.mirror.worldbus.ge/ubuntu/ |
63 | https://ubuntu.mirror.digitalpacific.com.au/archive/ |
64 | https://linux.yz.yamagata-u.ac.jp/ubuntu/ |
65 | @@ -469,7 +468,6 @@ https://buaya.klas.or.id/ubuntu/ |
66 | https://ubuntu.netforce.hosting/ubuntu/ |
67 | https://repo.ialab.dsu.edu/ubuntu/ |
68 | https://tw1.mirror.blendbyte.net/ubuntu/ |
69 | -https://mirror.repository.id/ubuntu/ |
70 | https://ubuntu.zero.com.ar/ubuntu/ |
71 | https://ubuntu.astra.in.ua/ubuntu/ |
72 | https://mirror.nju.edu.cn/ubuntu/ |
73 | @@ -477,7 +475,6 @@ https://mirror.coganng.com/ubuntu/ |
74 | http://mirror.pregi.net/ubuntu/ |
75 | http://deb-mirror.habari.co.tz/ubuntu/ |
76 | https://repo.extreme-ix.org/ubuntu/ |
77 | -https://ubuntu.ccns.ncku.edu.tw/ubuntu/ |
78 | https://mirror.coganng.com/ubuntu-ports/ |
79 | https://mirror.bjtu.edu.cn/ubuntu/ |
80 | https://ftp.tc.edu.tw/Linux/ubuntu/ |
81 | @@ -626,7 +623,6 @@ https://mirror.0-1.cloud/ubuntu/ |
82 | https://mirrors-ubuntu.behostings.com/ubuntu/ |
83 | https://mirror.dewabiz.com/ubuntu/ |
84 | https://mirror.elice.io/ubuntu/ |
85 | -https://mirrors.xjtu.edu.cn/ubuntu/ |
86 | http://sft.if.usp.br/ubuntu/ |
87 | https://mirrors.c0urier.net/linux/ubuntu/ |
88 | https://mirror.servaxnet.com/ubuntu/ |
89 | @@ -635,7 +631,10 @@ https://ubuntu.hostiran.ir/ubuntuarchive/ |
90 | http://repo.ugm.ac.id/ubuntu/ |
91 | https://mirrors.zju.edu.cn/ubuntu/ |
92 | http://mirror.espol.edu.ec/ubuntu/ |
93 | -https://mirror.papua.go.id/ubuntu/ |
94 | http://ubuntu.mirror.iweb.ca/ |
95 | https://labs.eif.urjc.es/mirror/ubuntu/ |
96 | https://ubuntu.uvigo.es/ |
97 | +https://mirror.citraix.net/ubuntu/ |
98 | +https://ubuntu-ports.mirror.net.in/ |
99 | +https://ubuntu-archive.mirror.net.in/ |
100 | +http://mirror.timeweb.ru/ubuntu/ |
101 | diff --git a/debian/changelog b/debian/changelog |
102 | index 3bc7d62..21810e9 100644 |
103 | --- a/debian/changelog |
104 | +++ b/debian/changelog |
105 | @@ -1,10 +1,15 @@ |
106 | -ubuntu-release-upgrader (1:23.04.4) UNRELEASED; urgency=medium |
107 | +ubuntu-release-upgrader (1:23.04.4) lunar; urgency=medium |
108 | |
109 | + [ Brian Murray ] |
110 | * DistUpgrade/deb2snap.json: Add in the snap gnome-42-2204 which is now |
111 | seeded for Ubuntu Desktop, move gnome-3-38-2004 to unseeded which will |
112 | make it a candidate for removal if it is unused. |
113 | |
114 | - -- Brian Murray <brian@ubuntu.com> Tue, 11 Apr 2023 12:18:53 -0700 |
115 | + [ Nick Rosbrook ] |
116 | + * DistUpgrade: Make apport ignore tracker-extract-3 during upgrade (LP: #2012638) |
117 | + * Run pre-build.sh: updating mirrors, demotions, and translations. |
118 | + |
119 | + -- Nick Rosbrook <nick.rosbrook@canonical.com> Wed, 12 Apr 2023 14:36:20 -0400 |
120 | |
121 | ubuntu-release-upgrader (1:23.04.3) lunar; urgency=medium |
122 | |
123 | diff --git a/po/af.po b/po/af.po |
124 | index fa28fc6..b76ba2a 100644 |
125 | --- a/po/af.po |
126 | +++ b/po/af.po |
127 | @@ -8,7 +8,7 @@ msgid "" |
128 | msgstr "" |
129 | "Project-Id-Version: update-manager\n" |
130 | "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" |
131 | -"POT-Creation-Date: 2023-04-03 16:33+0000\n" |
132 | +"POT-Creation-Date: 2023-04-12 13:41+0000\n" |
133 | "PO-Revision-Date: 2013-05-22 11:00+0000\n" |
134 | "Last-Translator: Brian Murray <brian@ubuntu.com>\n" |
135 | "Language-Team: Afrikaans <af@li.org>\n" |
136 | @@ -1056,12 +1056,12 @@ msgstr "Plaas asseblief '%s' in dryf '%s'" |
137 | msgid "Media Change" |
138 | msgstr "Media verwisseling" |
139 | |
140 | -#: ../DistUpgrade/DistUpgradeQuirks.py:237 |
141 | +#: ../DistUpgrade/DistUpgradeQuirks.py:239 |
142 | msgid "Your graphics hardware may not be fully supported in Ubuntu 14.04." |
143 | msgstr "" |
144 | "Jou grafika apparatuur is dalk nie ten volle ondersteun in Ubuntu 14.04." |
145 | |
146 | -#: ../DistUpgrade/DistUpgradeQuirks.py:239 |
147 | +#: ../DistUpgrade/DistUpgradeQuirks.py:241 |
148 | msgid "" |
149 | "Running the 'unity' desktop environment is not fully supported by your " |
150 | "graphics hardware. You will maybe end up in a very slow environment after " |
151 | @@ -1076,13 +1076,13 @@ msgstr "" |
152 | "inligting, sien https://wiki.ubuntu.com/X/Bugs/" |
153 | "UpdateManagerWarningForUnity3D Wil jy steeds voortgaan met die opgrader?" |
154 | |
155 | -#: ../DistUpgrade/DistUpgradeQuirks.py:263 |
156 | +#: ../DistUpgrade/DistUpgradeQuirks.py:265 |
157 | msgid "Your graphics hardware may not be fully supported in Ubuntu 12.04 LTS." |
158 | msgstr "" |
159 | "Jou grafikahardeware is dalk nie ten volle ondersteun in Ubuntu 12,04 LTS " |
160 | "nie." |
161 | |
162 | -#: ../DistUpgrade/DistUpgradeQuirks.py:265 |
163 | +#: ../DistUpgrade/DistUpgradeQuirks.py:267 |
164 | msgid "" |
165 | "The support in Ubuntu 12.04 LTS for your Intel graphics hardware is limited " |
166 | "and you may encounter problems after the upgrade. For more information see " |
167 | @@ -1094,7 +1094,7 @@ msgstr "" |
168 | "sien https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForI8xx Wil jy " |
169 | "voortgaan met die opgrader?" |
170 | |
171 | -#: ../DistUpgrade/DistUpgradeQuirks.py:285 |
172 | +#: ../DistUpgrade/DistUpgradeQuirks.py:287 |
173 | msgid "" |
174 | "Upgrading may reduce desktop effects, and performance in games and other " |
175 | "graphically intensive programs." |
176 | @@ -1102,7 +1102,7 @@ msgstr "" |
177 | "Opgradering kan dalk werkskerm effekte en werkverrigting in speletjies en " |
178 | "ander grafies intensiewe programme verminder." |
179 | |
180 | -#: ../DistUpgrade/DistUpgradeQuirks.py:289 |
181 | +#: ../DistUpgrade/DistUpgradeQuirks.py:291 |
182 | msgid "" |
183 | "This computer is currently using the AMD 'fglrx' graphics driver. No version " |
184 | "of this driver is available that works with your hardware in Ubuntu 10.04 " |
185 | @@ -1116,12 +1116,12 @@ msgstr "" |
186 | "\n" |
187 | "Wil jy voortgaan?" |
188 | |
189 | -#: ../DistUpgrade/DistUpgradeQuirks.py:328 |
190 | -#: ../DistUpgrade/DistUpgradeQuirks.py:397 |
191 | +#: ../DistUpgrade/DistUpgradeQuirks.py:330 |
192 | +#: ../DistUpgrade/DistUpgradeQuirks.py:399 |
193 | msgid "Sorry, no more upgrades for this system" |
194 | msgstr "Jammer, geen opgraderings meer vir hierdie stelsel nie" |
195 | |
196 | -#: ../DistUpgrade/DistUpgradeQuirks.py:329 |
197 | +#: ../DistUpgrade/DistUpgradeQuirks.py:331 |
198 | #, python-format |
199 | msgid "" |
200 | "There will not be any further Ubuntu releases for this system's 'i386' " |
201 | @@ -1134,11 +1134,11 @@ msgstr "" |
202 | "\n" |
203 | "Opdaterings vir Ubuntu %s sal voortgaan tot %s." |
204 | |
205 | -#: ../DistUpgrade/DistUpgradeQuirks.py:344 |
206 | +#: ../DistUpgrade/DistUpgradeQuirks.py:346 |
207 | msgid "No ARMv6 CPU" |
208 | msgstr "Geen ARMv6 verwerker" |
209 | |
210 | -#: ../DistUpgrade/DistUpgradeQuirks.py:345 |
211 | +#: ../DistUpgrade/DistUpgradeQuirks.py:347 |
212 | msgid "" |
213 | "Your system uses an ARM CPU that is older than the ARMv6 architecture. All " |
214 | "packages in karmic were built with optimizations requiring ARMv6 as the " |
215 | @@ -1150,12 +1150,12 @@ msgstr "" |
216 | "argitektuur. Dit is nie moontlik om jou stelsel op te gradeer na 'n nuwe " |
217 | "Ubuntu vrystelling met hierdie hardeware." |
218 | |
219 | -#: ../DistUpgrade/DistUpgradeQuirks.py:365 |
220 | +#: ../DistUpgrade/DistUpgradeQuirks.py:367 |
221 | msgid "" |
222 | "Sorry, this storage driver is not supported in kernels for newer releases" |
223 | msgstr "" |
224 | |
225 | -#: ../DistUpgrade/DistUpgradeQuirks.py:367 |
226 | +#: ../DistUpgrade/DistUpgradeQuirks.py:369 |
227 | #, python-format |
228 | msgid "" |
229 | "There will not be any further Ubuntu releases that provide kernel support " |
230 | @@ -1165,7 +1165,7 @@ msgid "" |
231 | "driver, remove the directory %s and try again." |
232 | msgstr "" |
233 | |
234 | -#: ../DistUpgrade/DistUpgradeQuirks.py:398 |
235 | +#: ../DistUpgrade/DistUpgradeQuirks.py:400 |
236 | #, fuzzy, python-format |
237 | msgid "" |
238 | "There will not be any further Ubuntu releases for this system's POWER8 " |
239 | @@ -1178,11 +1178,11 @@ msgstr "" |
240 | "\n" |
241 | "Opdaterings vir Ubuntu %s sal voortgaan tot %s." |
242 | |
243 | -#: ../DistUpgrade/DistUpgradeQuirks.py:416 |
244 | +#: ../DistUpgrade/DistUpgradeQuirks.py:418 |
245 | msgid "No init available" |
246 | msgstr "Geen init beskikbaar" |
247 | |
248 | -#: ../DistUpgrade/DistUpgradeQuirks.py:417 |
249 | +#: ../DistUpgrade/DistUpgradeQuirks.py:419 |
250 | msgid "" |
251 | "Your system appears to be a virtualised environment without an init daemon, " |
252 | "e.g. Linux-VServer. Ubuntu 10.04 LTS cannot function within this type of " |
253 | @@ -1198,11 +1198,11 @@ msgstr "" |
254 | "\n" |
255 | "Is jy seker jy wil voortgaan?" |
256 | |
257 | -#: ../DistUpgrade/DistUpgradeQuirks.py:458 |
258 | +#: ../DistUpgrade/DistUpgradeQuirks.py:460 |
259 | msgid "The Robot Operating System (ROS) is installed" |
260 | msgstr "" |
261 | |
262 | -#: ../DistUpgrade/DistUpgradeQuirks.py:459 |
263 | +#: ../DistUpgrade/DistUpgradeQuirks.py:461 |
264 | msgid "" |
265 | "It appears that ROS is currently installed. Each ROS release is very strict " |
266 | "about the versions of Ubuntu it supports, and Ubuntu upgrades can fail if " |
267 | @@ -1219,12 +1219,12 @@ msgid "" |
268 | "Are you sure you want to continue?" |
269 | msgstr "" |
270 | |
271 | -#: ../DistUpgrade/DistUpgradeQuirks.py:634 |
272 | +#: ../DistUpgrade/DistUpgradeQuirks.py:654 |
273 | #, fuzzy |
274 | msgid "Connection to the Snap Store failed" |
275 | msgstr "Verbinding aan snap Winkel gefaal" |
276 | |
277 | -#: ../DistUpgrade/DistUpgradeQuirks.py:635 |
278 | +#: ../DistUpgrade/DistUpgradeQuirks.py:655 |
279 | msgid "" |
280 | "You have the package lxd installed but your system is unable to reach the " |
281 | "Snap Store. lxd is now provided via a snap and the release upgrade will fail " |
282 | @@ -1234,11 +1234,11 @@ msgid "" |
283 | "may want to configure a Snap Store proxy." |
284 | msgstr "" |
285 | |
286 | -#: ../DistUpgrade/DistUpgradeQuirks.py:650 |
287 | +#: ../DistUpgrade/DistUpgradeQuirks.py:670 |
288 | msgid "Connection to Snap Store failed" |
289 | msgstr "Verbinding aan snap Winkel gefaal" |
290 | |
291 | -#: ../DistUpgrade/DistUpgradeQuirks.py:651 |
292 | +#: ../DistUpgrade/DistUpgradeQuirks.py:671 |
293 | msgid "" |
294 | "Your system does not have a connection to the Snap Store. For the best " |
295 | "upgrade experience make sure that your system can connect to api.snapcraft." |
296 | @@ -1250,11 +1250,11 @@ msgstr "" |
297 | "io.\n" |
298 | "Wil jy steeds voortgaan met die opgradering?" |
299 | |
300 | -#: ../DistUpgrade/DistUpgradeQuirks.py:660 |
301 | +#: ../DistUpgrade/DistUpgradeQuirks.py:680 |
302 | msgid "Outdated snapd package" |
303 | msgstr "Verouderde snapd pakket" |
304 | |
305 | -#: ../DistUpgrade/DistUpgradeQuirks.py:661 |
306 | +#: ../DistUpgrade/DistUpgradeQuirks.py:681 |
307 | msgid "" |
308 | "Your system does not have the latest version of snapd. Please update the " |
309 | "version of snapd on your system to improve the upgrade experience.\n" |
310 | @@ -1266,34 +1266,34 @@ msgstr "" |
311 | |
312 | #. now perform direct API calls to the store, requesting size |
313 | #. information for each of the snaps needing installation |
314 | -#: ../DistUpgrade/DistUpgradeQuirks.py:686 |
315 | +#: ../DistUpgrade/DistUpgradeQuirks.py:706 |
316 | msgid "Calculating snap size requirements" |
317 | msgstr "Berekening van snap grootte vereistes" |
318 | |
319 | -#: ../DistUpgrade/DistUpgradeQuirks.py:717 |
320 | +#: ../DistUpgrade/DistUpgradeQuirks.py:737 |
321 | msgid "Processing snap replacements" |
322 | msgstr "Verwerking snap plaasvervangers" |
323 | |
324 | -#: ../DistUpgrade/DistUpgradeQuirks.py:723 |
325 | +#: ../DistUpgrade/DistUpgradeQuirks.py:743 |
326 | #, python-format |
327 | msgid "refreshing snap %s" |
328 | msgstr "verfris snap %s" |
329 | |
330 | -#: ../DistUpgrade/DistUpgradeQuirks.py:727 |
331 | +#: ../DistUpgrade/DistUpgradeQuirks.py:747 |
332 | #, fuzzy, python-format |
333 | msgid "removing snap %s" |
334 | msgstr "verfris snap %s" |
335 | |
336 | -#: ../DistUpgrade/DistUpgradeQuirks.py:730 |
337 | +#: ../DistUpgrade/DistUpgradeQuirks.py:750 |
338 | #, python-format |
339 | msgid "installing snap %s" |
340 | msgstr "installeer snap %s" |
341 | |
342 | -#: ../DistUpgrade/DistUpgradeQuirks.py:759 |
343 | +#: ../DistUpgrade/DistUpgradeQuirks.py:779 |
344 | msgid "PAE not enabled" |
345 | msgstr "PAE nie geaktiveer" |
346 | |
347 | -#: ../DistUpgrade/DistUpgradeQuirks.py:760 |
348 | +#: ../DistUpgrade/DistUpgradeQuirks.py:780 |
349 | msgid "" |
350 | "Your system uses a CPU that does not have PAE enabled. Ubuntu only supports " |
351 | "non-PAE systems up to Ubuntu 12.04. To upgrade to a later version of Ubuntu, " |
352 | @@ -1305,11 +1305,11 @@ msgstr "" |
353 | "weergawe van Ubuntu, moet jy PAE (indien dit moontlik is) sien:\n" |
354 | "http://help.ubuntu.com/community/EnablingPAE" |
355 | |
356 | -#: ../DistUpgrade/DistUpgradeQuirks.py:1056 |
357 | +#: ../DistUpgrade/DistUpgradeQuirks.py:1076 |
358 | msgid "universe component not enabled" |
359 | msgstr "" |
360 | |
361 | -#: ../DistUpgrade/DistUpgradeQuirks.py:1057 |
362 | +#: ../DistUpgrade/DistUpgradeQuirks.py:1077 |
363 | #, python-format |
364 | msgid "" |
365 | "You have the package %s installed which is a python2 package. python2 has " |
366 | @@ -1321,7 +1321,7 @@ msgid "" |
367 | "universe component in /etc/apt/sources.list or remove %s" |
368 | msgstr "" |
369 | |
370 | -#: ../DistUpgrade/DistUpgradeQuirks.py:1169 |
371 | +#: ../DistUpgrade/DistUpgradeQuirks.py:1189 |
372 | msgid "Checking for installed snaps" |
373 | msgstr "Kontrolering vir geïnstalleerde snaps" |
374 | |
375 | diff --git a/po/am.po b/po/am.po |
376 | index a6b1d56..eb37c1f 100644 |
377 | --- a/po/am.po |
378 | +++ b/po/am.po |
379 | @@ -8,7 +8,7 @@ msgid "" |
380 | msgstr "" |
381 | "Project-Id-Version: update-manager\n" |
382 | "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" |
383 | -"POT-Creation-Date: 2023-04-03 16:33+0000\n" |
384 | +"POT-Creation-Date: 2023-04-12 13:41+0000\n" |
385 | "PO-Revision-Date: 2013-05-22 11:00+0000\n" |
386 | "Last-Translator: Brian Murray <brian@ubuntu.com>\n" |
387 | "Language-Team: Amharic <am@li.org>\n" |
388 | @@ -961,11 +961,11 @@ msgstr "እባክዎ ያስገቡ '%s' በመንጂያው ውስጥ '%s'" |
389 | msgid "Media Change" |
390 | msgstr "የሜዲያ ለውጥ" |
391 | |
392 | -#: ../DistUpgrade/DistUpgradeQuirks.py:237 |
393 | +#: ../DistUpgrade/DistUpgradeQuirks.py:239 |
394 | msgid "Your graphics hardware may not be fully supported in Ubuntu 14.04." |
395 | msgstr "የ እርስዎ graphics ጠንካራ አክል ሙሉ በ ሙሉ የ ተደገፈ ላይሆን ይችላል በ ኡቡንቱ 14.04." |
396 | |
397 | -#: ../DistUpgrade/DistUpgradeQuirks.py:239 |
398 | +#: ../DistUpgrade/DistUpgradeQuirks.py:241 |
399 | msgid "" |
400 | "Running the 'unity' desktop environment is not fully supported by your " |
401 | "graphics hardware. You will maybe end up in a very slow environment after " |
402 | @@ -979,11 +979,11 @@ msgstr "" |
403 | "መረጃ ይህን ይመልከቱ: https://wiki.ubuntu.com/X/Bugs/" |
404 | "UpdateManagerWarningForUnity3D እርስዎ ማሻሻሉን መቀጠል ይፈልጋሉ?" |
405 | |
406 | -#: ../DistUpgrade/DistUpgradeQuirks.py:263 |
407 | +#: ../DistUpgrade/DistUpgradeQuirks.py:265 |
408 | msgid "Your graphics hardware may not be fully supported in Ubuntu 12.04 LTS." |
409 | msgstr "የ እርስዎ graphics hardware በ ሙሉ የተደገፈ አይደለም በ ኡቡንቱ 12.04 LTS." |
410 | |
411 | -#: ../DistUpgrade/DistUpgradeQuirks.py:265 |
412 | +#: ../DistUpgrade/DistUpgradeQuirks.py:267 |
413 | msgid "" |
414 | "The support in Ubuntu 12.04 LTS for your Intel graphics hardware is limited " |
415 | "and you may encounter problems after the upgrade. For more information see " |
416 | @@ -994,7 +994,7 @@ msgstr "" |
417 | "ሊያጋጥምዎት ይችላል ከ ተሻሻለ በኋላ: ለ በለጠ መረጃ ይህን ይመልከቱ https://wiki.ubuntu.com/X/Bugs/" |
418 | "UpdateManagerWarningForI8xx እርስዎ ማሻሻሉን መቀጠል ይፈልጋሉ?" |
419 | |
420 | -#: ../DistUpgrade/DistUpgradeQuirks.py:285 |
421 | +#: ../DistUpgrade/DistUpgradeQuirks.py:287 |
422 | msgid "" |
423 | "Upgrading may reduce desktop effects, and performance in games and other " |
424 | "graphically intensive programs." |
425 | @@ -1002,7 +1002,7 @@ msgstr "" |
426 | "ማሻሻል የ ዴስክቶፕ ውጤቶችን ሊቀንስ ይችላል: ጨዋታዎች በሚጫወቱ ጊዜ ወይንም ሀይለኛ graphics ፕሮግራሞችን " |
427 | "በሚጠቀሙ ጊዜ" |
428 | |
429 | -#: ../DistUpgrade/DistUpgradeQuirks.py:289 |
430 | +#: ../DistUpgrade/DistUpgradeQuirks.py:291 |
431 | msgid "" |
432 | "This computer is currently using the AMD 'fglrx' graphics driver. No version " |
433 | "of this driver is available that works with your hardware in Ubuntu 10.04 " |
434 | @@ -1015,12 +1015,12 @@ msgstr "" |
435 | "\n" |
436 | "እርስዎ በ እርግጥ መቀጠል ይፈልጋሉ?" |
437 | |
438 | -#: ../DistUpgrade/DistUpgradeQuirks.py:328 |
439 | -#: ../DistUpgrade/DistUpgradeQuirks.py:397 |
440 | +#: ../DistUpgrade/DistUpgradeQuirks.py:330 |
441 | +#: ../DistUpgrade/DistUpgradeQuirks.py:399 |
442 | msgid "Sorry, no more upgrades for this system" |
443 | msgstr "" |
444 | |
445 | -#: ../DistUpgrade/DistUpgradeQuirks.py:329 |
446 | +#: ../DistUpgrade/DistUpgradeQuirks.py:331 |
447 | #, python-format |
448 | msgid "" |
449 | "There will not be any further Ubuntu releases for this system's 'i386' " |
450 | @@ -1029,11 +1029,11 @@ msgid "" |
451 | "Updates for Ubuntu %s will continue until %s." |
452 | msgstr "" |
453 | |
454 | -#: ../DistUpgrade/DistUpgradeQuirks.py:344 |
455 | +#: ../DistUpgrade/DistUpgradeQuirks.py:346 |
456 | msgid "No ARMv6 CPU" |
457 | msgstr "No ARMv6 CPU" |
458 | |
459 | -#: ../DistUpgrade/DistUpgradeQuirks.py:345 |
460 | +#: ../DistUpgrade/DistUpgradeQuirks.py:347 |
461 | msgid "" |
462 | "Your system uses an ARM CPU that is older than the ARMv6 architecture. All " |
463 | "packages in karmic were built with optimizations requiring ARMv6 as the " |
464 | @@ -1041,12 +1041,12 @@ msgid "" |
465 | "Ubuntu release with this hardware." |
466 | msgstr "" |
467 | |
468 | -#: ../DistUpgrade/DistUpgradeQuirks.py:365 |
469 | +#: ../DistUpgrade/DistUpgradeQuirks.py:367 |
470 | msgid "" |
471 | "Sorry, this storage driver is not supported in kernels for newer releases" |
472 | msgstr "" |
473 | |
474 | -#: ../DistUpgrade/DistUpgradeQuirks.py:367 |
475 | +#: ../DistUpgrade/DistUpgradeQuirks.py:369 |
476 | #, python-format |
477 | msgid "" |
478 | "There will not be any further Ubuntu releases that provide kernel support " |
479 | @@ -1056,7 +1056,7 @@ msgid "" |
480 | "driver, remove the directory %s and try again." |
481 | msgstr "" |
482 | |
483 | -#: ../DistUpgrade/DistUpgradeQuirks.py:398 |
484 | +#: ../DistUpgrade/DistUpgradeQuirks.py:400 |
485 | #, python-format |
486 | msgid "" |
487 | "There will not be any further Ubuntu releases for this system's POWER8 " |
488 | @@ -1065,11 +1065,11 @@ msgid "" |
489 | "Updates for Ubuntu %s will continue until %s." |
490 | msgstr "" |
491 | |
492 | -#: ../DistUpgrade/DistUpgradeQuirks.py:416 |
493 | +#: ../DistUpgrade/DistUpgradeQuirks.py:418 |
494 | msgid "No init available" |
495 | msgstr "ምንም ማስጀመሪያ ዝግጁ አይደለም" |
496 | |
497 | -#: ../DistUpgrade/DistUpgradeQuirks.py:417 |
498 | +#: ../DistUpgrade/DistUpgradeQuirks.py:419 |
499 | msgid "" |
500 | "Your system appears to be a virtualised environment without an init daemon, " |
501 | "e.g. Linux-VServer. Ubuntu 10.04 LTS cannot function within this type of " |
502 | @@ -1079,11 +1079,11 @@ msgid "" |
503 | "Are you sure you want to continue?" |
504 | msgstr "" |
505 | |
506 | -#: ../DistUpgrade/DistUpgradeQuirks.py:458 |
507 | +#: ../DistUpgrade/DistUpgradeQuirks.py:460 |
508 | msgid "The Robot Operating System (ROS) is installed" |
509 | msgstr "" |
510 | |
511 | -#: ../DistUpgrade/DistUpgradeQuirks.py:459 |
512 | +#: ../DistUpgrade/DistUpgradeQuirks.py:461 |
513 | msgid "" |
514 | "It appears that ROS is currently installed. Each ROS release is very strict " |
515 | "about the versions of Ubuntu it supports, and Ubuntu upgrades can fail if " |
516 | @@ -1100,11 +1100,11 @@ msgid "" |
517 | "Are you sure you want to continue?" |
518 | msgstr "" |
519 | |
520 | -#: ../DistUpgrade/DistUpgradeQuirks.py:634 |
521 | +#: ../DistUpgrade/DistUpgradeQuirks.py:654 |
522 | msgid "Connection to the Snap Store failed" |
523 | msgstr "" |
524 | |
525 | -#: ../DistUpgrade/DistUpgradeQuirks.py:635 |
526 | +#: ../DistUpgrade/DistUpgradeQuirks.py:655 |
527 | msgid "" |
528 | "You have the package lxd installed but your system is unable to reach the " |
529 | "Snap Store. lxd is now provided via a snap and the release upgrade will fail " |
530 | @@ -1114,11 +1114,11 @@ msgid "" |
531 | "may want to configure a Snap Store proxy." |
532 | msgstr "" |
533 | |
534 | -#: ../DistUpgrade/DistUpgradeQuirks.py:650 |
535 | +#: ../DistUpgrade/DistUpgradeQuirks.py:670 |
536 | msgid "Connection to Snap Store failed" |
537 | msgstr "" |
538 | |
539 | -#: ../DistUpgrade/DistUpgradeQuirks.py:651 |
540 | +#: ../DistUpgrade/DistUpgradeQuirks.py:671 |
541 | msgid "" |
542 | "Your system does not have a connection to the Snap Store. For the best " |
543 | "upgrade experience make sure that your system can connect to api.snapcraft." |
544 | @@ -1126,11 +1126,11 @@ msgid "" |
545 | "Do you still want to continue with the upgrade?" |
546 | msgstr "" |
547 | |
548 | -#: ../DistUpgrade/DistUpgradeQuirks.py:660 |
549 | +#: ../DistUpgrade/DistUpgradeQuirks.py:680 |
550 | msgid "Outdated snapd package" |
551 | msgstr "" |
552 | |
553 | -#: ../DistUpgrade/DistUpgradeQuirks.py:661 |
554 | +#: ../DistUpgrade/DistUpgradeQuirks.py:681 |
555 | msgid "" |
556 | "Your system does not have the latest version of snapd. Please update the " |
557 | "version of snapd on your system to improve the upgrade experience.\n" |
558 | @@ -1139,34 +1139,34 @@ msgstr "" |
559 | |
560 | #. now perform direct API calls to the store, requesting size |
561 | #. information for each of the snaps needing installation |
562 | -#: ../DistUpgrade/DistUpgradeQuirks.py:686 |
563 | +#: ../DistUpgrade/DistUpgradeQuirks.py:706 |
564 | msgid "Calculating snap size requirements" |
565 | msgstr "" |
566 | |
567 | -#: ../DistUpgrade/DistUpgradeQuirks.py:717 |
568 | +#: ../DistUpgrade/DistUpgradeQuirks.py:737 |
569 | msgid "Processing snap replacements" |
570 | msgstr "" |
571 | |
572 | -#: ../DistUpgrade/DistUpgradeQuirks.py:723 |
573 | +#: ../DistUpgrade/DistUpgradeQuirks.py:743 |
574 | #, python-format |
575 | msgid "refreshing snap %s" |
576 | msgstr "" |
577 | |
578 | -#: ../DistUpgrade/DistUpgradeQuirks.py:727 |
579 | +#: ../DistUpgrade/DistUpgradeQuirks.py:747 |
580 | #, python-format |
581 | msgid "removing snap %s" |
582 | msgstr "" |
583 | |
584 | -#: ../DistUpgrade/DistUpgradeQuirks.py:730 |
585 | +#: ../DistUpgrade/DistUpgradeQuirks.py:750 |
586 | #, python-format |
587 | msgid "installing snap %s" |
588 | msgstr "" |
589 | |
590 | -#: ../DistUpgrade/DistUpgradeQuirks.py:759 |
591 | +#: ../DistUpgrade/DistUpgradeQuirks.py:779 |
592 | msgid "PAE not enabled" |
593 | msgstr "PAE አላስቻሉም" |
594 | |
595 | -#: ../DistUpgrade/DistUpgradeQuirks.py:760 |
596 | +#: ../DistUpgrade/DistUpgradeQuirks.py:780 |
597 | msgid "" |
598 | "Your system uses a CPU that does not have PAE enabled. Ubuntu only supports " |
599 | "non-PAE systems up to Ubuntu 12.04. To upgrade to a later version of Ubuntu, " |
600 | @@ -1178,11 +1178,11 @@ msgstr "" |
601 | "ከሆነ) ይህን ይመልከቱ:\n" |
602 | "http://help.ubuntu.com/community/EnablingPAE" |
603 | |
604 | -#: ../DistUpgrade/DistUpgradeQuirks.py:1056 |
605 | +#: ../DistUpgrade/DistUpgradeQuirks.py:1076 |
606 | msgid "universe component not enabled" |
607 | msgstr "" |
608 | |
609 | -#: ../DistUpgrade/DistUpgradeQuirks.py:1057 |
610 | +#: ../DistUpgrade/DistUpgradeQuirks.py:1077 |
611 | #, python-format |
612 | msgid "" |
613 | "You have the package %s installed which is a python2 package. python2 has " |
614 | @@ -1194,7 +1194,7 @@ msgid "" |
615 | "universe component in /etc/apt/sources.list or remove %s" |
616 | msgstr "" |
617 | |
618 | -#: ../DistUpgrade/DistUpgradeQuirks.py:1169 |
619 | +#: ../DistUpgrade/DistUpgradeQuirks.py:1189 |
620 | msgid "Checking for installed snaps" |
621 | msgstr "" |
622 | |
623 | diff --git a/po/an.po b/po/an.po |
624 | index ea2b23e..3246501 100644 |
625 | --- a/po/an.po |
626 | +++ b/po/an.po |
627 | @@ -8,7 +8,7 @@ msgid "" |
628 | msgstr "" |
629 | "Project-Id-Version: update-manager\n" |
630 | "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" |
631 | -"POT-Creation-Date: 2023-04-03 16:33+0000\n" |
632 | +"POT-Creation-Date: 2023-04-12 13:41+0000\n" |
633 | "PO-Revision-Date: 2013-05-22 11:00+0000\n" |
634 | "Last-Translator: Daniel Martinez <entaltoaragon@gmail.com>\n" |
635 | "Language-Team: Aragonese <an@li.org>\n" |
636 | @@ -908,11 +908,11 @@ msgstr "" |
637 | msgid "Media Change" |
638 | msgstr "" |
639 | |
640 | -#: ../DistUpgrade/DistUpgradeQuirks.py:237 |
641 | +#: ../DistUpgrade/DistUpgradeQuirks.py:239 |
642 | msgid "Your graphics hardware may not be fully supported in Ubuntu 14.04." |
643 | msgstr "" |
644 | |
645 | -#: ../DistUpgrade/DistUpgradeQuirks.py:239 |
646 | +#: ../DistUpgrade/DistUpgradeQuirks.py:241 |
647 | msgid "" |
648 | "Running the 'unity' desktop environment is not fully supported by your " |
649 | "graphics hardware. You will maybe end up in a very slow environment after " |
650 | @@ -922,11 +922,11 @@ msgid "" |
651 | "upgrade?" |
652 | msgstr "" |
653 | |
654 | -#: ../DistUpgrade/DistUpgradeQuirks.py:263 |
655 | +#: ../DistUpgrade/DistUpgradeQuirks.py:265 |
656 | msgid "Your graphics hardware may not be fully supported in Ubuntu 12.04 LTS." |
657 | msgstr "" |
658 | |
659 | -#: ../DistUpgrade/DistUpgradeQuirks.py:265 |
660 | +#: ../DistUpgrade/DistUpgradeQuirks.py:267 |
661 | msgid "" |
662 | "The support in Ubuntu 12.04 LTS for your Intel graphics hardware is limited " |
663 | "and you may encounter problems after the upgrade. For more information see " |
664 | @@ -934,13 +934,13 @@ msgid "" |
665 | "continue with the upgrade?" |
666 | msgstr "" |
667 | |
668 | -#: ../DistUpgrade/DistUpgradeQuirks.py:285 |
669 | +#: ../DistUpgrade/DistUpgradeQuirks.py:287 |
670 | msgid "" |
671 | "Upgrading may reduce desktop effects, and performance in games and other " |
672 | "graphically intensive programs." |
673 | msgstr "" |
674 | |
675 | -#: ../DistUpgrade/DistUpgradeQuirks.py:289 |
676 | +#: ../DistUpgrade/DistUpgradeQuirks.py:291 |
677 | msgid "" |
678 | "This computer is currently using the AMD 'fglrx' graphics driver. No version " |
679 | "of this driver is available that works with your hardware in Ubuntu 10.04 " |
680 | @@ -949,12 +949,12 @@ msgid "" |
681 | "Do you want to continue?" |
682 | msgstr "" |
683 | |
684 | -#: ../DistUpgrade/DistUpgradeQuirks.py:328 |
685 | -#: ../DistUpgrade/DistUpgradeQuirks.py:397 |
686 | +#: ../DistUpgrade/DistUpgradeQuirks.py:330 |
687 | +#: ../DistUpgrade/DistUpgradeQuirks.py:399 |
688 | msgid "Sorry, no more upgrades for this system" |
689 | msgstr "" |
690 | |
691 | -#: ../DistUpgrade/DistUpgradeQuirks.py:329 |
692 | +#: ../DistUpgrade/DistUpgradeQuirks.py:331 |
693 | #, python-format |
694 | msgid "" |
695 | "There will not be any further Ubuntu releases for this system's 'i386' " |
696 | @@ -963,11 +963,11 @@ msgid "" |
697 | "Updates for Ubuntu %s will continue until %s." |
698 | msgstr "" |
699 | |
700 | -#: ../DistUpgrade/DistUpgradeQuirks.py:344 |
701 | +#: ../DistUpgrade/DistUpgradeQuirks.py:346 |
702 | msgid "No ARMv6 CPU" |
703 | msgstr "" |
704 | |
705 | -#: ../DistUpgrade/DistUpgradeQuirks.py:345 |
706 | +#: ../DistUpgrade/DistUpgradeQuirks.py:347 |
707 | msgid "" |
708 | "Your system uses an ARM CPU that is older than the ARMv6 architecture. All " |
709 | "packages in karmic were built with optimizations requiring ARMv6 as the " |
710 | @@ -975,12 +975,12 @@ msgid "" |
711 | "Ubuntu release with this hardware." |
712 | msgstr "" |
713 | |
714 | -#: ../DistUpgrade/DistUpgradeQuirks.py:365 |
715 | +#: ../DistUpgrade/DistUpgradeQuirks.py:367 |
716 | msgid "" |
717 | "Sorry, this storage driver is not supported in kernels for newer releases" |
718 | msgstr "" |
719 | |
720 | -#: ../DistUpgrade/DistUpgradeQuirks.py:367 |
721 | +#: ../DistUpgrade/DistUpgradeQuirks.py:369 |
722 | #, python-format |
723 | msgid "" |
724 | "There will not be any further Ubuntu releases that provide kernel support " |
725 | @@ -990,7 +990,7 @@ msgid "" |
726 | "driver, remove the directory %s and try again." |
727 | msgstr "" |
728 | |
729 | -#: ../DistUpgrade/DistUpgradeQuirks.py:398 |
730 | +#: ../DistUpgrade/DistUpgradeQuirks.py:400 |
731 | #, python-format |
732 | msgid "" |
733 | "There will not be any further Ubuntu releases for this system's POWER8 " |
734 | @@ -999,11 +999,11 @@ msgid "" |
735 | "Updates for Ubuntu %s will continue until %s." |
736 | msgstr "" |
737 | |
738 | -#: ../DistUpgrade/DistUpgradeQuirks.py:416 |
739 | +#: ../DistUpgrade/DistUpgradeQuirks.py:418 |
740 | msgid "No init available" |
741 | msgstr "" |
742 | |
743 | -#: ../DistUpgrade/DistUpgradeQuirks.py:417 |
744 | +#: ../DistUpgrade/DistUpgradeQuirks.py:419 |
745 | msgid "" |
746 | "Your system appears to be a virtualised environment without an init daemon, " |
747 | "e.g. Linux-VServer. Ubuntu 10.04 LTS cannot function within this type of " |
748 | @@ -1013,11 +1013,11 @@ msgid "" |
749 | "Are you sure you want to continue?" |
750 | msgstr "" |
751 | |
752 | -#: ../DistUpgrade/DistUpgradeQuirks.py:458 |
753 | +#: ../DistUpgrade/DistUpgradeQuirks.py:460 |
754 | msgid "The Robot Operating System (ROS) is installed" |
755 | msgstr "" |
756 | |
757 | -#: ../DistUpgrade/DistUpgradeQuirks.py:459 |
758 | +#: ../DistUpgrade/DistUpgradeQuirks.py:461 |
759 | msgid "" |
760 | "It appears that ROS is currently installed. Each ROS release is very strict " |
761 | "about the versions of Ubuntu it supports, and Ubuntu upgrades can fail if " |
762 | @@ -1034,11 +1034,11 @@ msgid "" |
763 | "Are you sure you want to continue?" |
764 | msgstr "" |
765 | |
766 | -#: ../DistUpgrade/DistUpgradeQuirks.py:634 |
767 | +#: ../DistUpgrade/DistUpgradeQuirks.py:654 |
768 | msgid "Connection to the Snap Store failed" |
769 | msgstr "" |
770 | |
771 | -#: ../DistUpgrade/DistUpgradeQuirks.py:635 |
772 | +#: ../DistUpgrade/DistUpgradeQuirks.py:655 |
773 | msgid "" |
774 | "You have the package lxd installed but your system is unable to reach the " |
775 | "Snap Store. lxd is now provided via a snap and the release upgrade will fail " |
776 | @@ -1048,11 +1048,11 @@ msgid "" |
777 | "may want to configure a Snap Store proxy." |
778 | msgstr "" |
779 | |
780 | -#: ../DistUpgrade/DistUpgradeQuirks.py:650 |
781 | +#: ../DistUpgrade/DistUpgradeQuirks.py:670 |
782 | msgid "Connection to Snap Store failed" |
783 | msgstr "" |
784 | |
785 | -#: ../DistUpgrade/DistUpgradeQuirks.py:651 |
786 | +#: ../DistUpgrade/DistUpgradeQuirks.py:671 |
787 | msgid "" |
788 | "Your system does not have a connection to the Snap Store. For the best " |
789 | "upgrade experience make sure that your system can connect to api.snapcraft." |
790 | @@ -1060,11 +1060,11 @@ msgid "" |
791 | "Do you still want to continue with the upgrade?" |
792 | msgstr "" |
793 | |
794 | -#: ../DistUpgrade/DistUpgradeQuirks.py:660 |
795 | +#: ../DistUpgrade/DistUpgradeQuirks.py:680 |
796 | msgid "Outdated snapd package" |
797 | msgstr "" |
798 | |
799 | -#: ../DistUpgrade/DistUpgradeQuirks.py:661 |
800 | +#: ../DistUpgrade/DistUpgradeQuirks.py:681 |
801 | msgid "" |
802 | "Your system does not have the latest version of snapd. Please update the " |
803 | "version of snapd on your system to improve the upgrade experience.\n" |
804 | @@ -1073,34 +1073,34 @@ msgstr "" |
805 | |
806 | #. now perform direct API calls to the store, requesting size |
807 | #. information for each of the snaps needing installation |
808 | -#: ../DistUpgrade/DistUpgradeQuirks.py:686 |
809 | +#: ../DistUpgrade/DistUpgradeQuirks.py:706 |
810 | msgid "Calculating snap size requirements" |
811 | msgstr "" |
812 | |
813 | -#: ../DistUpgrade/DistUpgradeQuirks.py:717 |
814 | +#: ../DistUpgrade/DistUpgradeQuirks.py:737 |
815 | msgid "Processing snap replacements" |
816 | msgstr "" |
817 | |
818 | -#: ../DistUpgrade/DistUpgradeQuirks.py:723 |
819 | +#: ../DistUpgrade/DistUpgradeQuirks.py:743 |
820 | #, python-format |
821 | msgid "refreshing snap %s" |
822 | msgstr "" |
823 | |
824 | -#: ../DistUpgrade/DistUpgradeQuirks.py:727 |
825 | +#: ../DistUpgrade/DistUpgradeQuirks.py:747 |
826 | #, python-format |
827 | msgid "removing snap %s" |
828 | msgstr "" |
829 | |
830 | -#: ../DistUpgrade/DistUpgradeQuirks.py:730 |
831 | +#: ../DistUpgrade/DistUpgradeQuirks.py:750 |
832 | #, python-format |
833 | msgid "installing snap %s" |
834 | msgstr "" |
835 | |
836 | -#: ../DistUpgrade/DistUpgradeQuirks.py:759 |
837 | +#: ../DistUpgrade/DistUpgradeQuirks.py:779 |
838 | msgid "PAE not enabled" |
839 | msgstr "" |
840 | |
841 | -#: ../DistUpgrade/DistUpgradeQuirks.py:760 |
842 | +#: ../DistUpgrade/DistUpgradeQuirks.py:780 |
843 | msgid "" |
844 | "Your system uses a CPU that does not have PAE enabled. Ubuntu only supports " |
845 | "non-PAE systems up to Ubuntu 12.04. To upgrade to a later version of Ubuntu, " |
846 | @@ -1108,11 +1108,11 @@ msgid "" |
847 | "http://help.ubuntu.com/community/EnablingPAE" |
848 | msgstr "" |
849 | |
850 | -#: ../DistUpgrade/DistUpgradeQuirks.py:1056 |
851 | +#: ../DistUpgrade/DistUpgradeQuirks.py:1076 |
852 | msgid "universe component not enabled" |
853 | msgstr "" |
854 | |
855 | -#: ../DistUpgrade/DistUpgradeQuirks.py:1057 |
856 | +#: ../DistUpgrade/DistUpgradeQuirks.py:1077 |
857 | #, python-format |
858 | msgid "" |
859 | "You have the package %s installed which is a python2 package. python2 has " |
860 | @@ -1124,7 +1124,7 @@ msgid "" |
861 | "universe component in /etc/apt/sources.list or remove %s" |
862 | msgstr "" |
863 | |
864 | -#: ../DistUpgrade/DistUpgradeQuirks.py:1169 |
865 | +#: ../DistUpgrade/DistUpgradeQuirks.py:1189 |
866 | msgid "Checking for installed snaps" |
867 | msgstr "" |
868 | |
869 | diff --git a/po/ar.po b/po/ar.po |
870 | index cb8a04d..0c25a36 100644 |
871 | --- a/po/ar.po |
872 | +++ b/po/ar.po |
873 | @@ -10,7 +10,7 @@ msgid "" |
874 | msgstr "" |
875 | "Project-Id-Version: po_update-manager-ar\n" |
876 | "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" |
877 | -"POT-Creation-Date: 2023-04-03 16:33+0000\n" |
878 | +"POT-Creation-Date: 2023-04-12 13:41+0000\n" |
879 | "PO-Revision-Date: 2019-06-18 17:52+0000\n" |
880 | "Last-Translator: Ibrahim Saed <ibraheem5000@gmail.com>\n" |
881 | "Language-Team: Arabic\n" |
882 | @@ -1002,11 +1002,11 @@ msgstr "رجاء أدرج '%s' في محرك الأقراص '%s'" |
883 | msgid "Media Change" |
884 | msgstr "تغيير الوسائط" |
885 | |
886 | -#: ../DistUpgrade/DistUpgradeQuirks.py:237 |
887 | +#: ../DistUpgrade/DistUpgradeQuirks.py:239 |
888 | msgid "Your graphics hardware may not be fully supported in Ubuntu 14.04." |
889 | msgstr "قد يكون عتاد الرسوميات في جهازك ليس مدعوما بالكامل في أوبونتو 14.04." |
890 | |
891 | -#: ../DistUpgrade/DistUpgradeQuirks.py:239 |
892 | +#: ../DistUpgrade/DistUpgradeQuirks.py:241 |
893 | msgid "" |
894 | "Running the 'unity' desktop environment is not fully supported by your " |
895 | "graphics hardware. You will maybe end up in a very slow environment after " |
896 | @@ -1021,11 +1021,11 @@ msgstr "" |
897 | "Bugs/UpdateManagerWarningForUnity3D\r\n" |
898 | "هل ما زلت ترغب بالاستمرار في الترقية؟" |
899 | |
900 | -#: ../DistUpgrade/DistUpgradeQuirks.py:263 |
901 | +#: ../DistUpgrade/DistUpgradeQuirks.py:265 |
902 | msgid "Your graphics hardware may not be fully supported in Ubuntu 12.04 LTS." |
903 | msgstr "قد يكون عتاد الرسوميات في جهازك غير مدعوم بالكامل في أوبنتو 12.04." |
904 | |
905 | -#: ../DistUpgrade/DistUpgradeQuirks.py:265 |
906 | +#: ../DistUpgrade/DistUpgradeQuirks.py:267 |
907 | msgid "" |
908 | "The support in Ubuntu 12.04 LTS for your Intel graphics hardware is limited " |
909 | "and you may encounter problems after the upgrade. For more information see " |
910 | @@ -1036,7 +1036,7 @@ msgstr "" |
911 | "لمزيد من المعلومات انظر: https://wiki.ubuntu.com/X/Bugs/" |
912 | "UpdateManagerWarningForI8xx هل تود الاستمرار في الترقية؟" |
913 | |
914 | -#: ../DistUpgrade/DistUpgradeQuirks.py:285 |
915 | +#: ../DistUpgrade/DistUpgradeQuirks.py:287 |
916 | msgid "" |
917 | "Upgrading may reduce desktop effects, and performance in games and other " |
918 | "graphically intensive programs." |
919 | @@ -1044,7 +1044,7 @@ msgstr "" |
920 | "قد تقلل الترقية من تأثيرات سطح المكتب، وأداء الألعاب وبرامج الرسوميات " |
921 | "المكثفة الأخرى." |
922 | |
923 | -#: ../DistUpgrade/DistUpgradeQuirks.py:289 |
924 | +#: ../DistUpgrade/DistUpgradeQuirks.py:291 |
925 | msgid "" |
926 | "This computer is currently using the AMD 'fglrx' graphics driver. No version " |
927 | "of this driver is available that works with your hardware in Ubuntu 10.04 " |
928 | @@ -1057,12 +1057,12 @@ msgstr "" |
929 | "\n" |
930 | "أتريد المواصلة؟" |
931 | |
932 | -#: ../DistUpgrade/DistUpgradeQuirks.py:328 |
933 | -#: ../DistUpgrade/DistUpgradeQuirks.py:397 |
934 | +#: ../DistUpgrade/DistUpgradeQuirks.py:330 |
935 | +#: ../DistUpgrade/DistUpgradeQuirks.py:399 |
936 | msgid "Sorry, no more upgrades for this system" |
937 | msgstr "" |
938 | |
939 | -#: ../DistUpgrade/DistUpgradeQuirks.py:329 |
940 | +#: ../DistUpgrade/DistUpgradeQuirks.py:331 |
941 | #, python-format |
942 | msgid "" |
943 | "There will not be any further Ubuntu releases for this system's 'i386' " |
944 | @@ -1071,11 +1071,11 @@ msgid "" |
945 | "Updates for Ubuntu %s will continue until %s." |
946 | msgstr "" |
947 | |
948 | -#: ../DistUpgrade/DistUpgradeQuirks.py:344 |
949 | +#: ../DistUpgrade/DistUpgradeQuirks.py:346 |
950 | msgid "No ARMv6 CPU" |
951 | msgstr "لا معالج ARMv6" |
952 | |
953 | -#: ../DistUpgrade/DistUpgradeQuirks.py:345 |
954 | +#: ../DistUpgrade/DistUpgradeQuirks.py:347 |
955 | msgid "" |
956 | "Your system uses an ARM CPU that is older than the ARMv6 architecture. All " |
957 | "packages in karmic were built with optimizations requiring ARMv6 as the " |
958 | @@ -1086,12 +1086,12 @@ msgstr "" |
959 | "مبنية لتعمل على الطراز ARMv6 كحد أدنى. من غير الممكن ترقية نظامك إلى إصدارة " |
960 | "أوبونتو حديثة مع هذا العتاد." |
961 | |
962 | -#: ../DistUpgrade/DistUpgradeQuirks.py:365 |
963 | +#: ../DistUpgrade/DistUpgradeQuirks.py:367 |
964 | msgid "" |
965 | "Sorry, this storage driver is not supported in kernels for newer releases" |
966 | msgstr "" |
967 | |
968 | -#: ../DistUpgrade/DistUpgradeQuirks.py:367 |
969 | +#: ../DistUpgrade/DistUpgradeQuirks.py:369 |
970 | #, python-format |
971 | msgid "" |
972 | "There will not be any further Ubuntu releases that provide kernel support " |
973 | @@ -1101,7 +1101,7 @@ msgid "" |
974 | "driver, remove the directory %s and try again." |
975 | msgstr "" |
976 | |
977 | -#: ../DistUpgrade/DistUpgradeQuirks.py:398 |
978 | +#: ../DistUpgrade/DistUpgradeQuirks.py:400 |
979 | #, python-format |
980 | msgid "" |
981 | "There will not be any further Ubuntu releases for this system's POWER8 " |
982 | @@ -1110,11 +1110,11 @@ msgid "" |
983 | "Updates for Ubuntu %s will continue until %s." |
984 | msgstr "" |
985 | |
986 | -#: ../DistUpgrade/DistUpgradeQuirks.py:416 |
987 | +#: ../DistUpgrade/DistUpgradeQuirks.py:418 |
988 | msgid "No init available" |
989 | msgstr "لا يوجد عفريت مدير للعمليات" |
990 | |
991 | -#: ../DistUpgrade/DistUpgradeQuirks.py:417 |
992 | +#: ../DistUpgrade/DistUpgradeQuirks.py:419 |
993 | msgid "" |
994 | "Your system appears to be a virtualised environment without an init daemon, " |
995 | "e.g. Linux-VServer. Ubuntu 10.04 LTS cannot function within this type of " |
996 | @@ -1129,11 +1129,11 @@ msgstr "" |
997 | "\n" |
998 | "هل حقاً تريد الاستمرار؟" |
999 | |
1000 | -#: ../DistUpgrade/DistUpgradeQuirks.py:458 |
1001 | +#: ../DistUpgrade/DistUpgradeQuirks.py:460 |
1002 | msgid "The Robot Operating System (ROS) is installed" |
1003 | msgstr "" |
1004 | |
1005 | -#: ../DistUpgrade/DistUpgradeQuirks.py:459 |
1006 | +#: ../DistUpgrade/DistUpgradeQuirks.py:461 |
1007 | msgid "" |
1008 | "It appears that ROS is currently installed. Each ROS release is very strict " |
1009 | "about the versions of Ubuntu it supports, and Ubuntu upgrades can fail if " |
1010 | @@ -1150,11 +1150,11 @@ msgid "" |
1011 | "Are you sure you want to continue?" |
1012 | msgstr "" |
1013 | |
1014 | -#: ../DistUpgrade/DistUpgradeQuirks.py:634 |
1015 | +#: ../DistUpgrade/DistUpgradeQuirks.py:654 |
1016 | msgid "Connection to the Snap Store failed" |
1017 | msgstr "" |
1018 | |
1019 | -#: ../DistUpgrade/DistUpgradeQuirks.py:635 |
1020 | +#: ../DistUpgrade/DistUpgradeQuirks.py:655 |
1021 | msgid "" |
1022 | "You have the package lxd installed but your system is unable to reach the " |
1023 | "Snap Store. lxd is now provided via a snap and the release upgrade will fail " |
1024 | @@ -1164,11 +1164,11 @@ msgid "" |
1025 | "may want to configure a Snap Store proxy." |
1026 | msgstr "" |
1027 | |
1028 | -#: ../DistUpgrade/DistUpgradeQuirks.py:650 |
1029 | +#: ../DistUpgrade/DistUpgradeQuirks.py:670 |
1030 | msgid "Connection to Snap Store failed" |
1031 | msgstr "" |
1032 | |
1033 | -#: ../DistUpgrade/DistUpgradeQuirks.py:651 |
1034 | +#: ../DistUpgrade/DistUpgradeQuirks.py:671 |
1035 | msgid "" |
1036 | "Your system does not have a connection to the Snap Store. For the best " |
1037 | "upgrade experience make sure that your system can connect to api.snapcraft." |
1038 | @@ -1176,11 +1176,11 @@ msgid "" |
1039 | "Do you still want to continue with the upgrade?" |
1040 | msgstr "" |
1041 | |
1042 | -#: ../DistUpgrade/DistUpgradeQuirks.py:660 |
1043 | +#: ../DistUpgrade/DistUpgradeQuirks.py:680 |
1044 | msgid "Outdated snapd package" |
1045 | msgstr "" |
1046 | |
1047 | -#: ../DistUpgrade/DistUpgradeQuirks.py:661 |
1048 | +#: ../DistUpgrade/DistUpgradeQuirks.py:681 |
1049 | msgid "" |
1050 | "Your system does not have the latest version of snapd. Please update the " |
1051 | "version of snapd on your system to improve the upgrade experience.\n" |
1052 | @@ -1189,34 +1189,34 @@ msgstr "" |
1053 | |
1054 | #. now perform direct API calls to the store, requesting size |
1055 | #. information for each of the snaps needing installation |
1056 | -#: ../DistUpgrade/DistUpgradeQuirks.py:686 |
1057 | +#: ../DistUpgrade/DistUpgradeQuirks.py:706 |
1058 | msgid "Calculating snap size requirements" |
1059 | msgstr "" |
1060 | |
1061 | -#: ../DistUpgrade/DistUpgradeQuirks.py:717 |
1062 | +#: ../DistUpgrade/DistUpgradeQuirks.py:737 |
1063 | msgid "Processing snap replacements" |
1064 | msgstr "" |
1065 | |
1066 | -#: ../DistUpgrade/DistUpgradeQuirks.py:723 |
1067 | +#: ../DistUpgrade/DistUpgradeQuirks.py:743 |
1068 | #, python-format |
1069 | msgid "refreshing snap %s" |
1070 | msgstr "" |
1071 | |
1072 | -#: ../DistUpgrade/DistUpgradeQuirks.py:727 |
1073 | +#: ../DistUpgrade/DistUpgradeQuirks.py:747 |
1074 | #, python-format |
1075 | msgid "removing snap %s" |
1076 | msgstr "" |
1077 | |
1078 | -#: ../DistUpgrade/DistUpgradeQuirks.py:730 |
1079 | +#: ../DistUpgrade/DistUpgradeQuirks.py:750 |
1080 | #, python-format |
1081 | msgid "installing snap %s" |
1082 | msgstr "" |
1083 | |
1084 | -#: ../DistUpgrade/DistUpgradeQuirks.py:759 |
1085 | +#: ../DistUpgrade/DistUpgradeQuirks.py:779 |
1086 | msgid "PAE not enabled" |
1087 | msgstr "" |
1088 | |
1089 | -#: ../DistUpgrade/DistUpgradeQuirks.py:760 |
1090 | +#: ../DistUpgrade/DistUpgradeQuirks.py:780 |
1091 | msgid "" |
1092 | "Your system uses a CPU that does not have PAE enabled. Ubuntu only supports " |
1093 | "non-PAE systems up to Ubuntu 12.04. To upgrade to a later version of Ubuntu, " |
1094 | @@ -1224,11 +1224,11 @@ msgid "" |
1095 | "http://help.ubuntu.com/community/EnablingPAE" |
1096 | msgstr "" |
1097 | |
1098 | -#: ../DistUpgrade/DistUpgradeQuirks.py:1056 |
1099 | +#: ../DistUpgrade/DistUpgradeQuirks.py:1076 |
1100 | msgid "universe component not enabled" |
1101 | msgstr "" |
1102 | |
1103 | -#: ../DistUpgrade/DistUpgradeQuirks.py:1057 |
1104 | +#: ../DistUpgrade/DistUpgradeQuirks.py:1077 |
1105 | #, python-format |
1106 | msgid "" |
1107 | "You have the package %s installed which is a python2 package. python2 has " |
1108 | @@ -1240,7 +1240,7 @@ msgid "" |
1109 | "universe component in /etc/apt/sources.list or remove %s" |
1110 | msgstr "" |
1111 | |
1112 | -#: ../DistUpgrade/DistUpgradeQuirks.py:1169 |
1113 | +#: ../DistUpgrade/DistUpgradeQuirks.py:1189 |
1114 | msgid "Checking for installed snaps" |
1115 | msgstr "" |
1116 | |
1117 | diff --git a/po/ast.po b/po/ast.po |
1118 | index 53ba0a5..6c9d5cb 100644 |
1119 | --- a/po/ast.po |
1120 | +++ b/po/ast.po |
1121 | @@ -8,7 +8,7 @@ msgid "" |
1122 | msgstr "" |
1123 | "Project-Id-Version: update-manager\n" |
1124 | "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" |
1125 | -"POT-Creation-Date: 2023-04-03 16:33+0000\n" |
1126 | +"POT-Creation-Date: 2023-04-12 13:41+0000\n" |
1127 | "PO-Revision-Date: 2019-06-18 17:54+0000\n" |
1128 | "Last-Translator: ivarela <ivarela@ubuntu.com>\n" |
1129 | "Language-Team: Asturian <ast@li.org>\n" |
1130 | @@ -996,12 +996,12 @@ msgstr "Por favor, inserta '%s' nel dispositivu '%s'" |
1131 | msgid "Media Change" |
1132 | msgstr "Cambéu de preséu" |
1133 | |
1134 | -#: ../DistUpgrade/DistUpgradeQuirks.py:237 |
1135 | +#: ../DistUpgrade/DistUpgradeQuirks.py:239 |
1136 | msgid "Your graphics hardware may not be fully supported in Ubuntu 14.04." |
1137 | msgstr "" |
1138 | "Pue que'l so hardware gráficu nun tenga sofitu completu n'Ubuntu 14.04." |
1139 | |
1140 | -#: ../DistUpgrade/DistUpgradeQuirks.py:239 |
1141 | +#: ../DistUpgrade/DistUpgradeQuirks.py:241 |
1142 | msgid "" |
1143 | "Running the 'unity' desktop environment is not fully supported by your " |
1144 | "graphics hardware. You will maybe end up in a very slow environment after " |
1145 | @@ -1016,12 +1016,12 @@ msgstr "" |
1146 | "obtener más información, consulta https://wiki.ubuntu.com/X/Bugs/" |
1147 | "UpdateManagerWarningForUnity3D ¿Aínda quies siguir col anovamientu?" |
1148 | |
1149 | -#: ../DistUpgrade/DistUpgradeQuirks.py:263 |
1150 | +#: ../DistUpgrade/DistUpgradeQuirks.py:265 |
1151 | msgid "Your graphics hardware may not be fully supported in Ubuntu 12.04 LTS." |
1152 | msgstr "" |
1153 | "El hardware de gráficos nun ye compatible dafechu con Ubuntu 12.04 LTS." |
1154 | |
1155 | -#: ../DistUpgrade/DistUpgradeQuirks.py:265 |
1156 | +#: ../DistUpgrade/DistUpgradeQuirks.py:267 |
1157 | msgid "" |
1158 | "The support in Ubuntu 12.04 LTS for your Intel graphics hardware is limited " |
1159 | "and you may encounter problems after the upgrade. For more information see " |
1160 | @@ -1033,7 +1033,7 @@ msgstr "" |
1161 | "información llei https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForI8xx " |
1162 | "¿Quies siguir col anovamientu?" |
1163 | |
1164 | -#: ../DistUpgrade/DistUpgradeQuirks.py:285 |
1165 | +#: ../DistUpgrade/DistUpgradeQuirks.py:287 |
1166 | msgid "" |
1167 | "Upgrading may reduce desktop effects, and performance in games and other " |
1168 | "graphically intensive programs." |
1169 | @@ -1042,7 +1042,7 @@ msgstr "" |
1170 | "rendimientu de los xuegos y otros programes qu'usen gráficos de mou " |
1171 | "intensivu." |
1172 | |
1173 | -#: ../DistUpgrade/DistUpgradeQuirks.py:289 |
1174 | +#: ../DistUpgrade/DistUpgradeQuirks.py:291 |
1175 | msgid "" |
1176 | "This computer is currently using the AMD 'fglrx' graphics driver. No version " |
1177 | "of this driver is available that works with your hardware in Ubuntu 10.04 " |
1178 | @@ -1056,12 +1056,12 @@ msgstr "" |
1179 | "\n" |
1180 | "¿Quier continuar?" |
1181 | |
1182 | -#: ../DistUpgrade/DistUpgradeQuirks.py:328 |
1183 | -#: ../DistUpgrade/DistUpgradeQuirks.py:397 |
1184 | +#: ../DistUpgrade/DistUpgradeQuirks.py:330 |
1185 | +#: ../DistUpgrade/DistUpgradeQuirks.py:399 |
1186 | msgid "Sorry, no more upgrades for this system" |
1187 | msgstr "" |
1188 | |
1189 | -#: ../DistUpgrade/DistUpgradeQuirks.py:329 |
1190 | +#: ../DistUpgrade/DistUpgradeQuirks.py:331 |
1191 | #, python-format |
1192 | msgid "" |
1193 | "There will not be any further Ubuntu releases for this system's 'i386' " |
1194 | @@ -1070,11 +1070,11 @@ msgid "" |
1195 | "Updates for Ubuntu %s will continue until %s." |
1196 | msgstr "" |
1197 | |
1198 | -#: ../DistUpgrade/DistUpgradeQuirks.py:344 |
1199 | +#: ../DistUpgrade/DistUpgradeQuirks.py:346 |
1200 | msgid "No ARMv6 CPU" |
1201 | msgstr "No ARMv6 CPU" |
1202 | |
1203 | -#: ../DistUpgrade/DistUpgradeQuirks.py:345 |
1204 | +#: ../DistUpgrade/DistUpgradeQuirks.py:347 |
1205 | msgid "" |
1206 | "Your system uses an ARM CPU that is older than the ARMv6 architecture. All " |
1207 | "packages in karmic were built with optimizations requiring ARMv6 as the " |
1208 | @@ -1086,12 +1086,12 @@ msgstr "" |
1209 | "ARMv6 como arquiteutura mínima. Nun ye dable anovar el so sistema a la nueva " |
1210 | "versión d'Ubuntu con esti hardware." |
1211 | |
1212 | -#: ../DistUpgrade/DistUpgradeQuirks.py:365 |
1213 | +#: ../DistUpgrade/DistUpgradeQuirks.py:367 |
1214 | msgid "" |
1215 | "Sorry, this storage driver is not supported in kernels for newer releases" |
1216 | msgstr "" |
1217 | |
1218 | -#: ../DistUpgrade/DistUpgradeQuirks.py:367 |
1219 | +#: ../DistUpgrade/DistUpgradeQuirks.py:369 |
1220 | #, python-format |
1221 | msgid "" |
1222 | "There will not be any further Ubuntu releases that provide kernel support " |
1223 | @@ -1101,7 +1101,7 @@ msgid "" |
1224 | "driver, remove the directory %s and try again." |
1225 | msgstr "" |
1226 | |
1227 | -#: ../DistUpgrade/DistUpgradeQuirks.py:398 |
1228 | +#: ../DistUpgrade/DistUpgradeQuirks.py:400 |
1229 | #, python-format |
1230 | msgid "" |
1231 | "There will not be any further Ubuntu releases for this system's POWER8 " |
1232 | @@ -1110,11 +1110,11 @@ msgid "" |
1233 | "Updates for Ubuntu %s will continue until %s." |
1234 | msgstr "" |
1235 | |
1236 | -#: ../DistUpgrade/DistUpgradeQuirks.py:416 |
1237 | +#: ../DistUpgrade/DistUpgradeQuirks.py:418 |
1238 | msgid "No init available" |
1239 | msgstr "El degorriu init nun ta disponible" |
1240 | |
1241 | -#: ../DistUpgrade/DistUpgradeQuirks.py:417 |
1242 | +#: ../DistUpgrade/DistUpgradeQuirks.py:419 |
1243 | msgid "" |
1244 | "Your system appears to be a virtualised environment without an init daemon, " |
1245 | "e.g. Linux-VServer. Ubuntu 10.04 LTS cannot function within this type of " |
1246 | @@ -1130,11 +1130,11 @@ msgstr "" |
1247 | "\n" |
1248 | "¿Daveres que quies siguir?" |
1249 | |
1250 | -#: ../DistUpgrade/DistUpgradeQuirks.py:458 |
1251 | +#: ../DistUpgrade/DistUpgradeQuirks.py:460 |
1252 | msgid "The Robot Operating System (ROS) is installed" |
1253 | msgstr "" |
1254 | |
1255 | -#: ../DistUpgrade/DistUpgradeQuirks.py:459 |
1256 | +#: ../DistUpgrade/DistUpgradeQuirks.py:461 |
1257 | msgid "" |
1258 | "It appears that ROS is currently installed. Each ROS release is very strict " |
1259 | "about the versions of Ubuntu it supports, and Ubuntu upgrades can fail if " |
1260 | @@ -1151,11 +1151,11 @@ msgid "" |
1261 | "Are you sure you want to continue?" |
1262 | msgstr "" |
1263 | |
1264 | -#: ../DistUpgrade/DistUpgradeQuirks.py:634 |
1265 | +#: ../DistUpgrade/DistUpgradeQuirks.py:654 |
1266 | msgid "Connection to the Snap Store failed" |
1267 | msgstr "" |
1268 | |
1269 | -#: ../DistUpgrade/DistUpgradeQuirks.py:635 |
1270 | +#: ../DistUpgrade/DistUpgradeQuirks.py:655 |
1271 | msgid "" |
1272 | "You have the package lxd installed but your system is unable to reach the " |
1273 | "Snap Store. lxd is now provided via a snap and the release upgrade will fail " |
1274 | @@ -1165,11 +1165,11 @@ msgid "" |
1275 | "may want to configure a Snap Store proxy." |
1276 | msgstr "" |
1277 | |
1278 | -#: ../DistUpgrade/DistUpgradeQuirks.py:650 |
1279 | +#: ../DistUpgrade/DistUpgradeQuirks.py:670 |
1280 | msgid "Connection to Snap Store failed" |
1281 | msgstr "" |
1282 | |
1283 | -#: ../DistUpgrade/DistUpgradeQuirks.py:651 |
1284 | +#: ../DistUpgrade/DistUpgradeQuirks.py:671 |
1285 | msgid "" |
1286 | "Your system does not have a connection to the Snap Store. For the best " |
1287 | "upgrade experience make sure that your system can connect to api.snapcraft." |
1288 | @@ -1177,11 +1177,11 @@ msgid "" |
1289 | "Do you still want to continue with the upgrade?" |
1290 | msgstr "" |
1291 | |
1292 | -#: ../DistUpgrade/DistUpgradeQuirks.py:660 |
1293 | +#: ../DistUpgrade/DistUpgradeQuirks.py:680 |
1294 | msgid "Outdated snapd package" |
1295 | msgstr "" |
1296 | |
1297 | -#: ../DistUpgrade/DistUpgradeQuirks.py:661 |
1298 | +#: ../DistUpgrade/DistUpgradeQuirks.py:681 |
1299 | msgid "" |
1300 | "Your system does not have the latest version of snapd. Please update the " |
1301 | "version of snapd on your system to improve the upgrade experience.\n" |
1302 | @@ -1190,34 +1190,34 @@ msgstr "" |
1303 | |
1304 | #. now perform direct API calls to the store, requesting size |
1305 | #. information for each of the snaps needing installation |
1306 | -#: ../DistUpgrade/DistUpgradeQuirks.py:686 |
1307 | +#: ../DistUpgrade/DistUpgradeQuirks.py:706 |
1308 | msgid "Calculating snap size requirements" |
1309 | msgstr "" |
1310 | |
1311 | -#: ../DistUpgrade/DistUpgradeQuirks.py:717 |
1312 | +#: ../DistUpgrade/DistUpgradeQuirks.py:737 |
1313 | msgid "Processing snap replacements" |
1314 | msgstr "" |
1315 | |
1316 | -#: ../DistUpgrade/DistUpgradeQuirks.py:723 |
1317 | +#: ../DistUpgrade/DistUpgradeQuirks.py:743 |
1318 | #, python-format |
1319 | msgid "refreshing snap %s" |
1320 | msgstr "" |
1321 | |
1322 | -#: ../DistUpgrade/DistUpgradeQuirks.py:727 |
1323 | +#: ../DistUpgrade/DistUpgradeQuirks.py:747 |
1324 | #, python-format |
1325 | msgid "removing snap %s" |
1326 | msgstr "" |
1327 | |
1328 | -#: ../DistUpgrade/DistUpgradeQuirks.py:730 |
1329 | +#: ../DistUpgrade/DistUpgradeQuirks.py:750 |
1330 | #, python-format |
1331 | msgid "installing snap %s" |
1332 | msgstr "" |
1333 | |
1334 | -#: ../DistUpgrade/DistUpgradeQuirks.py:759 |
1335 | +#: ../DistUpgrade/DistUpgradeQuirks.py:779 |
1336 | msgid "PAE not enabled" |
1337 | msgstr "PAE nun ta activáu" |
1338 | |
1339 | -#: ../DistUpgrade/DistUpgradeQuirks.py:760 |
1340 | +#: ../DistUpgrade/DistUpgradeQuirks.py:780 |
1341 | msgid "" |
1342 | "Your system uses a CPU that does not have PAE enabled. Ubuntu only supports " |
1343 | "non-PAE systems up to Ubuntu 12.04. To upgrade to a later version of Ubuntu, " |
1344 | @@ -1229,11 +1229,11 @@ msgstr "" |
1345 | "más reciente d'Ubuntu, tien d'activar PAE (si ye posible) vea:\n" |
1346 | " http://help.ubuntu.com/community/EnablingPAE" |
1347 | |
1348 | -#: ../DistUpgrade/DistUpgradeQuirks.py:1056 |
1349 | +#: ../DistUpgrade/DistUpgradeQuirks.py:1076 |
1350 | msgid "universe component not enabled" |
1351 | msgstr "" |
1352 | |
1353 | -#: ../DistUpgrade/DistUpgradeQuirks.py:1057 |
1354 | +#: ../DistUpgrade/DistUpgradeQuirks.py:1077 |
1355 | #, python-format |
1356 | msgid "" |
1357 | "You have the package %s installed which is a python2 package. python2 has " |
1358 | @@ -1245,7 +1245,7 @@ msgid "" |
1359 | "universe component in /etc/apt/sources.list or remove %s" |
1360 | msgstr "" |
1361 | |
1362 | -#: ../DistUpgrade/DistUpgradeQuirks.py:1169 |
1363 | +#: ../DistUpgrade/DistUpgradeQuirks.py:1189 |
1364 | msgid "Checking for installed snaps" |
1365 | msgstr "" |
1366 | |
1367 | diff --git a/po/az.po b/po/az.po |
1368 | index bda3a1c..057299f 100644 |
1369 | --- a/po/az.po |
1370 | +++ b/po/az.po |
1371 | @@ -8,7 +8,7 @@ msgid "" |
1372 | msgstr "" |
1373 | "Project-Id-Version: update-manager\n" |
1374 | "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" |
1375 | -"POT-Creation-Date: 2023-04-03 16:33+0000\n" |
1376 | +"POT-Creation-Date: 2023-04-12 13:41+0000\n" |
1377 | "PO-Revision-Date: 2013-05-22 11:00+0000\n" |
1378 | "Last-Translator: Emin Mastizadeh <emin25@ovi.com>\n" |
1379 | "Language-Team: Azerbaijani <az@li.org>\n" |
1380 | @@ -893,11 +893,11 @@ msgstr "Xaiş olunur '%s' mənbəyini '%s' sürücüsünə yerləşdirin" |
1381 | msgid "Media Change" |
1382 | msgstr "" |
1383 | |
1384 | -#: ../DistUpgrade/DistUpgradeQuirks.py:237 |
1385 | +#: ../DistUpgrade/DistUpgradeQuirks.py:239 |
1386 | msgid "Your graphics hardware may not be fully supported in Ubuntu 14.04." |
1387 | msgstr "" |
1388 | |
1389 | -#: ../DistUpgrade/DistUpgradeQuirks.py:239 |
1390 | +#: ../DistUpgrade/DistUpgradeQuirks.py:241 |
1391 | msgid "" |
1392 | "Running the 'unity' desktop environment is not fully supported by your " |
1393 | "graphics hardware. You will maybe end up in a very slow environment after " |
1394 | @@ -907,11 +907,11 @@ msgid "" |
1395 | "upgrade?" |
1396 | msgstr "" |
1397 | |
1398 | -#: ../DistUpgrade/DistUpgradeQuirks.py:263 |
1399 | +#: ../DistUpgrade/DistUpgradeQuirks.py:265 |
1400 | msgid "Your graphics hardware may not be fully supported in Ubuntu 12.04 LTS." |
1401 | msgstr "" |
1402 | |
1403 | -#: ../DistUpgrade/DistUpgradeQuirks.py:265 |
1404 | +#: ../DistUpgrade/DistUpgradeQuirks.py:267 |
1405 | msgid "" |
1406 | "The support in Ubuntu 12.04 LTS for your Intel graphics hardware is limited " |
1407 | "and you may encounter problems after the upgrade. For more information see " |
1408 | @@ -919,13 +919,13 @@ msgid "" |
1409 | "continue with the upgrade?" |
1410 | msgstr "" |
1411 | |
1412 | -#: ../DistUpgrade/DistUpgradeQuirks.py:285 |
1413 | +#: ../DistUpgrade/DistUpgradeQuirks.py:287 |
1414 | msgid "" |
1415 | "Upgrading may reduce desktop effects, and performance in games and other " |
1416 | "graphically intensive programs." |
1417 | msgstr "" |
1418 | |
1419 | -#: ../DistUpgrade/DistUpgradeQuirks.py:289 |
1420 | +#: ../DistUpgrade/DistUpgradeQuirks.py:291 |
1421 | msgid "" |
1422 | "This computer is currently using the AMD 'fglrx' graphics driver. No version " |
1423 | "of this driver is available that works with your hardware in Ubuntu 10.04 " |
1424 | @@ -934,12 +934,12 @@ msgid "" |
1425 | "Do you want to continue?" |
1426 | msgstr "" |
1427 | |
1428 | -#: ../DistUpgrade/DistUpgradeQuirks.py:328 |
1429 | -#: ../DistUpgrade/DistUpgradeQuirks.py:397 |
1430 | +#: ../DistUpgrade/DistUpgradeQuirks.py:330 |
1431 | +#: ../DistUpgrade/DistUpgradeQuirks.py:399 |
1432 | msgid "Sorry, no more upgrades for this system" |
1433 | msgstr "" |
1434 | |
1435 | -#: ../DistUpgrade/DistUpgradeQuirks.py:329 |
1436 | +#: ../DistUpgrade/DistUpgradeQuirks.py:331 |
1437 | #, python-format |
1438 | msgid "" |
1439 | "There will not be any further Ubuntu releases for this system's 'i386' " |
1440 | @@ -948,11 +948,11 @@ msgid "" |
1441 | "Updates for Ubuntu %s will continue until %s." |
1442 | msgstr "" |
1443 | |
1444 | -#: ../DistUpgrade/DistUpgradeQuirks.py:344 |
1445 | +#: ../DistUpgrade/DistUpgradeQuirks.py:346 |
1446 | msgid "No ARMv6 CPU" |
1447 | msgstr "" |
1448 | |
1449 | -#: ../DistUpgrade/DistUpgradeQuirks.py:345 |
1450 | +#: ../DistUpgrade/DistUpgradeQuirks.py:347 |
1451 | msgid "" |
1452 | "Your system uses an ARM CPU that is older than the ARMv6 architecture. All " |
1453 | "packages in karmic were built with optimizations requiring ARMv6 as the " |
1454 | @@ -960,12 +960,12 @@ msgid "" |
1455 | "Ubuntu release with this hardware." |
1456 | msgstr "" |
1457 | |
1458 | -#: ../DistUpgrade/DistUpgradeQuirks.py:365 |
1459 | +#: ../DistUpgrade/DistUpgradeQuirks.py:367 |
1460 | msgid "" |
1461 | "Sorry, this storage driver is not supported in kernels for newer releases" |
1462 | msgstr "" |
1463 | |
1464 | -#: ../DistUpgrade/DistUpgradeQuirks.py:367 |
1465 | +#: ../DistUpgrade/DistUpgradeQuirks.py:369 |
1466 | #, python-format |
1467 | msgid "" |
1468 | "There will not be any further Ubuntu releases that provide kernel support " |
1469 | @@ -975,7 +975,7 @@ msgid "" |
1470 | "driver, remove the directory %s and try again." |
1471 | msgstr "" |
1472 | |
1473 | -#: ../DistUpgrade/DistUpgradeQuirks.py:398 |
1474 | +#: ../DistUpgrade/DistUpgradeQuirks.py:400 |
1475 | #, python-format |
1476 | msgid "" |
1477 | "There will not be any further Ubuntu releases for this system's POWER8 " |
1478 | @@ -984,11 +984,11 @@ msgid "" |
1479 | "Updates for Ubuntu %s will continue until %s." |
1480 | msgstr "" |
1481 | |
1482 | -#: ../DistUpgrade/DistUpgradeQuirks.py:416 |
1483 | +#: ../DistUpgrade/DistUpgradeQuirks.py:418 |
1484 | msgid "No init available" |
1485 | msgstr "" |
1486 | |
1487 | -#: ../DistUpgrade/DistUpgradeQuirks.py:417 |
1488 | +#: ../DistUpgrade/DistUpgradeQuirks.py:419 |
1489 | msgid "" |
1490 | "Your system appears to be a virtualised environment without an init daemon, " |
1491 | "e.g. Linux-VServer. Ubuntu 10.04 LTS cannot function within this type of " |
1492 | @@ -998,11 +998,11 @@ msgid "" |
1493 | "Are you sure you want to continue?" |
1494 | msgstr "" |
1495 | |
1496 | -#: ../DistUpgrade/DistUpgradeQuirks.py:458 |
1497 | +#: ../DistUpgrade/DistUpgradeQuirks.py:460 |
1498 | msgid "The Robot Operating System (ROS) is installed" |
1499 | msgstr "" |
1500 | |
1501 | -#: ../DistUpgrade/DistUpgradeQuirks.py:459 |
1502 | +#: ../DistUpgrade/DistUpgradeQuirks.py:461 |
1503 | msgid "" |
1504 | "It appears that ROS is currently installed. Each ROS release is very strict " |
1505 | "about the versions of Ubuntu it supports, and Ubuntu upgrades can fail if " |
1506 | @@ -1019,11 +1019,11 @@ msgid "" |
1507 | "Are you sure you want to continue?" |
1508 | msgstr "" |
1509 | |
1510 | -#: ../DistUpgrade/DistUpgradeQuirks.py:634 |
1511 | +#: ../DistUpgrade/DistUpgradeQuirks.py:654 |
1512 | msgid "Connection to the Snap Store failed" |
1513 | msgstr "" |
1514 | |
1515 | -#: ../DistUpgrade/DistUpgradeQuirks.py:635 |
1516 | +#: ../DistUpgrade/DistUpgradeQuirks.py:655 |
1517 | msgid "" |
1518 | "You have the package lxd installed but your system is unable to reach the " |
1519 | "Snap Store. lxd is now provided via a snap and the release upgrade will fail " |
1520 | @@ -1033,11 +1033,11 @@ msgid "" |
1521 | "may want to configure a Snap Store proxy." |
1522 | msgstr "" |
1523 | |
1524 | -#: ../DistUpgrade/DistUpgradeQuirks.py:650 |
1525 | +#: ../DistUpgrade/DistUpgradeQuirks.py:670 |
1526 | msgid "Connection to Snap Store failed" |
1527 | msgstr "" |
1528 | |
1529 | -#: ../DistUpgrade/DistUpgradeQuirks.py:651 |
1530 | +#: ../DistUpgrade/DistUpgradeQuirks.py:671 |
1531 | msgid "" |
1532 | "Your system does not have a connection to the Snap Store. For the best " |
1533 | "upgrade experience make sure that your system can connect to api.snapcraft." |
1534 | @@ -1045,11 +1045,11 @@ msgid "" |
1535 | "Do you still want to continue with the upgrade?" |
1536 | msgstr "" |
1537 | |
1538 | -#: ../DistUpgrade/DistUpgradeQuirks.py:660 |
1539 | +#: ../DistUpgrade/DistUpgradeQuirks.py:680 |
1540 | msgid "Outdated snapd package" |
1541 | msgstr "" |
1542 | |
1543 | -#: ../DistUpgrade/DistUpgradeQuirks.py:661 |
1544 | +#: ../DistUpgrade/DistUpgradeQuirks.py:681 |
1545 | msgid "" |
1546 | "Your system does not have the latest version of snapd. Please update the " |
1547 | "version of snapd on your system to improve the upgrade experience.\n" |
1548 | @@ -1058,34 +1058,34 @@ msgstr "" |
1549 | |
1550 | #. now perform direct API calls to the store, requesting size |
1551 | #. information for each of the snaps needing installation |
1552 | -#: ../DistUpgrade/DistUpgradeQuirks.py:686 |
1553 | +#: ../DistUpgrade/DistUpgradeQuirks.py:706 |
1554 | msgid "Calculating snap size requirements" |
1555 | msgstr "" |
1556 | |
1557 | -#: ../DistUpgrade/DistUpgradeQuirks.py:717 |
1558 | +#: ../DistUpgrade/DistUpgradeQuirks.py:737 |
1559 | msgid "Processing snap replacements" |
1560 | msgstr "" |
1561 | |
1562 | -#: ../DistUpgrade/DistUpgradeQuirks.py:723 |
1563 | +#: ../DistUpgrade/DistUpgradeQuirks.py:743 |
1564 | #, python-format |
1565 | msgid "refreshing snap %s" |
1566 | msgstr "" |
1567 | |
1568 | -#: ../DistUpgrade/DistUpgradeQuirks.py:727 |
1569 | +#: ../DistUpgrade/DistUpgradeQuirks.py:747 |
1570 | #, python-format |
1571 | msgid "removing snap %s" |
1572 | msgstr "" |
1573 | |
1574 | -#: ../DistUpgrade/DistUpgradeQuirks.py:730 |
1575 | +#: ../DistUpgrade/DistUpgradeQuirks.py:750 |
1576 | #, python-format |
1577 | msgid "installing snap %s" |
1578 | msgstr "" |
1579 | |
1580 | -#: ../DistUpgrade/DistUpgradeQuirks.py:759 |
1581 | +#: ../DistUpgrade/DistUpgradeQuirks.py:779 |
1582 | msgid "PAE not enabled" |
1583 | msgstr "" |
1584 | |
1585 | -#: ../DistUpgrade/DistUpgradeQuirks.py:760 |
1586 | +#: ../DistUpgrade/DistUpgradeQuirks.py:780 |
1587 | msgid "" |
1588 | "Your system uses a CPU that does not have PAE enabled. Ubuntu only supports " |
1589 | "non-PAE systems up to Ubuntu 12.04. To upgrade to a later version of Ubuntu, " |
1590 | @@ -1093,11 +1093,11 @@ msgid "" |
1591 | "http://help.ubuntu.com/community/EnablingPAE" |
1592 | msgstr "" |
1593 | |
1594 | -#: ../DistUpgrade/DistUpgradeQuirks.py:1056 |
1595 | +#: ../DistUpgrade/DistUpgradeQuirks.py:1076 |
1596 | msgid "universe component not enabled" |
1597 | msgstr "" |
1598 | |
1599 | -#: ../DistUpgrade/DistUpgradeQuirks.py:1057 |
1600 | +#: ../DistUpgrade/DistUpgradeQuirks.py:1077 |
1601 | #, python-format |
1602 | msgid "" |
1603 | "You have the package %s installed which is a python2 package. python2 has " |
1604 | @@ -1109,7 +1109,7 @@ msgid "" |
1605 | "universe component in /etc/apt/sources.list or remove %s" |
1606 | msgstr "" |
1607 | |
1608 | -#: ../DistUpgrade/DistUpgradeQuirks.py:1169 |
1609 | +#: ../DistUpgrade/DistUpgradeQuirks.py:1189 |
1610 | msgid "Checking for installed snaps" |
1611 | msgstr "" |
1612 | |
1613 | diff --git a/po/be.po b/po/be.po |
1614 | index 3f52a89..e9c708d 100644 |
1615 | --- a/po/be.po |
1616 | +++ b/po/be.po |
1617 | @@ -8,7 +8,7 @@ msgid "" |
1618 | msgstr "" |
1619 | "Project-Id-Version: update-manager\n" |
1620 | "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" |
1621 | -"POT-Creation-Date: 2023-04-03 16:33+0000\n" |
1622 | +"POT-Creation-Date: 2023-04-12 13:41+0000\n" |
1623 | "PO-Revision-Date: 2019-06-18 17:54+0000\n" |
1624 | "Last-Translator: Brian Murray <brian@ubuntu.com>\n" |
1625 | "Language-Team: Belarusian <be@li.org>\n" |
1626 | @@ -1002,12 +1002,12 @@ msgstr "Калі ласка, устаўце \"%s\" у прыладу \"%s\"" |
1627 | msgid "Media Change" |
1628 | msgstr "Змена носьбіта" |
1629 | |
1630 | -#: ../DistUpgrade/DistUpgradeQuirks.py:237 |
1631 | +#: ../DistUpgrade/DistUpgradeQuirks.py:239 |
1632 | msgid "Your graphics hardware may not be fully supported in Ubuntu 14.04." |
1633 | msgstr "" |
1634 | "Ваша графічнае абсталяванне не можа быць цалкам падтрыманым ў Ubuntu 14.04." |
1635 | |
1636 | -#: ../DistUpgrade/DistUpgradeQuirks.py:239 |
1637 | +#: ../DistUpgrade/DistUpgradeQuirks.py:241 |
1638 | msgid "" |
1639 | "Running the 'unity' desktop environment is not fully supported by your " |
1640 | "graphics hardware. You will maybe end up in a very slow environment after " |
1641 | @@ -1022,13 +1022,13 @@ msgstr "" |
1642 | "звесткі гл. https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForUnity3D Вы " |
1643 | "ўсё яшчэ хочаце працягнуць абнаўленне?" |
1644 | |
1645 | -#: ../DistUpgrade/DistUpgradeQuirks.py:263 |
1646 | +#: ../DistUpgrade/DistUpgradeQuirks.py:265 |
1647 | msgid "Your graphics hardware may not be fully supported in Ubuntu 12.04 LTS." |
1648 | msgstr "" |
1649 | "Вашае графічнае абсталяванне, магчыма, не будзе падтрымлівацца цалкам у " |
1650 | "Ubuntu 12.04 LTS" |
1651 | |
1652 | -#: ../DistUpgrade/DistUpgradeQuirks.py:265 |
1653 | +#: ../DistUpgrade/DistUpgradeQuirks.py:267 |
1654 | msgid "" |
1655 | "The support in Ubuntu 12.04 LTS for your Intel graphics hardware is limited " |
1656 | "and you may encounter problems after the upgrade. For more information see " |
1657 | @@ -1040,7 +1040,7 @@ msgstr "" |
1658 | "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForI8xx \r\n" |
1659 | "Вы сапраўды хочаце працягнуць абнаўленне?" |
1660 | |
1661 | -#: ../DistUpgrade/DistUpgradeQuirks.py:285 |
1662 | +#: ../DistUpgrade/DistUpgradeQuirks.py:287 |
1663 | msgid "" |
1664 | "Upgrading may reduce desktop effects, and performance in games and other " |
1665 | "graphically intensive programs." |
1666 | @@ -1048,7 +1048,7 @@ msgstr "" |
1667 | "Абнаўленне можа выклікаць зніжэнне якасці эфектаў працоўнага стала і " |
1668 | "прадукцыйнасці ў гульнях і праграмах, што актыўна выкарыстоўваюць графіку." |
1669 | |
1670 | -#: ../DistUpgrade/DistUpgradeQuirks.py:289 |
1671 | +#: ../DistUpgrade/DistUpgradeQuirks.py:291 |
1672 | msgid "" |
1673 | "This computer is currently using the AMD 'fglrx' graphics driver. No version " |
1674 | "of this driver is available that works with your hardware in Ubuntu 10.04 " |
1675 | @@ -1062,12 +1062,12 @@ msgstr "" |
1676 | "\n" |
1677 | "Працягнуць?" |
1678 | |
1679 | -#: ../DistUpgrade/DistUpgradeQuirks.py:328 |
1680 | -#: ../DistUpgrade/DistUpgradeQuirks.py:397 |
1681 | +#: ../DistUpgrade/DistUpgradeQuirks.py:330 |
1682 | +#: ../DistUpgrade/DistUpgradeQuirks.py:399 |
1683 | msgid "Sorry, no more upgrades for this system" |
1684 | msgstr "" |
1685 | |
1686 | -#: ../DistUpgrade/DistUpgradeQuirks.py:329 |
1687 | +#: ../DistUpgrade/DistUpgradeQuirks.py:331 |
1688 | #, python-format |
1689 | msgid "" |
1690 | "There will not be any further Ubuntu releases for this system's 'i386' " |
1691 | @@ -1076,11 +1076,11 @@ msgid "" |
1692 | "Updates for Ubuntu %s will continue until %s." |
1693 | msgstr "" |
1694 | |
1695 | -#: ../DistUpgrade/DistUpgradeQuirks.py:344 |
1696 | +#: ../DistUpgrade/DistUpgradeQuirks.py:346 |
1697 | msgid "No ARMv6 CPU" |
1698 | msgstr "Няма працэсара ARMv6" |
1699 | |
1700 | -#: ../DistUpgrade/DistUpgradeQuirks.py:345 |
1701 | +#: ../DistUpgrade/DistUpgradeQuirks.py:347 |
1702 | msgid "" |
1703 | "Your system uses an ARM CPU that is older than the ARMv6 architecture. All " |
1704 | "packages in karmic were built with optimizations requiring ARMv6 as the " |
1705 | @@ -1092,12 +1092,12 @@ msgstr "" |
1706 | "ARMv6 і вышэй. Вашу сістэму немагчыма абнавіць да новага рэлізу Ubuntu з " |
1707 | "бягучым апаратным забеспячэннем." |
1708 | |
1709 | -#: ../DistUpgrade/DistUpgradeQuirks.py:365 |
1710 | +#: ../DistUpgrade/DistUpgradeQuirks.py:367 |
1711 | msgid "" |
1712 | "Sorry, this storage driver is not supported in kernels for newer releases" |
1713 | msgstr "" |
1714 | |
1715 | -#: ../DistUpgrade/DistUpgradeQuirks.py:367 |
1716 | +#: ../DistUpgrade/DistUpgradeQuirks.py:369 |
1717 | #, python-format |
1718 | msgid "" |
1719 | "There will not be any further Ubuntu releases that provide kernel support " |
1720 | @@ -1107,7 +1107,7 @@ msgid "" |
1721 | "driver, remove the directory %s and try again." |
1722 | msgstr "" |
1723 | |
1724 | -#: ../DistUpgrade/DistUpgradeQuirks.py:398 |
1725 | +#: ../DistUpgrade/DistUpgradeQuirks.py:400 |
1726 | #, python-format |
1727 | msgid "" |
1728 | "There will not be any further Ubuntu releases for this system's POWER8 " |
1729 | @@ -1116,11 +1116,11 @@ msgid "" |
1730 | "Updates for Ubuntu %s will continue until %s." |
1731 | msgstr "" |
1732 | |
1733 | -#: ../DistUpgrade/DistUpgradeQuirks.py:416 |
1734 | +#: ../DistUpgrade/DistUpgradeQuirks.py:418 |
1735 | msgid "No init available" |
1736 | msgstr "Служба init недаступна" |
1737 | |
1738 | -#: ../DistUpgrade/DistUpgradeQuirks.py:417 |
1739 | +#: ../DistUpgrade/DistUpgradeQuirks.py:419 |
1740 | msgid "" |
1741 | "Your system appears to be a virtualised environment without an init daemon, " |
1742 | "e.g. Linux-VServer. Ubuntu 10.04 LTS cannot function within this type of " |
1743 | @@ -1134,11 +1134,11 @@ msgstr "" |
1744 | "\n" |
1745 | "Вы ўпэўнены, што хочаце працягнуць?" |
1746 | |
1747 | -#: ../DistUpgrade/DistUpgradeQuirks.py:458 |
1748 | +#: ../DistUpgrade/DistUpgradeQuirks.py:460 |
1749 | msgid "The Robot Operating System (ROS) is installed" |
1750 | msgstr "" |
1751 | |
1752 | -#: ../DistUpgrade/DistUpgradeQuirks.py:459 |
1753 | +#: ../DistUpgrade/DistUpgradeQuirks.py:461 |
1754 | msgid "" |
1755 | "It appears that ROS is currently installed. Each ROS release is very strict " |
1756 | "about the versions of Ubuntu it supports, and Ubuntu upgrades can fail if " |
1757 | @@ -1155,11 +1155,11 @@ msgid "" |
1758 | "Are you sure you want to continue?" |
1759 | msgstr "" |
1760 | |
1761 | -#: ../DistUpgrade/DistUpgradeQuirks.py:634 |
1762 | +#: ../DistUpgrade/DistUpgradeQuirks.py:654 |
1763 | msgid "Connection to the Snap Store failed" |
1764 | msgstr "" |
1765 | |
1766 | -#: ../DistUpgrade/DistUpgradeQuirks.py:635 |
1767 | +#: ../DistUpgrade/DistUpgradeQuirks.py:655 |
1768 | msgid "" |
1769 | "You have the package lxd installed but your system is unable to reach the " |
1770 | "Snap Store. lxd is now provided via a snap and the release upgrade will fail " |
1771 | @@ -1169,11 +1169,11 @@ msgid "" |
1772 | "may want to configure a Snap Store proxy." |
1773 | msgstr "" |
1774 | |
1775 | -#: ../DistUpgrade/DistUpgradeQuirks.py:650 |
1776 | +#: ../DistUpgrade/DistUpgradeQuirks.py:670 |
1777 | msgid "Connection to Snap Store failed" |
1778 | msgstr "" |
1779 | |
1780 | -#: ../DistUpgrade/DistUpgradeQuirks.py:651 |
1781 | +#: ../DistUpgrade/DistUpgradeQuirks.py:671 |
1782 | msgid "" |
1783 | "Your system does not have a connection to the Snap Store. For the best " |
1784 | "upgrade experience make sure that your system can connect to api.snapcraft." |
1785 | @@ -1181,11 +1181,11 @@ msgid "" |
1786 | "Do you still want to continue with the upgrade?" |
1787 | msgstr "" |
1788 | |
1789 | -#: ../DistUpgrade/DistUpgradeQuirks.py:660 |
1790 | +#: ../DistUpgrade/DistUpgradeQuirks.py:680 |
1791 | msgid "Outdated snapd package" |
1792 | msgstr "" |
1793 | |
1794 | -#: ../DistUpgrade/DistUpgradeQuirks.py:661 |
1795 | +#: ../DistUpgrade/DistUpgradeQuirks.py:681 |
1796 | msgid "" |
1797 | "Your system does not have the latest version of snapd. Please update the " |
1798 | "version of snapd on your system to improve the upgrade experience.\n" |
1799 | @@ -1194,34 +1194,34 @@ msgstr "" |
1800 | |
1801 | #. now perform direct API calls to the store, requesting size |
1802 | #. information for each of the snaps needing installation |
1803 | -#: ../DistUpgrade/DistUpgradeQuirks.py:686 |
1804 | +#: ../DistUpgrade/DistUpgradeQuirks.py:706 |
1805 | msgid "Calculating snap size requirements" |
1806 | msgstr "" |
1807 | |
1808 | -#: ../DistUpgrade/DistUpgradeQuirks.py:717 |
1809 | +#: ../DistUpgrade/DistUpgradeQuirks.py:737 |
1810 | msgid "Processing snap replacements" |
1811 | msgstr "" |
1812 | |
1813 | -#: ../DistUpgrade/DistUpgradeQuirks.py:723 |
1814 | +#: ../DistUpgrade/DistUpgradeQuirks.py:743 |
1815 | #, python-format |
1816 | msgid "refreshing snap %s" |
1817 | msgstr "" |
1818 | |
1819 | -#: ../DistUpgrade/DistUpgradeQuirks.py:727 |
1820 | +#: ../DistUpgrade/DistUpgradeQuirks.py:747 |
1821 | #, python-format |
1822 | msgid "removing snap %s" |
1823 | msgstr "" |
1824 | |
1825 | -#: ../DistUpgrade/DistUpgradeQuirks.py:730 |
1826 | +#: ../DistUpgrade/DistUpgradeQuirks.py:750 |
1827 | #, python-format |
1828 | msgid "installing snap %s" |
1829 | msgstr "" |
1830 | |
1831 | -#: ../DistUpgrade/DistUpgradeQuirks.py:759 |
1832 | +#: ../DistUpgrade/DistUpgradeQuirks.py:779 |
1833 | msgid "PAE not enabled" |
1834 | msgstr "PAE не ўключана" |
1835 | |
1836 | -#: ../DistUpgrade/DistUpgradeQuirks.py:760 |
1837 | +#: ../DistUpgrade/DistUpgradeQuirks.py:780 |
1838 | msgid "" |
1839 | "Your system uses a CPU that does not have PAE enabled. Ubuntu only supports " |
1840 | "non-PAE systems up to Ubuntu 12.04. To upgrade to a later version of Ubuntu, " |
1841 | @@ -1233,11 +1233,11 @@ msgstr "" |
1842 | "12.10. Абнаўленне да новай версіі Ubuntu запатрабуе ўключэння PAE (калі гэта " |
1843 | "магчыма). Гл.: Http://help.ubuntu.com/community/EnablingPAE" |
1844 | |
1845 | -#: ../DistUpgrade/DistUpgradeQuirks.py:1056 |
1846 | +#: ../DistUpgrade/DistUpgradeQuirks.py:1076 |
1847 | msgid "universe component not enabled" |
1848 | msgstr "" |
1849 | |
1850 | -#: ../DistUpgrade/DistUpgradeQuirks.py:1057 |
1851 | +#: ../DistUpgrade/DistUpgradeQuirks.py:1077 |
1852 | #, python-format |
1853 | msgid "" |
1854 | "You have the package %s installed which is a python2 package. python2 has " |
1855 | @@ -1249,7 +1249,7 @@ msgid "" |
1856 | "universe component in /etc/apt/sources.list or remove %s" |
1857 | msgstr "" |
1858 | |
1859 | -#: ../DistUpgrade/DistUpgradeQuirks.py:1169 |
1860 | +#: ../DistUpgrade/DistUpgradeQuirks.py:1189 |
1861 | msgid "Checking for installed snaps" |
1862 | msgstr "" |
1863 | |
1864 | diff --git a/po/bg.po b/po/bg.po |
1865 | index 771baf6..4387b6f 100644 |
1866 | --- a/po/bg.po |
1867 | +++ b/po/bg.po |
1868 | @@ -9,7 +9,7 @@ msgid "" |
1869 | msgstr "" |
1870 | "Project-Id-Version: update manager\n" |
1871 | "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" |
1872 | -"POT-Creation-Date: 2023-04-03 16:33+0000\n" |
1873 | +"POT-Creation-Date: 2023-04-12 13:41+0000\n" |
1874 | "PO-Revision-Date: 2019-06-18 17:55+0000\n" |
1875 | "Last-Translator: Brian Murray <brian@ubuntu.com>\n" |
1876 | "Language-Team: Bulgarian <dict@fsa-bg.org>\n" |
1877 | @@ -996,12 +996,12 @@ msgstr "Моля, поставете диск «%s» в устройство «% |
1878 | msgid "Media Change" |
1879 | msgstr "Смяна на носител" |
1880 | |
1881 | -#: ../DistUpgrade/DistUpgradeQuirks.py:237 |
1882 | +#: ../DistUpgrade/DistUpgradeQuirks.py:239 |
1883 | msgid "Your graphics hardware may not be fully supported in Ubuntu 14.04." |
1884 | msgstr "" |
1885 | "Вашият графичен хардуер не може да бъде напълно поддържан в Убунту 14.04." |
1886 | |
1887 | -#: ../DistUpgrade/DistUpgradeQuirks.py:239 |
1888 | +#: ../DistUpgrade/DistUpgradeQuirks.py:241 |
1889 | msgid "" |
1890 | "Running the 'unity' desktop environment is not fully supported by your " |
1891 | "graphics hardware. You will maybe end up in a very slow environment after " |
1892 | @@ -1016,12 +1016,12 @@ msgstr "" |
1893 | "посетете https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForUnity3D. Все " |
1894 | "още ли искате да започнете с надграждането?" |
1895 | |
1896 | -#: ../DistUpgrade/DistUpgradeQuirks.py:263 |
1897 | +#: ../DistUpgrade/DistUpgradeQuirks.py:265 |
1898 | msgid "Your graphics hardware may not be fully supported in Ubuntu 12.04 LTS." |
1899 | msgstr "" |
1900 | "Вашият графичен хардуер може да не се поддържа напълно в Убунту 12.04 LTS." |
1901 | |
1902 | -#: ../DistUpgrade/DistUpgradeQuirks.py:265 |
1903 | +#: ../DistUpgrade/DistUpgradeQuirks.py:267 |
1904 | msgid "" |
1905 | "The support in Ubuntu 12.04 LTS for your Intel graphics hardware is limited " |
1906 | "and you may encounter problems after the upgrade. For more information see " |
1907 | @@ -1033,7 +1033,7 @@ msgstr "" |
1908 | "информация вижте https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForI8xx. " |
1909 | "Искате ли да продължите с надграждането?" |
1910 | |
1911 | -#: ../DistUpgrade/DistUpgradeQuirks.py:285 |
1912 | +#: ../DistUpgrade/DistUpgradeQuirks.py:287 |
1913 | msgid "" |
1914 | "Upgrading may reduce desktop effects, and performance in games and other " |
1915 | "graphically intensive programs." |
1916 | @@ -1041,7 +1041,7 @@ msgstr "" |
1917 | "Надграждането може да намали ефектите на работния плот и производителността " |
1918 | "в игрите и други графични програми." |
1919 | |
1920 | -#: ../DistUpgrade/DistUpgradeQuirks.py:289 |
1921 | +#: ../DistUpgrade/DistUpgradeQuirks.py:291 |
1922 | msgid "" |
1923 | "This computer is currently using the AMD 'fglrx' graphics driver. No version " |
1924 | "of this driver is available that works with your hardware in Ubuntu 10.04 " |
1925 | @@ -1054,12 +1054,12 @@ msgstr "" |
1926 | "\n" |
1927 | "Искате ли да продължите?" |
1928 | |
1929 | -#: ../DistUpgrade/DistUpgradeQuirks.py:328 |
1930 | -#: ../DistUpgrade/DistUpgradeQuirks.py:397 |
1931 | +#: ../DistUpgrade/DistUpgradeQuirks.py:330 |
1932 | +#: ../DistUpgrade/DistUpgradeQuirks.py:399 |
1933 | msgid "Sorry, no more upgrades for this system" |
1934 | msgstr "" |
1935 | |
1936 | -#: ../DistUpgrade/DistUpgradeQuirks.py:329 |
1937 | +#: ../DistUpgrade/DistUpgradeQuirks.py:331 |
1938 | #, python-format |
1939 | msgid "" |
1940 | "There will not be any further Ubuntu releases for this system's 'i386' " |
1941 | @@ -1068,11 +1068,11 @@ msgid "" |
1942 | "Updates for Ubuntu %s will continue until %s." |
1943 | msgstr "" |
1944 | |
1945 | -#: ../DistUpgrade/DistUpgradeQuirks.py:344 |
1946 | +#: ../DistUpgrade/DistUpgradeQuirks.py:346 |
1947 | msgid "No ARMv6 CPU" |
1948 | msgstr "Няма ARMv6 процесор" |
1949 | |
1950 | -#: ../DistUpgrade/DistUpgradeQuirks.py:345 |
1951 | +#: ../DistUpgrade/DistUpgradeQuirks.py:347 |
1952 | msgid "" |
1953 | "Your system uses an ARM CPU that is older than the ARMv6 architecture. All " |
1954 | "packages in karmic were built with optimizations requiring ARMv6 as the " |
1955 | @@ -1083,12 +1083,12 @@ msgstr "" |
1956 | "пакети в Karmic бяха оптимизрани с изискване минимум ARMv6 архитектура. Не е " |
1957 | "възможно да надградите система си до ново издание на Убунту с този хардуер." |
1958 | |
1959 | -#: ../DistUpgrade/DistUpgradeQuirks.py:365 |
1960 | +#: ../DistUpgrade/DistUpgradeQuirks.py:367 |
1961 | msgid "" |
1962 | "Sorry, this storage driver is not supported in kernels for newer releases" |
1963 | msgstr "" |
1964 | |
1965 | -#: ../DistUpgrade/DistUpgradeQuirks.py:367 |
1966 | +#: ../DistUpgrade/DistUpgradeQuirks.py:369 |
1967 | #, python-format |
1968 | msgid "" |
1969 | "There will not be any further Ubuntu releases that provide kernel support " |
1970 | @@ -1098,7 +1098,7 @@ msgid "" |
1971 | "driver, remove the directory %s and try again." |
1972 | msgstr "" |
1973 | |
1974 | -#: ../DistUpgrade/DistUpgradeQuirks.py:398 |
1975 | +#: ../DistUpgrade/DistUpgradeQuirks.py:400 |
1976 | #, python-format |
1977 | msgid "" |
1978 | "There will not be any further Ubuntu releases for this system's POWER8 " |
1979 | @@ -1107,11 +1107,11 @@ msgid "" |
1980 | "Updates for Ubuntu %s will continue until %s." |
1981 | msgstr "" |
1982 | |
1983 | -#: ../DistUpgrade/DistUpgradeQuirks.py:416 |
1984 | +#: ../DistUpgrade/DistUpgradeQuirks.py:418 |
1985 | msgid "No init available" |
1986 | msgstr "Няма достъпен init" |
1987 | |
1988 | -#: ../DistUpgrade/DistUpgradeQuirks.py:417 |
1989 | +#: ../DistUpgrade/DistUpgradeQuirks.py:419 |
1990 | msgid "" |
1991 | "Your system appears to be a virtualised environment without an init daemon, " |
1992 | "e.g. Linux-VServer. Ubuntu 10.04 LTS cannot function within this type of " |
1993 | @@ -1125,11 +1125,11 @@ msgstr "" |
1994 | "изисква се, актуализиране на настройката на виртуалната ви машина.\n" |
1995 | "Сигурни ли сте, че искате да продължите?" |
1996 | |
1997 | -#: ../DistUpgrade/DistUpgradeQuirks.py:458 |
1998 | +#: ../DistUpgrade/DistUpgradeQuirks.py:460 |
1999 | msgid "The Robot Operating System (ROS) is installed" |
2000 | msgstr "" |
2001 | |
2002 | -#: ../DistUpgrade/DistUpgradeQuirks.py:459 |
2003 | +#: ../DistUpgrade/DistUpgradeQuirks.py:461 |
2004 | msgid "" |
2005 | "It appears that ROS is currently installed. Each ROS release is very strict " |
2006 | "about the versions of Ubuntu it supports, and Ubuntu upgrades can fail if " |
2007 | @@ -1146,11 +1146,11 @@ msgid "" |
2008 | "Are you sure you want to continue?" |
2009 | msgstr "" |
2010 | |
2011 | -#: ../DistUpgrade/DistUpgradeQuirks.py:634 |
2012 | +#: ../DistUpgrade/DistUpgradeQuirks.py:654 |
2013 | msgid "Connection to the Snap Store failed" |
2014 | msgstr "" |
2015 | |
2016 | -#: ../DistUpgrade/DistUpgradeQuirks.py:635 |
2017 | +#: ../DistUpgrade/DistUpgradeQuirks.py:655 |
2018 | msgid "" |
2019 | "You have the package lxd installed but your system is unable to reach the " |
2020 | "Snap Store. lxd is now provided via a snap and the release upgrade will fail " |
2021 | @@ -1160,11 +1160,11 @@ msgid "" |
2022 | "may want to configure a Snap Store proxy." |
2023 | msgstr "" |
2024 | |
2025 | -#: ../DistUpgrade/DistUpgradeQuirks.py:650 |
2026 | +#: ../DistUpgrade/DistUpgradeQuirks.py:670 |
2027 | msgid "Connection to Snap Store failed" |
2028 | msgstr "" |
2029 | |
2030 | -#: ../DistUpgrade/DistUpgradeQuirks.py:651 |
2031 | +#: ../DistUpgrade/DistUpgradeQuirks.py:671 |
2032 | msgid "" |
2033 | "Your system does not have a connection to the Snap Store. For the best " |
2034 | "upgrade experience make sure that your system can connect to api.snapcraft." |
2035 | @@ -1172,11 +1172,11 @@ msgid "" |
2036 | "Do you still want to continue with the upgrade?" |
2037 | msgstr "" |
2038 | |
2039 | -#: ../DistUpgrade/DistUpgradeQuirks.py:660 |
2040 | +#: ../DistUpgrade/DistUpgradeQuirks.py:680 |
2041 | msgid "Outdated snapd package" |
2042 | msgstr "" |
2043 | |
2044 | -#: ../DistUpgrade/DistUpgradeQuirks.py:661 |
2045 | +#: ../DistUpgrade/DistUpgradeQuirks.py:681 |
2046 | msgid "" |
2047 | "Your system does not have the latest version of snapd. Please update the " |
2048 | "version of snapd on your system to improve the upgrade experience.\n" |
2049 | @@ -1185,34 +1185,34 @@ msgstr "" |
2050 | |
2051 | #. now perform direct API calls to the store, requesting size |
2052 | #. information for each of the snaps needing installation |
2053 | -#: ../DistUpgrade/DistUpgradeQuirks.py:686 |
2054 | +#: ../DistUpgrade/DistUpgradeQuirks.py:706 |
2055 | msgid "Calculating snap size requirements" |
2056 | msgstr "" |
2057 | |
2058 | -#: ../DistUpgrade/DistUpgradeQuirks.py:717 |
2059 | +#: ../DistUpgrade/DistUpgradeQuirks.py:737 |
2060 | msgid "Processing snap replacements" |
2061 | msgstr "" |
2062 | |
2063 | -#: ../DistUpgrade/DistUpgradeQuirks.py:723 |
2064 | +#: ../DistUpgrade/DistUpgradeQuirks.py:743 |
2065 | #, python-format |
2066 | msgid "refreshing snap %s" |
2067 | msgstr "" |
2068 | |
2069 | -#: ../DistUpgrade/DistUpgradeQuirks.py:727 |
2070 | +#: ../DistUpgrade/DistUpgradeQuirks.py:747 |
2071 | #, python-format |
2072 | msgid "removing snap %s" |
2073 | msgstr "" |
2074 | |
2075 | -#: ../DistUpgrade/DistUpgradeQuirks.py:730 |
2076 | +#: ../DistUpgrade/DistUpgradeQuirks.py:750 |
2077 | #, python-format |
2078 | msgid "installing snap %s" |
2079 | msgstr "" |
2080 | |
2081 | -#: ../DistUpgrade/DistUpgradeQuirks.py:759 |
2082 | +#: ../DistUpgrade/DistUpgradeQuirks.py:779 |
2083 | msgid "PAE not enabled" |
2084 | msgstr "PAE е изключен" |
2085 | |
2086 | -#: ../DistUpgrade/DistUpgradeQuirks.py:760 |
2087 | +#: ../DistUpgrade/DistUpgradeQuirks.py:780 |
2088 | msgid "" |
2089 | "Your system uses a CPU that does not have PAE enabled. Ubuntu only supports " |
2090 | "non-PAE systems up to Ubuntu 12.04. To upgrade to a later version of Ubuntu, " |
2091 | @@ -1220,11 +1220,11 @@ msgid "" |
2092 | "http://help.ubuntu.com/community/EnablingPAE" |
2093 | msgstr "" |
2094 | |
2095 | -#: ../DistUpgrade/DistUpgradeQuirks.py:1056 |
2096 | +#: ../DistUpgrade/DistUpgradeQuirks.py:1076 |
2097 | msgid "universe component not enabled" |
2098 | msgstr "" |
2099 | |
2100 | -#: ../DistUpgrade/DistUpgradeQuirks.py:1057 |
2101 | +#: ../DistUpgrade/DistUpgradeQuirks.py:1077 |
2102 | #, python-format |
2103 | msgid "" |
2104 | "You have the package %s installed which is a python2 package. python2 has " |
2105 | @@ -1236,7 +1236,7 @@ msgid "" |
2106 | "universe component in /etc/apt/sources.list or remove %s" |
2107 | msgstr "" |
2108 | |
2109 | -#: ../DistUpgrade/DistUpgradeQuirks.py:1169 |
2110 | +#: ../DistUpgrade/DistUpgradeQuirks.py:1189 |
2111 | msgid "Checking for installed snaps" |
2112 | msgstr "" |
2113 | |
2114 | diff --git a/po/bn.po b/po/bn.po |
2115 | index 8fce4a1..94d3efe 100644 |
2116 | --- a/po/bn.po |
2117 | +++ b/po/bn.po |
2118 | @@ -12,7 +12,7 @@ msgid "" |
2119 | msgstr "" |
2120 | "Project-Id-Version: shotwell-0.7.2\n" |
2121 | "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" |
2122 | -"POT-Creation-Date: 2023-04-03 16:33+0000\n" |
2123 | +"POT-Creation-Date: 2023-04-12 13:41+0000\n" |
2124 | "PO-Revision-Date: 2019-02-10 12:11+0000\n" |
2125 | "Last-Translator: Istiak Ferdous <Unknown>\n" |
2126 | "Language-Team: Bengali <ankur-bd-l10n@googlegroups.com>\n" |
2127 | @@ -984,11 +984,11 @@ msgstr "দয়া করে '%s' ড্রাইভে '%s' প্রবেশ |
2128 | msgid "Media Change" |
2129 | msgstr "মিডিয়া পরিবর্তন" |
2130 | |
2131 | -#: ../DistUpgrade/DistUpgradeQuirks.py:237 |
2132 | +#: ../DistUpgrade/DistUpgradeQuirks.py:239 |
2133 | msgid "Your graphics hardware may not be fully supported in Ubuntu 14.04." |
2134 | msgstr "" |
2135 | |
2136 | -#: ../DistUpgrade/DistUpgradeQuirks.py:239 |
2137 | +#: ../DistUpgrade/DistUpgradeQuirks.py:241 |
2138 | msgid "" |
2139 | "Running the 'unity' desktop environment is not fully supported by your " |
2140 | "graphics hardware. You will maybe end up in a very slow environment after " |
2141 | @@ -998,12 +998,12 @@ msgid "" |
2142 | "upgrade?" |
2143 | msgstr "" |
2144 | |
2145 | -#: ../DistUpgrade/DistUpgradeQuirks.py:263 |
2146 | +#: ../DistUpgrade/DistUpgradeQuirks.py:265 |
2147 | msgid "Your graphics hardware may not be fully supported in Ubuntu 12.04 LTS." |
2148 | msgstr "" |
2149 | "আপনার গ্রাফিক্স হার্ডওয়্যার উবুন্টু ১২.০৪ (LTS) এ সম্ভবত পুরোপুরি ভাবে সমর্থন করবে না।" |
2150 | |
2151 | -#: ../DistUpgrade/DistUpgradeQuirks.py:265 |
2152 | +#: ../DistUpgrade/DistUpgradeQuirks.py:267 |
2153 | msgid "" |
2154 | "The support in Ubuntu 12.04 LTS for your Intel graphics hardware is limited " |
2155 | "and you may encounter problems after the upgrade. For more information see " |
2156 | @@ -1015,7 +1015,7 @@ msgstr "" |
2157 | "Bugs/UpdateManagerWarningForI8xx আপনি কি উন্নীতকরণ করতে চান?" |
2158 | |
2159 | # snigdha |
2160 | -#: ../DistUpgrade/DistUpgradeQuirks.py:285 |
2161 | +#: ../DistUpgrade/DistUpgradeQuirks.py:287 |
2162 | msgid "" |
2163 | "Upgrading may reduce desktop effects, and performance in games and other " |
2164 | "graphically intensive programs." |
2165 | @@ -1023,7 +1023,7 @@ msgstr "" |
2166 | "আপগ্রেড করার ফলে গ্রাফিক ভিত্তিক প্রোগ্রাম ও গেমস্ ব্যবহার করার সময় ডেক্সটপের প্রভাব " |
2167 | "ও কার্যকারীতা কিছুটা কমে যাবে।" |
2168 | |
2169 | -#: ../DistUpgrade/DistUpgradeQuirks.py:289 |
2170 | +#: ../DistUpgrade/DistUpgradeQuirks.py:291 |
2171 | msgid "" |
2172 | "This computer is currently using the AMD 'fglrx' graphics driver. No version " |
2173 | "of this driver is available that works with your hardware in Ubuntu 10.04 " |
2174 | @@ -1036,12 +1036,12 @@ msgstr "" |
2175 | "\n" |
2176 | " আপনি কি চালিয়ে যেতে চান?" |
2177 | |
2178 | -#: ../DistUpgrade/DistUpgradeQuirks.py:328 |
2179 | -#: ../DistUpgrade/DistUpgradeQuirks.py:397 |
2180 | +#: ../DistUpgrade/DistUpgradeQuirks.py:330 |
2181 | +#: ../DistUpgrade/DistUpgradeQuirks.py:399 |
2182 | msgid "Sorry, no more upgrades for this system" |
2183 | msgstr "" |
2184 | |
2185 | -#: ../DistUpgrade/DistUpgradeQuirks.py:329 |
2186 | +#: ../DistUpgrade/DistUpgradeQuirks.py:331 |
2187 | #, python-format |
2188 | msgid "" |
2189 | "There will not be any further Ubuntu releases for this system's 'i386' " |
2190 | @@ -1050,11 +1050,11 @@ msgid "" |
2191 | "Updates for Ubuntu %s will continue until %s." |
2192 | msgstr "" |
2193 | |
2194 | -#: ../DistUpgrade/DistUpgradeQuirks.py:344 |
2195 | +#: ../DistUpgrade/DistUpgradeQuirks.py:346 |
2196 | msgid "No ARMv6 CPU" |
2197 | msgstr "কোনো ARMv6 CPU নেই" |
2198 | |
2199 | -#: ../DistUpgrade/DistUpgradeQuirks.py:345 |
2200 | +#: ../DistUpgrade/DistUpgradeQuirks.py:347 |
2201 | msgid "" |
2202 | "Your system uses an ARM CPU that is older than the ARMv6 architecture. All " |
2203 | "packages in karmic were built with optimizations requiring ARMv6 as the " |
2204 | @@ -1065,12 +1065,12 @@ msgstr "" |
2205 | "সব প্যাকেজ সর্বনিম্ন ARMv6 আর্কিটেকচারে নির্মাণ করা হয়েছে। এই হার্ডওয়্যার সহকারে " |
2206 | "আপনার সিস্টেমকে নতুন উবুন্টু সংস্করণে আপগ্রেড করা সম্ভব নয়।" |
2207 | |
2208 | -#: ../DistUpgrade/DistUpgradeQuirks.py:365 |
2209 | +#: ../DistUpgrade/DistUpgradeQuirks.py:367 |
2210 | msgid "" |
2211 | "Sorry, this storage driver is not supported in kernels for newer releases" |
2212 | msgstr "" |
2213 | |
2214 | -#: ../DistUpgrade/DistUpgradeQuirks.py:367 |
2215 | +#: ../DistUpgrade/DistUpgradeQuirks.py:369 |
2216 | #, python-format |
2217 | msgid "" |
2218 | "There will not be any further Ubuntu releases that provide kernel support " |
2219 | @@ -1080,7 +1080,7 @@ msgid "" |
2220 | "driver, remove the directory %s and try again." |
2221 | msgstr "" |
2222 | |
2223 | -#: ../DistUpgrade/DistUpgradeQuirks.py:398 |
2224 | +#: ../DistUpgrade/DistUpgradeQuirks.py:400 |
2225 | #, python-format |
2226 | msgid "" |
2227 | "There will not be any further Ubuntu releases for this system's POWER8 " |
2228 | @@ -1089,11 +1089,11 @@ msgid "" |
2229 | "Updates for Ubuntu %s will continue until %s." |
2230 | msgstr "" |
2231 | |
2232 | -#: ../DistUpgrade/DistUpgradeQuirks.py:416 |
2233 | +#: ../DistUpgrade/DistUpgradeQuirks.py:418 |
2234 | msgid "No init available" |
2235 | msgstr "কোনো init নেই" |
2236 | |
2237 | -#: ../DistUpgrade/DistUpgradeQuirks.py:417 |
2238 | +#: ../DistUpgrade/DistUpgradeQuirks.py:419 |
2239 | msgid "" |
2240 | "Your system appears to be a virtualised environment without an init daemon, " |
2241 | "e.g. Linux-VServer. Ubuntu 10.04 LTS cannot function within this type of " |
2242 | @@ -1108,11 +1108,11 @@ msgstr "" |
2243 | "\n" |
2244 | "আপনি কি নিশ্চিত আপনি এগিয়ে যেতে চান?" |
2245 | |
2246 | -#: ../DistUpgrade/DistUpgradeQuirks.py:458 |
2247 | +#: ../DistUpgrade/DistUpgradeQuirks.py:460 |
2248 | msgid "The Robot Operating System (ROS) is installed" |
2249 | msgstr "" |
2250 | |
2251 | -#: ../DistUpgrade/DistUpgradeQuirks.py:459 |
2252 | +#: ../DistUpgrade/DistUpgradeQuirks.py:461 |
2253 | msgid "" |
2254 | "It appears that ROS is currently installed. Each ROS release is very strict " |
2255 | "about the versions of Ubuntu it supports, and Ubuntu upgrades can fail if " |
2256 | @@ -1129,11 +1129,11 @@ msgid "" |
2257 | "Are you sure you want to continue?" |
2258 | msgstr "" |
2259 | |
2260 | -#: ../DistUpgrade/DistUpgradeQuirks.py:634 |
2261 | +#: ../DistUpgrade/DistUpgradeQuirks.py:654 |
2262 | msgid "Connection to the Snap Store failed" |
2263 | msgstr "" |
2264 | |
2265 | -#: ../DistUpgrade/DistUpgradeQuirks.py:635 |
2266 | +#: ../DistUpgrade/DistUpgradeQuirks.py:655 |
2267 | msgid "" |
2268 | "You have the package lxd installed but your system is unable to reach the " |
2269 | "Snap Store. lxd is now provided via a snap and the release upgrade will fail " |
2270 | @@ -1143,11 +1143,11 @@ msgid "" |
2271 | "may want to configure a Snap Store proxy." |
2272 | msgstr "" |
2273 | |
2274 | -#: ../DistUpgrade/DistUpgradeQuirks.py:650 |
2275 | +#: ../DistUpgrade/DistUpgradeQuirks.py:670 |
2276 | msgid "Connection to Snap Store failed" |
2277 | msgstr "" |
2278 | |
2279 | -#: ../DistUpgrade/DistUpgradeQuirks.py:651 |
2280 | +#: ../DistUpgrade/DistUpgradeQuirks.py:671 |
2281 | msgid "" |
2282 | "Your system does not have a connection to the Snap Store. For the best " |
2283 | "upgrade experience make sure that your system can connect to api.snapcraft." |
2284 | @@ -1155,11 +1155,11 @@ msgid "" |
2285 | "Do you still want to continue with the upgrade?" |
2286 | msgstr "" |
2287 | |
2288 | -#: ../DistUpgrade/DistUpgradeQuirks.py:660 |
2289 | +#: ../DistUpgrade/DistUpgradeQuirks.py:680 |
2290 | msgid "Outdated snapd package" |
2291 | msgstr "" |
2292 | |
2293 | -#: ../DistUpgrade/DistUpgradeQuirks.py:661 |
2294 | +#: ../DistUpgrade/DistUpgradeQuirks.py:681 |
2295 | msgid "" |
2296 | "Your system does not have the latest version of snapd. Please update the " |
2297 | "version of snapd on your system to improve the upgrade experience.\n" |
2298 | @@ -1168,34 +1168,34 @@ msgstr "" |
2299 | |
2300 | #. now perform direct API calls to the store, requesting size |
2301 | #. information for each of the snaps needing installation |
2302 | -#: ../DistUpgrade/DistUpgradeQuirks.py:686 |
2303 | +#: ../DistUpgrade/DistUpgradeQuirks.py:706 |
2304 | msgid "Calculating snap size requirements" |
2305 | msgstr "" |
2306 | |
2307 | -#: ../DistUpgrade/DistUpgradeQuirks.py:717 |
2308 | +#: ../DistUpgrade/DistUpgradeQuirks.py:737 |
2309 | msgid "Processing snap replacements" |
2310 | msgstr "" |
2311 | |
2312 | -#: ../DistUpgrade/DistUpgradeQuirks.py:723 |
2313 | +#: ../DistUpgrade/DistUpgradeQuirks.py:743 |
2314 | #, python-format |
2315 | msgid "refreshing snap %s" |
2316 | msgstr "" |
2317 | |
2318 | -#: ../DistUpgrade/DistUpgradeQuirks.py:727 |
2319 | +#: ../DistUpgrade/DistUpgradeQuirks.py:747 |
2320 | #, python-format |
2321 | msgid "removing snap %s" |
2322 | msgstr "" |
2323 | |
2324 | -#: ../DistUpgrade/DistUpgradeQuirks.py:730 |
2325 | +#: ../DistUpgrade/DistUpgradeQuirks.py:750 |
2326 | #, python-format |
2327 | msgid "installing snap %s" |
2328 | msgstr "" |
2329 | |
2330 | -#: ../DistUpgrade/DistUpgradeQuirks.py:759 |
2331 | +#: ../DistUpgrade/DistUpgradeQuirks.py:779 |
2332 | msgid "PAE not enabled" |
2333 | msgstr "PAE সক্রিয় নয়" |
2334 | |
2335 | -#: ../DistUpgrade/DistUpgradeQuirks.py:760 |
2336 | +#: ../DistUpgrade/DistUpgradeQuirks.py:780 |
2337 | msgid "" |
2338 | "Your system uses a CPU that does not have PAE enabled. Ubuntu only supports " |
2339 | "non-PAE systems up to Ubuntu 12.04. To upgrade to a later version of Ubuntu, " |
2340 | @@ -1203,11 +1203,11 @@ msgid "" |
2341 | "http://help.ubuntu.com/community/EnablingPAE" |
2342 | msgstr "" |
2343 | |
2344 | -#: ../DistUpgrade/DistUpgradeQuirks.py:1056 |
2345 | +#: ../DistUpgrade/DistUpgradeQuirks.py:1076 |
2346 | msgid "universe component not enabled" |
2347 | msgstr "" |
2348 | |
2349 | -#: ../DistUpgrade/DistUpgradeQuirks.py:1057 |
2350 | +#: ../DistUpgrade/DistUpgradeQuirks.py:1077 |
2351 | #, python-format |
2352 | msgid "" |
2353 | "You have the package %s installed which is a python2 package. python2 has " |
2354 | @@ -1219,7 +1219,7 @@ msgid "" |
2355 | "universe component in /etc/apt/sources.list or remove %s" |
2356 | msgstr "" |
2357 | |
2358 | -#: ../DistUpgrade/DistUpgradeQuirks.py:1169 |
2359 | +#: ../DistUpgrade/DistUpgradeQuirks.py:1189 |
2360 | msgid "Checking for installed snaps" |
2361 | msgstr "" |
2362 | |
2363 | diff --git a/po/bo.po b/po/bo.po |
2364 | index 9a51891..e53d404 100644 |
2365 | --- a/po/bo.po |
2366 | +++ b/po/bo.po |
2367 | @@ -8,7 +8,7 @@ msgid "" |
2368 | msgstr "" |
2369 | "Project-Id-Version: update-manager\n" |
2370 | "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" |
2371 | -"POT-Creation-Date: 2023-04-03 16:33+0000\n" |
2372 | +"POT-Creation-Date: 2023-04-12 13:41+0000\n" |
2373 | "PO-Revision-Date: 2013-05-22 11:00+0000\n" |
2374 | "Last-Translator: Brian Murray <brian@ubuntu.com>\n" |
2375 | "Language-Team: Tibetan <bo@li.org>\n" |
2376 | @@ -919,11 +919,11 @@ msgstr "སྒུལ་ཆས་'%2s'ནང་དུ་'%1s'འཇུག་ར |
2377 | msgid "Media Change" |
2378 | msgstr "འཇུག་ཟམ་བརྗེ་བ" |
2379 | |
2380 | -#: ../DistUpgrade/DistUpgradeQuirks.py:237 |
2381 | +#: ../DistUpgrade/DistUpgradeQuirks.py:239 |
2382 | msgid "Your graphics hardware may not be fully supported in Ubuntu 14.04." |
2383 | msgstr "" |
2384 | |
2385 | -#: ../DistUpgrade/DistUpgradeQuirks.py:239 |
2386 | +#: ../DistUpgrade/DistUpgradeQuirks.py:241 |
2387 | msgid "" |
2388 | "Running the 'unity' desktop environment is not fully supported by your " |
2389 | "graphics hardware. You will maybe end up in a very slow environment after " |
2390 | @@ -933,11 +933,11 @@ msgid "" |
2391 | "upgrade?" |
2392 | msgstr "" |
2393 | |
2394 | -#: ../DistUpgrade/DistUpgradeQuirks.py:263 |
2395 | +#: ../DistUpgrade/DistUpgradeQuirks.py:265 |
2396 | msgid "Your graphics hardware may not be fully supported in Ubuntu 12.04 LTS." |
2397 | msgstr "" |
2398 | |
2399 | -#: ../DistUpgrade/DistUpgradeQuirks.py:265 |
2400 | +#: ../DistUpgrade/DistUpgradeQuirks.py:267 |
2401 | msgid "" |
2402 | "The support in Ubuntu 12.04 LTS for your Intel graphics hardware is limited " |
2403 | "and you may encounter problems after the upgrade. For more information see " |
2404 | @@ -945,7 +945,7 @@ msgid "" |
2405 | "continue with the upgrade?" |
2406 | msgstr "" |
2407 | |
2408 | -#: ../DistUpgrade/DistUpgradeQuirks.py:285 |
2409 | +#: ../DistUpgrade/DistUpgradeQuirks.py:287 |
2410 | msgid "" |
2411 | "Upgrading may reduce desktop effects, and performance in games and other " |
2412 | "graphically intensive programs." |
2413 | @@ -953,7 +953,7 @@ msgstr "" |
2414 | "རིམ་སྤོར་གྱིས་མདུན་ངོས་ཀྱི་རྣམ་པ་དང་རྩེད་རིགས་ཀྱི་འགྲོ་སྟངས། པར་རིས་མང་པོ་ཡོད་པའི་བྱ་རིམ་ལ་འགྱུར་ལྡོག་ཡོད་" |
2415 | "ཉེན་ཆེཨ" |
2416 | |
2417 | -#: ../DistUpgrade/DistUpgradeQuirks.py:289 |
2418 | +#: ../DistUpgrade/DistUpgradeQuirks.py:291 |
2419 | msgid "" |
2420 | "This computer is currently using the AMD 'fglrx' graphics driver. No version " |
2421 | "of this driver is available that works with your hardware in Ubuntu 10.04 " |
2422 | @@ -966,12 +966,12 @@ msgstr "" |
2423 | "\n" |
2424 | "ཁྱོད་ཀྱིས་མུ་མཐུད་དགོས་སམ" |
2425 | |
2426 | -#: ../DistUpgrade/DistUpgradeQuirks.py:328 |
2427 | -#: ../DistUpgrade/DistUpgradeQuirks.py:397 |
2428 | +#: ../DistUpgrade/DistUpgradeQuirks.py:330 |
2429 | +#: ../DistUpgrade/DistUpgradeQuirks.py:399 |
2430 | msgid "Sorry, no more upgrades for this system" |
2431 | msgstr "" |
2432 | |
2433 | -#: ../DistUpgrade/DistUpgradeQuirks.py:329 |
2434 | +#: ../DistUpgrade/DistUpgradeQuirks.py:331 |
2435 | #, python-format |
2436 | msgid "" |
2437 | "There will not be any further Ubuntu releases for this system's 'i386' " |
2438 | @@ -980,11 +980,11 @@ msgid "" |
2439 | "Updates for Ubuntu %s will continue until %s." |
2440 | msgstr "" |
2441 | |
2442 | -#: ../DistUpgrade/DistUpgradeQuirks.py:344 |
2443 | +#: ../DistUpgrade/DistUpgradeQuirks.py:346 |
2444 | msgid "No ARMv6 CPU" |
2445 | msgstr "ARMv6 CPU་མེད་པ" |
2446 | |
2447 | -#: ../DistUpgrade/DistUpgradeQuirks.py:345 |
2448 | +#: ../DistUpgrade/DistUpgradeQuirks.py:347 |
2449 | msgid "" |
2450 | "Your system uses an ARM CPU that is older than the ARMv6 architecture. All " |
2451 | "packages in karmic were built with optimizations requiring ARMv6 as the " |
2452 | @@ -996,12 +996,12 @@ msgstr "" |
2453 | "minimal architecture. It is not possible to upgrade your system to a new " |
2454 | "Ubuntu release with this hardware." |
2455 | |
2456 | -#: ../DistUpgrade/DistUpgradeQuirks.py:365 |
2457 | +#: ../DistUpgrade/DistUpgradeQuirks.py:367 |
2458 | msgid "" |
2459 | "Sorry, this storage driver is not supported in kernels for newer releases" |
2460 | msgstr "" |
2461 | |
2462 | -#: ../DistUpgrade/DistUpgradeQuirks.py:367 |
2463 | +#: ../DistUpgrade/DistUpgradeQuirks.py:369 |
2464 | #, python-format |
2465 | msgid "" |
2466 | "There will not be any further Ubuntu releases that provide kernel support " |
2467 | @@ -1011,7 +1011,7 @@ msgid "" |
2468 | "driver, remove the directory %s and try again." |
2469 | msgstr "" |
2470 | |
2471 | -#: ../DistUpgrade/DistUpgradeQuirks.py:398 |
2472 | +#: ../DistUpgrade/DistUpgradeQuirks.py:400 |
2473 | #, python-format |
2474 | msgid "" |
2475 | "There will not be any further Ubuntu releases for this system's POWER8 " |
2476 | @@ -1020,11 +1020,11 @@ msgid "" |
2477 | "Updates for Ubuntu %s will continue until %s." |
2478 | msgstr "" |
2479 | |
2480 | -#: ../DistUpgrade/DistUpgradeQuirks.py:416 |
2481 | +#: ../DistUpgrade/DistUpgradeQuirks.py:418 |
2482 | msgid "No init available" |
2483 | msgstr "init ་མེད་པ" |
2484 | |
2485 | -#: ../DistUpgrade/DistUpgradeQuirks.py:417 |
2486 | +#: ../DistUpgrade/DistUpgradeQuirks.py:419 |
2487 | msgid "" |
2488 | "Your system appears to be a virtualised environment without an init daemon, " |
2489 | "e.g. Linux-VServer. Ubuntu 10.04 LTS cannot function within this type of " |
2490 | @@ -1040,11 +1040,11 @@ msgstr "" |
2491 | "\n" |
2492 | "Are you sure you want to continue?" |
2493 | |
2494 | -#: ../DistUpgrade/DistUpgradeQuirks.py:458 |
2495 | +#: ../DistUpgrade/DistUpgradeQuirks.py:460 |
2496 | msgid "The Robot Operating System (ROS) is installed" |
2497 | msgstr "" |
2498 | |
2499 | -#: ../DistUpgrade/DistUpgradeQuirks.py:459 |
2500 | +#: ../DistUpgrade/DistUpgradeQuirks.py:461 |
2501 | msgid "" |
2502 | "It appears that ROS is currently installed. Each ROS release is very strict " |
2503 | "about the versions of Ubuntu it supports, and Ubuntu upgrades can fail if " |
2504 | @@ -1061,11 +1061,11 @@ msgid "" |
2505 | "Are you sure you want to continue?" |
2506 | msgstr "" |
2507 | |
2508 | -#: ../DistUpgrade/DistUpgradeQuirks.py:634 |
2509 | +#: ../DistUpgrade/DistUpgradeQuirks.py:654 |
2510 | msgid "Connection to the Snap Store failed" |
2511 | msgstr "" |
2512 | |
2513 | -#: ../DistUpgrade/DistUpgradeQuirks.py:635 |
2514 | +#: ../DistUpgrade/DistUpgradeQuirks.py:655 |
2515 | msgid "" |
2516 | "You have the package lxd installed but your system is unable to reach the " |
2517 | "Snap Store. lxd is now provided via a snap and the release upgrade will fail " |
2518 | @@ -1075,11 +1075,11 @@ msgid "" |
2519 | "may want to configure a Snap Store proxy." |
2520 | msgstr "" |
2521 | |
2522 | -#: ../DistUpgrade/DistUpgradeQuirks.py:650 |
2523 | +#: ../DistUpgrade/DistUpgradeQuirks.py:670 |
2524 | msgid "Connection to Snap Store failed" |
2525 | msgstr "" |
2526 | |
2527 | -#: ../DistUpgrade/DistUpgradeQuirks.py:651 |
2528 | +#: ../DistUpgrade/DistUpgradeQuirks.py:671 |
2529 | msgid "" |
2530 | "Your system does not have a connection to the Snap Store. For the best " |
2531 | "upgrade experience make sure that your system can connect to api.snapcraft." |
2532 | @@ -1087,11 +1087,11 @@ msgid "" |
2533 | "Do you still want to continue with the upgrade?" |
2534 | msgstr "" |
2535 | |
2536 | -#: ../DistUpgrade/DistUpgradeQuirks.py:660 |
2537 | +#: ../DistUpgrade/DistUpgradeQuirks.py:680 |
2538 | msgid "Outdated snapd package" |
2539 | msgstr "" |
2540 | |
2541 | -#: ../DistUpgrade/DistUpgradeQuirks.py:661 |
2542 | +#: ../DistUpgrade/DistUpgradeQuirks.py:681 |
2543 | msgid "" |
2544 | "Your system does not have the latest version of snapd. Please update the " |
2545 | "version of snapd on your system to improve the upgrade experience.\n" |
2546 | @@ -1100,34 +1100,34 @@ msgstr "" |
2547 | |
2548 | #. now perform direct API calls to the store, requesting size |
2549 | #. information for each of the snaps needing installation |
2550 | -#: ../DistUpgrade/DistUpgradeQuirks.py:686 |
2551 | +#: ../DistUpgrade/DistUpgradeQuirks.py:706 |
2552 | msgid "Calculating snap size requirements" |
2553 | msgstr "" |
2554 | |
2555 | -#: ../DistUpgrade/DistUpgradeQuirks.py:717 |
2556 | +#: ../DistUpgrade/DistUpgradeQuirks.py:737 |
2557 | msgid "Processing snap replacements" |
2558 | msgstr "" |
2559 | |
2560 | -#: ../DistUpgrade/DistUpgradeQuirks.py:723 |
2561 | +#: ../DistUpgrade/DistUpgradeQuirks.py:743 |
2562 | #, python-format |
2563 | msgid "refreshing snap %s" |
2564 | msgstr "" |
2565 | |
2566 | -#: ../DistUpgrade/DistUpgradeQuirks.py:727 |
2567 | +#: ../DistUpgrade/DistUpgradeQuirks.py:747 |
2568 | #, python-format |
2569 | msgid "removing snap %s" |
2570 | msgstr "" |
2571 | |
2572 | -#: ../DistUpgrade/DistUpgradeQuirks.py:730 |
2573 | +#: ../DistUpgrade/DistUpgradeQuirks.py:750 |
2574 | #, python-format |
2575 | msgid "installing snap %s" |
2576 | msgstr "" |
2577 | |
2578 | -#: ../DistUpgrade/DistUpgradeQuirks.py:759 |
2579 | +#: ../DistUpgrade/DistUpgradeQuirks.py:779 |
2580 | msgid "PAE not enabled" |
2581 | msgstr "" |
2582 | |
2583 | -#: ../DistUpgrade/DistUpgradeQuirks.py:760 |
2584 | +#: ../DistUpgrade/DistUpgradeQuirks.py:780 |
2585 | msgid "" |
2586 | "Your system uses a CPU that does not have PAE enabled. Ubuntu only supports " |
2587 | "non-PAE systems up to Ubuntu 12.04. To upgrade to a later version of Ubuntu, " |
2588 | @@ -1135,11 +1135,11 @@ msgid "" |
2589 | "http://help.ubuntu.com/community/EnablingPAE" |
2590 | msgstr "" |
2591 | |
2592 | -#: ../DistUpgrade/DistUpgradeQuirks.py:1056 |
2593 | +#: ../DistUpgrade/DistUpgradeQuirks.py:1076 |
2594 | msgid "universe component not enabled" |
2595 | msgstr "" |
2596 | |
2597 | -#: ../DistUpgrade/DistUpgradeQuirks.py:1057 |
2598 | +#: ../DistUpgrade/DistUpgradeQuirks.py:1077 |
2599 | #, python-format |
2600 | msgid "" |
2601 | "You have the package %s installed which is a python2 package. python2 has " |
2602 | @@ -1151,7 +1151,7 @@ msgid "" |
2603 | "universe component in /etc/apt/sources.list or remove %s" |
2604 | msgstr "" |
2605 | |
2606 | -#: ../DistUpgrade/DistUpgradeQuirks.py:1169 |
2607 | +#: ../DistUpgrade/DistUpgradeQuirks.py:1189 |
2608 | msgid "Checking for installed snaps" |
2609 | msgstr "" |
2610 | |
2611 | diff --git a/po/br.po b/po/br.po |
2612 | index 0862564..b1f947e 100644 |
2613 | --- a/po/br.po |
2614 | +++ b/po/br.po |
2615 | @@ -8,7 +8,7 @@ msgid "" |
2616 | msgstr "" |
2617 | "Project-Id-Version: update-manager\n" |
2618 | "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" |
2619 | -"POT-Creation-Date: 2023-04-03 16:33+0000\n" |
2620 | +"POT-Creation-Date: 2023-04-12 13:41+0000\n" |
2621 | "PO-Revision-Date: 2013-05-22 11:00+0000\n" |
2622 | "Last-Translator: Brian Murray <brian@ubuntu.com>\n" |
2623 | "Language-Team: Breton <br@li.org>\n" |
2624 | @@ -940,11 +940,11 @@ msgstr "Mar plij, enlakait '%s' el lenner '%s'" |
2625 | msgid "Media Change" |
2626 | msgstr "Kemm ar media" |
2627 | |
2628 | -#: ../DistUpgrade/DistUpgradeQuirks.py:237 |
2629 | +#: ../DistUpgrade/DistUpgradeQuirks.py:239 |
2630 | msgid "Your graphics hardware may not be fully supported in Ubuntu 14.04." |
2631 | msgstr "" |
2632 | |
2633 | -#: ../DistUpgrade/DistUpgradeQuirks.py:239 |
2634 | +#: ../DistUpgrade/DistUpgradeQuirks.py:241 |
2635 | msgid "" |
2636 | "Running the 'unity' desktop environment is not fully supported by your " |
2637 | "graphics hardware. You will maybe end up in a very slow environment after " |
2638 | @@ -954,11 +954,11 @@ msgid "" |
2639 | "upgrade?" |
2640 | msgstr "" |
2641 | |
2642 | -#: ../DistUpgrade/DistUpgradeQuirks.py:263 |
2643 | +#: ../DistUpgrade/DistUpgradeQuirks.py:265 |
2644 | msgid "Your graphics hardware may not be fully supported in Ubuntu 12.04 LTS." |
2645 | msgstr "" |
2646 | |
2647 | -#: ../DistUpgrade/DistUpgradeQuirks.py:265 |
2648 | +#: ../DistUpgrade/DistUpgradeQuirks.py:267 |
2649 | msgid "" |
2650 | "The support in Ubuntu 12.04 LTS for your Intel graphics hardware is limited " |
2651 | "and you may encounter problems after the upgrade. For more information see " |
2652 | @@ -966,7 +966,7 @@ msgid "" |
2653 | "continue with the upgrade?" |
2654 | msgstr "" |
2655 | |
2656 | -#: ../DistUpgrade/DistUpgradeQuirks.py:285 |
2657 | +#: ../DistUpgrade/DistUpgradeQuirks.py:287 |
2658 | msgid "" |
2659 | "Upgrading may reduce desktop effects, and performance in games and other " |
2660 | "graphically intensive programs." |
2661 | @@ -974,7 +974,7 @@ msgstr "" |
2662 | "Dre an hizivaat e vo gwashaet efedoù ar burev marteze, an digonadoù evit ar " |
2663 | "c'hoarioù hag ar gouvlevioù a c'houlenn kalz a-fet kevregadoù." |
2664 | |
2665 | -#: ../DistUpgrade/DistUpgradeQuirks.py:289 |
2666 | +#: ../DistUpgrade/DistUpgradeQuirks.py:291 |
2667 | msgid "" |
2668 | "This computer is currently using the AMD 'fglrx' graphics driver. No version " |
2669 | "of this driver is available that works with your hardware in Ubuntu 10.04 " |
2670 | @@ -988,12 +988,12 @@ msgstr "" |
2671 | "\n" |
2672 | "Ha fellout a ra deoc'h kenderc'hel ?" |
2673 | |
2674 | -#: ../DistUpgrade/DistUpgradeQuirks.py:328 |
2675 | -#: ../DistUpgrade/DistUpgradeQuirks.py:397 |
2676 | +#: ../DistUpgrade/DistUpgradeQuirks.py:330 |
2677 | +#: ../DistUpgrade/DistUpgradeQuirks.py:399 |
2678 | msgid "Sorry, no more upgrades for this system" |
2679 | msgstr "" |
2680 | |
2681 | -#: ../DistUpgrade/DistUpgradeQuirks.py:329 |
2682 | +#: ../DistUpgrade/DistUpgradeQuirks.py:331 |
2683 | #, python-format |
2684 | msgid "" |
2685 | "There will not be any further Ubuntu releases for this system's 'i386' " |
2686 | @@ -1002,11 +1002,11 @@ msgid "" |
2687 | "Updates for Ubuntu %s will continue until %s." |
2688 | msgstr "" |
2689 | |
2690 | -#: ../DistUpgrade/DistUpgradeQuirks.py:344 |
2691 | +#: ../DistUpgrade/DistUpgradeQuirks.py:346 |
2692 | msgid "No ARMv6 CPU" |
2693 | msgstr "Korrgewerier ARMv6 ebet" |
2694 | |
2695 | -#: ../DistUpgrade/DistUpgradeQuirks.py:345 |
2696 | +#: ../DistUpgrade/DistUpgradeQuirks.py:347 |
2697 | msgid "" |
2698 | "Your system uses an ARM CPU that is older than the ARMv6 architecture. All " |
2699 | "packages in karmic were built with optimizations requiring ARMv6 as the " |
2700 | @@ -1018,12 +1018,12 @@ msgstr "" |
2701 | "c'houlenne da gaout ARMv6 evit adeiladezh izek. N'eus ket tro da hizivaat ho " |
2702 | "reizhiad da handelv nevez Ubuntu gant ar periant-mañ." |
2703 | |
2704 | -#: ../DistUpgrade/DistUpgradeQuirks.py:365 |
2705 | +#: ../DistUpgrade/DistUpgradeQuirks.py:367 |
2706 | msgid "" |
2707 | "Sorry, this storage driver is not supported in kernels for newer releases" |
2708 | msgstr "" |
2709 | |
2710 | -#: ../DistUpgrade/DistUpgradeQuirks.py:367 |
2711 | +#: ../DistUpgrade/DistUpgradeQuirks.py:369 |
2712 | #, python-format |
2713 | msgid "" |
2714 | "There will not be any further Ubuntu releases that provide kernel support " |
2715 | @@ -1033,7 +1033,7 @@ msgid "" |
2716 | "driver, remove the directory %s and try again." |
2717 | msgstr "" |
2718 | |
2719 | -#: ../DistUpgrade/DistUpgradeQuirks.py:398 |
2720 | +#: ../DistUpgrade/DistUpgradeQuirks.py:400 |
2721 | #, python-format |
2722 | msgid "" |
2723 | "There will not be any further Ubuntu releases for this system's POWER8 " |
2724 | @@ -1042,12 +1042,12 @@ msgid "" |
2725 | "Updates for Ubuntu %s will continue until %s." |
2726 | msgstr "" |
2727 | |
2728 | -#: ../DistUpgrade/DistUpgradeQuirks.py:416 |
2729 | +#: ../DistUpgrade/DistUpgradeQuirks.py:418 |
2730 | msgid "No init available" |
2731 | msgstr "an deraouekaat n'eo ket hegerz" |
2732 | |
2733 | # daemon : argerzh en drekva |
2734 | -#: ../DistUpgrade/DistUpgradeQuirks.py:417 |
2735 | +#: ../DistUpgrade/DistUpgradeQuirks.py:419 |
2736 | msgid "" |
2737 | "Your system appears to be a virtualised environment without an init daemon, " |
2738 | "e.g. Linux-VServer. Ubuntu 10.04 LTS cannot function within this type of " |
2739 | @@ -1062,11 +1062,11 @@ msgstr "" |
2740 | "gefluniañ galloudel da gentañ.\n" |
2741 | "Ha fellout a ra deoc'h kenderc'hel ?" |
2742 | |
2743 | -#: ../DistUpgrade/DistUpgradeQuirks.py:458 |
2744 | +#: ../DistUpgrade/DistUpgradeQuirks.py:460 |
2745 | msgid "The Robot Operating System (ROS) is installed" |
2746 | msgstr "" |
2747 | |
2748 | -#: ../DistUpgrade/DistUpgradeQuirks.py:459 |
2749 | +#: ../DistUpgrade/DistUpgradeQuirks.py:461 |
2750 | msgid "" |
2751 | "It appears that ROS is currently installed. Each ROS release is very strict " |
2752 | "about the versions of Ubuntu it supports, and Ubuntu upgrades can fail if " |
2753 | @@ -1083,11 +1083,11 @@ msgid "" |
2754 | "Are you sure you want to continue?" |
2755 | msgstr "" |
2756 | |
2757 | -#: ../DistUpgrade/DistUpgradeQuirks.py:634 |
2758 | +#: ../DistUpgrade/DistUpgradeQuirks.py:654 |
2759 | msgid "Connection to the Snap Store failed" |
2760 | msgstr "" |
2761 | |
2762 | -#: ../DistUpgrade/DistUpgradeQuirks.py:635 |
2763 | +#: ../DistUpgrade/DistUpgradeQuirks.py:655 |
2764 | msgid "" |
2765 | "You have the package lxd installed but your system is unable to reach the " |
2766 | "Snap Store. lxd is now provided via a snap and the release upgrade will fail " |
2767 | @@ -1097,11 +1097,11 @@ msgid "" |
2768 | "may want to configure a Snap Store proxy." |
2769 | msgstr "" |
2770 | |
2771 | -#: ../DistUpgrade/DistUpgradeQuirks.py:650 |
2772 | +#: ../DistUpgrade/DistUpgradeQuirks.py:670 |
2773 | msgid "Connection to Snap Store failed" |
2774 | msgstr "" |
2775 | |
2776 | -#: ../DistUpgrade/DistUpgradeQuirks.py:651 |
2777 | +#: ../DistUpgrade/DistUpgradeQuirks.py:671 |
2778 | msgid "" |
2779 | "Your system does not have a connection to the Snap Store. For the best " |
2780 | "upgrade experience make sure that your system can connect to api.snapcraft." |
2781 | @@ -1109,11 +1109,11 @@ msgid "" |
2782 | "Do you still want to continue with the upgrade?" |
2783 | msgstr "" |
2784 | |
2785 | -#: ../DistUpgrade/DistUpgradeQuirks.py:660 |
2786 | +#: ../DistUpgrade/DistUpgradeQuirks.py:680 |
2787 | msgid "Outdated snapd package" |
2788 | msgstr "" |
2789 | |
2790 | -#: ../DistUpgrade/DistUpgradeQuirks.py:661 |
2791 | +#: ../DistUpgrade/DistUpgradeQuirks.py:681 |
2792 | msgid "" |
2793 | "Your system does not have the latest version of snapd. Please update the " |
2794 | "version of snapd on your system to improve the upgrade experience.\n" |
2795 | @@ -1122,34 +1122,34 @@ msgstr "" |
2796 | |
2797 | #. now perform direct API calls to the store, requesting size |
2798 | #. information for each of the snaps needing installation |
2799 | -#: ../DistUpgrade/DistUpgradeQuirks.py:686 |
2800 | +#: ../DistUpgrade/DistUpgradeQuirks.py:706 |
2801 | msgid "Calculating snap size requirements" |
2802 | msgstr "" |
2803 | |
2804 | -#: ../DistUpgrade/DistUpgradeQuirks.py:717 |
2805 | +#: ../DistUpgrade/DistUpgradeQuirks.py:737 |
2806 | msgid "Processing snap replacements" |
2807 | msgstr "" |
2808 | |
2809 | -#: ../DistUpgrade/DistUpgradeQuirks.py:723 |
2810 | +#: ../DistUpgrade/DistUpgradeQuirks.py:743 |
2811 | #, python-format |
2812 | msgid "refreshing snap %s" |
2813 | msgstr "" |
2814 | |
2815 | -#: ../DistUpgrade/DistUpgradeQuirks.py:727 |
2816 | +#: ../DistUpgrade/DistUpgradeQuirks.py:747 |
2817 | #, python-format |
2818 | msgid "removing snap %s" |
2819 | msgstr "" |
2820 | |
2821 | -#: ../DistUpgrade/DistUpgradeQuirks.py:730 |
2822 | +#: ../DistUpgrade/DistUpgradeQuirks.py:750 |
2823 | #, python-format |
2824 | msgid "installing snap %s" |
2825 | msgstr "" |
2826 | |
2827 | -#: ../DistUpgrade/DistUpgradeQuirks.py:759 |
2828 | +#: ../DistUpgrade/DistUpgradeQuirks.py:779 |
2829 | msgid "PAE not enabled" |
2830 | msgstr "" |
2831 | |
2832 | -#: ../DistUpgrade/DistUpgradeQuirks.py:760 |
2833 | +#: ../DistUpgrade/DistUpgradeQuirks.py:780 |
2834 | msgid "" |
2835 | "Your system uses a CPU that does not have PAE enabled. Ubuntu only supports " |
2836 | "non-PAE systems up to Ubuntu 12.04. To upgrade to a later version of Ubuntu, " |
2837 | @@ -1157,11 +1157,11 @@ msgid "" |
2838 | "http://help.ubuntu.com/community/EnablingPAE" |
2839 | msgstr "" |
2840 | |
2841 | -#: ../DistUpgrade/DistUpgradeQuirks.py:1056 |
2842 | +#: ../DistUpgrade/DistUpgradeQuirks.py:1076 |
2843 | msgid "universe component not enabled" |
2844 | msgstr "" |
2845 | |
2846 | -#: ../DistUpgrade/DistUpgradeQuirks.py:1057 |
2847 | +#: ../DistUpgrade/DistUpgradeQuirks.py:1077 |
2848 | #, python-format |
2849 | msgid "" |
2850 | "You have the package %s installed which is a python2 package. python2 has " |
2851 | @@ -1173,7 +1173,7 @@ msgid "" |
2852 | "universe component in /etc/apt/sources.list or remove %s" |
2853 | msgstr "" |
2854 | |
2855 | -#: ../DistUpgrade/DistUpgradeQuirks.py:1169 |
2856 | +#: ../DistUpgrade/DistUpgradeQuirks.py:1189 |
2857 | msgid "Checking for installed snaps" |
2858 | msgstr "" |
2859 | |
2860 | diff --git a/po/bs.po b/po/bs.po |
2861 | index d06c36a..4a784cc 100644 |
2862 | --- a/po/bs.po |
2863 | +++ b/po/bs.po |
2864 | @@ -8,7 +8,7 @@ msgid "" |
2865 | msgstr "" |
2866 | "Project-Id-Version: update-manager\n" |
2867 | "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" |
2868 | -"POT-Creation-Date: 2023-04-03 16:33+0000\n" |
2869 | +"POT-Creation-Date: 2023-04-12 13:41+0000\n" |
2870 | "PO-Revision-Date: 2019-06-18 17:53+0000\n" |
2871 | "Last-Translator: Brian Murray <brian@ubuntu.com>\n" |
2872 | "Language-Team: Bosnian <bs@li.org>\n" |
2873 | @@ -1027,13 +1027,13 @@ msgstr "Molim, ubacite '%s' u uređaj '%s'" |
2874 | msgid "Media Change" |
2875 | msgstr "Izmjena Medija" |
2876 | |
2877 | -#: ../DistUpgrade/DistUpgradeQuirks.py:237 |
2878 | +#: ../DistUpgrade/DistUpgradeQuirks.py:239 |
2879 | msgid "Your graphics hardware may not be fully supported in Ubuntu 14.04." |
2880 | msgstr "" |
2881 | "Postoji mogućnost da vaš grafički hardver ne bude u potpunosti podržan na " |
2882 | "Ubuntu 14.04." |
2883 | |
2884 | -#: ../DistUpgrade/DistUpgradeQuirks.py:239 |
2885 | +#: ../DistUpgrade/DistUpgradeQuirks.py:241 |
2886 | msgid "" |
2887 | "Running the 'unity' desktop environment is not fully supported by your " |
2888 | "graphics hardware. You will maybe end up in a very slow environment after " |
2889 | @@ -1047,11 +1047,11 @@ msgstr "" |
2890 | "sačuvate LTS verziju. Za više informacija pogledajte https://wiki.ubuntu.com/" |
2891 | "X/Bugs/UpdateManagerWarningForUnity3D Želite li nastaviti s nadogradnjom?" |
2892 | |
2893 | -#: ../DistUpgrade/DistUpgradeQuirks.py:263 |
2894 | +#: ../DistUpgrade/DistUpgradeQuirks.py:265 |
2895 | msgid "Your graphics hardware may not be fully supported in Ubuntu 12.04 LTS." |
2896 | msgstr "Vaš grafički hardver možda nije potpuno podržan u Ubuntu 12.04 LTS." |
2897 | |
2898 | -#: ../DistUpgrade/DistUpgradeQuirks.py:265 |
2899 | +#: ../DistUpgrade/DistUpgradeQuirks.py:267 |
2900 | msgid "" |
2901 | "The support in Ubuntu 12.04 LTS for your Intel graphics hardware is limited " |
2902 | "and you may encounter problems after the upgrade. For more information see " |
2903 | @@ -1063,7 +1063,7 @@ msgstr "" |
2904 | "wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForI8xx Želite li nastaviti sa " |
2905 | "nadogradnjom?" |
2906 | |
2907 | -#: ../DistUpgrade/DistUpgradeQuirks.py:285 |
2908 | +#: ../DistUpgrade/DistUpgradeQuirks.py:287 |
2909 | msgid "" |
2910 | "Upgrading may reduce desktop effects, and performance in games and other " |
2911 | "graphically intensive programs." |
2912 | @@ -1071,7 +1071,7 @@ msgstr "" |
2913 | "Nadogradnja može reducirati desktop efekte i učinak u igrama i drugim " |
2914 | "grafički zahtjevnim programima." |
2915 | |
2916 | -#: ../DistUpgrade/DistUpgradeQuirks.py:289 |
2917 | +#: ../DistUpgrade/DistUpgradeQuirks.py:291 |
2918 | msgid "" |
2919 | "This computer is currently using the AMD 'fglrx' graphics driver. No version " |
2920 | "of this driver is available that works with your hardware in Ubuntu 10.04 " |
2921 | @@ -1084,12 +1084,12 @@ msgstr "" |
2922 | "\n" |
2923 | "Da li želite da nastavite?" |
2924 | |
2925 | -#: ../DistUpgrade/DistUpgradeQuirks.py:328 |
2926 | -#: ../DistUpgrade/DistUpgradeQuirks.py:397 |
2927 | +#: ../DistUpgrade/DistUpgradeQuirks.py:330 |
2928 | +#: ../DistUpgrade/DistUpgradeQuirks.py:399 |
2929 | msgid "Sorry, no more upgrades for this system" |
2930 | msgstr "" |
2931 | |
2932 | -#: ../DistUpgrade/DistUpgradeQuirks.py:329 |
2933 | +#: ../DistUpgrade/DistUpgradeQuirks.py:331 |
2934 | #, python-format |
2935 | msgid "" |
2936 | "There will not be any further Ubuntu releases for this system's 'i386' " |
2937 | @@ -1098,11 +1098,11 @@ msgid "" |
2938 | "Updates for Ubuntu %s will continue until %s." |
2939 | msgstr "" |
2940 | |
2941 | -#: ../DistUpgrade/DistUpgradeQuirks.py:344 |
2942 | +#: ../DistUpgrade/DistUpgradeQuirks.py:346 |
2943 | msgid "No ARMv6 CPU" |
2944 | msgstr "Nema ARMv6 procesora" |
2945 | |
2946 | -#: ../DistUpgrade/DistUpgradeQuirks.py:345 |
2947 | +#: ../DistUpgrade/DistUpgradeQuirks.py:347 |
2948 | msgid "" |
2949 | "Your system uses an ARM CPU that is older than the ARMv6 architecture. All " |
2950 | "packages in karmic were built with optimizations requiring ARMv6 as the " |
2951 | @@ -1114,12 +1114,12 @@ msgstr "" |
2952 | "minimalnu arhitekturu. Nije moguće nadograditi vaš sistem na novo Ubuntu " |
2953 | "izdanje sa ovim hardverom." |
2954 | |
2955 | -#: ../DistUpgrade/DistUpgradeQuirks.py:365 |
2956 | +#: ../DistUpgrade/DistUpgradeQuirks.py:367 |
2957 | msgid "" |
2958 | "Sorry, this storage driver is not supported in kernels for newer releases" |
2959 | msgstr "" |
2960 | |
2961 | -#: ../DistUpgrade/DistUpgradeQuirks.py:367 |
2962 | +#: ../DistUpgrade/DistUpgradeQuirks.py:369 |
2963 | #, python-format |
2964 | msgid "" |
2965 | "There will not be any further Ubuntu releases that provide kernel support " |
2966 | @@ -1129,7 +1129,7 @@ msgid "" |
2967 | "driver, remove the directory %s and try again." |
2968 | msgstr "" |
2969 | |
2970 | -#: ../DistUpgrade/DistUpgradeQuirks.py:398 |
2971 | +#: ../DistUpgrade/DistUpgradeQuirks.py:400 |
2972 | #, python-format |
2973 | msgid "" |
2974 | "There will not be any further Ubuntu releases for this system's POWER8 " |
2975 | @@ -1138,11 +1138,11 @@ msgid "" |
2976 | "Updates for Ubuntu %s will continue until %s." |
2977 | msgstr "" |
2978 | |
2979 | -#: ../DistUpgrade/DistUpgradeQuirks.py:416 |
2980 | +#: ../DistUpgrade/DistUpgradeQuirks.py:418 |
2981 | msgid "No init available" |
2982 | msgstr "init nije dostupan" |
2983 | |
2984 | -#: ../DistUpgrade/DistUpgradeQuirks.py:417 |
2985 | +#: ../DistUpgrade/DistUpgradeQuirks.py:419 |
2986 | msgid "" |
2987 | "Your system appears to be a virtualised environment without an init daemon, " |
2988 | "e.g. Linux-VServer. Ubuntu 10.04 LTS cannot function within this type of " |
2989 | @@ -1157,11 +1157,11 @@ msgstr "" |
2990 | "\n" |
2991 | "Da li ste sigurni da želite na nastavite?" |
2992 | |
2993 | -#: ../DistUpgrade/DistUpgradeQuirks.py:458 |
2994 | +#: ../DistUpgrade/DistUpgradeQuirks.py:460 |
2995 | msgid "The Robot Operating System (ROS) is installed" |
2996 | msgstr "" |
2997 | |
2998 | -#: ../DistUpgrade/DistUpgradeQuirks.py:459 |
2999 | +#: ../DistUpgrade/DistUpgradeQuirks.py:461 |
3000 | msgid "" |
3001 | "It appears that ROS is currently installed. Each ROS release is very strict " |
3002 | "about the versions of Ubuntu it supports, and Ubuntu upgrades can fail if " |
3003 | @@ -1178,11 +1178,11 @@ msgid "" |
3004 | "Are you sure you want to continue?" |
3005 | msgstr "" |
3006 | |
3007 | -#: ../DistUpgrade/DistUpgradeQuirks.py:634 |
3008 | +#: ../DistUpgrade/DistUpgradeQuirks.py:654 |
3009 | msgid "Connection to the Snap Store failed" |
3010 | msgstr "" |
3011 | |
3012 | -#: ../DistUpgrade/DistUpgradeQuirks.py:635 |
3013 | +#: ../DistUpgrade/DistUpgradeQuirks.py:655 |
3014 | msgid "" |
3015 | "You have the package lxd installed but your system is unable to reach the " |
3016 | "Snap Store. lxd is now provided via a snap and the release upgrade will fail " |
3017 | @@ -1192,11 +1192,11 @@ msgid "" |
3018 | "may want to configure a Snap Store proxy." |
3019 | msgstr "" |
3020 | |
3021 | -#: ../DistUpgrade/DistUpgradeQuirks.py:650 |
3022 | +#: ../DistUpgrade/DistUpgradeQuirks.py:670 |
3023 | msgid "Connection to Snap Store failed" |
3024 | msgstr "" |
3025 | |
3026 | -#: ../DistUpgrade/DistUpgradeQuirks.py:651 |
3027 | +#: ../DistUpgrade/DistUpgradeQuirks.py:671 |
3028 | msgid "" |
3029 | "Your system does not have a connection to the Snap Store. For the best " |
3030 | "upgrade experience make sure that your system can connect to api.snapcraft." |
3031 | @@ -1204,11 +1204,11 @@ msgid "" |
3032 | "Do you still want to continue with the upgrade?" |
3033 | msgstr "" |
3034 | |
3035 | -#: ../DistUpgrade/DistUpgradeQuirks.py:660 |
3036 | +#: ../DistUpgrade/DistUpgradeQuirks.py:680 |
3037 | msgid "Outdated snapd package" |
3038 | msgstr "" |
3039 | |
3040 | -#: ../DistUpgrade/DistUpgradeQuirks.py:661 |
3041 | +#: ../DistUpgrade/DistUpgradeQuirks.py:681 |
3042 | msgid "" |
3043 | "Your system does not have the latest version of snapd. Please update the " |
3044 | "version of snapd on your system to improve the upgrade experience.\n" |
3045 | @@ -1217,34 +1217,34 @@ msgstr "" |
3046 | |
3047 | #. now perform direct API calls to the store, requesting size |
3048 | #. information for each of the snaps needing installation |
3049 | -#: ../DistUpgrade/DistUpgradeQuirks.py:686 |
3050 | +#: ../DistUpgrade/DistUpgradeQuirks.py:706 |
3051 | msgid "Calculating snap size requirements" |
3052 | msgstr "" |
3053 | |
3054 | -#: ../DistUpgrade/DistUpgradeQuirks.py:717 |
3055 | +#: ../DistUpgrade/DistUpgradeQuirks.py:737 |
3056 | msgid "Processing snap replacements" |
3057 | msgstr "" |
3058 | |
3059 | -#: ../DistUpgrade/DistUpgradeQuirks.py:723 |
3060 | +#: ../DistUpgrade/DistUpgradeQuirks.py:743 |
3061 | #, python-format |
3062 | msgid "refreshing snap %s" |
3063 | msgstr "" |
3064 | |
3065 | -#: ../DistUpgrade/DistUpgradeQuirks.py:727 |
3066 | +#: ../DistUpgrade/DistUpgradeQuirks.py:747 |
3067 | #, python-format |
3068 | msgid "removing snap %s" |
3069 | msgstr "" |
3070 | |
3071 | -#: ../DistUpgrade/DistUpgradeQuirks.py:730 |
3072 | +#: ../DistUpgrade/DistUpgradeQuirks.py:750 |
3073 | #, python-format |
3074 | msgid "installing snap %s" |
3075 | msgstr "" |
3076 | |
3077 | -#: ../DistUpgrade/DistUpgradeQuirks.py:759 |
3078 | +#: ../DistUpgrade/DistUpgradeQuirks.py:779 |
3079 | msgid "PAE not enabled" |
3080 | msgstr "PAE nije uključen" |
3081 | |
3082 | -#: ../DistUpgrade/DistUpgradeQuirks.py:760 |
3083 | +#: ../DistUpgrade/DistUpgradeQuirks.py:780 |
3084 | msgid "" |
3085 | "Your system uses a CPU that does not have PAE enabled. Ubuntu only supports " |
3086 | "non-PAE systems up to Ubuntu 12.04. To upgrade to a later version of Ubuntu, " |
3087 | @@ -1256,11 +1256,11 @@ msgstr "" |
3088 | "omogućiti PAE (ako je to moguće) vidi:\n" |
3089 | "http://help.ubuntu.com/community/EnablingPAE" |
3090 | |
3091 | -#: ../DistUpgrade/DistUpgradeQuirks.py:1056 |
3092 | +#: ../DistUpgrade/DistUpgradeQuirks.py:1076 |
3093 | msgid "universe component not enabled" |
3094 | msgstr "" |
3095 | |
3096 | -#: ../DistUpgrade/DistUpgradeQuirks.py:1057 |
3097 | +#: ../DistUpgrade/DistUpgradeQuirks.py:1077 |
3098 | #, python-format |
3099 | msgid "" |
3100 | "You have the package %s installed which is a python2 package. python2 has " |
3101 | @@ -1272,7 +1272,7 @@ msgid "" |
3102 | "universe component in /etc/apt/sources.list or remove %s" |
3103 | msgstr "" |
3104 | |
3105 | -#: ../DistUpgrade/DistUpgradeQuirks.py:1169 |
3106 | +#: ../DistUpgrade/DistUpgradeQuirks.py:1189 |
3107 | msgid "Checking for installed snaps" |
3108 | msgstr "" |
3109 | |
3110 | diff --git a/po/ca.po b/po/ca.po |
3111 | index e042928..f65ab6c 100644 |
3112 | --- a/po/ca.po |
3113 | +++ b/po/ca.po |
3114 | @@ -8,7 +8,7 @@ msgid "" |
3115 | msgstr "" |
3116 | "Project-Id-Version: update-manager\n" |
3117 | "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" |
3118 | -"POT-Creation-Date: 2023-04-03 16:33+0000\n" |
3119 | +"POT-Creation-Date: 2023-04-12 13:41+0000\n" |
3120 | "PO-Revision-Date: 2019-06-18 17:52+0000\n" |
3121 | "Last-Translator: Walter Garcia-Fontes <walter.garcia@upf.edu>\n" |
3122 | "Language-Team: Catalan <tradgnome@softcatala.org>\n" |
3123 | @@ -1038,12 +1038,12 @@ msgstr "Inseriu «%s» a la unitat «%s»" |
3124 | msgid "Media Change" |
3125 | msgstr "Canvi de suport" |
3126 | |
3127 | -#: ../DistUpgrade/DistUpgradeQuirks.py:237 |
3128 | +#: ../DistUpgrade/DistUpgradeQuirks.py:239 |
3129 | msgid "Your graphics hardware may not be fully supported in Ubuntu 14.04." |
3130 | msgstr "" |
3131 | "Pot ser que el vostre maquinari de gràfics no funcioni bé amb l'Ubuntu 14.04." |
3132 | |
3133 | -#: ../DistUpgrade/DistUpgradeQuirks.py:239 |
3134 | +#: ../DistUpgrade/DistUpgradeQuirks.py:241 |
3135 | msgid "" |
3136 | "Running the 'unity' desktop environment is not fully supported by your " |
3137 | "graphics hardware. You will maybe end up in a very slow environment after " |
3138 | @@ -1059,13 +1059,13 @@ msgstr "" |
3139 | "UpdateManagerWarningForUnity3D. Tot i això, voleu continuar amb " |
3140 | "l'actualització?" |
3141 | |
3142 | -#: ../DistUpgrade/DistUpgradeQuirks.py:263 |
3143 | +#: ../DistUpgrade/DistUpgradeQuirks.py:265 |
3144 | msgid "Your graphics hardware may not be fully supported in Ubuntu 12.04 LTS." |
3145 | msgstr "" |
3146 | "Sembla que el vostre maquinari gràfic no és totalment compatible amb " |
3147 | "l'Ubuntu 12.04 LTS." |
3148 | |
3149 | -#: ../DistUpgrade/DistUpgradeQuirks.py:265 |
3150 | +#: ../DistUpgrade/DistUpgradeQuirks.py:267 |
3151 | msgid "" |
3152 | "The support in Ubuntu 12.04 LTS for your Intel graphics hardware is limited " |
3153 | "and you may encounter problems after the upgrade. For more information see " |
3154 | @@ -1077,7 +1077,7 @@ msgstr "" |
3155 | "informació visiteu https://wiki.ubuntu.com/X/Bugs/" |
3156 | "UpdateManagerWarningForI8xx. Voleu continuar amb l'actualització?" |
3157 | |
3158 | -#: ../DistUpgrade/DistUpgradeQuirks.py:285 |
3159 | +#: ../DistUpgrade/DistUpgradeQuirks.py:287 |
3160 | msgid "" |
3161 | "Upgrading may reduce desktop effects, and performance in games and other " |
3162 | "graphically intensive programs." |
3163 | @@ -1085,7 +1085,7 @@ msgstr "" |
3164 | "L'actualització pot reduir els efectes d'escriptori i el rendiment en jocs i " |
3165 | "altres programes que facin un ús exhaustiu de processament gràfic." |
3166 | |
3167 | -#: ../DistUpgrade/DistUpgradeQuirks.py:289 |
3168 | +#: ../DistUpgrade/DistUpgradeQuirks.py:291 |
3169 | msgid "" |
3170 | "This computer is currently using the AMD 'fglrx' graphics driver. No version " |
3171 | "of this driver is available that works with your hardware in Ubuntu 10.04 " |
3172 | @@ -1099,12 +1099,12 @@ msgstr "" |
3173 | "\n" |
3174 | "Voleu continuar?" |
3175 | |
3176 | -#: ../DistUpgrade/DistUpgradeQuirks.py:328 |
3177 | -#: ../DistUpgrade/DistUpgradeQuirks.py:397 |
3178 | +#: ../DistUpgrade/DistUpgradeQuirks.py:330 |
3179 | +#: ../DistUpgrade/DistUpgradeQuirks.py:399 |
3180 | msgid "Sorry, no more upgrades for this system" |
3181 | msgstr "" |
3182 | |
3183 | -#: ../DistUpgrade/DistUpgradeQuirks.py:329 |
3184 | +#: ../DistUpgrade/DistUpgradeQuirks.py:331 |
3185 | #, python-format |
3186 | msgid "" |
3187 | "There will not be any further Ubuntu releases for this system's 'i386' " |
3188 | @@ -1113,11 +1113,11 @@ msgid "" |
3189 | "Updates for Ubuntu %s will continue until %s." |
3190 | msgstr "" |
3191 | |
3192 | -#: ../DistUpgrade/DistUpgradeQuirks.py:344 |
3193 | +#: ../DistUpgrade/DistUpgradeQuirks.py:346 |
3194 | msgid "No ARMv6 CPU" |
3195 | msgstr "No és una CPU ARMv6" |
3196 | |
3197 | -#: ../DistUpgrade/DistUpgradeQuirks.py:345 |
3198 | +#: ../DistUpgrade/DistUpgradeQuirks.py:347 |
3199 | msgid "" |
3200 | "Your system uses an ARM CPU that is older than the ARMv6 architecture. All " |
3201 | "packages in karmic were built with optimizations requiring ARMv6 as the " |
3202 | @@ -1129,12 +1129,12 @@ msgstr "" |
3203 | "requereixen l'ARMv6 com a arquitectura mínima. No és possible actualitzar el " |
3204 | "vostre sistema a una versió nova de l'Ubuntu amb aquest maquinari." |
3205 | |
3206 | -#: ../DistUpgrade/DistUpgradeQuirks.py:365 |
3207 | +#: ../DistUpgrade/DistUpgradeQuirks.py:367 |
3208 | msgid "" |
3209 | "Sorry, this storage driver is not supported in kernels for newer releases" |
3210 | msgstr "" |
3211 | |
3212 | -#: ../DistUpgrade/DistUpgradeQuirks.py:367 |
3213 | +#: ../DistUpgrade/DistUpgradeQuirks.py:369 |
3214 | #, python-format |
3215 | msgid "" |
3216 | "There will not be any further Ubuntu releases that provide kernel support " |
3217 | @@ -1144,7 +1144,7 @@ msgid "" |
3218 | "driver, remove the directory %s and try again." |
3219 | msgstr "" |
3220 | |
3221 | -#: ../DistUpgrade/DistUpgradeQuirks.py:398 |
3222 | +#: ../DistUpgrade/DistUpgradeQuirks.py:400 |
3223 | #, python-format |
3224 | msgid "" |
3225 | "There will not be any further Ubuntu releases for this system's POWER8 " |
3226 | @@ -1153,11 +1153,11 @@ msgid "" |
3227 | "Updates for Ubuntu %s will continue until %s." |
3228 | msgstr "" |
3229 | |
3230 | -#: ../DistUpgrade/DistUpgradeQuirks.py:416 |
3231 | +#: ../DistUpgrade/DistUpgradeQuirks.py:418 |
3232 | msgid "No init available" |
3233 | msgstr "No hi ha cap sistema d'inicialització disponible" |
3234 | |
3235 | -#: ../DistUpgrade/DistUpgradeQuirks.py:417 |
3236 | +#: ../DistUpgrade/DistUpgradeQuirks.py:419 |
3237 | msgid "" |
3238 | "Your system appears to be a virtualised environment without an init daemon, " |
3239 | "e.g. Linux-VServer. Ubuntu 10.04 LTS cannot function within this type of " |
3240 | @@ -1173,11 +1173,11 @@ msgstr "" |
3241 | "\n" |
3242 | "Esteu segur que voleu continuar?" |
3243 | |
3244 | -#: ../DistUpgrade/DistUpgradeQuirks.py:458 |
3245 | +#: ../DistUpgrade/DistUpgradeQuirks.py:460 |
3246 | msgid "The Robot Operating System (ROS) is installed" |
3247 | msgstr "" |
3248 | |
3249 | -#: ../DistUpgrade/DistUpgradeQuirks.py:459 |
3250 | +#: ../DistUpgrade/DistUpgradeQuirks.py:461 |
3251 | msgid "" |
3252 | "It appears that ROS is currently installed. Each ROS release is very strict " |
3253 | "about the versions of Ubuntu it supports, and Ubuntu upgrades can fail if " |
3254 | @@ -1194,12 +1194,12 @@ msgid "" |
3255 | "Are you sure you want to continue?" |
3256 | msgstr "" |
3257 | |
3258 | -#: ../DistUpgrade/DistUpgradeQuirks.py:634 |
3259 | +#: ../DistUpgrade/DistUpgradeQuirks.py:654 |
3260 | #, fuzzy |
3261 | msgid "Connection to the Snap Store failed" |
3262 | msgstr "Ha fallat la connexió a la Botiga Snap" |
3263 | |
3264 | -#: ../DistUpgrade/DistUpgradeQuirks.py:635 |
3265 | +#: ../DistUpgrade/DistUpgradeQuirks.py:655 |
3266 | msgid "" |
3267 | "You have the package lxd installed but your system is unable to reach the " |
3268 | "Snap Store. lxd is now provided via a snap and the release upgrade will fail " |
3269 | @@ -1209,11 +1209,11 @@ msgid "" |
3270 | "may want to configure a Snap Store proxy." |
3271 | msgstr "" |
3272 | |
3273 | -#: ../DistUpgrade/DistUpgradeQuirks.py:650 |
3274 | +#: ../DistUpgrade/DistUpgradeQuirks.py:670 |
3275 | msgid "Connection to Snap Store failed" |
3276 | msgstr "Ha fallat la connexió a la Botiga Snap" |
3277 | |
3278 | -#: ../DistUpgrade/DistUpgradeQuirks.py:651 |
3279 | +#: ../DistUpgrade/DistUpgradeQuirks.py:671 |
3280 | msgid "" |
3281 | "Your system does not have a connection to the Snap Store. For the best " |
3282 | "upgrade experience make sure that your system can connect to api.snapcraft." |
3283 | @@ -1225,11 +1225,11 @@ msgstr "" |
3284 | "a api.snapcraft.io.\n" |
3285 | "Encara voleu continuar amb l'actualització?" |
3286 | |
3287 | -#: ../DistUpgrade/DistUpgradeQuirks.py:660 |
3288 | +#: ../DistUpgrade/DistUpgradeQuirks.py:680 |
3289 | msgid "Outdated snapd package" |
3290 | msgstr "Paquet snapd desactualitzat" |
3291 | |
3292 | -#: ../DistUpgrade/DistUpgradeQuirks.py:661 |
3293 | +#: ../DistUpgrade/DistUpgradeQuirks.py:681 |
3294 | msgid "" |
3295 | "Your system does not have the latest version of snapd. Please update the " |
3296 | "version of snapd on your system to improve the upgrade experience.\n" |
3297 | @@ -1242,34 +1242,34 @@ msgstr "" |
3298 | |
3299 | #. now perform direct API calls to the store, requesting size |
3300 | #. information for each of the snaps needing installation |
3301 | -#: ../DistUpgrade/DistUpgradeQuirks.py:686 |
3302 | +#: ../DistUpgrade/DistUpgradeQuirks.py:706 |
3303 | msgid "Calculating snap size requirements" |
3304 | msgstr "" |
3305 | |
3306 | -#: ../DistUpgrade/DistUpgradeQuirks.py:717 |
3307 | +#: ../DistUpgrade/DistUpgradeQuirks.py:737 |
3308 | msgid "Processing snap replacements" |
3309 | msgstr "" |
3310 | |
3311 | -#: ../DistUpgrade/DistUpgradeQuirks.py:723 |
3312 | +#: ../DistUpgrade/DistUpgradeQuirks.py:743 |
3313 | #, python-format |
3314 | msgid "refreshing snap %s" |
3315 | msgstr "" |
3316 | |
3317 | -#: ../DistUpgrade/DistUpgradeQuirks.py:727 |
3318 | +#: ../DistUpgrade/DistUpgradeQuirks.py:747 |
3319 | #, python-format |
3320 | msgid "removing snap %s" |
3321 | msgstr "" |
3322 | |
3323 | -#: ../DistUpgrade/DistUpgradeQuirks.py:730 |
3324 | +#: ../DistUpgrade/DistUpgradeQuirks.py:750 |
3325 | #, python-format |
3326 | msgid "installing snap %s" |
3327 | msgstr "" |
3328 | |
3329 | -#: ../DistUpgrade/DistUpgradeQuirks.py:759 |
3330 | +#: ../DistUpgrade/DistUpgradeQuirks.py:779 |
3331 | msgid "PAE not enabled" |
3332 | msgstr "El PAE no està habilitat" |
3333 | |
3334 | -#: ../DistUpgrade/DistUpgradeQuirks.py:760 |
3335 | +#: ../DistUpgrade/DistUpgradeQuirks.py:780 |
3336 | msgid "" |
3337 | "Your system uses a CPU that does not have PAE enabled. Ubuntu only supports " |
3338 | "non-PAE systems up to Ubuntu 12.04. To upgrade to a later version of Ubuntu, " |
3339 | @@ -1282,11 +1282,11 @@ msgstr "" |
3340 | "Consulteu la documentació següent per obtenir més informació:\n" |
3341 | "http://help.ubuntu.com/community/EnablingPAE" |
3342 | |
3343 | -#: ../DistUpgrade/DistUpgradeQuirks.py:1056 |
3344 | +#: ../DistUpgrade/DistUpgradeQuirks.py:1076 |
3345 | msgid "universe component not enabled" |
3346 | msgstr "" |
3347 | |
3348 | -#: ../DistUpgrade/DistUpgradeQuirks.py:1057 |
3349 | +#: ../DistUpgrade/DistUpgradeQuirks.py:1077 |
3350 | #, python-format |
3351 | msgid "" |
3352 | "You have the package %s installed which is a python2 package. python2 has " |
3353 | @@ -1298,7 +1298,7 @@ msgid "" |
3354 | "universe component in /etc/apt/sources.list or remove %s" |
3355 | msgstr "" |
3356 | |
3357 | -#: ../DistUpgrade/DistUpgradeQuirks.py:1169 |
3358 | +#: ../DistUpgrade/DistUpgradeQuirks.py:1189 |
3359 | msgid "Checking for installed snaps" |
3360 | msgstr "S'està comprovant si hi ha snaps instal·lats" |
3361 | |
3362 | diff --git a/po/ca@valencia.po b/po/ca@valencia.po |
3363 | index 0b1da41..2dfb45b 100644 |
3364 | --- a/po/ca@valencia.po |
3365 | +++ b/po/ca@valencia.po |
3366 | @@ -8,7 +8,7 @@ msgid "" |
3367 | msgstr "" |
3368 | "Project-Id-Version: update-manager\n" |
3369 | "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" |
3370 | -"POT-Creation-Date: 2023-04-03 16:33+0000\n" |
3371 | +"POT-Creation-Date: 2023-04-12 13:41+0000\n" |
3372 | "PO-Revision-Date: 2013-05-22 11:00+0000\n" |
3373 | "Last-Translator: Joan Duran <jodufi@gmail.com>\n" |
3374 | "Language-Team: Catalan <tradgnome@softcatala.org>\n" |
3375 | @@ -969,12 +969,12 @@ msgstr "Inseriu «%s» a la unitat «%s»" |
3376 | msgid "Media Change" |
3377 | msgstr "Canvi de suport" |
3378 | |
3379 | -#: ../DistUpgrade/DistUpgradeQuirks.py:237 |
3380 | +#: ../DistUpgrade/DistUpgradeQuirks.py:239 |
3381 | msgid "Your graphics hardware may not be fully supported in Ubuntu 14.04." |
3382 | msgstr "" |
3383 | "Pot ser que el vostre maquinari de gràfics no funcione bé amb l'Ubuntu 14.04." |
3384 | |
3385 | -#: ../DistUpgrade/DistUpgradeQuirks.py:239 |
3386 | +#: ../DistUpgrade/DistUpgradeQuirks.py:241 |
3387 | msgid "" |
3388 | "Running the 'unity' desktop environment is not fully supported by your " |
3389 | "graphics hardware. You will maybe end up in a very slow environment after " |
3390 | @@ -984,11 +984,11 @@ msgid "" |
3391 | "upgrade?" |
3392 | msgstr "" |
3393 | |
3394 | -#: ../DistUpgrade/DistUpgradeQuirks.py:263 |
3395 | +#: ../DistUpgrade/DistUpgradeQuirks.py:265 |
3396 | msgid "Your graphics hardware may not be fully supported in Ubuntu 12.04 LTS." |
3397 | msgstr "" |
3398 | |
3399 | -#: ../DistUpgrade/DistUpgradeQuirks.py:265 |
3400 | +#: ../DistUpgrade/DistUpgradeQuirks.py:267 |
3401 | msgid "" |
3402 | "The support in Ubuntu 12.04 LTS for your Intel graphics hardware is limited " |
3403 | "and you may encounter problems after the upgrade. For more information see " |
3404 | @@ -996,7 +996,7 @@ msgid "" |
3405 | "continue with the upgrade?" |
3406 | msgstr "" |
3407 | |
3408 | -#: ../DistUpgrade/DistUpgradeQuirks.py:285 |
3409 | +#: ../DistUpgrade/DistUpgradeQuirks.py:287 |
3410 | msgid "" |
3411 | "Upgrading may reduce desktop effects, and performance in games and other " |
3412 | "graphically intensive programs." |
3413 | @@ -1004,7 +1004,7 @@ msgstr "" |
3414 | "L'actualització pot reduir els efectes d'escriptori i el rendiment en jocs i " |
3415 | "altres programes que facen un ús exhaustiu de processament gràfic." |
3416 | |
3417 | -#: ../DistUpgrade/DistUpgradeQuirks.py:289 |
3418 | +#: ../DistUpgrade/DistUpgradeQuirks.py:291 |
3419 | msgid "" |
3420 | "This computer is currently using the AMD 'fglrx' graphics driver. No version " |
3421 | "of this driver is available that works with your hardware in Ubuntu 10.04 " |
3422 | @@ -1018,12 +1018,12 @@ msgstr "" |
3423 | "\n" |
3424 | "Voleu continuar?" |
3425 | |
3426 | -#: ../DistUpgrade/DistUpgradeQuirks.py:328 |
3427 | -#: ../DistUpgrade/DistUpgradeQuirks.py:397 |
3428 | +#: ../DistUpgrade/DistUpgradeQuirks.py:330 |
3429 | +#: ../DistUpgrade/DistUpgradeQuirks.py:399 |
3430 | msgid "Sorry, no more upgrades for this system" |
3431 | msgstr "" |
3432 | |
3433 | -#: ../DistUpgrade/DistUpgradeQuirks.py:329 |
3434 | +#: ../DistUpgrade/DistUpgradeQuirks.py:331 |
3435 | #, python-format |
3436 | msgid "" |
3437 | "There will not be any further Ubuntu releases for this system's 'i386' " |
3438 | @@ -1032,11 +1032,11 @@ msgid "" |
3439 | "Updates for Ubuntu %s will continue until %s." |
3440 | msgstr "" |
3441 | |
3442 | -#: ../DistUpgrade/DistUpgradeQuirks.py:344 |
3443 | +#: ../DistUpgrade/DistUpgradeQuirks.py:346 |
3444 | msgid "No ARMv6 CPU" |
3445 | msgstr "No és una CPU ARMv6" |
3446 | |
3447 | -#: ../DistUpgrade/DistUpgradeQuirks.py:345 |
3448 | +#: ../DistUpgrade/DistUpgradeQuirks.py:347 |
3449 | msgid "" |
3450 | "Your system uses an ARM CPU that is older than the ARMv6 architecture. All " |
3451 | "packages in karmic were built with optimizations requiring ARMv6 as the " |
3452 | @@ -1048,12 +1048,12 @@ msgstr "" |
3453 | "requereixen l'ARMv6 com a arquitectura mínima. No és possible actualitzar el " |
3454 | "vostre sistema a una versió nova de l'Ubuntu amb este maquinari." |
3455 | |
3456 | -#: ../DistUpgrade/DistUpgradeQuirks.py:365 |
3457 | +#: ../DistUpgrade/DistUpgradeQuirks.py:367 |
3458 | msgid "" |
3459 | "Sorry, this storage driver is not supported in kernels for newer releases" |
3460 | msgstr "" |
3461 | |
3462 | -#: ../DistUpgrade/DistUpgradeQuirks.py:367 |
3463 | +#: ../DistUpgrade/DistUpgradeQuirks.py:369 |
3464 | #, python-format |
3465 | msgid "" |
3466 | "There will not be any further Ubuntu releases that provide kernel support " |
3467 | @@ -1063,7 +1063,7 @@ msgid "" |
3468 | "driver, remove the directory %s and try again." |
3469 | msgstr "" |
3470 | |
3471 | -#: ../DistUpgrade/DistUpgradeQuirks.py:398 |
3472 | +#: ../DistUpgrade/DistUpgradeQuirks.py:400 |
3473 | #, python-format |
3474 | msgid "" |
3475 | "There will not be any further Ubuntu releases for this system's POWER8 " |
3476 | @@ -1072,11 +1072,11 @@ msgid "" |
3477 | "Updates for Ubuntu %s will continue until %s." |
3478 | msgstr "" |
3479 | |
3480 | -#: ../DistUpgrade/DistUpgradeQuirks.py:416 |
3481 | +#: ../DistUpgrade/DistUpgradeQuirks.py:418 |
3482 | msgid "No init available" |
3483 | msgstr "No hi ha cap sistema d'inicialització disponible" |
3484 | |
3485 | -#: ../DistUpgrade/DistUpgradeQuirks.py:417 |
3486 | +#: ../DistUpgrade/DistUpgradeQuirks.py:419 |
3487 | msgid "" |
3488 | "Your system appears to be a virtualised environment without an init daemon, " |
3489 | "e.g. Linux-VServer. Ubuntu 10.04 LTS cannot function within this type of " |
3490 | @@ -1092,11 +1092,11 @@ msgstr "" |
3491 | "\n" |
3492 | "Segur que voleu continuar?" |
3493 | |
3494 | -#: ../DistUpgrade/DistUpgradeQuirks.py:458 |
3495 | +#: ../DistUpgrade/DistUpgradeQuirks.py:460 |
3496 | msgid "The Robot Operating System (ROS) is installed" |
3497 | msgstr "" |
3498 | |
3499 | -#: ../DistUpgrade/DistUpgradeQuirks.py:459 |
3500 | +#: ../DistUpgrade/DistUpgradeQuirks.py:461 |
3501 | msgid "" |
3502 | "It appears that ROS is currently installed. Each ROS release is very strict " |
3503 | "about the versions of Ubuntu it supports, and Ubuntu upgrades can fail if " |
3504 | @@ -1113,11 +1113,11 @@ msgid "" |
3505 | "Are you sure you want to continue?" |
3506 | msgstr "" |
3507 | |
3508 | -#: ../DistUpgrade/DistUpgradeQuirks.py:634 |
3509 | +#: ../DistUpgrade/DistUpgradeQuirks.py:654 |
3510 | msgid "Connection to the Snap Store failed" |
3511 | msgstr "" |
3512 | |
3513 | -#: ../DistUpgrade/DistUpgradeQuirks.py:635 |
3514 | +#: ../DistUpgrade/DistUpgradeQuirks.py:655 |
3515 | msgid "" |
3516 | "You have the package lxd installed but your system is unable to reach the " |
3517 | "Snap Store. lxd is now provided via a snap and the release upgrade will fail " |
3518 | @@ -1127,11 +1127,11 @@ msgid "" |
3519 | "may want to configure a Snap Store proxy." |
3520 | msgstr "" |
3521 | |
3522 | -#: ../DistUpgrade/DistUpgradeQuirks.py:650 |
3523 | +#: ../DistUpgrade/DistUpgradeQuirks.py:670 |
3524 | msgid "Connection to Snap Store failed" |
3525 | msgstr "" |
3526 | |
3527 | -#: ../DistUpgrade/DistUpgradeQuirks.py:651 |
3528 | +#: ../DistUpgrade/DistUpgradeQuirks.py:671 |
3529 | msgid "" |
3530 | "Your system does not have a connection to the Snap Store. For the best " |
3531 | "upgrade experience make sure that your system can connect to api.snapcraft." |
3532 | @@ -1139,11 +1139,11 @@ msgid "" |
3533 | "Do you still want to continue with the upgrade?" |
3534 | msgstr "" |
3535 | |
3536 | -#: ../DistUpgrade/DistUpgradeQuirks.py:660 |
3537 | +#: ../DistUpgrade/DistUpgradeQuirks.py:680 |
3538 | msgid "Outdated snapd package" |
3539 | msgstr "" |
3540 | |
3541 | -#: ../DistUpgrade/DistUpgradeQuirks.py:661 |
3542 | +#: ../DistUpgrade/DistUpgradeQuirks.py:681 |
3543 | msgid "" |
3544 | "Your system does not have the latest version of snapd. Please update the " |
3545 | "version of snapd on your system to improve the upgrade experience.\n" |
3546 | @@ -1152,34 +1152,34 @@ msgstr "" |
3547 | |
3548 | #. now perform direct API calls to the store, requesting size |
3549 | #. information for each of the snaps needing installation |
3550 | -#: ../DistUpgrade/DistUpgradeQuirks.py:686 |
3551 | +#: ../DistUpgrade/DistUpgradeQuirks.py:706 |
3552 | msgid "Calculating snap size requirements" |
3553 | msgstr "" |
3554 | |
3555 | -#: ../DistUpgrade/DistUpgradeQuirks.py:717 |
3556 | +#: ../DistUpgrade/DistUpgradeQuirks.py:737 |
3557 | msgid "Processing snap replacements" |
3558 | msgstr "" |
3559 | |
3560 | -#: ../DistUpgrade/DistUpgradeQuirks.py:723 |
3561 | +#: ../DistUpgrade/DistUpgradeQuirks.py:743 |
3562 | #, python-format |
3563 | msgid "refreshing snap %s" |
3564 | msgstr "" |
3565 | |
3566 | -#: ../DistUpgrade/DistUpgradeQuirks.py:727 |
3567 | +#: ../DistUpgrade/DistUpgradeQuirks.py:747 |
3568 | #, python-format |
3569 | msgid "removing snap %s" |
3570 | msgstr "" |
3571 | |
3572 | -#: ../DistUpgrade/DistUpgradeQuirks.py:730 |
3573 | +#: ../DistUpgrade/DistUpgradeQuirks.py:750 |
3574 | #, python-format |
3575 | msgid "installing snap %s" |
3576 | msgstr "" |
3577 | |
3578 | -#: ../DistUpgrade/DistUpgradeQuirks.py:759 |
3579 | +#: ../DistUpgrade/DistUpgradeQuirks.py:779 |
3580 | msgid "PAE not enabled" |
3581 | msgstr "El PAE no està habilitat" |
3582 | |
3583 | -#: ../DistUpgrade/DistUpgradeQuirks.py:760 |
3584 | +#: ../DistUpgrade/DistUpgradeQuirks.py:780 |
3585 | msgid "" |
3586 | "Your system uses a CPU that does not have PAE enabled. Ubuntu only supports " |
3587 | "non-PAE systems up to Ubuntu 12.04. To upgrade to a later version of Ubuntu, " |
3588 | @@ -1192,11 +1192,11 @@ msgstr "" |
3589 | "Consulteu la documentació següent per obtindre més informació:\n" |
3590 | "http://help.ubuntu.com/community/EnablingPAE" |
3591 | |
3592 | -#: ../DistUpgrade/DistUpgradeQuirks.py:1056 |
3593 | +#: ../DistUpgrade/DistUpgradeQuirks.py:1076 |
3594 | msgid "universe component not enabled" |
3595 | msgstr "" |
3596 | |
3597 | -#: ../DistUpgrade/DistUpgradeQuirks.py:1057 |
3598 | +#: ../DistUpgrade/DistUpgradeQuirks.py:1077 |
3599 | #, python-format |
3600 | msgid "" |
3601 | "You have the package %s installed which is a python2 package. python2 has " |
3602 | @@ -1208,7 +1208,7 @@ msgid "" |
3603 | "universe component in /etc/apt/sources.list or remove %s" |
3604 | msgstr "" |
3605 | |
3606 | -#: ../DistUpgrade/DistUpgradeQuirks.py:1169 |
3607 | +#: ../DistUpgrade/DistUpgradeQuirks.py:1189 |
3608 | msgid "Checking for installed snaps" |
3609 | msgstr "" |
3610 | |
3611 | diff --git a/po/ce.po b/po/ce.po |
3612 | index 0b4a6f0..f476510 100644 |
3613 | --- a/po/ce.po |
3614 | +++ b/po/ce.po |
3615 | @@ -8,7 +8,7 @@ msgid "" |
3616 | msgstr "" |
3617 | "Project-Id-Version: ubuntu-release-upgrader\n" |
3618 | "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" |
3619 | -"POT-Creation-Date: 2023-04-03 16:33+0000\n" |
3620 | +"POT-Creation-Date: 2023-04-12 13:41+0000\n" |
3621 | "PO-Revision-Date: 2014-08-21 06:20+0000\n" |
3622 | "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" |
3623 | "Language-Team: Chechen <ce@li.org>\n" |
3624 | @@ -917,11 +917,11 @@ msgstr "" |
3625 | msgid "Media Change" |
3626 | msgstr "" |
3627 | |
3628 | -#: ../DistUpgrade/DistUpgradeQuirks.py:237 |
3629 | +#: ../DistUpgrade/DistUpgradeQuirks.py:239 |
3630 | msgid "Your graphics hardware may not be fully supported in Ubuntu 14.04." |
3631 | msgstr "" |
3632 | |
3633 | -#: ../DistUpgrade/DistUpgradeQuirks.py:239 |
3634 | +#: ../DistUpgrade/DistUpgradeQuirks.py:241 |
3635 | msgid "" |
3636 | "Running the 'unity' desktop environment is not fully supported by your " |
3637 | "graphics hardware. You will maybe end up in a very slow environment after " |
3638 | @@ -931,11 +931,11 @@ msgid "" |
3639 | "upgrade?" |
3640 | msgstr "" |
3641 | |
3642 | -#: ../DistUpgrade/DistUpgradeQuirks.py:263 |
3643 | +#: ../DistUpgrade/DistUpgradeQuirks.py:265 |
3644 | msgid "Your graphics hardware may not be fully supported in Ubuntu 12.04 LTS." |
3645 | msgstr "" |
3646 | |
3647 | -#: ../DistUpgrade/DistUpgradeQuirks.py:265 |
3648 | +#: ../DistUpgrade/DistUpgradeQuirks.py:267 |
3649 | msgid "" |
3650 | "The support in Ubuntu 12.04 LTS for your Intel graphics hardware is limited " |
3651 | "and you may encounter problems after the upgrade. For more information see " |
3652 | @@ -943,13 +943,13 @@ msgid "" |
3653 | "continue with the upgrade?" |
3654 | msgstr "" |
3655 | |
3656 | -#: ../DistUpgrade/DistUpgradeQuirks.py:285 |
3657 | +#: ../DistUpgrade/DistUpgradeQuirks.py:287 |
3658 | msgid "" |
3659 | "Upgrading may reduce desktop effects, and performance in games and other " |
3660 | "graphically intensive programs." |
3661 | msgstr "" |
3662 | |
3663 | -#: ../DistUpgrade/DistUpgradeQuirks.py:289 |
3664 | +#: ../DistUpgrade/DistUpgradeQuirks.py:291 |
3665 | msgid "" |
3666 | "This computer is currently using the AMD 'fglrx' graphics driver. No version " |
3667 | "of this driver is available that works with your hardware in Ubuntu 10.04 " |
3668 | @@ -958,12 +958,12 @@ msgid "" |
3669 | "Do you want to continue?" |
3670 | msgstr "" |
3671 | |
3672 | -#: ../DistUpgrade/DistUpgradeQuirks.py:328 |
3673 | -#: ../DistUpgrade/DistUpgradeQuirks.py:397 |
3674 | +#: ../DistUpgrade/DistUpgradeQuirks.py:330 |
3675 | +#: ../DistUpgrade/DistUpgradeQuirks.py:399 |
3676 | msgid "Sorry, no more upgrades for this system" |
3677 | msgstr "" |
3678 | |
3679 | -#: ../DistUpgrade/DistUpgradeQuirks.py:329 |
3680 | +#: ../DistUpgrade/DistUpgradeQuirks.py:331 |
3681 | #, python-format |
3682 | msgid "" |
3683 | "There will not be any further Ubuntu releases for this system's 'i386' " |
3684 | @@ -972,11 +972,11 @@ msgid "" |
3685 | "Updates for Ubuntu %s will continue until %s." |
3686 | msgstr "" |
3687 | |
3688 | -#: ../DistUpgrade/DistUpgradeQuirks.py:344 |
3689 | +#: ../DistUpgrade/DistUpgradeQuirks.py:346 |
3690 | msgid "No ARMv6 CPU" |
3691 | msgstr "" |
3692 | |
3693 | -#: ../DistUpgrade/DistUpgradeQuirks.py:345 |
3694 | +#: ../DistUpgrade/DistUpgradeQuirks.py:347 |
3695 | msgid "" |
3696 | "Your system uses an ARM CPU that is older than the ARMv6 architecture. All " |
3697 | "packages in karmic were built with optimizations requiring ARMv6 as the " |
3698 | @@ -984,12 +984,12 @@ msgid "" |
3699 | "Ubuntu release with this hardware." |
3700 | msgstr "" |
3701 | |
3702 | -#: ../DistUpgrade/DistUpgradeQuirks.py:365 |
3703 | +#: ../DistUpgrade/DistUpgradeQuirks.py:367 |
3704 | msgid "" |
3705 | "Sorry, this storage driver is not supported in kernels for newer releases" |
3706 | msgstr "" |
3707 | |
3708 | -#: ../DistUpgrade/DistUpgradeQuirks.py:367 |
3709 | +#: ../DistUpgrade/DistUpgradeQuirks.py:369 |
3710 | #, python-format |
3711 | msgid "" |
3712 | "There will not be any further Ubuntu releases that provide kernel support " |
3713 | @@ -999,7 +999,7 @@ msgid "" |
3714 | "driver, remove the directory %s and try again." |
3715 | msgstr "" |
3716 | |
3717 | -#: ../DistUpgrade/DistUpgradeQuirks.py:398 |
3718 | +#: ../DistUpgrade/DistUpgradeQuirks.py:400 |
3719 | #, python-format |
3720 | msgid "" |
3721 | "There will not be any further Ubuntu releases for this system's POWER8 " |
3722 | @@ -1008,11 +1008,11 @@ msgid "" |
3723 | "Updates for Ubuntu %s will continue until %s." |
3724 | msgstr "" |
3725 | |
3726 | -#: ../DistUpgrade/DistUpgradeQuirks.py:416 |
3727 | +#: ../DistUpgrade/DistUpgradeQuirks.py:418 |
3728 | msgid "No init available" |
3729 | msgstr "" |
3730 | |
3731 | -#: ../DistUpgrade/DistUpgradeQuirks.py:417 |
3732 | +#: ../DistUpgrade/DistUpgradeQuirks.py:419 |
3733 | msgid "" |
3734 | "Your system appears to be a virtualised environment without an init daemon, " |
3735 | "e.g. Linux-VServer. Ubuntu 10.04 LTS cannot function within this type of " |
3736 | @@ -1022,11 +1022,11 @@ msgid "" |
3737 | "Are you sure you want to continue?" |
3738 | msgstr "" |
3739 | |
3740 | -#: ../DistUpgrade/DistUpgradeQuirks.py:458 |
3741 | +#: ../DistUpgrade/DistUpgradeQuirks.py:460 |
3742 | msgid "The Robot Operating System (ROS) is installed" |
3743 | msgstr "" |
3744 | |
3745 | -#: ../DistUpgrade/DistUpgradeQuirks.py:459 |
3746 | +#: ../DistUpgrade/DistUpgradeQuirks.py:461 |
3747 | msgid "" |
3748 | "It appears that ROS is currently installed. Each ROS release is very strict " |
3749 | "about the versions of Ubuntu it supports, and Ubuntu upgrades can fail if " |
3750 | @@ -1043,11 +1043,11 @@ msgid "" |
3751 | "Are you sure you want to continue?" |
3752 | msgstr "" |
3753 | |
3754 | -#: ../DistUpgrade/DistUpgradeQuirks.py:634 |
3755 | +#: ../DistUpgrade/DistUpgradeQuirks.py:654 |
3756 | msgid "Connection to the Snap Store failed" |
3757 | msgstr "" |
3758 | |
3759 | -#: ../DistUpgrade/DistUpgradeQuirks.py:635 |
3760 | +#: ../DistUpgrade/DistUpgradeQuirks.py:655 |
3761 | msgid "" |
3762 | "You have the package lxd installed but your system is unable to reach the " |
3763 | "Snap Store. lxd is now provided via a snap and the release upgrade will fail " |
3764 | @@ -1057,11 +1057,11 @@ msgid "" |
3765 | "may want to configure a Snap Store proxy." |
3766 | msgstr "" |
3767 | |
3768 | -#: ../DistUpgrade/DistUpgradeQuirks.py:650 |
3769 | +#: ../DistUpgrade/DistUpgradeQuirks.py:670 |
3770 | msgid "Connection to Snap Store failed" |
3771 | msgstr "" |
3772 | |
3773 | -#: ../DistUpgrade/DistUpgradeQuirks.py:651 |
3774 | +#: ../DistUpgrade/DistUpgradeQuirks.py:671 |
3775 | msgid "" |
3776 | "Your system does not have a connection to the Snap Store. For the best " |
3777 | "upgrade experience make sure that your system can connect to api.snapcraft." |
3778 | @@ -1069,11 +1069,11 @@ msgid "" |
3779 | "Do you still want to continue with the upgrade?" |
3780 | msgstr "" |
3781 | |
3782 | -#: ../DistUpgrade/DistUpgradeQuirks.py:660 |
3783 | +#: ../DistUpgrade/DistUpgradeQuirks.py:680 |
3784 | msgid "Outdated snapd package" |
3785 | msgstr "" |
3786 | |
3787 | -#: ../DistUpgrade/DistUpgradeQuirks.py:661 |
3788 | +#: ../DistUpgrade/DistUpgradeQuirks.py:681 |
3789 | msgid "" |
3790 | "Your system does not have the latest version of snapd. Please update the " |
3791 | "version of snapd on your system to improve the upgrade experience.\n" |
3792 | @@ -1082,34 +1082,34 @@ msgstr "" |
3793 | |
3794 | #. now perform direct API calls to the store, requesting size |
3795 | #. information for each of the snaps needing installation |
3796 | -#: ../DistUpgrade/DistUpgradeQuirks.py:686 |
3797 | +#: ../DistUpgrade/DistUpgradeQuirks.py:706 |
3798 | msgid "Calculating snap size requirements" |
3799 | msgstr "" |
3800 | |
3801 | -#: ../DistUpgrade/DistUpgradeQuirks.py:717 |
3802 | +#: ../DistUpgrade/DistUpgradeQuirks.py:737 |
3803 | msgid "Processing snap replacements" |
3804 | msgstr "" |
3805 | |
3806 | -#: ../DistUpgrade/DistUpgradeQuirks.py:723 |
3807 | +#: ../DistUpgrade/DistUpgradeQuirks.py:743 |
3808 | #, python-format |
3809 | msgid "refreshing snap %s" |
3810 | msgstr "" |
3811 | |
3812 | -#: ../DistUpgrade/DistUpgradeQuirks.py:727 |
3813 | +#: ../DistUpgrade/DistUpgradeQuirks.py:747 |
3814 | #, python-format |
3815 | msgid "removing snap %s" |
3816 | msgstr "" |
3817 | |
3818 | -#: ../DistUpgrade/DistUpgradeQuirks.py:730 |
3819 | +#: ../DistUpgrade/DistUpgradeQuirks.py:750 |
3820 | #, python-format |
3821 | msgid "installing snap %s" |
3822 | msgstr "" |
3823 | |
3824 | -#: ../DistUpgrade/DistUpgradeQuirks.py:759 |
3825 | +#: ../DistUpgrade/DistUpgradeQuirks.py:779 |
3826 | msgid "PAE not enabled" |
3827 | msgstr "" |
3828 | |
3829 | -#: ../DistUpgrade/DistUpgradeQuirks.py:760 |
3830 | +#: ../DistUpgrade/DistUpgradeQuirks.py:780 |
3831 | msgid "" |
3832 | "Your system uses a CPU that does not have PAE enabled. Ubuntu only supports " |
3833 | "non-PAE systems up to Ubuntu 12.04. To upgrade to a later version of Ubuntu, " |
3834 | @@ -1117,11 +1117,11 @@ msgid "" |
3835 | "http://help.ubuntu.com/community/EnablingPAE" |
3836 | msgstr "" |
3837 | |
3838 | -#: ../DistUpgrade/DistUpgradeQuirks.py:1056 |
3839 | +#: ../DistUpgrade/DistUpgradeQuirks.py:1076 |
3840 | msgid "universe component not enabled" |
3841 | msgstr "" |
3842 | |
3843 | -#: ../DistUpgrade/DistUpgradeQuirks.py:1057 |
3844 | +#: ../DistUpgrade/DistUpgradeQuirks.py:1077 |
3845 | #, python-format |
3846 | msgid "" |
3847 | "You have the package %s installed which is a python2 package. python2 has " |
3848 | @@ -1133,7 +1133,7 @@ msgid "" |
3849 | "universe component in /etc/apt/sources.list or remove %s" |
3850 | msgstr "" |
3851 | |
3852 | -#: ../DistUpgrade/DistUpgradeQuirks.py:1169 |
3853 | +#: ../DistUpgrade/DistUpgradeQuirks.py:1189 |
3854 | msgid "Checking for installed snaps" |
3855 | msgstr "" |
3856 | |
3857 | diff --git a/po/ceb.po b/po/ceb.po |
3858 | index d231709..e925df0 100644 |
3859 | --- a/po/ceb.po |
3860 | +++ b/po/ceb.po |
3861 | @@ -8,7 +8,7 @@ msgid "" |
3862 | msgstr "" |
3863 | "Project-Id-Version: update-manager\n" |
3864 | "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" |
3865 | -"POT-Creation-Date: 2023-04-03 16:33+0000\n" |
3866 | +"POT-Creation-Date: 2023-04-12 13:41+0000\n" |
3867 | "PO-Revision-Date: 2013-05-22 11:00+0000\n" |
3868 | "Last-Translator: James Banogon <james@banogon.com>\n" |
3869 | "Language-Team: Cebuano <ceb@li.org>\n" |
3870 | @@ -878,11 +878,11 @@ msgstr "" |
3871 | msgid "Media Change" |
3872 | msgstr "" |
3873 | |
3874 | -#: ../DistUpgrade/DistUpgradeQuirks.py:237 |
3875 | +#: ../DistUpgrade/DistUpgradeQuirks.py:239 |
3876 | msgid "Your graphics hardware may not be fully supported in Ubuntu 14.04." |
3877 | msgstr "" |
3878 | |
3879 | -#: ../DistUpgrade/DistUpgradeQuirks.py:239 |
3880 | +#: ../DistUpgrade/DistUpgradeQuirks.py:241 |
3881 | msgid "" |
3882 | "Running the 'unity' desktop environment is not fully supported by your " |
3883 | "graphics hardware. You will maybe end up in a very slow environment after " |
3884 | @@ -892,11 +892,11 @@ msgid "" |
3885 | "upgrade?" |
3886 | msgstr "" |
3887 | |
3888 | -#: ../DistUpgrade/DistUpgradeQuirks.py:263 |
3889 | +#: ../DistUpgrade/DistUpgradeQuirks.py:265 |
3890 | msgid "Your graphics hardware may not be fully supported in Ubuntu 12.04 LTS." |
3891 | msgstr "" |
3892 | |
3893 | -#: ../DistUpgrade/DistUpgradeQuirks.py:265 |
3894 | +#: ../DistUpgrade/DistUpgradeQuirks.py:267 |
3895 | msgid "" |
3896 | "The support in Ubuntu 12.04 LTS for your Intel graphics hardware is limited " |
3897 | "and you may encounter problems after the upgrade. For more information see " |
3898 | @@ -904,13 +904,13 @@ msgid "" |
3899 | "continue with the upgrade?" |
3900 | msgstr "" |
3901 | |
3902 | -#: ../DistUpgrade/DistUpgradeQuirks.py:285 |
3903 | +#: ../DistUpgrade/DistUpgradeQuirks.py:287 |
3904 | msgid "" |
3905 | "Upgrading may reduce desktop effects, and performance in games and other " |
3906 | "graphically intensive programs." |
3907 | msgstr "" |
3908 | |
3909 | -#: ../DistUpgrade/DistUpgradeQuirks.py:289 |
3910 | +#: ../DistUpgrade/DistUpgradeQuirks.py:291 |
3911 | msgid "" |
3912 | "This computer is currently using the AMD 'fglrx' graphics driver. No version " |
3913 | "of this driver is available that works with your hardware in Ubuntu 10.04 " |
3914 | @@ -919,12 +919,12 @@ msgid "" |
3915 | "Do you want to continue?" |
3916 | msgstr "" |
3917 | |
3918 | -#: ../DistUpgrade/DistUpgradeQuirks.py:328 |
3919 | -#: ../DistUpgrade/DistUpgradeQuirks.py:397 |
3920 | +#: ../DistUpgrade/DistUpgradeQuirks.py:330 |
3921 | +#: ../DistUpgrade/DistUpgradeQuirks.py:399 |
3922 | msgid "Sorry, no more upgrades for this system" |
3923 | msgstr "" |
3924 | |
3925 | -#: ../DistUpgrade/DistUpgradeQuirks.py:329 |
3926 | +#: ../DistUpgrade/DistUpgradeQuirks.py:331 |
3927 | #, python-format |
3928 | msgid "" |
3929 | "There will not be any further Ubuntu releases for this system's 'i386' " |
3930 | @@ -933,11 +933,11 @@ msgid "" |
3931 | "Updates for Ubuntu %s will continue until %s." |
3932 | msgstr "" |
3933 | |
3934 | -#: ../DistUpgrade/DistUpgradeQuirks.py:344 |
3935 | +#: ../DistUpgrade/DistUpgradeQuirks.py:346 |
3936 | msgid "No ARMv6 CPU" |
3937 | msgstr "" |
3938 | |
3939 | -#: ../DistUpgrade/DistUpgradeQuirks.py:345 |
3940 | +#: ../DistUpgrade/DistUpgradeQuirks.py:347 |
3941 | msgid "" |
3942 | "Your system uses an ARM CPU that is older than the ARMv6 architecture. All " |
3943 | "packages in karmic were built with optimizations requiring ARMv6 as the " |
3944 | @@ -945,12 +945,12 @@ msgid "" |
3945 | "Ubuntu release with this hardware." |
3946 | msgstr "" |
3947 | |
3948 | -#: ../DistUpgrade/DistUpgradeQuirks.py:365 |
3949 | +#: ../DistUpgrade/DistUpgradeQuirks.py:367 |
3950 | msgid "" |
3951 | "Sorry, this storage driver is not supported in kernels for newer releases" |
3952 | msgstr "" |
3953 | |
3954 | -#: ../DistUpgrade/DistUpgradeQuirks.py:367 |
3955 | +#: ../DistUpgrade/DistUpgradeQuirks.py:369 |
3956 | #, python-format |
3957 | msgid "" |
3958 | "There will not be any further Ubuntu releases that provide kernel support " |
3959 | @@ -960,7 +960,7 @@ msgid "" |
3960 | "driver, remove the directory %s and try again." |
3961 | msgstr "" |
3962 | |
3963 | -#: ../DistUpgrade/DistUpgradeQuirks.py:398 |
3964 | +#: ../DistUpgrade/DistUpgradeQuirks.py:400 |
3965 | #, python-format |
3966 | msgid "" |
3967 | "There will not be any further Ubuntu releases for this system's POWER8 " |
3968 | @@ -969,11 +969,11 @@ msgid "" |
3969 | "Updates for Ubuntu %s will continue until %s." |
3970 | msgstr "" |
3971 | |
3972 | -#: ../DistUpgrade/DistUpgradeQuirks.py:416 |
3973 | +#: ../DistUpgrade/DistUpgradeQuirks.py:418 |
3974 | msgid "No init available" |
3975 | msgstr "" |
3976 | |
3977 | -#: ../DistUpgrade/DistUpgradeQuirks.py:417 |
3978 | +#: ../DistUpgrade/DistUpgradeQuirks.py:419 |
3979 | msgid "" |
3980 | "Your system appears to be a virtualised environment without an init daemon, " |
3981 | "e.g. Linux-VServer. Ubuntu 10.04 LTS cannot function within this type of " |
3982 | @@ -983,11 +983,11 @@ msgid "" |
3983 | "Are you sure you want to continue?" |
3984 | msgstr "" |
3985 | |
3986 | -#: ../DistUpgrade/DistUpgradeQuirks.py:458 |
3987 | +#: ../DistUpgrade/DistUpgradeQuirks.py:460 |
3988 | msgid "The Robot Operating System (ROS) is installed" |
3989 | msgstr "" |
3990 | |
3991 | -#: ../DistUpgrade/DistUpgradeQuirks.py:459 |
3992 | +#: ../DistUpgrade/DistUpgradeQuirks.py:461 |
3993 | msgid "" |
3994 | "It appears that ROS is currently installed. Each ROS release is very strict " |
3995 | "about the versions of Ubuntu it supports, and Ubuntu upgrades can fail if " |
3996 | @@ -1004,11 +1004,11 @@ msgid "" |
3997 | "Are you sure you want to continue?" |
3998 | msgstr "" |
3999 | |
4000 | -#: ../DistUpgrade/DistUpgradeQuirks.py:634 |
4001 | +#: ../DistUpgrade/DistUpgradeQuirks.py:654 |
4002 | msgid "Connection to the Snap Store failed" |
4003 | msgstr "" |
4004 | |
4005 | -#: ../DistUpgrade/DistUpgradeQuirks.py:635 |
4006 | +#: ../DistUpgrade/DistUpgradeQuirks.py:655 |
4007 | msgid "" |
4008 | "You have the package lxd installed but your system is unable to reach the " |
4009 | "Snap Store. lxd is now provided via a snap and the release upgrade will fail " |
4010 | @@ -1018,11 +1018,11 @@ msgid "" |
4011 | "may want to configure a Snap Store proxy." |
4012 | msgstr "" |
4013 | |
4014 | -#: ../DistUpgrade/DistUpgradeQuirks.py:650 |
4015 | +#: ../DistUpgrade/DistUpgradeQuirks.py:670 |
4016 | msgid "Connection to Snap Store failed" |
4017 | msgstr "" |
4018 | |
4019 | -#: ../DistUpgrade/DistUpgradeQuirks.py:651 |
4020 | +#: ../DistUpgrade/DistUpgradeQuirks.py:671 |
4021 | msgid "" |
4022 | "Your system does not have a connection to the Snap Store. For the best " |
4023 | "upgrade experience make sure that your system can connect to api.snapcraft." |
4024 | @@ -1030,11 +1030,11 @@ msgid "" |
4025 | "Do you still want to continue with the upgrade?" |
4026 | msgstr "" |
4027 | |
4028 | -#: ../DistUpgrade/DistUpgradeQuirks.py:660 |
4029 | +#: ../DistUpgrade/DistUpgradeQuirks.py:680 |
4030 | msgid "Outdated snapd package" |
4031 | msgstr "" |
4032 | |
4033 | -#: ../DistUpgrade/DistUpgradeQuirks.py:661 |
4034 | +#: ../DistUpgrade/DistUpgradeQuirks.py:681 |
4035 | msgid "" |
4036 | "Your system does not have the latest version of snapd. Please update the " |
4037 | "version of snapd on your system to improve the upgrade experience.\n" |
4038 | @@ -1043,34 +1043,34 @@ msgstr "" |
4039 | |
4040 | #. now perform direct API calls to the store, requesting size |
4041 | #. information for each of the snaps needing installation |
4042 | -#: ../DistUpgrade/DistUpgradeQuirks.py:686 |
4043 | +#: ../DistUpgrade/DistUpgradeQuirks.py:706 |
4044 | msgid "Calculating snap size requirements" |
4045 | msgstr "" |
4046 | |
4047 | -#: ../DistUpgrade/DistUpgradeQuirks.py:717 |
4048 | +#: ../DistUpgrade/DistUpgradeQuirks.py:737 |
4049 | msgid "Processing snap replacements" |
4050 | msgstr "" |
4051 | |
4052 | -#: ../DistUpgrade/DistUpgradeQuirks.py:723 |
4053 | +#: ../DistUpgrade/DistUpgradeQuirks.py:743 |
4054 | #, python-format |
4055 | msgid "refreshing snap %s" |
4056 | msgstr "" |
4057 | |
4058 | -#: ../DistUpgrade/DistUpgradeQuirks.py:727 |
4059 | +#: ../DistUpgrade/DistUpgradeQuirks.py:747 |
4060 | #, python-format |
4061 | msgid "removing snap %s" |
4062 | msgstr "" |
4063 | |
4064 | -#: ../DistUpgrade/DistUpgradeQuirks.py:730 |
4065 | +#: ../DistUpgrade/DistUpgradeQuirks.py:750 |
4066 | #, python-format |
4067 | msgid "installing snap %s" |
4068 | msgstr "" |
4069 | |
4070 | -#: ../DistUpgrade/DistUpgradeQuirks.py:759 |
4071 | +#: ../DistUpgrade/DistUpgradeQuirks.py:779 |
4072 | msgid "PAE not enabled" |
4073 | msgstr "" |
4074 | |
4075 | -#: ../DistUpgrade/DistUpgradeQuirks.py:760 |
4076 | +#: ../DistUpgrade/DistUpgradeQuirks.py:780 |
4077 | msgid "" |
4078 | "Your system uses a CPU that does not have PAE enabled. Ubuntu only supports " |
4079 | "non-PAE systems up to Ubuntu 12.04. To upgrade to a later version of Ubuntu, " |
4080 | @@ -1078,11 +1078,11 @@ msgid "" |
4081 | "http://help.ubuntu.com/community/EnablingPAE" |
4082 | msgstr "" |
4083 | |
4084 | -#: ../DistUpgrade/DistUpgradeQuirks.py:1056 |
4085 | +#: ../DistUpgrade/DistUpgradeQuirks.py:1076 |
4086 | msgid "universe component not enabled" |
4087 | msgstr "" |
4088 | |
4089 | -#: ../DistUpgrade/DistUpgradeQuirks.py:1057 |
4090 | +#: ../DistUpgrade/DistUpgradeQuirks.py:1077 |
4091 | #, python-format |
4092 | msgid "" |
4093 | "You have the package %s installed which is a python2 package. python2 has " |
4094 | @@ -1094,7 +1094,7 @@ msgid "" |
4095 | "universe component in /etc/apt/sources.list or remove %s" |
4096 | msgstr "" |
4097 | |
4098 | -#: ../DistUpgrade/DistUpgradeQuirks.py:1169 |
4099 | +#: ../DistUpgrade/DistUpgradeQuirks.py:1189 |
4100 | msgid "Checking for installed snaps" |
4101 | msgstr "" |
4102 | |
4103 | diff --git a/po/ckb.po b/po/ckb.po |
4104 | index 3f8a6c2..cf63806 100644 |
4105 | --- a/po/ckb.po |
4106 | +++ b/po/ckb.po |
4107 | @@ -8,7 +8,7 @@ msgid "" |
4108 | msgstr "" |
4109 | "Project-Id-Version: update-manager\n" |
4110 | "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" |
4111 | -"POT-Creation-Date: 2023-04-03 16:33+0000\n" |
4112 | +"POT-Creation-Date: 2023-04-12 13:41+0000\n" |
4113 | "PO-Revision-Date: 2013-05-22 11:00+0000\n" |
4114 | "Last-Translator: jwtear nariman <jwtiyar@gmail.com>\n" |
4115 | "Language-Team: Kurdish (Sorani) <ckb@li.org>\n" |
4116 | @@ -883,11 +883,11 @@ msgstr "" |
4117 | msgid "Media Change" |
4118 | msgstr "" |
4119 | |
4120 | -#: ../DistUpgrade/DistUpgradeQuirks.py:237 |
4121 | +#: ../DistUpgrade/DistUpgradeQuirks.py:239 |
4122 | msgid "Your graphics hardware may not be fully supported in Ubuntu 14.04." |
4123 | msgstr "" |
4124 | |
4125 | -#: ../DistUpgrade/DistUpgradeQuirks.py:239 |
4126 | +#: ../DistUpgrade/DistUpgradeQuirks.py:241 |
4127 | msgid "" |
4128 | "Running the 'unity' desktop environment is not fully supported by your " |
4129 | "graphics hardware. You will maybe end up in a very slow environment after " |
4130 | @@ -897,11 +897,11 @@ msgid "" |
4131 | "upgrade?" |
4132 | msgstr "" |
4133 | |
4134 | -#: ../DistUpgrade/DistUpgradeQuirks.py:263 |
4135 | +#: ../DistUpgrade/DistUpgradeQuirks.py:265 |
4136 | msgid "Your graphics hardware may not be fully supported in Ubuntu 12.04 LTS." |
4137 | msgstr "" |
4138 | |
4139 | -#: ../DistUpgrade/DistUpgradeQuirks.py:265 |
4140 | +#: ../DistUpgrade/DistUpgradeQuirks.py:267 |
4141 | msgid "" |
4142 | "The support in Ubuntu 12.04 LTS for your Intel graphics hardware is limited " |
4143 | "and you may encounter problems after the upgrade. For more information see " |
4144 | @@ -909,13 +909,13 @@ msgid "" |
4145 | "continue with the upgrade?" |
4146 | msgstr "" |
4147 | |
4148 | -#: ../DistUpgrade/DistUpgradeQuirks.py:285 |
4149 | +#: ../DistUpgrade/DistUpgradeQuirks.py:287 |
4150 | msgid "" |
4151 | "Upgrading may reduce desktop effects, and performance in games and other " |
4152 | "graphically intensive programs." |
4153 | msgstr "" |
4154 | |
4155 | -#: ../DistUpgrade/DistUpgradeQuirks.py:289 |
4156 | +#: ../DistUpgrade/DistUpgradeQuirks.py:291 |
4157 | msgid "" |
4158 | "This computer is currently using the AMD 'fglrx' graphics driver. No version " |
4159 | "of this driver is available that works with your hardware in Ubuntu 10.04 " |
4160 | @@ -924,12 +924,12 @@ msgid "" |
4161 | "Do you want to continue?" |
4162 | msgstr "" |
4163 | |
4164 | -#: ../DistUpgrade/DistUpgradeQuirks.py:328 |
4165 | -#: ../DistUpgrade/DistUpgradeQuirks.py:397 |
4166 | +#: ../DistUpgrade/DistUpgradeQuirks.py:330 |
4167 | +#: ../DistUpgrade/DistUpgradeQuirks.py:399 |
4168 | msgid "Sorry, no more upgrades for this system" |
4169 | msgstr "" |
4170 | |
4171 | -#: ../DistUpgrade/DistUpgradeQuirks.py:329 |
4172 | +#: ../DistUpgrade/DistUpgradeQuirks.py:331 |
4173 | #, python-format |
4174 | msgid "" |
4175 | "There will not be any further Ubuntu releases for this system's 'i386' " |
4176 | @@ -938,11 +938,11 @@ msgid "" |
4177 | "Updates for Ubuntu %s will continue until %s." |
4178 | msgstr "" |
4179 | |
4180 | -#: ../DistUpgrade/DistUpgradeQuirks.py:344 |
4181 | +#: ../DistUpgrade/DistUpgradeQuirks.py:346 |
4182 | msgid "No ARMv6 CPU" |
4183 | msgstr "" |
4184 | |
4185 | -#: ../DistUpgrade/DistUpgradeQuirks.py:345 |
4186 | +#: ../DistUpgrade/DistUpgradeQuirks.py:347 |
4187 | msgid "" |
4188 | "Your system uses an ARM CPU that is older than the ARMv6 architecture. All " |
4189 | "packages in karmic were built with optimizations requiring ARMv6 as the " |
4190 | @@ -950,12 +950,12 @@ msgid "" |
4191 | "Ubuntu release with this hardware." |
4192 | msgstr "" |
4193 | |
4194 | -#: ../DistUpgrade/DistUpgradeQuirks.py:365 |
4195 | +#: ../DistUpgrade/DistUpgradeQuirks.py:367 |
4196 | msgid "" |
4197 | "Sorry, this storage driver is not supported in kernels for newer releases" |
4198 | msgstr "" |
4199 | |
4200 | -#: ../DistUpgrade/DistUpgradeQuirks.py:367 |
4201 | +#: ../DistUpgrade/DistUpgradeQuirks.py:369 |
4202 | #, python-format |
4203 | msgid "" |
4204 | "There will not be any further Ubuntu releases that provide kernel support " |
4205 | @@ -965,7 +965,7 @@ msgid "" |
4206 | "driver, remove the directory %s and try again." |
4207 | msgstr "" |
4208 | |
4209 | -#: ../DistUpgrade/DistUpgradeQuirks.py:398 |
4210 | +#: ../DistUpgrade/DistUpgradeQuirks.py:400 |
4211 | #, python-format |
4212 | msgid "" |
4213 | "There will not be any further Ubuntu releases for this system's POWER8 " |
4214 | @@ -974,11 +974,11 @@ msgid "" |
4215 | "Updates for Ubuntu %s will continue until %s." |
4216 | msgstr "" |
4217 | |
4218 | -#: ../DistUpgrade/DistUpgradeQuirks.py:416 |
4219 | +#: ../DistUpgrade/DistUpgradeQuirks.py:418 |
4220 | msgid "No init available" |
4221 | msgstr "" |
4222 | |
4223 | -#: ../DistUpgrade/DistUpgradeQuirks.py:417 |
4224 | +#: ../DistUpgrade/DistUpgradeQuirks.py:419 |
4225 | msgid "" |
4226 | "Your system appears to be a virtualised environment without an init daemon, " |
4227 | "e.g. Linux-VServer. Ubuntu 10.04 LTS cannot function within this type of " |
4228 | @@ -988,11 +988,11 @@ msgid "" |
4229 | "Are you sure you want to continue?" |
4230 | msgstr "" |
4231 | |
4232 | -#: ../DistUpgrade/DistUpgradeQuirks.py:458 |
4233 | +#: ../DistUpgrade/DistUpgradeQuirks.py:460 |
4234 | msgid "The Robot Operating System (ROS) is installed" |
4235 | msgstr "" |
4236 | |
4237 | -#: ../DistUpgrade/DistUpgradeQuirks.py:459 |
4238 | +#: ../DistUpgrade/DistUpgradeQuirks.py:461 |
4239 | msgid "" |
4240 | "It appears that ROS is currently installed. Each ROS release is very strict " |
4241 | "about the versions of Ubuntu it supports, and Ubuntu upgrades can fail if " |
4242 | @@ -1009,11 +1009,11 @@ msgid "" |
4243 | "Are you sure you want to continue?" |
4244 | msgstr "" |
4245 | |
4246 | -#: ../DistUpgrade/DistUpgradeQuirks.py:634 |
4247 | +#: ../DistUpgrade/DistUpgradeQuirks.py:654 |
4248 | msgid "Connection to the Snap Store failed" |
4249 | msgstr "" |
4250 | |
4251 | -#: ../DistUpgrade/DistUpgradeQuirks.py:635 |
4252 | +#: ../DistUpgrade/DistUpgradeQuirks.py:655 |
4253 | msgid "" |
4254 | "You have the package lxd installed but your system is unable to reach the " |
4255 | "Snap Store. lxd is now provided via a snap and the release upgrade will fail " |
4256 | @@ -1023,11 +1023,11 @@ msgid "" |
4257 | "may want to configure a Snap Store proxy." |
4258 | msgstr "" |
4259 | |
4260 | -#: ../DistUpgrade/DistUpgradeQuirks.py:650 |
4261 | +#: ../DistUpgrade/DistUpgradeQuirks.py:670 |
4262 | msgid "Connection to Snap Store failed" |
4263 | msgstr "" |
4264 | |
4265 | -#: ../DistUpgrade/DistUpgradeQuirks.py:651 |
4266 | +#: ../DistUpgrade/DistUpgradeQuirks.py:671 |
4267 | msgid "" |
4268 | "Your system does not have a connection to the Snap Store. For the best " |
4269 | "upgrade experience make sure that your system can connect to api.snapcraft." |
4270 | @@ -1035,11 +1035,11 @@ msgid "" |
4271 | "Do you still want to continue with the upgrade?" |
4272 | msgstr "" |
4273 | |
4274 | -#: ../DistUpgrade/DistUpgradeQuirks.py:660 |
4275 | +#: ../DistUpgrade/DistUpgradeQuirks.py:680 |
4276 | msgid "Outdated snapd package" |
4277 | msgstr "" |
4278 | |
4279 | -#: ../DistUpgrade/DistUpgradeQuirks.py:661 |
4280 | +#: ../DistUpgrade/DistUpgradeQuirks.py:681 |
4281 | msgid "" |
4282 | "Your system does not have the latest version of snapd. Please update the " |
4283 | "version of snapd on your system to improve the upgrade experience.\n" |
4284 | @@ -1048,34 +1048,34 @@ msgstr "" |
4285 | |
4286 | #. now perform direct API calls to the store, requesting size |
4287 | #. information for each of the snaps needing installation |
4288 | -#: ../DistUpgrade/DistUpgradeQuirks.py:686 |
4289 | +#: ../DistUpgrade/DistUpgradeQuirks.py:706 |
4290 | msgid "Calculating snap size requirements" |
4291 | msgstr "" |
4292 | |
4293 | -#: ../DistUpgrade/DistUpgradeQuirks.py:717 |
4294 | +#: ../DistUpgrade/DistUpgradeQuirks.py:737 |
4295 | msgid "Processing snap replacements" |
4296 | msgstr "" |
4297 | |
4298 | -#: ../DistUpgrade/DistUpgradeQuirks.py:723 |
4299 | +#: ../DistUpgrade/DistUpgradeQuirks.py:743 |
4300 | #, python-format |
4301 | msgid "refreshing snap %s" |
4302 | msgstr "" |
4303 | |
4304 | -#: ../DistUpgrade/DistUpgradeQuirks.py:727 |
4305 | +#: ../DistUpgrade/DistUpgradeQuirks.py:747 |
4306 | #, python-format |
4307 | msgid "removing snap %s" |
4308 | msgstr "" |
4309 | |
4310 | -#: ../DistUpgrade/DistUpgradeQuirks.py:730 |
4311 | +#: ../DistUpgrade/DistUpgradeQuirks.py:750 |
4312 | #, python-format |
4313 | msgid "installing snap %s" |
4314 | msgstr "" |
4315 | |
4316 | -#: ../DistUpgrade/DistUpgradeQuirks.py:759 |
4317 | +#: ../DistUpgrade/DistUpgradeQuirks.py:779 |
4318 | msgid "PAE not enabled" |
4319 | msgstr "" |
4320 | |
4321 | -#: ../DistUpgrade/DistUpgradeQuirks.py:760 |
4322 | +#: ../DistUpgrade/DistUpgradeQuirks.py:780 |
4323 | msgid "" |
4324 | "Your system uses a CPU that does not have PAE enabled. Ubuntu only supports " |
4325 | "non-PAE systems up to Ubuntu 12.04. To upgrade to a later version of Ubuntu, " |
4326 | @@ -1083,11 +1083,11 @@ msgid "" |
4327 | "http://help.ubuntu.com/community/EnablingPAE" |
4328 | msgstr "" |
4329 | |
4330 | -#: ../DistUpgrade/DistUpgradeQuirks.py:1056 |
4331 | +#: ../DistUpgrade/DistUpgradeQuirks.py:1076 |
4332 | msgid "universe component not enabled" |
4333 | msgstr "" |
4334 | |
4335 | -#: ../DistUpgrade/DistUpgradeQuirks.py:1057 |
4336 | +#: ../DistUpgrade/DistUpgradeQuirks.py:1077 |
4337 | #, python-format |
4338 | msgid "" |
4339 | "You have the package %s installed which is a python2 package. python2 has " |
4340 | @@ -1099,7 +1099,7 @@ msgid "" |
4341 | "universe component in /etc/apt/sources.list or remove %s" |
4342 | msgstr "" |
4343 | |
4344 | -#: ../DistUpgrade/DistUpgradeQuirks.py:1169 |
4345 | +#: ../DistUpgrade/DistUpgradeQuirks.py:1189 |
4346 | msgid "Checking for installed snaps" |
4347 | msgstr "" |
4348 | |
4349 | diff --git a/po/crh.po b/po/crh.po |
4350 | index 53f05d4..0b9d288 100644 |
4351 | --- a/po/crh.po |
4352 | +++ b/po/crh.po |
4353 | @@ -8,7 +8,7 @@ msgid "" |
4354 | msgstr "" |
4355 | "Project-Id-Version: update-manager\n" |
4356 | "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" |
4357 | -"POT-Creation-Date: 2023-04-03 16:33+0000\n" |
4358 | +"POT-Creation-Date: 2023-04-12 13:41+0000\n" |
4359 | "PO-Revision-Date: 2013-05-22 11:00+0000\n" |
4360 | "Last-Translator: Reşat SABIQ <tilde.birlik@gmail.com>\n" |
4361 | "Language-Team: QIRIMTATARCA (Qırım Türkçesi) <tilde-birlik-tercime@lists." |
4362 | @@ -1008,11 +1008,11 @@ msgstr "Lütfen \"%2s\" sürücüsüne \"%1s\" takın" |
4363 | msgid "Media Change" |
4364 | msgstr "Vasat Deñişimi" |
4365 | |
4366 | -#: ../DistUpgrade/DistUpgradeQuirks.py:237 |
4367 | +#: ../DistUpgrade/DistUpgradeQuirks.py:239 |
4368 | msgid "Your graphics hardware may not be fully supported in Ubuntu 14.04." |
4369 | msgstr "" |
4370 | |
4371 | -#: ../DistUpgrade/DistUpgradeQuirks.py:239 |
4372 | +#: ../DistUpgrade/DistUpgradeQuirks.py:241 |
4373 | msgid "" |
4374 | "Running the 'unity' desktop environment is not fully supported by your " |
4375 | "graphics hardware. You will maybe end up in a very slow environment after " |
4376 | @@ -1022,11 +1022,11 @@ msgid "" |
4377 | "upgrade?" |
4378 | msgstr "" |
4379 | |
4380 | -#: ../DistUpgrade/DistUpgradeQuirks.py:263 |
4381 | +#: ../DistUpgrade/DistUpgradeQuirks.py:265 |
4382 | msgid "Your graphics hardware may not be fully supported in Ubuntu 12.04 LTS." |
4383 | msgstr "" |
4384 | |
4385 | -#: ../DistUpgrade/DistUpgradeQuirks.py:265 |
4386 | +#: ../DistUpgrade/DistUpgradeQuirks.py:267 |
4387 | msgid "" |
4388 | "The support in Ubuntu 12.04 LTS for your Intel graphics hardware is limited " |
4389 | "and you may encounter problems after the upgrade. For more information see " |
4390 | @@ -1035,7 +1035,7 @@ msgid "" |
4391 | msgstr "" |
4392 | |
4393 | # tr |
4394 | -#: ../DistUpgrade/DistUpgradeQuirks.py:285 |
4395 | +#: ../DistUpgrade/DistUpgradeQuirks.py:287 |
4396 | msgid "" |
4397 | "Upgrading may reduce desktop effects, and performance in games and other " |
4398 | "graphically intensive programs." |
4399 | @@ -1044,7 +1044,7 @@ msgstr "" |
4400 | "uygulamaların başarımını düşürebilir." |
4401 | |
4402 | # tr |
4403 | -#: ../DistUpgrade/DistUpgradeQuirks.py:289 |
4404 | +#: ../DistUpgrade/DistUpgradeQuirks.py:291 |
4405 | msgid "" |
4406 | "This computer is currently using the AMD 'fglrx' graphics driver. No version " |
4407 | "of this driver is available that works with your hardware in Ubuntu 10.04 " |
4408 | @@ -1057,12 +1057,12 @@ msgstr "" |
4409 | "\n" |
4410 | "Devam etmege isteysiñizmi?" |
4411 | |
4412 | -#: ../DistUpgrade/DistUpgradeQuirks.py:328 |
4413 | -#: ../DistUpgrade/DistUpgradeQuirks.py:397 |
4414 | +#: ../DistUpgrade/DistUpgradeQuirks.py:330 |
4415 | +#: ../DistUpgrade/DistUpgradeQuirks.py:399 |
4416 | msgid "Sorry, no more upgrades for this system" |
4417 | msgstr "" |
4418 | |
4419 | -#: ../DistUpgrade/DistUpgradeQuirks.py:329 |
4420 | +#: ../DistUpgrade/DistUpgradeQuirks.py:331 |
4421 | #, python-format |
4422 | msgid "" |
4423 | "There will not be any further Ubuntu releases for this system's 'i386' " |
4424 | @@ -1072,12 +1072,12 @@ msgid "" |
4425 | msgstr "" |
4426 | |
4427 | # tr |
4428 | -#: ../DistUpgrade/DistUpgradeQuirks.py:344 |
4429 | +#: ../DistUpgrade/DistUpgradeQuirks.py:346 |
4430 | msgid "No ARMv6 CPU" |
4431 | msgstr "ARMv6 İşlemci Yok" |
4432 | |
4433 | # tr |
4434 | -#: ../DistUpgrade/DistUpgradeQuirks.py:345 |
4435 | +#: ../DistUpgrade/DistUpgradeQuirks.py:347 |
4436 | msgid "" |
4437 | "Your system uses an ARM CPU that is older than the ARMv6 architecture. All " |
4438 | "packages in karmic were built with optimizations requiring ARMv6 as the " |
4439 | @@ -1089,12 +1089,12 @@ msgstr "" |
4440 | "ile oluşturulmuştur. Bu donanım ile, sisteminizi yeni bir Ubuntu sürümüne " |
4441 | "yükseltmek mümkün değil." |
4442 | |
4443 | -#: ../DistUpgrade/DistUpgradeQuirks.py:365 |
4444 | +#: ../DistUpgrade/DistUpgradeQuirks.py:367 |
4445 | msgid "" |
4446 | "Sorry, this storage driver is not supported in kernels for newer releases" |
4447 | msgstr "" |
4448 | |
4449 | -#: ../DistUpgrade/DistUpgradeQuirks.py:367 |
4450 | +#: ../DistUpgrade/DistUpgradeQuirks.py:369 |
4451 | #, python-format |
4452 | msgid "" |
4453 | "There will not be any further Ubuntu releases that provide kernel support " |
4454 | @@ -1104,7 +1104,7 @@ msgid "" |
4455 | "driver, remove the directory %s and try again." |
4456 | msgstr "" |
4457 | |
4458 | -#: ../DistUpgrade/DistUpgradeQuirks.py:398 |
4459 | +#: ../DistUpgrade/DistUpgradeQuirks.py:400 |
4460 | #, python-format |
4461 | msgid "" |
4462 | "There will not be any further Ubuntu releases for this system's POWER8 " |
4463 | @@ -1114,11 +1114,11 @@ msgid "" |
4464 | msgstr "" |
4465 | |
4466 | # tr |
4467 | -#: ../DistUpgrade/DistUpgradeQuirks.py:416 |
4468 | +#: ../DistUpgrade/DistUpgradeQuirks.py:418 |
4469 | msgid "No init available" |
4470 | msgstr "Başlatıcı mevcut değil" |
4471 | |
4472 | -#: ../DistUpgrade/DistUpgradeQuirks.py:417 |
4473 | +#: ../DistUpgrade/DistUpgradeQuirks.py:419 |
4474 | msgid "" |
4475 | "Your system appears to be a virtualised environment without an init daemon, " |
4476 | "e.g. Linux-VServer. Ubuntu 10.04 LTS cannot function within this type of " |
4477 | @@ -1133,11 +1133,11 @@ msgstr "" |
4478 | "\n" |
4479 | "Devam etmege istegeniñizden eminsiñizmi?" |
4480 | |
4481 | -#: ../DistUpgrade/DistUpgradeQuirks.py:458 |
4482 | +#: ../DistUpgrade/DistUpgradeQuirks.py:460 |
4483 | msgid "The Robot Operating System (ROS) is installed" |
4484 | msgstr "" |
4485 | |
4486 | -#: ../DistUpgrade/DistUpgradeQuirks.py:459 |
4487 | +#: ../DistUpgrade/DistUpgradeQuirks.py:461 |
4488 | msgid "" |
4489 | "It appears that ROS is currently installed. Each ROS release is very strict " |
4490 | "about the versions of Ubuntu it supports, and Ubuntu upgrades can fail if " |
4491 | @@ -1154,11 +1154,11 @@ msgid "" |
4492 | "Are you sure you want to continue?" |
4493 | msgstr "" |
4494 | |
4495 | -#: ../DistUpgrade/DistUpgradeQuirks.py:634 |
4496 | +#: ../DistUpgrade/DistUpgradeQuirks.py:654 |
4497 | msgid "Connection to the Snap Store failed" |
4498 | msgstr "" |
4499 | |
4500 | -#: ../DistUpgrade/DistUpgradeQuirks.py:635 |
4501 | +#: ../DistUpgrade/DistUpgradeQuirks.py:655 |
4502 | msgid "" |
4503 | "You have the package lxd installed but your system is unable to reach the " |
4504 | "Snap Store. lxd is now provided via a snap and the release upgrade will fail " |
4505 | @@ -1168,11 +1168,11 @@ msgid "" |
4506 | "may want to configure a Snap Store proxy." |
4507 | msgstr "" |
4508 | |
4509 | -#: ../DistUpgrade/DistUpgradeQuirks.py:650 |
4510 | +#: ../DistUpgrade/DistUpgradeQuirks.py:670 |
4511 | msgid "Connection to Snap Store failed" |
4512 | msgstr "" |
4513 | |
4514 | -#: ../DistUpgrade/DistUpgradeQuirks.py:651 |
4515 | +#: ../DistUpgrade/DistUpgradeQuirks.py:671 |
4516 | msgid "" |
4517 | "Your system does not have a connection to the Snap Store. For the best " |
4518 | "upgrade experience make sure that your system can connect to api.snapcraft." |
4519 | @@ -1180,11 +1180,11 @@ msgid "" |
4520 | "Do you still want to continue with the upgrade?" |
4521 | msgstr "" |
4522 | |
4523 | -#: ../DistUpgrade/DistUpgradeQuirks.py:660 |
4524 | +#: ../DistUpgrade/DistUpgradeQuirks.py:680 |
4525 | msgid "Outdated snapd package" |
4526 | msgstr "" |
4527 | |
4528 | -#: ../DistUpgrade/DistUpgradeQuirks.py:661 |
4529 | +#: ../DistUpgrade/DistUpgradeQuirks.py:681 |
4530 | msgid "" |
4531 | "Your system does not have the latest version of snapd. Please update the " |
4532 | "version of snapd on your system to improve the upgrade experience.\n" |
4533 | @@ -1193,34 +1193,34 @@ msgstr "" |
4534 | |
4535 | #. now perform direct API calls to the store, requesting size |
4536 | #. information for each of the snaps needing installation |
4537 | -#: ../DistUpgrade/DistUpgradeQuirks.py:686 |
4538 | +#: ../DistUpgrade/DistUpgradeQuirks.py:706 |
4539 | msgid "Calculating snap size requirements" |
4540 | msgstr "" |
4541 | |
4542 | -#: ../DistUpgrade/DistUpgradeQuirks.py:717 |
4543 | +#: ../DistUpgrade/DistUpgradeQuirks.py:737 |
4544 | msgid "Processing snap replacements" |
4545 | msgstr "" |
4546 | |
4547 | -#: ../DistUpgrade/DistUpgradeQuirks.py:723 |
4548 | +#: ../DistUpgrade/DistUpgradeQuirks.py:743 |
4549 | #, python-format |
4550 | msgid "refreshing snap %s" |
4551 | msgstr "" |
4552 | |
4553 | -#: ../DistUpgrade/DistUpgradeQuirks.py:727 |
4554 | +#: ../DistUpgrade/DistUpgradeQuirks.py:747 |
4555 | #, python-format |
4556 | msgid "removing snap %s" |
4557 | msgstr "" |
4558 | |
4559 | -#: ../DistUpgrade/DistUpgradeQuirks.py:730 |
4560 | +#: ../DistUpgrade/DistUpgradeQuirks.py:750 |
4561 | #, python-format |
4562 | msgid "installing snap %s" |
4563 | msgstr "" |
4564 | |
4565 | -#: ../DistUpgrade/DistUpgradeQuirks.py:759 |
4566 | +#: ../DistUpgrade/DistUpgradeQuirks.py:779 |
4567 | msgid "PAE not enabled" |
4568 | msgstr "" |
4569 | |
4570 | -#: ../DistUpgrade/DistUpgradeQuirks.py:760 |
4571 | +#: ../DistUpgrade/DistUpgradeQuirks.py:780 |
4572 | msgid "" |
4573 | "Your system uses a CPU that does not have PAE enabled. Ubuntu only supports " |
4574 | "non-PAE systems up to Ubuntu 12.04. To upgrade to a later version of Ubuntu, " |
4575 | @@ -1228,11 +1228,11 @@ msgid "" |
4576 | "http://help.ubuntu.com/community/EnablingPAE" |
4577 | msgstr "" |
4578 | |
4579 | -#: ../DistUpgrade/DistUpgradeQuirks.py:1056 |
4580 | +#: ../DistUpgrade/DistUpgradeQuirks.py:1076 |
4581 | msgid "universe component not enabled" |
4582 | msgstr "" |
4583 | |
4584 | -#: ../DistUpgrade/DistUpgradeQuirks.py:1057 |
4585 | +#: ../DistUpgrade/DistUpgradeQuirks.py:1077 |
4586 | #, python-format |
4587 | msgid "" |
4588 | "You have the package %s installed which is a python2 package. python2 has " |
4589 | @@ -1244,7 +1244,7 @@ msgid "" |
4590 | "universe component in /etc/apt/sources.list or remove %s" |
4591 | msgstr "" |
4592 | |
4593 | -#: ../DistUpgrade/DistUpgradeQuirks.py:1169 |
4594 | +#: ../DistUpgrade/DistUpgradeQuirks.py:1189 |
4595 | msgid "Checking for installed snaps" |
4596 | msgstr "" |
4597 | |
4598 | diff --git a/po/cs.po b/po/cs.po |
4599 | index d1f8339..1dbe3b9 100644 |
4600 | --- a/po/cs.po |
4601 | +++ b/po/cs.po |
4602 | @@ -8,7 +8,7 @@ msgid "" |
4603 | msgstr "" |
4604 | "Project-Id-Version: update-manager\n" |
4605 | "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" |
4606 | -"POT-Creation-Date: 2023-04-03 16:33+0000\n" |
4607 | +"POT-Creation-Date: 2023-04-12 13:41+0000\n" |
4608 | "PO-Revision-Date: 2019-06-18 17:53+0000\n" |
4609 | "Last-Translator: AsciiWolf <mail@asciiwolf.com>\n" |
4610 | "Language-Team: Czech <cs@li.org>\n" |
4611 | @@ -1053,12 +1053,12 @@ msgstr "Vložte prosím „%s“ do mechaniky „%s“" |
4612 | msgid "Media Change" |
4613 | msgstr "Změna média" |
4614 | |
4615 | -#: ../DistUpgrade/DistUpgradeQuirks.py:237 |
4616 | +#: ../DistUpgrade/DistUpgradeQuirks.py:239 |
4617 | msgid "Your graphics hardware may not be fully supported in Ubuntu 14.04." |
4618 | msgstr "" |
4619 | "Vaše grafická karta pravděpodobně nebude v Ubuntu 14.04 plně podporována." |
4620 | |
4621 | -#: ../DistUpgrade/DistUpgradeQuirks.py:239 |
4622 | +#: ../DistUpgrade/DistUpgradeQuirks.py:241 |
4623 | msgid "" |
4624 | "Running the 'unity' desktop environment is not fully supported by your " |
4625 | "graphics hardware. You will maybe end up in a very slow environment after " |
4626 | @@ -1073,11 +1073,11 @@ msgstr "" |
4627 | "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForUnity3D Přejete si " |
4628 | "stále pokračovat v přechodu na novější verzi systému?" |
4629 | |
4630 | -#: ../DistUpgrade/DistUpgradeQuirks.py:263 |
4631 | +#: ../DistUpgrade/DistUpgradeQuirks.py:265 |
4632 | msgid "Your graphics hardware may not be fully supported in Ubuntu 12.04 LTS." |
4633 | msgstr "Vaše grafická karta nemusí být v Ubuntu 12.04 LTS plně podporována." |
4634 | |
4635 | -#: ../DistUpgrade/DistUpgradeQuirks.py:265 |
4636 | +#: ../DistUpgrade/DistUpgradeQuirks.py:267 |
4637 | msgid "" |
4638 | "The support in Ubuntu 12.04 LTS for your Intel graphics hardware is limited " |
4639 | "and you may encounter problems after the upgrade. For more information see " |
4640 | @@ -1089,7 +1089,7 @@ msgstr "" |
4641 | "wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForI8xx Přejete si pokračovat v " |
4642 | "přechodu na novější vydání?" |
4643 | |
4644 | -#: ../DistUpgrade/DistUpgradeQuirks.py:285 |
4645 | +#: ../DistUpgrade/DistUpgradeQuirks.py:287 |
4646 | msgid "" |
4647 | "Upgrading may reduce desktop effects, and performance in games and other " |
4648 | "graphically intensive programs." |
4649 | @@ -1097,7 +1097,7 @@ msgstr "" |
4650 | "Povýšení může omezit grafické efekty prostředí a snížit výkon ve hrách a " |
4651 | "jiných graficky náročných aplikacích." |
4652 | |
4653 | -#: ../DistUpgrade/DistUpgradeQuirks.py:289 |
4654 | +#: ../DistUpgrade/DistUpgradeQuirks.py:291 |
4655 | msgid "" |
4656 | "This computer is currently using the AMD 'fglrx' graphics driver. No version " |
4657 | "of this driver is available that works with your hardware in Ubuntu 10.04 " |
4658 | @@ -1111,12 +1111,12 @@ msgstr "" |
4659 | "\n" |
4660 | "Přejete si pokračovat?" |
4661 | |
4662 | -#: ../DistUpgrade/DistUpgradeQuirks.py:328 |
4663 | -#: ../DistUpgrade/DistUpgradeQuirks.py:397 |
4664 | +#: ../DistUpgrade/DistUpgradeQuirks.py:330 |
4665 | +#: ../DistUpgrade/DistUpgradeQuirks.py:399 |
4666 | msgid "Sorry, no more upgrades for this system" |
4667 | msgstr "Omlouváme se, ale pro tento systém nejsou k dispozici další povýšení" |
4668 | |
4669 | -#: ../DistUpgrade/DistUpgradeQuirks.py:329 |
4670 | +#: ../DistUpgrade/DistUpgradeQuirks.py:331 |
4671 | #, python-format |
4672 | msgid "" |
4673 | "There will not be any further Ubuntu releases for this system's 'i386' " |
4674 | @@ -1129,11 +1129,11 @@ msgstr "" |
4675 | "\n" |
4676 | "Aktualizace Ubuntu %s budou pokračovat do %s." |
4677 | |
4678 | -#: ../DistUpgrade/DistUpgradeQuirks.py:344 |
4679 | +#: ../DistUpgrade/DistUpgradeQuirks.py:346 |
4680 | msgid "No ARMv6 CPU" |
4681 | msgstr "Nemáte procesor ARMv6" |
4682 | |
4683 | -#: ../DistUpgrade/DistUpgradeQuirks.py:345 |
4684 | +#: ../DistUpgrade/DistUpgradeQuirks.py:347 |
4685 | msgid "" |
4686 | "Your system uses an ARM CPU that is older than the ARMv6 architecture. All " |
4687 | "packages in karmic were built with optimizations requiring ARMv6 as the " |
4688 | @@ -1145,12 +1145,12 @@ msgstr "" |
4689 | "požadujícími minimálně architekturu ARMv6. S tímto hardwarem není možné " |
4690 | "povýšit váš systém na nové vydání Ubuntu." |
4691 | |
4692 | -#: ../DistUpgrade/DistUpgradeQuirks.py:365 |
4693 | +#: ../DistUpgrade/DistUpgradeQuirks.py:367 |
4694 | msgid "" |
4695 | "Sorry, this storage driver is not supported in kernels for newer releases" |
4696 | msgstr "" |
4697 | |
4698 | -#: ../DistUpgrade/DistUpgradeQuirks.py:367 |
4699 | +#: ../DistUpgrade/DistUpgradeQuirks.py:369 |
4700 | #, python-format |
4701 | msgid "" |
4702 | "There will not be any further Ubuntu releases that provide kernel support " |
4703 | @@ -1160,7 +1160,7 @@ msgid "" |
4704 | "driver, remove the directory %s and try again." |
4705 | msgstr "" |
4706 | |
4707 | -#: ../DistUpgrade/DistUpgradeQuirks.py:398 |
4708 | +#: ../DistUpgrade/DistUpgradeQuirks.py:400 |
4709 | #, fuzzy, python-format |
4710 | msgid "" |
4711 | "There will not be any further Ubuntu releases for this system's POWER8 " |
4712 | @@ -1173,11 +1173,11 @@ msgstr "" |
4713 | "\n" |
4714 | "Aktualizace Ubuntu %s budou pokračovat do %s." |
4715 | |
4716 | -#: ../DistUpgrade/DistUpgradeQuirks.py:416 |
4717 | +#: ../DistUpgrade/DistUpgradeQuirks.py:418 |
4718 | msgid "No init available" |
4719 | msgstr "Není k dispozici žádný démon init" |
4720 | |
4721 | -#: ../DistUpgrade/DistUpgradeQuirks.py:417 |
4722 | +#: ../DistUpgrade/DistUpgradeQuirks.py:419 |
4723 | msgid "" |
4724 | "Your system appears to be a virtualised environment without an init daemon, " |
4725 | "e.g. Linux-VServer. Ubuntu 10.04 LTS cannot function within this type of " |
4726 | @@ -1193,11 +1193,11 @@ msgstr "" |
4727 | "\n" |
4728 | "Opravdu chcete pokračovat?" |
4729 | |
4730 | -#: ../DistUpgrade/DistUpgradeQuirks.py:458 |
4731 | +#: ../DistUpgrade/DistUpgradeQuirks.py:460 |
4732 | msgid "The Robot Operating System (ROS) is installed" |
4733 | msgstr "" |
4734 | |
4735 | -#: ../DistUpgrade/DistUpgradeQuirks.py:459 |
4736 | +#: ../DistUpgrade/DistUpgradeQuirks.py:461 |
4737 | msgid "" |
4738 | "It appears that ROS is currently installed. Each ROS release is very strict " |
4739 | "about the versions of Ubuntu it supports, and Ubuntu upgrades can fail if " |
4740 | @@ -1214,12 +1214,12 @@ msgid "" |
4741 | "Are you sure you want to continue?" |
4742 | msgstr "" |
4743 | |
4744 | -#: ../DistUpgrade/DistUpgradeQuirks.py:634 |
4745 | +#: ../DistUpgrade/DistUpgradeQuirks.py:654 |
4746 | #, fuzzy |
4747 | msgid "Connection to the Snap Store failed" |
4748 | msgstr "Připojení ke Snap Store selhalo" |
4749 | |
4750 | -#: ../DistUpgrade/DistUpgradeQuirks.py:635 |
4751 | +#: ../DistUpgrade/DistUpgradeQuirks.py:655 |
4752 | msgid "" |
4753 | "You have the package lxd installed but your system is unable to reach the " |
4754 | "Snap Store. lxd is now provided via a snap and the release upgrade will fail " |
4755 | @@ -1229,11 +1229,11 @@ msgid "" |
4756 | "may want to configure a Snap Store proxy." |
4757 | msgstr "" |
4758 | |
4759 | -#: ../DistUpgrade/DistUpgradeQuirks.py:650 |
4760 | +#: ../DistUpgrade/DistUpgradeQuirks.py:670 |
4761 | msgid "Connection to Snap Store failed" |
4762 | msgstr "Připojení ke Snap Store selhalo" |
4763 | |
4764 | -#: ../DistUpgrade/DistUpgradeQuirks.py:651 |
4765 | +#: ../DistUpgrade/DistUpgradeQuirks.py:671 |
4766 | msgid "" |
4767 | "Your system does not have a connection to the Snap Store. For the best " |
4768 | "upgrade experience make sure that your system can connect to api.snapcraft." |
4769 | @@ -1244,11 +1244,11 @@ msgstr "" |
4770 | "vyšší verzi se ujistěte, že se váš systém může připojit k api.snapcraft.io.\n" |
4771 | "Chcete stále pokračovat s přechodem na vyšší verzi?" |
4772 | |
4773 | -#: ../DistUpgrade/DistUpgradeQuirks.py:660 |
4774 | +#: ../DistUpgrade/DistUpgradeQuirks.py:680 |
4775 | msgid "Outdated snapd package" |
4776 | msgstr "Zastaralý balíček snapd" |
4777 | |
4778 | -#: ../DistUpgrade/DistUpgradeQuirks.py:661 |
4779 | +#: ../DistUpgrade/DistUpgradeQuirks.py:681 |
4780 | msgid "" |
4781 | "Your system does not have the latest version of snapd. Please update the " |
4782 | "version of snapd on your system to improve the upgrade experience.\n" |
4783 | @@ -1260,34 +1260,34 @@ msgstr "" |
4784 | |
4785 | #. now perform direct API calls to the store, requesting size |
4786 | #. information for each of the snaps needing installation |
4787 | -#: ../DistUpgrade/DistUpgradeQuirks.py:686 |
4788 | +#: ../DistUpgrade/DistUpgradeQuirks.py:706 |
4789 | msgid "Calculating snap size requirements" |
4790 | msgstr "Vypočítávají se požadavky na velikost snapu" |
4791 | |
4792 | -#: ../DistUpgrade/DistUpgradeQuirks.py:717 |
4793 | +#: ../DistUpgrade/DistUpgradeQuirks.py:737 |
4794 | msgid "Processing snap replacements" |
4795 | msgstr "Zpracovávají se snap náhrady" |
4796 | |
4797 | -#: ../DistUpgrade/DistUpgradeQuirks.py:723 |
4798 | +#: ../DistUpgrade/DistUpgradeQuirks.py:743 |
4799 | #, python-format |
4800 | msgid "refreshing snap %s" |
4801 | msgstr "obnovuje se snap %s" |
4802 | |
4803 | -#: ../DistUpgrade/DistUpgradeQuirks.py:727 |
4804 | +#: ../DistUpgrade/DistUpgradeQuirks.py:747 |
4805 | #, fuzzy, python-format |
4806 | msgid "removing snap %s" |
4807 | msgstr "obnovuje se snap %s" |
4808 | |
4809 | -#: ../DistUpgrade/DistUpgradeQuirks.py:730 |
4810 | +#: ../DistUpgrade/DistUpgradeQuirks.py:750 |
4811 | #, python-format |
4812 | msgid "installing snap %s" |
4813 | msgstr "instaluje se snap %s" |
4814 | |
4815 | -#: ../DistUpgrade/DistUpgradeQuirks.py:759 |
4816 | +#: ../DistUpgrade/DistUpgradeQuirks.py:779 |
4817 | msgid "PAE not enabled" |
4818 | msgstr "PAE není povoleno" |
4819 | |
4820 | -#: ../DistUpgrade/DistUpgradeQuirks.py:760 |
4821 | +#: ../DistUpgrade/DistUpgradeQuirks.py:780 |
4822 | msgid "" |
4823 | "Your system uses a CPU that does not have PAE enabled. Ubuntu only supports " |
4824 | "non-PAE systems up to Ubuntu 12.04. To upgrade to a later version of Ubuntu, " |
4825 | @@ -1299,11 +1299,11 @@ msgstr "" |
4826 | "musíte povolit PAE, (jestli je to možné) viz:\n" |
4827 | "http://help.ubuntu.com/community/EnablingPAE" |
4828 | |
4829 | -#: ../DistUpgrade/DistUpgradeQuirks.py:1056 |
4830 | +#: ../DistUpgrade/DistUpgradeQuirks.py:1076 |
4831 | msgid "universe component not enabled" |
4832 | msgstr "" |
4833 | |
4834 | -#: ../DistUpgrade/DistUpgradeQuirks.py:1057 |
4835 | +#: ../DistUpgrade/DistUpgradeQuirks.py:1077 |
4836 | #, python-format |
4837 | msgid "" |
4838 | "You have the package %s installed which is a python2 package. python2 has " |
4839 | @@ -1315,7 +1315,7 @@ msgid "" |
4840 | "universe component in /etc/apt/sources.list or remove %s" |
4841 | msgstr "" |
4842 | |
4843 | -#: ../DistUpgrade/DistUpgradeQuirks.py:1169 |
4844 | +#: ../DistUpgrade/DistUpgradeQuirks.py:1189 |
4845 | msgid "Checking for installed snaps" |
4846 | msgstr "Kontrolují se nainstalované snapy" |
4847 | |
4848 | diff --git a/po/csb.po b/po/csb.po |
4849 | index 5397f62..43721cc 100644 |
4850 | --- a/po/csb.po |
4851 | +++ b/po/csb.po |
4852 | @@ -8,7 +8,7 @@ msgid "" |
4853 | msgstr "" |
4854 | "Project-Id-Version: update-manager\n" |
4855 | "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" |
4856 | -"POT-Creation-Date: 2023-04-03 16:33+0000\n" |
4857 | +"POT-Creation-Date: 2023-04-12 13:41+0000\n" |
4858 | "PO-Revision-Date: 2013-05-22 11:00+0000\n" |
4859 | "Last-Translator: Yurek Hinz <yurekh@yahoo.com>\n" |
4860 | "Language-Team: Kashubian <csb@li.org>\n" |
4861 | @@ -929,11 +929,11 @@ msgstr "Proszã włożëc '%s' do nëkù '%s'" |
4862 | msgid "Media Change" |
4863 | msgstr "Zmiana media" |
4864 | |
4865 | -#: ../DistUpgrade/DistUpgradeQuirks.py:237 |
4866 | +#: ../DistUpgrade/DistUpgradeQuirks.py:239 |
4867 | msgid "Your graphics hardware may not be fully supported in Ubuntu 14.04." |
4868 | msgstr "" |
4869 | |
4870 | -#: ../DistUpgrade/DistUpgradeQuirks.py:239 |
4871 | +#: ../DistUpgrade/DistUpgradeQuirks.py:241 |
4872 | msgid "" |
4873 | "Running the 'unity' desktop environment is not fully supported by your " |
4874 | "graphics hardware. You will maybe end up in a very slow environment after " |
4875 | @@ -943,11 +943,11 @@ msgid "" |
4876 | "upgrade?" |
4877 | msgstr "" |
4878 | |
4879 | -#: ../DistUpgrade/DistUpgradeQuirks.py:263 |
4880 | +#: ../DistUpgrade/DistUpgradeQuirks.py:265 |
4881 | msgid "Your graphics hardware may not be fully supported in Ubuntu 12.04 LTS." |
4882 | msgstr "" |
4883 | |
4884 | -#: ../DistUpgrade/DistUpgradeQuirks.py:265 |
4885 | +#: ../DistUpgrade/DistUpgradeQuirks.py:267 |
4886 | msgid "" |
4887 | "The support in Ubuntu 12.04 LTS for your Intel graphics hardware is limited " |
4888 | "and you may encounter problems after the upgrade. For more information see " |
4889 | @@ -955,13 +955,13 @@ msgid "" |
4890 | "continue with the upgrade?" |
4891 | msgstr "" |
4892 | |
4893 | -#: ../DistUpgrade/DistUpgradeQuirks.py:285 |
4894 | +#: ../DistUpgrade/DistUpgradeQuirks.py:287 |
4895 | msgid "" |
4896 | "Upgrading may reduce desktop effects, and performance in games and other " |
4897 | "graphically intensive programs." |
4898 | msgstr "" |
4899 | |
4900 | -#: ../DistUpgrade/DistUpgradeQuirks.py:289 |
4901 | +#: ../DistUpgrade/DistUpgradeQuirks.py:291 |
4902 | msgid "" |
4903 | "This computer is currently using the AMD 'fglrx' graphics driver. No version " |
4904 | "of this driver is available that works with your hardware in Ubuntu 10.04 " |
4905 | @@ -974,12 +974,12 @@ msgstr "" |
4906 | "\n" |
4907 | "Jisc dali?" |
4908 | |
4909 | -#: ../DistUpgrade/DistUpgradeQuirks.py:328 |
4910 | -#: ../DistUpgrade/DistUpgradeQuirks.py:397 |
4911 | +#: ../DistUpgrade/DistUpgradeQuirks.py:330 |
4912 | +#: ../DistUpgrade/DistUpgradeQuirks.py:399 |
4913 | msgid "Sorry, no more upgrades for this system" |
4914 | msgstr "" |
4915 | |
4916 | -#: ../DistUpgrade/DistUpgradeQuirks.py:329 |
4917 | +#: ../DistUpgrade/DistUpgradeQuirks.py:331 |
4918 | #, python-format |
4919 | msgid "" |
4920 | "There will not be any further Ubuntu releases for this system's 'i386' " |
4921 | @@ -988,11 +988,11 @@ msgid "" |
4922 | "Updates for Ubuntu %s will continue until %s." |
4923 | msgstr "" |
4924 | |
4925 | -#: ../DistUpgrade/DistUpgradeQuirks.py:344 |
4926 | +#: ../DistUpgrade/DistUpgradeQuirks.py:346 |
4927 | msgid "No ARMv6 CPU" |
4928 | msgstr "Felënk procesora ARMv6" |
4929 | |
4930 | -#: ../DistUpgrade/DistUpgradeQuirks.py:345 |
4931 | +#: ../DistUpgrade/DistUpgradeQuirks.py:347 |
4932 | msgid "" |
4933 | "Your system uses an ARM CPU that is older than the ARMv6 architecture. All " |
4934 | "packages in karmic were built with optimizations requiring ARMv6 as the " |
4935 | @@ -1000,12 +1000,12 @@ msgid "" |
4936 | "Ubuntu release with this hardware." |
4937 | msgstr "" |
4938 | |
4939 | -#: ../DistUpgrade/DistUpgradeQuirks.py:365 |
4940 | +#: ../DistUpgrade/DistUpgradeQuirks.py:367 |
4941 | msgid "" |
4942 | "Sorry, this storage driver is not supported in kernels for newer releases" |
4943 | msgstr "" |
4944 | |
4945 | -#: ../DistUpgrade/DistUpgradeQuirks.py:367 |
4946 | +#: ../DistUpgrade/DistUpgradeQuirks.py:369 |
4947 | #, python-format |
4948 | msgid "" |
4949 | "There will not be any further Ubuntu releases that provide kernel support " |
4950 | @@ -1015,7 +1015,7 @@ msgid "" |
4951 | "driver, remove the directory %s and try again." |
4952 | msgstr "" |
4953 | |
4954 | -#: ../DistUpgrade/DistUpgradeQuirks.py:398 |
4955 | +#: ../DistUpgrade/DistUpgradeQuirks.py:400 |
4956 | #, python-format |
4957 | msgid "" |
4958 | "There will not be any further Ubuntu releases for this system's POWER8 " |
4959 | @@ -1024,11 +1024,11 @@ msgid "" |
4960 | "Updates for Ubuntu %s will continue until %s." |
4961 | msgstr "" |
4962 | |
4963 | -#: ../DistUpgrade/DistUpgradeQuirks.py:416 |
4964 | +#: ../DistUpgrade/DistUpgradeQuirks.py:418 |
4965 | msgid "No init available" |
4966 | msgstr "Felënk przëstãpù do procesu init" |
4967 | |
4968 | -#: ../DistUpgrade/DistUpgradeQuirks.py:417 |
4969 | +#: ../DistUpgrade/DistUpgradeQuirks.py:419 |
4970 | msgid "" |
4971 | "Your system appears to be a virtualised environment without an init daemon, " |
4972 | "e.g. Linux-VServer. Ubuntu 10.04 LTS cannot function within this type of " |
4973 | @@ -1038,11 +1038,11 @@ msgid "" |
4974 | "Are you sure you want to continue?" |
4975 | msgstr "" |
4976 | |
4977 | -#: ../DistUpgrade/DistUpgradeQuirks.py:458 |
4978 | +#: ../DistUpgrade/DistUpgradeQuirks.py:460 |
4979 | msgid "The Robot Operating System (ROS) is installed" |
4980 | msgstr "" |
4981 | |
4982 | -#: ../DistUpgrade/DistUpgradeQuirks.py:459 |
4983 | +#: ../DistUpgrade/DistUpgradeQuirks.py:461 |
4984 | msgid "" |
4985 | "It appears that ROS is currently installed. Each ROS release is very strict " |
4986 | "about the versions of Ubuntu it supports, and Ubuntu upgrades can fail if " |
4987 | @@ -1059,11 +1059,11 @@ msgid "" |
4988 | "Are you sure you want to continue?" |
4989 | msgstr "" |
4990 | |
4991 | -#: ../DistUpgrade/DistUpgradeQuirks.py:634 |
4992 | +#: ../DistUpgrade/DistUpgradeQuirks.py:654 |
4993 | msgid "Connection to the Snap Store failed" |
4994 | msgstr "" |
4995 | |
4996 | -#: ../DistUpgrade/DistUpgradeQuirks.py:635 |
4997 | +#: ../DistUpgrade/DistUpgradeQuirks.py:655 |
4998 | msgid "" |
4999 | "You have the package lxd installed but your system is unable to reach the " |
5000 | "Snap Store. lxd is now provided via a snap and the release upgrade will fail " |
The diff has been truncated for viewing.
Thanks!