diff -Nru ubuntu-release-upgrader-24.04.17/DistUpgrade/DistUpgradeQuirks.py ubuntu-release-upgrader-24.04.18/DistUpgrade/DistUpgradeQuirks.py --- ubuntu-release-upgrader-24.04.17/DistUpgrade/DistUpgradeQuirks.py 2024-04-29 14:26:40.000000000 +0000 +++ ubuntu-release-upgrader-24.04.18/DistUpgrade/DistUpgradeQuirks.py 2024-05-09 19:36:16.000000000 +0000 @@ -125,6 +125,7 @@ self._test_and_fail_on_power8() self._test_and_fail_on_bios_with_xfs_boot() self._test_and_fail_on_armhf_raspi() + self._test_and_fail_on_tpm_fde() cache = self.controller.cache self._test_and_warn_if_ros_installed(cache) @@ -156,6 +157,9 @@ if 'ubuntu-desktop-raspi' in cache: if cache['ubuntu-desktop-raspi'].is_installed: self._replace_fkms_overlay() + if 'ubuntu-server-raspi' in cache: + if cache['ubuntu-server-raspi'].is_installed: + self._add_kms_overlay() if 'linux-firmware-raspi2' in cache: if cache['linux-firmware-raspi2'].is_installed: self._remove_uboot_on_rpi() @@ -1284,6 +1288,23 @@ self._snap_list[snap] = snap_object return self._snap_list + def _replace_pi_boot_config(self, old_config, new_config, + boot_config_filename, failure_action): + try: + boot_backup_filename = boot_config_filename + '.distUpgrade' + with open(boot_backup_filename, 'w', encoding='utf-8') as f: + f.write(old_config) + except IOError as exc: + logging.error("unable to write boot config backup to %s: %s; %s", + boot_backup_filename, exc, failure_action) + return + try: + with open(boot_config_filename, 'w', encoding='utf-8') as f: + f.write(new_config) + except IOError as exc: + logging.error("unable to write new boot config to %s: %s; %s", + boot_config_filename, exc, failure_action) + def _replace_fkms_overlay(self, boot_dir='/boot/firmware'): failure_action = ( "You may need to replace the vc4-fkms-v3d overlay with " @@ -1318,22 +1339,80 @@ logging.warning("no fkms overlay or camera firmware line found " "in %s", boot_config_filename) return + self._replace_pi_boot_config( + boot_config, new_config, boot_config_filename, failure_action) + def _add_kms_overlay(self, boot_dir='/boot/firmware'): + failure_action = ( + "You may need to add dtoverlay=vc4-kms-v3d to an [all] section " + "in config.txt on your boot partition") + added_lines = [ + '# added by do-release-upgrade (LP: #2065051)', + 'dtoverlay=vc4-kms-v3d', + 'disable_fw_kms_setup=1', + '', + '[pi3+]', + 'dtoverlay=vc4-kms-v3d,cma-128', + '', + '[pi02]', + 'dtoverlay=vc4-kms-v3d,cma-128', + '', + '[all]', + ] try: - boot_backup_filename = os.path.join( - boot_dir, 'config.txt.distUpgrade') - with open(boot_backup_filename, 'w', encoding='utf-8') as f: - f.write(boot_config) - except IOError as exc: - logging.error("unable to write boot config backup to %s: %s; %s", - boot_backup_filename, exc, failure_action) + boot_config_filename = os.path.join(boot_dir, 'config.txt') + with open(boot_config_filename, 'r', encoding='utf-8') as f: + boot_config = f.read() + except FileNotFoundError: + logging.error("failed to open boot configuration in %s; %s", + boot_config_filename, failure_action) return - try: - with open(boot_config_filename, 'w', encoding='utf-8') as f: - f.write(new_config) - except IOError as exc: - logging.error("unable to write new boot config to %s: %s; %s", - boot_config_filename, exc, failure_action) + + def find_insertion_point(lines): + # Returns the zero-based index of the dtoverlay=vc4-kms-v3d line in + # an [all] section, if one exists, or the last line of the last + # [all] section of the file, if one does not exist + in_all = True + last = 0 + for index, line in enumerate(lines): + line = line.rstrip() + if in_all: + last = index + # startswith used to cope with any trailing dtparams + if line.startswith('dtoverlay=vc4-kms-v3d'): + return last + elif line.startswith('[') and line.endswith(']'): + in_all = line == '[all]' + elif line.startswith('include '): + # [sections] are included from includes verbatim, hence + # (without reading the included file) we must assume + # we're no longer in an [all] section + in_all = False + else: + in_all = line == '[all]' + return last + + def add_kms_overlay(lines): + insert_point = find_insertion_point(lines) + try: + if lines[insert_point].startswith('dtoverlay=vc4-kms-v3d'): + return lines + except IndexError: + # Empty config, apparently! + pass + lines[insert_point:insert_point] = added_lines + return lines + + lines = [line.rstrip() for line in boot_config.splitlines()] + lines = add_kms_overlay(lines) + new_config = ''.join(line + '\n' for line in lines) + + if new_config == boot_config: + logging.warning("no addition of KMS overlay required in %s", + boot_config_filename) + return + self._replace_pi_boot_config( + boot_config, new_config, boot_config_filename, failure_action) def _remove_uboot_on_rpi(self, boot_dir='/boot/firmware'): kernel_line = 'kernel=vmlinuz' @@ -1452,21 +1531,8 @@ logging.warning("no u-boot removal performed in %s", boot_config_filename) return - - try: - boot_backup_filename = boot_config_filename + '.distUpgrade' - with open(boot_backup_filename, 'w', encoding='utf-8') as f: - f.write(boot_config) - except IOError as exc: - logging.error("unable to write boot config backup to %s: %s; %s", - boot_backup_filename, exc, failure_action) - return - try: - with open(boot_config_filename, 'w', encoding='utf-8') as f: - f.write(new_config) - except IOError as exc: - logging.error("unable to write new boot config to %s: %s; %s", - boot_config_filename, exc, failure_action) + self._replace_pi_boot_config( + boot_config, new_config, boot_config_filename, failure_action) def _set_generic_font(self): """ Due to changes to the Ubuntu font we enable a generic font @@ -1835,3 +1901,38 @@ if remove_ufw: ufw.mark_delete(auto_fix=False) apt.ProblemResolver(self.controller.cache).protect(ufw) + + def _test_and_fail_on_tpm_fde(self): + """ + LP: #2065229 + """ + try: + snap_list = subprocess.check_output(['snap', 'list']) + snaps = [s.decode().split()[0] for s in snap_list.splitlines()] + except FileNotFoundError: + # snapd not installed? + return + + if ( + 'pc-kernel' in snaps and + 'ubuntu-desktop-minimal' in self.controller.cache and + self.controller.cache['ubuntu-desktop-minimal'].is_installed + ): + logging.debug('Detected TPM FDE system') + + di = distro_info.UbuntuDistroInfo() + version = di.version(self.controller.toDist) or 'next release' + + self._view.error( + _( + f'Sorry, cannot upgrade this system to {version}' + ), + _( + 'Upgrades for desktop systems running TPM FDE are not ' + 'currently supported. ' + 'Please see https://launchpad.net/bugs/2065229 ' + 'for more information.' + + ), + ) + self.controller.abort() diff -Nru ubuntu-release-upgrader-24.04.17/DistUpgrade/DistUpgradeVersion.py ubuntu-release-upgrader-24.04.18/DistUpgrade/DistUpgradeVersion.py --- ubuntu-release-upgrader-24.04.17/DistUpgrade/DistUpgradeVersion.py 2024-04-29 14:26:40.000000000 +0000 +++ ubuntu-release-upgrader-24.04.18/DistUpgrade/DistUpgradeVersion.py 2024-05-09 19:39:28.000000000 +0000 @@ -1 +1 @@ -VERSION = '24.04.17' +VERSION = '24.04.18' diff -Nru ubuntu-release-upgrader-24.04.17/data/mirrors.cfg ubuntu-release-upgrader-24.04.18/data/mirrors.cfg --- ubuntu-release-upgrader-24.04.17/data/mirrors.cfg 2024-04-29 14:26:40.000000000 +0000 +++ ubuntu-release-upgrader-24.04.18/data/mirrors.cfg 2024-05-09 19:39:28.000000000 +0000 @@ -577,7 +577,6 @@ http://mirror-mk.interspace.com/ubuntu/ https://mirror.hoobly.com/ubuntu/ http://mirrors.iitd.ac.in/ubuntu/ -https://ubuntu.bardia.tech/ https://mirror.fsmg.org.nz/ubuntu/ http://download.nus.edu.sg/mirror/ubuntu/ https://mirrors.zju.edu.cn/ubuntu/ @@ -666,3 +665,10 @@ http://mirror.its-tps.fr/ubuntu/ http://archive.ubuntu.moon127.net/ https://mirrors.gethosted.online/ubuntu/ +https://ubuntu.pars.host/ +https://mirror.herza.id/ubuntu/ +https://mirrors.hust.edu.cn/ubuntu/ +http://mirrors.jcut.edu.cn/ubuntu/ +https://mirrors.nivacloud.net/ubuntu/ +https://mirror.fra.macarne.com/ubuntu/ +http://mirrors.mivocloud.com/ubuntu/ diff -Nru ubuntu-release-upgrader-24.04.17/debian/changelog ubuntu-release-upgrader-24.04.18/debian/changelog --- ubuntu-release-upgrader-24.04.17/debian/changelog 2024-04-29 14:26:40.000000000 +0000 +++ ubuntu-release-upgrader-24.04.18/debian/changelog 2024-05-09 19:39:56.000000000 +0000 @@ -1,3 +1,15 @@ +ubuntu-release-upgrader (1:24.04.18) noble; urgency=medium + + [ Nick Rosbrook ] + * tests: fix un-templated expected ubuntu.sources + * DistUpgradeQuirks: prevent upgrades of TPM FDE desktops (LP: #2065229) + * Run pre-build.sh: updating mirrors, demotions, and translations. + + [ Dave Jones ] + * New quirk to add KMS overlay on Pi Server images (LP: #2065051) + + -- Nick Rosbrook Thu, 09 May 2024 15:39:56 -0400 + ubuntu-release-upgrader (1:24.04.17) noble; urgency=medium [ Nick Rosbrook ] diff -Nru ubuntu-release-upgrader-24.04.17/po/af.po ubuntu-release-upgrader-24.04.18/po/af.po --- ubuntu-release-upgrader-24.04.17/po/af.po 2024-04-29 14:26:40.000000000 +0000 +++ ubuntu-release-upgrader-24.04.18/po/af.po 2024-05-09 19:39:15.000000000 +0000 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2024-04-29 16:03+0200\n" +"POT-Creation-Date: 2024-05-09 15:39-0400\n" "PO-Revision-Date: 2013-05-22 11:00+0000\n" "Last-Translator: Brian Murray \n" "Language-Team: Afrikaans \n" @@ -1081,12 +1081,12 @@ msgid "Media Change" msgstr "Media verwisseling" -#: ../DistUpgrade/DistUpgradeQuirks.py:248 +#: ../DistUpgrade/DistUpgradeQuirks.py:252 msgid "Your graphics hardware may not be fully supported in Ubuntu 14.04." msgstr "" "Jou grafika apparatuur is dalk nie ten volle ondersteun in Ubuntu 14.04." -#: ../DistUpgrade/DistUpgradeQuirks.py:250 +#: ../DistUpgrade/DistUpgradeQuirks.py:254 msgid "" "Running the 'unity' desktop environment is not fully supported by your " "graphics hardware. You will maybe end up in a very slow environment after " @@ -1101,13 +1101,13 @@ "inligting, sien https://wiki.ubuntu.com/X/Bugs/" "UpdateManagerWarningForUnity3D Wil jy steeds voortgaan met die opgrader?" -#: ../DistUpgrade/DistUpgradeQuirks.py:274 +#: ../DistUpgrade/DistUpgradeQuirks.py:278 msgid "Your graphics hardware may not be fully supported in Ubuntu 12.04 LTS." msgstr "" "Jou grafikahardeware is dalk nie ten volle ondersteun in Ubuntu 12,04 LTS " "nie." -#: ../DistUpgrade/DistUpgradeQuirks.py:276 +#: ../DistUpgrade/DistUpgradeQuirks.py:280 msgid "" "The support in Ubuntu 12.04 LTS for your Intel graphics hardware is limited " "and you may encounter problems after the upgrade. For more information see " @@ -1119,7 +1119,7 @@ "sien https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForI8xx Wil jy " "voortgaan met die opgrader?" -#: ../DistUpgrade/DistUpgradeQuirks.py:296 +#: ../DistUpgrade/DistUpgradeQuirks.py:300 msgid "" "Upgrading may reduce desktop effects, and performance in games and other " "graphically intensive programs." @@ -1127,7 +1127,7 @@ "Opgradering kan dalk werkskerm effekte en werkverrigting in speletjies en " "ander grafies intensiewe programme verminder." -#: ../DistUpgrade/DistUpgradeQuirks.py:300 +#: ../DistUpgrade/DistUpgradeQuirks.py:304 msgid "" "This computer is currently using the AMD 'fglrx' graphics driver. No version " "of this driver is available that works with your hardware in Ubuntu 10.04 " @@ -1141,12 +1141,12 @@ "\n" "Wil jy voortgaan?" -#: ../DistUpgrade/DistUpgradeQuirks.py:339 -#: ../DistUpgrade/DistUpgradeQuirks.py:408 +#: ../DistUpgrade/DistUpgradeQuirks.py:343 +#: ../DistUpgrade/DistUpgradeQuirks.py:412 msgid "Sorry, no more upgrades for this system" msgstr "Jammer, geen opgraderings meer vir hierdie stelsel nie" -#: ../DistUpgrade/DistUpgradeQuirks.py:340 +#: ../DistUpgrade/DistUpgradeQuirks.py:344 #, python-format msgid "" "There will not be any further Ubuntu releases for this system's 'i386' " @@ -1159,11 +1159,11 @@ "\n" "Opdaterings vir Ubuntu %s sal voortgaan tot %s." -#: ../DistUpgrade/DistUpgradeQuirks.py:355 +#: ../DistUpgrade/DistUpgradeQuirks.py:359 msgid "No ARMv6 CPU" msgstr "Geen ARMv6 verwerker" -#: ../DistUpgrade/DistUpgradeQuirks.py:356 +#: ../DistUpgrade/DistUpgradeQuirks.py:360 msgid "" "Your system uses an ARM CPU that is older than the ARMv6 architecture. All " "packages in karmic were built with optimizations requiring ARMv6 as the " @@ -1175,12 +1175,12 @@ "argitektuur. Dit is nie moontlik om jou stelsel op te gradeer na 'n nuwe " "Ubuntu vrystelling met hierdie hardeware." -#: ../DistUpgrade/DistUpgradeQuirks.py:376 +#: ../DistUpgrade/DistUpgradeQuirks.py:380 msgid "" "Sorry, this storage driver is not supported in kernels for newer releases" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:378 +#: ../DistUpgrade/DistUpgradeQuirks.py:382 #, python-format msgid "" "There will not be any further Ubuntu releases that provide kernel support " @@ -1190,7 +1190,7 @@ "driver, remove the directory %s and try again." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:409 +#: ../DistUpgrade/DistUpgradeQuirks.py:413 #, fuzzy, python-format msgid "" "There will not be any further Ubuntu releases for this system's POWER8 " @@ -1203,11 +1203,11 @@ "\n" "Opdaterings vir Ubuntu %s sal voortgaan tot %s." -#: ../DistUpgrade/DistUpgradeQuirks.py:427 +#: ../DistUpgrade/DistUpgradeQuirks.py:431 msgid "No init available" msgstr "Geen init beskikbaar" -#: ../DistUpgrade/DistUpgradeQuirks.py:428 +#: ../DistUpgrade/DistUpgradeQuirks.py:432 msgid "" "Your system appears to be a virtualised environment without an init daemon, " "e.g. Linux-VServer. Ubuntu 10.04 LTS cannot function within this type of " @@ -1223,11 +1223,11 @@ "\n" "Is jy seker jy wil voortgaan?" -#: ../DistUpgrade/DistUpgradeQuirks.py:469 +#: ../DistUpgrade/DistUpgradeQuirks.py:473 msgid "The Robot Operating System (ROS) is installed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:470 +#: ../DistUpgrade/DistUpgradeQuirks.py:474 msgid "" "It appears that ROS is currently installed. Each ROS release is very strict " "about the versions of Ubuntu it supports, and Ubuntu upgrades can fail if " @@ -1244,12 +1244,12 @@ "Are you sure you want to continue?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:670 +#: ../DistUpgrade/DistUpgradeQuirks.py:674 #, fuzzy msgid "Connection to the Snap Store failed" msgstr "Verbinding aan snap Winkel gefaal" -#: ../DistUpgrade/DistUpgradeQuirks.py:671 +#: ../DistUpgrade/DistUpgradeQuirks.py:675 msgid "" "You have the package lxd installed but your system is unable to reach the " "Snap Store. lxd is now provided via a snap and the release upgrade will fail " @@ -1259,11 +1259,11 @@ "may want to configure a Snap Store proxy." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:686 +#: ../DistUpgrade/DistUpgradeQuirks.py:690 msgid "Connection to Snap Store failed" msgstr "Verbinding aan snap Winkel gefaal" -#: ../DistUpgrade/DistUpgradeQuirks.py:687 +#: ../DistUpgrade/DistUpgradeQuirks.py:691 msgid "" "Your system does not have a connection to the Snap Store. For the best " "upgrade experience make sure that your system can connect to api.snapcraft." @@ -1275,11 +1275,11 @@ "io.\n" "Wil jy steeds voortgaan met die opgradering?" -#: ../DistUpgrade/DistUpgradeQuirks.py:696 +#: ../DistUpgrade/DistUpgradeQuirks.py:700 msgid "Outdated snapd package" msgstr "Verouderde snapd pakket" -#: ../DistUpgrade/DistUpgradeQuirks.py:697 +#: ../DistUpgrade/DistUpgradeQuirks.py:701 msgid "" "Your system does not have the latest version of snapd. Please update the " "version of snapd on your system to improve the upgrade experience.\n" @@ -1291,36 +1291,36 @@ #. now perform direct API calls to the store, requesting size #. information for each of the snaps needing installation -#: ../DistUpgrade/DistUpgradeQuirks.py:722 +#: ../DistUpgrade/DistUpgradeQuirks.py:726 msgid "Calculating snap size requirements" msgstr "Berekening van snap grootte vereistes" -#: ../DistUpgrade/DistUpgradeQuirks.py:753 +#: ../DistUpgrade/DistUpgradeQuirks.py:757 msgid "Processing snap replacements" msgstr "Verwerking snap plaasvervangers" #. TODO: This status should be updated, but the time of #. this change to snap switch is post-translation freeze. -#: ../DistUpgrade/DistUpgradeQuirks.py:761 +#: ../DistUpgrade/DistUpgradeQuirks.py:765 #, python-format msgid "refreshing snap %s" msgstr "verfris snap %s" -#: ../DistUpgrade/DistUpgradeQuirks.py:765 +#: ../DistUpgrade/DistUpgradeQuirks.py:769 #, fuzzy, python-format msgid "removing snap %s" msgstr "verfris snap %s" -#: ../DistUpgrade/DistUpgradeQuirks.py:768 +#: ../DistUpgrade/DistUpgradeQuirks.py:772 #, python-format msgid "installing snap %s" msgstr "installeer snap %s" -#: ../DistUpgrade/DistUpgradeQuirks.py:797 +#: ../DistUpgrade/DistUpgradeQuirks.py:801 msgid "PAE not enabled" msgstr "PAE nie geaktiveer" -#: ../DistUpgrade/DistUpgradeQuirks.py:798 +#: ../DistUpgrade/DistUpgradeQuirks.py:802 msgid "" "Your system uses a CPU that does not have PAE enabled. Ubuntu only supports " "non-PAE systems up to Ubuntu 12.04. To upgrade to a later version of Ubuntu, " @@ -1332,11 +1332,11 @@ "weergawe van Ubuntu, moet jy PAE (indien dit moontlik is) sien:\n" "http://help.ubuntu.com/community/EnablingPAE" -#: ../DistUpgrade/DistUpgradeQuirks.py:1094 +#: ../DistUpgrade/DistUpgradeQuirks.py:1098 msgid "universe component not enabled" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1095 +#: ../DistUpgrade/DistUpgradeQuirks.py:1099 #, python-format msgid "" "You have the package %s installed which is a python2 package. python2 has " @@ -1348,39 +1348,50 @@ "universe component in /etc/apt/sources.list or remove %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1207 +#: ../DistUpgrade/DistUpgradeQuirks.py:1211 msgid "Checking for installed snaps" msgstr "Kontrolering vir geïnstalleerde snaps" -#: ../DistUpgrade/DistUpgradeQuirks.py:1654 +#: ../DistUpgrade/DistUpgradeQuirks.py:1720 #, fuzzy msgid "Cannot upgrade this system" msgstr "Kan nie opgradeer nie" -#: ../DistUpgrade/DistUpgradeQuirks.py:1655 +#: ../DistUpgrade/DistUpgradeQuirks.py:1721 msgid "" "Due to a bug in grub, this system cannot be safely upgraded at this time.\n" "\n" "See https://launchpad.net/bugs/2039172." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1721 +#: ../DistUpgrade/DistUpgradeQuirks.py:1787 #, python-brace-format msgid "Updates for Ubuntu {from_release.version} will " msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1731 +#: ../DistUpgrade/DistUpgradeQuirks.py:1797 #, fuzzy msgid "Sorry, cannot upgrade this system to 24.04 LTS" msgstr "Kan nie opgradeer nie" -#: ../DistUpgrade/DistUpgradeQuirks.py:1734 +#: ../DistUpgrade/DistUpgradeQuirks.py:1800 msgid "" "The Raspberry Pi kernel for Ubuntu 24.04 LTS does not support the armhf " "architecture.\n" "\n" msgstr "" +#: ../DistUpgrade/DistUpgradeQuirks.py:1928 +#, fuzzy, python-brace-format +msgid "Sorry, cannot upgrade this system to {version}" +msgstr "Kan nie opgradeer nie" + +#: ../DistUpgrade/DistUpgradeQuirks.py:1931 +msgid "" +"Upgrades for desktop systems running TPM FDE are not currently supported. " +"Please see https://launchpad.net/bugs/2065229 for more information." +msgstr "" + #: ../DistUpgrade/DistUpgradeMain.py:62 msgid "" "Use frontend. Currently available: \n" diff -Nru ubuntu-release-upgrader-24.04.17/po/am.po ubuntu-release-upgrader-24.04.18/po/am.po --- ubuntu-release-upgrader-24.04.17/po/am.po 2024-04-29 14:26:40.000000000 +0000 +++ ubuntu-release-upgrader-24.04.18/po/am.po 2024-05-09 19:39:15.000000000 +0000 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2024-04-29 16:03+0200\n" +"POT-Creation-Date: 2024-05-09 15:39-0400\n" "PO-Revision-Date: 2013-05-22 11:00+0000\n" "Last-Translator: Brian Murray \n" "Language-Team: Amharic \n" @@ -984,11 +984,11 @@ msgid "Media Change" msgstr "የሜዲያ ለውጥ" -#: ../DistUpgrade/DistUpgradeQuirks.py:248 +#: ../DistUpgrade/DistUpgradeQuirks.py:252 msgid "Your graphics hardware may not be fully supported in Ubuntu 14.04." msgstr "የ እርስዎ graphics ጠንካራ አክል ሙሉ በ ሙሉ የ ተደገፈ ላይሆን ይችላል በ ኡቡንቱ 14.04." -#: ../DistUpgrade/DistUpgradeQuirks.py:250 +#: ../DistUpgrade/DistUpgradeQuirks.py:254 msgid "" "Running the 'unity' desktop environment is not fully supported by your " "graphics hardware. You will maybe end up in a very slow environment after " @@ -1002,11 +1002,11 @@ "መረጃ ይህን ይመልከቱ: https://wiki.ubuntu.com/X/Bugs/" "UpdateManagerWarningForUnity3D እርስዎ ማሻሻሉን መቀጠል ይፈልጋሉ?" -#: ../DistUpgrade/DistUpgradeQuirks.py:274 +#: ../DistUpgrade/DistUpgradeQuirks.py:278 msgid "Your graphics hardware may not be fully supported in Ubuntu 12.04 LTS." msgstr "የ እርስዎ graphics hardware በ ሙሉ የተደገፈ አይደለም በ ኡቡንቱ 12.04 LTS." -#: ../DistUpgrade/DistUpgradeQuirks.py:276 +#: ../DistUpgrade/DistUpgradeQuirks.py:280 msgid "" "The support in Ubuntu 12.04 LTS for your Intel graphics hardware is limited " "and you may encounter problems after the upgrade. For more information see " @@ -1017,7 +1017,7 @@ "ሊያጋጥምዎት ይችላል ከ ተሻሻለ በኋላ: ለ በለጠ መረጃ ይህን ይመልከቱ https://wiki.ubuntu.com/X/Bugs/" "UpdateManagerWarningForI8xx እርስዎ ማሻሻሉን መቀጠል ይፈልጋሉ?" -#: ../DistUpgrade/DistUpgradeQuirks.py:296 +#: ../DistUpgrade/DistUpgradeQuirks.py:300 msgid "" "Upgrading may reduce desktop effects, and performance in games and other " "graphically intensive programs." @@ -1025,7 +1025,7 @@ "ማሻሻል የ ዴስክቶፕ ውጤቶችን ሊቀንስ ይችላል: ጨዋታዎች በሚጫወቱ ጊዜ ወይንም ሀይለኛ graphics ፕሮግራሞችን " "በሚጠቀሙ ጊዜ" -#: ../DistUpgrade/DistUpgradeQuirks.py:300 +#: ../DistUpgrade/DistUpgradeQuirks.py:304 msgid "" "This computer is currently using the AMD 'fglrx' graphics driver. No version " "of this driver is available that works with your hardware in Ubuntu 10.04 " @@ -1038,12 +1038,12 @@ "\n" "እርስዎ በ እርግጥ መቀጠል ይፈልጋሉ?" -#: ../DistUpgrade/DistUpgradeQuirks.py:339 -#: ../DistUpgrade/DistUpgradeQuirks.py:408 +#: ../DistUpgrade/DistUpgradeQuirks.py:343 +#: ../DistUpgrade/DistUpgradeQuirks.py:412 msgid "Sorry, no more upgrades for this system" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:340 +#: ../DistUpgrade/DistUpgradeQuirks.py:344 #, python-format msgid "" "There will not be any further Ubuntu releases for this system's 'i386' " @@ -1052,11 +1052,11 @@ "Updates for Ubuntu %s will continue until %s." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:355 +#: ../DistUpgrade/DistUpgradeQuirks.py:359 msgid "No ARMv6 CPU" msgstr "No ARMv6 CPU" -#: ../DistUpgrade/DistUpgradeQuirks.py:356 +#: ../DistUpgrade/DistUpgradeQuirks.py:360 msgid "" "Your system uses an ARM CPU that is older than the ARMv6 architecture. All " "packages in karmic were built with optimizations requiring ARMv6 as the " @@ -1064,12 +1064,12 @@ "Ubuntu release with this hardware." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:376 +#: ../DistUpgrade/DistUpgradeQuirks.py:380 msgid "" "Sorry, this storage driver is not supported in kernels for newer releases" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:378 +#: ../DistUpgrade/DistUpgradeQuirks.py:382 #, python-format msgid "" "There will not be any further Ubuntu releases that provide kernel support " @@ -1079,7 +1079,7 @@ "driver, remove the directory %s and try again." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:409 +#: ../DistUpgrade/DistUpgradeQuirks.py:413 #, python-format msgid "" "There will not be any further Ubuntu releases for this system's POWER8 " @@ -1088,11 +1088,11 @@ "Updates for Ubuntu %s will continue until %s." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:427 +#: ../DistUpgrade/DistUpgradeQuirks.py:431 msgid "No init available" msgstr "ምንም ማስጀመሪያ ዝግጁ አይደለም" -#: ../DistUpgrade/DistUpgradeQuirks.py:428 +#: ../DistUpgrade/DistUpgradeQuirks.py:432 msgid "" "Your system appears to be a virtualised environment without an init daemon, " "e.g. Linux-VServer. Ubuntu 10.04 LTS cannot function within this type of " @@ -1102,11 +1102,11 @@ "Are you sure you want to continue?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:469 +#: ../DistUpgrade/DistUpgradeQuirks.py:473 msgid "The Robot Operating System (ROS) is installed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:470 +#: ../DistUpgrade/DistUpgradeQuirks.py:474 msgid "" "It appears that ROS is currently installed. Each ROS release is very strict " "about the versions of Ubuntu it supports, and Ubuntu upgrades can fail if " @@ -1123,11 +1123,11 @@ "Are you sure you want to continue?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:670 +#: ../DistUpgrade/DistUpgradeQuirks.py:674 msgid "Connection to the Snap Store failed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:671 +#: ../DistUpgrade/DistUpgradeQuirks.py:675 msgid "" "You have the package lxd installed but your system is unable to reach the " "Snap Store. lxd is now provided via a snap and the release upgrade will fail " @@ -1137,11 +1137,11 @@ "may want to configure a Snap Store proxy." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:686 +#: ../DistUpgrade/DistUpgradeQuirks.py:690 msgid "Connection to Snap Store failed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:687 +#: ../DistUpgrade/DistUpgradeQuirks.py:691 msgid "" "Your system does not have a connection to the Snap Store. For the best " "upgrade experience make sure that your system can connect to api.snapcraft." @@ -1149,11 +1149,11 @@ "Do you still want to continue with the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:696 +#: ../DistUpgrade/DistUpgradeQuirks.py:700 msgid "Outdated snapd package" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:697 +#: ../DistUpgrade/DistUpgradeQuirks.py:701 msgid "" "Your system does not have the latest version of snapd. Please update the " "version of snapd on your system to improve the upgrade experience.\n" @@ -1162,36 +1162,36 @@ #. now perform direct API calls to the store, requesting size #. information for each of the snaps needing installation -#: ../DistUpgrade/DistUpgradeQuirks.py:722 +#: ../DistUpgrade/DistUpgradeQuirks.py:726 msgid "Calculating snap size requirements" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:753 +#: ../DistUpgrade/DistUpgradeQuirks.py:757 msgid "Processing snap replacements" msgstr "" #. TODO: This status should be updated, but the time of #. this change to snap switch is post-translation freeze. -#: ../DistUpgrade/DistUpgradeQuirks.py:761 +#: ../DistUpgrade/DistUpgradeQuirks.py:765 #, python-format msgid "refreshing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:765 +#: ../DistUpgrade/DistUpgradeQuirks.py:769 #, python-format msgid "removing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:768 +#: ../DistUpgrade/DistUpgradeQuirks.py:772 #, python-format msgid "installing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:797 +#: ../DistUpgrade/DistUpgradeQuirks.py:801 msgid "PAE not enabled" msgstr "PAE አላስቻሉም" -#: ../DistUpgrade/DistUpgradeQuirks.py:798 +#: ../DistUpgrade/DistUpgradeQuirks.py:802 msgid "" "Your system uses a CPU that does not have PAE enabled. Ubuntu only supports " "non-PAE systems up to Ubuntu 12.04. To upgrade to a later version of Ubuntu, " @@ -1203,11 +1203,11 @@ "ከሆነ) ይህን ይመልከቱ:\n" "http://help.ubuntu.com/community/EnablingPAE" -#: ../DistUpgrade/DistUpgradeQuirks.py:1094 +#: ../DistUpgrade/DistUpgradeQuirks.py:1098 msgid "universe component not enabled" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1095 +#: ../DistUpgrade/DistUpgradeQuirks.py:1099 #, python-format msgid "" "You have the package %s installed which is a python2 package. python2 has " @@ -1219,39 +1219,50 @@ "universe component in /etc/apt/sources.list or remove %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1207 +#: ../DistUpgrade/DistUpgradeQuirks.py:1211 msgid "Checking for installed snaps" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1654 +#: ../DistUpgrade/DistUpgradeQuirks.py:1720 #, fuzzy msgid "Cannot upgrade this system" msgstr "ማሻሻል አልተቻለም" -#: ../DistUpgrade/DistUpgradeQuirks.py:1655 +#: ../DistUpgrade/DistUpgradeQuirks.py:1721 msgid "" "Due to a bug in grub, this system cannot be safely upgraded at this time.\n" "\n" "See https://launchpad.net/bugs/2039172." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1721 +#: ../DistUpgrade/DistUpgradeQuirks.py:1787 #, python-brace-format msgid "Updates for Ubuntu {from_release.version} will " msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1731 +#: ../DistUpgrade/DistUpgradeQuirks.py:1797 #, fuzzy msgid "Sorry, cannot upgrade this system to 24.04 LTS" msgstr "ማሻሻል አልተቻለም" -#: ../DistUpgrade/DistUpgradeQuirks.py:1734 +#: ../DistUpgrade/DistUpgradeQuirks.py:1800 msgid "" "The Raspberry Pi kernel for Ubuntu 24.04 LTS does not support the armhf " "architecture.\n" "\n" msgstr "" +#: ../DistUpgrade/DistUpgradeQuirks.py:1928 +#, fuzzy, python-brace-format +msgid "Sorry, cannot upgrade this system to {version}" +msgstr "ማሻሻል አልተቻለም" + +#: ../DistUpgrade/DistUpgradeQuirks.py:1931 +msgid "" +"Upgrades for desktop systems running TPM FDE are not currently supported. " +"Please see https://launchpad.net/bugs/2065229 for more information." +msgstr "" + #: ../DistUpgrade/DistUpgradeMain.py:62 msgid "" "Use frontend. Currently available: \n" diff -Nru ubuntu-release-upgrader-24.04.17/po/an.po ubuntu-release-upgrader-24.04.18/po/an.po --- ubuntu-release-upgrader-24.04.17/po/an.po 2024-04-29 14:26:40.000000000 +0000 +++ ubuntu-release-upgrader-24.04.18/po/an.po 2024-05-09 19:39:15.000000000 +0000 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2024-04-29 16:03+0200\n" +"POT-Creation-Date: 2024-05-09 15:39-0400\n" "PO-Revision-Date: 2013-05-22 11:00+0000\n" "Last-Translator: Daniel Martinez \n" "Language-Team: Aragonese \n" @@ -927,11 +927,11 @@ msgid "Media Change" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:248 +#: ../DistUpgrade/DistUpgradeQuirks.py:252 msgid "Your graphics hardware may not be fully supported in Ubuntu 14.04." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:250 +#: ../DistUpgrade/DistUpgradeQuirks.py:254 msgid "" "Running the 'unity' desktop environment is not fully supported by your " "graphics hardware. You will maybe end up in a very slow environment after " @@ -941,11 +941,11 @@ "upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:274 +#: ../DistUpgrade/DistUpgradeQuirks.py:278 msgid "Your graphics hardware may not be fully supported in Ubuntu 12.04 LTS." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:276 +#: ../DistUpgrade/DistUpgradeQuirks.py:280 msgid "" "The support in Ubuntu 12.04 LTS for your Intel graphics hardware is limited " "and you may encounter problems after the upgrade. For more information see " @@ -953,13 +953,13 @@ "continue with the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:296 +#: ../DistUpgrade/DistUpgradeQuirks.py:300 msgid "" "Upgrading may reduce desktop effects, and performance in games and other " "graphically intensive programs." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:300 +#: ../DistUpgrade/DistUpgradeQuirks.py:304 msgid "" "This computer is currently using the AMD 'fglrx' graphics driver. No version " "of this driver is available that works with your hardware in Ubuntu 10.04 " @@ -968,12 +968,12 @@ "Do you want to continue?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:339 -#: ../DistUpgrade/DistUpgradeQuirks.py:408 +#: ../DistUpgrade/DistUpgradeQuirks.py:343 +#: ../DistUpgrade/DistUpgradeQuirks.py:412 msgid "Sorry, no more upgrades for this system" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:340 +#: ../DistUpgrade/DistUpgradeQuirks.py:344 #, python-format msgid "" "There will not be any further Ubuntu releases for this system's 'i386' " @@ -982,11 +982,11 @@ "Updates for Ubuntu %s will continue until %s." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:355 +#: ../DistUpgrade/DistUpgradeQuirks.py:359 msgid "No ARMv6 CPU" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:356 +#: ../DistUpgrade/DistUpgradeQuirks.py:360 msgid "" "Your system uses an ARM CPU that is older than the ARMv6 architecture. All " "packages in karmic were built with optimizations requiring ARMv6 as the " @@ -994,12 +994,12 @@ "Ubuntu release with this hardware." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:376 +#: ../DistUpgrade/DistUpgradeQuirks.py:380 msgid "" "Sorry, this storage driver is not supported in kernels for newer releases" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:378 +#: ../DistUpgrade/DistUpgradeQuirks.py:382 #, python-format msgid "" "There will not be any further Ubuntu releases that provide kernel support " @@ -1009,7 +1009,7 @@ "driver, remove the directory %s and try again." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:409 +#: ../DistUpgrade/DistUpgradeQuirks.py:413 #, python-format msgid "" "There will not be any further Ubuntu releases for this system's POWER8 " @@ -1018,11 +1018,11 @@ "Updates for Ubuntu %s will continue until %s." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:427 +#: ../DistUpgrade/DistUpgradeQuirks.py:431 msgid "No init available" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:428 +#: ../DistUpgrade/DistUpgradeQuirks.py:432 msgid "" "Your system appears to be a virtualised environment without an init daemon, " "e.g. Linux-VServer. Ubuntu 10.04 LTS cannot function within this type of " @@ -1032,11 +1032,11 @@ "Are you sure you want to continue?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:469 +#: ../DistUpgrade/DistUpgradeQuirks.py:473 msgid "The Robot Operating System (ROS) is installed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:470 +#: ../DistUpgrade/DistUpgradeQuirks.py:474 msgid "" "It appears that ROS is currently installed. Each ROS release is very strict " "about the versions of Ubuntu it supports, and Ubuntu upgrades can fail if " @@ -1053,11 +1053,11 @@ "Are you sure you want to continue?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:670 +#: ../DistUpgrade/DistUpgradeQuirks.py:674 msgid "Connection to the Snap Store failed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:671 +#: ../DistUpgrade/DistUpgradeQuirks.py:675 msgid "" "You have the package lxd installed but your system is unable to reach the " "Snap Store. lxd is now provided via a snap and the release upgrade will fail " @@ -1067,11 +1067,11 @@ "may want to configure a Snap Store proxy." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:686 +#: ../DistUpgrade/DistUpgradeQuirks.py:690 msgid "Connection to Snap Store failed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:687 +#: ../DistUpgrade/DistUpgradeQuirks.py:691 msgid "" "Your system does not have a connection to the Snap Store. For the best " "upgrade experience make sure that your system can connect to api.snapcraft." @@ -1079,11 +1079,11 @@ "Do you still want to continue with the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:696 +#: ../DistUpgrade/DistUpgradeQuirks.py:700 msgid "Outdated snapd package" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:697 +#: ../DistUpgrade/DistUpgradeQuirks.py:701 msgid "" "Your system does not have the latest version of snapd. Please update the " "version of snapd on your system to improve the upgrade experience.\n" @@ -1092,36 +1092,36 @@ #. now perform direct API calls to the store, requesting size #. information for each of the snaps needing installation -#: ../DistUpgrade/DistUpgradeQuirks.py:722 +#: ../DistUpgrade/DistUpgradeQuirks.py:726 msgid "Calculating snap size requirements" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:753 +#: ../DistUpgrade/DistUpgradeQuirks.py:757 msgid "Processing snap replacements" msgstr "" #. TODO: This status should be updated, but the time of #. this change to snap switch is post-translation freeze. -#: ../DistUpgrade/DistUpgradeQuirks.py:761 +#: ../DistUpgrade/DistUpgradeQuirks.py:765 #, python-format msgid "refreshing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:765 +#: ../DistUpgrade/DistUpgradeQuirks.py:769 #, python-format msgid "removing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:768 +#: ../DistUpgrade/DistUpgradeQuirks.py:772 #, python-format msgid "installing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:797 +#: ../DistUpgrade/DistUpgradeQuirks.py:801 msgid "PAE not enabled" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:798 +#: ../DistUpgrade/DistUpgradeQuirks.py:802 msgid "" "Your system uses a CPU that does not have PAE enabled. Ubuntu only supports " "non-PAE systems up to Ubuntu 12.04. To upgrade to a later version of Ubuntu, " @@ -1129,11 +1129,11 @@ "http://help.ubuntu.com/community/EnablingPAE" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1094 +#: ../DistUpgrade/DistUpgradeQuirks.py:1098 msgid "universe component not enabled" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1095 +#: ../DistUpgrade/DistUpgradeQuirks.py:1099 #, python-format msgid "" "You have the package %s installed which is a python2 package. python2 has " @@ -1145,39 +1145,50 @@ "universe component in /etc/apt/sources.list or remove %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1207 +#: ../DistUpgrade/DistUpgradeQuirks.py:1211 msgid "Checking for installed snaps" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1654 +#: ../DistUpgrade/DistUpgradeQuirks.py:1720 #, fuzzy msgid "Cannot upgrade this system" msgstr "No se puet esviellar" -#: ../DistUpgrade/DistUpgradeQuirks.py:1655 +#: ../DistUpgrade/DistUpgradeQuirks.py:1721 msgid "" "Due to a bug in grub, this system cannot be safely upgraded at this time.\n" "\n" "See https://launchpad.net/bugs/2039172." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1721 +#: ../DistUpgrade/DistUpgradeQuirks.py:1787 #, python-brace-format msgid "Updates for Ubuntu {from_release.version} will " msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1731 +#: ../DistUpgrade/DistUpgradeQuirks.py:1797 #, fuzzy msgid "Sorry, cannot upgrade this system to 24.04 LTS" msgstr "No se puet esviellar" -#: ../DistUpgrade/DistUpgradeQuirks.py:1734 +#: ../DistUpgrade/DistUpgradeQuirks.py:1800 msgid "" "The Raspberry Pi kernel for Ubuntu 24.04 LTS does not support the armhf " "architecture.\n" "\n" msgstr "" +#: ../DistUpgrade/DistUpgradeQuirks.py:1928 +#, fuzzy, python-brace-format +msgid "Sorry, cannot upgrade this system to {version}" +msgstr "No se puet esviellar" + +#: ../DistUpgrade/DistUpgradeQuirks.py:1931 +msgid "" +"Upgrades for desktop systems running TPM FDE are not currently supported. " +"Please see https://launchpad.net/bugs/2065229 for more information." +msgstr "" + #: ../DistUpgrade/DistUpgradeMain.py:62 msgid "" "Use frontend. Currently available: \n" diff -Nru ubuntu-release-upgrader-24.04.17/po/ar.po ubuntu-release-upgrader-24.04.18/po/ar.po --- ubuntu-release-upgrader-24.04.17/po/ar.po 2024-04-29 14:26:40.000000000 +0000 +++ ubuntu-release-upgrader-24.04.18/po/ar.po 2024-05-09 19:39:15.000000000 +0000 @@ -10,7 +10,7 @@ msgstr "" "Project-Id-Version: po_update-manager-ar\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2024-04-29 16:03+0200\n" +"POT-Creation-Date: 2024-05-09 15:39-0400\n" "PO-Revision-Date: 2019-06-18 17:52+0000\n" "Last-Translator: Ibrahim Saed \n" "Language-Team: Arabic\n" @@ -1025,11 +1025,11 @@ msgid "Media Change" msgstr "تغيير الوسائط" -#: ../DistUpgrade/DistUpgradeQuirks.py:248 +#: ../DistUpgrade/DistUpgradeQuirks.py:252 msgid "Your graphics hardware may not be fully supported in Ubuntu 14.04." msgstr "قد يكون عتاد الرسوميات في جهازك ليس مدعوما بالكامل في أوبونتو 14.04." -#: ../DistUpgrade/DistUpgradeQuirks.py:250 +#: ../DistUpgrade/DistUpgradeQuirks.py:254 msgid "" "Running the 'unity' desktop environment is not fully supported by your " "graphics hardware. You will maybe end up in a very slow environment after " @@ -1044,11 +1044,11 @@ "Bugs/UpdateManagerWarningForUnity3D\r\n" "هل ما زلت ترغب بالاستمرار في الترقية؟" -#: ../DistUpgrade/DistUpgradeQuirks.py:274 +#: ../DistUpgrade/DistUpgradeQuirks.py:278 msgid "Your graphics hardware may not be fully supported in Ubuntu 12.04 LTS." msgstr "قد يكون عتاد الرسوميات في جهازك غير مدعوم بالكامل في أوبنتو 12.04." -#: ../DistUpgrade/DistUpgradeQuirks.py:276 +#: ../DistUpgrade/DistUpgradeQuirks.py:280 msgid "" "The support in Ubuntu 12.04 LTS for your Intel graphics hardware is limited " "and you may encounter problems after the upgrade. For more information see " @@ -1059,7 +1059,7 @@ "لمزيد من المعلومات انظر: https://wiki.ubuntu.com/X/Bugs/" "UpdateManagerWarningForI8xx هل تود الاستمرار في الترقية؟" -#: ../DistUpgrade/DistUpgradeQuirks.py:296 +#: ../DistUpgrade/DistUpgradeQuirks.py:300 msgid "" "Upgrading may reduce desktop effects, and performance in games and other " "graphically intensive programs." @@ -1067,7 +1067,7 @@ "قد تقلل الترقية من تأثيرات سطح المكتب، وأداء الألعاب وبرامج الرسوميات " "المكثفة الأخرى." -#: ../DistUpgrade/DistUpgradeQuirks.py:300 +#: ../DistUpgrade/DistUpgradeQuirks.py:304 msgid "" "This computer is currently using the AMD 'fglrx' graphics driver. No version " "of this driver is available that works with your hardware in Ubuntu 10.04 " @@ -1080,12 +1080,12 @@ "\n" "أتريد المواصلة؟" -#: ../DistUpgrade/DistUpgradeQuirks.py:339 -#: ../DistUpgrade/DistUpgradeQuirks.py:408 +#: ../DistUpgrade/DistUpgradeQuirks.py:343 +#: ../DistUpgrade/DistUpgradeQuirks.py:412 msgid "Sorry, no more upgrades for this system" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:340 +#: ../DistUpgrade/DistUpgradeQuirks.py:344 #, python-format msgid "" "There will not be any further Ubuntu releases for this system's 'i386' " @@ -1094,11 +1094,11 @@ "Updates for Ubuntu %s will continue until %s." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:355 +#: ../DistUpgrade/DistUpgradeQuirks.py:359 msgid "No ARMv6 CPU" msgstr "لا معالج ARMv6" -#: ../DistUpgrade/DistUpgradeQuirks.py:356 +#: ../DistUpgrade/DistUpgradeQuirks.py:360 msgid "" "Your system uses an ARM CPU that is older than the ARMv6 architecture. All " "packages in karmic were built with optimizations requiring ARMv6 as the " @@ -1109,12 +1109,12 @@ "مبنية لتعمل على الطراز ARMv6 كحد أدنى. من غير الممكن ترقية نظامك إلى إصدارة " "أوبونتو حديثة مع هذا العتاد." -#: ../DistUpgrade/DistUpgradeQuirks.py:376 +#: ../DistUpgrade/DistUpgradeQuirks.py:380 msgid "" "Sorry, this storage driver is not supported in kernels for newer releases" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:378 +#: ../DistUpgrade/DistUpgradeQuirks.py:382 #, python-format msgid "" "There will not be any further Ubuntu releases that provide kernel support " @@ -1124,7 +1124,7 @@ "driver, remove the directory %s and try again." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:409 +#: ../DistUpgrade/DistUpgradeQuirks.py:413 #, python-format msgid "" "There will not be any further Ubuntu releases for this system's POWER8 " @@ -1133,11 +1133,11 @@ "Updates for Ubuntu %s will continue until %s." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:427 +#: ../DistUpgrade/DistUpgradeQuirks.py:431 msgid "No init available" msgstr "لا يوجد عفريت مدير للعمليات" -#: ../DistUpgrade/DistUpgradeQuirks.py:428 +#: ../DistUpgrade/DistUpgradeQuirks.py:432 msgid "" "Your system appears to be a virtualised environment without an init daemon, " "e.g. Linux-VServer. Ubuntu 10.04 LTS cannot function within this type of " @@ -1152,11 +1152,11 @@ "\n" "هل حقاً تريد الاستمرار؟" -#: ../DistUpgrade/DistUpgradeQuirks.py:469 +#: ../DistUpgrade/DistUpgradeQuirks.py:473 msgid "The Robot Operating System (ROS) is installed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:470 +#: ../DistUpgrade/DistUpgradeQuirks.py:474 msgid "" "It appears that ROS is currently installed. Each ROS release is very strict " "about the versions of Ubuntu it supports, and Ubuntu upgrades can fail if " @@ -1173,11 +1173,11 @@ "Are you sure you want to continue?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:670 +#: ../DistUpgrade/DistUpgradeQuirks.py:674 msgid "Connection to the Snap Store failed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:671 +#: ../DistUpgrade/DistUpgradeQuirks.py:675 msgid "" "You have the package lxd installed but your system is unable to reach the " "Snap Store. lxd is now provided via a snap and the release upgrade will fail " @@ -1187,11 +1187,11 @@ "may want to configure a Snap Store proxy." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:686 +#: ../DistUpgrade/DistUpgradeQuirks.py:690 msgid "Connection to Snap Store failed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:687 +#: ../DistUpgrade/DistUpgradeQuirks.py:691 msgid "" "Your system does not have a connection to the Snap Store. For the best " "upgrade experience make sure that your system can connect to api.snapcraft." @@ -1199,11 +1199,11 @@ "Do you still want to continue with the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:696 +#: ../DistUpgrade/DistUpgradeQuirks.py:700 msgid "Outdated snapd package" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:697 +#: ../DistUpgrade/DistUpgradeQuirks.py:701 msgid "" "Your system does not have the latest version of snapd. Please update the " "version of snapd on your system to improve the upgrade experience.\n" @@ -1212,36 +1212,36 @@ #. now perform direct API calls to the store, requesting size #. information for each of the snaps needing installation -#: ../DistUpgrade/DistUpgradeQuirks.py:722 +#: ../DistUpgrade/DistUpgradeQuirks.py:726 msgid "Calculating snap size requirements" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:753 +#: ../DistUpgrade/DistUpgradeQuirks.py:757 msgid "Processing snap replacements" msgstr "" #. TODO: This status should be updated, but the time of #. this change to snap switch is post-translation freeze. -#: ../DistUpgrade/DistUpgradeQuirks.py:761 +#: ../DistUpgrade/DistUpgradeQuirks.py:765 #, python-format msgid "refreshing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:765 +#: ../DistUpgrade/DistUpgradeQuirks.py:769 #, python-format msgid "removing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:768 +#: ../DistUpgrade/DistUpgradeQuirks.py:772 #, python-format msgid "installing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:797 +#: ../DistUpgrade/DistUpgradeQuirks.py:801 msgid "PAE not enabled" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:798 +#: ../DistUpgrade/DistUpgradeQuirks.py:802 msgid "" "Your system uses a CPU that does not have PAE enabled. Ubuntu only supports " "non-PAE systems up to Ubuntu 12.04. To upgrade to a later version of Ubuntu, " @@ -1249,11 +1249,11 @@ "http://help.ubuntu.com/community/EnablingPAE" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1094 +#: ../DistUpgrade/DistUpgradeQuirks.py:1098 msgid "universe component not enabled" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1095 +#: ../DistUpgrade/DistUpgradeQuirks.py:1099 #, python-format msgid "" "You have the package %s installed which is a python2 package. python2 has " @@ -1265,39 +1265,50 @@ "universe component in /etc/apt/sources.list or remove %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1207 +#: ../DistUpgrade/DistUpgradeQuirks.py:1211 msgid "Checking for installed snaps" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1654 +#: ../DistUpgrade/DistUpgradeQuirks.py:1720 #, fuzzy msgid "Cannot upgrade this system" msgstr "تعذّرت الترقية" -#: ../DistUpgrade/DistUpgradeQuirks.py:1655 +#: ../DistUpgrade/DistUpgradeQuirks.py:1721 msgid "" "Due to a bug in grub, this system cannot be safely upgraded at this time.\n" "\n" "See https://launchpad.net/bugs/2039172." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1721 +#: ../DistUpgrade/DistUpgradeQuirks.py:1787 #, python-brace-format msgid "Updates for Ubuntu {from_release.version} will " msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1731 +#: ../DistUpgrade/DistUpgradeQuirks.py:1797 #, fuzzy msgid "Sorry, cannot upgrade this system to 24.04 LTS" msgstr "تعذّرت الترقية" -#: ../DistUpgrade/DistUpgradeQuirks.py:1734 +#: ../DistUpgrade/DistUpgradeQuirks.py:1800 msgid "" "The Raspberry Pi kernel for Ubuntu 24.04 LTS does not support the armhf " "architecture.\n" "\n" msgstr "" +#: ../DistUpgrade/DistUpgradeQuirks.py:1928 +#, fuzzy, python-brace-format +msgid "Sorry, cannot upgrade this system to {version}" +msgstr "تعذّرت الترقية" + +#: ../DistUpgrade/DistUpgradeQuirks.py:1931 +msgid "" +"Upgrades for desktop systems running TPM FDE are not currently supported. " +"Please see https://launchpad.net/bugs/2065229 for more information." +msgstr "" + #: ../DistUpgrade/DistUpgradeMain.py:62 msgid "" "Use frontend. Currently available: \n" diff -Nru ubuntu-release-upgrader-24.04.17/po/ast.po ubuntu-release-upgrader-24.04.18/po/ast.po --- ubuntu-release-upgrader-24.04.17/po/ast.po 2024-04-29 14:26:40.000000000 +0000 +++ ubuntu-release-upgrader-24.04.18/po/ast.po 2024-05-09 19:39:15.000000000 +0000 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2024-04-29 16:03+0200\n" +"POT-Creation-Date: 2024-05-09 15:39-0400\n" "PO-Revision-Date: 2019-06-18 17:54+0000\n" "Last-Translator: ivarela \n" "Language-Team: Asturian \n" @@ -1021,12 +1021,12 @@ msgid "Media Change" msgstr "Cambéu de preséu" -#: ../DistUpgrade/DistUpgradeQuirks.py:248 +#: ../DistUpgrade/DistUpgradeQuirks.py:252 msgid "Your graphics hardware may not be fully supported in Ubuntu 14.04." msgstr "" "Pue que'l so hardware gráficu nun tenga sofitu completu n'Ubuntu 14.04." -#: ../DistUpgrade/DistUpgradeQuirks.py:250 +#: ../DistUpgrade/DistUpgradeQuirks.py:254 msgid "" "Running the 'unity' desktop environment is not fully supported by your " "graphics hardware. You will maybe end up in a very slow environment after " @@ -1041,12 +1041,12 @@ "obtener más información, consulta https://wiki.ubuntu.com/X/Bugs/" "UpdateManagerWarningForUnity3D ¿Aínda quies siguir col anovamientu?" -#: ../DistUpgrade/DistUpgradeQuirks.py:274 +#: ../DistUpgrade/DistUpgradeQuirks.py:278 msgid "Your graphics hardware may not be fully supported in Ubuntu 12.04 LTS." msgstr "" "El hardware de gráficos nun ye compatible dafechu con Ubuntu 12.04 LTS." -#: ../DistUpgrade/DistUpgradeQuirks.py:276 +#: ../DistUpgrade/DistUpgradeQuirks.py:280 msgid "" "The support in Ubuntu 12.04 LTS for your Intel graphics hardware is limited " "and you may encounter problems after the upgrade. For more information see " @@ -1058,7 +1058,7 @@ "información llei https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForI8xx " "¿Quies siguir col anovamientu?" -#: ../DistUpgrade/DistUpgradeQuirks.py:296 +#: ../DistUpgrade/DistUpgradeQuirks.py:300 msgid "" "Upgrading may reduce desktop effects, and performance in games and other " "graphically intensive programs." @@ -1067,7 +1067,7 @@ "rendimientu de los xuegos y otros programes qu'usen gráficos de mou " "intensivu." -#: ../DistUpgrade/DistUpgradeQuirks.py:300 +#: ../DistUpgrade/DistUpgradeQuirks.py:304 msgid "" "This computer is currently using the AMD 'fglrx' graphics driver. No version " "of this driver is available that works with your hardware in Ubuntu 10.04 " @@ -1081,12 +1081,12 @@ "\n" "¿Quier continuar?" -#: ../DistUpgrade/DistUpgradeQuirks.py:339 -#: ../DistUpgrade/DistUpgradeQuirks.py:408 +#: ../DistUpgrade/DistUpgradeQuirks.py:343 +#: ../DistUpgrade/DistUpgradeQuirks.py:412 msgid "Sorry, no more upgrades for this system" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:340 +#: ../DistUpgrade/DistUpgradeQuirks.py:344 #, python-format msgid "" "There will not be any further Ubuntu releases for this system's 'i386' " @@ -1095,11 +1095,11 @@ "Updates for Ubuntu %s will continue until %s." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:355 +#: ../DistUpgrade/DistUpgradeQuirks.py:359 msgid "No ARMv6 CPU" msgstr "No ARMv6 CPU" -#: ../DistUpgrade/DistUpgradeQuirks.py:356 +#: ../DistUpgrade/DistUpgradeQuirks.py:360 msgid "" "Your system uses an ARM CPU that is older than the ARMv6 architecture. All " "packages in karmic were built with optimizations requiring ARMv6 as the " @@ -1111,12 +1111,12 @@ "ARMv6 como arquiteutura mínima. Nun ye dable anovar el so sistema a la nueva " "versión d'Ubuntu con esti hardware." -#: ../DistUpgrade/DistUpgradeQuirks.py:376 +#: ../DistUpgrade/DistUpgradeQuirks.py:380 msgid "" "Sorry, this storage driver is not supported in kernels for newer releases" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:378 +#: ../DistUpgrade/DistUpgradeQuirks.py:382 #, python-format msgid "" "There will not be any further Ubuntu releases that provide kernel support " @@ -1126,7 +1126,7 @@ "driver, remove the directory %s and try again." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:409 +#: ../DistUpgrade/DistUpgradeQuirks.py:413 #, python-format msgid "" "There will not be any further Ubuntu releases for this system's POWER8 " @@ -1135,11 +1135,11 @@ "Updates for Ubuntu %s will continue until %s." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:427 +#: ../DistUpgrade/DistUpgradeQuirks.py:431 msgid "No init available" msgstr "El degorriu init nun ta disponible" -#: ../DistUpgrade/DistUpgradeQuirks.py:428 +#: ../DistUpgrade/DistUpgradeQuirks.py:432 msgid "" "Your system appears to be a virtualised environment without an init daemon, " "e.g. Linux-VServer. Ubuntu 10.04 LTS cannot function within this type of " @@ -1155,11 +1155,11 @@ "\n" "¿Daveres que quies siguir?" -#: ../DistUpgrade/DistUpgradeQuirks.py:469 +#: ../DistUpgrade/DistUpgradeQuirks.py:473 msgid "The Robot Operating System (ROS) is installed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:470 +#: ../DistUpgrade/DistUpgradeQuirks.py:474 msgid "" "It appears that ROS is currently installed. Each ROS release is very strict " "about the versions of Ubuntu it supports, and Ubuntu upgrades can fail if " @@ -1176,11 +1176,11 @@ "Are you sure you want to continue?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:670 +#: ../DistUpgrade/DistUpgradeQuirks.py:674 msgid "Connection to the Snap Store failed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:671 +#: ../DistUpgrade/DistUpgradeQuirks.py:675 msgid "" "You have the package lxd installed but your system is unable to reach the " "Snap Store. lxd is now provided via a snap and the release upgrade will fail " @@ -1190,11 +1190,11 @@ "may want to configure a Snap Store proxy." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:686 +#: ../DistUpgrade/DistUpgradeQuirks.py:690 msgid "Connection to Snap Store failed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:687 +#: ../DistUpgrade/DistUpgradeQuirks.py:691 msgid "" "Your system does not have a connection to the Snap Store. For the best " "upgrade experience make sure that your system can connect to api.snapcraft." @@ -1202,11 +1202,11 @@ "Do you still want to continue with the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:696 +#: ../DistUpgrade/DistUpgradeQuirks.py:700 msgid "Outdated snapd package" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:697 +#: ../DistUpgrade/DistUpgradeQuirks.py:701 msgid "" "Your system does not have the latest version of snapd. Please update the " "version of snapd on your system to improve the upgrade experience.\n" @@ -1215,36 +1215,36 @@ #. now perform direct API calls to the store, requesting size #. information for each of the snaps needing installation -#: ../DistUpgrade/DistUpgradeQuirks.py:722 +#: ../DistUpgrade/DistUpgradeQuirks.py:726 msgid "Calculating snap size requirements" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:753 +#: ../DistUpgrade/DistUpgradeQuirks.py:757 msgid "Processing snap replacements" msgstr "" #. TODO: This status should be updated, but the time of #. this change to snap switch is post-translation freeze. -#: ../DistUpgrade/DistUpgradeQuirks.py:761 +#: ../DistUpgrade/DistUpgradeQuirks.py:765 #, python-format msgid "refreshing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:765 +#: ../DistUpgrade/DistUpgradeQuirks.py:769 #, python-format msgid "removing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:768 +#: ../DistUpgrade/DistUpgradeQuirks.py:772 #, python-format msgid "installing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:797 +#: ../DistUpgrade/DistUpgradeQuirks.py:801 msgid "PAE not enabled" msgstr "PAE nun ta activáu" -#: ../DistUpgrade/DistUpgradeQuirks.py:798 +#: ../DistUpgrade/DistUpgradeQuirks.py:802 msgid "" "Your system uses a CPU that does not have PAE enabled. Ubuntu only supports " "non-PAE systems up to Ubuntu 12.04. To upgrade to a later version of Ubuntu, " @@ -1256,11 +1256,11 @@ "más reciente d'Ubuntu, tien d'activar PAE (si ye posible) vea:\n" " http://help.ubuntu.com/community/EnablingPAE" -#: ../DistUpgrade/DistUpgradeQuirks.py:1094 +#: ../DistUpgrade/DistUpgradeQuirks.py:1098 msgid "universe component not enabled" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1095 +#: ../DistUpgrade/DistUpgradeQuirks.py:1099 #, python-format msgid "" "You have the package %s installed which is a python2 package. python2 has " @@ -1272,39 +1272,50 @@ "universe component in /etc/apt/sources.list or remove %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1207 +#: ../DistUpgrade/DistUpgradeQuirks.py:1211 msgid "Checking for installed snaps" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1654 +#: ../DistUpgrade/DistUpgradeQuirks.py:1720 #, fuzzy msgid "Cannot upgrade this system" msgstr "Nun se pue anovar" -#: ../DistUpgrade/DistUpgradeQuirks.py:1655 +#: ../DistUpgrade/DistUpgradeQuirks.py:1721 msgid "" "Due to a bug in grub, this system cannot be safely upgraded at this time.\n" "\n" "See https://launchpad.net/bugs/2039172." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1721 +#: ../DistUpgrade/DistUpgradeQuirks.py:1787 #, python-brace-format msgid "Updates for Ubuntu {from_release.version} will " msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1731 +#: ../DistUpgrade/DistUpgradeQuirks.py:1797 #, fuzzy msgid "Sorry, cannot upgrade this system to 24.04 LTS" msgstr "Nun se pue anovar" -#: ../DistUpgrade/DistUpgradeQuirks.py:1734 +#: ../DistUpgrade/DistUpgradeQuirks.py:1800 msgid "" "The Raspberry Pi kernel for Ubuntu 24.04 LTS does not support the armhf " "architecture.\n" "\n" msgstr "" +#: ../DistUpgrade/DistUpgradeQuirks.py:1928 +#, fuzzy, python-brace-format +msgid "Sorry, cannot upgrade this system to {version}" +msgstr "Nun se pue anovar" + +#: ../DistUpgrade/DistUpgradeQuirks.py:1931 +msgid "" +"Upgrades for desktop systems running TPM FDE are not currently supported. " +"Please see https://launchpad.net/bugs/2065229 for more information." +msgstr "" + #: ../DistUpgrade/DistUpgradeMain.py:62 msgid "" "Use frontend. Currently available: \n" diff -Nru ubuntu-release-upgrader-24.04.17/po/az.po ubuntu-release-upgrader-24.04.18/po/az.po --- ubuntu-release-upgrader-24.04.17/po/az.po 2024-04-29 14:26:40.000000000 +0000 +++ ubuntu-release-upgrader-24.04.18/po/az.po 2024-05-09 19:39:15.000000000 +0000 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2024-04-29 16:03+0200\n" +"POT-Creation-Date: 2024-05-09 15:39-0400\n" "PO-Revision-Date: 2013-05-22 11:00+0000\n" "Last-Translator: Emin Mastizadeh \n" "Language-Team: Azerbaijani \n" @@ -912,11 +912,11 @@ msgid "Media Change" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:248 +#: ../DistUpgrade/DistUpgradeQuirks.py:252 msgid "Your graphics hardware may not be fully supported in Ubuntu 14.04." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:250 +#: ../DistUpgrade/DistUpgradeQuirks.py:254 msgid "" "Running the 'unity' desktop environment is not fully supported by your " "graphics hardware. You will maybe end up in a very slow environment after " @@ -926,11 +926,11 @@ "upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:274 +#: ../DistUpgrade/DistUpgradeQuirks.py:278 msgid "Your graphics hardware may not be fully supported in Ubuntu 12.04 LTS." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:276 +#: ../DistUpgrade/DistUpgradeQuirks.py:280 msgid "" "The support in Ubuntu 12.04 LTS for your Intel graphics hardware is limited " "and you may encounter problems after the upgrade. For more information see " @@ -938,13 +938,13 @@ "continue with the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:296 +#: ../DistUpgrade/DistUpgradeQuirks.py:300 msgid "" "Upgrading may reduce desktop effects, and performance in games and other " "graphically intensive programs." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:300 +#: ../DistUpgrade/DistUpgradeQuirks.py:304 msgid "" "This computer is currently using the AMD 'fglrx' graphics driver. No version " "of this driver is available that works with your hardware in Ubuntu 10.04 " @@ -953,12 +953,12 @@ "Do you want to continue?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:339 -#: ../DistUpgrade/DistUpgradeQuirks.py:408 +#: ../DistUpgrade/DistUpgradeQuirks.py:343 +#: ../DistUpgrade/DistUpgradeQuirks.py:412 msgid "Sorry, no more upgrades for this system" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:340 +#: ../DistUpgrade/DistUpgradeQuirks.py:344 #, python-format msgid "" "There will not be any further Ubuntu releases for this system's 'i386' " @@ -967,11 +967,11 @@ "Updates for Ubuntu %s will continue until %s." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:355 +#: ../DistUpgrade/DistUpgradeQuirks.py:359 msgid "No ARMv6 CPU" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:356 +#: ../DistUpgrade/DistUpgradeQuirks.py:360 msgid "" "Your system uses an ARM CPU that is older than the ARMv6 architecture. All " "packages in karmic were built with optimizations requiring ARMv6 as the " @@ -979,12 +979,12 @@ "Ubuntu release with this hardware." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:376 +#: ../DistUpgrade/DistUpgradeQuirks.py:380 msgid "" "Sorry, this storage driver is not supported in kernels for newer releases" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:378 +#: ../DistUpgrade/DistUpgradeQuirks.py:382 #, python-format msgid "" "There will not be any further Ubuntu releases that provide kernel support " @@ -994,7 +994,7 @@ "driver, remove the directory %s and try again." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:409 +#: ../DistUpgrade/DistUpgradeQuirks.py:413 #, python-format msgid "" "There will not be any further Ubuntu releases for this system's POWER8 " @@ -1003,11 +1003,11 @@ "Updates for Ubuntu %s will continue until %s." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:427 +#: ../DistUpgrade/DistUpgradeQuirks.py:431 msgid "No init available" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:428 +#: ../DistUpgrade/DistUpgradeQuirks.py:432 msgid "" "Your system appears to be a virtualised environment without an init daemon, " "e.g. Linux-VServer. Ubuntu 10.04 LTS cannot function within this type of " @@ -1017,11 +1017,11 @@ "Are you sure you want to continue?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:469 +#: ../DistUpgrade/DistUpgradeQuirks.py:473 msgid "The Robot Operating System (ROS) is installed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:470 +#: ../DistUpgrade/DistUpgradeQuirks.py:474 msgid "" "It appears that ROS is currently installed. Each ROS release is very strict " "about the versions of Ubuntu it supports, and Ubuntu upgrades can fail if " @@ -1038,11 +1038,11 @@ "Are you sure you want to continue?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:670 +#: ../DistUpgrade/DistUpgradeQuirks.py:674 msgid "Connection to the Snap Store failed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:671 +#: ../DistUpgrade/DistUpgradeQuirks.py:675 msgid "" "You have the package lxd installed but your system is unable to reach the " "Snap Store. lxd is now provided via a snap and the release upgrade will fail " @@ -1052,11 +1052,11 @@ "may want to configure a Snap Store proxy." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:686 +#: ../DistUpgrade/DistUpgradeQuirks.py:690 msgid "Connection to Snap Store failed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:687 +#: ../DistUpgrade/DistUpgradeQuirks.py:691 msgid "" "Your system does not have a connection to the Snap Store. For the best " "upgrade experience make sure that your system can connect to api.snapcraft." @@ -1064,11 +1064,11 @@ "Do you still want to continue with the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:696 +#: ../DistUpgrade/DistUpgradeQuirks.py:700 msgid "Outdated snapd package" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:697 +#: ../DistUpgrade/DistUpgradeQuirks.py:701 msgid "" "Your system does not have the latest version of snapd. Please update the " "version of snapd on your system to improve the upgrade experience.\n" @@ -1077,36 +1077,36 @@ #. now perform direct API calls to the store, requesting size #. information for each of the snaps needing installation -#: ../DistUpgrade/DistUpgradeQuirks.py:722 +#: ../DistUpgrade/DistUpgradeQuirks.py:726 msgid "Calculating snap size requirements" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:753 +#: ../DistUpgrade/DistUpgradeQuirks.py:757 msgid "Processing snap replacements" msgstr "" #. TODO: This status should be updated, but the time of #. this change to snap switch is post-translation freeze. -#: ../DistUpgrade/DistUpgradeQuirks.py:761 +#: ../DistUpgrade/DistUpgradeQuirks.py:765 #, python-format msgid "refreshing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:765 +#: ../DistUpgrade/DistUpgradeQuirks.py:769 #, python-format msgid "removing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:768 +#: ../DistUpgrade/DistUpgradeQuirks.py:772 #, python-format msgid "installing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:797 +#: ../DistUpgrade/DistUpgradeQuirks.py:801 msgid "PAE not enabled" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:798 +#: ../DistUpgrade/DistUpgradeQuirks.py:802 msgid "" "Your system uses a CPU that does not have PAE enabled. Ubuntu only supports " "non-PAE systems up to Ubuntu 12.04. To upgrade to a later version of Ubuntu, " @@ -1114,11 +1114,11 @@ "http://help.ubuntu.com/community/EnablingPAE" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1094 +#: ../DistUpgrade/DistUpgradeQuirks.py:1098 msgid "universe component not enabled" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1095 +#: ../DistUpgrade/DistUpgradeQuirks.py:1099 #, python-format msgid "" "You have the package %s installed which is a python2 package. python2 has " @@ -1130,39 +1130,50 @@ "universe component in /etc/apt/sources.list or remove %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1207 +#: ../DistUpgrade/DistUpgradeQuirks.py:1211 msgid "Checking for installed snaps" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1654 +#: ../DistUpgrade/DistUpgradeQuirks.py:1720 #, fuzzy msgid "Cannot upgrade this system" msgstr "Yenilənmək mümkün deyil" -#: ../DistUpgrade/DistUpgradeQuirks.py:1655 +#: ../DistUpgrade/DistUpgradeQuirks.py:1721 msgid "" "Due to a bug in grub, this system cannot be safely upgraded at this time.\n" "\n" "See https://launchpad.net/bugs/2039172." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1721 +#: ../DistUpgrade/DistUpgradeQuirks.py:1787 #, python-brace-format msgid "Updates for Ubuntu {from_release.version} will " msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1731 +#: ../DistUpgrade/DistUpgradeQuirks.py:1797 #, fuzzy msgid "Sorry, cannot upgrade this system to 24.04 LTS" msgstr "Yenilənmək mümkün deyil" -#: ../DistUpgrade/DistUpgradeQuirks.py:1734 +#: ../DistUpgrade/DistUpgradeQuirks.py:1800 msgid "" "The Raspberry Pi kernel for Ubuntu 24.04 LTS does not support the armhf " "architecture.\n" "\n" msgstr "" +#: ../DistUpgrade/DistUpgradeQuirks.py:1928 +#, fuzzy, python-brace-format +msgid "Sorry, cannot upgrade this system to {version}" +msgstr "Yenilənmək mümkün deyil" + +#: ../DistUpgrade/DistUpgradeQuirks.py:1931 +msgid "" +"Upgrades for desktop systems running TPM FDE are not currently supported. " +"Please see https://launchpad.net/bugs/2065229 for more information." +msgstr "" + #: ../DistUpgrade/DistUpgradeMain.py:62 msgid "" "Use frontend. Currently available: \n" diff -Nru ubuntu-release-upgrader-24.04.17/po/be.po ubuntu-release-upgrader-24.04.18/po/be.po --- ubuntu-release-upgrader-24.04.17/po/be.po 2024-04-29 14:26:40.000000000 +0000 +++ ubuntu-release-upgrader-24.04.18/po/be.po 2024-05-09 19:39:15.000000000 +0000 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2024-04-29 16:03+0200\n" +"POT-Creation-Date: 2024-05-09 15:39-0400\n" "PO-Revision-Date: 2019-06-18 17:54+0000\n" "Last-Translator: Brian Murray \n" "Language-Team: Belarusian \n" @@ -1025,12 +1025,12 @@ msgid "Media Change" msgstr "Змена носьбіта" -#: ../DistUpgrade/DistUpgradeQuirks.py:248 +#: ../DistUpgrade/DistUpgradeQuirks.py:252 msgid "Your graphics hardware may not be fully supported in Ubuntu 14.04." msgstr "" "Ваша графічнае абсталяванне не можа быць цалкам падтрыманым ў Ubuntu 14.04." -#: ../DistUpgrade/DistUpgradeQuirks.py:250 +#: ../DistUpgrade/DistUpgradeQuirks.py:254 msgid "" "Running the 'unity' desktop environment is not fully supported by your " "graphics hardware. You will maybe end up in a very slow environment after " @@ -1045,13 +1045,13 @@ "звесткі гл. https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForUnity3D Вы " "ўсё яшчэ хочаце працягнуць абнаўленне?" -#: ../DistUpgrade/DistUpgradeQuirks.py:274 +#: ../DistUpgrade/DistUpgradeQuirks.py:278 msgid "Your graphics hardware may not be fully supported in Ubuntu 12.04 LTS." msgstr "" "Вашае графічнае абсталяванне, магчыма, не будзе падтрымлівацца цалкам у " "Ubuntu 12.04 LTS" -#: ../DistUpgrade/DistUpgradeQuirks.py:276 +#: ../DistUpgrade/DistUpgradeQuirks.py:280 msgid "" "The support in Ubuntu 12.04 LTS for your Intel graphics hardware is limited " "and you may encounter problems after the upgrade. For more information see " @@ -1063,7 +1063,7 @@ "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForI8xx \r\n" "Вы сапраўды хочаце працягнуць абнаўленне?" -#: ../DistUpgrade/DistUpgradeQuirks.py:296 +#: ../DistUpgrade/DistUpgradeQuirks.py:300 msgid "" "Upgrading may reduce desktop effects, and performance in games and other " "graphically intensive programs." @@ -1071,7 +1071,7 @@ "Абнаўленне можа выклікаць зніжэнне якасці эфектаў працоўнага стала і " "прадукцыйнасці ў гульнях і праграмах, што актыўна выкарыстоўваюць графіку." -#: ../DistUpgrade/DistUpgradeQuirks.py:300 +#: ../DistUpgrade/DistUpgradeQuirks.py:304 msgid "" "This computer is currently using the AMD 'fglrx' graphics driver. No version " "of this driver is available that works with your hardware in Ubuntu 10.04 " @@ -1085,12 +1085,12 @@ "\n" "Працягнуць?" -#: ../DistUpgrade/DistUpgradeQuirks.py:339 -#: ../DistUpgrade/DistUpgradeQuirks.py:408 +#: ../DistUpgrade/DistUpgradeQuirks.py:343 +#: ../DistUpgrade/DistUpgradeQuirks.py:412 msgid "Sorry, no more upgrades for this system" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:340 +#: ../DistUpgrade/DistUpgradeQuirks.py:344 #, python-format msgid "" "There will not be any further Ubuntu releases for this system's 'i386' " @@ -1099,11 +1099,11 @@ "Updates for Ubuntu %s will continue until %s." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:355 +#: ../DistUpgrade/DistUpgradeQuirks.py:359 msgid "No ARMv6 CPU" msgstr "Няма працэсара ARMv6" -#: ../DistUpgrade/DistUpgradeQuirks.py:356 +#: ../DistUpgrade/DistUpgradeQuirks.py:360 msgid "" "Your system uses an ARM CPU that is older than the ARMv6 architecture. All " "packages in karmic were built with optimizations requiring ARMv6 as the " @@ -1115,12 +1115,12 @@ "ARMv6 і вышэй. Вашу сістэму немагчыма абнавіць да новага рэлізу Ubuntu з " "бягучым апаратным забеспячэннем." -#: ../DistUpgrade/DistUpgradeQuirks.py:376 +#: ../DistUpgrade/DistUpgradeQuirks.py:380 msgid "" "Sorry, this storage driver is not supported in kernels for newer releases" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:378 +#: ../DistUpgrade/DistUpgradeQuirks.py:382 #, python-format msgid "" "There will not be any further Ubuntu releases that provide kernel support " @@ -1130,7 +1130,7 @@ "driver, remove the directory %s and try again." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:409 +#: ../DistUpgrade/DistUpgradeQuirks.py:413 #, python-format msgid "" "There will not be any further Ubuntu releases for this system's POWER8 " @@ -1139,11 +1139,11 @@ "Updates for Ubuntu %s will continue until %s." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:427 +#: ../DistUpgrade/DistUpgradeQuirks.py:431 msgid "No init available" msgstr "Служба init недаступна" -#: ../DistUpgrade/DistUpgradeQuirks.py:428 +#: ../DistUpgrade/DistUpgradeQuirks.py:432 msgid "" "Your system appears to be a virtualised environment without an init daemon, " "e.g. Linux-VServer. Ubuntu 10.04 LTS cannot function within this type of " @@ -1157,11 +1157,11 @@ "\n" "Вы ўпэўнены, што хочаце працягнуць?" -#: ../DistUpgrade/DistUpgradeQuirks.py:469 +#: ../DistUpgrade/DistUpgradeQuirks.py:473 msgid "The Robot Operating System (ROS) is installed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:470 +#: ../DistUpgrade/DistUpgradeQuirks.py:474 msgid "" "It appears that ROS is currently installed. Each ROS release is very strict " "about the versions of Ubuntu it supports, and Ubuntu upgrades can fail if " @@ -1178,11 +1178,11 @@ "Are you sure you want to continue?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:670 +#: ../DistUpgrade/DistUpgradeQuirks.py:674 msgid "Connection to the Snap Store failed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:671 +#: ../DistUpgrade/DistUpgradeQuirks.py:675 msgid "" "You have the package lxd installed but your system is unable to reach the " "Snap Store. lxd is now provided via a snap and the release upgrade will fail " @@ -1192,11 +1192,11 @@ "may want to configure a Snap Store proxy." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:686 +#: ../DistUpgrade/DistUpgradeQuirks.py:690 msgid "Connection to Snap Store failed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:687 +#: ../DistUpgrade/DistUpgradeQuirks.py:691 msgid "" "Your system does not have a connection to the Snap Store. For the best " "upgrade experience make sure that your system can connect to api.snapcraft." @@ -1204,11 +1204,11 @@ "Do you still want to continue with the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:696 +#: ../DistUpgrade/DistUpgradeQuirks.py:700 msgid "Outdated snapd package" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:697 +#: ../DistUpgrade/DistUpgradeQuirks.py:701 msgid "" "Your system does not have the latest version of snapd. Please update the " "version of snapd on your system to improve the upgrade experience.\n" @@ -1217,36 +1217,36 @@ #. now perform direct API calls to the store, requesting size #. information for each of the snaps needing installation -#: ../DistUpgrade/DistUpgradeQuirks.py:722 +#: ../DistUpgrade/DistUpgradeQuirks.py:726 msgid "Calculating snap size requirements" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:753 +#: ../DistUpgrade/DistUpgradeQuirks.py:757 msgid "Processing snap replacements" msgstr "" #. TODO: This status should be updated, but the time of #. this change to snap switch is post-translation freeze. -#: ../DistUpgrade/DistUpgradeQuirks.py:761 +#: ../DistUpgrade/DistUpgradeQuirks.py:765 #, python-format msgid "refreshing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:765 +#: ../DistUpgrade/DistUpgradeQuirks.py:769 #, python-format msgid "removing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:768 +#: ../DistUpgrade/DistUpgradeQuirks.py:772 #, python-format msgid "installing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:797 +#: ../DistUpgrade/DistUpgradeQuirks.py:801 msgid "PAE not enabled" msgstr "PAE не ўключана" -#: ../DistUpgrade/DistUpgradeQuirks.py:798 +#: ../DistUpgrade/DistUpgradeQuirks.py:802 msgid "" "Your system uses a CPU that does not have PAE enabled. Ubuntu only supports " "non-PAE systems up to Ubuntu 12.04. To upgrade to a later version of Ubuntu, " @@ -1258,11 +1258,11 @@ "12.10. Абнаўленне да новай версіі Ubuntu запатрабуе ўключэння PAE (калі гэта " "магчыма). Гл.: Http://help.ubuntu.com/community/EnablingPAE" -#: ../DistUpgrade/DistUpgradeQuirks.py:1094 +#: ../DistUpgrade/DistUpgradeQuirks.py:1098 msgid "universe component not enabled" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1095 +#: ../DistUpgrade/DistUpgradeQuirks.py:1099 #, python-format msgid "" "You have the package %s installed which is a python2 package. python2 has " @@ -1274,39 +1274,50 @@ "universe component in /etc/apt/sources.list or remove %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1207 +#: ../DistUpgrade/DistUpgradeQuirks.py:1211 msgid "Checking for installed snaps" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1654 +#: ../DistUpgrade/DistUpgradeQuirks.py:1720 #, fuzzy msgid "Cannot upgrade this system" msgstr "Немагчыма абнавіць" -#: ../DistUpgrade/DistUpgradeQuirks.py:1655 +#: ../DistUpgrade/DistUpgradeQuirks.py:1721 msgid "" "Due to a bug in grub, this system cannot be safely upgraded at this time.\n" "\n" "See https://launchpad.net/bugs/2039172." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1721 +#: ../DistUpgrade/DistUpgradeQuirks.py:1787 #, python-brace-format msgid "Updates for Ubuntu {from_release.version} will " msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1731 +#: ../DistUpgrade/DistUpgradeQuirks.py:1797 #, fuzzy msgid "Sorry, cannot upgrade this system to 24.04 LTS" msgstr "Немагчыма абнавіць" -#: ../DistUpgrade/DistUpgradeQuirks.py:1734 +#: ../DistUpgrade/DistUpgradeQuirks.py:1800 msgid "" "The Raspberry Pi kernel for Ubuntu 24.04 LTS does not support the armhf " "architecture.\n" "\n" msgstr "" +#: ../DistUpgrade/DistUpgradeQuirks.py:1928 +#, fuzzy, python-brace-format +msgid "Sorry, cannot upgrade this system to {version}" +msgstr "Немагчыма абнавіць" + +#: ../DistUpgrade/DistUpgradeQuirks.py:1931 +msgid "" +"Upgrades for desktop systems running TPM FDE are not currently supported. " +"Please see https://launchpad.net/bugs/2065229 for more information." +msgstr "" + #: ../DistUpgrade/DistUpgradeMain.py:62 msgid "" "Use frontend. Currently available: \n" diff -Nru ubuntu-release-upgrader-24.04.17/po/bg.po ubuntu-release-upgrader-24.04.18/po/bg.po --- ubuntu-release-upgrader-24.04.17/po/bg.po 2024-04-29 14:26:40.000000000 +0000 +++ ubuntu-release-upgrader-24.04.18/po/bg.po 2024-05-09 19:39:15.000000000 +0000 @@ -9,7 +9,7 @@ msgstr "" "Project-Id-Version: update manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2024-04-29 16:03+0200\n" +"POT-Creation-Date: 2024-05-09 15:39-0400\n" "PO-Revision-Date: 2019-06-18 17:55+0000\n" "Last-Translator: Brian Murray \n" "Language-Team: Bulgarian \n" @@ -1020,12 +1020,12 @@ msgid "Media Change" msgstr "Смяна на носител" -#: ../DistUpgrade/DistUpgradeQuirks.py:248 +#: ../DistUpgrade/DistUpgradeQuirks.py:252 msgid "Your graphics hardware may not be fully supported in Ubuntu 14.04." msgstr "" "Вашият графичен хардуер не може да бъде напълно поддържан в Убунту 14.04." -#: ../DistUpgrade/DistUpgradeQuirks.py:250 +#: ../DistUpgrade/DistUpgradeQuirks.py:254 msgid "" "Running the 'unity' desktop environment is not fully supported by your " "graphics hardware. You will maybe end up in a very slow environment after " @@ -1040,12 +1040,12 @@ "посетете https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForUnity3D. Все " "още ли искате да започнете с надграждането?" -#: ../DistUpgrade/DistUpgradeQuirks.py:274 +#: ../DistUpgrade/DistUpgradeQuirks.py:278 msgid "Your graphics hardware may not be fully supported in Ubuntu 12.04 LTS." msgstr "" "Вашият графичен хардуер може да не се поддържа напълно в Убунту 12.04 LTS." -#: ../DistUpgrade/DistUpgradeQuirks.py:276 +#: ../DistUpgrade/DistUpgradeQuirks.py:280 msgid "" "The support in Ubuntu 12.04 LTS for your Intel graphics hardware is limited " "and you may encounter problems after the upgrade. For more information see " @@ -1057,7 +1057,7 @@ "информация вижте https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForI8xx. " "Искате ли да продължите с надграждането?" -#: ../DistUpgrade/DistUpgradeQuirks.py:296 +#: ../DistUpgrade/DistUpgradeQuirks.py:300 msgid "" "Upgrading may reduce desktop effects, and performance in games and other " "graphically intensive programs." @@ -1065,7 +1065,7 @@ "Надграждането може да намали ефектите на работния плот и производителността " "в игрите и други графични програми." -#: ../DistUpgrade/DistUpgradeQuirks.py:300 +#: ../DistUpgrade/DistUpgradeQuirks.py:304 msgid "" "This computer is currently using the AMD 'fglrx' graphics driver. No version " "of this driver is available that works with your hardware in Ubuntu 10.04 " @@ -1078,12 +1078,12 @@ "\n" "Искате ли да продължите?" -#: ../DistUpgrade/DistUpgradeQuirks.py:339 -#: ../DistUpgrade/DistUpgradeQuirks.py:408 +#: ../DistUpgrade/DistUpgradeQuirks.py:343 +#: ../DistUpgrade/DistUpgradeQuirks.py:412 msgid "Sorry, no more upgrades for this system" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:340 +#: ../DistUpgrade/DistUpgradeQuirks.py:344 #, python-format msgid "" "There will not be any further Ubuntu releases for this system's 'i386' " @@ -1092,11 +1092,11 @@ "Updates for Ubuntu %s will continue until %s." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:355 +#: ../DistUpgrade/DistUpgradeQuirks.py:359 msgid "No ARMv6 CPU" msgstr "Няма ARMv6 процесор" -#: ../DistUpgrade/DistUpgradeQuirks.py:356 +#: ../DistUpgrade/DistUpgradeQuirks.py:360 msgid "" "Your system uses an ARM CPU that is older than the ARMv6 architecture. All " "packages in karmic were built with optimizations requiring ARMv6 as the " @@ -1107,12 +1107,12 @@ "пакети в Karmic бяха оптимизрани с изискване минимум ARMv6 архитектура. Не е " "възможно да надградите система си до ново издание на Убунту с този хардуер." -#: ../DistUpgrade/DistUpgradeQuirks.py:376 +#: ../DistUpgrade/DistUpgradeQuirks.py:380 msgid "" "Sorry, this storage driver is not supported in kernels for newer releases" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:378 +#: ../DistUpgrade/DistUpgradeQuirks.py:382 #, python-format msgid "" "There will not be any further Ubuntu releases that provide kernel support " @@ -1122,7 +1122,7 @@ "driver, remove the directory %s and try again." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:409 +#: ../DistUpgrade/DistUpgradeQuirks.py:413 #, python-format msgid "" "There will not be any further Ubuntu releases for this system's POWER8 " @@ -1131,11 +1131,11 @@ "Updates for Ubuntu %s will continue until %s." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:427 +#: ../DistUpgrade/DistUpgradeQuirks.py:431 msgid "No init available" msgstr "Няма достъпен init" -#: ../DistUpgrade/DistUpgradeQuirks.py:428 +#: ../DistUpgrade/DistUpgradeQuirks.py:432 msgid "" "Your system appears to be a virtualised environment without an init daemon, " "e.g. Linux-VServer. Ubuntu 10.04 LTS cannot function within this type of " @@ -1149,11 +1149,11 @@ "изисква се, актуализиране на настройката на виртуалната ви машина.\n" "Сигурни ли сте, че искате да продължите?" -#: ../DistUpgrade/DistUpgradeQuirks.py:469 +#: ../DistUpgrade/DistUpgradeQuirks.py:473 msgid "The Robot Operating System (ROS) is installed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:470 +#: ../DistUpgrade/DistUpgradeQuirks.py:474 msgid "" "It appears that ROS is currently installed. Each ROS release is very strict " "about the versions of Ubuntu it supports, and Ubuntu upgrades can fail if " @@ -1170,11 +1170,11 @@ "Are you sure you want to continue?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:670 +#: ../DistUpgrade/DistUpgradeQuirks.py:674 msgid "Connection to the Snap Store failed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:671 +#: ../DistUpgrade/DistUpgradeQuirks.py:675 msgid "" "You have the package lxd installed but your system is unable to reach the " "Snap Store. lxd is now provided via a snap and the release upgrade will fail " @@ -1184,11 +1184,11 @@ "may want to configure a Snap Store proxy." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:686 +#: ../DistUpgrade/DistUpgradeQuirks.py:690 msgid "Connection to Snap Store failed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:687 +#: ../DistUpgrade/DistUpgradeQuirks.py:691 msgid "" "Your system does not have a connection to the Snap Store. For the best " "upgrade experience make sure that your system can connect to api.snapcraft." @@ -1196,11 +1196,11 @@ "Do you still want to continue with the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:696 +#: ../DistUpgrade/DistUpgradeQuirks.py:700 msgid "Outdated snapd package" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:697 +#: ../DistUpgrade/DistUpgradeQuirks.py:701 msgid "" "Your system does not have the latest version of snapd. Please update the " "version of snapd on your system to improve the upgrade experience.\n" @@ -1209,36 +1209,36 @@ #. now perform direct API calls to the store, requesting size #. information for each of the snaps needing installation -#: ../DistUpgrade/DistUpgradeQuirks.py:722 +#: ../DistUpgrade/DistUpgradeQuirks.py:726 msgid "Calculating snap size requirements" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:753 +#: ../DistUpgrade/DistUpgradeQuirks.py:757 msgid "Processing snap replacements" msgstr "" #. TODO: This status should be updated, but the time of #. this change to snap switch is post-translation freeze. -#: ../DistUpgrade/DistUpgradeQuirks.py:761 +#: ../DistUpgrade/DistUpgradeQuirks.py:765 #, python-format msgid "refreshing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:765 +#: ../DistUpgrade/DistUpgradeQuirks.py:769 #, python-format msgid "removing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:768 +#: ../DistUpgrade/DistUpgradeQuirks.py:772 #, python-format msgid "installing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:797 +#: ../DistUpgrade/DistUpgradeQuirks.py:801 msgid "PAE not enabled" msgstr "PAE е изключен" -#: ../DistUpgrade/DistUpgradeQuirks.py:798 +#: ../DistUpgrade/DistUpgradeQuirks.py:802 msgid "" "Your system uses a CPU that does not have PAE enabled. Ubuntu only supports " "non-PAE systems up to Ubuntu 12.04. To upgrade to a later version of Ubuntu, " @@ -1246,11 +1246,11 @@ "http://help.ubuntu.com/community/EnablingPAE" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1094 +#: ../DistUpgrade/DistUpgradeQuirks.py:1098 msgid "universe component not enabled" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1095 +#: ../DistUpgrade/DistUpgradeQuirks.py:1099 #, python-format msgid "" "You have the package %s installed which is a python2 package. python2 has " @@ -1262,39 +1262,50 @@ "universe component in /etc/apt/sources.list or remove %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1207 +#: ../DistUpgrade/DistUpgradeQuirks.py:1211 msgid "Checking for installed snaps" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1654 +#: ../DistUpgrade/DistUpgradeQuirks.py:1720 #, fuzzy msgid "Cannot upgrade this system" msgstr "Надграждането е невъзможно" -#: ../DistUpgrade/DistUpgradeQuirks.py:1655 +#: ../DistUpgrade/DistUpgradeQuirks.py:1721 msgid "" "Due to a bug in grub, this system cannot be safely upgraded at this time.\n" "\n" "See https://launchpad.net/bugs/2039172." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1721 +#: ../DistUpgrade/DistUpgradeQuirks.py:1787 #, python-brace-format msgid "Updates for Ubuntu {from_release.version} will " msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1731 +#: ../DistUpgrade/DistUpgradeQuirks.py:1797 #, fuzzy msgid "Sorry, cannot upgrade this system to 24.04 LTS" msgstr "Надграждането е невъзможно" -#: ../DistUpgrade/DistUpgradeQuirks.py:1734 +#: ../DistUpgrade/DistUpgradeQuirks.py:1800 msgid "" "The Raspberry Pi kernel for Ubuntu 24.04 LTS does not support the armhf " "architecture.\n" "\n" msgstr "" +#: ../DistUpgrade/DistUpgradeQuirks.py:1928 +#, fuzzy, python-brace-format +msgid "Sorry, cannot upgrade this system to {version}" +msgstr "Надграждането е невъзможно" + +#: ../DistUpgrade/DistUpgradeQuirks.py:1931 +msgid "" +"Upgrades for desktop systems running TPM FDE are not currently supported. " +"Please see https://launchpad.net/bugs/2065229 for more information." +msgstr "" + #: ../DistUpgrade/DistUpgradeMain.py:62 msgid "" "Use frontend. Currently available: \n" diff -Nru ubuntu-release-upgrader-24.04.17/po/bn.po ubuntu-release-upgrader-24.04.18/po/bn.po --- ubuntu-release-upgrader-24.04.17/po/bn.po 2024-04-29 14:26:40.000000000 +0000 +++ ubuntu-release-upgrader-24.04.18/po/bn.po 2024-05-09 19:39:15.000000000 +0000 @@ -12,7 +12,7 @@ msgstr "" "Project-Id-Version: shotwell-0.7.2\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2024-04-29 16:03+0200\n" +"POT-Creation-Date: 2024-05-09 15:39-0400\n" "PO-Revision-Date: 2019-02-10 12:11+0000\n" "Last-Translator: Istiak Ferdous \n" "Language-Team: Bengali \n" @@ -1009,11 +1009,11 @@ msgid "Media Change" msgstr "মিডিয়া পরিবর্তন" -#: ../DistUpgrade/DistUpgradeQuirks.py:248 +#: ../DistUpgrade/DistUpgradeQuirks.py:252 msgid "Your graphics hardware may not be fully supported in Ubuntu 14.04." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:250 +#: ../DistUpgrade/DistUpgradeQuirks.py:254 msgid "" "Running the 'unity' desktop environment is not fully supported by your " "graphics hardware. You will maybe end up in a very slow environment after " @@ -1023,12 +1023,12 @@ "upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:274 +#: ../DistUpgrade/DistUpgradeQuirks.py:278 msgid "Your graphics hardware may not be fully supported in Ubuntu 12.04 LTS." msgstr "" "আপনার গ্রাফিক্স হার্ডওয়্যার উবুন্টু ১২.০৪ (LTS) এ সম্ভবত পুরোপুরি ভাবে সমর্থন করবে না।" -#: ../DistUpgrade/DistUpgradeQuirks.py:276 +#: ../DistUpgrade/DistUpgradeQuirks.py:280 msgid "" "The support in Ubuntu 12.04 LTS for your Intel graphics hardware is limited " "and you may encounter problems after the upgrade. For more information see " @@ -1040,7 +1040,7 @@ "Bugs/UpdateManagerWarningForI8xx আপনি কি উন্নীতকরণ করতে চান?" # snigdha -#: ../DistUpgrade/DistUpgradeQuirks.py:296 +#: ../DistUpgrade/DistUpgradeQuirks.py:300 msgid "" "Upgrading may reduce desktop effects, and performance in games and other " "graphically intensive programs." @@ -1048,7 +1048,7 @@ "আপগ্রেড করার ফলে গ্রাফিক ভিত্তিক প্রোগ্রাম ও গেমস্ ব্যবহার করার সময় ডেক্সটপের প্রভাব " "ও কার্যকারীতা কিছুটা কমে যাবে।" -#: ../DistUpgrade/DistUpgradeQuirks.py:300 +#: ../DistUpgrade/DistUpgradeQuirks.py:304 msgid "" "This computer is currently using the AMD 'fglrx' graphics driver. No version " "of this driver is available that works with your hardware in Ubuntu 10.04 " @@ -1061,12 +1061,12 @@ "\n" " আপনি কি চালিয়ে যেতে চান?" -#: ../DistUpgrade/DistUpgradeQuirks.py:339 -#: ../DistUpgrade/DistUpgradeQuirks.py:408 +#: ../DistUpgrade/DistUpgradeQuirks.py:343 +#: ../DistUpgrade/DistUpgradeQuirks.py:412 msgid "Sorry, no more upgrades for this system" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:340 +#: ../DistUpgrade/DistUpgradeQuirks.py:344 #, python-format msgid "" "There will not be any further Ubuntu releases for this system's 'i386' " @@ -1075,11 +1075,11 @@ "Updates for Ubuntu %s will continue until %s." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:355 +#: ../DistUpgrade/DistUpgradeQuirks.py:359 msgid "No ARMv6 CPU" msgstr "কোনো ARMv6 CPU নেই" -#: ../DistUpgrade/DistUpgradeQuirks.py:356 +#: ../DistUpgrade/DistUpgradeQuirks.py:360 msgid "" "Your system uses an ARM CPU that is older than the ARMv6 architecture. All " "packages in karmic were built with optimizations requiring ARMv6 as the " @@ -1090,12 +1090,12 @@ "সব প্যাকেজ সর্বনিম্ন ARMv6 আর্কিটেকচারে নির্মাণ করা হয়েছে। এই হার্ডওয়্যার সহকারে " "আপনার সিস্টেমকে নতুন উবুন্টু সংস্করণে আপগ্রেড করা সম্ভব নয়।" -#: ../DistUpgrade/DistUpgradeQuirks.py:376 +#: ../DistUpgrade/DistUpgradeQuirks.py:380 msgid "" "Sorry, this storage driver is not supported in kernels for newer releases" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:378 +#: ../DistUpgrade/DistUpgradeQuirks.py:382 #, python-format msgid "" "There will not be any further Ubuntu releases that provide kernel support " @@ -1105,7 +1105,7 @@ "driver, remove the directory %s and try again." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:409 +#: ../DistUpgrade/DistUpgradeQuirks.py:413 #, python-format msgid "" "There will not be any further Ubuntu releases for this system's POWER8 " @@ -1114,11 +1114,11 @@ "Updates for Ubuntu %s will continue until %s." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:427 +#: ../DistUpgrade/DistUpgradeQuirks.py:431 msgid "No init available" msgstr "কোনো init নেই" -#: ../DistUpgrade/DistUpgradeQuirks.py:428 +#: ../DistUpgrade/DistUpgradeQuirks.py:432 msgid "" "Your system appears to be a virtualised environment without an init daemon, " "e.g. Linux-VServer. Ubuntu 10.04 LTS cannot function within this type of " @@ -1133,11 +1133,11 @@ "\n" "আপনি কি নিশ্চিত আপনি এগিয়ে যেতে চান?" -#: ../DistUpgrade/DistUpgradeQuirks.py:469 +#: ../DistUpgrade/DistUpgradeQuirks.py:473 msgid "The Robot Operating System (ROS) is installed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:470 +#: ../DistUpgrade/DistUpgradeQuirks.py:474 msgid "" "It appears that ROS is currently installed. Each ROS release is very strict " "about the versions of Ubuntu it supports, and Ubuntu upgrades can fail if " @@ -1154,11 +1154,11 @@ "Are you sure you want to continue?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:670 +#: ../DistUpgrade/DistUpgradeQuirks.py:674 msgid "Connection to the Snap Store failed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:671 +#: ../DistUpgrade/DistUpgradeQuirks.py:675 msgid "" "You have the package lxd installed but your system is unable to reach the " "Snap Store. lxd is now provided via a snap and the release upgrade will fail " @@ -1168,11 +1168,11 @@ "may want to configure a Snap Store proxy." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:686 +#: ../DistUpgrade/DistUpgradeQuirks.py:690 msgid "Connection to Snap Store failed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:687 +#: ../DistUpgrade/DistUpgradeQuirks.py:691 msgid "" "Your system does not have a connection to the Snap Store. For the best " "upgrade experience make sure that your system can connect to api.snapcraft." @@ -1180,11 +1180,11 @@ "Do you still want to continue with the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:696 +#: ../DistUpgrade/DistUpgradeQuirks.py:700 msgid "Outdated snapd package" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:697 +#: ../DistUpgrade/DistUpgradeQuirks.py:701 msgid "" "Your system does not have the latest version of snapd. Please update the " "version of snapd on your system to improve the upgrade experience.\n" @@ -1193,36 +1193,36 @@ #. now perform direct API calls to the store, requesting size #. information for each of the snaps needing installation -#: ../DistUpgrade/DistUpgradeQuirks.py:722 +#: ../DistUpgrade/DistUpgradeQuirks.py:726 msgid "Calculating snap size requirements" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:753 +#: ../DistUpgrade/DistUpgradeQuirks.py:757 msgid "Processing snap replacements" msgstr "" #. TODO: This status should be updated, but the time of #. this change to snap switch is post-translation freeze. -#: ../DistUpgrade/DistUpgradeQuirks.py:761 +#: ../DistUpgrade/DistUpgradeQuirks.py:765 #, python-format msgid "refreshing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:765 +#: ../DistUpgrade/DistUpgradeQuirks.py:769 #, python-format msgid "removing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:768 +#: ../DistUpgrade/DistUpgradeQuirks.py:772 #, python-format msgid "installing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:797 +#: ../DistUpgrade/DistUpgradeQuirks.py:801 msgid "PAE not enabled" msgstr "PAE সক্রিয় নয়" -#: ../DistUpgrade/DistUpgradeQuirks.py:798 +#: ../DistUpgrade/DistUpgradeQuirks.py:802 msgid "" "Your system uses a CPU that does not have PAE enabled. Ubuntu only supports " "non-PAE systems up to Ubuntu 12.04. To upgrade to a later version of Ubuntu, " @@ -1230,11 +1230,11 @@ "http://help.ubuntu.com/community/EnablingPAE" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1094 +#: ../DistUpgrade/DistUpgradeQuirks.py:1098 msgid "universe component not enabled" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1095 +#: ../DistUpgrade/DistUpgradeQuirks.py:1099 #, python-format msgid "" "You have the package %s installed which is a python2 package. python2 has " @@ -1246,39 +1246,50 @@ "universe component in /etc/apt/sources.list or remove %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1207 +#: ../DistUpgrade/DistUpgradeQuirks.py:1211 msgid "Checking for installed snaps" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1654 +#: ../DistUpgrade/DistUpgradeQuirks.py:1720 #, fuzzy msgid "Cannot upgrade this system" msgstr "আপডেট করা সম্ভব নয়" -#: ../DistUpgrade/DistUpgradeQuirks.py:1655 +#: ../DistUpgrade/DistUpgradeQuirks.py:1721 msgid "" "Due to a bug in grub, this system cannot be safely upgraded at this time.\n" "\n" "See https://launchpad.net/bugs/2039172." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1721 +#: ../DistUpgrade/DistUpgradeQuirks.py:1787 #, python-brace-format msgid "Updates for Ubuntu {from_release.version} will " msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1731 +#: ../DistUpgrade/DistUpgradeQuirks.py:1797 #, fuzzy msgid "Sorry, cannot upgrade this system to 24.04 LTS" msgstr "আপডেট করা সম্ভব নয়" -#: ../DistUpgrade/DistUpgradeQuirks.py:1734 +#: ../DistUpgrade/DistUpgradeQuirks.py:1800 msgid "" "The Raspberry Pi kernel for Ubuntu 24.04 LTS does not support the armhf " "architecture.\n" "\n" msgstr "" +#: ../DistUpgrade/DistUpgradeQuirks.py:1928 +#, fuzzy, python-brace-format +msgid "Sorry, cannot upgrade this system to {version}" +msgstr "আপডেট করা সম্ভব নয়" + +#: ../DistUpgrade/DistUpgradeQuirks.py:1931 +msgid "" +"Upgrades for desktop systems running TPM FDE are not currently supported. " +"Please see https://launchpad.net/bugs/2065229 for more information." +msgstr "" + # snigdha #: ../DistUpgrade/DistUpgradeMain.py:62 msgid "" diff -Nru ubuntu-release-upgrader-24.04.17/po/bo.po ubuntu-release-upgrader-24.04.18/po/bo.po --- ubuntu-release-upgrader-24.04.17/po/bo.po 2024-04-29 14:26:40.000000000 +0000 +++ ubuntu-release-upgrader-24.04.18/po/bo.po 2024-05-09 19:39:15.000000000 +0000 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2024-04-29 16:03+0200\n" +"POT-Creation-Date: 2024-05-09 15:39-0400\n" "PO-Revision-Date: 2013-05-22 11:00+0000\n" "Last-Translator: Brian Murray \n" "Language-Team: Tibetan \n" @@ -943,11 +943,11 @@ msgid "Media Change" msgstr "འཇུག་ཟམ་བརྗེ་བ" -#: ../DistUpgrade/DistUpgradeQuirks.py:248 +#: ../DistUpgrade/DistUpgradeQuirks.py:252 msgid "Your graphics hardware may not be fully supported in Ubuntu 14.04." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:250 +#: ../DistUpgrade/DistUpgradeQuirks.py:254 msgid "" "Running the 'unity' desktop environment is not fully supported by your " "graphics hardware. You will maybe end up in a very slow environment after " @@ -957,11 +957,11 @@ "upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:274 +#: ../DistUpgrade/DistUpgradeQuirks.py:278 msgid "Your graphics hardware may not be fully supported in Ubuntu 12.04 LTS." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:276 +#: ../DistUpgrade/DistUpgradeQuirks.py:280 msgid "" "The support in Ubuntu 12.04 LTS for your Intel graphics hardware is limited " "and you may encounter problems after the upgrade. For more information see " @@ -969,7 +969,7 @@ "continue with the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:296 +#: ../DistUpgrade/DistUpgradeQuirks.py:300 msgid "" "Upgrading may reduce desktop effects, and performance in games and other " "graphically intensive programs." @@ -977,7 +977,7 @@ "རིམ་སྤོར་གྱིས་མདུན་ངོས་ཀྱི་རྣམ་པ་དང་རྩེད་རིགས་ཀྱི་འགྲོ་སྟངས། པར་རིས་མང་པོ་ཡོད་པའི་བྱ་རིམ་ལ་འགྱུར་ལྡོག་ཡོད་" "ཉེན་ཆེཨ" -#: ../DistUpgrade/DistUpgradeQuirks.py:300 +#: ../DistUpgrade/DistUpgradeQuirks.py:304 msgid "" "This computer is currently using the AMD 'fglrx' graphics driver. No version " "of this driver is available that works with your hardware in Ubuntu 10.04 " @@ -990,12 +990,12 @@ "\n" "ཁྱོད་ཀྱིས་མུ་མཐུད་དགོས་སམ" -#: ../DistUpgrade/DistUpgradeQuirks.py:339 -#: ../DistUpgrade/DistUpgradeQuirks.py:408 +#: ../DistUpgrade/DistUpgradeQuirks.py:343 +#: ../DistUpgrade/DistUpgradeQuirks.py:412 msgid "Sorry, no more upgrades for this system" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:340 +#: ../DistUpgrade/DistUpgradeQuirks.py:344 #, python-format msgid "" "There will not be any further Ubuntu releases for this system's 'i386' " @@ -1004,11 +1004,11 @@ "Updates for Ubuntu %s will continue until %s." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:355 +#: ../DistUpgrade/DistUpgradeQuirks.py:359 msgid "No ARMv6 CPU" msgstr "ARMv6 CPU་མེད་པ" -#: ../DistUpgrade/DistUpgradeQuirks.py:356 +#: ../DistUpgrade/DistUpgradeQuirks.py:360 msgid "" "Your system uses an ARM CPU that is older than the ARMv6 architecture. All " "packages in karmic were built with optimizations requiring ARMv6 as the " @@ -1020,12 +1020,12 @@ "minimal architecture. It is not possible to upgrade your system to a new " "Ubuntu release with this hardware." -#: ../DistUpgrade/DistUpgradeQuirks.py:376 +#: ../DistUpgrade/DistUpgradeQuirks.py:380 msgid "" "Sorry, this storage driver is not supported in kernels for newer releases" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:378 +#: ../DistUpgrade/DistUpgradeQuirks.py:382 #, python-format msgid "" "There will not be any further Ubuntu releases that provide kernel support " @@ -1035,7 +1035,7 @@ "driver, remove the directory %s and try again." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:409 +#: ../DistUpgrade/DistUpgradeQuirks.py:413 #, python-format msgid "" "There will not be any further Ubuntu releases for this system's POWER8 " @@ -1044,11 +1044,11 @@ "Updates for Ubuntu %s will continue until %s." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:427 +#: ../DistUpgrade/DistUpgradeQuirks.py:431 msgid "No init available" msgstr "init ་མེད་པ" -#: ../DistUpgrade/DistUpgradeQuirks.py:428 +#: ../DistUpgrade/DistUpgradeQuirks.py:432 msgid "" "Your system appears to be a virtualised environment without an init daemon, " "e.g. Linux-VServer. Ubuntu 10.04 LTS cannot function within this type of " @@ -1064,11 +1064,11 @@ "\n" "Are you sure you want to continue?" -#: ../DistUpgrade/DistUpgradeQuirks.py:469 +#: ../DistUpgrade/DistUpgradeQuirks.py:473 msgid "The Robot Operating System (ROS) is installed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:470 +#: ../DistUpgrade/DistUpgradeQuirks.py:474 msgid "" "It appears that ROS is currently installed. Each ROS release is very strict " "about the versions of Ubuntu it supports, and Ubuntu upgrades can fail if " @@ -1085,11 +1085,11 @@ "Are you sure you want to continue?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:670 +#: ../DistUpgrade/DistUpgradeQuirks.py:674 msgid "Connection to the Snap Store failed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:671 +#: ../DistUpgrade/DistUpgradeQuirks.py:675 msgid "" "You have the package lxd installed but your system is unable to reach the " "Snap Store. lxd is now provided via a snap and the release upgrade will fail " @@ -1099,11 +1099,11 @@ "may want to configure a Snap Store proxy." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:686 +#: ../DistUpgrade/DistUpgradeQuirks.py:690 msgid "Connection to Snap Store failed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:687 +#: ../DistUpgrade/DistUpgradeQuirks.py:691 msgid "" "Your system does not have a connection to the Snap Store. For the best " "upgrade experience make sure that your system can connect to api.snapcraft." @@ -1111,11 +1111,11 @@ "Do you still want to continue with the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:696 +#: ../DistUpgrade/DistUpgradeQuirks.py:700 msgid "Outdated snapd package" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:697 +#: ../DistUpgrade/DistUpgradeQuirks.py:701 msgid "" "Your system does not have the latest version of snapd. Please update the " "version of snapd on your system to improve the upgrade experience.\n" @@ -1124,36 +1124,36 @@ #. now perform direct API calls to the store, requesting size #. information for each of the snaps needing installation -#: ../DistUpgrade/DistUpgradeQuirks.py:722 +#: ../DistUpgrade/DistUpgradeQuirks.py:726 msgid "Calculating snap size requirements" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:753 +#: ../DistUpgrade/DistUpgradeQuirks.py:757 msgid "Processing snap replacements" msgstr "" #. TODO: This status should be updated, but the time of #. this change to snap switch is post-translation freeze. -#: ../DistUpgrade/DistUpgradeQuirks.py:761 +#: ../DistUpgrade/DistUpgradeQuirks.py:765 #, python-format msgid "refreshing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:765 +#: ../DistUpgrade/DistUpgradeQuirks.py:769 #, python-format msgid "removing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:768 +#: ../DistUpgrade/DistUpgradeQuirks.py:772 #, python-format msgid "installing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:797 +#: ../DistUpgrade/DistUpgradeQuirks.py:801 msgid "PAE not enabled" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:798 +#: ../DistUpgrade/DistUpgradeQuirks.py:802 msgid "" "Your system uses a CPU that does not have PAE enabled. Ubuntu only supports " "non-PAE systems up to Ubuntu 12.04. To upgrade to a later version of Ubuntu, " @@ -1161,11 +1161,11 @@ "http://help.ubuntu.com/community/EnablingPAE" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1094 +#: ../DistUpgrade/DistUpgradeQuirks.py:1098 msgid "universe component not enabled" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1095 +#: ../DistUpgrade/DistUpgradeQuirks.py:1099 #, python-format msgid "" "You have the package %s installed which is a python2 package. python2 has " @@ -1177,39 +1177,50 @@ "universe component in /etc/apt/sources.list or remove %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1207 +#: ../DistUpgrade/DistUpgradeQuirks.py:1211 msgid "Checking for installed snaps" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1654 +#: ../DistUpgrade/DistUpgradeQuirks.py:1720 #, fuzzy msgid "Cannot upgrade this system" msgstr "Cannot upgrade" -#: ../DistUpgrade/DistUpgradeQuirks.py:1655 +#: ../DistUpgrade/DistUpgradeQuirks.py:1721 msgid "" "Due to a bug in grub, this system cannot be safely upgraded at this time.\n" "\n" "See https://launchpad.net/bugs/2039172." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1721 +#: ../DistUpgrade/DistUpgradeQuirks.py:1787 #, python-brace-format msgid "Updates for Ubuntu {from_release.version} will " msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1731 +#: ../DistUpgrade/DistUpgradeQuirks.py:1797 #, fuzzy msgid "Sorry, cannot upgrade this system to 24.04 LTS" msgstr "Cannot upgrade" -#: ../DistUpgrade/DistUpgradeQuirks.py:1734 +#: ../DistUpgrade/DistUpgradeQuirks.py:1800 msgid "" "The Raspberry Pi kernel for Ubuntu 24.04 LTS does not support the armhf " "architecture.\n" "\n" msgstr "" +#: ../DistUpgrade/DistUpgradeQuirks.py:1928 +#, fuzzy, python-brace-format +msgid "Sorry, cannot upgrade this system to {version}" +msgstr "Cannot upgrade" + +#: ../DistUpgrade/DistUpgradeQuirks.py:1931 +msgid "" +"Upgrades for desktop systems running TPM FDE are not currently supported. " +"Please see https://launchpad.net/bugs/2065229 for more information." +msgstr "" + #: ../DistUpgrade/DistUpgradeMain.py:62 msgid "" "Use frontend. Currently available: \n" diff -Nru ubuntu-release-upgrader-24.04.17/po/br.po ubuntu-release-upgrader-24.04.18/po/br.po --- ubuntu-release-upgrader-24.04.17/po/br.po 2024-04-29 14:26:40.000000000 +0000 +++ ubuntu-release-upgrader-24.04.18/po/br.po 2024-05-09 19:39:15.000000000 +0000 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2024-04-29 16:03+0200\n" +"POT-Creation-Date: 2024-05-09 15:39-0400\n" "PO-Revision-Date: 2013-05-22 11:00+0000\n" "Last-Translator: Brian Murray \n" "Language-Team: Breton \n" @@ -965,11 +965,11 @@ msgid "Media Change" msgstr "Kemm ar media" -#: ../DistUpgrade/DistUpgradeQuirks.py:248 +#: ../DistUpgrade/DistUpgradeQuirks.py:252 msgid "Your graphics hardware may not be fully supported in Ubuntu 14.04." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:250 +#: ../DistUpgrade/DistUpgradeQuirks.py:254 msgid "" "Running the 'unity' desktop environment is not fully supported by your " "graphics hardware. You will maybe end up in a very slow environment after " @@ -979,11 +979,11 @@ "upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:274 +#: ../DistUpgrade/DistUpgradeQuirks.py:278 msgid "Your graphics hardware may not be fully supported in Ubuntu 12.04 LTS." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:276 +#: ../DistUpgrade/DistUpgradeQuirks.py:280 msgid "" "The support in Ubuntu 12.04 LTS for your Intel graphics hardware is limited " "and you may encounter problems after the upgrade. For more information see " @@ -991,7 +991,7 @@ "continue with the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:296 +#: ../DistUpgrade/DistUpgradeQuirks.py:300 msgid "" "Upgrading may reduce desktop effects, and performance in games and other " "graphically intensive programs." @@ -999,7 +999,7 @@ "Dre an hizivaat e vo gwashaet efedoù ar burev marteze, an digonadoù evit ar " "c'hoarioù hag ar gouvlevioù a c'houlenn kalz a-fet kevregadoù." -#: ../DistUpgrade/DistUpgradeQuirks.py:300 +#: ../DistUpgrade/DistUpgradeQuirks.py:304 msgid "" "This computer is currently using the AMD 'fglrx' graphics driver. No version " "of this driver is available that works with your hardware in Ubuntu 10.04 " @@ -1013,12 +1013,12 @@ "\n" "Ha fellout a ra deoc'h kenderc'hel ?" -#: ../DistUpgrade/DistUpgradeQuirks.py:339 -#: ../DistUpgrade/DistUpgradeQuirks.py:408 +#: ../DistUpgrade/DistUpgradeQuirks.py:343 +#: ../DistUpgrade/DistUpgradeQuirks.py:412 msgid "Sorry, no more upgrades for this system" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:340 +#: ../DistUpgrade/DistUpgradeQuirks.py:344 #, python-format msgid "" "There will not be any further Ubuntu releases for this system's 'i386' " @@ -1027,11 +1027,11 @@ "Updates for Ubuntu %s will continue until %s." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:355 +#: ../DistUpgrade/DistUpgradeQuirks.py:359 msgid "No ARMv6 CPU" msgstr "Korrgewerier ARMv6 ebet" -#: ../DistUpgrade/DistUpgradeQuirks.py:356 +#: ../DistUpgrade/DistUpgradeQuirks.py:360 msgid "" "Your system uses an ARM CPU that is older than the ARMv6 architecture. All " "packages in karmic were built with optimizations requiring ARMv6 as the " @@ -1043,12 +1043,12 @@ "c'houlenne da gaout ARMv6 evit adeiladezh izek. N'eus ket tro da hizivaat ho " "reizhiad da handelv nevez Ubuntu gant ar periant-mañ." -#: ../DistUpgrade/DistUpgradeQuirks.py:376 +#: ../DistUpgrade/DistUpgradeQuirks.py:380 msgid "" "Sorry, this storage driver is not supported in kernels for newer releases" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:378 +#: ../DistUpgrade/DistUpgradeQuirks.py:382 #, python-format msgid "" "There will not be any further Ubuntu releases that provide kernel support " @@ -1058,7 +1058,7 @@ "driver, remove the directory %s and try again." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:409 +#: ../DistUpgrade/DistUpgradeQuirks.py:413 #, python-format msgid "" "There will not be any further Ubuntu releases for this system's POWER8 " @@ -1067,12 +1067,12 @@ "Updates for Ubuntu %s will continue until %s." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:427 +#: ../DistUpgrade/DistUpgradeQuirks.py:431 msgid "No init available" msgstr "an deraouekaat n'eo ket hegerz" # daemon : argerzh en drekva -#: ../DistUpgrade/DistUpgradeQuirks.py:428 +#: ../DistUpgrade/DistUpgradeQuirks.py:432 msgid "" "Your system appears to be a virtualised environment without an init daemon, " "e.g. Linux-VServer. Ubuntu 10.04 LTS cannot function within this type of " @@ -1087,11 +1087,11 @@ "gefluniañ galloudel da gentañ.\n" "Ha fellout a ra deoc'h kenderc'hel ?" -#: ../DistUpgrade/DistUpgradeQuirks.py:469 +#: ../DistUpgrade/DistUpgradeQuirks.py:473 msgid "The Robot Operating System (ROS) is installed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:470 +#: ../DistUpgrade/DistUpgradeQuirks.py:474 msgid "" "It appears that ROS is currently installed. Each ROS release is very strict " "about the versions of Ubuntu it supports, and Ubuntu upgrades can fail if " @@ -1108,11 +1108,11 @@ "Are you sure you want to continue?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:670 +#: ../DistUpgrade/DistUpgradeQuirks.py:674 msgid "Connection to the Snap Store failed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:671 +#: ../DistUpgrade/DistUpgradeQuirks.py:675 msgid "" "You have the package lxd installed but your system is unable to reach the " "Snap Store. lxd is now provided via a snap and the release upgrade will fail " @@ -1122,11 +1122,11 @@ "may want to configure a Snap Store proxy." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:686 +#: ../DistUpgrade/DistUpgradeQuirks.py:690 msgid "Connection to Snap Store failed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:687 +#: ../DistUpgrade/DistUpgradeQuirks.py:691 msgid "" "Your system does not have a connection to the Snap Store. For the best " "upgrade experience make sure that your system can connect to api.snapcraft." @@ -1134,11 +1134,11 @@ "Do you still want to continue with the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:696 +#: ../DistUpgrade/DistUpgradeQuirks.py:700 msgid "Outdated snapd package" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:697 +#: ../DistUpgrade/DistUpgradeQuirks.py:701 msgid "" "Your system does not have the latest version of snapd. Please update the " "version of snapd on your system to improve the upgrade experience.\n" @@ -1147,36 +1147,36 @@ #. now perform direct API calls to the store, requesting size #. information for each of the snaps needing installation -#: ../DistUpgrade/DistUpgradeQuirks.py:722 +#: ../DistUpgrade/DistUpgradeQuirks.py:726 msgid "Calculating snap size requirements" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:753 +#: ../DistUpgrade/DistUpgradeQuirks.py:757 msgid "Processing snap replacements" msgstr "" #. TODO: This status should be updated, but the time of #. this change to snap switch is post-translation freeze. -#: ../DistUpgrade/DistUpgradeQuirks.py:761 +#: ../DistUpgrade/DistUpgradeQuirks.py:765 #, python-format msgid "refreshing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:765 +#: ../DistUpgrade/DistUpgradeQuirks.py:769 #, python-format msgid "removing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:768 +#: ../DistUpgrade/DistUpgradeQuirks.py:772 #, python-format msgid "installing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:797 +#: ../DistUpgrade/DistUpgradeQuirks.py:801 msgid "PAE not enabled" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:798 +#: ../DistUpgrade/DistUpgradeQuirks.py:802 msgid "" "Your system uses a CPU that does not have PAE enabled. Ubuntu only supports " "non-PAE systems up to Ubuntu 12.04. To upgrade to a later version of Ubuntu, " @@ -1184,11 +1184,11 @@ "http://help.ubuntu.com/community/EnablingPAE" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1094 +#: ../DistUpgrade/DistUpgradeQuirks.py:1098 msgid "universe component not enabled" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1095 +#: ../DistUpgrade/DistUpgradeQuirks.py:1099 #, python-format msgid "" "You have the package %s installed which is a python2 package. python2 has " @@ -1200,39 +1200,50 @@ "universe component in /etc/apt/sources.list or remove %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1207 +#: ../DistUpgrade/DistUpgradeQuirks.py:1211 msgid "Checking for installed snaps" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1654 +#: ../DistUpgrade/DistUpgradeQuirks.py:1720 #, fuzzy msgid "Cannot upgrade this system" msgstr "N'hall ket hizivaat" -#: ../DistUpgrade/DistUpgradeQuirks.py:1655 +#: ../DistUpgrade/DistUpgradeQuirks.py:1721 msgid "" "Due to a bug in grub, this system cannot be safely upgraded at this time.\n" "\n" "See https://launchpad.net/bugs/2039172." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1721 +#: ../DistUpgrade/DistUpgradeQuirks.py:1787 #, python-brace-format msgid "Updates for Ubuntu {from_release.version} will " msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1731 +#: ../DistUpgrade/DistUpgradeQuirks.py:1797 #, fuzzy msgid "Sorry, cannot upgrade this system to 24.04 LTS" msgstr "N'hall ket hizivaat" -#: ../DistUpgrade/DistUpgradeQuirks.py:1734 +#: ../DistUpgrade/DistUpgradeQuirks.py:1800 msgid "" "The Raspberry Pi kernel for Ubuntu 24.04 LTS does not support the armhf " "architecture.\n" "\n" msgstr "" +#: ../DistUpgrade/DistUpgradeQuirks.py:1928 +#, fuzzy, python-brace-format +msgid "Sorry, cannot upgrade this system to {version}" +msgstr "N'hall ket hizivaat" + +#: ../DistUpgrade/DistUpgradeQuirks.py:1931 +msgid "" +"Upgrades for desktop systems running TPM FDE are not currently supported. " +"Please see https://launchpad.net/bugs/2065229 for more information." +msgstr "" + #: ../DistUpgrade/DistUpgradeMain.py:62 msgid "" "Use frontend. Currently available: \n" diff -Nru ubuntu-release-upgrader-24.04.17/po/bs.po ubuntu-release-upgrader-24.04.18/po/bs.po --- ubuntu-release-upgrader-24.04.17/po/bs.po 2024-04-29 14:26:40.000000000 +0000 +++ ubuntu-release-upgrader-24.04.18/po/bs.po 2024-05-09 19:39:15.000000000 +0000 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2024-04-29 16:03+0200\n" +"POT-Creation-Date: 2024-05-09 15:39-0400\n" "PO-Revision-Date: 2019-06-18 17:53+0000\n" "Last-Translator: Brian Murray \n" "Language-Team: Bosnian \n" @@ -1051,13 +1051,13 @@ msgid "Media Change" msgstr "Izmjena Medija" -#: ../DistUpgrade/DistUpgradeQuirks.py:248 +#: ../DistUpgrade/DistUpgradeQuirks.py:252 msgid "Your graphics hardware may not be fully supported in Ubuntu 14.04." msgstr "" "Postoji mogućnost da vaš grafički hardver ne bude u potpunosti podržan na " "Ubuntu 14.04." -#: ../DistUpgrade/DistUpgradeQuirks.py:250 +#: ../DistUpgrade/DistUpgradeQuirks.py:254 msgid "" "Running the 'unity' desktop environment is not fully supported by your " "graphics hardware. You will maybe end up in a very slow environment after " @@ -1071,11 +1071,11 @@ "sačuvate LTS verziju. Za više informacija pogledajte https://wiki.ubuntu.com/" "X/Bugs/UpdateManagerWarningForUnity3D Želite li nastaviti s nadogradnjom?" -#: ../DistUpgrade/DistUpgradeQuirks.py:274 +#: ../DistUpgrade/DistUpgradeQuirks.py:278 msgid "Your graphics hardware may not be fully supported in Ubuntu 12.04 LTS." msgstr "Vaš grafički hardver možda nije potpuno podržan u Ubuntu 12.04 LTS." -#: ../DistUpgrade/DistUpgradeQuirks.py:276 +#: ../DistUpgrade/DistUpgradeQuirks.py:280 msgid "" "The support in Ubuntu 12.04 LTS for your Intel graphics hardware is limited " "and you may encounter problems after the upgrade. For more information see " @@ -1087,7 +1087,7 @@ "wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForI8xx Želite li nastaviti sa " "nadogradnjom?" -#: ../DistUpgrade/DistUpgradeQuirks.py:296 +#: ../DistUpgrade/DistUpgradeQuirks.py:300 msgid "" "Upgrading may reduce desktop effects, and performance in games and other " "graphically intensive programs." @@ -1095,7 +1095,7 @@ "Nadogradnja može reducirati desktop efekte i učinak u igrama i drugim " "grafički zahtjevnim programima." -#: ../DistUpgrade/DistUpgradeQuirks.py:300 +#: ../DistUpgrade/DistUpgradeQuirks.py:304 msgid "" "This computer is currently using the AMD 'fglrx' graphics driver. No version " "of this driver is available that works with your hardware in Ubuntu 10.04 " @@ -1108,12 +1108,12 @@ "\n" "Da li želite da nastavite?" -#: ../DistUpgrade/DistUpgradeQuirks.py:339 -#: ../DistUpgrade/DistUpgradeQuirks.py:408 +#: ../DistUpgrade/DistUpgradeQuirks.py:343 +#: ../DistUpgrade/DistUpgradeQuirks.py:412 msgid "Sorry, no more upgrades for this system" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:340 +#: ../DistUpgrade/DistUpgradeQuirks.py:344 #, python-format msgid "" "There will not be any further Ubuntu releases for this system's 'i386' " @@ -1122,11 +1122,11 @@ "Updates for Ubuntu %s will continue until %s." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:355 +#: ../DistUpgrade/DistUpgradeQuirks.py:359 msgid "No ARMv6 CPU" msgstr "Nema ARMv6 procesora" -#: ../DistUpgrade/DistUpgradeQuirks.py:356 +#: ../DistUpgrade/DistUpgradeQuirks.py:360 msgid "" "Your system uses an ARM CPU that is older than the ARMv6 architecture. All " "packages in karmic were built with optimizations requiring ARMv6 as the " @@ -1138,12 +1138,12 @@ "minimalnu arhitekturu. Nije moguće nadograditi vaš sistem na novo Ubuntu " "izdanje sa ovim hardverom." -#: ../DistUpgrade/DistUpgradeQuirks.py:376 +#: ../DistUpgrade/DistUpgradeQuirks.py:380 msgid "" "Sorry, this storage driver is not supported in kernels for newer releases" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:378 +#: ../DistUpgrade/DistUpgradeQuirks.py:382 #, python-format msgid "" "There will not be any further Ubuntu releases that provide kernel support " @@ -1153,7 +1153,7 @@ "driver, remove the directory %s and try again." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:409 +#: ../DistUpgrade/DistUpgradeQuirks.py:413 #, python-format msgid "" "There will not be any further Ubuntu releases for this system's POWER8 " @@ -1162,11 +1162,11 @@ "Updates for Ubuntu %s will continue until %s." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:427 +#: ../DistUpgrade/DistUpgradeQuirks.py:431 msgid "No init available" msgstr "init nije dostupan" -#: ../DistUpgrade/DistUpgradeQuirks.py:428 +#: ../DistUpgrade/DistUpgradeQuirks.py:432 msgid "" "Your system appears to be a virtualised environment without an init daemon, " "e.g. Linux-VServer. Ubuntu 10.04 LTS cannot function within this type of " @@ -1181,11 +1181,11 @@ "\n" "Da li ste sigurni da želite na nastavite?" -#: ../DistUpgrade/DistUpgradeQuirks.py:469 +#: ../DistUpgrade/DistUpgradeQuirks.py:473 msgid "The Robot Operating System (ROS) is installed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:470 +#: ../DistUpgrade/DistUpgradeQuirks.py:474 msgid "" "It appears that ROS is currently installed. Each ROS release is very strict " "about the versions of Ubuntu it supports, and Ubuntu upgrades can fail if " @@ -1202,11 +1202,11 @@ "Are you sure you want to continue?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:670 +#: ../DistUpgrade/DistUpgradeQuirks.py:674 msgid "Connection to the Snap Store failed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:671 +#: ../DistUpgrade/DistUpgradeQuirks.py:675 msgid "" "You have the package lxd installed but your system is unable to reach the " "Snap Store. lxd is now provided via a snap and the release upgrade will fail " @@ -1216,11 +1216,11 @@ "may want to configure a Snap Store proxy." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:686 +#: ../DistUpgrade/DistUpgradeQuirks.py:690 msgid "Connection to Snap Store failed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:687 +#: ../DistUpgrade/DistUpgradeQuirks.py:691 msgid "" "Your system does not have a connection to the Snap Store. For the best " "upgrade experience make sure that your system can connect to api.snapcraft." @@ -1228,11 +1228,11 @@ "Do you still want to continue with the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:696 +#: ../DistUpgrade/DistUpgradeQuirks.py:700 msgid "Outdated snapd package" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:697 +#: ../DistUpgrade/DistUpgradeQuirks.py:701 msgid "" "Your system does not have the latest version of snapd. Please update the " "version of snapd on your system to improve the upgrade experience.\n" @@ -1241,36 +1241,36 @@ #. now perform direct API calls to the store, requesting size #. information for each of the snaps needing installation -#: ../DistUpgrade/DistUpgradeQuirks.py:722 +#: ../DistUpgrade/DistUpgradeQuirks.py:726 msgid "Calculating snap size requirements" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:753 +#: ../DistUpgrade/DistUpgradeQuirks.py:757 msgid "Processing snap replacements" msgstr "" #. TODO: This status should be updated, but the time of #. this change to snap switch is post-translation freeze. -#: ../DistUpgrade/DistUpgradeQuirks.py:761 +#: ../DistUpgrade/DistUpgradeQuirks.py:765 #, python-format msgid "refreshing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:765 +#: ../DistUpgrade/DistUpgradeQuirks.py:769 #, python-format msgid "removing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:768 +#: ../DistUpgrade/DistUpgradeQuirks.py:772 #, python-format msgid "installing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:797 +#: ../DistUpgrade/DistUpgradeQuirks.py:801 msgid "PAE not enabled" msgstr "PAE nije uključen" -#: ../DistUpgrade/DistUpgradeQuirks.py:798 +#: ../DistUpgrade/DistUpgradeQuirks.py:802 msgid "" "Your system uses a CPU that does not have PAE enabled. Ubuntu only supports " "non-PAE systems up to Ubuntu 12.04. To upgrade to a later version of Ubuntu, " @@ -1282,11 +1282,11 @@ "omogućiti PAE (ako je to moguće) vidi:\n" "http://help.ubuntu.com/community/EnablingPAE" -#: ../DistUpgrade/DistUpgradeQuirks.py:1094 +#: ../DistUpgrade/DistUpgradeQuirks.py:1098 msgid "universe component not enabled" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1095 +#: ../DistUpgrade/DistUpgradeQuirks.py:1099 #, python-format msgid "" "You have the package %s installed which is a python2 package. python2 has " @@ -1298,39 +1298,50 @@ "universe component in /etc/apt/sources.list or remove %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1207 +#: ../DistUpgrade/DistUpgradeQuirks.py:1211 msgid "Checking for installed snaps" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1654 +#: ../DistUpgrade/DistUpgradeQuirks.py:1720 #, fuzzy msgid "Cannot upgrade this system" msgstr "Nemoguće nadograditi" -#: ../DistUpgrade/DistUpgradeQuirks.py:1655 +#: ../DistUpgrade/DistUpgradeQuirks.py:1721 msgid "" "Due to a bug in grub, this system cannot be safely upgraded at this time.\n" "\n" "See https://launchpad.net/bugs/2039172." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1721 +#: ../DistUpgrade/DistUpgradeQuirks.py:1787 #, python-brace-format msgid "Updates for Ubuntu {from_release.version} will " msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1731 +#: ../DistUpgrade/DistUpgradeQuirks.py:1797 #, fuzzy msgid "Sorry, cannot upgrade this system to 24.04 LTS" msgstr "Nemoguće nadograditi" -#: ../DistUpgrade/DistUpgradeQuirks.py:1734 +#: ../DistUpgrade/DistUpgradeQuirks.py:1800 msgid "" "The Raspberry Pi kernel for Ubuntu 24.04 LTS does not support the armhf " "architecture.\n" "\n" msgstr "" +#: ../DistUpgrade/DistUpgradeQuirks.py:1928 +#, fuzzy, python-brace-format +msgid "Sorry, cannot upgrade this system to {version}" +msgstr "Nemoguće nadograditi" + +#: ../DistUpgrade/DistUpgradeQuirks.py:1931 +msgid "" +"Upgrades for desktop systems running TPM FDE are not currently supported. " +"Please see https://launchpad.net/bugs/2065229 for more information." +msgstr "" + #: ../DistUpgrade/DistUpgradeMain.py:62 msgid "" "Use frontend. Currently available: \n" diff -Nru ubuntu-release-upgrader-24.04.17/po/ca.po ubuntu-release-upgrader-24.04.18/po/ca.po --- ubuntu-release-upgrader-24.04.17/po/ca.po 2024-04-29 14:26:40.000000000 +0000 +++ ubuntu-release-upgrader-24.04.18/po/ca.po 2024-05-09 19:39:15.000000000 +0000 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2024-04-29 16:03+0200\n" +"POT-Creation-Date: 2024-05-09 15:39-0400\n" "PO-Revision-Date: 2019-06-18 17:52+0000\n" "Last-Translator: Walter Garcia-Fontes \n" "Language-Team: Catalan \n" @@ -1063,12 +1063,12 @@ msgid "Media Change" msgstr "Canvi de suport" -#: ../DistUpgrade/DistUpgradeQuirks.py:248 +#: ../DistUpgrade/DistUpgradeQuirks.py:252 msgid "Your graphics hardware may not be fully supported in Ubuntu 14.04." msgstr "" "Pot ser que el vostre maquinari de gràfics no funcioni bé amb l'Ubuntu 14.04." -#: ../DistUpgrade/DistUpgradeQuirks.py:250 +#: ../DistUpgrade/DistUpgradeQuirks.py:254 msgid "" "Running the 'unity' desktop environment is not fully supported by your " "graphics hardware. You will maybe end up in a very slow environment after " @@ -1084,13 +1084,13 @@ "UpdateManagerWarningForUnity3D. Tot i això, voleu continuar amb " "l'actualització?" -#: ../DistUpgrade/DistUpgradeQuirks.py:274 +#: ../DistUpgrade/DistUpgradeQuirks.py:278 msgid "Your graphics hardware may not be fully supported in Ubuntu 12.04 LTS." msgstr "" "Sembla que el vostre maquinari gràfic no és totalment compatible amb " "l'Ubuntu 12.04 LTS." -#: ../DistUpgrade/DistUpgradeQuirks.py:276 +#: ../DistUpgrade/DistUpgradeQuirks.py:280 msgid "" "The support in Ubuntu 12.04 LTS for your Intel graphics hardware is limited " "and you may encounter problems after the upgrade. For more information see " @@ -1102,7 +1102,7 @@ "informació visiteu https://wiki.ubuntu.com/X/Bugs/" "UpdateManagerWarningForI8xx. Voleu continuar amb l'actualització?" -#: ../DistUpgrade/DistUpgradeQuirks.py:296 +#: ../DistUpgrade/DistUpgradeQuirks.py:300 msgid "" "Upgrading may reduce desktop effects, and performance in games and other " "graphically intensive programs." @@ -1110,7 +1110,7 @@ "L'actualització pot reduir els efectes d'escriptori i el rendiment en jocs i " "altres programes que facin un ús exhaustiu de processament gràfic." -#: ../DistUpgrade/DistUpgradeQuirks.py:300 +#: ../DistUpgrade/DistUpgradeQuirks.py:304 msgid "" "This computer is currently using the AMD 'fglrx' graphics driver. No version " "of this driver is available that works with your hardware in Ubuntu 10.04 " @@ -1124,12 +1124,12 @@ "\n" "Voleu continuar?" -#: ../DistUpgrade/DistUpgradeQuirks.py:339 -#: ../DistUpgrade/DistUpgradeQuirks.py:408 +#: ../DistUpgrade/DistUpgradeQuirks.py:343 +#: ../DistUpgrade/DistUpgradeQuirks.py:412 msgid "Sorry, no more upgrades for this system" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:340 +#: ../DistUpgrade/DistUpgradeQuirks.py:344 #, python-format msgid "" "There will not be any further Ubuntu releases for this system's 'i386' " @@ -1138,11 +1138,11 @@ "Updates for Ubuntu %s will continue until %s." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:355 +#: ../DistUpgrade/DistUpgradeQuirks.py:359 msgid "No ARMv6 CPU" msgstr "No és una CPU ARMv6" -#: ../DistUpgrade/DistUpgradeQuirks.py:356 +#: ../DistUpgrade/DistUpgradeQuirks.py:360 msgid "" "Your system uses an ARM CPU that is older than the ARMv6 architecture. All " "packages in karmic were built with optimizations requiring ARMv6 as the " @@ -1154,12 +1154,12 @@ "requereixen l'ARMv6 com a arquitectura mínima. No és possible actualitzar el " "vostre sistema a una versió nova de l'Ubuntu amb aquest maquinari." -#: ../DistUpgrade/DistUpgradeQuirks.py:376 +#: ../DistUpgrade/DistUpgradeQuirks.py:380 msgid "" "Sorry, this storage driver is not supported in kernels for newer releases" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:378 +#: ../DistUpgrade/DistUpgradeQuirks.py:382 #, python-format msgid "" "There will not be any further Ubuntu releases that provide kernel support " @@ -1169,7 +1169,7 @@ "driver, remove the directory %s and try again." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:409 +#: ../DistUpgrade/DistUpgradeQuirks.py:413 #, python-format msgid "" "There will not be any further Ubuntu releases for this system's POWER8 " @@ -1178,11 +1178,11 @@ "Updates for Ubuntu %s will continue until %s." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:427 +#: ../DistUpgrade/DistUpgradeQuirks.py:431 msgid "No init available" msgstr "No hi ha cap sistema d'inicialització disponible" -#: ../DistUpgrade/DistUpgradeQuirks.py:428 +#: ../DistUpgrade/DistUpgradeQuirks.py:432 msgid "" "Your system appears to be a virtualised environment without an init daemon, " "e.g. Linux-VServer. Ubuntu 10.04 LTS cannot function within this type of " @@ -1198,11 +1198,11 @@ "\n" "Esteu segur que voleu continuar?" -#: ../DistUpgrade/DistUpgradeQuirks.py:469 +#: ../DistUpgrade/DistUpgradeQuirks.py:473 msgid "The Robot Operating System (ROS) is installed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:470 +#: ../DistUpgrade/DistUpgradeQuirks.py:474 msgid "" "It appears that ROS is currently installed. Each ROS release is very strict " "about the versions of Ubuntu it supports, and Ubuntu upgrades can fail if " @@ -1219,12 +1219,12 @@ "Are you sure you want to continue?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:670 +#: ../DistUpgrade/DistUpgradeQuirks.py:674 #, fuzzy msgid "Connection to the Snap Store failed" msgstr "Ha fallat la connexió a la Botiga Snap" -#: ../DistUpgrade/DistUpgradeQuirks.py:671 +#: ../DistUpgrade/DistUpgradeQuirks.py:675 msgid "" "You have the package lxd installed but your system is unable to reach the " "Snap Store. lxd is now provided via a snap and the release upgrade will fail " @@ -1234,11 +1234,11 @@ "may want to configure a Snap Store proxy." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:686 +#: ../DistUpgrade/DistUpgradeQuirks.py:690 msgid "Connection to Snap Store failed" msgstr "Ha fallat la connexió a la Botiga Snap" -#: ../DistUpgrade/DistUpgradeQuirks.py:687 +#: ../DistUpgrade/DistUpgradeQuirks.py:691 msgid "" "Your system does not have a connection to the Snap Store. For the best " "upgrade experience make sure that your system can connect to api.snapcraft." @@ -1250,11 +1250,11 @@ "a api.snapcraft.io.\n" "Encara voleu continuar amb l'actualització?" -#: ../DistUpgrade/DistUpgradeQuirks.py:696 +#: ../DistUpgrade/DistUpgradeQuirks.py:700 msgid "Outdated snapd package" msgstr "Paquet snapd desactualitzat" -#: ../DistUpgrade/DistUpgradeQuirks.py:697 +#: ../DistUpgrade/DistUpgradeQuirks.py:701 msgid "" "Your system does not have the latest version of snapd. Please update the " "version of snapd on your system to improve the upgrade experience.\n" @@ -1267,36 +1267,36 @@ #. now perform direct API calls to the store, requesting size #. information for each of the snaps needing installation -#: ../DistUpgrade/DistUpgradeQuirks.py:722 +#: ../DistUpgrade/DistUpgradeQuirks.py:726 msgid "Calculating snap size requirements" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:753 +#: ../DistUpgrade/DistUpgradeQuirks.py:757 msgid "Processing snap replacements" msgstr "" #. TODO: This status should be updated, but the time of #. this change to snap switch is post-translation freeze. -#: ../DistUpgrade/DistUpgradeQuirks.py:761 +#: ../DistUpgrade/DistUpgradeQuirks.py:765 #, python-format msgid "refreshing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:765 +#: ../DistUpgrade/DistUpgradeQuirks.py:769 #, python-format msgid "removing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:768 +#: ../DistUpgrade/DistUpgradeQuirks.py:772 #, python-format msgid "installing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:797 +#: ../DistUpgrade/DistUpgradeQuirks.py:801 msgid "PAE not enabled" msgstr "El PAE no està habilitat" -#: ../DistUpgrade/DistUpgradeQuirks.py:798 +#: ../DistUpgrade/DistUpgradeQuirks.py:802 msgid "" "Your system uses a CPU that does not have PAE enabled. Ubuntu only supports " "non-PAE systems up to Ubuntu 12.04. To upgrade to a later version of Ubuntu, " @@ -1309,11 +1309,11 @@ "Consulteu la documentació següent per obtenir més informació:\n" "http://help.ubuntu.com/community/EnablingPAE" -#: ../DistUpgrade/DistUpgradeQuirks.py:1094 +#: ../DistUpgrade/DistUpgradeQuirks.py:1098 msgid "universe component not enabled" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1095 +#: ../DistUpgrade/DistUpgradeQuirks.py:1099 #, python-format msgid "" "You have the package %s installed which is a python2 package. python2 has " @@ -1325,39 +1325,50 @@ "universe component in /etc/apt/sources.list or remove %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1207 +#: ../DistUpgrade/DistUpgradeQuirks.py:1211 msgid "Checking for installed snaps" msgstr "S'està comprovant si hi ha snaps instal·lats" -#: ../DistUpgrade/DistUpgradeQuirks.py:1654 +#: ../DistUpgrade/DistUpgradeQuirks.py:1720 #, fuzzy msgid "Cannot upgrade this system" msgstr "No es pot actualitzar" -#: ../DistUpgrade/DistUpgradeQuirks.py:1655 +#: ../DistUpgrade/DistUpgradeQuirks.py:1721 msgid "" "Due to a bug in grub, this system cannot be safely upgraded at this time.\n" "\n" "See https://launchpad.net/bugs/2039172." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1721 +#: ../DistUpgrade/DistUpgradeQuirks.py:1787 #, python-brace-format msgid "Updates for Ubuntu {from_release.version} will " msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1731 +#: ../DistUpgrade/DistUpgradeQuirks.py:1797 #, fuzzy msgid "Sorry, cannot upgrade this system to 24.04 LTS" msgstr "No es pot actualitzar" -#: ../DistUpgrade/DistUpgradeQuirks.py:1734 +#: ../DistUpgrade/DistUpgradeQuirks.py:1800 msgid "" "The Raspberry Pi kernel for Ubuntu 24.04 LTS does not support the armhf " "architecture.\n" "\n" msgstr "" +#: ../DistUpgrade/DistUpgradeQuirks.py:1928 +#, fuzzy, python-brace-format +msgid "Sorry, cannot upgrade this system to {version}" +msgstr "No es pot actualitzar" + +#: ../DistUpgrade/DistUpgradeQuirks.py:1931 +msgid "" +"Upgrades for desktop systems running TPM FDE are not currently supported. " +"Please see https://launchpad.net/bugs/2065229 for more information." +msgstr "" + #: ../DistUpgrade/DistUpgradeMain.py:62 msgid "" "Use frontend. Currently available: \n" diff -Nru ubuntu-release-upgrader-24.04.17/po/ca@valencia.po ubuntu-release-upgrader-24.04.18/po/ca@valencia.po --- ubuntu-release-upgrader-24.04.17/po/ca@valencia.po 2024-04-29 14:26:40.000000000 +0000 +++ ubuntu-release-upgrader-24.04.18/po/ca@valencia.po 2024-05-09 19:39:16.000000000 +0000 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2024-04-29 16:03+0200\n" +"POT-Creation-Date: 2024-05-09 15:39-0400\n" "PO-Revision-Date: 2013-05-22 11:00+0000\n" "Last-Translator: Joan Duran \n" "Language-Team: Catalan \n" @@ -994,12 +994,12 @@ msgid "Media Change" msgstr "Canvi de suport" -#: ../DistUpgrade/DistUpgradeQuirks.py:248 +#: ../DistUpgrade/DistUpgradeQuirks.py:252 msgid "Your graphics hardware may not be fully supported in Ubuntu 14.04." msgstr "" "Pot ser que el vostre maquinari de gràfics no funcione bé amb l'Ubuntu 14.04." -#: ../DistUpgrade/DistUpgradeQuirks.py:250 +#: ../DistUpgrade/DistUpgradeQuirks.py:254 msgid "" "Running the 'unity' desktop environment is not fully supported by your " "graphics hardware. You will maybe end up in a very slow environment after " @@ -1009,11 +1009,11 @@ "upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:274 +#: ../DistUpgrade/DistUpgradeQuirks.py:278 msgid "Your graphics hardware may not be fully supported in Ubuntu 12.04 LTS." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:276 +#: ../DistUpgrade/DistUpgradeQuirks.py:280 msgid "" "The support in Ubuntu 12.04 LTS for your Intel graphics hardware is limited " "and you may encounter problems after the upgrade. For more information see " @@ -1021,7 +1021,7 @@ "continue with the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:296 +#: ../DistUpgrade/DistUpgradeQuirks.py:300 msgid "" "Upgrading may reduce desktop effects, and performance in games and other " "graphically intensive programs." @@ -1029,7 +1029,7 @@ "L'actualització pot reduir els efectes d'escriptori i el rendiment en jocs i " "altres programes que facen un ús exhaustiu de processament gràfic." -#: ../DistUpgrade/DistUpgradeQuirks.py:300 +#: ../DistUpgrade/DistUpgradeQuirks.py:304 msgid "" "This computer is currently using the AMD 'fglrx' graphics driver. No version " "of this driver is available that works with your hardware in Ubuntu 10.04 " @@ -1043,12 +1043,12 @@ "\n" "Voleu continuar?" -#: ../DistUpgrade/DistUpgradeQuirks.py:339 -#: ../DistUpgrade/DistUpgradeQuirks.py:408 +#: ../DistUpgrade/DistUpgradeQuirks.py:343 +#: ../DistUpgrade/DistUpgradeQuirks.py:412 msgid "Sorry, no more upgrades for this system" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:340 +#: ../DistUpgrade/DistUpgradeQuirks.py:344 #, python-format msgid "" "There will not be any further Ubuntu releases for this system's 'i386' " @@ -1057,11 +1057,11 @@ "Updates for Ubuntu %s will continue until %s." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:355 +#: ../DistUpgrade/DistUpgradeQuirks.py:359 msgid "No ARMv6 CPU" msgstr "No és una CPU ARMv6" -#: ../DistUpgrade/DistUpgradeQuirks.py:356 +#: ../DistUpgrade/DistUpgradeQuirks.py:360 msgid "" "Your system uses an ARM CPU that is older than the ARMv6 architecture. All " "packages in karmic were built with optimizations requiring ARMv6 as the " @@ -1073,12 +1073,12 @@ "requereixen l'ARMv6 com a arquitectura mínima. No és possible actualitzar el " "vostre sistema a una versió nova de l'Ubuntu amb este maquinari." -#: ../DistUpgrade/DistUpgradeQuirks.py:376 +#: ../DistUpgrade/DistUpgradeQuirks.py:380 msgid "" "Sorry, this storage driver is not supported in kernels for newer releases" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:378 +#: ../DistUpgrade/DistUpgradeQuirks.py:382 #, python-format msgid "" "There will not be any further Ubuntu releases that provide kernel support " @@ -1088,7 +1088,7 @@ "driver, remove the directory %s and try again." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:409 +#: ../DistUpgrade/DistUpgradeQuirks.py:413 #, python-format msgid "" "There will not be any further Ubuntu releases for this system's POWER8 " @@ -1097,11 +1097,11 @@ "Updates for Ubuntu %s will continue until %s." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:427 +#: ../DistUpgrade/DistUpgradeQuirks.py:431 msgid "No init available" msgstr "No hi ha cap sistema d'inicialització disponible" -#: ../DistUpgrade/DistUpgradeQuirks.py:428 +#: ../DistUpgrade/DistUpgradeQuirks.py:432 msgid "" "Your system appears to be a virtualised environment without an init daemon, " "e.g. Linux-VServer. Ubuntu 10.04 LTS cannot function within this type of " @@ -1117,11 +1117,11 @@ "\n" "Segur que voleu continuar?" -#: ../DistUpgrade/DistUpgradeQuirks.py:469 +#: ../DistUpgrade/DistUpgradeQuirks.py:473 msgid "The Robot Operating System (ROS) is installed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:470 +#: ../DistUpgrade/DistUpgradeQuirks.py:474 msgid "" "It appears that ROS is currently installed. Each ROS release is very strict " "about the versions of Ubuntu it supports, and Ubuntu upgrades can fail if " @@ -1138,11 +1138,11 @@ "Are you sure you want to continue?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:670 +#: ../DistUpgrade/DistUpgradeQuirks.py:674 msgid "Connection to the Snap Store failed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:671 +#: ../DistUpgrade/DistUpgradeQuirks.py:675 msgid "" "You have the package lxd installed but your system is unable to reach the " "Snap Store. lxd is now provided via a snap and the release upgrade will fail " @@ -1152,11 +1152,11 @@ "may want to configure a Snap Store proxy." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:686 +#: ../DistUpgrade/DistUpgradeQuirks.py:690 msgid "Connection to Snap Store failed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:687 +#: ../DistUpgrade/DistUpgradeQuirks.py:691 msgid "" "Your system does not have a connection to the Snap Store. For the best " "upgrade experience make sure that your system can connect to api.snapcraft." @@ -1164,11 +1164,11 @@ "Do you still want to continue with the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:696 +#: ../DistUpgrade/DistUpgradeQuirks.py:700 msgid "Outdated snapd package" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:697 +#: ../DistUpgrade/DistUpgradeQuirks.py:701 msgid "" "Your system does not have the latest version of snapd. Please update the " "version of snapd on your system to improve the upgrade experience.\n" @@ -1177,36 +1177,36 @@ #. now perform direct API calls to the store, requesting size #. information for each of the snaps needing installation -#: ../DistUpgrade/DistUpgradeQuirks.py:722 +#: ../DistUpgrade/DistUpgradeQuirks.py:726 msgid "Calculating snap size requirements" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:753 +#: ../DistUpgrade/DistUpgradeQuirks.py:757 msgid "Processing snap replacements" msgstr "" #. TODO: This status should be updated, but the time of #. this change to snap switch is post-translation freeze. -#: ../DistUpgrade/DistUpgradeQuirks.py:761 +#: ../DistUpgrade/DistUpgradeQuirks.py:765 #, python-format msgid "refreshing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:765 +#: ../DistUpgrade/DistUpgradeQuirks.py:769 #, python-format msgid "removing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:768 +#: ../DistUpgrade/DistUpgradeQuirks.py:772 #, python-format msgid "installing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:797 +#: ../DistUpgrade/DistUpgradeQuirks.py:801 msgid "PAE not enabled" msgstr "El PAE no està habilitat" -#: ../DistUpgrade/DistUpgradeQuirks.py:798 +#: ../DistUpgrade/DistUpgradeQuirks.py:802 msgid "" "Your system uses a CPU that does not have PAE enabled. Ubuntu only supports " "non-PAE systems up to Ubuntu 12.04. To upgrade to a later version of Ubuntu, " @@ -1219,11 +1219,11 @@ "Consulteu la documentació següent per obtindre més informació:\n" "http://help.ubuntu.com/community/EnablingPAE" -#: ../DistUpgrade/DistUpgradeQuirks.py:1094 +#: ../DistUpgrade/DistUpgradeQuirks.py:1098 msgid "universe component not enabled" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1095 +#: ../DistUpgrade/DistUpgradeQuirks.py:1099 #, python-format msgid "" "You have the package %s installed which is a python2 package. python2 has " @@ -1235,39 +1235,50 @@ "universe component in /etc/apt/sources.list or remove %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1207 +#: ../DistUpgrade/DistUpgradeQuirks.py:1211 msgid "Checking for installed snaps" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1654 +#: ../DistUpgrade/DistUpgradeQuirks.py:1720 #, fuzzy msgid "Cannot upgrade this system" msgstr "No es pot actualitzar" -#: ../DistUpgrade/DistUpgradeQuirks.py:1655 +#: ../DistUpgrade/DistUpgradeQuirks.py:1721 msgid "" "Due to a bug in grub, this system cannot be safely upgraded at this time.\n" "\n" "See https://launchpad.net/bugs/2039172." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1721 +#: ../DistUpgrade/DistUpgradeQuirks.py:1787 #, python-brace-format msgid "Updates for Ubuntu {from_release.version} will " msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1731 +#: ../DistUpgrade/DistUpgradeQuirks.py:1797 #, fuzzy msgid "Sorry, cannot upgrade this system to 24.04 LTS" msgstr "No es pot actualitzar" -#: ../DistUpgrade/DistUpgradeQuirks.py:1734 +#: ../DistUpgrade/DistUpgradeQuirks.py:1800 msgid "" "The Raspberry Pi kernel for Ubuntu 24.04 LTS does not support the armhf " "architecture.\n" "\n" msgstr "" +#: ../DistUpgrade/DistUpgradeQuirks.py:1928 +#, fuzzy, python-brace-format +msgid "Sorry, cannot upgrade this system to {version}" +msgstr "No es pot actualitzar" + +#: ../DistUpgrade/DistUpgradeQuirks.py:1931 +msgid "" +"Upgrades for desktop systems running TPM FDE are not currently supported. " +"Please see https://launchpad.net/bugs/2065229 for more information." +msgstr "" + #: ../DistUpgrade/DistUpgradeMain.py:62 msgid "" "Use frontend. Currently available: \n" diff -Nru ubuntu-release-upgrader-24.04.17/po/ce.po ubuntu-release-upgrader-24.04.18/po/ce.po --- ubuntu-release-upgrader-24.04.17/po/ce.po 2024-04-29 14:26:40.000000000 +0000 +++ ubuntu-release-upgrader-24.04.18/po/ce.po 2024-05-09 19:39:16.000000000 +0000 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: ubuntu-release-upgrader\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2024-04-29 16:03+0200\n" +"POT-Creation-Date: 2024-05-09 15:39-0400\n" "PO-Revision-Date: 2014-08-21 06:20+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Chechen \n" @@ -936,11 +936,11 @@ msgid "Media Change" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:248 +#: ../DistUpgrade/DistUpgradeQuirks.py:252 msgid "Your graphics hardware may not be fully supported in Ubuntu 14.04." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:250 +#: ../DistUpgrade/DistUpgradeQuirks.py:254 msgid "" "Running the 'unity' desktop environment is not fully supported by your " "graphics hardware. You will maybe end up in a very slow environment after " @@ -950,11 +950,11 @@ "upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:274 +#: ../DistUpgrade/DistUpgradeQuirks.py:278 msgid "Your graphics hardware may not be fully supported in Ubuntu 12.04 LTS." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:276 +#: ../DistUpgrade/DistUpgradeQuirks.py:280 msgid "" "The support in Ubuntu 12.04 LTS for your Intel graphics hardware is limited " "and you may encounter problems after the upgrade. For more information see " @@ -962,13 +962,13 @@ "continue with the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:296 +#: ../DistUpgrade/DistUpgradeQuirks.py:300 msgid "" "Upgrading may reduce desktop effects, and performance in games and other " "graphically intensive programs." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:300 +#: ../DistUpgrade/DistUpgradeQuirks.py:304 msgid "" "This computer is currently using the AMD 'fglrx' graphics driver. No version " "of this driver is available that works with your hardware in Ubuntu 10.04 " @@ -977,12 +977,12 @@ "Do you want to continue?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:339 -#: ../DistUpgrade/DistUpgradeQuirks.py:408 +#: ../DistUpgrade/DistUpgradeQuirks.py:343 +#: ../DistUpgrade/DistUpgradeQuirks.py:412 msgid "Sorry, no more upgrades for this system" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:340 +#: ../DistUpgrade/DistUpgradeQuirks.py:344 #, python-format msgid "" "There will not be any further Ubuntu releases for this system's 'i386' " @@ -991,11 +991,11 @@ "Updates for Ubuntu %s will continue until %s." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:355 +#: ../DistUpgrade/DistUpgradeQuirks.py:359 msgid "No ARMv6 CPU" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:356 +#: ../DistUpgrade/DistUpgradeQuirks.py:360 msgid "" "Your system uses an ARM CPU that is older than the ARMv6 architecture. All " "packages in karmic were built with optimizations requiring ARMv6 as the " @@ -1003,12 +1003,12 @@ "Ubuntu release with this hardware." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:376 +#: ../DistUpgrade/DistUpgradeQuirks.py:380 msgid "" "Sorry, this storage driver is not supported in kernels for newer releases" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:378 +#: ../DistUpgrade/DistUpgradeQuirks.py:382 #, python-format msgid "" "There will not be any further Ubuntu releases that provide kernel support " @@ -1018,7 +1018,7 @@ "driver, remove the directory %s and try again." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:409 +#: ../DistUpgrade/DistUpgradeQuirks.py:413 #, python-format msgid "" "There will not be any further Ubuntu releases for this system's POWER8 " @@ -1027,11 +1027,11 @@ "Updates for Ubuntu %s will continue until %s." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:427 +#: ../DistUpgrade/DistUpgradeQuirks.py:431 msgid "No init available" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:428 +#: ../DistUpgrade/DistUpgradeQuirks.py:432 msgid "" "Your system appears to be a virtualised environment without an init daemon, " "e.g. Linux-VServer. Ubuntu 10.04 LTS cannot function within this type of " @@ -1041,11 +1041,11 @@ "Are you sure you want to continue?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:469 +#: ../DistUpgrade/DistUpgradeQuirks.py:473 msgid "The Robot Operating System (ROS) is installed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:470 +#: ../DistUpgrade/DistUpgradeQuirks.py:474 msgid "" "It appears that ROS is currently installed. Each ROS release is very strict " "about the versions of Ubuntu it supports, and Ubuntu upgrades can fail if " @@ -1062,11 +1062,11 @@ "Are you sure you want to continue?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:670 +#: ../DistUpgrade/DistUpgradeQuirks.py:674 msgid "Connection to the Snap Store failed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:671 +#: ../DistUpgrade/DistUpgradeQuirks.py:675 msgid "" "You have the package lxd installed but your system is unable to reach the " "Snap Store. lxd is now provided via a snap and the release upgrade will fail " @@ -1076,11 +1076,11 @@ "may want to configure a Snap Store proxy." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:686 +#: ../DistUpgrade/DistUpgradeQuirks.py:690 msgid "Connection to Snap Store failed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:687 +#: ../DistUpgrade/DistUpgradeQuirks.py:691 msgid "" "Your system does not have a connection to the Snap Store. For the best " "upgrade experience make sure that your system can connect to api.snapcraft." @@ -1088,11 +1088,11 @@ "Do you still want to continue with the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:696 +#: ../DistUpgrade/DistUpgradeQuirks.py:700 msgid "Outdated snapd package" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:697 +#: ../DistUpgrade/DistUpgradeQuirks.py:701 msgid "" "Your system does not have the latest version of snapd. Please update the " "version of snapd on your system to improve the upgrade experience.\n" @@ -1101,36 +1101,36 @@ #. now perform direct API calls to the store, requesting size #. information for each of the snaps needing installation -#: ../DistUpgrade/DistUpgradeQuirks.py:722 +#: ../DistUpgrade/DistUpgradeQuirks.py:726 msgid "Calculating snap size requirements" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:753 +#: ../DistUpgrade/DistUpgradeQuirks.py:757 msgid "Processing snap replacements" msgstr "" #. TODO: This status should be updated, but the time of #. this change to snap switch is post-translation freeze. -#: ../DistUpgrade/DistUpgradeQuirks.py:761 +#: ../DistUpgrade/DistUpgradeQuirks.py:765 #, python-format msgid "refreshing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:765 +#: ../DistUpgrade/DistUpgradeQuirks.py:769 #, python-format msgid "removing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:768 +#: ../DistUpgrade/DistUpgradeQuirks.py:772 #, python-format msgid "installing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:797 +#: ../DistUpgrade/DistUpgradeQuirks.py:801 msgid "PAE not enabled" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:798 +#: ../DistUpgrade/DistUpgradeQuirks.py:802 msgid "" "Your system uses a CPU that does not have PAE enabled. Ubuntu only supports " "non-PAE systems up to Ubuntu 12.04. To upgrade to a later version of Ubuntu, " @@ -1138,11 +1138,11 @@ "http://help.ubuntu.com/community/EnablingPAE" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1094 +#: ../DistUpgrade/DistUpgradeQuirks.py:1098 msgid "universe component not enabled" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1095 +#: ../DistUpgrade/DistUpgradeQuirks.py:1099 #, python-format msgid "" "You have the package %s installed which is a python2 package. python2 has " @@ -1154,39 +1154,50 @@ "universe component in /etc/apt/sources.list or remove %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1207 +#: ../DistUpgrade/DistUpgradeQuirks.py:1211 msgid "Checking for installed snaps" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1654 +#: ../DistUpgrade/DistUpgradeQuirks.py:1720 #, fuzzy msgid "Cannot upgrade this system" msgstr "ЦIиндар кхочуш ца дало" -#: ../DistUpgrade/DistUpgradeQuirks.py:1655 +#: ../DistUpgrade/DistUpgradeQuirks.py:1721 msgid "" "Due to a bug in grub, this system cannot be safely upgraded at this time.\n" "\n" "See https://launchpad.net/bugs/2039172." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1721 +#: ../DistUpgrade/DistUpgradeQuirks.py:1787 #, python-brace-format msgid "Updates for Ubuntu {from_release.version} will " msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1731 +#: ../DistUpgrade/DistUpgradeQuirks.py:1797 #, fuzzy msgid "Sorry, cannot upgrade this system to 24.04 LTS" msgstr "ЦIиндар кхочуш ца дало" -#: ../DistUpgrade/DistUpgradeQuirks.py:1734 +#: ../DistUpgrade/DistUpgradeQuirks.py:1800 msgid "" "The Raspberry Pi kernel for Ubuntu 24.04 LTS does not support the armhf " "architecture.\n" "\n" msgstr "" +#: ../DistUpgrade/DistUpgradeQuirks.py:1928 +#, fuzzy, python-brace-format +msgid "Sorry, cannot upgrade this system to {version}" +msgstr "ЦIиндар кхочуш ца дало" + +#: ../DistUpgrade/DistUpgradeQuirks.py:1931 +msgid "" +"Upgrades for desktop systems running TPM FDE are not currently supported. " +"Please see https://launchpad.net/bugs/2065229 for more information." +msgstr "" + #: ../DistUpgrade/DistUpgradeMain.py:62 msgid "" "Use frontend. Currently available: \n" diff -Nru ubuntu-release-upgrader-24.04.17/po/ceb.po ubuntu-release-upgrader-24.04.18/po/ceb.po --- ubuntu-release-upgrader-24.04.17/po/ceb.po 2024-04-29 14:26:40.000000000 +0000 +++ ubuntu-release-upgrader-24.04.18/po/ceb.po 2024-05-09 19:39:16.000000000 +0000 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2024-04-29 16:03+0200\n" +"POT-Creation-Date: 2024-05-09 15:39-0400\n" "PO-Revision-Date: 2013-05-22 11:00+0000\n" "Last-Translator: James Banogon \n" "Language-Team: Cebuano \n" @@ -897,11 +897,11 @@ msgid "Media Change" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:248 +#: ../DistUpgrade/DistUpgradeQuirks.py:252 msgid "Your graphics hardware may not be fully supported in Ubuntu 14.04." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:250 +#: ../DistUpgrade/DistUpgradeQuirks.py:254 msgid "" "Running the 'unity' desktop environment is not fully supported by your " "graphics hardware. You will maybe end up in a very slow environment after " @@ -911,11 +911,11 @@ "upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:274 +#: ../DistUpgrade/DistUpgradeQuirks.py:278 msgid "Your graphics hardware may not be fully supported in Ubuntu 12.04 LTS." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:276 +#: ../DistUpgrade/DistUpgradeQuirks.py:280 msgid "" "The support in Ubuntu 12.04 LTS for your Intel graphics hardware is limited " "and you may encounter problems after the upgrade. For more information see " @@ -923,13 +923,13 @@ "continue with the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:296 +#: ../DistUpgrade/DistUpgradeQuirks.py:300 msgid "" "Upgrading may reduce desktop effects, and performance in games and other " "graphically intensive programs." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:300 +#: ../DistUpgrade/DistUpgradeQuirks.py:304 msgid "" "This computer is currently using the AMD 'fglrx' graphics driver. No version " "of this driver is available that works with your hardware in Ubuntu 10.04 " @@ -938,12 +938,12 @@ "Do you want to continue?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:339 -#: ../DistUpgrade/DistUpgradeQuirks.py:408 +#: ../DistUpgrade/DistUpgradeQuirks.py:343 +#: ../DistUpgrade/DistUpgradeQuirks.py:412 msgid "Sorry, no more upgrades for this system" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:340 +#: ../DistUpgrade/DistUpgradeQuirks.py:344 #, python-format msgid "" "There will not be any further Ubuntu releases for this system's 'i386' " @@ -952,11 +952,11 @@ "Updates for Ubuntu %s will continue until %s." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:355 +#: ../DistUpgrade/DistUpgradeQuirks.py:359 msgid "No ARMv6 CPU" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:356 +#: ../DistUpgrade/DistUpgradeQuirks.py:360 msgid "" "Your system uses an ARM CPU that is older than the ARMv6 architecture. All " "packages in karmic were built with optimizations requiring ARMv6 as the " @@ -964,12 +964,12 @@ "Ubuntu release with this hardware." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:376 +#: ../DistUpgrade/DistUpgradeQuirks.py:380 msgid "" "Sorry, this storage driver is not supported in kernels for newer releases" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:378 +#: ../DistUpgrade/DistUpgradeQuirks.py:382 #, python-format msgid "" "There will not be any further Ubuntu releases that provide kernel support " @@ -979,7 +979,7 @@ "driver, remove the directory %s and try again." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:409 +#: ../DistUpgrade/DistUpgradeQuirks.py:413 #, python-format msgid "" "There will not be any further Ubuntu releases for this system's POWER8 " @@ -988,11 +988,11 @@ "Updates for Ubuntu %s will continue until %s." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:427 +#: ../DistUpgrade/DistUpgradeQuirks.py:431 msgid "No init available" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:428 +#: ../DistUpgrade/DistUpgradeQuirks.py:432 msgid "" "Your system appears to be a virtualised environment without an init daemon, " "e.g. Linux-VServer. Ubuntu 10.04 LTS cannot function within this type of " @@ -1002,11 +1002,11 @@ "Are you sure you want to continue?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:469 +#: ../DistUpgrade/DistUpgradeQuirks.py:473 msgid "The Robot Operating System (ROS) is installed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:470 +#: ../DistUpgrade/DistUpgradeQuirks.py:474 msgid "" "It appears that ROS is currently installed. Each ROS release is very strict " "about the versions of Ubuntu it supports, and Ubuntu upgrades can fail if " @@ -1023,11 +1023,11 @@ "Are you sure you want to continue?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:670 +#: ../DistUpgrade/DistUpgradeQuirks.py:674 msgid "Connection to the Snap Store failed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:671 +#: ../DistUpgrade/DistUpgradeQuirks.py:675 msgid "" "You have the package lxd installed but your system is unable to reach the " "Snap Store. lxd is now provided via a snap and the release upgrade will fail " @@ -1037,11 +1037,11 @@ "may want to configure a Snap Store proxy." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:686 +#: ../DistUpgrade/DistUpgradeQuirks.py:690 msgid "Connection to Snap Store failed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:687 +#: ../DistUpgrade/DistUpgradeQuirks.py:691 msgid "" "Your system does not have a connection to the Snap Store. For the best " "upgrade experience make sure that your system can connect to api.snapcraft." @@ -1049,11 +1049,11 @@ "Do you still want to continue with the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:696 +#: ../DistUpgrade/DistUpgradeQuirks.py:700 msgid "Outdated snapd package" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:697 +#: ../DistUpgrade/DistUpgradeQuirks.py:701 msgid "" "Your system does not have the latest version of snapd. Please update the " "version of snapd on your system to improve the upgrade experience.\n" @@ -1062,36 +1062,36 @@ #. now perform direct API calls to the store, requesting size #. information for each of the snaps needing installation -#: ../DistUpgrade/DistUpgradeQuirks.py:722 +#: ../DistUpgrade/DistUpgradeQuirks.py:726 msgid "Calculating snap size requirements" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:753 +#: ../DistUpgrade/DistUpgradeQuirks.py:757 msgid "Processing snap replacements" msgstr "" #. TODO: This status should be updated, but the time of #. this change to snap switch is post-translation freeze. -#: ../DistUpgrade/DistUpgradeQuirks.py:761 +#: ../DistUpgrade/DistUpgradeQuirks.py:765 #, python-format msgid "refreshing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:765 +#: ../DistUpgrade/DistUpgradeQuirks.py:769 #, python-format msgid "removing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:768 +#: ../DistUpgrade/DistUpgradeQuirks.py:772 #, python-format msgid "installing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:797 +#: ../DistUpgrade/DistUpgradeQuirks.py:801 msgid "PAE not enabled" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:798 +#: ../DistUpgrade/DistUpgradeQuirks.py:802 msgid "" "Your system uses a CPU that does not have PAE enabled. Ubuntu only supports " "non-PAE systems up to Ubuntu 12.04. To upgrade to a later version of Ubuntu, " @@ -1099,11 +1099,11 @@ "http://help.ubuntu.com/community/EnablingPAE" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1094 +#: ../DistUpgrade/DistUpgradeQuirks.py:1098 msgid "universe component not enabled" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1095 +#: ../DistUpgrade/DistUpgradeQuirks.py:1099 #, python-format msgid "" "You have the package %s installed which is a python2 package. python2 has " @@ -1115,37 +1115,48 @@ "universe component in /etc/apt/sources.list or remove %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1207 +#: ../DistUpgrade/DistUpgradeQuirks.py:1211 msgid "Checking for installed snaps" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1654 +#: ../DistUpgrade/DistUpgradeQuirks.py:1720 msgid "Cannot upgrade this system" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1655 +#: ../DistUpgrade/DistUpgradeQuirks.py:1721 msgid "" "Due to a bug in grub, this system cannot be safely upgraded at this time.\n" "\n" "See https://launchpad.net/bugs/2039172." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1721 +#: ../DistUpgrade/DistUpgradeQuirks.py:1787 #, python-brace-format msgid "Updates for Ubuntu {from_release.version} will " msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1731 +#: ../DistUpgrade/DistUpgradeQuirks.py:1797 msgid "Sorry, cannot upgrade this system to 24.04 LTS" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1734 +#: ../DistUpgrade/DistUpgradeQuirks.py:1800 msgid "" "The Raspberry Pi kernel for Ubuntu 24.04 LTS does not support the armhf " "architecture.\n" "\n" msgstr "" +#: ../DistUpgrade/DistUpgradeQuirks.py:1928 +#, python-brace-format +msgid "Sorry, cannot upgrade this system to {version}" +msgstr "" + +#: ../DistUpgrade/DistUpgradeQuirks.py:1931 +msgid "" +"Upgrades for desktop systems running TPM FDE are not currently supported. " +"Please see https://launchpad.net/bugs/2065229 for more information." +msgstr "" + #: ../DistUpgrade/DistUpgradeMain.py:62 msgid "" "Use frontend. Currently available: \n" diff -Nru ubuntu-release-upgrader-24.04.17/po/ckb.po ubuntu-release-upgrader-24.04.18/po/ckb.po --- ubuntu-release-upgrader-24.04.17/po/ckb.po 2024-04-29 14:26:40.000000000 +0000 +++ ubuntu-release-upgrader-24.04.18/po/ckb.po 2024-05-09 19:39:16.000000000 +0000 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2024-04-29 16:03+0200\n" +"POT-Creation-Date: 2024-05-09 15:39-0400\n" "PO-Revision-Date: 2013-05-22 11:00+0000\n" "Last-Translator: jwtear nariman \n" "Language-Team: Kurdish (Sorani) \n" @@ -902,11 +902,11 @@ msgid "Media Change" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:248 +#: ../DistUpgrade/DistUpgradeQuirks.py:252 msgid "Your graphics hardware may not be fully supported in Ubuntu 14.04." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:250 +#: ../DistUpgrade/DistUpgradeQuirks.py:254 msgid "" "Running the 'unity' desktop environment is not fully supported by your " "graphics hardware. You will maybe end up in a very slow environment after " @@ -916,11 +916,11 @@ "upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:274 +#: ../DistUpgrade/DistUpgradeQuirks.py:278 msgid "Your graphics hardware may not be fully supported in Ubuntu 12.04 LTS." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:276 +#: ../DistUpgrade/DistUpgradeQuirks.py:280 msgid "" "The support in Ubuntu 12.04 LTS for your Intel graphics hardware is limited " "and you may encounter problems after the upgrade. For more information see " @@ -928,13 +928,13 @@ "continue with the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:296 +#: ../DistUpgrade/DistUpgradeQuirks.py:300 msgid "" "Upgrading may reduce desktop effects, and performance in games and other " "graphically intensive programs." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:300 +#: ../DistUpgrade/DistUpgradeQuirks.py:304 msgid "" "This computer is currently using the AMD 'fglrx' graphics driver. No version " "of this driver is available that works with your hardware in Ubuntu 10.04 " @@ -943,12 +943,12 @@ "Do you want to continue?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:339 -#: ../DistUpgrade/DistUpgradeQuirks.py:408 +#: ../DistUpgrade/DistUpgradeQuirks.py:343 +#: ../DistUpgrade/DistUpgradeQuirks.py:412 msgid "Sorry, no more upgrades for this system" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:340 +#: ../DistUpgrade/DistUpgradeQuirks.py:344 #, python-format msgid "" "There will not be any further Ubuntu releases for this system's 'i386' " @@ -957,11 +957,11 @@ "Updates for Ubuntu %s will continue until %s." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:355 +#: ../DistUpgrade/DistUpgradeQuirks.py:359 msgid "No ARMv6 CPU" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:356 +#: ../DistUpgrade/DistUpgradeQuirks.py:360 msgid "" "Your system uses an ARM CPU that is older than the ARMv6 architecture. All " "packages in karmic were built with optimizations requiring ARMv6 as the " @@ -969,12 +969,12 @@ "Ubuntu release with this hardware." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:376 +#: ../DistUpgrade/DistUpgradeQuirks.py:380 msgid "" "Sorry, this storage driver is not supported in kernels for newer releases" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:378 +#: ../DistUpgrade/DistUpgradeQuirks.py:382 #, python-format msgid "" "There will not be any further Ubuntu releases that provide kernel support " @@ -984,7 +984,7 @@ "driver, remove the directory %s and try again." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:409 +#: ../DistUpgrade/DistUpgradeQuirks.py:413 #, python-format msgid "" "There will not be any further Ubuntu releases for this system's POWER8 " @@ -993,11 +993,11 @@ "Updates for Ubuntu %s will continue until %s." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:427 +#: ../DistUpgrade/DistUpgradeQuirks.py:431 msgid "No init available" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:428 +#: ../DistUpgrade/DistUpgradeQuirks.py:432 msgid "" "Your system appears to be a virtualised environment without an init daemon, " "e.g. Linux-VServer. Ubuntu 10.04 LTS cannot function within this type of " @@ -1007,11 +1007,11 @@ "Are you sure you want to continue?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:469 +#: ../DistUpgrade/DistUpgradeQuirks.py:473 msgid "The Robot Operating System (ROS) is installed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:470 +#: ../DistUpgrade/DistUpgradeQuirks.py:474 msgid "" "It appears that ROS is currently installed. Each ROS release is very strict " "about the versions of Ubuntu it supports, and Ubuntu upgrades can fail if " @@ -1028,11 +1028,11 @@ "Are you sure you want to continue?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:670 +#: ../DistUpgrade/DistUpgradeQuirks.py:674 msgid "Connection to the Snap Store failed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:671 +#: ../DistUpgrade/DistUpgradeQuirks.py:675 msgid "" "You have the package lxd installed but your system is unable to reach the " "Snap Store. lxd is now provided via a snap and the release upgrade will fail " @@ -1042,11 +1042,11 @@ "may want to configure a Snap Store proxy." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:686 +#: ../DistUpgrade/DistUpgradeQuirks.py:690 msgid "Connection to Snap Store failed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:687 +#: ../DistUpgrade/DistUpgradeQuirks.py:691 msgid "" "Your system does not have a connection to the Snap Store. For the best " "upgrade experience make sure that your system can connect to api.snapcraft." @@ -1054,11 +1054,11 @@ "Do you still want to continue with the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:696 +#: ../DistUpgrade/DistUpgradeQuirks.py:700 msgid "Outdated snapd package" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:697 +#: ../DistUpgrade/DistUpgradeQuirks.py:701 msgid "" "Your system does not have the latest version of snapd. Please update the " "version of snapd on your system to improve the upgrade experience.\n" @@ -1067,36 +1067,36 @@ #. now perform direct API calls to the store, requesting size #. information for each of the snaps needing installation -#: ../DistUpgrade/DistUpgradeQuirks.py:722 +#: ../DistUpgrade/DistUpgradeQuirks.py:726 msgid "Calculating snap size requirements" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:753 +#: ../DistUpgrade/DistUpgradeQuirks.py:757 msgid "Processing snap replacements" msgstr "" #. TODO: This status should be updated, but the time of #. this change to snap switch is post-translation freeze. -#: ../DistUpgrade/DistUpgradeQuirks.py:761 +#: ../DistUpgrade/DistUpgradeQuirks.py:765 #, python-format msgid "refreshing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:765 +#: ../DistUpgrade/DistUpgradeQuirks.py:769 #, python-format msgid "removing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:768 +#: ../DistUpgrade/DistUpgradeQuirks.py:772 #, python-format msgid "installing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:797 +#: ../DistUpgrade/DistUpgradeQuirks.py:801 msgid "PAE not enabled" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:798 +#: ../DistUpgrade/DistUpgradeQuirks.py:802 msgid "" "Your system uses a CPU that does not have PAE enabled. Ubuntu only supports " "non-PAE systems up to Ubuntu 12.04. To upgrade to a later version of Ubuntu, " @@ -1104,11 +1104,11 @@ "http://help.ubuntu.com/community/EnablingPAE" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1094 +#: ../DistUpgrade/DistUpgradeQuirks.py:1098 msgid "universe component not enabled" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1095 +#: ../DistUpgrade/DistUpgradeQuirks.py:1099 #, python-format msgid "" "You have the package %s installed which is a python2 package. python2 has " @@ -1120,39 +1120,50 @@ "universe component in /etc/apt/sources.list or remove %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1207 +#: ../DistUpgrade/DistUpgradeQuirks.py:1211 msgid "Checking for installed snaps" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1654 +#: ../DistUpgrade/DistUpgradeQuirks.py:1720 #, fuzzy msgid "Cannot upgrade this system" msgstr "ناتوانرێ بەرزبکرێتەوە" -#: ../DistUpgrade/DistUpgradeQuirks.py:1655 +#: ../DistUpgrade/DistUpgradeQuirks.py:1721 msgid "" "Due to a bug in grub, this system cannot be safely upgraded at this time.\n" "\n" "See https://launchpad.net/bugs/2039172." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1721 +#: ../DistUpgrade/DistUpgradeQuirks.py:1787 #, python-brace-format msgid "Updates for Ubuntu {from_release.version} will " msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1731 +#: ../DistUpgrade/DistUpgradeQuirks.py:1797 #, fuzzy msgid "Sorry, cannot upgrade this system to 24.04 LTS" msgstr "ناتوانرێ بەرزبکرێتەوە" -#: ../DistUpgrade/DistUpgradeQuirks.py:1734 +#: ../DistUpgrade/DistUpgradeQuirks.py:1800 msgid "" "The Raspberry Pi kernel for Ubuntu 24.04 LTS does not support the armhf " "architecture.\n" "\n" msgstr "" +#: ../DistUpgrade/DistUpgradeQuirks.py:1928 +#, fuzzy, python-brace-format +msgid "Sorry, cannot upgrade this system to {version}" +msgstr "ناتوانرێ بەرزبکرێتەوە" + +#: ../DistUpgrade/DistUpgradeQuirks.py:1931 +msgid "" +"Upgrades for desktop systems running TPM FDE are not currently supported. " +"Please see https://launchpad.net/bugs/2065229 for more information." +msgstr "" + #: ../DistUpgrade/DistUpgradeMain.py:62 msgid "" "Use frontend. Currently available: \n" diff -Nru ubuntu-release-upgrader-24.04.17/po/crh.po ubuntu-release-upgrader-24.04.18/po/crh.po --- ubuntu-release-upgrader-24.04.17/po/crh.po 2024-04-29 14:26:40.000000000 +0000 +++ ubuntu-release-upgrader-24.04.18/po/crh.po 2024-05-09 19:39:16.000000000 +0000 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2024-04-29 16:03+0200\n" +"POT-Creation-Date: 2024-05-09 15:39-0400\n" "PO-Revision-Date: 2013-05-22 11:00+0000\n" "Last-Translator: Reşat SABIQ \n" "Language-Team: QIRIMTATARCA (Qırım Türkçesi) \n" "Language-Team: Czech \n" @@ -1078,12 +1078,12 @@ msgid "Media Change" msgstr "Změna média" -#: ../DistUpgrade/DistUpgradeQuirks.py:248 +#: ../DistUpgrade/DistUpgradeQuirks.py:252 msgid "Your graphics hardware may not be fully supported in Ubuntu 14.04." msgstr "" "Vaše grafická karta pravděpodobně nebude v Ubuntu 14.04 plně podporována." -#: ../DistUpgrade/DistUpgradeQuirks.py:250 +#: ../DistUpgrade/DistUpgradeQuirks.py:254 msgid "" "Running the 'unity' desktop environment is not fully supported by your " "graphics hardware. You will maybe end up in a very slow environment after " @@ -1098,11 +1098,11 @@ "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForUnity3D Přejete si " "stále pokračovat v přechodu na novější verzi systému?" -#: ../DistUpgrade/DistUpgradeQuirks.py:274 +#: ../DistUpgrade/DistUpgradeQuirks.py:278 msgid "Your graphics hardware may not be fully supported in Ubuntu 12.04 LTS." msgstr "Vaše grafická karta nemusí být v Ubuntu 12.04 LTS plně podporována." -#: ../DistUpgrade/DistUpgradeQuirks.py:276 +#: ../DistUpgrade/DistUpgradeQuirks.py:280 msgid "" "The support in Ubuntu 12.04 LTS for your Intel graphics hardware is limited " "and you may encounter problems after the upgrade. For more information see " @@ -1114,7 +1114,7 @@ "wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForI8xx Přejete si pokračovat v " "přechodu na novější vydání?" -#: ../DistUpgrade/DistUpgradeQuirks.py:296 +#: ../DistUpgrade/DistUpgradeQuirks.py:300 msgid "" "Upgrading may reduce desktop effects, and performance in games and other " "graphically intensive programs." @@ -1122,7 +1122,7 @@ "Povýšení může omezit grafické efekty prostředí a snížit výkon ve hrách a " "jiných graficky náročných aplikacích." -#: ../DistUpgrade/DistUpgradeQuirks.py:300 +#: ../DistUpgrade/DistUpgradeQuirks.py:304 msgid "" "This computer is currently using the AMD 'fglrx' graphics driver. No version " "of this driver is available that works with your hardware in Ubuntu 10.04 " @@ -1136,12 +1136,12 @@ "\n" "Přejete si pokračovat?" -#: ../DistUpgrade/DistUpgradeQuirks.py:339 -#: ../DistUpgrade/DistUpgradeQuirks.py:408 +#: ../DistUpgrade/DistUpgradeQuirks.py:343 +#: ../DistUpgrade/DistUpgradeQuirks.py:412 msgid "Sorry, no more upgrades for this system" msgstr "Omlouváme se, ale pro tento systém nejsou k dispozici další povýšení" -#: ../DistUpgrade/DistUpgradeQuirks.py:340 +#: ../DistUpgrade/DistUpgradeQuirks.py:344 #, python-format msgid "" "There will not be any further Ubuntu releases for this system's 'i386' " @@ -1154,11 +1154,11 @@ "\n" "Aktualizace Ubuntu %s budou pokračovat do %s." -#: ../DistUpgrade/DistUpgradeQuirks.py:355 +#: ../DistUpgrade/DistUpgradeQuirks.py:359 msgid "No ARMv6 CPU" msgstr "Nemáte procesor ARMv6" -#: ../DistUpgrade/DistUpgradeQuirks.py:356 +#: ../DistUpgrade/DistUpgradeQuirks.py:360 msgid "" "Your system uses an ARM CPU that is older than the ARMv6 architecture. All " "packages in karmic were built with optimizations requiring ARMv6 as the " @@ -1170,12 +1170,12 @@ "požadujícími minimálně architekturu ARMv6. S tímto hardwarem není možné " "povýšit váš systém na nové vydání Ubuntu." -#: ../DistUpgrade/DistUpgradeQuirks.py:376 +#: ../DistUpgrade/DistUpgradeQuirks.py:380 msgid "" "Sorry, this storage driver is not supported in kernels for newer releases" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:378 +#: ../DistUpgrade/DistUpgradeQuirks.py:382 #, python-format msgid "" "There will not be any further Ubuntu releases that provide kernel support " @@ -1185,7 +1185,7 @@ "driver, remove the directory %s and try again." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:409 +#: ../DistUpgrade/DistUpgradeQuirks.py:413 #, fuzzy, python-format msgid "" "There will not be any further Ubuntu releases for this system's POWER8 " @@ -1198,11 +1198,11 @@ "\n" "Aktualizace Ubuntu %s budou pokračovat do %s." -#: ../DistUpgrade/DistUpgradeQuirks.py:427 +#: ../DistUpgrade/DistUpgradeQuirks.py:431 msgid "No init available" msgstr "Není k dispozici žádný démon init" -#: ../DistUpgrade/DistUpgradeQuirks.py:428 +#: ../DistUpgrade/DistUpgradeQuirks.py:432 msgid "" "Your system appears to be a virtualised environment without an init daemon, " "e.g. Linux-VServer. Ubuntu 10.04 LTS cannot function within this type of " @@ -1218,11 +1218,11 @@ "\n" "Opravdu chcete pokračovat?" -#: ../DistUpgrade/DistUpgradeQuirks.py:469 +#: ../DistUpgrade/DistUpgradeQuirks.py:473 msgid "The Robot Operating System (ROS) is installed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:470 +#: ../DistUpgrade/DistUpgradeQuirks.py:474 msgid "" "It appears that ROS is currently installed. Each ROS release is very strict " "about the versions of Ubuntu it supports, and Ubuntu upgrades can fail if " @@ -1239,12 +1239,12 @@ "Are you sure you want to continue?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:670 +#: ../DistUpgrade/DistUpgradeQuirks.py:674 #, fuzzy msgid "Connection to the Snap Store failed" msgstr "Připojení ke Snap Store selhalo" -#: ../DistUpgrade/DistUpgradeQuirks.py:671 +#: ../DistUpgrade/DistUpgradeQuirks.py:675 msgid "" "You have the package lxd installed but your system is unable to reach the " "Snap Store. lxd is now provided via a snap and the release upgrade will fail " @@ -1254,11 +1254,11 @@ "may want to configure a Snap Store proxy." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:686 +#: ../DistUpgrade/DistUpgradeQuirks.py:690 msgid "Connection to Snap Store failed" msgstr "Připojení ke Snap Store selhalo" -#: ../DistUpgrade/DistUpgradeQuirks.py:687 +#: ../DistUpgrade/DistUpgradeQuirks.py:691 msgid "" "Your system does not have a connection to the Snap Store. For the best " "upgrade experience make sure that your system can connect to api.snapcraft." @@ -1269,11 +1269,11 @@ "vyšší verzi se ujistěte, že se váš systém může připojit k api.snapcraft.io.\n" "Chcete stále pokračovat s přechodem na vyšší verzi?" -#: ../DistUpgrade/DistUpgradeQuirks.py:696 +#: ../DistUpgrade/DistUpgradeQuirks.py:700 msgid "Outdated snapd package" msgstr "Zastaralý balíček snapd" -#: ../DistUpgrade/DistUpgradeQuirks.py:697 +#: ../DistUpgrade/DistUpgradeQuirks.py:701 msgid "" "Your system does not have the latest version of snapd. Please update the " "version of snapd on your system to improve the upgrade experience.\n" @@ -1285,36 +1285,36 @@ #. now perform direct API calls to the store, requesting size #. information for each of the snaps needing installation -#: ../DistUpgrade/DistUpgradeQuirks.py:722 +#: ../DistUpgrade/DistUpgradeQuirks.py:726 msgid "Calculating snap size requirements" msgstr "Vypočítávají se požadavky na velikost snapu" -#: ../DistUpgrade/DistUpgradeQuirks.py:753 +#: ../DistUpgrade/DistUpgradeQuirks.py:757 msgid "Processing snap replacements" msgstr "Zpracovávají se snap náhrady" #. TODO: This status should be updated, but the time of #. this change to snap switch is post-translation freeze. -#: ../DistUpgrade/DistUpgradeQuirks.py:761 +#: ../DistUpgrade/DistUpgradeQuirks.py:765 #, python-format msgid "refreshing snap %s" msgstr "obnovuje se snap %s" -#: ../DistUpgrade/DistUpgradeQuirks.py:765 +#: ../DistUpgrade/DistUpgradeQuirks.py:769 #, fuzzy, python-format msgid "removing snap %s" msgstr "obnovuje se snap %s" -#: ../DistUpgrade/DistUpgradeQuirks.py:768 +#: ../DistUpgrade/DistUpgradeQuirks.py:772 #, python-format msgid "installing snap %s" msgstr "instaluje se snap %s" -#: ../DistUpgrade/DistUpgradeQuirks.py:797 +#: ../DistUpgrade/DistUpgradeQuirks.py:801 msgid "PAE not enabled" msgstr "PAE není povoleno" -#: ../DistUpgrade/DistUpgradeQuirks.py:798 +#: ../DistUpgrade/DistUpgradeQuirks.py:802 msgid "" "Your system uses a CPU that does not have PAE enabled. Ubuntu only supports " "non-PAE systems up to Ubuntu 12.04. To upgrade to a later version of Ubuntu, " @@ -1326,11 +1326,11 @@ "musíte povolit PAE, (jestli je to možné) viz:\n" "http://help.ubuntu.com/community/EnablingPAE" -#: ../DistUpgrade/DistUpgradeQuirks.py:1094 +#: ../DistUpgrade/DistUpgradeQuirks.py:1098 msgid "universe component not enabled" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1095 +#: ../DistUpgrade/DistUpgradeQuirks.py:1099 #, python-format msgid "" "You have the package %s installed which is a python2 package. python2 has " @@ -1342,39 +1342,50 @@ "universe component in /etc/apt/sources.list or remove %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1207 +#: ../DistUpgrade/DistUpgradeQuirks.py:1211 msgid "Checking for installed snaps" msgstr "Kontrolují se nainstalované snapy" -#: ../DistUpgrade/DistUpgradeQuirks.py:1654 +#: ../DistUpgrade/DistUpgradeQuirks.py:1720 #, fuzzy msgid "Cannot upgrade this system" msgstr "Nelze přejít na vyšší verzi" -#: ../DistUpgrade/DistUpgradeQuirks.py:1655 +#: ../DistUpgrade/DistUpgradeQuirks.py:1721 msgid "" "Due to a bug in grub, this system cannot be safely upgraded at this time.\n" "\n" "See https://launchpad.net/bugs/2039172." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1721 +#: ../DistUpgrade/DistUpgradeQuirks.py:1787 #, python-brace-format msgid "Updates for Ubuntu {from_release.version} will " msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1731 +#: ../DistUpgrade/DistUpgradeQuirks.py:1797 #, fuzzy msgid "Sorry, cannot upgrade this system to 24.04 LTS" msgstr "Nelze přejít na vyšší verzi" -#: ../DistUpgrade/DistUpgradeQuirks.py:1734 +#: ../DistUpgrade/DistUpgradeQuirks.py:1800 msgid "" "The Raspberry Pi kernel for Ubuntu 24.04 LTS does not support the armhf " "architecture.\n" "\n" msgstr "" +#: ../DistUpgrade/DistUpgradeQuirks.py:1928 +#, fuzzy, python-brace-format +msgid "Sorry, cannot upgrade this system to {version}" +msgstr "Nelze přejít na vyšší verzi" + +#: ../DistUpgrade/DistUpgradeQuirks.py:1931 +msgid "" +"Upgrades for desktop systems running TPM FDE are not currently supported. " +"Please see https://launchpad.net/bugs/2065229 for more information." +msgstr "" + #: ../DistUpgrade/DistUpgradeMain.py:62 msgid "" "Use frontend. Currently available: \n" diff -Nru ubuntu-release-upgrader-24.04.17/po/csb.po ubuntu-release-upgrader-24.04.18/po/csb.po --- ubuntu-release-upgrader-24.04.17/po/csb.po 2024-04-29 14:26:40.000000000 +0000 +++ ubuntu-release-upgrader-24.04.18/po/csb.po 2024-05-09 19:39:16.000000000 +0000 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2024-04-29 16:03+0200\n" +"POT-Creation-Date: 2024-05-09 15:39-0400\n" "PO-Revision-Date: 2013-05-22 11:00+0000\n" "Last-Translator: Yurek Hinz \n" "Language-Team: Kashubian \n" @@ -949,11 +949,11 @@ msgid "Media Change" msgstr "Zmiana media" -#: ../DistUpgrade/DistUpgradeQuirks.py:248 +#: ../DistUpgrade/DistUpgradeQuirks.py:252 msgid "Your graphics hardware may not be fully supported in Ubuntu 14.04." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:250 +#: ../DistUpgrade/DistUpgradeQuirks.py:254 msgid "" "Running the 'unity' desktop environment is not fully supported by your " "graphics hardware. You will maybe end up in a very slow environment after " @@ -963,11 +963,11 @@ "upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:274 +#: ../DistUpgrade/DistUpgradeQuirks.py:278 msgid "Your graphics hardware may not be fully supported in Ubuntu 12.04 LTS." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:276 +#: ../DistUpgrade/DistUpgradeQuirks.py:280 msgid "" "The support in Ubuntu 12.04 LTS for your Intel graphics hardware is limited " "and you may encounter problems after the upgrade. For more information see " @@ -975,13 +975,13 @@ "continue with the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:296 +#: ../DistUpgrade/DistUpgradeQuirks.py:300 msgid "" "Upgrading may reduce desktop effects, and performance in games and other " "graphically intensive programs." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:300 +#: ../DistUpgrade/DistUpgradeQuirks.py:304 msgid "" "This computer is currently using the AMD 'fglrx' graphics driver. No version " "of this driver is available that works with your hardware in Ubuntu 10.04 " @@ -994,12 +994,12 @@ "\n" "Jisc dali?" -#: ../DistUpgrade/DistUpgradeQuirks.py:339 -#: ../DistUpgrade/DistUpgradeQuirks.py:408 +#: ../DistUpgrade/DistUpgradeQuirks.py:343 +#: ../DistUpgrade/DistUpgradeQuirks.py:412 msgid "Sorry, no more upgrades for this system" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:340 +#: ../DistUpgrade/DistUpgradeQuirks.py:344 #, python-format msgid "" "There will not be any further Ubuntu releases for this system's 'i386' " @@ -1008,11 +1008,11 @@ "Updates for Ubuntu %s will continue until %s." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:355 +#: ../DistUpgrade/DistUpgradeQuirks.py:359 msgid "No ARMv6 CPU" msgstr "Felënk procesora ARMv6" -#: ../DistUpgrade/DistUpgradeQuirks.py:356 +#: ../DistUpgrade/DistUpgradeQuirks.py:360 msgid "" "Your system uses an ARM CPU that is older than the ARMv6 architecture. All " "packages in karmic were built with optimizations requiring ARMv6 as the " @@ -1020,12 +1020,12 @@ "Ubuntu release with this hardware." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:376 +#: ../DistUpgrade/DistUpgradeQuirks.py:380 msgid "" "Sorry, this storage driver is not supported in kernels for newer releases" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:378 +#: ../DistUpgrade/DistUpgradeQuirks.py:382 #, python-format msgid "" "There will not be any further Ubuntu releases that provide kernel support " @@ -1035,7 +1035,7 @@ "driver, remove the directory %s and try again." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:409 +#: ../DistUpgrade/DistUpgradeQuirks.py:413 #, python-format msgid "" "There will not be any further Ubuntu releases for this system's POWER8 " @@ -1044,11 +1044,11 @@ "Updates for Ubuntu %s will continue until %s." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:427 +#: ../DistUpgrade/DistUpgradeQuirks.py:431 msgid "No init available" msgstr "Felënk przëstãpù do procesu init" -#: ../DistUpgrade/DistUpgradeQuirks.py:428 +#: ../DistUpgrade/DistUpgradeQuirks.py:432 msgid "" "Your system appears to be a virtualised environment without an init daemon, " "e.g. Linux-VServer. Ubuntu 10.04 LTS cannot function within this type of " @@ -1058,11 +1058,11 @@ "Are you sure you want to continue?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:469 +#: ../DistUpgrade/DistUpgradeQuirks.py:473 msgid "The Robot Operating System (ROS) is installed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:470 +#: ../DistUpgrade/DistUpgradeQuirks.py:474 msgid "" "It appears that ROS is currently installed. Each ROS release is very strict " "about the versions of Ubuntu it supports, and Ubuntu upgrades can fail if " @@ -1079,11 +1079,11 @@ "Are you sure you want to continue?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:670 +#: ../DistUpgrade/DistUpgradeQuirks.py:674 msgid "Connection to the Snap Store failed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:671 +#: ../DistUpgrade/DistUpgradeQuirks.py:675 msgid "" "You have the package lxd installed but your system is unable to reach the " "Snap Store. lxd is now provided via a snap and the release upgrade will fail " @@ -1093,11 +1093,11 @@ "may want to configure a Snap Store proxy." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:686 +#: ../DistUpgrade/DistUpgradeQuirks.py:690 msgid "Connection to Snap Store failed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:687 +#: ../DistUpgrade/DistUpgradeQuirks.py:691 msgid "" "Your system does not have a connection to the Snap Store. For the best " "upgrade experience make sure that your system can connect to api.snapcraft." @@ -1105,11 +1105,11 @@ "Do you still want to continue with the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:696 +#: ../DistUpgrade/DistUpgradeQuirks.py:700 msgid "Outdated snapd package" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:697 +#: ../DistUpgrade/DistUpgradeQuirks.py:701 msgid "" "Your system does not have the latest version of snapd. Please update the " "version of snapd on your system to improve the upgrade experience.\n" @@ -1118,36 +1118,36 @@ #. now perform direct API calls to the store, requesting size #. information for each of the snaps needing installation -#: ../DistUpgrade/DistUpgradeQuirks.py:722 +#: ../DistUpgrade/DistUpgradeQuirks.py:726 msgid "Calculating snap size requirements" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:753 +#: ../DistUpgrade/DistUpgradeQuirks.py:757 msgid "Processing snap replacements" msgstr "" #. TODO: This status should be updated, but the time of #. this change to snap switch is post-translation freeze. -#: ../DistUpgrade/DistUpgradeQuirks.py:761 +#: ../DistUpgrade/DistUpgradeQuirks.py:765 #, python-format msgid "refreshing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:765 +#: ../DistUpgrade/DistUpgradeQuirks.py:769 #, python-format msgid "removing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:768 +#: ../DistUpgrade/DistUpgradeQuirks.py:772 #, python-format msgid "installing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:797 +#: ../DistUpgrade/DistUpgradeQuirks.py:801 msgid "PAE not enabled" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:798 +#: ../DistUpgrade/DistUpgradeQuirks.py:802 msgid "" "Your system uses a CPU that does not have PAE enabled. Ubuntu only supports " "non-PAE systems up to Ubuntu 12.04. To upgrade to a later version of Ubuntu, " @@ -1155,11 +1155,11 @@ "http://help.ubuntu.com/community/EnablingPAE" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1094 +#: ../DistUpgrade/DistUpgradeQuirks.py:1098 msgid "universe component not enabled" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1095 +#: ../DistUpgrade/DistUpgradeQuirks.py:1099 #, python-format msgid "" "You have the package %s installed which is a python2 package. python2 has " @@ -1171,39 +1171,50 @@ "universe component in /etc/apt/sources.list or remove %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1207 +#: ../DistUpgrade/DistUpgradeQuirks.py:1211 msgid "Checking for installed snaps" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1654 +#: ../DistUpgrade/DistUpgradeQuirks.py:1720 #, fuzzy msgid "Cannot upgrade this system" msgstr "Nié mòże zaktualnic" -#: ../DistUpgrade/DistUpgradeQuirks.py:1655 +#: ../DistUpgrade/DistUpgradeQuirks.py:1721 msgid "" "Due to a bug in grub, this system cannot be safely upgraded at this time.\n" "\n" "See https://launchpad.net/bugs/2039172." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1721 +#: ../DistUpgrade/DistUpgradeQuirks.py:1787 #, python-brace-format msgid "Updates for Ubuntu {from_release.version} will " msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1731 +#: ../DistUpgrade/DistUpgradeQuirks.py:1797 #, fuzzy msgid "Sorry, cannot upgrade this system to 24.04 LTS" msgstr "Nié mòże zaktualnic" -#: ../DistUpgrade/DistUpgradeQuirks.py:1734 +#: ../DistUpgrade/DistUpgradeQuirks.py:1800 msgid "" "The Raspberry Pi kernel for Ubuntu 24.04 LTS does not support the armhf " "architecture.\n" "\n" msgstr "" +#: ../DistUpgrade/DistUpgradeQuirks.py:1928 +#, fuzzy, python-brace-format +msgid "Sorry, cannot upgrade this system to {version}" +msgstr "Nié mòże zaktualnic" + +#: ../DistUpgrade/DistUpgradeQuirks.py:1931 +msgid "" +"Upgrades for desktop systems running TPM FDE are not currently supported. " +"Please see https://launchpad.net/bugs/2065229 for more information." +msgstr "" + #: ../DistUpgrade/DistUpgradeMain.py:62 msgid "" "Use frontend. Currently available: \n" diff -Nru ubuntu-release-upgrader-24.04.17/po/cv.po ubuntu-release-upgrader-24.04.18/po/cv.po --- ubuntu-release-upgrader-24.04.17/po/cv.po 2024-04-29 14:26:40.000000000 +0000 +++ ubuntu-release-upgrader-24.04.18/po/cv.po 2024-05-09 19:39:16.000000000 +0000 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2024-04-29 16:03+0200\n" +"POT-Creation-Date: 2024-05-09 15:39-0400\n" "PO-Revision-Date: 2013-05-22 11:00+0000\n" "Last-Translator: Michael Vogt \n" "Language-Team: Chuvash \n" @@ -897,11 +897,11 @@ msgid "Media Change" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:248 +#: ../DistUpgrade/DistUpgradeQuirks.py:252 msgid "Your graphics hardware may not be fully supported in Ubuntu 14.04." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:250 +#: ../DistUpgrade/DistUpgradeQuirks.py:254 msgid "" "Running the 'unity' desktop environment is not fully supported by your " "graphics hardware. You will maybe end up in a very slow environment after " @@ -911,11 +911,11 @@ "upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:274 +#: ../DistUpgrade/DistUpgradeQuirks.py:278 msgid "Your graphics hardware may not be fully supported in Ubuntu 12.04 LTS." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:276 +#: ../DistUpgrade/DistUpgradeQuirks.py:280 msgid "" "The support in Ubuntu 12.04 LTS for your Intel graphics hardware is limited " "and you may encounter problems after the upgrade. For more information see " @@ -923,13 +923,13 @@ "continue with the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:296 +#: ../DistUpgrade/DistUpgradeQuirks.py:300 msgid "" "Upgrading may reduce desktop effects, and performance in games and other " "graphically intensive programs." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:300 +#: ../DistUpgrade/DistUpgradeQuirks.py:304 msgid "" "This computer is currently using the AMD 'fglrx' graphics driver. No version " "of this driver is available that works with your hardware in Ubuntu 10.04 " @@ -938,12 +938,12 @@ "Do you want to continue?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:339 -#: ../DistUpgrade/DistUpgradeQuirks.py:408 +#: ../DistUpgrade/DistUpgradeQuirks.py:343 +#: ../DistUpgrade/DistUpgradeQuirks.py:412 msgid "Sorry, no more upgrades for this system" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:340 +#: ../DistUpgrade/DistUpgradeQuirks.py:344 #, python-format msgid "" "There will not be any further Ubuntu releases for this system's 'i386' " @@ -952,11 +952,11 @@ "Updates for Ubuntu %s will continue until %s." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:355 +#: ../DistUpgrade/DistUpgradeQuirks.py:359 msgid "No ARMv6 CPU" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:356 +#: ../DistUpgrade/DistUpgradeQuirks.py:360 msgid "" "Your system uses an ARM CPU that is older than the ARMv6 architecture. All " "packages in karmic were built with optimizations requiring ARMv6 as the " @@ -964,12 +964,12 @@ "Ubuntu release with this hardware." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:376 +#: ../DistUpgrade/DistUpgradeQuirks.py:380 msgid "" "Sorry, this storage driver is not supported in kernels for newer releases" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:378 +#: ../DistUpgrade/DistUpgradeQuirks.py:382 #, python-format msgid "" "There will not be any further Ubuntu releases that provide kernel support " @@ -979,7 +979,7 @@ "driver, remove the directory %s and try again." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:409 +#: ../DistUpgrade/DistUpgradeQuirks.py:413 #, python-format msgid "" "There will not be any further Ubuntu releases for this system's POWER8 " @@ -988,11 +988,11 @@ "Updates for Ubuntu %s will continue until %s." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:427 +#: ../DistUpgrade/DistUpgradeQuirks.py:431 msgid "No init available" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:428 +#: ../DistUpgrade/DistUpgradeQuirks.py:432 msgid "" "Your system appears to be a virtualised environment without an init daemon, " "e.g. Linux-VServer. Ubuntu 10.04 LTS cannot function within this type of " @@ -1002,11 +1002,11 @@ "Are you sure you want to continue?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:469 +#: ../DistUpgrade/DistUpgradeQuirks.py:473 msgid "The Robot Operating System (ROS) is installed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:470 +#: ../DistUpgrade/DistUpgradeQuirks.py:474 msgid "" "It appears that ROS is currently installed. Each ROS release is very strict " "about the versions of Ubuntu it supports, and Ubuntu upgrades can fail if " @@ -1023,11 +1023,11 @@ "Are you sure you want to continue?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:670 +#: ../DistUpgrade/DistUpgradeQuirks.py:674 msgid "Connection to the Snap Store failed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:671 +#: ../DistUpgrade/DistUpgradeQuirks.py:675 msgid "" "You have the package lxd installed but your system is unable to reach the " "Snap Store. lxd is now provided via a snap and the release upgrade will fail " @@ -1037,11 +1037,11 @@ "may want to configure a Snap Store proxy." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:686 +#: ../DistUpgrade/DistUpgradeQuirks.py:690 msgid "Connection to Snap Store failed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:687 +#: ../DistUpgrade/DistUpgradeQuirks.py:691 msgid "" "Your system does not have a connection to the Snap Store. For the best " "upgrade experience make sure that your system can connect to api.snapcraft." @@ -1049,11 +1049,11 @@ "Do you still want to continue with the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:696 +#: ../DistUpgrade/DistUpgradeQuirks.py:700 msgid "Outdated snapd package" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:697 +#: ../DistUpgrade/DistUpgradeQuirks.py:701 msgid "" "Your system does not have the latest version of snapd. Please update the " "version of snapd on your system to improve the upgrade experience.\n" @@ -1062,36 +1062,36 @@ #. now perform direct API calls to the store, requesting size #. information for each of the snaps needing installation -#: ../DistUpgrade/DistUpgradeQuirks.py:722 +#: ../DistUpgrade/DistUpgradeQuirks.py:726 msgid "Calculating snap size requirements" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:753 +#: ../DistUpgrade/DistUpgradeQuirks.py:757 msgid "Processing snap replacements" msgstr "" #. TODO: This status should be updated, but the time of #. this change to snap switch is post-translation freeze. -#: ../DistUpgrade/DistUpgradeQuirks.py:761 +#: ../DistUpgrade/DistUpgradeQuirks.py:765 #, python-format msgid "refreshing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:765 +#: ../DistUpgrade/DistUpgradeQuirks.py:769 #, python-format msgid "removing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:768 +#: ../DistUpgrade/DistUpgradeQuirks.py:772 #, python-format msgid "installing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:797 +#: ../DistUpgrade/DistUpgradeQuirks.py:801 msgid "PAE not enabled" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:798 +#: ../DistUpgrade/DistUpgradeQuirks.py:802 msgid "" "Your system uses a CPU that does not have PAE enabled. Ubuntu only supports " "non-PAE systems up to Ubuntu 12.04. To upgrade to a later version of Ubuntu, " @@ -1099,11 +1099,11 @@ "http://help.ubuntu.com/community/EnablingPAE" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1094 +#: ../DistUpgrade/DistUpgradeQuirks.py:1098 msgid "universe component not enabled" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1095 +#: ../DistUpgrade/DistUpgradeQuirks.py:1099 #, python-format msgid "" "You have the package %s installed which is a python2 package. python2 has " @@ -1115,39 +1115,50 @@ "universe component in /etc/apt/sources.list or remove %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1207 +#: ../DistUpgrade/DistUpgradeQuirks.py:1211 msgid "Checking for installed snaps" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1654 +#: ../DistUpgrade/DistUpgradeQuirks.py:1720 #, fuzzy msgid "Cannot upgrade this system" msgstr "Şĕnetejmerĕmĕr" -#: ../DistUpgrade/DistUpgradeQuirks.py:1655 +#: ../DistUpgrade/DistUpgradeQuirks.py:1721 msgid "" "Due to a bug in grub, this system cannot be safely upgraded at this time.\n" "\n" "See https://launchpad.net/bugs/2039172." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1721 +#: ../DistUpgrade/DistUpgradeQuirks.py:1787 #, python-brace-format msgid "Updates for Ubuntu {from_release.version} will " msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1731 +#: ../DistUpgrade/DistUpgradeQuirks.py:1797 #, fuzzy msgid "Sorry, cannot upgrade this system to 24.04 LTS" msgstr "Şĕnetejmerĕmĕr" -#: ../DistUpgrade/DistUpgradeQuirks.py:1734 +#: ../DistUpgrade/DistUpgradeQuirks.py:1800 msgid "" "The Raspberry Pi kernel for Ubuntu 24.04 LTS does not support the armhf " "architecture.\n" "\n" msgstr "" +#: ../DistUpgrade/DistUpgradeQuirks.py:1928 +#, fuzzy, python-brace-format +msgid "Sorry, cannot upgrade this system to {version}" +msgstr "Şĕnetejmerĕmĕr" + +#: ../DistUpgrade/DistUpgradeQuirks.py:1931 +msgid "" +"Upgrades for desktop systems running TPM FDE are not currently supported. " +"Please see https://launchpad.net/bugs/2065229 for more information." +msgstr "" + #: ../DistUpgrade/DistUpgradeMain.py:62 msgid "" "Use frontend. Currently available: \n" diff -Nru ubuntu-release-upgrader-24.04.17/po/cy.po ubuntu-release-upgrader-24.04.18/po/cy.po --- ubuntu-release-upgrader-24.04.17/po/cy.po 2024-04-29 14:26:40.000000000 +0000 +++ ubuntu-release-upgrader-24.04.18/po/cy.po 2024-05-09 19:39:16.000000000 +0000 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2024-04-29 16:03+0200\n" +"POT-Creation-Date: 2024-05-09 15:39-0400\n" "PO-Revision-Date: 2013-05-22 11:00+0000\n" "Last-Translator: Owen Llywelyn \n" "Language-Team: Welsh \n" @@ -1005,11 +1005,11 @@ msgid "Media Change" msgstr "Newid Cyfrwng" -#: ../DistUpgrade/DistUpgradeQuirks.py:248 +#: ../DistUpgrade/DistUpgradeQuirks.py:252 msgid "Your graphics hardware may not be fully supported in Ubuntu 14.04." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:250 +#: ../DistUpgrade/DistUpgradeQuirks.py:254 msgid "" "Running the 'unity' desktop environment is not fully supported by your " "graphics hardware. You will maybe end up in a very slow environment after " @@ -1019,11 +1019,11 @@ "upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:274 +#: ../DistUpgrade/DistUpgradeQuirks.py:278 msgid "Your graphics hardware may not be fully supported in Ubuntu 12.04 LTS." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:276 +#: ../DistUpgrade/DistUpgradeQuirks.py:280 msgid "" "The support in Ubuntu 12.04 LTS for your Intel graphics hardware is limited " "and you may encounter problems after the upgrade. For more information see " @@ -1031,7 +1031,7 @@ "continue with the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:296 +#: ../DistUpgrade/DistUpgradeQuirks.py:300 msgid "" "Upgrading may reduce desktop effects, and performance in games and other " "graphically intensive programs." @@ -1039,7 +1039,7 @@ "Gall uwchraddio leihau effeithiau bwrdd gwaith a pherfformiad gyda gêmau a " "rhaglenni eraill sy'n drwm ar graffeg." -#: ../DistUpgrade/DistUpgradeQuirks.py:300 +#: ../DistUpgrade/DistUpgradeQuirks.py:304 msgid "" "This computer is currently using the AMD 'fglrx' graphics driver. No version " "of this driver is available that works with your hardware in Ubuntu 10.04 " @@ -1053,12 +1053,12 @@ "\n" "Wyt ti eisiau parhau?" -#: ../DistUpgrade/DistUpgradeQuirks.py:339 -#: ../DistUpgrade/DistUpgradeQuirks.py:408 +#: ../DistUpgrade/DistUpgradeQuirks.py:343 +#: ../DistUpgrade/DistUpgradeQuirks.py:412 msgid "Sorry, no more upgrades for this system" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:340 +#: ../DistUpgrade/DistUpgradeQuirks.py:344 #, python-format msgid "" "There will not be any further Ubuntu releases for this system's 'i386' " @@ -1067,11 +1067,11 @@ "Updates for Ubuntu %s will continue until %s." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:355 +#: ../DistUpgrade/DistUpgradeQuirks.py:359 msgid "No ARMv6 CPU" msgstr "Dim CPU ARMv6" -#: ../DistUpgrade/DistUpgradeQuirks.py:356 +#: ../DistUpgrade/DistUpgradeQuirks.py:360 msgid "" "Your system uses an ARM CPU that is older than the ARMv6 architecture. All " "packages in karmic were built with optimizations requiring ARMv6 as the " @@ -1083,12 +1083,12 @@ "bod yn gweithio. Nid yw'n bosib uwchraddio dy system i fersiwn newydd o " "Ubuntu gyda'r caledwedd hwn." -#: ../DistUpgrade/DistUpgradeQuirks.py:376 +#: ../DistUpgrade/DistUpgradeQuirks.py:380 msgid "" "Sorry, this storage driver is not supported in kernels for newer releases" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:378 +#: ../DistUpgrade/DistUpgradeQuirks.py:382 #, python-format msgid "" "There will not be any further Ubuntu releases that provide kernel support " @@ -1098,7 +1098,7 @@ "driver, remove the directory %s and try again." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:409 +#: ../DistUpgrade/DistUpgradeQuirks.py:413 #, python-format msgid "" "There will not be any further Ubuntu releases for this system's POWER8 " @@ -1107,11 +1107,11 @@ "Updates for Ubuntu %s will continue until %s." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:427 +#: ../DistUpgrade/DistUpgradeQuirks.py:431 msgid "No init available" msgstr "Dim init ar gael" -#: ../DistUpgrade/DistUpgradeQuirks.py:428 +#: ../DistUpgrade/DistUpgradeQuirks.py:432 msgid "" "Your system appears to be a virtualised environment without an init daemon, " "e.g. Linux-VServer. Ubuntu 10.04 LTS cannot function within this type of " @@ -1126,11 +1126,11 @@ "\n" "Wyt ti'n siwr dy fod eisiau parhau?" -#: ../DistUpgrade/DistUpgradeQuirks.py:469 +#: ../DistUpgrade/DistUpgradeQuirks.py:473 msgid "The Robot Operating System (ROS) is installed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:470 +#: ../DistUpgrade/DistUpgradeQuirks.py:474 msgid "" "It appears that ROS is currently installed. Each ROS release is very strict " "about the versions of Ubuntu it supports, and Ubuntu upgrades can fail if " @@ -1147,11 +1147,11 @@ "Are you sure you want to continue?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:670 +#: ../DistUpgrade/DistUpgradeQuirks.py:674 msgid "Connection to the Snap Store failed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:671 +#: ../DistUpgrade/DistUpgradeQuirks.py:675 msgid "" "You have the package lxd installed but your system is unable to reach the " "Snap Store. lxd is now provided via a snap and the release upgrade will fail " @@ -1161,11 +1161,11 @@ "may want to configure a Snap Store proxy." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:686 +#: ../DistUpgrade/DistUpgradeQuirks.py:690 msgid "Connection to Snap Store failed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:687 +#: ../DistUpgrade/DistUpgradeQuirks.py:691 msgid "" "Your system does not have a connection to the Snap Store. For the best " "upgrade experience make sure that your system can connect to api.snapcraft." @@ -1173,11 +1173,11 @@ "Do you still want to continue with the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:696 +#: ../DistUpgrade/DistUpgradeQuirks.py:700 msgid "Outdated snapd package" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:697 +#: ../DistUpgrade/DistUpgradeQuirks.py:701 msgid "" "Your system does not have the latest version of snapd. Please update the " "version of snapd on your system to improve the upgrade experience.\n" @@ -1186,36 +1186,36 @@ #. now perform direct API calls to the store, requesting size #. information for each of the snaps needing installation -#: ../DistUpgrade/DistUpgradeQuirks.py:722 +#: ../DistUpgrade/DistUpgradeQuirks.py:726 msgid "Calculating snap size requirements" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:753 +#: ../DistUpgrade/DistUpgradeQuirks.py:757 msgid "Processing snap replacements" msgstr "" #. TODO: This status should be updated, but the time of #. this change to snap switch is post-translation freeze. -#: ../DistUpgrade/DistUpgradeQuirks.py:761 +#: ../DistUpgrade/DistUpgradeQuirks.py:765 #, python-format msgid "refreshing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:765 +#: ../DistUpgrade/DistUpgradeQuirks.py:769 #, python-format msgid "removing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:768 +#: ../DistUpgrade/DistUpgradeQuirks.py:772 #, python-format msgid "installing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:797 +#: ../DistUpgrade/DistUpgradeQuirks.py:801 msgid "PAE not enabled" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:798 +#: ../DistUpgrade/DistUpgradeQuirks.py:802 msgid "" "Your system uses a CPU that does not have PAE enabled. Ubuntu only supports " "non-PAE systems up to Ubuntu 12.04. To upgrade to a later version of Ubuntu, " @@ -1223,11 +1223,11 @@ "http://help.ubuntu.com/community/EnablingPAE" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1094 +#: ../DistUpgrade/DistUpgradeQuirks.py:1098 msgid "universe component not enabled" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1095 +#: ../DistUpgrade/DistUpgradeQuirks.py:1099 #, python-format msgid "" "You have the package %s installed which is a python2 package. python2 has " @@ -1239,39 +1239,50 @@ "universe component in /etc/apt/sources.list or remove %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1207 +#: ../DistUpgrade/DistUpgradeQuirks.py:1211 msgid "Checking for installed snaps" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1654 +#: ../DistUpgrade/DistUpgradeQuirks.py:1720 #, fuzzy msgid "Cannot upgrade this system" msgstr "Methu uwchraddio" -#: ../DistUpgrade/DistUpgradeQuirks.py:1655 +#: ../DistUpgrade/DistUpgradeQuirks.py:1721 msgid "" "Due to a bug in grub, this system cannot be safely upgraded at this time.\n" "\n" "See https://launchpad.net/bugs/2039172." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1721 +#: ../DistUpgrade/DistUpgradeQuirks.py:1787 #, python-brace-format msgid "Updates for Ubuntu {from_release.version} will " msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1731 +#: ../DistUpgrade/DistUpgradeQuirks.py:1797 #, fuzzy msgid "Sorry, cannot upgrade this system to 24.04 LTS" msgstr "Methu uwchraddio" -#: ../DistUpgrade/DistUpgradeQuirks.py:1734 +#: ../DistUpgrade/DistUpgradeQuirks.py:1800 msgid "" "The Raspberry Pi kernel for Ubuntu 24.04 LTS does not support the armhf " "architecture.\n" "\n" msgstr "" +#: ../DistUpgrade/DistUpgradeQuirks.py:1928 +#, fuzzy, python-brace-format +msgid "Sorry, cannot upgrade this system to {version}" +msgstr "Methu uwchraddio" + +#: ../DistUpgrade/DistUpgradeQuirks.py:1931 +msgid "" +"Upgrades for desktop systems running TPM FDE are not currently supported. " +"Please see https://launchpad.net/bugs/2065229 for more information." +msgstr "" + #: ../DistUpgrade/DistUpgradeMain.py:62 msgid "" "Use frontend. Currently available: \n" diff -Nru ubuntu-release-upgrader-24.04.17/po/da.po ubuntu-release-upgrader-24.04.18/po/da.po --- ubuntu-release-upgrader-24.04.17/po/da.po 2024-04-29 14:26:40.000000000 +0000 +++ ubuntu-release-upgrader-24.04.18/po/da.po 2024-05-09 19:39:16.000000000 +0000 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2024-04-29 16:03+0200\n" +"POT-Creation-Date: 2024-05-09 15:39-0400\n" "PO-Revision-Date: 2019-06-18 17:54+0000\n" "Last-Translator: Aputsiak Niels Janussen \n" "Language-Team: Danish \n" @@ -1079,11 +1079,11 @@ msgid "Media Change" msgstr "Medieskift" -#: ../DistUpgrade/DistUpgradeQuirks.py:248 +#: ../DistUpgrade/DistUpgradeQuirks.py:252 msgid "Your graphics hardware may not be fully supported in Ubuntu 14.04." msgstr "Dit grafikkort understøttes muligvis ikke fuldt ud i Ubuntu 14.04." -#: ../DistUpgrade/DistUpgradeQuirks.py:250 +#: ../DistUpgrade/DistUpgradeQuirks.py:254 msgid "" "Running the 'unity' desktop environment is not fully supported by your " "graphics hardware. You will maybe end up in a very slow environment after " @@ -1099,12 +1099,12 @@ "UpdateManagerWarningForUnity3D . Ønsker du stadig at fortsætte med " "opgraderingen?" -#: ../DistUpgrade/DistUpgradeQuirks.py:274 +#: ../DistUpgrade/DistUpgradeQuirks.py:278 msgid "Your graphics hardware may not be fully supported in Ubuntu 12.04 LTS." msgstr "" "Din grafikhardware understøttes muligvis ikke fuldt ud i Ubuntu 12.04 LTS." -#: ../DistUpgrade/DistUpgradeQuirks.py:276 +#: ../DistUpgrade/DistUpgradeQuirks.py:280 msgid "" "The support in Ubuntu 12.04 LTS for your Intel graphics hardware is limited " "and you may encounter problems after the upgrade. For more information see " @@ -1116,7 +1116,7 @@ "findes på https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForI8xx . Vil " "du fortsætte med opgraderingen?" -#: ../DistUpgrade/DistUpgradeQuirks.py:296 +#: ../DistUpgrade/DistUpgradeQuirks.py:300 msgid "" "Upgrading may reduce desktop effects, and performance in games and other " "graphically intensive programs." @@ -1124,7 +1124,7 @@ "Opgradering kan reducere skrivebordseffekter, ydelse i spil og " "grafikintensive programmer." -#: ../DistUpgrade/DistUpgradeQuirks.py:300 +#: ../DistUpgrade/DistUpgradeQuirks.py:304 msgid "" "This computer is currently using the AMD 'fglrx' graphics driver. No version " "of this driver is available that works with your hardware in Ubuntu 10.04 " @@ -1138,12 +1138,12 @@ "\n" "Vil du fortsætte?" -#: ../DistUpgrade/DistUpgradeQuirks.py:339 -#: ../DistUpgrade/DistUpgradeQuirks.py:408 +#: ../DistUpgrade/DistUpgradeQuirks.py:343 +#: ../DistUpgrade/DistUpgradeQuirks.py:412 msgid "Sorry, no more upgrades for this system" msgstr "Der er desværre ikke flere opgraderinger til dette system" -#: ../DistUpgrade/DistUpgradeQuirks.py:340 +#: ../DistUpgrade/DistUpgradeQuirks.py:344 #, python-format msgid "" "There will not be any further Ubuntu releases for this system's 'i386' " @@ -1156,11 +1156,11 @@ "\n" "Opdateringer til Ubuntu %s vil fortsætte indtil %s." -#: ../DistUpgrade/DistUpgradeQuirks.py:355 +#: ../DistUpgrade/DistUpgradeQuirks.py:359 msgid "No ARMv6 CPU" msgstr "Ingen ARMv6 CPU" -#: ../DistUpgrade/DistUpgradeQuirks.py:356 +#: ../DistUpgrade/DistUpgradeQuirks.py:360 msgid "" "Your system uses an ARM CPU that is older than the ARMv6 architecture. All " "packages in karmic were built with optimizations requiring ARMv6 as the " @@ -1172,12 +1172,12 @@ "minimale arkitektur. Det er ikke muligt at opgradere dit system til en ny " "Ubuntu-udgave med denne hardware." -#: ../DistUpgrade/DistUpgradeQuirks.py:376 +#: ../DistUpgrade/DistUpgradeQuirks.py:380 msgid "" "Sorry, this storage driver is not supported in kernels for newer releases" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:378 +#: ../DistUpgrade/DistUpgradeQuirks.py:382 #, python-format msgid "" "There will not be any further Ubuntu releases that provide kernel support " @@ -1187,7 +1187,7 @@ "driver, remove the directory %s and try again." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:409 +#: ../DistUpgrade/DistUpgradeQuirks.py:413 #, fuzzy, python-format msgid "" "There will not be any further Ubuntu releases for this system's POWER8 " @@ -1200,11 +1200,11 @@ "\n" "Opdateringer til Ubuntu %s vil fortsætte indtil %s." -#: ../DistUpgrade/DistUpgradeQuirks.py:427 +#: ../DistUpgrade/DistUpgradeQuirks.py:431 msgid "No init available" msgstr "Ingen tilgængelig init" -#: ../DistUpgrade/DistUpgradeQuirks.py:428 +#: ../DistUpgrade/DistUpgradeQuirks.py:432 msgid "" "Your system appears to be a virtualised environment without an init daemon, " "e.g. Linux-VServer. Ubuntu 10.04 LTS cannot function within this type of " @@ -1219,11 +1219,11 @@ "\n" "Er du sikker på at du vil fortsætte?" -#: ../DistUpgrade/DistUpgradeQuirks.py:469 +#: ../DistUpgrade/DistUpgradeQuirks.py:473 msgid "The Robot Operating System (ROS) is installed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:470 +#: ../DistUpgrade/DistUpgradeQuirks.py:474 msgid "" "It appears that ROS is currently installed. Each ROS release is very strict " "about the versions of Ubuntu it supports, and Ubuntu upgrades can fail if " @@ -1240,12 +1240,12 @@ "Are you sure you want to continue?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:670 +#: ../DistUpgrade/DistUpgradeQuirks.py:674 #, fuzzy msgid "Connection to the Snap Store failed" msgstr "Forbindelse til Snap Store mislykkedes" -#: ../DistUpgrade/DistUpgradeQuirks.py:671 +#: ../DistUpgrade/DistUpgradeQuirks.py:675 msgid "" "You have the package lxd installed but your system is unable to reach the " "Snap Store. lxd is now provided via a snap and the release upgrade will fail " @@ -1255,11 +1255,11 @@ "may want to configure a Snap Store proxy." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:686 +#: ../DistUpgrade/DistUpgradeQuirks.py:690 msgid "Connection to Snap Store failed" msgstr "Forbindelse til Snap Store mislykkedes" -#: ../DistUpgrade/DistUpgradeQuirks.py:687 +#: ../DistUpgrade/DistUpgradeQuirks.py:691 msgid "" "Your system does not have a connection to the Snap Store. For the best " "upgrade experience make sure that your system can connect to api.snapcraft." @@ -1270,11 +1270,11 @@ "forbinde til api.snapcraft.io for at få det bedste opgraderingsforløb.\n" "Vil du stadig fortsætte med opgraderingen?" -#: ../DistUpgrade/DistUpgradeQuirks.py:696 +#: ../DistUpgrade/DistUpgradeQuirks.py:700 msgid "Outdated snapd package" msgstr "Forældet snapd-pakke" -#: ../DistUpgrade/DistUpgradeQuirks.py:697 +#: ../DistUpgrade/DistUpgradeQuirks.py:701 msgid "" "Your system does not have the latest version of snapd. Please update the " "version of snapd on your system to improve the upgrade experience.\n" @@ -1285,36 +1285,36 @@ #. now perform direct API calls to the store, requesting size #. information for each of the snaps needing installation -#: ../DistUpgrade/DistUpgradeQuirks.py:722 +#: ../DistUpgrade/DistUpgradeQuirks.py:726 msgid "Calculating snap size requirements" msgstr "Beregner pladskrav for snappen" -#: ../DistUpgrade/DistUpgradeQuirks.py:753 +#: ../DistUpgrade/DistUpgradeQuirks.py:757 msgid "Processing snap replacements" msgstr "Behandler erstatning af snapper" #. TODO: This status should be updated, but the time of #. this change to snap switch is post-translation freeze. -#: ../DistUpgrade/DistUpgradeQuirks.py:761 +#: ../DistUpgrade/DistUpgradeQuirks.py:765 #, python-format msgid "refreshing snap %s" msgstr "opdaterer snappen %s" -#: ../DistUpgrade/DistUpgradeQuirks.py:765 +#: ../DistUpgrade/DistUpgradeQuirks.py:769 #, fuzzy, python-format msgid "removing snap %s" msgstr "opdaterer snappen %s" -#: ../DistUpgrade/DistUpgradeQuirks.py:768 +#: ../DistUpgrade/DistUpgradeQuirks.py:772 #, python-format msgid "installing snap %s" msgstr "installerer snappen %s" -#: ../DistUpgrade/DistUpgradeQuirks.py:797 +#: ../DistUpgrade/DistUpgradeQuirks.py:801 msgid "PAE not enabled" msgstr "PAE er ikke slået til" -#: ../DistUpgrade/DistUpgradeQuirks.py:798 +#: ../DistUpgrade/DistUpgradeQuirks.py:802 msgid "" "Your system uses a CPU that does not have PAE enabled. Ubuntu only supports " "non-PAE systems up to Ubuntu 12.04. To upgrade to a later version of Ubuntu, " @@ -1326,11 +1326,11 @@ "af Ubuntu, så skal du slå PAE til (hvis det er muligt), se:\n" "http://help.ubuntu.com/community/EnablingPAE" -#: ../DistUpgrade/DistUpgradeQuirks.py:1094 +#: ../DistUpgrade/DistUpgradeQuirks.py:1098 msgid "universe component not enabled" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1095 +#: ../DistUpgrade/DistUpgradeQuirks.py:1099 #, python-format msgid "" "You have the package %s installed which is a python2 package. python2 has " @@ -1342,39 +1342,50 @@ "universe component in /etc/apt/sources.list or remove %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1207 +#: ../DistUpgrade/DistUpgradeQuirks.py:1211 msgid "Checking for installed snaps" msgstr "Leder efter installerede snapper" -#: ../DistUpgrade/DistUpgradeQuirks.py:1654 +#: ../DistUpgrade/DistUpgradeQuirks.py:1720 #, fuzzy msgid "Cannot upgrade this system" msgstr "Kan ikke opgradere" -#: ../DistUpgrade/DistUpgradeQuirks.py:1655 +#: ../DistUpgrade/DistUpgradeQuirks.py:1721 msgid "" "Due to a bug in grub, this system cannot be safely upgraded at this time.\n" "\n" "See https://launchpad.net/bugs/2039172." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1721 +#: ../DistUpgrade/DistUpgradeQuirks.py:1787 #, python-brace-format msgid "Updates for Ubuntu {from_release.version} will " msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1731 +#: ../DistUpgrade/DistUpgradeQuirks.py:1797 #, fuzzy msgid "Sorry, cannot upgrade this system to 24.04 LTS" msgstr "Kan ikke opgradere" -#: ../DistUpgrade/DistUpgradeQuirks.py:1734 +#: ../DistUpgrade/DistUpgradeQuirks.py:1800 msgid "" "The Raspberry Pi kernel for Ubuntu 24.04 LTS does not support the armhf " "architecture.\n" "\n" msgstr "" +#: ../DistUpgrade/DistUpgradeQuirks.py:1928 +#, fuzzy, python-brace-format +msgid "Sorry, cannot upgrade this system to {version}" +msgstr "Kan ikke opgradere" + +#: ../DistUpgrade/DistUpgradeQuirks.py:1931 +msgid "" +"Upgrades for desktop systems running TPM FDE are not currently supported. " +"Please see https://launchpad.net/bugs/2065229 for more information." +msgstr "" + #: ../DistUpgrade/DistUpgradeMain.py:62 msgid "" "Use frontend. Currently available: \n" diff -Nru ubuntu-release-upgrader-24.04.17/po/de.po ubuntu-release-upgrader-24.04.18/po/de.po --- ubuntu-release-upgrader-24.04.17/po/de.po 2024-04-29 14:26:40.000000000 +0000 +++ ubuntu-release-upgrader-24.04.18/po/de.po 2024-05-09 19:39:16.000000000 +0000 @@ -10,7 +10,7 @@ msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2024-04-29 16:03+0200\n" +"POT-Creation-Date: 2024-05-09 15:39-0400\n" "PO-Revision-Date: 2019-06-18 17:52+0000\n" "Last-Translator: Brian Murray \n" "Language-Team: German GNOME Translations \n" @@ -1111,13 +1111,13 @@ msgid "Media Change" msgstr "Medienwechsel" -#: ../DistUpgrade/DistUpgradeQuirks.py:248 +#: ../DistUpgrade/DistUpgradeQuirks.py:252 msgid "Your graphics hardware may not be fully supported in Ubuntu 14.04." msgstr "" "Ihre Grafikkarte wird eventuell nicht vollständig von Ubuntu 14.04 " "unterstützt." -#: ../DistUpgrade/DistUpgradeQuirks.py:250 +#: ../DistUpgrade/DistUpgradeQuirks.py:254 msgid "" "Running the 'unity' desktop environment is not fully supported by your " "graphics hardware. You will maybe end up in a very slow environment after " @@ -1133,13 +1133,13 @@ "X/Bugs/UpdateManagerWarningForUnity3D Möchten Sie die Aktualisierung " "trotzdem fortsetzen?" -#: ../DistUpgrade/DistUpgradeQuirks.py:274 +#: ../DistUpgrade/DistUpgradeQuirks.py:278 msgid "Your graphics hardware may not be fully supported in Ubuntu 12.04 LTS." msgstr "" "Ihre Grafik-Hardware wird möglicherweise nicht vollständig von Ubuntu 12.04 " "LTS unterstützt." -#: ../DistUpgrade/DistUpgradeQuirks.py:276 +#: ../DistUpgrade/DistUpgradeQuirks.py:280 msgid "" "The support in Ubuntu 12.04 LTS for your Intel graphics hardware is limited " "and you may encounter problems after the upgrade. For more information see " @@ -1152,7 +1152,7 @@ "X/Bugs/UpdateManagerWarningForI8xx Möchten Sie die Systemaktualisierung " "fortsetzen?" -#: ../DistUpgrade/DistUpgradeQuirks.py:296 +#: ../DistUpgrade/DistUpgradeQuirks.py:300 msgid "" "Upgrading may reduce desktop effects, and performance in games and other " "graphically intensive programs." @@ -1161,7 +1161,7 @@ "und die Geschwindigkeit in Spielen und anderen grafikintensiven Anwendungen " "herabsetzen." -#: ../DistUpgrade/DistUpgradeQuirks.py:300 +#: ../DistUpgrade/DistUpgradeQuirks.py:304 msgid "" "This computer is currently using the AMD 'fglrx' graphics driver. No version " "of this driver is available that works with your hardware in Ubuntu 10.04 " @@ -1175,12 +1175,12 @@ "\n" "Möchten Sie fortfahren?" -#: ../DistUpgrade/DistUpgradeQuirks.py:339 -#: ../DistUpgrade/DistUpgradeQuirks.py:408 +#: ../DistUpgrade/DistUpgradeQuirks.py:343 +#: ../DistUpgrade/DistUpgradeQuirks.py:412 msgid "Sorry, no more upgrades for this system" msgstr "Entschuldigung, keine weiteren Aktualisierungen für das System" -#: ../DistUpgrade/DistUpgradeQuirks.py:340 +#: ../DistUpgrade/DistUpgradeQuirks.py:344 #, python-format msgid "" "There will not be any further Ubuntu releases for this system's 'i386' " @@ -1193,11 +1193,11 @@ "\n" "Aktualisierungen für Ubuntu %s werden bis %s fortgesetzt." -#: ../DistUpgrade/DistUpgradeQuirks.py:355 +#: ../DistUpgrade/DistUpgradeQuirks.py:359 msgid "No ARMv6 CPU" msgstr "Kein ARMv6-Prozessor" -#: ../DistUpgrade/DistUpgradeQuirks.py:356 +#: ../DistUpgrade/DistUpgradeQuirks.py:360 msgid "" "Your system uses an ARM CPU that is older than the ARMv6 architecture. All " "packages in karmic were built with optimizations requiring ARMv6 as the " @@ -1209,12 +1209,12 @@ "als minimale Architektur erfordern. Es ist nicht möglich, mit dieser " "Hardware Ihr System auf eine neue Ubuntu-Version zu aktualisieren." -#: ../DistUpgrade/DistUpgradeQuirks.py:376 +#: ../DistUpgrade/DistUpgradeQuirks.py:380 msgid "" "Sorry, this storage driver is not supported in kernels for newer releases" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:378 +#: ../DistUpgrade/DistUpgradeQuirks.py:382 #, python-format msgid "" "There will not be any further Ubuntu releases that provide kernel support " @@ -1224,7 +1224,7 @@ "driver, remove the directory %s and try again." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:409 +#: ../DistUpgrade/DistUpgradeQuirks.py:413 #, fuzzy, python-format msgid "" "There will not be any further Ubuntu releases for this system's POWER8 " @@ -1237,11 +1237,11 @@ "\n" "Aktualisierungen für Ubuntu %s werden bis %s fortgesetzt." -#: ../DistUpgrade/DistUpgradeQuirks.py:427 +#: ../DistUpgrade/DistUpgradeQuirks.py:431 msgid "No init available" msgstr "Kein init verfügbar" -#: ../DistUpgrade/DistUpgradeQuirks.py:428 +#: ../DistUpgrade/DistUpgradeQuirks.py:432 msgid "" "Your system appears to be a virtualised environment without an init daemon, " "e.g. Linux-VServer. Ubuntu 10.04 LTS cannot function within this type of " @@ -1257,11 +1257,11 @@ "\n" "Sind Sie sicher, dass Sie fortfahren möchten?" -#: ../DistUpgrade/DistUpgradeQuirks.py:469 +#: ../DistUpgrade/DistUpgradeQuirks.py:473 msgid "The Robot Operating System (ROS) is installed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:470 +#: ../DistUpgrade/DistUpgradeQuirks.py:474 msgid "" "It appears that ROS is currently installed. Each ROS release is very strict " "about the versions of Ubuntu it supports, and Ubuntu upgrades can fail if " @@ -1278,12 +1278,12 @@ "Are you sure you want to continue?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:670 +#: ../DistUpgrade/DistUpgradeQuirks.py:674 #, fuzzy msgid "Connection to the Snap Store failed" msgstr "Verbindung mit dem Snap-Store fehlgeschlagen" -#: ../DistUpgrade/DistUpgradeQuirks.py:671 +#: ../DistUpgrade/DistUpgradeQuirks.py:675 msgid "" "You have the package lxd installed but your system is unable to reach the " "Snap Store. lxd is now provided via a snap and the release upgrade will fail " @@ -1293,11 +1293,11 @@ "may want to configure a Snap Store proxy." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:686 +#: ../DistUpgrade/DistUpgradeQuirks.py:690 msgid "Connection to Snap Store failed" msgstr "Verbindung mit dem Snap-Store fehlgeschlagen" -#: ../DistUpgrade/DistUpgradeQuirks.py:687 +#: ../DistUpgrade/DistUpgradeQuirks.py:691 msgid "" "Your system does not have a connection to the Snap Store. For the best " "upgrade experience make sure that your system can connect to api.snapcraft." @@ -1308,11 +1308,11 @@ "System eine Verbindung zu api.snapcraft.io herstellen kann. Möchten Sie mit " "der Aktualisierung fortfahren?" -#: ../DistUpgrade/DistUpgradeQuirks.py:696 +#: ../DistUpgrade/DistUpgradeQuirks.py:700 msgid "Outdated snapd package" msgstr "Veraltetes Snapd-Paket" -#: ../DistUpgrade/DistUpgradeQuirks.py:697 +#: ../DistUpgrade/DistUpgradeQuirks.py:701 msgid "" "Your system does not have the latest version of snapd. Please update the " "version of snapd on your system to improve the upgrade experience.\n" @@ -1325,36 +1325,36 @@ #. now perform direct API calls to the store, requesting size #. information for each of the snaps needing installation -#: ../DistUpgrade/DistUpgradeQuirks.py:722 +#: ../DistUpgrade/DistUpgradeQuirks.py:726 msgid "Calculating snap size requirements" msgstr "Berechne Snap-Größenanforderung" -#: ../DistUpgrade/DistUpgradeQuirks.py:753 +#: ../DistUpgrade/DistUpgradeQuirks.py:757 msgid "Processing snap replacements" msgstr "Verarbeitung von Snap-Ersetzungen" #. TODO: This status should be updated, but the time of #. this change to snap switch is post-translation freeze. -#: ../DistUpgrade/DistUpgradeQuirks.py:761 +#: ../DistUpgrade/DistUpgradeQuirks.py:765 #, python-format msgid "refreshing snap %s" msgstr "Snap %s wird aktualisiert" -#: ../DistUpgrade/DistUpgradeQuirks.py:765 +#: ../DistUpgrade/DistUpgradeQuirks.py:769 #, fuzzy, python-format msgid "removing snap %s" msgstr "Snap %s wird aktualisiert" -#: ../DistUpgrade/DistUpgradeQuirks.py:768 +#: ../DistUpgrade/DistUpgradeQuirks.py:772 #, python-format msgid "installing snap %s" msgstr "Snap %s wird installiert" -#: ../DistUpgrade/DistUpgradeQuirks.py:797 +#: ../DistUpgrade/DistUpgradeQuirks.py:801 msgid "PAE not enabled" msgstr "PAE ist nicht aktiviert." -#: ../DistUpgrade/DistUpgradeQuirks.py:798 +#: ../DistUpgrade/DistUpgradeQuirks.py:802 msgid "" "Your system uses a CPU that does not have PAE enabled. Ubuntu only supports " "non-PAE systems up to Ubuntu 12.04. To upgrade to a later version of Ubuntu, " @@ -1367,11 +1367,11 @@ "aktivieren, siehe:\n" "http://help.ubuntu.com/community/EnablingPAE" -#: ../DistUpgrade/DistUpgradeQuirks.py:1094 +#: ../DistUpgrade/DistUpgradeQuirks.py:1098 msgid "universe component not enabled" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1095 +#: ../DistUpgrade/DistUpgradeQuirks.py:1099 #, python-format msgid "" "You have the package %s installed which is a python2 package. python2 has " @@ -1383,39 +1383,50 @@ "universe component in /etc/apt/sources.list or remove %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1207 +#: ../DistUpgrade/DistUpgradeQuirks.py:1211 msgid "Checking for installed snaps" msgstr "Prüfe auf installierte Snaps" -#: ../DistUpgrade/DistUpgradeQuirks.py:1654 +#: ../DistUpgrade/DistUpgradeQuirks.py:1720 #, fuzzy msgid "Cannot upgrade this system" msgstr "Systemaktualisierung kann nicht durchgeführt werden" -#: ../DistUpgrade/DistUpgradeQuirks.py:1655 +#: ../DistUpgrade/DistUpgradeQuirks.py:1721 msgid "" "Due to a bug in grub, this system cannot be safely upgraded at this time.\n" "\n" "See https://launchpad.net/bugs/2039172." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1721 +#: ../DistUpgrade/DistUpgradeQuirks.py:1787 #, python-brace-format msgid "Updates for Ubuntu {from_release.version} will " msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1731 +#: ../DistUpgrade/DistUpgradeQuirks.py:1797 #, fuzzy msgid "Sorry, cannot upgrade this system to 24.04 LTS" msgstr "Systemaktualisierung kann nicht durchgeführt werden" -#: ../DistUpgrade/DistUpgradeQuirks.py:1734 +#: ../DistUpgrade/DistUpgradeQuirks.py:1800 msgid "" "The Raspberry Pi kernel for Ubuntu 24.04 LTS does not support the armhf " "architecture.\n" "\n" msgstr "" +#: ../DistUpgrade/DistUpgradeQuirks.py:1928 +#, fuzzy, python-brace-format +msgid "Sorry, cannot upgrade this system to {version}" +msgstr "Systemaktualisierung kann nicht durchgeführt werden" + +#: ../DistUpgrade/DistUpgradeQuirks.py:1931 +msgid "" +"Upgrades for desktop systems running TPM FDE are not currently supported. " +"Please see https://launchpad.net/bugs/2065229 for more information." +msgstr "" + #: ../DistUpgrade/DistUpgradeMain.py:62 msgid "" "Use frontend. Currently available: \n" diff -Nru ubuntu-release-upgrader-24.04.17/po/dv.po ubuntu-release-upgrader-24.04.18/po/dv.po --- ubuntu-release-upgrader-24.04.17/po/dv.po 2024-04-29 14:26:40.000000000 +0000 +++ ubuntu-release-upgrader-24.04.18/po/dv.po 2024-05-09 19:39:16.000000000 +0000 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2024-04-29 16:03+0200\n" +"POT-Creation-Date: 2024-05-09 15:39-0400\n" "PO-Revision-Date: 2013-05-22 11:00+0000\n" "Last-Translator: Huxain \n" "Language-Team: Divehi \n" @@ -897,11 +897,11 @@ msgid "Media Change" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:248 +#: ../DistUpgrade/DistUpgradeQuirks.py:252 msgid "Your graphics hardware may not be fully supported in Ubuntu 14.04." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:250 +#: ../DistUpgrade/DistUpgradeQuirks.py:254 msgid "" "Running the 'unity' desktop environment is not fully supported by your " "graphics hardware. You will maybe end up in a very slow environment after " @@ -911,11 +911,11 @@ "upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:274 +#: ../DistUpgrade/DistUpgradeQuirks.py:278 msgid "Your graphics hardware may not be fully supported in Ubuntu 12.04 LTS." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:276 +#: ../DistUpgrade/DistUpgradeQuirks.py:280 msgid "" "The support in Ubuntu 12.04 LTS for your Intel graphics hardware is limited " "and you may encounter problems after the upgrade. For more information see " @@ -923,13 +923,13 @@ "continue with the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:296 +#: ../DistUpgrade/DistUpgradeQuirks.py:300 msgid "" "Upgrading may reduce desktop effects, and performance in games and other " "graphically intensive programs." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:300 +#: ../DistUpgrade/DistUpgradeQuirks.py:304 msgid "" "This computer is currently using the AMD 'fglrx' graphics driver. No version " "of this driver is available that works with your hardware in Ubuntu 10.04 " @@ -938,12 +938,12 @@ "Do you want to continue?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:339 -#: ../DistUpgrade/DistUpgradeQuirks.py:408 +#: ../DistUpgrade/DistUpgradeQuirks.py:343 +#: ../DistUpgrade/DistUpgradeQuirks.py:412 msgid "Sorry, no more upgrades for this system" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:340 +#: ../DistUpgrade/DistUpgradeQuirks.py:344 #, python-format msgid "" "There will not be any further Ubuntu releases for this system's 'i386' " @@ -952,11 +952,11 @@ "Updates for Ubuntu %s will continue until %s." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:355 +#: ../DistUpgrade/DistUpgradeQuirks.py:359 msgid "No ARMv6 CPU" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:356 +#: ../DistUpgrade/DistUpgradeQuirks.py:360 msgid "" "Your system uses an ARM CPU that is older than the ARMv6 architecture. All " "packages in karmic were built with optimizations requiring ARMv6 as the " @@ -964,12 +964,12 @@ "Ubuntu release with this hardware." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:376 +#: ../DistUpgrade/DistUpgradeQuirks.py:380 msgid "" "Sorry, this storage driver is not supported in kernels for newer releases" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:378 +#: ../DistUpgrade/DistUpgradeQuirks.py:382 #, python-format msgid "" "There will not be any further Ubuntu releases that provide kernel support " @@ -979,7 +979,7 @@ "driver, remove the directory %s and try again." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:409 +#: ../DistUpgrade/DistUpgradeQuirks.py:413 #, python-format msgid "" "There will not be any further Ubuntu releases for this system's POWER8 " @@ -988,11 +988,11 @@ "Updates for Ubuntu %s will continue until %s." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:427 +#: ../DistUpgrade/DistUpgradeQuirks.py:431 msgid "No init available" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:428 +#: ../DistUpgrade/DistUpgradeQuirks.py:432 msgid "" "Your system appears to be a virtualised environment without an init daemon, " "e.g. Linux-VServer. Ubuntu 10.04 LTS cannot function within this type of " @@ -1002,11 +1002,11 @@ "Are you sure you want to continue?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:469 +#: ../DistUpgrade/DistUpgradeQuirks.py:473 msgid "The Robot Operating System (ROS) is installed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:470 +#: ../DistUpgrade/DistUpgradeQuirks.py:474 msgid "" "It appears that ROS is currently installed. Each ROS release is very strict " "about the versions of Ubuntu it supports, and Ubuntu upgrades can fail if " @@ -1023,11 +1023,11 @@ "Are you sure you want to continue?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:670 +#: ../DistUpgrade/DistUpgradeQuirks.py:674 msgid "Connection to the Snap Store failed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:671 +#: ../DistUpgrade/DistUpgradeQuirks.py:675 msgid "" "You have the package lxd installed but your system is unable to reach the " "Snap Store. lxd is now provided via a snap and the release upgrade will fail " @@ -1037,11 +1037,11 @@ "may want to configure a Snap Store proxy." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:686 +#: ../DistUpgrade/DistUpgradeQuirks.py:690 msgid "Connection to Snap Store failed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:687 +#: ../DistUpgrade/DistUpgradeQuirks.py:691 msgid "" "Your system does not have a connection to the Snap Store. For the best " "upgrade experience make sure that your system can connect to api.snapcraft." @@ -1049,11 +1049,11 @@ "Do you still want to continue with the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:696 +#: ../DistUpgrade/DistUpgradeQuirks.py:700 msgid "Outdated snapd package" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:697 +#: ../DistUpgrade/DistUpgradeQuirks.py:701 msgid "" "Your system does not have the latest version of snapd. Please update the " "version of snapd on your system to improve the upgrade experience.\n" @@ -1062,36 +1062,36 @@ #. now perform direct API calls to the store, requesting size #. information for each of the snaps needing installation -#: ../DistUpgrade/DistUpgradeQuirks.py:722 +#: ../DistUpgrade/DistUpgradeQuirks.py:726 msgid "Calculating snap size requirements" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:753 +#: ../DistUpgrade/DistUpgradeQuirks.py:757 msgid "Processing snap replacements" msgstr "" #. TODO: This status should be updated, but the time of #. this change to snap switch is post-translation freeze. -#: ../DistUpgrade/DistUpgradeQuirks.py:761 +#: ../DistUpgrade/DistUpgradeQuirks.py:765 #, python-format msgid "refreshing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:765 +#: ../DistUpgrade/DistUpgradeQuirks.py:769 #, python-format msgid "removing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:768 +#: ../DistUpgrade/DistUpgradeQuirks.py:772 #, python-format msgid "installing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:797 +#: ../DistUpgrade/DistUpgradeQuirks.py:801 msgid "PAE not enabled" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:798 +#: ../DistUpgrade/DistUpgradeQuirks.py:802 msgid "" "Your system uses a CPU that does not have PAE enabled. Ubuntu only supports " "non-PAE systems up to Ubuntu 12.04. To upgrade to a later version of Ubuntu, " @@ -1099,11 +1099,11 @@ "http://help.ubuntu.com/community/EnablingPAE" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1094 +#: ../DistUpgrade/DistUpgradeQuirks.py:1098 msgid "universe component not enabled" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1095 +#: ../DistUpgrade/DistUpgradeQuirks.py:1099 #, python-format msgid "" "You have the package %s installed which is a python2 package. python2 has " @@ -1115,39 +1115,50 @@ "universe component in /etc/apt/sources.list or remove %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1207 +#: ../DistUpgrade/DistUpgradeQuirks.py:1211 msgid "Checking for installed snaps" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1654 +#: ../DistUpgrade/DistUpgradeQuirks.py:1720 #, fuzzy msgid "Cannot upgrade this system" msgstr "އަޕްގްރޭޑް ނުކުރެވުނު" -#: ../DistUpgrade/DistUpgradeQuirks.py:1655 +#: ../DistUpgrade/DistUpgradeQuirks.py:1721 msgid "" "Due to a bug in grub, this system cannot be safely upgraded at this time.\n" "\n" "See https://launchpad.net/bugs/2039172." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1721 +#: ../DistUpgrade/DistUpgradeQuirks.py:1787 #, python-brace-format msgid "Updates for Ubuntu {from_release.version} will " msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1731 +#: ../DistUpgrade/DistUpgradeQuirks.py:1797 #, fuzzy msgid "Sorry, cannot upgrade this system to 24.04 LTS" msgstr "އަޕްގްރޭޑް ނުކުރެވުނު" -#: ../DistUpgrade/DistUpgradeQuirks.py:1734 +#: ../DistUpgrade/DistUpgradeQuirks.py:1800 msgid "" "The Raspberry Pi kernel for Ubuntu 24.04 LTS does not support the armhf " "architecture.\n" "\n" msgstr "" +#: ../DistUpgrade/DistUpgradeQuirks.py:1928 +#, fuzzy, python-brace-format +msgid "Sorry, cannot upgrade this system to {version}" +msgstr "އަޕްގްރޭޑް ނުކުރެވުނު" + +#: ../DistUpgrade/DistUpgradeQuirks.py:1931 +msgid "" +"Upgrades for desktop systems running TPM FDE are not currently supported. " +"Please see https://launchpad.net/bugs/2065229 for more information." +msgstr "" + #: ../DistUpgrade/DistUpgradeMain.py:62 msgid "" "Use frontend. Currently available: \n" diff -Nru ubuntu-release-upgrader-24.04.17/po/el.po ubuntu-release-upgrader-24.04.18/po/el.po --- ubuntu-release-upgrader-24.04.17/po/el.po 2024-04-29 14:26:40.000000000 +0000 +++ ubuntu-release-upgrader-24.04.18/po/el.po 2024-05-09 19:39:16.000000000 +0000 @@ -9,7 +9,7 @@ msgstr "" "Project-Id-Version: el\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2024-04-29 16:03+0200\n" +"POT-Creation-Date: 2024-05-09 15:39-0400\n" "PO-Revision-Date: 2019-06-18 17:54+0000\n" "Last-Translator: Steve Langasek \n" "Language-Team: Greek \n" @@ -1067,13 +1067,13 @@ msgid "Media Change" msgstr "Αλλαγή μέσου" -#: ../DistUpgrade/DistUpgradeQuirks.py:248 +#: ../DistUpgrade/DistUpgradeQuirks.py:252 msgid "Your graphics hardware may not be fully supported in Ubuntu 14.04." msgstr "" "Το υλικό της κάρτας γραφικών ίσως να μην υποστηρίζεται πλήρως στο Ubuntu " "14.04." -#: ../DistUpgrade/DistUpgradeQuirks.py:250 +#: ../DistUpgrade/DistUpgradeQuirks.py:254 msgid "" "Running the 'unity' desktop environment is not fully supported by your " "graphics hardware. You will maybe end up in a very slow environment after " @@ -1088,12 +1088,12 @@ "το παρόν. Για περισσότερες πληροφορίες δείτε https://wiki.ubuntu.com/X/Bugs/" "UpdateManagerWarningForUnity3D Θέλετε ακόμα να συνεχίσετε με την αναβάθμιση;" -#: ../DistUpgrade/DistUpgradeQuirks.py:274 +#: ../DistUpgrade/DistUpgradeQuirks.py:278 msgid "Your graphics hardware may not be fully supported in Ubuntu 12.04 LTS." msgstr "" "Η κάρτα γραφικών σας ίσως να μην υποστηρίζεται πλήρως στο Ubuntu 12.04 LTS." -#: ../DistUpgrade/DistUpgradeQuirks.py:276 +#: ../DistUpgrade/DistUpgradeQuirks.py:280 msgid "" "The support in Ubuntu 12.04 LTS for your Intel graphics hardware is limited " "and you may encounter problems after the upgrade. For more information see " @@ -1105,7 +1105,7 @@ "περισσότερες πληροφορίες δείτε https://wiki.ubuntu.com/X/Bugs/" "UpdateManagerWarningForI8xx Θέλετε να συνεχίσετε την αναβάθμιση;" -#: ../DistUpgrade/DistUpgradeQuirks.py:296 +#: ../DistUpgrade/DistUpgradeQuirks.py:300 msgid "" "Upgrading may reduce desktop effects, and performance in games and other " "graphically intensive programs." @@ -1113,7 +1113,7 @@ "Η αναβάθμιση μπορεί να μειώσει την απόδοση των εφέ, των παιχνιδιών και άλλων " "απαιτητικών προγραμμάτων." -#: ../DistUpgrade/DistUpgradeQuirks.py:300 +#: ../DistUpgrade/DistUpgradeQuirks.py:304 msgid "" "This computer is currently using the AMD 'fglrx' graphics driver. No version " "of this driver is available that works with your hardware in Ubuntu 10.04 " @@ -1127,12 +1127,12 @@ "\n" "Θέλετε να συνεχίσετε;" -#: ../DistUpgrade/DistUpgradeQuirks.py:339 -#: ../DistUpgrade/DistUpgradeQuirks.py:408 +#: ../DistUpgrade/DistUpgradeQuirks.py:343 +#: ../DistUpgrade/DistUpgradeQuirks.py:412 msgid "Sorry, no more upgrades for this system" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:340 +#: ../DistUpgrade/DistUpgradeQuirks.py:344 #, python-format msgid "" "There will not be any further Ubuntu releases for this system's 'i386' " @@ -1141,11 +1141,11 @@ "Updates for Ubuntu %s will continue until %s." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:355 +#: ../DistUpgrade/DistUpgradeQuirks.py:359 msgid "No ARMv6 CPU" msgstr "Δεν υπάρχει ARMv6 CPU" -#: ../DistUpgrade/DistUpgradeQuirks.py:356 +#: ../DistUpgrade/DistUpgradeQuirks.py:360 msgid "" "Your system uses an ARM CPU that is older than the ARMv6 architecture. All " "packages in karmic were built with optimizations requiring ARMv6 as the " @@ -1157,12 +1157,12 @@ "απαιτούν τουλάχιστον την ARMv6 ως αρχιτεκτονική. Δεν είναι δυνατή η " "αναβάθμιση του συστήματός σας στη νέα διανομή Ubuntu με αυτό το υλικό." -#: ../DistUpgrade/DistUpgradeQuirks.py:376 +#: ../DistUpgrade/DistUpgradeQuirks.py:380 msgid "" "Sorry, this storage driver is not supported in kernels for newer releases" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:378 +#: ../DistUpgrade/DistUpgradeQuirks.py:382 #, python-format msgid "" "There will not be any further Ubuntu releases that provide kernel support " @@ -1172,7 +1172,7 @@ "driver, remove the directory %s and try again." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:409 +#: ../DistUpgrade/DistUpgradeQuirks.py:413 #, python-format msgid "" "There will not be any further Ubuntu releases for this system's POWER8 " @@ -1181,11 +1181,11 @@ "Updates for Ubuntu %s will continue until %s." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:427 +#: ../DistUpgrade/DistUpgradeQuirks.py:431 msgid "No init available" msgstr "Μη διαθέσιμη αρχικοποίηση" -#: ../DistUpgrade/DistUpgradeQuirks.py:428 +#: ../DistUpgrade/DistUpgradeQuirks.py:432 msgid "" "Your system appears to be a virtualised environment without an init daemon, " "e.g. Linux-VServer. Ubuntu 10.04 LTS cannot function within this type of " @@ -1201,11 +1201,11 @@ "\n" "Θέλετε σίγουρα να συνεχίσετε;" -#: ../DistUpgrade/DistUpgradeQuirks.py:469 +#: ../DistUpgrade/DistUpgradeQuirks.py:473 msgid "The Robot Operating System (ROS) is installed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:470 +#: ../DistUpgrade/DistUpgradeQuirks.py:474 msgid "" "It appears that ROS is currently installed. Each ROS release is very strict " "about the versions of Ubuntu it supports, and Ubuntu upgrades can fail if " @@ -1222,11 +1222,11 @@ "Are you sure you want to continue?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:670 +#: ../DistUpgrade/DistUpgradeQuirks.py:674 msgid "Connection to the Snap Store failed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:671 +#: ../DistUpgrade/DistUpgradeQuirks.py:675 msgid "" "You have the package lxd installed but your system is unable to reach the " "Snap Store. lxd is now provided via a snap and the release upgrade will fail " @@ -1236,11 +1236,11 @@ "may want to configure a Snap Store proxy." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:686 +#: ../DistUpgrade/DistUpgradeQuirks.py:690 msgid "Connection to Snap Store failed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:687 +#: ../DistUpgrade/DistUpgradeQuirks.py:691 msgid "" "Your system does not have a connection to the Snap Store. For the best " "upgrade experience make sure that your system can connect to api.snapcraft." @@ -1248,11 +1248,11 @@ "Do you still want to continue with the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:696 +#: ../DistUpgrade/DistUpgradeQuirks.py:700 msgid "Outdated snapd package" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:697 +#: ../DistUpgrade/DistUpgradeQuirks.py:701 msgid "" "Your system does not have the latest version of snapd. Please update the " "version of snapd on your system to improve the upgrade experience.\n" @@ -1261,36 +1261,36 @@ #. now perform direct API calls to the store, requesting size #. information for each of the snaps needing installation -#: ../DistUpgrade/DistUpgradeQuirks.py:722 +#: ../DistUpgrade/DistUpgradeQuirks.py:726 msgid "Calculating snap size requirements" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:753 +#: ../DistUpgrade/DistUpgradeQuirks.py:757 msgid "Processing snap replacements" msgstr "" #. TODO: This status should be updated, but the time of #. this change to snap switch is post-translation freeze. -#: ../DistUpgrade/DistUpgradeQuirks.py:761 +#: ../DistUpgrade/DistUpgradeQuirks.py:765 #, python-format msgid "refreshing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:765 +#: ../DistUpgrade/DistUpgradeQuirks.py:769 #, python-format msgid "removing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:768 +#: ../DistUpgrade/DistUpgradeQuirks.py:772 #, python-format msgid "installing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:797 +#: ../DistUpgrade/DistUpgradeQuirks.py:801 msgid "PAE not enabled" msgstr "Η επέκταση PAE δεν είναι ενεργή" -#: ../DistUpgrade/DistUpgradeQuirks.py:798 +#: ../DistUpgrade/DistUpgradeQuirks.py:802 msgid "" "Your system uses a CPU that does not have PAE enabled. Ubuntu only supports " "non-PAE systems up to Ubuntu 12.04. To upgrade to a later version of Ubuntu, " @@ -1303,11 +1303,11 @@ "την επέκταση PAE (εάν αυτό είναι δυνατόν). Δείτε: \n" "http://help.ubuntu.com/community/EnablingPAE" -#: ../DistUpgrade/DistUpgradeQuirks.py:1094 +#: ../DistUpgrade/DistUpgradeQuirks.py:1098 msgid "universe component not enabled" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1095 +#: ../DistUpgrade/DistUpgradeQuirks.py:1099 #, python-format msgid "" "You have the package %s installed which is a python2 package. python2 has " @@ -1319,39 +1319,50 @@ "universe component in /etc/apt/sources.list or remove %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1207 +#: ../DistUpgrade/DistUpgradeQuirks.py:1211 msgid "Checking for installed snaps" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1654 +#: ../DistUpgrade/DistUpgradeQuirks.py:1720 #, fuzzy msgid "Cannot upgrade this system" msgstr "Δεν είναι δυνατή η αναβάθμιση" -#: ../DistUpgrade/DistUpgradeQuirks.py:1655 +#: ../DistUpgrade/DistUpgradeQuirks.py:1721 msgid "" "Due to a bug in grub, this system cannot be safely upgraded at this time.\n" "\n" "See https://launchpad.net/bugs/2039172." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1721 +#: ../DistUpgrade/DistUpgradeQuirks.py:1787 #, python-brace-format msgid "Updates for Ubuntu {from_release.version} will " msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1731 +#: ../DistUpgrade/DistUpgradeQuirks.py:1797 #, fuzzy msgid "Sorry, cannot upgrade this system to 24.04 LTS" msgstr "Δεν είναι δυνατή η αναβάθμιση" -#: ../DistUpgrade/DistUpgradeQuirks.py:1734 +#: ../DistUpgrade/DistUpgradeQuirks.py:1800 msgid "" "The Raspberry Pi kernel for Ubuntu 24.04 LTS does not support the armhf " "architecture.\n" "\n" msgstr "" +#: ../DistUpgrade/DistUpgradeQuirks.py:1928 +#, fuzzy, python-brace-format +msgid "Sorry, cannot upgrade this system to {version}" +msgstr "Δεν είναι δυνατή η αναβάθμιση" + +#: ../DistUpgrade/DistUpgradeQuirks.py:1931 +msgid "" +"Upgrades for desktop systems running TPM FDE are not currently supported. " +"Please see https://launchpad.net/bugs/2065229 for more information." +msgstr "" + #: ../DistUpgrade/DistUpgradeMain.py:62 msgid "" "Use frontend. Currently available: \n" diff -Nru ubuntu-release-upgrader-24.04.17/po/en_AU.po ubuntu-release-upgrader-24.04.18/po/en_AU.po --- ubuntu-release-upgrader-24.04.17/po/en_AU.po 2024-04-29 14:26:40.000000000 +0000 +++ ubuntu-release-upgrader-24.04.18/po/en_AU.po 2024-05-09 19:39:16.000000000 +0000 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2024-04-29 16:03+0200\n" +"POT-Creation-Date: 2024-05-09 15:39-0400\n" "PO-Revision-Date: 2019-06-18 17:55+0000\n" "Last-Translator: Jared Norris \n" "Language-Team: English (Australia) \n" @@ -1065,11 +1065,11 @@ msgid "Media Change" msgstr "Media Change" -#: ../DistUpgrade/DistUpgradeQuirks.py:248 +#: ../DistUpgrade/DistUpgradeQuirks.py:252 msgid "Your graphics hardware may not be fully supported in Ubuntu 14.04." msgstr "Your graphics hardware may not be fully supported in Ubuntu 14.04." -#: ../DistUpgrade/DistUpgradeQuirks.py:250 +#: ../DistUpgrade/DistUpgradeQuirks.py:254 msgid "" "Running the 'unity' desktop environment is not fully supported by your " "graphics hardware. You will maybe end up in a very slow environment after " @@ -1085,11 +1085,11 @@ "UpdateManagerWarningForUnity3D Do you still want to continue with the " "upgrade?" -#: ../DistUpgrade/DistUpgradeQuirks.py:274 +#: ../DistUpgrade/DistUpgradeQuirks.py:278 msgid "Your graphics hardware may not be fully supported in Ubuntu 12.04 LTS." msgstr "Your graphics hardware may not be fully supported in Ubuntu 12.04 LTS." -#: ../DistUpgrade/DistUpgradeQuirks.py:276 +#: ../DistUpgrade/DistUpgradeQuirks.py:280 msgid "" "The support in Ubuntu 12.04 LTS for your Intel graphics hardware is limited " "and you may encounter problems after the upgrade. For more information see " @@ -1101,7 +1101,7 @@ "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForI8xx Do you want to " "continue with the upgrade?" -#: ../DistUpgrade/DistUpgradeQuirks.py:296 +#: ../DistUpgrade/DistUpgradeQuirks.py:300 msgid "" "Upgrading may reduce desktop effects, and performance in games and other " "graphically intensive programs." @@ -1109,7 +1109,7 @@ "Upgrading may reduce desktop effects, and performance in games and other " "graphically intensive programs." -#: ../DistUpgrade/DistUpgradeQuirks.py:300 +#: ../DistUpgrade/DistUpgradeQuirks.py:304 msgid "" "This computer is currently using the AMD 'fglrx' graphics driver. No version " "of this driver is available that works with your hardware in Ubuntu 10.04 " @@ -1121,12 +1121,12 @@ "of this driver is available that works with your hardware in Ubuntu 10.04 " "LTS." -#: ../DistUpgrade/DistUpgradeQuirks.py:339 -#: ../DistUpgrade/DistUpgradeQuirks.py:408 +#: ../DistUpgrade/DistUpgradeQuirks.py:343 +#: ../DistUpgrade/DistUpgradeQuirks.py:412 msgid "Sorry, no more upgrades for this system" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:340 +#: ../DistUpgrade/DistUpgradeQuirks.py:344 #, python-format msgid "" "There will not be any further Ubuntu releases for this system's 'i386' " @@ -1135,11 +1135,11 @@ "Updates for Ubuntu %s will continue until %s." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:355 +#: ../DistUpgrade/DistUpgradeQuirks.py:359 msgid "No ARMv6 CPU" msgstr "No ARMv6 CPU" -#: ../DistUpgrade/DistUpgradeQuirks.py:356 +#: ../DistUpgrade/DistUpgradeQuirks.py:360 msgid "" "Your system uses an ARM CPU that is older than the ARMv6 architecture. All " "packages in karmic were built with optimizations requiring ARMv6 as the " @@ -1151,12 +1151,12 @@ "minimal architecture. It is not possible to upgrade your system to a new " "Ubuntu release with this hardware." -#: ../DistUpgrade/DistUpgradeQuirks.py:376 +#: ../DistUpgrade/DistUpgradeQuirks.py:380 msgid "" "Sorry, this storage driver is not supported in kernels for newer releases" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:378 +#: ../DistUpgrade/DistUpgradeQuirks.py:382 #, python-format msgid "" "There will not be any further Ubuntu releases that provide kernel support " @@ -1166,7 +1166,7 @@ "driver, remove the directory %s and try again." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:409 +#: ../DistUpgrade/DistUpgradeQuirks.py:413 #, python-format msgid "" "There will not be any further Ubuntu releases for this system's POWER8 " @@ -1175,11 +1175,11 @@ "Updates for Ubuntu %s will continue until %s." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:427 +#: ../DistUpgrade/DistUpgradeQuirks.py:431 msgid "No init available" msgstr "No init available" -#: ../DistUpgrade/DistUpgradeQuirks.py:428 +#: ../DistUpgrade/DistUpgradeQuirks.py:432 msgid "" "Your system appears to be a virtualised environment without an init daemon, " "e.g. Linux-VServer. Ubuntu 10.04 LTS cannot function within this type of " @@ -1196,11 +1196,11 @@ "\n" "Are you sure you wish to continue?" -#: ../DistUpgrade/DistUpgradeQuirks.py:469 +#: ../DistUpgrade/DistUpgradeQuirks.py:473 msgid "The Robot Operating System (ROS) is installed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:470 +#: ../DistUpgrade/DistUpgradeQuirks.py:474 msgid "" "It appears that ROS is currently installed. Each ROS release is very strict " "about the versions of Ubuntu it supports, and Ubuntu upgrades can fail if " @@ -1217,12 +1217,12 @@ "Are you sure you want to continue?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:670 +#: ../DistUpgrade/DistUpgradeQuirks.py:674 #, fuzzy msgid "Connection to the Snap Store failed" msgstr "Connection to Snap Store failed" -#: ../DistUpgrade/DistUpgradeQuirks.py:671 +#: ../DistUpgrade/DistUpgradeQuirks.py:675 msgid "" "You have the package lxd installed but your system is unable to reach the " "Snap Store. lxd is now provided via a snap and the release upgrade will fail " @@ -1232,11 +1232,11 @@ "may want to configure a Snap Store proxy." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:686 +#: ../DistUpgrade/DistUpgradeQuirks.py:690 msgid "Connection to Snap Store failed" msgstr "Connection to Snap Store failed" -#: ../DistUpgrade/DistUpgradeQuirks.py:687 +#: ../DistUpgrade/DistUpgradeQuirks.py:691 msgid "" "Your system does not have a connection to the Snap Store. For the best " "upgrade experience make sure that your system can connect to api.snapcraft." @@ -1248,11 +1248,11 @@ "io.\n" "Do you still want to continue with the upgrade?" -#: ../DistUpgrade/DistUpgradeQuirks.py:696 +#: ../DistUpgrade/DistUpgradeQuirks.py:700 msgid "Outdated snapd package" msgstr "Outdated snapd package" -#: ../DistUpgrade/DistUpgradeQuirks.py:697 +#: ../DistUpgrade/DistUpgradeQuirks.py:701 msgid "" "Your system does not have the latest version of snapd. Please update the " "version of snapd on your system to improve the upgrade experience.\n" @@ -1264,36 +1264,36 @@ #. now perform direct API calls to the store, requesting size #. information for each of the snaps needing installation -#: ../DistUpgrade/DistUpgradeQuirks.py:722 +#: ../DistUpgrade/DistUpgradeQuirks.py:726 msgid "Calculating snap size requirements" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:753 +#: ../DistUpgrade/DistUpgradeQuirks.py:757 msgid "Processing snap replacements" msgstr "" #. TODO: This status should be updated, but the time of #. this change to snap switch is post-translation freeze. -#: ../DistUpgrade/DistUpgradeQuirks.py:761 +#: ../DistUpgrade/DistUpgradeQuirks.py:765 #, python-format msgid "refreshing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:765 +#: ../DistUpgrade/DistUpgradeQuirks.py:769 #, python-format msgid "removing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:768 +#: ../DistUpgrade/DistUpgradeQuirks.py:772 #, python-format msgid "installing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:797 +#: ../DistUpgrade/DistUpgradeQuirks.py:801 msgid "PAE not enabled" msgstr "PAE not enabled" -#: ../DistUpgrade/DistUpgradeQuirks.py:798 +#: ../DistUpgrade/DistUpgradeQuirks.py:802 msgid "" "Your system uses a CPU that does not have PAE enabled. Ubuntu only supports " "non-PAE systems up to Ubuntu 12.04. To upgrade to a later version of Ubuntu, " @@ -1305,11 +1305,11 @@ "you must enable PAE (if this is possible) see:\n" "http://help.ubuntu.com/community/EnablingPAE" -#: ../DistUpgrade/DistUpgradeQuirks.py:1094 +#: ../DistUpgrade/DistUpgradeQuirks.py:1098 msgid "universe component not enabled" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1095 +#: ../DistUpgrade/DistUpgradeQuirks.py:1099 #, python-format msgid "" "You have the package %s installed which is a python2 package. python2 has " @@ -1321,39 +1321,50 @@ "universe component in /etc/apt/sources.list or remove %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1207 +#: ../DistUpgrade/DistUpgradeQuirks.py:1211 msgid "Checking for installed snaps" msgstr "Checking for installed snaps" -#: ../DistUpgrade/DistUpgradeQuirks.py:1654 +#: ../DistUpgrade/DistUpgradeQuirks.py:1720 #, fuzzy msgid "Cannot upgrade this system" msgstr "Cannot upgrade" -#: ../DistUpgrade/DistUpgradeQuirks.py:1655 +#: ../DistUpgrade/DistUpgradeQuirks.py:1721 msgid "" "Due to a bug in grub, this system cannot be safely upgraded at this time.\n" "\n" "See https://launchpad.net/bugs/2039172." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1721 +#: ../DistUpgrade/DistUpgradeQuirks.py:1787 #, python-brace-format msgid "Updates for Ubuntu {from_release.version} will " msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1731 +#: ../DistUpgrade/DistUpgradeQuirks.py:1797 #, fuzzy msgid "Sorry, cannot upgrade this system to 24.04 LTS" msgstr "Cannot upgrade" -#: ../DistUpgrade/DistUpgradeQuirks.py:1734 +#: ../DistUpgrade/DistUpgradeQuirks.py:1800 msgid "" "The Raspberry Pi kernel for Ubuntu 24.04 LTS does not support the armhf " "architecture.\n" "\n" msgstr "" +#: ../DistUpgrade/DistUpgradeQuirks.py:1928 +#, fuzzy, python-brace-format +msgid "Sorry, cannot upgrade this system to {version}" +msgstr "Cannot upgrade" + +#: ../DistUpgrade/DistUpgradeQuirks.py:1931 +msgid "" +"Upgrades for desktop systems running TPM FDE are not currently supported. " +"Please see https://launchpad.net/bugs/2065229 for more information." +msgstr "" + #: ../DistUpgrade/DistUpgradeMain.py:62 msgid "" "Use frontend. Currently available: \n" diff -Nru ubuntu-release-upgrader-24.04.17/po/en_CA.po ubuntu-release-upgrader-24.04.18/po/en_CA.po --- ubuntu-release-upgrader-24.04.17/po/en_CA.po 2024-04-29 14:26:40.000000000 +0000 +++ ubuntu-release-upgrader-24.04.18/po/en_CA.po 2024-05-09 19:39:16.000000000 +0000 @@ -9,7 +9,7 @@ msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2024-04-29 16:03+0200\n" +"POT-Creation-Date: 2024-05-09 15:39-0400\n" "PO-Revision-Date: 2019-06-18 17:52+0000\n" "Last-Translator: Daniel LeBlanc \n" "Language-Team: Canadian English \n" @@ -1020,11 +1020,11 @@ msgid "Media Change" msgstr "Media Change" -#: ../DistUpgrade/DistUpgradeQuirks.py:248 +#: ../DistUpgrade/DistUpgradeQuirks.py:252 msgid "Your graphics hardware may not be fully supported in Ubuntu 14.04." msgstr "Your graphics hardware may not be fully supported in Ubuntu 14.04." -#: ../DistUpgrade/DistUpgradeQuirks.py:250 +#: ../DistUpgrade/DistUpgradeQuirks.py:254 msgid "" "Running the 'unity' desktop environment is not fully supported by your " "graphics hardware. You will maybe end up in a very slow environment after " @@ -1040,11 +1040,11 @@ "UpdateManagerWarningForUnity3D Do you still want to continue with the " "upgrade?" -#: ../DistUpgrade/DistUpgradeQuirks.py:274 +#: ../DistUpgrade/DistUpgradeQuirks.py:278 msgid "Your graphics hardware may not be fully supported in Ubuntu 12.04 LTS." msgstr "Your graphics hardware may not be fully supported in Ubuntu 12.04 LTS." -#: ../DistUpgrade/DistUpgradeQuirks.py:276 +#: ../DistUpgrade/DistUpgradeQuirks.py:280 msgid "" "The support in Ubuntu 12.04 LTS for your Intel graphics hardware is limited " "and you may encounter problems after the upgrade. For more information see " @@ -1056,7 +1056,7 @@ "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForI8xx Do you want to " "continue with the upgrade?" -#: ../DistUpgrade/DistUpgradeQuirks.py:296 +#: ../DistUpgrade/DistUpgradeQuirks.py:300 msgid "" "Upgrading may reduce desktop effects, and performance in games and other " "graphically intensive programs." @@ -1064,7 +1064,7 @@ "Upgrading may reduce desktop effects and performance in games and other " "graphically-intensive programs." -#: ../DistUpgrade/DistUpgradeQuirks.py:300 +#: ../DistUpgrade/DistUpgradeQuirks.py:304 msgid "" "This computer is currently using the AMD 'fglrx' graphics driver. No version " "of this driver is available that works with your hardware in Ubuntu 10.04 " @@ -1078,12 +1078,12 @@ "\n" "Do you want to continue?" -#: ../DistUpgrade/DistUpgradeQuirks.py:339 -#: ../DistUpgrade/DistUpgradeQuirks.py:408 +#: ../DistUpgrade/DistUpgradeQuirks.py:343 +#: ../DistUpgrade/DistUpgradeQuirks.py:412 msgid "Sorry, no more upgrades for this system" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:340 +#: ../DistUpgrade/DistUpgradeQuirks.py:344 #, python-format msgid "" "There will not be any further Ubuntu releases for this system's 'i386' " @@ -1092,11 +1092,11 @@ "Updates for Ubuntu %s will continue until %s." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:355 +#: ../DistUpgrade/DistUpgradeQuirks.py:359 msgid "No ARMv6 CPU" msgstr "No ARMv6 CPU" -#: ../DistUpgrade/DistUpgradeQuirks.py:356 +#: ../DistUpgrade/DistUpgradeQuirks.py:360 msgid "" "Your system uses an ARM CPU that is older than the ARMv6 architecture. All " "packages in karmic were built with optimizations requiring ARMv6 as the " @@ -1108,12 +1108,12 @@ "minimal architecture. It is not possible to upgrade your system to a new " "Ubuntu release with this hardware." -#: ../DistUpgrade/DistUpgradeQuirks.py:376 +#: ../DistUpgrade/DistUpgradeQuirks.py:380 msgid "" "Sorry, this storage driver is not supported in kernels for newer releases" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:378 +#: ../DistUpgrade/DistUpgradeQuirks.py:382 #, python-format msgid "" "There will not be any further Ubuntu releases that provide kernel support " @@ -1123,7 +1123,7 @@ "driver, remove the directory %s and try again." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:409 +#: ../DistUpgrade/DistUpgradeQuirks.py:413 #, python-format msgid "" "There will not be any further Ubuntu releases for this system's POWER8 " @@ -1132,11 +1132,11 @@ "Updates for Ubuntu %s will continue until %s." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:427 +#: ../DistUpgrade/DistUpgradeQuirks.py:431 msgid "No init available" msgstr "No init available" -#: ../DistUpgrade/DistUpgradeQuirks.py:428 +#: ../DistUpgrade/DistUpgradeQuirks.py:432 msgid "" "Your system appears to be a virtualised environment without an init daemon, " "e.g. Linux-VServer. Ubuntu 10.04 LTS cannot function within this type of " @@ -1152,11 +1152,11 @@ "\n" "Are you sure you want to continue?" -#: ../DistUpgrade/DistUpgradeQuirks.py:469 +#: ../DistUpgrade/DistUpgradeQuirks.py:473 msgid "The Robot Operating System (ROS) is installed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:470 +#: ../DistUpgrade/DistUpgradeQuirks.py:474 msgid "" "It appears that ROS is currently installed. Each ROS release is very strict " "about the versions of Ubuntu it supports, and Ubuntu upgrades can fail if " @@ -1173,11 +1173,11 @@ "Are you sure you want to continue?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:670 +#: ../DistUpgrade/DistUpgradeQuirks.py:674 msgid "Connection to the Snap Store failed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:671 +#: ../DistUpgrade/DistUpgradeQuirks.py:675 msgid "" "You have the package lxd installed but your system is unable to reach the " "Snap Store. lxd is now provided via a snap and the release upgrade will fail " @@ -1187,11 +1187,11 @@ "may want to configure a Snap Store proxy." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:686 +#: ../DistUpgrade/DistUpgradeQuirks.py:690 msgid "Connection to Snap Store failed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:687 +#: ../DistUpgrade/DistUpgradeQuirks.py:691 msgid "" "Your system does not have a connection to the Snap Store. For the best " "upgrade experience make sure that your system can connect to api.snapcraft." @@ -1199,11 +1199,11 @@ "Do you still want to continue with the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:696 +#: ../DistUpgrade/DistUpgradeQuirks.py:700 msgid "Outdated snapd package" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:697 +#: ../DistUpgrade/DistUpgradeQuirks.py:701 msgid "" "Your system does not have the latest version of snapd. Please update the " "version of snapd on your system to improve the upgrade experience.\n" @@ -1212,36 +1212,36 @@ #. now perform direct API calls to the store, requesting size #. information for each of the snaps needing installation -#: ../DistUpgrade/DistUpgradeQuirks.py:722 +#: ../DistUpgrade/DistUpgradeQuirks.py:726 msgid "Calculating snap size requirements" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:753 +#: ../DistUpgrade/DistUpgradeQuirks.py:757 msgid "Processing snap replacements" msgstr "" #. TODO: This status should be updated, but the time of #. this change to snap switch is post-translation freeze. -#: ../DistUpgrade/DistUpgradeQuirks.py:761 +#: ../DistUpgrade/DistUpgradeQuirks.py:765 #, python-format msgid "refreshing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:765 +#: ../DistUpgrade/DistUpgradeQuirks.py:769 #, python-format msgid "removing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:768 +#: ../DistUpgrade/DistUpgradeQuirks.py:772 #, python-format msgid "installing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:797 +#: ../DistUpgrade/DistUpgradeQuirks.py:801 msgid "PAE not enabled" msgstr "PAE not enabled" -#: ../DistUpgrade/DistUpgradeQuirks.py:798 +#: ../DistUpgrade/DistUpgradeQuirks.py:802 msgid "" "Your system uses a CPU that does not have PAE enabled. Ubuntu only supports " "non-PAE systems up to Ubuntu 12.04. To upgrade to a later version of Ubuntu, " @@ -1253,11 +1253,11 @@ "you must enable PAE (if this is possible) see:\n" "http://help.ubuntu.com/community/EnablingPAE" -#: ../DistUpgrade/DistUpgradeQuirks.py:1094 +#: ../DistUpgrade/DistUpgradeQuirks.py:1098 msgid "universe component not enabled" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1095 +#: ../DistUpgrade/DistUpgradeQuirks.py:1099 #, python-format msgid "" "You have the package %s installed which is a python2 package. python2 has " @@ -1269,39 +1269,50 @@ "universe component in /etc/apt/sources.list or remove %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1207 +#: ../DistUpgrade/DistUpgradeQuirks.py:1211 msgid "Checking for installed snaps" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1654 +#: ../DistUpgrade/DistUpgradeQuirks.py:1720 #, fuzzy msgid "Cannot upgrade this system" msgstr "Cannot upgrade" -#: ../DistUpgrade/DistUpgradeQuirks.py:1655 +#: ../DistUpgrade/DistUpgradeQuirks.py:1721 msgid "" "Due to a bug in grub, this system cannot be safely upgraded at this time.\n" "\n" "See https://launchpad.net/bugs/2039172." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1721 +#: ../DistUpgrade/DistUpgradeQuirks.py:1787 #, python-brace-format msgid "Updates for Ubuntu {from_release.version} will " msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1731 +#: ../DistUpgrade/DistUpgradeQuirks.py:1797 #, fuzzy msgid "Sorry, cannot upgrade this system to 24.04 LTS" msgstr "Cannot upgrade" -#: ../DistUpgrade/DistUpgradeQuirks.py:1734 +#: ../DistUpgrade/DistUpgradeQuirks.py:1800 msgid "" "The Raspberry Pi kernel for Ubuntu 24.04 LTS does not support the armhf " "architecture.\n" "\n" msgstr "" +#: ../DistUpgrade/DistUpgradeQuirks.py:1928 +#, fuzzy, python-brace-format +msgid "Sorry, cannot upgrade this system to {version}" +msgstr "Cannot upgrade" + +#: ../DistUpgrade/DistUpgradeQuirks.py:1931 +msgid "" +"Upgrades for desktop systems running TPM FDE are not currently supported. " +"Please see https://launchpad.net/bugs/2065229 for more information." +msgstr "" + #: ../DistUpgrade/DistUpgradeMain.py:62 msgid "" "Use frontend. Currently available: \n" diff -Nru ubuntu-release-upgrader-24.04.17/po/en_GB.po ubuntu-release-upgrader-24.04.18/po/en_GB.po --- ubuntu-release-upgrader-24.04.17/po/en_GB.po 2024-04-29 14:26:40.000000000 +0000 +++ ubuntu-release-upgrader-24.04.18/po/en_GB.po 2024-05-09 19:39:17.000000000 +0000 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2024-04-29 16:03+0200\n" +"POT-Creation-Date: 2024-05-09 15:39-0400\n" "PO-Revision-Date: 2019-06-18 17:53+0000\n" "Last-Translator: Brian Murray \n" "Language-Team: \n" @@ -1065,11 +1065,11 @@ msgid "Media Change" msgstr "Media Change" -#: ../DistUpgrade/DistUpgradeQuirks.py:248 +#: ../DistUpgrade/DistUpgradeQuirks.py:252 msgid "Your graphics hardware may not be fully supported in Ubuntu 14.04." msgstr "Your graphics hardware may not be fully supported in Ubuntu 14.04." -#: ../DistUpgrade/DistUpgradeQuirks.py:250 +#: ../DistUpgrade/DistUpgradeQuirks.py:254 msgid "" "Running the 'unity' desktop environment is not fully supported by your " "graphics hardware. You will maybe end up in a very slow environment after " @@ -1085,11 +1085,11 @@ "UpdateManagerWarningForUnity3D Do you still want to continue with the " "upgrade?" -#: ../DistUpgrade/DistUpgradeQuirks.py:274 +#: ../DistUpgrade/DistUpgradeQuirks.py:278 msgid "Your graphics hardware may not be fully supported in Ubuntu 12.04 LTS." msgstr "Your graphics hardware may not be fully supported in Ubuntu 12.04 LTS." -#: ../DistUpgrade/DistUpgradeQuirks.py:276 +#: ../DistUpgrade/DistUpgradeQuirks.py:280 msgid "" "The support in Ubuntu 12.04 LTS for your Intel graphics hardware is limited " "and you may encounter problems after the upgrade. For more information see " @@ -1101,7 +1101,7 @@ "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForI8xx Do you want to " "continue with the upgrade?" -#: ../DistUpgrade/DistUpgradeQuirks.py:296 +#: ../DistUpgrade/DistUpgradeQuirks.py:300 msgid "" "Upgrading may reduce desktop effects, and performance in games and other " "graphically intensive programs." @@ -1109,7 +1109,7 @@ "Upgrading may reduce desktop effects, and performance in games and other " "graphically intensive programs." -#: ../DistUpgrade/DistUpgradeQuirks.py:300 +#: ../DistUpgrade/DistUpgradeQuirks.py:304 msgid "" "This computer is currently using the AMD 'fglrx' graphics driver. No version " "of this driver is available that works with your hardware in Ubuntu 10.04 " @@ -1123,12 +1123,12 @@ "\n" "Do you wish to continue?" -#: ../DistUpgrade/DistUpgradeQuirks.py:339 -#: ../DistUpgrade/DistUpgradeQuirks.py:408 +#: ../DistUpgrade/DistUpgradeQuirks.py:343 +#: ../DistUpgrade/DistUpgradeQuirks.py:412 msgid "Sorry, no more upgrades for this system" msgstr "Sorry, no more upgrades for this system" -#: ../DistUpgrade/DistUpgradeQuirks.py:340 +#: ../DistUpgrade/DistUpgradeQuirks.py:344 #, python-format msgid "" "There will not be any further Ubuntu releases for this system's 'i386' " @@ -1141,11 +1141,11 @@ "\n" "Updates for Ubuntu %s will continue until %s." -#: ../DistUpgrade/DistUpgradeQuirks.py:355 +#: ../DistUpgrade/DistUpgradeQuirks.py:359 msgid "No ARMv6 CPU" msgstr "No ARMv6 CPU" -#: ../DistUpgrade/DistUpgradeQuirks.py:356 +#: ../DistUpgrade/DistUpgradeQuirks.py:360 msgid "" "Your system uses an ARM CPU that is older than the ARMv6 architecture. All " "packages in karmic were built with optimizations requiring ARMv6 as the " @@ -1157,12 +1157,12 @@ "minimal architecture. It is not possible to upgrade your system to a new " "Ubuntu release with this hardware." -#: ../DistUpgrade/DistUpgradeQuirks.py:376 +#: ../DistUpgrade/DistUpgradeQuirks.py:380 msgid "" "Sorry, this storage driver is not supported in kernels for newer releases" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:378 +#: ../DistUpgrade/DistUpgradeQuirks.py:382 #, python-format msgid "" "There will not be any further Ubuntu releases that provide kernel support " @@ -1172,7 +1172,7 @@ "driver, remove the directory %s and try again." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:409 +#: ../DistUpgrade/DistUpgradeQuirks.py:413 #, fuzzy, python-format msgid "" "There will not be any further Ubuntu releases for this system's POWER8 " @@ -1185,11 +1185,11 @@ "\n" "Updates for Ubuntu %s will continue until %s." -#: ../DistUpgrade/DistUpgradeQuirks.py:427 +#: ../DistUpgrade/DistUpgradeQuirks.py:431 msgid "No init available" msgstr "No init available" -#: ../DistUpgrade/DistUpgradeQuirks.py:428 +#: ../DistUpgrade/DistUpgradeQuirks.py:432 msgid "" "Your system appears to be a virtualised environment without an init daemon, " "e.g. Linux-VServer. Ubuntu 10.04 LTS cannot function within this type of " @@ -1205,11 +1205,11 @@ "\n" "Are you sure you want to continue?" -#: ../DistUpgrade/DistUpgradeQuirks.py:469 +#: ../DistUpgrade/DistUpgradeQuirks.py:473 msgid "The Robot Operating System (ROS) is installed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:470 +#: ../DistUpgrade/DistUpgradeQuirks.py:474 msgid "" "It appears that ROS is currently installed. Each ROS release is very strict " "about the versions of Ubuntu it supports, and Ubuntu upgrades can fail if " @@ -1226,12 +1226,12 @@ "Are you sure you want to continue?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:670 +#: ../DistUpgrade/DistUpgradeQuirks.py:674 #, fuzzy msgid "Connection to the Snap Store failed" msgstr "Connection to Snap Store failed" -#: ../DistUpgrade/DistUpgradeQuirks.py:671 +#: ../DistUpgrade/DistUpgradeQuirks.py:675 msgid "" "You have the package lxd installed but your system is unable to reach the " "Snap Store. lxd is now provided via a snap and the release upgrade will fail " @@ -1241,11 +1241,11 @@ "may want to configure a Snap Store proxy." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:686 +#: ../DistUpgrade/DistUpgradeQuirks.py:690 msgid "Connection to Snap Store failed" msgstr "Connection to Snap Store failed" -#: ../DistUpgrade/DistUpgradeQuirks.py:687 +#: ../DistUpgrade/DistUpgradeQuirks.py:691 msgid "" "Your system does not have a connection to the Snap Store. For the best " "upgrade experience make sure that your system can connect to api.snapcraft." @@ -1257,11 +1257,11 @@ "io.\n" "Do you still want to continue with the upgrade?" -#: ../DistUpgrade/DistUpgradeQuirks.py:696 +#: ../DistUpgrade/DistUpgradeQuirks.py:700 msgid "Outdated snapd package" msgstr "Outdated snapd package" -#: ../DistUpgrade/DistUpgradeQuirks.py:697 +#: ../DistUpgrade/DistUpgradeQuirks.py:701 msgid "" "Your system does not have the latest version of snapd. Please update the " "version of snapd on your system to improve the upgrade experience.\n" @@ -1273,36 +1273,36 @@ #. now perform direct API calls to the store, requesting size #. information for each of the snaps needing installation -#: ../DistUpgrade/DistUpgradeQuirks.py:722 +#: ../DistUpgrade/DistUpgradeQuirks.py:726 msgid "Calculating snap size requirements" msgstr "Calculating snap size requirements" -#: ../DistUpgrade/DistUpgradeQuirks.py:753 +#: ../DistUpgrade/DistUpgradeQuirks.py:757 msgid "Processing snap replacements" msgstr "Processing snap replacements" #. TODO: This status should be updated, but the time of #. this change to snap switch is post-translation freeze. -#: ../DistUpgrade/DistUpgradeQuirks.py:761 +#: ../DistUpgrade/DistUpgradeQuirks.py:765 #, python-format msgid "refreshing snap %s" msgstr "refreshing snap %s" -#: ../DistUpgrade/DistUpgradeQuirks.py:765 +#: ../DistUpgrade/DistUpgradeQuirks.py:769 #, fuzzy, python-format msgid "removing snap %s" msgstr "refreshing snap %s" -#: ../DistUpgrade/DistUpgradeQuirks.py:768 +#: ../DistUpgrade/DistUpgradeQuirks.py:772 #, python-format msgid "installing snap %s" msgstr "installing snap %s" -#: ../DistUpgrade/DistUpgradeQuirks.py:797 +#: ../DistUpgrade/DistUpgradeQuirks.py:801 msgid "PAE not enabled" msgstr "PAE not enabled" -#: ../DistUpgrade/DistUpgradeQuirks.py:798 +#: ../DistUpgrade/DistUpgradeQuirks.py:802 msgid "" "Your system uses a CPU that does not have PAE enabled. Ubuntu only supports " "non-PAE systems up to Ubuntu 12.04. To upgrade to a later version of Ubuntu, " @@ -1314,11 +1314,11 @@ "you must enable PAE (if this is possible) see:\n" "http://help.ubuntu.com/community/EnablingPAE" -#: ../DistUpgrade/DistUpgradeQuirks.py:1094 +#: ../DistUpgrade/DistUpgradeQuirks.py:1098 msgid "universe component not enabled" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1095 +#: ../DistUpgrade/DistUpgradeQuirks.py:1099 #, python-format msgid "" "You have the package %s installed which is a python2 package. python2 has " @@ -1330,39 +1330,50 @@ "universe component in /etc/apt/sources.list or remove %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1207 +#: ../DistUpgrade/DistUpgradeQuirks.py:1211 msgid "Checking for installed snaps" msgstr "Checking for installed snaps" -#: ../DistUpgrade/DistUpgradeQuirks.py:1654 +#: ../DistUpgrade/DistUpgradeQuirks.py:1720 #, fuzzy msgid "Cannot upgrade this system" msgstr "Cannot upgrade" -#: ../DistUpgrade/DistUpgradeQuirks.py:1655 +#: ../DistUpgrade/DistUpgradeQuirks.py:1721 msgid "" "Due to a bug in grub, this system cannot be safely upgraded at this time.\n" "\n" "See https://launchpad.net/bugs/2039172." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1721 +#: ../DistUpgrade/DistUpgradeQuirks.py:1787 #, python-brace-format msgid "Updates for Ubuntu {from_release.version} will " msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1731 +#: ../DistUpgrade/DistUpgradeQuirks.py:1797 #, fuzzy msgid "Sorry, cannot upgrade this system to 24.04 LTS" msgstr "Cannot upgrade" -#: ../DistUpgrade/DistUpgradeQuirks.py:1734 +#: ../DistUpgrade/DistUpgradeQuirks.py:1800 msgid "" "The Raspberry Pi kernel for Ubuntu 24.04 LTS does not support the armhf " "architecture.\n" "\n" msgstr "" +#: ../DistUpgrade/DistUpgradeQuirks.py:1928 +#, fuzzy, python-brace-format +msgid "Sorry, cannot upgrade this system to {version}" +msgstr "Cannot upgrade" + +#: ../DistUpgrade/DistUpgradeQuirks.py:1931 +msgid "" +"Upgrades for desktop systems running TPM FDE are not currently supported. " +"Please see https://launchpad.net/bugs/2065229 for more information." +msgstr "" + #: ../DistUpgrade/DistUpgradeMain.py:62 msgid "" "Use frontend. Currently available: \n" diff -Nru ubuntu-release-upgrader-24.04.17/po/eo.po ubuntu-release-upgrader-24.04.18/po/eo.po --- ubuntu-release-upgrader-24.04.17/po/eo.po 2024-04-29 14:26:40.000000000 +0000 +++ ubuntu-release-upgrader-24.04.18/po/eo.po 2024-05-09 19:39:17.000000000 +0000 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2024-04-29 16:03+0200\n" +"POT-Creation-Date: 2024-05-09 15:39-0400\n" "PO-Revision-Date: 2014-04-24 23:25+0000\n" "Last-Translator: Michael Moroni \n" "Language-Team: Esperanto \n" @@ -1017,11 +1017,11 @@ msgid "Media Change" msgstr "Ŝanĝo de Datumportilo" -#: ../DistUpgrade/DistUpgradeQuirks.py:248 +#: ../DistUpgrade/DistUpgradeQuirks.py:252 msgid "Your graphics hardware may not be fully supported in Ubuntu 14.04." msgstr "Eble via grafika aparataro ne estas tute subtenata en Ubuntu 14.04." -#: ../DistUpgrade/DistUpgradeQuirks.py:250 +#: ../DistUpgrade/DistUpgradeQuirks.py:254 msgid "" "Running the 'unity' desktop environment is not fully supported by your " "graphics hardware. You will maybe end up in a very slow environment after " @@ -1036,12 +1036,12 @@ "wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForUnity3D ĉu vi ankoraŭ volas " "daŭrigi la promocion?" -#: ../DistUpgrade/DistUpgradeQuirks.py:274 +#: ../DistUpgrade/DistUpgradeQuirks.py:278 msgid "Your graphics hardware may not be fully supported in Ubuntu 12.04 LTS." msgstr "" "Via grafika aparataro eble ne estas tute subtenata de Ubuntu 12.04 LTS." -#: ../DistUpgrade/DistUpgradeQuirks.py:276 +#: ../DistUpgrade/DistUpgradeQuirks.py:280 msgid "" "The support in Ubuntu 12.04 LTS for your Intel graphics hardware is limited " "and you may encounter problems after the upgrade. For more information see " @@ -1053,7 +1053,7 @@ "vidu https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForI8xx Ĉu vi volas " "daŭrigi kun la promocio?" -#: ../DistUpgrade/DistUpgradeQuirks.py:296 +#: ../DistUpgrade/DistUpgradeQuirks.py:300 msgid "" "Upgrading may reduce desktop effects, and performance in games and other " "graphically intensive programs." @@ -1061,7 +1061,7 @@ "Promociado povas redukti labortablajn efektojn, kaj rendimenton en ludoj kaj " "aliaj grafike intensaj programoj." -#: ../DistUpgrade/DistUpgradeQuirks.py:300 +#: ../DistUpgrade/DistUpgradeQuirks.py:304 msgid "" "This computer is currently using the AMD 'fglrx' graphics driver. No version " "of this driver is available that works with your hardware in Ubuntu 10.04 " @@ -1073,12 +1073,12 @@ "versio de tiu pelilo kiu funkcias per via aparataro en Ubuntu 10.04 LTS.\n" "Ĉu vi volas daŭrigi?" -#: ../DistUpgrade/DistUpgradeQuirks.py:339 -#: ../DistUpgrade/DistUpgradeQuirks.py:408 +#: ../DistUpgrade/DistUpgradeQuirks.py:343 +#: ../DistUpgrade/DistUpgradeQuirks.py:412 msgid "Sorry, no more upgrades for this system" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:340 +#: ../DistUpgrade/DistUpgradeQuirks.py:344 #, python-format msgid "" "There will not be any further Ubuntu releases for this system's 'i386' " @@ -1087,11 +1087,11 @@ "Updates for Ubuntu %s will continue until %s." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:355 +#: ../DistUpgrade/DistUpgradeQuirks.py:359 msgid "No ARMv6 CPU" msgstr "Ne estas ARMv6-CPU" -#: ../DistUpgrade/DistUpgradeQuirks.py:356 +#: ../DistUpgrade/DistUpgradeQuirks.py:360 msgid "" "Your system uses an ARM CPU that is older than the ARMv6 architecture. All " "packages in karmic were built with optimizations requiring ARMv6 as the " @@ -1103,12 +1103,12 @@ "postulas la ARMv6-arkitekturon. Ne eblas ĝisdatigi vian sistemon al nova " "Ubuntu-eldono kun ĉi tiu aparataro." -#: ../DistUpgrade/DistUpgradeQuirks.py:376 +#: ../DistUpgrade/DistUpgradeQuirks.py:380 msgid "" "Sorry, this storage driver is not supported in kernels for newer releases" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:378 +#: ../DistUpgrade/DistUpgradeQuirks.py:382 #, python-format msgid "" "There will not be any further Ubuntu releases that provide kernel support " @@ -1118,7 +1118,7 @@ "driver, remove the directory %s and try again." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:409 +#: ../DistUpgrade/DistUpgradeQuirks.py:413 #, python-format msgid "" "There will not be any further Ubuntu releases for this system's POWER8 " @@ -1127,11 +1127,11 @@ "Updates for Ubuntu %s will continue until %s." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:427 +#: ../DistUpgrade/DistUpgradeQuirks.py:431 msgid "No init available" msgstr "Ne disponeblas 'init'" -#: ../DistUpgrade/DistUpgradeQuirks.py:428 +#: ../DistUpgrade/DistUpgradeQuirks.py:432 msgid "" "Your system appears to be a virtualised environment without an init daemon, " "e.g. Linux-VServer. Ubuntu 10.04 LTS cannot function within this type of " @@ -1145,11 +1145,11 @@ "agordojn de via virtuala maŝino.\n" "Ĉu vi vere volas daŭrigi?" -#: ../DistUpgrade/DistUpgradeQuirks.py:469 +#: ../DistUpgrade/DistUpgradeQuirks.py:473 msgid "The Robot Operating System (ROS) is installed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:470 +#: ../DistUpgrade/DistUpgradeQuirks.py:474 msgid "" "It appears that ROS is currently installed. Each ROS release is very strict " "about the versions of Ubuntu it supports, and Ubuntu upgrades can fail if " @@ -1166,11 +1166,11 @@ "Are you sure you want to continue?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:670 +#: ../DistUpgrade/DistUpgradeQuirks.py:674 msgid "Connection to the Snap Store failed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:671 +#: ../DistUpgrade/DistUpgradeQuirks.py:675 msgid "" "You have the package lxd installed but your system is unable to reach the " "Snap Store. lxd is now provided via a snap and the release upgrade will fail " @@ -1180,11 +1180,11 @@ "may want to configure a Snap Store proxy." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:686 +#: ../DistUpgrade/DistUpgradeQuirks.py:690 msgid "Connection to Snap Store failed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:687 +#: ../DistUpgrade/DistUpgradeQuirks.py:691 msgid "" "Your system does not have a connection to the Snap Store. For the best " "upgrade experience make sure that your system can connect to api.snapcraft." @@ -1192,11 +1192,11 @@ "Do you still want to continue with the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:696 +#: ../DistUpgrade/DistUpgradeQuirks.py:700 msgid "Outdated snapd package" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:697 +#: ../DistUpgrade/DistUpgradeQuirks.py:701 msgid "" "Your system does not have the latest version of snapd. Please update the " "version of snapd on your system to improve the upgrade experience.\n" @@ -1205,36 +1205,36 @@ #. now perform direct API calls to the store, requesting size #. information for each of the snaps needing installation -#: ../DistUpgrade/DistUpgradeQuirks.py:722 +#: ../DistUpgrade/DistUpgradeQuirks.py:726 msgid "Calculating snap size requirements" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:753 +#: ../DistUpgrade/DistUpgradeQuirks.py:757 msgid "Processing snap replacements" msgstr "" #. TODO: This status should be updated, but the time of #. this change to snap switch is post-translation freeze. -#: ../DistUpgrade/DistUpgradeQuirks.py:761 +#: ../DistUpgrade/DistUpgradeQuirks.py:765 #, python-format msgid "refreshing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:765 +#: ../DistUpgrade/DistUpgradeQuirks.py:769 #, python-format msgid "removing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:768 +#: ../DistUpgrade/DistUpgradeQuirks.py:772 #, python-format msgid "installing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:797 +#: ../DistUpgrade/DistUpgradeQuirks.py:801 msgid "PAE not enabled" msgstr "PAE ne enŝaltita" -#: ../DistUpgrade/DistUpgradeQuirks.py:798 +#: ../DistUpgrade/DistUpgradeQuirks.py:802 msgid "" "Your system uses a CPU that does not have PAE enabled. Ubuntu only supports " "non-PAE systems up to Ubuntu 12.04. To upgrade to a later version of Ubuntu, " @@ -1246,11 +1246,11 @@ "de Ubuntu, necesas ke vi enŝaltu je PAE (se tio eblas) vidu:\n" "http://help.ubuntu.com/community/EnablingPAE" -#: ../DistUpgrade/DistUpgradeQuirks.py:1094 +#: ../DistUpgrade/DistUpgradeQuirks.py:1098 msgid "universe component not enabled" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1095 +#: ../DistUpgrade/DistUpgradeQuirks.py:1099 #, python-format msgid "" "You have the package %s installed which is a python2 package. python2 has " @@ -1262,39 +1262,50 @@ "universe component in /etc/apt/sources.list or remove %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1207 +#: ../DistUpgrade/DistUpgradeQuirks.py:1211 msgid "Checking for installed snaps" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1654 +#: ../DistUpgrade/DistUpgradeQuirks.py:1720 #, fuzzy msgid "Cannot upgrade this system" msgstr "Ne povas ĝisdatigi" -#: ../DistUpgrade/DistUpgradeQuirks.py:1655 +#: ../DistUpgrade/DistUpgradeQuirks.py:1721 msgid "" "Due to a bug in grub, this system cannot be safely upgraded at this time.\n" "\n" "See https://launchpad.net/bugs/2039172." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1721 +#: ../DistUpgrade/DistUpgradeQuirks.py:1787 #, python-brace-format msgid "Updates for Ubuntu {from_release.version} will " msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1731 +#: ../DistUpgrade/DistUpgradeQuirks.py:1797 #, fuzzy msgid "Sorry, cannot upgrade this system to 24.04 LTS" msgstr "Ne povas ĝisdatigi" -#: ../DistUpgrade/DistUpgradeQuirks.py:1734 +#: ../DistUpgrade/DistUpgradeQuirks.py:1800 msgid "" "The Raspberry Pi kernel for Ubuntu 24.04 LTS does not support the armhf " "architecture.\n" "\n" msgstr "" +#: ../DistUpgrade/DistUpgradeQuirks.py:1928 +#, fuzzy, python-brace-format +msgid "Sorry, cannot upgrade this system to {version}" +msgstr "Ne povas ĝisdatigi" + +#: ../DistUpgrade/DistUpgradeQuirks.py:1931 +msgid "" +"Upgrades for desktop systems running TPM FDE are not currently supported. " +"Please see https://launchpad.net/bugs/2065229 for more information." +msgstr "" + #: ../DistUpgrade/DistUpgradeMain.py:62 msgid "" "Use frontend. Currently available: \n" diff -Nru ubuntu-release-upgrader-24.04.17/po/es.po ubuntu-release-upgrader-24.04.18/po/es.po --- ubuntu-release-upgrader-24.04.17/po/es.po 2024-04-29 14:26:40.000000000 +0000 +++ ubuntu-release-upgrader-24.04.18/po/es.po 2024-05-09 19:39:17.000000000 +0000 @@ -11,7 +11,7 @@ msgstr "" "Project-Id-Version: es\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2024-04-29 16:03+0200\n" +"POT-Creation-Date: 2024-05-09 15:39-0400\n" "PO-Revision-Date: 2019-06-18 17:52+0000\n" "Last-Translator: Paco Molinero \n" "Language-Team: Spanish \n" @@ -1085,12 +1085,12 @@ msgid "Media Change" msgstr "Cambio de soporte" -#: ../DistUpgrade/DistUpgradeQuirks.py:248 +#: ../DistUpgrade/DistUpgradeQuirks.py:252 msgid "Your graphics hardware may not be fully supported in Ubuntu 14.04." msgstr "" "Su tarjeta gráfica puede no estar totalmente soportada en Ubuntu 14.04." -#: ../DistUpgrade/DistUpgradeQuirks.py:250 +#: ../DistUpgrade/DistUpgradeQuirks.py:254 msgid "" "Running the 'unity' desktop environment is not fully supported by your " "graphics hardware. You will maybe end up in a very slow environment after " @@ -1105,12 +1105,12 @@ "Para obtener más información, consulte https://wiki.ubuntu.com/X/Bugs/" "UpdateManagerWarningForUnity3D ¿Aún desea continuar con la actualización?" -#: ../DistUpgrade/DistUpgradeQuirks.py:274 +#: ../DistUpgrade/DistUpgradeQuirks.py:278 msgid "Your graphics hardware may not be fully supported in Ubuntu 12.04 LTS." msgstr "" "Su hardware de gráficos no es plenamente compatible con Ubuntu 12.04 LTS." -#: ../DistUpgrade/DistUpgradeQuirks.py:276 +#: ../DistUpgrade/DistUpgradeQuirks.py:280 msgid "" "The support in Ubuntu 12.04 LTS for your Intel graphics hardware is limited " "and you may encounter problems after the upgrade. For more information see " @@ -1122,7 +1122,7 @@ "más información vea https://wiki.ubuntu.com/X/Bugs/" "UpdateManagerWarningForI8xx ¿Quiere continuar con la actualización?" -#: ../DistUpgrade/DistUpgradeQuirks.py:296 +#: ../DistUpgrade/DistUpgradeQuirks.py:300 msgid "" "Upgrading may reduce desktop effects, and performance in games and other " "graphically intensive programs." @@ -1131,7 +1131,7 @@ "rendimiento de los juegos y otros programas que usen gráficos de forma " "intensiva." -#: ../DistUpgrade/DistUpgradeQuirks.py:300 +#: ../DistUpgrade/DistUpgradeQuirks.py:304 msgid "" "This computer is currently using the AMD 'fglrx' graphics driver. No version " "of this driver is available that works with your hardware in Ubuntu 10.04 " @@ -1145,12 +1145,12 @@ "\n" "¿Quiere continuar?" -#: ../DistUpgrade/DistUpgradeQuirks.py:339 -#: ../DistUpgrade/DistUpgradeQuirks.py:408 +#: ../DistUpgrade/DistUpgradeQuirks.py:343 +#: ../DistUpgrade/DistUpgradeQuirks.py:412 msgid "Sorry, no more upgrades for this system" msgstr "Lo sentimos, no habrá más actualizaciones para este sistema" -#: ../DistUpgrade/DistUpgradeQuirks.py:340 +#: ../DistUpgrade/DistUpgradeQuirks.py:344 #, python-format msgid "" "There will not be any further Ubuntu releases for this system's 'i386' " @@ -1163,11 +1163,11 @@ "\n" "Las actualizaciones para Ubuntu %s seguirán hasta %s." -#: ../DistUpgrade/DistUpgradeQuirks.py:355 +#: ../DistUpgrade/DistUpgradeQuirks.py:359 msgid "No ARMv6 CPU" msgstr "No hay CPU ARMv6" -#: ../DistUpgrade/DistUpgradeQuirks.py:356 +#: ../DistUpgrade/DistUpgradeQuirks.py:360 msgid "" "Your system uses an ARM CPU that is older than the ARMv6 architecture. All " "packages in karmic were built with optimizations requiring ARMv6 as the " @@ -1179,12 +1179,12 @@ "requieren ARMv6 como arquitectura mínima. No es posible actualizar sus " "sistema a la nueva versión de Ubuntu con este hardware." -#: ../DistUpgrade/DistUpgradeQuirks.py:376 +#: ../DistUpgrade/DistUpgradeQuirks.py:380 msgid "" "Sorry, this storage driver is not supported in kernels for newer releases" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:378 +#: ../DistUpgrade/DistUpgradeQuirks.py:382 #, python-format msgid "" "There will not be any further Ubuntu releases that provide kernel support " @@ -1194,7 +1194,7 @@ "driver, remove the directory %s and try again." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:409 +#: ../DistUpgrade/DistUpgradeQuirks.py:413 #, fuzzy, python-format msgid "" "There will not be any further Ubuntu releases for this system's POWER8 " @@ -1207,11 +1207,11 @@ "\n" "Las actualizaciones para Ubuntu %s seguirán hasta %s." -#: ../DistUpgrade/DistUpgradeQuirks.py:427 +#: ../DistUpgrade/DistUpgradeQuirks.py:431 msgid "No init available" msgstr "El demonio init no está disponible" -#: ../DistUpgrade/DistUpgradeQuirks.py:428 +#: ../DistUpgrade/DistUpgradeQuirks.py:432 msgid "" "Your system appears to be a virtualised environment without an init daemon, " "e.g. Linux-VServer. Ubuntu 10.04 LTS cannot function within this type of " @@ -1227,11 +1227,11 @@ "\n" "¿Está seguro de que quiere continuar?" -#: ../DistUpgrade/DistUpgradeQuirks.py:469 +#: ../DistUpgrade/DistUpgradeQuirks.py:473 msgid "The Robot Operating System (ROS) is installed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:470 +#: ../DistUpgrade/DistUpgradeQuirks.py:474 msgid "" "It appears that ROS is currently installed. Each ROS release is very strict " "about the versions of Ubuntu it supports, and Ubuntu upgrades can fail if " @@ -1248,12 +1248,12 @@ "Are you sure you want to continue?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:670 +#: ../DistUpgrade/DistUpgradeQuirks.py:674 #, fuzzy msgid "Connection to the Snap Store failed" msgstr "La conexión con la tienda de snaps ha fallado" -#: ../DistUpgrade/DistUpgradeQuirks.py:671 +#: ../DistUpgrade/DistUpgradeQuirks.py:675 msgid "" "You have the package lxd installed but your system is unable to reach the " "Snap Store. lxd is now provided via a snap and the release upgrade will fail " @@ -1263,11 +1263,11 @@ "may want to configure a Snap Store proxy." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:686 +#: ../DistUpgrade/DistUpgradeQuirks.py:690 msgid "Connection to Snap Store failed" msgstr "La conexión con la tienda de snaps ha fallado" -#: ../DistUpgrade/DistUpgradeQuirks.py:687 +#: ../DistUpgrade/DistUpgradeQuirks.py:691 msgid "" "Your system does not have a connection to the Snap Store. For the best " "upgrade experience make sure that your system can connect to api.snapcraft." @@ -1279,11 +1279,11 @@ "puede conectar a api.snapcraft.io.\n" "¿Aún desea continuar con la actualización?" -#: ../DistUpgrade/DistUpgradeQuirks.py:696 +#: ../DistUpgrade/DistUpgradeQuirks.py:700 msgid "Outdated snapd package" msgstr "Paquete snapd desactualizado" -#: ../DistUpgrade/DistUpgradeQuirks.py:697 +#: ../DistUpgrade/DistUpgradeQuirks.py:701 msgid "" "Your system does not have the latest version of snapd. Please update the " "version of snapd on your system to improve the upgrade experience.\n" @@ -1295,36 +1295,36 @@ #. now perform direct API calls to the store, requesting size #. information for each of the snaps needing installation -#: ../DistUpgrade/DistUpgradeQuirks.py:722 +#: ../DistUpgrade/DistUpgradeQuirks.py:726 msgid "Calculating snap size requirements" msgstr "Calculando los requisitos de tamaño de snap" -#: ../DistUpgrade/DistUpgradeQuirks.py:753 +#: ../DistUpgrade/DistUpgradeQuirks.py:757 msgid "Processing snap replacements" msgstr "Procesando reemplazos de snap" #. TODO: This status should be updated, but the time of #. this change to snap switch is post-translation freeze. -#: ../DistUpgrade/DistUpgradeQuirks.py:761 +#: ../DistUpgrade/DistUpgradeQuirks.py:765 #, python-format msgid "refreshing snap %s" msgstr "actualizando el snap %s" -#: ../DistUpgrade/DistUpgradeQuirks.py:765 +#: ../DistUpgrade/DistUpgradeQuirks.py:769 #, fuzzy, python-format msgid "removing snap %s" msgstr "actualizando el snap %s" -#: ../DistUpgrade/DistUpgradeQuirks.py:768 +#: ../DistUpgrade/DistUpgradeQuirks.py:772 #, python-format msgid "installing snap %s" msgstr "instalando el snap %s" -#: ../DistUpgrade/DistUpgradeQuirks.py:797 +#: ../DistUpgrade/DistUpgradeQuirks.py:801 msgid "PAE not enabled" msgstr "PAE no activado" -#: ../DistUpgrade/DistUpgradeQuirks.py:798 +#: ../DistUpgrade/DistUpgradeQuirks.py:802 msgid "" "Your system uses a CPU that does not have PAE enabled. Ubuntu only supports " "non-PAE systems up to Ubuntu 12.04. To upgrade to a later version of Ubuntu, " @@ -1336,11 +1336,11 @@ "de Ubuntu debe activar el PAE (si es posible). Vea:\n" "http://help.ubuntu.com/community/EnablingPAE" -#: ../DistUpgrade/DistUpgradeQuirks.py:1094 +#: ../DistUpgrade/DistUpgradeQuirks.py:1098 msgid "universe component not enabled" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1095 +#: ../DistUpgrade/DistUpgradeQuirks.py:1099 #, python-format msgid "" "You have the package %s installed which is a python2 package. python2 has " @@ -1352,39 +1352,50 @@ "universe component in /etc/apt/sources.list or remove %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1207 +#: ../DistUpgrade/DistUpgradeQuirks.py:1211 msgid "Checking for installed snaps" msgstr "Comprobando snaps instalados" -#: ../DistUpgrade/DistUpgradeQuirks.py:1654 +#: ../DistUpgrade/DistUpgradeQuirks.py:1720 #, fuzzy msgid "Cannot upgrade this system" msgstr "No se puede actualizar" -#: ../DistUpgrade/DistUpgradeQuirks.py:1655 +#: ../DistUpgrade/DistUpgradeQuirks.py:1721 msgid "" "Due to a bug in grub, this system cannot be safely upgraded at this time.\n" "\n" "See https://launchpad.net/bugs/2039172." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1721 +#: ../DistUpgrade/DistUpgradeQuirks.py:1787 #, python-brace-format msgid "Updates for Ubuntu {from_release.version} will " msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1731 +#: ../DistUpgrade/DistUpgradeQuirks.py:1797 #, fuzzy msgid "Sorry, cannot upgrade this system to 24.04 LTS" msgstr "No se puede actualizar" -#: ../DistUpgrade/DistUpgradeQuirks.py:1734 +#: ../DistUpgrade/DistUpgradeQuirks.py:1800 msgid "" "The Raspberry Pi kernel for Ubuntu 24.04 LTS does not support the armhf " "architecture.\n" "\n" msgstr "" +#: ../DistUpgrade/DistUpgradeQuirks.py:1928 +#, fuzzy, python-brace-format +msgid "Sorry, cannot upgrade this system to {version}" +msgstr "No se puede actualizar" + +#: ../DistUpgrade/DistUpgradeQuirks.py:1931 +msgid "" +"Upgrades for desktop systems running TPM FDE are not currently supported. " +"Please see https://launchpad.net/bugs/2065229 for more information." +msgstr "" + #: ../DistUpgrade/DistUpgradeMain.py:62 msgid "" "Use frontend. Currently available: \n" diff -Nru ubuntu-release-upgrader-24.04.17/po/et.po ubuntu-release-upgrader-24.04.18/po/et.po --- ubuntu-release-upgrader-24.04.17/po/et.po 2024-04-29 14:26:40.000000000 +0000 +++ ubuntu-release-upgrader-24.04.18/po/et.po 2024-05-09 19:39:17.000000000 +0000 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2024-04-29 16:03+0200\n" +"POT-Creation-Date: 2024-05-09 15:39-0400\n" "PO-Revision-Date: 2013-05-22 11:00+0000\n" "Last-Translator: Märt Põder \n" "Language-Team: Estonian \n" @@ -965,11 +965,11 @@ msgid "Media Change" msgstr "Meedia muutmine" -#: ../DistUpgrade/DistUpgradeQuirks.py:248 +#: ../DistUpgrade/DistUpgradeQuirks.py:252 msgid "Your graphics hardware may not be fully supported in Ubuntu 14.04." msgstr "Teie graafika riistvara pole Ubuntu 14.04 täielikult toetatud." -#: ../DistUpgrade/DistUpgradeQuirks.py:250 +#: ../DistUpgrade/DistUpgradeQuirks.py:254 msgid "" "Running the 'unity' desktop environment is not fully supported by your " "graphics hardware. You will maybe end up in a very slow environment after " @@ -979,11 +979,11 @@ "upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:274 +#: ../DistUpgrade/DistUpgradeQuirks.py:278 msgid "Your graphics hardware may not be fully supported in Ubuntu 12.04 LTS." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:276 +#: ../DistUpgrade/DistUpgradeQuirks.py:280 msgid "" "The support in Ubuntu 12.04 LTS for your Intel graphics hardware is limited " "and you may encounter problems after the upgrade. For more information see " @@ -991,7 +991,7 @@ "continue with the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:296 +#: ../DistUpgrade/DistUpgradeQuirks.py:300 msgid "" "Upgrading may reduce desktop effects, and performance in games and other " "graphically intensive programs." @@ -999,7 +999,7 @@ "Uuendamine võib eemaldada töölauaefektid ja vähendada mängude ning teiste " "graafikamahukate rakenduste jõudlust." -#: ../DistUpgrade/DistUpgradeQuirks.py:300 +#: ../DistUpgrade/DistUpgradeQuirks.py:304 msgid "" "This computer is currently using the AMD 'fglrx' graphics driver. No version " "of this driver is available that works with your hardware in Ubuntu 10.04 " @@ -1012,12 +1012,12 @@ "\n" "Kas tahad sellest hoolimata jätkata?" -#: ../DistUpgrade/DistUpgradeQuirks.py:339 -#: ../DistUpgrade/DistUpgradeQuirks.py:408 +#: ../DistUpgrade/DistUpgradeQuirks.py:343 +#: ../DistUpgrade/DistUpgradeQuirks.py:412 msgid "Sorry, no more upgrades for this system" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:340 +#: ../DistUpgrade/DistUpgradeQuirks.py:344 #, python-format msgid "" "There will not be any further Ubuntu releases for this system's 'i386' " @@ -1026,11 +1026,11 @@ "Updates for Ubuntu %s will continue until %s." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:355 +#: ../DistUpgrade/DistUpgradeQuirks.py:359 msgid "No ARMv6 CPU" msgstr "Ei leitud ARMv6 protsessorit" -#: ../DistUpgrade/DistUpgradeQuirks.py:356 +#: ../DistUpgrade/DistUpgradeQuirks.py:360 msgid "" "Your system uses an ARM CPU that is older than the ARMv6 architecture. All " "packages in karmic were built with optimizations requiring ARMv6 as the " @@ -1041,12 +1041,12 @@ "Kõik paketid karmic'us koostati optimeeritult vähemalt ARMv6 arhitektuurile. " "Selle raudvaraga ei ole võimalik Ubuntut uuendada." -#: ../DistUpgrade/DistUpgradeQuirks.py:376 +#: ../DistUpgrade/DistUpgradeQuirks.py:380 msgid "" "Sorry, this storage driver is not supported in kernels for newer releases" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:378 +#: ../DistUpgrade/DistUpgradeQuirks.py:382 #, python-format msgid "" "There will not be any further Ubuntu releases that provide kernel support " @@ -1056,7 +1056,7 @@ "driver, remove the directory %s and try again." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:409 +#: ../DistUpgrade/DistUpgradeQuirks.py:413 #, python-format msgid "" "There will not be any further Ubuntu releases for this system's POWER8 " @@ -1065,11 +1065,11 @@ "Updates for Ubuntu %s will continue until %s." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:427 +#: ../DistUpgrade/DistUpgradeQuirks.py:431 msgid "No init available" msgstr "Init pole saadaval" -#: ../DistUpgrade/DistUpgradeQuirks.py:428 +#: ../DistUpgrade/DistUpgradeQuirks.py:432 msgid "" "Your system appears to be a virtualised environment without an init daemon, " "e.g. Linux-VServer. Ubuntu 10.04 LTS cannot function within this type of " @@ -1084,11 +1084,11 @@ "\n" "Kas tahad sellest hoolimata jätkata?" -#: ../DistUpgrade/DistUpgradeQuirks.py:469 +#: ../DistUpgrade/DistUpgradeQuirks.py:473 msgid "The Robot Operating System (ROS) is installed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:470 +#: ../DistUpgrade/DistUpgradeQuirks.py:474 msgid "" "It appears that ROS is currently installed. Each ROS release is very strict " "about the versions of Ubuntu it supports, and Ubuntu upgrades can fail if " @@ -1105,11 +1105,11 @@ "Are you sure you want to continue?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:670 +#: ../DistUpgrade/DistUpgradeQuirks.py:674 msgid "Connection to the Snap Store failed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:671 +#: ../DistUpgrade/DistUpgradeQuirks.py:675 msgid "" "You have the package lxd installed but your system is unable to reach the " "Snap Store. lxd is now provided via a snap and the release upgrade will fail " @@ -1119,11 +1119,11 @@ "may want to configure a Snap Store proxy." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:686 +#: ../DistUpgrade/DistUpgradeQuirks.py:690 msgid "Connection to Snap Store failed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:687 +#: ../DistUpgrade/DistUpgradeQuirks.py:691 msgid "" "Your system does not have a connection to the Snap Store. For the best " "upgrade experience make sure that your system can connect to api.snapcraft." @@ -1131,11 +1131,11 @@ "Do you still want to continue with the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:696 +#: ../DistUpgrade/DistUpgradeQuirks.py:700 msgid "Outdated snapd package" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:697 +#: ../DistUpgrade/DistUpgradeQuirks.py:701 msgid "" "Your system does not have the latest version of snapd. Please update the " "version of snapd on your system to improve the upgrade experience.\n" @@ -1144,36 +1144,36 @@ #. now perform direct API calls to the store, requesting size #. information for each of the snaps needing installation -#: ../DistUpgrade/DistUpgradeQuirks.py:722 +#: ../DistUpgrade/DistUpgradeQuirks.py:726 msgid "Calculating snap size requirements" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:753 +#: ../DistUpgrade/DistUpgradeQuirks.py:757 msgid "Processing snap replacements" msgstr "" #. TODO: This status should be updated, but the time of #. this change to snap switch is post-translation freeze. -#: ../DistUpgrade/DistUpgradeQuirks.py:761 +#: ../DistUpgrade/DistUpgradeQuirks.py:765 #, python-format msgid "refreshing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:765 +#: ../DistUpgrade/DistUpgradeQuirks.py:769 #, python-format msgid "removing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:768 +#: ../DistUpgrade/DistUpgradeQuirks.py:772 #, python-format msgid "installing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:797 +#: ../DistUpgrade/DistUpgradeQuirks.py:801 msgid "PAE not enabled" msgstr "PAE pole lubatud" -#: ../DistUpgrade/DistUpgradeQuirks.py:798 +#: ../DistUpgrade/DistUpgradeQuirks.py:802 msgid "" "Your system uses a CPU that does not have PAE enabled. Ubuntu only supports " "non-PAE systems up to Ubuntu 12.04. To upgrade to a later version of Ubuntu, " @@ -1181,11 +1181,11 @@ "http://help.ubuntu.com/community/EnablingPAE" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1094 +#: ../DistUpgrade/DistUpgradeQuirks.py:1098 msgid "universe component not enabled" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1095 +#: ../DistUpgrade/DistUpgradeQuirks.py:1099 #, python-format msgid "" "You have the package %s installed which is a python2 package. python2 has " @@ -1197,39 +1197,50 @@ "universe component in /etc/apt/sources.list or remove %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1207 +#: ../DistUpgrade/DistUpgradeQuirks.py:1211 msgid "Checking for installed snaps" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1654 +#: ../DistUpgrade/DistUpgradeQuirks.py:1720 #, fuzzy msgid "Cannot upgrade this system" msgstr "Uuendamine pole võimalik" -#: ../DistUpgrade/DistUpgradeQuirks.py:1655 +#: ../DistUpgrade/DistUpgradeQuirks.py:1721 msgid "" "Due to a bug in grub, this system cannot be safely upgraded at this time.\n" "\n" "See https://launchpad.net/bugs/2039172." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1721 +#: ../DistUpgrade/DistUpgradeQuirks.py:1787 #, python-brace-format msgid "Updates for Ubuntu {from_release.version} will " msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1731 +#: ../DistUpgrade/DistUpgradeQuirks.py:1797 #, fuzzy msgid "Sorry, cannot upgrade this system to 24.04 LTS" msgstr "Uuendamine pole võimalik" -#: ../DistUpgrade/DistUpgradeQuirks.py:1734 +#: ../DistUpgrade/DistUpgradeQuirks.py:1800 msgid "" "The Raspberry Pi kernel for Ubuntu 24.04 LTS does not support the armhf " "architecture.\n" "\n" msgstr "" +#: ../DistUpgrade/DistUpgradeQuirks.py:1928 +#, fuzzy, python-brace-format +msgid "Sorry, cannot upgrade this system to {version}" +msgstr "Uuendamine pole võimalik" + +#: ../DistUpgrade/DistUpgradeQuirks.py:1931 +msgid "" +"Upgrades for desktop systems running TPM FDE are not currently supported. " +"Please see https://launchpad.net/bugs/2065229 for more information." +msgstr "" + #: ../DistUpgrade/DistUpgradeMain.py:62 msgid "" "Use frontend. Currently available: \n" diff -Nru ubuntu-release-upgrader-24.04.17/po/eu.po ubuntu-release-upgrader-24.04.18/po/eu.po --- ubuntu-release-upgrader-24.04.17/po/eu.po 2024-04-29 14:26:40.000000000 +0000 +++ ubuntu-release-upgrader-24.04.18/po/eu.po 2024-05-09 19:39:17.000000000 +0000 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2024-04-29 16:03+0200\n" +"POT-Creation-Date: 2024-05-09 15:39-0400\n" "PO-Revision-Date: 2019-06-18 17:54+0000\n" "Last-Translator: Brian Murray \n" "Language-Team: Basque \n" @@ -1013,12 +1013,12 @@ msgid "Media Change" msgstr "Euskarri aldaketa" -#: ../DistUpgrade/DistUpgradeQuirks.py:248 +#: ../DistUpgrade/DistUpgradeQuirks.py:252 msgid "Your graphics hardware may not be fully supported in Ubuntu 14.04." msgstr "" "Baliteke Ubuntu 14.04k zure grafikoen hardwarea guztiz ez sostengatzea." -#: ../DistUpgrade/DistUpgradeQuirks.py:250 +#: ../DistUpgrade/DistUpgradeQuirks.py:254 msgid "" "Running the 'unity' desktop environment is not fully supported by your " "graphics hardware. You will maybe end up in a very slow environment after " @@ -1033,11 +1033,11 @@ "ikusi https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForUnity3D. Hala " "ere, bertsio-berritzearekin aurrera egin nahi duzu?" -#: ../DistUpgrade/DistUpgradeQuirks.py:274 +#: ../DistUpgrade/DistUpgradeQuirks.py:278 msgid "Your graphics hardware may not be fully supported in Ubuntu 12.04 LTS." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:276 +#: ../DistUpgrade/DistUpgradeQuirks.py:280 msgid "" "The support in Ubuntu 12.04 LTS for your Intel graphics hardware is limited " "and you may encounter problems after the upgrade. For more information see " @@ -1045,7 +1045,7 @@ "continue with the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:296 +#: ../DistUpgrade/DistUpgradeQuirks.py:300 msgid "" "Upgrading may reduce desktop effects, and performance in games and other " "graphically intensive programs." @@ -1053,7 +1053,7 @@ "Bertsio-berritzeak mahaigaineko efektuak murriztu dezake, edo jokoen eta " "grafikoen erabilera intentsibodun programen errendimendua gutxitu." -#: ../DistUpgrade/DistUpgradeQuirks.py:300 +#: ../DistUpgrade/DistUpgradeQuirks.py:304 msgid "" "This computer is currently using the AMD 'fglrx' graphics driver. No version " "of this driver is available that works with your hardware in Ubuntu 10.04 " @@ -1067,12 +1067,12 @@ "\n" "Jarraitu nahi duzu?" -#: ../DistUpgrade/DistUpgradeQuirks.py:339 -#: ../DistUpgrade/DistUpgradeQuirks.py:408 +#: ../DistUpgrade/DistUpgradeQuirks.py:343 +#: ../DistUpgrade/DistUpgradeQuirks.py:412 msgid "Sorry, no more upgrades for this system" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:340 +#: ../DistUpgrade/DistUpgradeQuirks.py:344 #, python-format msgid "" "There will not be any further Ubuntu releases for this system's 'i386' " @@ -1081,11 +1081,11 @@ "Updates for Ubuntu %s will continue until %s." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:355 +#: ../DistUpgrade/DistUpgradeQuirks.py:359 msgid "No ARMv6 CPU" msgstr "Ez dago ARMv6 PUZik" -#: ../DistUpgrade/DistUpgradeQuirks.py:356 +#: ../DistUpgrade/DistUpgradeQuirks.py:360 msgid "" "Your system uses an ARM CPU that is older than the ARMv6 architecture. All " "packages in karmic were built with optimizations requiring ARMv6 as the " @@ -1097,12 +1097,12 @@ "ziren. Ezin da sistema Ubunturen bertsio berri batera bertsio-berritu " "hardware honekin." -#: ../DistUpgrade/DistUpgradeQuirks.py:376 +#: ../DistUpgrade/DistUpgradeQuirks.py:380 msgid "" "Sorry, this storage driver is not supported in kernels for newer releases" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:378 +#: ../DistUpgrade/DistUpgradeQuirks.py:382 #, python-format msgid "" "There will not be any further Ubuntu releases that provide kernel support " @@ -1112,7 +1112,7 @@ "driver, remove the directory %s and try again." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:409 +#: ../DistUpgrade/DistUpgradeQuirks.py:413 #, python-format msgid "" "There will not be any further Ubuntu releases for this system's POWER8 " @@ -1121,11 +1121,11 @@ "Updates for Ubuntu %s will continue until %s." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:427 +#: ../DistUpgrade/DistUpgradeQuirks.py:431 msgid "No init available" msgstr "Ez dago init-ik" -#: ../DistUpgrade/DistUpgradeQuirks.py:428 +#: ../DistUpgrade/DistUpgradeQuirks.py:432 msgid "" "Your system appears to be a virtualised environment without an init daemon, " "e.g. Linux-VServer. Ubuntu 10.04 LTS cannot function within this type of " @@ -1141,11 +1141,11 @@ "\n" "Ziur al zaude jarraitu nahi duzula?" -#: ../DistUpgrade/DistUpgradeQuirks.py:469 +#: ../DistUpgrade/DistUpgradeQuirks.py:473 msgid "The Robot Operating System (ROS) is installed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:470 +#: ../DistUpgrade/DistUpgradeQuirks.py:474 msgid "" "It appears that ROS is currently installed. Each ROS release is very strict " "about the versions of Ubuntu it supports, and Ubuntu upgrades can fail if " @@ -1162,11 +1162,11 @@ "Are you sure you want to continue?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:670 +#: ../DistUpgrade/DistUpgradeQuirks.py:674 msgid "Connection to the Snap Store failed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:671 +#: ../DistUpgrade/DistUpgradeQuirks.py:675 msgid "" "You have the package lxd installed but your system is unable to reach the " "Snap Store. lxd is now provided via a snap and the release upgrade will fail " @@ -1176,11 +1176,11 @@ "may want to configure a Snap Store proxy." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:686 +#: ../DistUpgrade/DistUpgradeQuirks.py:690 msgid "Connection to Snap Store failed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:687 +#: ../DistUpgrade/DistUpgradeQuirks.py:691 msgid "" "Your system does not have a connection to the Snap Store. For the best " "upgrade experience make sure that your system can connect to api.snapcraft." @@ -1188,11 +1188,11 @@ "Do you still want to continue with the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:696 +#: ../DistUpgrade/DistUpgradeQuirks.py:700 msgid "Outdated snapd package" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:697 +#: ../DistUpgrade/DistUpgradeQuirks.py:701 msgid "" "Your system does not have the latest version of snapd. Please update the " "version of snapd on your system to improve the upgrade experience.\n" @@ -1201,36 +1201,36 @@ #. now perform direct API calls to the store, requesting size #. information for each of the snaps needing installation -#: ../DistUpgrade/DistUpgradeQuirks.py:722 +#: ../DistUpgrade/DistUpgradeQuirks.py:726 msgid "Calculating snap size requirements" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:753 +#: ../DistUpgrade/DistUpgradeQuirks.py:757 msgid "Processing snap replacements" msgstr "" #. TODO: This status should be updated, but the time of #. this change to snap switch is post-translation freeze. -#: ../DistUpgrade/DistUpgradeQuirks.py:761 +#: ../DistUpgrade/DistUpgradeQuirks.py:765 #, python-format msgid "refreshing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:765 +#: ../DistUpgrade/DistUpgradeQuirks.py:769 #, python-format msgid "removing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:768 +#: ../DistUpgrade/DistUpgradeQuirks.py:772 #, python-format msgid "installing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:797 +#: ../DistUpgrade/DistUpgradeQuirks.py:801 msgid "PAE not enabled" msgstr "PAE gaitu gabe" -#: ../DistUpgrade/DistUpgradeQuirks.py:798 +#: ../DistUpgrade/DistUpgradeQuirks.py:802 msgid "" "Your system uses a CPU that does not have PAE enabled. Ubuntu only supports " "non-PAE systems up to Ubuntu 12.04. To upgrade to a later version of Ubuntu, " @@ -1243,11 +1243,11 @@ "ikusi:\n" "http://help.ubuntu.com/community/EnablingPAE" -#: ../DistUpgrade/DistUpgradeQuirks.py:1094 +#: ../DistUpgrade/DistUpgradeQuirks.py:1098 msgid "universe component not enabled" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1095 +#: ../DistUpgrade/DistUpgradeQuirks.py:1099 #, python-format msgid "" "You have the package %s installed which is a python2 package. python2 has " @@ -1259,39 +1259,50 @@ "universe component in /etc/apt/sources.list or remove %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1207 +#: ../DistUpgrade/DistUpgradeQuirks.py:1211 msgid "Checking for installed snaps" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1654 +#: ../DistUpgrade/DistUpgradeQuirks.py:1720 #, fuzzy msgid "Cannot upgrade this system" msgstr "Ezin da bertsio-berritu" -#: ../DistUpgrade/DistUpgradeQuirks.py:1655 +#: ../DistUpgrade/DistUpgradeQuirks.py:1721 msgid "" "Due to a bug in grub, this system cannot be safely upgraded at this time.\n" "\n" "See https://launchpad.net/bugs/2039172." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1721 +#: ../DistUpgrade/DistUpgradeQuirks.py:1787 #, python-brace-format msgid "Updates for Ubuntu {from_release.version} will " msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1731 +#: ../DistUpgrade/DistUpgradeQuirks.py:1797 #, fuzzy msgid "Sorry, cannot upgrade this system to 24.04 LTS" msgstr "Ezin da bertsio-berritu" -#: ../DistUpgrade/DistUpgradeQuirks.py:1734 +#: ../DistUpgrade/DistUpgradeQuirks.py:1800 msgid "" "The Raspberry Pi kernel for Ubuntu 24.04 LTS does not support the armhf " "architecture.\n" "\n" msgstr "" +#: ../DistUpgrade/DistUpgradeQuirks.py:1928 +#, fuzzy, python-brace-format +msgid "Sorry, cannot upgrade this system to {version}" +msgstr "Ezin da bertsio-berritu" + +#: ../DistUpgrade/DistUpgradeQuirks.py:1931 +msgid "" +"Upgrades for desktop systems running TPM FDE are not currently supported. " +"Please see https://launchpad.net/bugs/2065229 for more information." +msgstr "" + #: ../DistUpgrade/DistUpgradeMain.py:62 msgid "" "Use frontend. Currently available: \n" diff -Nru ubuntu-release-upgrader-24.04.17/po/fa.po ubuntu-release-upgrader-24.04.18/po/fa.po --- ubuntu-release-upgrader-24.04.17/po/fa.po 2024-04-29 14:26:40.000000000 +0000 +++ ubuntu-release-upgrader-24.04.18/po/fa.po 2024-05-09 19:39:17.000000000 +0000 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2024-04-29 16:03+0200\n" +"POT-Creation-Date: 2024-05-09 15:39-0400\n" "PO-Revision-Date: 2013-05-22 11:00+0000\n" "Last-Translator: Brian Murray \n" "Language-Team: Persian \n" @@ -905,11 +905,11 @@ msgid "Media Change" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:248 +#: ../DistUpgrade/DistUpgradeQuirks.py:252 msgid "Your graphics hardware may not be fully supported in Ubuntu 14.04." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:250 +#: ../DistUpgrade/DistUpgradeQuirks.py:254 msgid "" "Running the 'unity' desktop environment is not fully supported by your " "graphics hardware. You will maybe end up in a very slow environment after " @@ -919,11 +919,11 @@ "upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:274 +#: ../DistUpgrade/DistUpgradeQuirks.py:278 msgid "Your graphics hardware may not be fully supported in Ubuntu 12.04 LTS." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:276 +#: ../DistUpgrade/DistUpgradeQuirks.py:280 msgid "" "The support in Ubuntu 12.04 LTS for your Intel graphics hardware is limited " "and you may encounter problems after the upgrade. For more information see " @@ -931,13 +931,13 @@ "continue with the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:296 +#: ../DistUpgrade/DistUpgradeQuirks.py:300 msgid "" "Upgrading may reduce desktop effects, and performance in games and other " "graphically intensive programs." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:300 +#: ../DistUpgrade/DistUpgradeQuirks.py:304 msgid "" "This computer is currently using the AMD 'fglrx' graphics driver. No version " "of this driver is available that works with your hardware in Ubuntu 10.04 " @@ -946,12 +946,12 @@ "Do you want to continue?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:339 -#: ../DistUpgrade/DistUpgradeQuirks.py:408 +#: ../DistUpgrade/DistUpgradeQuirks.py:343 +#: ../DistUpgrade/DistUpgradeQuirks.py:412 msgid "Sorry, no more upgrades for this system" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:340 +#: ../DistUpgrade/DistUpgradeQuirks.py:344 #, python-format msgid "" "There will not be any further Ubuntu releases for this system's 'i386' " @@ -960,11 +960,11 @@ "Updates for Ubuntu %s will continue until %s." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:355 +#: ../DistUpgrade/DistUpgradeQuirks.py:359 msgid "No ARMv6 CPU" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:356 +#: ../DistUpgrade/DistUpgradeQuirks.py:360 msgid "" "Your system uses an ARM CPU that is older than the ARMv6 architecture. All " "packages in karmic were built with optimizations requiring ARMv6 as the " @@ -972,12 +972,12 @@ "Ubuntu release with this hardware." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:376 +#: ../DistUpgrade/DistUpgradeQuirks.py:380 msgid "" "Sorry, this storage driver is not supported in kernels for newer releases" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:378 +#: ../DistUpgrade/DistUpgradeQuirks.py:382 #, python-format msgid "" "There will not be any further Ubuntu releases that provide kernel support " @@ -987,7 +987,7 @@ "driver, remove the directory %s and try again." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:409 +#: ../DistUpgrade/DistUpgradeQuirks.py:413 #, python-format msgid "" "There will not be any further Ubuntu releases for this system's POWER8 " @@ -996,11 +996,11 @@ "Updates for Ubuntu %s will continue until %s." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:427 +#: ../DistUpgrade/DistUpgradeQuirks.py:431 msgid "No init available" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:428 +#: ../DistUpgrade/DistUpgradeQuirks.py:432 msgid "" "Your system appears to be a virtualised environment without an init daemon, " "e.g. Linux-VServer. Ubuntu 10.04 LTS cannot function within this type of " @@ -1010,11 +1010,11 @@ "Are you sure you want to continue?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:469 +#: ../DistUpgrade/DistUpgradeQuirks.py:473 msgid "The Robot Operating System (ROS) is installed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:470 +#: ../DistUpgrade/DistUpgradeQuirks.py:474 msgid "" "It appears that ROS is currently installed. Each ROS release is very strict " "about the versions of Ubuntu it supports, and Ubuntu upgrades can fail if " @@ -1031,11 +1031,11 @@ "Are you sure you want to continue?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:670 +#: ../DistUpgrade/DistUpgradeQuirks.py:674 msgid "Connection to the Snap Store failed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:671 +#: ../DistUpgrade/DistUpgradeQuirks.py:675 msgid "" "You have the package lxd installed but your system is unable to reach the " "Snap Store. lxd is now provided via a snap and the release upgrade will fail " @@ -1045,11 +1045,11 @@ "may want to configure a Snap Store proxy." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:686 +#: ../DistUpgrade/DistUpgradeQuirks.py:690 msgid "Connection to Snap Store failed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:687 +#: ../DistUpgrade/DistUpgradeQuirks.py:691 msgid "" "Your system does not have a connection to the Snap Store. For the best " "upgrade experience make sure that your system can connect to api.snapcraft." @@ -1057,11 +1057,11 @@ "Do you still want to continue with the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:696 +#: ../DistUpgrade/DistUpgradeQuirks.py:700 msgid "Outdated snapd package" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:697 +#: ../DistUpgrade/DistUpgradeQuirks.py:701 msgid "" "Your system does not have the latest version of snapd. Please update the " "version of snapd on your system to improve the upgrade experience.\n" @@ -1070,36 +1070,36 @@ #. now perform direct API calls to the store, requesting size #. information for each of the snaps needing installation -#: ../DistUpgrade/DistUpgradeQuirks.py:722 +#: ../DistUpgrade/DistUpgradeQuirks.py:726 msgid "Calculating snap size requirements" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:753 +#: ../DistUpgrade/DistUpgradeQuirks.py:757 msgid "Processing snap replacements" msgstr "" #. TODO: This status should be updated, but the time of #. this change to snap switch is post-translation freeze. -#: ../DistUpgrade/DistUpgradeQuirks.py:761 +#: ../DistUpgrade/DistUpgradeQuirks.py:765 #, python-format msgid "refreshing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:765 +#: ../DistUpgrade/DistUpgradeQuirks.py:769 #, python-format msgid "removing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:768 +#: ../DistUpgrade/DistUpgradeQuirks.py:772 #, python-format msgid "installing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:797 +#: ../DistUpgrade/DistUpgradeQuirks.py:801 msgid "PAE not enabled" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:798 +#: ../DistUpgrade/DistUpgradeQuirks.py:802 msgid "" "Your system uses a CPU that does not have PAE enabled. Ubuntu only supports " "non-PAE systems up to Ubuntu 12.04. To upgrade to a later version of Ubuntu, " @@ -1107,11 +1107,11 @@ "http://help.ubuntu.com/community/EnablingPAE" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1094 +#: ../DistUpgrade/DistUpgradeQuirks.py:1098 msgid "universe component not enabled" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1095 +#: ../DistUpgrade/DistUpgradeQuirks.py:1099 #, python-format msgid "" "You have the package %s installed which is a python2 package. python2 has " @@ -1123,37 +1123,48 @@ "universe component in /etc/apt/sources.list or remove %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1207 +#: ../DistUpgrade/DistUpgradeQuirks.py:1211 msgid "Checking for installed snaps" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1654 +#: ../DistUpgrade/DistUpgradeQuirks.py:1720 msgid "Cannot upgrade this system" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1655 +#: ../DistUpgrade/DistUpgradeQuirks.py:1721 msgid "" "Due to a bug in grub, this system cannot be safely upgraded at this time.\n" "\n" "See https://launchpad.net/bugs/2039172." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1721 +#: ../DistUpgrade/DistUpgradeQuirks.py:1787 #, python-brace-format msgid "Updates for Ubuntu {from_release.version} will " msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1731 +#: ../DistUpgrade/DistUpgradeQuirks.py:1797 msgid "Sorry, cannot upgrade this system to 24.04 LTS" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1734 +#: ../DistUpgrade/DistUpgradeQuirks.py:1800 msgid "" "The Raspberry Pi kernel for Ubuntu 24.04 LTS does not support the armhf " "architecture.\n" "\n" msgstr "" +#: ../DistUpgrade/DistUpgradeQuirks.py:1928 +#, python-brace-format +msgid "Sorry, cannot upgrade this system to {version}" +msgstr "" + +#: ../DistUpgrade/DistUpgradeQuirks.py:1931 +msgid "" +"Upgrades for desktop systems running TPM FDE are not currently supported. " +"Please see https://launchpad.net/bugs/2065229 for more information." +msgstr "" + #: ../DistUpgrade/DistUpgradeMain.py:62 msgid "" "Use frontend. Currently available: \n" diff -Nru ubuntu-release-upgrader-24.04.17/po/fi.po ubuntu-release-upgrader-24.04.18/po/fi.po --- ubuntu-release-upgrader-24.04.17/po/fi.po 2024-04-29 14:26:40.000000000 +0000 +++ ubuntu-release-upgrader-24.04.18/po/fi.po 2024-05-09 19:39:17.000000000 +0000 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2024-04-29 16:03+0200\n" +"POT-Creation-Date: 2024-05-09 15:39-0400\n" "PO-Revision-Date: 2019-06-18 17:53+0000\n" "Last-Translator: Brian Murray \n" "Language-Team: Finnish \n" @@ -1062,12 +1062,12 @@ msgid "Media Change" msgstr "Median vaihto" -#: ../DistUpgrade/DistUpgradeQuirks.py:248 +#: ../DistUpgrade/DistUpgradeQuirks.py:252 msgid "Your graphics hardware may not be fully supported in Ubuntu 14.04." msgstr "" "Näytönohjaimesi ei välttämättä ole täysin tuettu Ubuntun 14.04-versiossa." -#: ../DistUpgrade/DistUpgradeQuirks.py:250 +#: ../DistUpgrade/DistUpgradeQuirks.py:254 msgid "" "Running the 'unity' desktop environment is not fully supported by your " "graphics hardware. You will maybe end up in a very slow environment after " @@ -1083,12 +1083,12 @@ "UpdateManagerWarningForUnity3D - Haluatko kaikesta huolimatta jatkaa " "päivitystä?" -#: ../DistUpgrade/DistUpgradeQuirks.py:274 +#: ../DistUpgrade/DistUpgradeQuirks.py:278 msgid "Your graphics hardware may not be fully supported in Ubuntu 12.04 LTS." msgstr "" "Näytönohjaimesi ei välttämättä ole täysin tuettu Ubuntu 12.04 LTS -versiossa." -#: ../DistUpgrade/DistUpgradeQuirks.py:276 +#: ../DistUpgrade/DistUpgradeQuirks.py:280 msgid "" "The support in Ubuntu 12.04 LTS for your Intel graphics hardware is limited " "and you may encounter problems after the upgrade. For more information see " @@ -1100,7 +1100,7 @@ "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForI8xx - Haluatko jatkaa " "päivitystä?" -#: ../DistUpgrade/DistUpgradeQuirks.py:296 +#: ../DistUpgrade/DistUpgradeQuirks.py:300 msgid "" "Upgrading may reduce desktop effects, and performance in games and other " "graphically intensive programs." @@ -1108,7 +1108,7 @@ "Päivitys saattaa poistaa käytöstä visuaalisia tehosteita ja huonontaa " "joidenkin pelien ja graafisesti raskaiden ohjelmien suorituskykyä." -#: ../DistUpgrade/DistUpgradeQuirks.py:300 +#: ../DistUpgrade/DistUpgradeQuirks.py:304 msgid "" "This computer is currently using the AMD 'fglrx' graphics driver. No version " "of this driver is available that works with your hardware in Ubuntu 10.04 " @@ -1122,12 +1122,12 @@ "\n" "Haluatko jatkaa?" -#: ../DistUpgrade/DistUpgradeQuirks.py:339 -#: ../DistUpgrade/DistUpgradeQuirks.py:408 +#: ../DistUpgrade/DistUpgradeQuirks.py:343 +#: ../DistUpgrade/DistUpgradeQuirks.py:412 msgid "Sorry, no more upgrades for this system" msgstr "Valitettavasti tälle järjestelmälle ei enää tarjota versiopäivityksiä" -#: ../DistUpgrade/DistUpgradeQuirks.py:340 +#: ../DistUpgrade/DistUpgradeQuirks.py:344 #, python-format msgid "" "There will not be any further Ubuntu releases for this system's 'i386' " @@ -1140,11 +1140,11 @@ "\n" "Päivitykset Ubuntun versiolle %s jatkuvat aina %s asti." -#: ../DistUpgrade/DistUpgradeQuirks.py:355 +#: ../DistUpgrade/DistUpgradeQuirks.py:359 msgid "No ARMv6 CPU" msgstr "Ei ARMv6-suoritinta" -#: ../DistUpgrade/DistUpgradeQuirks.py:356 +#: ../DistUpgrade/DistUpgradeQuirks.py:360 msgid "" "Your system uses an ARM CPU that is older than the ARMv6 architecture. All " "packages in karmic were built with optimizations requiring ARMv6 as the " @@ -1156,12 +1156,12 @@ "vähintään ARMv6-arkkitehtuuria tukevan suorittimen. Tästä syystä " "järjestelmäsi päivittäminen uuteen Ubuntun julkaisuun ei ole mahdollista." -#: ../DistUpgrade/DistUpgradeQuirks.py:376 +#: ../DistUpgrade/DistUpgradeQuirks.py:380 msgid "" "Sorry, this storage driver is not supported in kernels for newer releases" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:378 +#: ../DistUpgrade/DistUpgradeQuirks.py:382 #, python-format msgid "" "There will not be any further Ubuntu releases that provide kernel support " @@ -1171,7 +1171,7 @@ "driver, remove the directory %s and try again." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:409 +#: ../DistUpgrade/DistUpgradeQuirks.py:413 #, fuzzy, python-format msgid "" "There will not be any further Ubuntu releases for this system's POWER8 " @@ -1184,11 +1184,11 @@ "\n" "Päivitykset Ubuntun versiolle %s jatkuvat aina %s asti." -#: ../DistUpgrade/DistUpgradeQuirks.py:427 +#: ../DistUpgrade/DistUpgradeQuirks.py:431 msgid "No init available" msgstr "Init-palvelua ei löydy" -#: ../DistUpgrade/DistUpgradeQuirks.py:428 +#: ../DistUpgrade/DistUpgradeQuirks.py:432 msgid "" "Your system appears to be a virtualised environment without an init daemon, " "e.g. Linux-VServer. Ubuntu 10.04 LTS cannot function within this type of " @@ -1204,11 +1204,11 @@ "\n" "Haluatko varmasti jatkaa?" -#: ../DistUpgrade/DistUpgradeQuirks.py:469 +#: ../DistUpgrade/DistUpgradeQuirks.py:473 msgid "The Robot Operating System (ROS) is installed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:470 +#: ../DistUpgrade/DistUpgradeQuirks.py:474 msgid "" "It appears that ROS is currently installed. Each ROS release is very strict " "about the versions of Ubuntu it supports, and Ubuntu upgrades can fail if " @@ -1225,12 +1225,12 @@ "Are you sure you want to continue?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:670 +#: ../DistUpgrade/DistUpgradeQuirks.py:674 #, fuzzy msgid "Connection to the Snap Store failed" msgstr "Yhteys Snap-kauppaan epäonnistui" -#: ../DistUpgrade/DistUpgradeQuirks.py:671 +#: ../DistUpgrade/DistUpgradeQuirks.py:675 msgid "" "You have the package lxd installed but your system is unable to reach the " "Snap Store. lxd is now provided via a snap and the release upgrade will fail " @@ -1240,11 +1240,11 @@ "may want to configure a Snap Store proxy." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:686 +#: ../DistUpgrade/DistUpgradeQuirks.py:690 msgid "Connection to Snap Store failed" msgstr "Yhteys Snap-kauppaan epäonnistui" -#: ../DistUpgrade/DistUpgradeQuirks.py:687 +#: ../DistUpgrade/DistUpgradeQuirks.py:691 msgid "" "Your system does not have a connection to the Snap Store. For the best " "upgrade experience make sure that your system can connect to api.snapcraft." @@ -1256,11 +1256,11 @@ "osoitteeseen api.snapraft.io.\n" "Haluatko silti jatkaa päivitystä?" -#: ../DistUpgrade/DistUpgradeQuirks.py:696 +#: ../DistUpgrade/DistUpgradeQuirks.py:700 msgid "Outdated snapd package" msgstr "Vanhentunut snapd-paketti" -#: ../DistUpgrade/DistUpgradeQuirks.py:697 +#: ../DistUpgrade/DistUpgradeQuirks.py:701 msgid "" "Your system does not have the latest version of snapd. Please update the " "version of snapd on your system to improve the upgrade experience.\n" @@ -1272,36 +1272,36 @@ #. now perform direct API calls to the store, requesting size #. information for each of the snaps needing installation -#: ../DistUpgrade/DistUpgradeQuirks.py:722 +#: ../DistUpgrade/DistUpgradeQuirks.py:726 msgid "Calculating snap size requirements" msgstr "Lasketaan snap-kokovaatimuksia" -#: ../DistUpgrade/DistUpgradeQuirks.py:753 +#: ../DistUpgrade/DistUpgradeQuirks.py:757 msgid "Processing snap replacements" msgstr "Käsitellään snap-korvikkeita" #. TODO: This status should be updated, but the time of #. this change to snap switch is post-translation freeze. -#: ../DistUpgrade/DistUpgradeQuirks.py:761 +#: ../DistUpgrade/DistUpgradeQuirks.py:765 #, python-format msgid "refreshing snap %s" msgstr "virkistetään snap %s" -#: ../DistUpgrade/DistUpgradeQuirks.py:765 +#: ../DistUpgrade/DistUpgradeQuirks.py:769 #, fuzzy, python-format msgid "removing snap %s" msgstr "virkistetään snap %s" -#: ../DistUpgrade/DistUpgradeQuirks.py:768 +#: ../DistUpgrade/DistUpgradeQuirks.py:772 #, python-format msgid "installing snap %s" msgstr "asennetaan snap %s" -#: ../DistUpgrade/DistUpgradeQuirks.py:797 +#: ../DistUpgrade/DistUpgradeQuirks.py:801 msgid "PAE not enabled" msgstr "PAE ei ole käytössä" -#: ../DistUpgrade/DistUpgradeQuirks.py:798 +#: ../DistUpgrade/DistUpgradeQuirks.py:802 msgid "" "Your system uses a CPU that does not have PAE enabled. Ubuntu only supports " "non-PAE systems up to Ubuntu 12.04. To upgrade to a later version of Ubuntu, " @@ -1313,11 +1313,11 @@ "Ubuntun uudempaan versioon, ota PAE käyttöön, jos mahdollista. Lisätietoja:\n" "http://help.ubuntu.com/community/EnablingPAE" -#: ../DistUpgrade/DistUpgradeQuirks.py:1094 +#: ../DistUpgrade/DistUpgradeQuirks.py:1098 msgid "universe component not enabled" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1095 +#: ../DistUpgrade/DistUpgradeQuirks.py:1099 #, python-format msgid "" "You have the package %s installed which is a python2 package. python2 has " @@ -1329,39 +1329,50 @@ "universe component in /etc/apt/sources.list or remove %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1207 +#: ../DistUpgrade/DistUpgradeQuirks.py:1211 msgid "Checking for installed snaps" msgstr "Tarkistetaan asennettuja snap-paketteja" -#: ../DistUpgrade/DistUpgradeQuirks.py:1654 +#: ../DistUpgrade/DistUpgradeQuirks.py:1720 #, fuzzy msgid "Cannot upgrade this system" msgstr "Päivitys ei onnistu" -#: ../DistUpgrade/DistUpgradeQuirks.py:1655 +#: ../DistUpgrade/DistUpgradeQuirks.py:1721 msgid "" "Due to a bug in grub, this system cannot be safely upgraded at this time.\n" "\n" "See https://launchpad.net/bugs/2039172." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1721 +#: ../DistUpgrade/DistUpgradeQuirks.py:1787 #, python-brace-format msgid "Updates for Ubuntu {from_release.version} will " msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1731 +#: ../DistUpgrade/DistUpgradeQuirks.py:1797 #, fuzzy msgid "Sorry, cannot upgrade this system to 24.04 LTS" msgstr "Päivitys ei onnistu" -#: ../DistUpgrade/DistUpgradeQuirks.py:1734 +#: ../DistUpgrade/DistUpgradeQuirks.py:1800 msgid "" "The Raspberry Pi kernel for Ubuntu 24.04 LTS does not support the armhf " "architecture.\n" "\n" msgstr "" +#: ../DistUpgrade/DistUpgradeQuirks.py:1928 +#, fuzzy, python-brace-format +msgid "Sorry, cannot upgrade this system to {version}" +msgstr "Päivitys ei onnistu" + +#: ../DistUpgrade/DistUpgradeQuirks.py:1931 +msgid "" +"Upgrades for desktop systems running TPM FDE are not currently supported. " +"Please see https://launchpad.net/bugs/2065229 for more information." +msgstr "" + #: ../DistUpgrade/DistUpgradeMain.py:62 msgid "" "Use frontend. Currently available: \n" diff -Nru ubuntu-release-upgrader-24.04.17/po/fil.po ubuntu-release-upgrader-24.04.18/po/fil.po --- ubuntu-release-upgrader-24.04.17/po/fil.po 2024-04-29 14:26:40.000000000 +0000 +++ ubuntu-release-upgrader-24.04.18/po/fil.po 2024-05-09 19:39:17.000000000 +0000 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2024-04-29 16:03+0200\n" +"POT-Creation-Date: 2024-05-09 15:39-0400\n" "PO-Revision-Date: 2013-05-22 11:00+0000\n" "Last-Translator: JeanAustinR \n" "Language-Team: Filipino \n" @@ -940,11 +940,11 @@ msgid "Media Change" msgstr "Pagpapalit ng Media" -#: ../DistUpgrade/DistUpgradeQuirks.py:248 +#: ../DistUpgrade/DistUpgradeQuirks.py:252 msgid "Your graphics hardware may not be fully supported in Ubuntu 14.04." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:250 +#: ../DistUpgrade/DistUpgradeQuirks.py:254 msgid "" "Running the 'unity' desktop environment is not fully supported by your " "graphics hardware. You will maybe end up in a very slow environment after " @@ -954,11 +954,11 @@ "upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:274 +#: ../DistUpgrade/DistUpgradeQuirks.py:278 msgid "Your graphics hardware may not be fully supported in Ubuntu 12.04 LTS." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:276 +#: ../DistUpgrade/DistUpgradeQuirks.py:280 msgid "" "The support in Ubuntu 12.04 LTS for your Intel graphics hardware is limited " "and you may encounter problems after the upgrade. For more information see " @@ -966,7 +966,7 @@ "continue with the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:296 +#: ../DistUpgrade/DistUpgradeQuirks.py:300 msgid "" "Upgrading may reduce desktop effects, and performance in games and other " "graphically intensive programs." @@ -974,7 +974,7 @@ "Maaaring mabawasan ng pag-upgrade ang desktop effects, at mapabagal ang mga " "laro at mga programang magamit sa graphic." -#: ../DistUpgrade/DistUpgradeQuirks.py:300 +#: ../DistUpgrade/DistUpgradeQuirks.py:304 msgid "" "This computer is currently using the AMD 'fglrx' graphics driver. No version " "of this driver is available that works with your hardware in Ubuntu 10.04 " @@ -983,12 +983,12 @@ "Do you want to continue?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:339 -#: ../DistUpgrade/DistUpgradeQuirks.py:408 +#: ../DistUpgrade/DistUpgradeQuirks.py:343 +#: ../DistUpgrade/DistUpgradeQuirks.py:412 msgid "Sorry, no more upgrades for this system" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:340 +#: ../DistUpgrade/DistUpgradeQuirks.py:344 #, python-format msgid "" "There will not be any further Ubuntu releases for this system's 'i386' " @@ -997,11 +997,11 @@ "Updates for Ubuntu %s will continue until %s." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:355 +#: ../DistUpgrade/DistUpgradeQuirks.py:359 msgid "No ARMv6 CPU" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:356 +#: ../DistUpgrade/DistUpgradeQuirks.py:360 msgid "" "Your system uses an ARM CPU that is older than the ARMv6 architecture. All " "packages in karmic were built with optimizations requiring ARMv6 as the " @@ -1009,12 +1009,12 @@ "Ubuntu release with this hardware." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:376 +#: ../DistUpgrade/DistUpgradeQuirks.py:380 msgid "" "Sorry, this storage driver is not supported in kernels for newer releases" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:378 +#: ../DistUpgrade/DistUpgradeQuirks.py:382 #, python-format msgid "" "There will not be any further Ubuntu releases that provide kernel support " @@ -1024,7 +1024,7 @@ "driver, remove the directory %s and try again." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:409 +#: ../DistUpgrade/DistUpgradeQuirks.py:413 #, python-format msgid "" "There will not be any further Ubuntu releases for this system's POWER8 " @@ -1033,11 +1033,11 @@ "Updates for Ubuntu %s will continue until %s." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:427 +#: ../DistUpgrade/DistUpgradeQuirks.py:431 msgid "No init available" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:428 +#: ../DistUpgrade/DistUpgradeQuirks.py:432 msgid "" "Your system appears to be a virtualised environment without an init daemon, " "e.g. Linux-VServer. Ubuntu 10.04 LTS cannot function within this type of " @@ -1047,11 +1047,11 @@ "Are you sure you want to continue?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:469 +#: ../DistUpgrade/DistUpgradeQuirks.py:473 msgid "The Robot Operating System (ROS) is installed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:470 +#: ../DistUpgrade/DistUpgradeQuirks.py:474 msgid "" "It appears that ROS is currently installed. Each ROS release is very strict " "about the versions of Ubuntu it supports, and Ubuntu upgrades can fail if " @@ -1068,11 +1068,11 @@ "Are you sure you want to continue?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:670 +#: ../DistUpgrade/DistUpgradeQuirks.py:674 msgid "Connection to the Snap Store failed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:671 +#: ../DistUpgrade/DistUpgradeQuirks.py:675 msgid "" "You have the package lxd installed but your system is unable to reach the " "Snap Store. lxd is now provided via a snap and the release upgrade will fail " @@ -1082,11 +1082,11 @@ "may want to configure a Snap Store proxy." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:686 +#: ../DistUpgrade/DistUpgradeQuirks.py:690 msgid "Connection to Snap Store failed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:687 +#: ../DistUpgrade/DistUpgradeQuirks.py:691 msgid "" "Your system does not have a connection to the Snap Store. For the best " "upgrade experience make sure that your system can connect to api.snapcraft." @@ -1094,11 +1094,11 @@ "Do you still want to continue with the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:696 +#: ../DistUpgrade/DistUpgradeQuirks.py:700 msgid "Outdated snapd package" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:697 +#: ../DistUpgrade/DistUpgradeQuirks.py:701 msgid "" "Your system does not have the latest version of snapd. Please update the " "version of snapd on your system to improve the upgrade experience.\n" @@ -1107,36 +1107,36 @@ #. now perform direct API calls to the store, requesting size #. information for each of the snaps needing installation -#: ../DistUpgrade/DistUpgradeQuirks.py:722 +#: ../DistUpgrade/DistUpgradeQuirks.py:726 msgid "Calculating snap size requirements" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:753 +#: ../DistUpgrade/DistUpgradeQuirks.py:757 msgid "Processing snap replacements" msgstr "" #. TODO: This status should be updated, but the time of #. this change to snap switch is post-translation freeze. -#: ../DistUpgrade/DistUpgradeQuirks.py:761 +#: ../DistUpgrade/DistUpgradeQuirks.py:765 #, python-format msgid "refreshing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:765 +#: ../DistUpgrade/DistUpgradeQuirks.py:769 #, python-format msgid "removing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:768 +#: ../DistUpgrade/DistUpgradeQuirks.py:772 #, python-format msgid "installing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:797 +#: ../DistUpgrade/DistUpgradeQuirks.py:801 msgid "PAE not enabled" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:798 +#: ../DistUpgrade/DistUpgradeQuirks.py:802 msgid "" "Your system uses a CPU that does not have PAE enabled. Ubuntu only supports " "non-PAE systems up to Ubuntu 12.04. To upgrade to a later version of Ubuntu, " @@ -1144,11 +1144,11 @@ "http://help.ubuntu.com/community/EnablingPAE" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1094 +#: ../DistUpgrade/DistUpgradeQuirks.py:1098 msgid "universe component not enabled" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1095 +#: ../DistUpgrade/DistUpgradeQuirks.py:1099 #, python-format msgid "" "You have the package %s installed which is a python2 package. python2 has " @@ -1160,39 +1160,50 @@ "universe component in /etc/apt/sources.list or remove %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1207 +#: ../DistUpgrade/DistUpgradeQuirks.py:1211 msgid "Checking for installed snaps" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1654 +#: ../DistUpgrade/DistUpgradeQuirks.py:1720 #, fuzzy msgid "Cannot upgrade this system" msgstr "Hindi makapag-upgrade" -#: ../DistUpgrade/DistUpgradeQuirks.py:1655 +#: ../DistUpgrade/DistUpgradeQuirks.py:1721 msgid "" "Due to a bug in grub, this system cannot be safely upgraded at this time.\n" "\n" "See https://launchpad.net/bugs/2039172." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1721 +#: ../DistUpgrade/DistUpgradeQuirks.py:1787 #, python-brace-format msgid "Updates for Ubuntu {from_release.version} will " msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1731 +#: ../DistUpgrade/DistUpgradeQuirks.py:1797 #, fuzzy msgid "Sorry, cannot upgrade this system to 24.04 LTS" msgstr "Hindi makapag-upgrade" -#: ../DistUpgrade/DistUpgradeQuirks.py:1734 +#: ../DistUpgrade/DistUpgradeQuirks.py:1800 msgid "" "The Raspberry Pi kernel for Ubuntu 24.04 LTS does not support the armhf " "architecture.\n" "\n" msgstr "" +#: ../DistUpgrade/DistUpgradeQuirks.py:1928 +#, fuzzy, python-brace-format +msgid "Sorry, cannot upgrade this system to {version}" +msgstr "Hindi makapag-upgrade" + +#: ../DistUpgrade/DistUpgradeQuirks.py:1931 +msgid "" +"Upgrades for desktop systems running TPM FDE are not currently supported. " +"Please see https://launchpad.net/bugs/2065229 for more information." +msgstr "" + #: ../DistUpgrade/DistUpgradeMain.py:62 msgid "" "Use frontend. Currently available: \n" diff -Nru ubuntu-release-upgrader-24.04.17/po/fo.po ubuntu-release-upgrader-24.04.18/po/fo.po --- ubuntu-release-upgrader-24.04.17/po/fo.po 2024-04-29 14:26:40.000000000 +0000 +++ ubuntu-release-upgrader-24.04.18/po/fo.po 2024-05-09 19:39:17.000000000 +0000 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2024-04-29 16:03+0200\n" +"POT-Creation-Date: 2024-05-09 15:39-0400\n" "PO-Revision-Date: 2013-05-22 11:00+0000\n" "Last-Translator: Brian Murray \n" "Language-Team: Faroese \n" @@ -909,11 +909,11 @@ msgid "Media Change" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:248 +#: ../DistUpgrade/DistUpgradeQuirks.py:252 msgid "Your graphics hardware may not be fully supported in Ubuntu 14.04." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:250 +#: ../DistUpgrade/DistUpgradeQuirks.py:254 msgid "" "Running the 'unity' desktop environment is not fully supported by your " "graphics hardware. You will maybe end up in a very slow environment after " @@ -923,11 +923,11 @@ "upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:274 +#: ../DistUpgrade/DistUpgradeQuirks.py:278 msgid "Your graphics hardware may not be fully supported in Ubuntu 12.04 LTS." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:276 +#: ../DistUpgrade/DistUpgradeQuirks.py:280 msgid "" "The support in Ubuntu 12.04 LTS for your Intel graphics hardware is limited " "and you may encounter problems after the upgrade. For more information see " @@ -935,13 +935,13 @@ "continue with the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:296 +#: ../DistUpgrade/DistUpgradeQuirks.py:300 msgid "" "Upgrading may reduce desktop effects, and performance in games and other " "graphically intensive programs." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:300 +#: ../DistUpgrade/DistUpgradeQuirks.py:304 msgid "" "This computer is currently using the AMD 'fglrx' graphics driver. No version " "of this driver is available that works with your hardware in Ubuntu 10.04 " @@ -950,12 +950,12 @@ "Do you want to continue?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:339 -#: ../DistUpgrade/DistUpgradeQuirks.py:408 +#: ../DistUpgrade/DistUpgradeQuirks.py:343 +#: ../DistUpgrade/DistUpgradeQuirks.py:412 msgid "Sorry, no more upgrades for this system" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:340 +#: ../DistUpgrade/DistUpgradeQuirks.py:344 #, python-format msgid "" "There will not be any further Ubuntu releases for this system's 'i386' " @@ -964,11 +964,11 @@ "Updates for Ubuntu %s will continue until %s." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:355 +#: ../DistUpgrade/DistUpgradeQuirks.py:359 msgid "No ARMv6 CPU" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:356 +#: ../DistUpgrade/DistUpgradeQuirks.py:360 msgid "" "Your system uses an ARM CPU that is older than the ARMv6 architecture. All " "packages in karmic were built with optimizations requiring ARMv6 as the " @@ -976,12 +976,12 @@ "Ubuntu release with this hardware." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:376 +#: ../DistUpgrade/DistUpgradeQuirks.py:380 msgid "" "Sorry, this storage driver is not supported in kernels for newer releases" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:378 +#: ../DistUpgrade/DistUpgradeQuirks.py:382 #, python-format msgid "" "There will not be any further Ubuntu releases that provide kernel support " @@ -991,7 +991,7 @@ "driver, remove the directory %s and try again." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:409 +#: ../DistUpgrade/DistUpgradeQuirks.py:413 #, python-format msgid "" "There will not be any further Ubuntu releases for this system's POWER8 " @@ -1000,11 +1000,11 @@ "Updates for Ubuntu %s will continue until %s." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:427 +#: ../DistUpgrade/DistUpgradeQuirks.py:431 msgid "No init available" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:428 +#: ../DistUpgrade/DistUpgradeQuirks.py:432 msgid "" "Your system appears to be a virtualised environment without an init daemon, " "e.g. Linux-VServer. Ubuntu 10.04 LTS cannot function within this type of " @@ -1014,11 +1014,11 @@ "Are you sure you want to continue?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:469 +#: ../DistUpgrade/DistUpgradeQuirks.py:473 msgid "The Robot Operating System (ROS) is installed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:470 +#: ../DistUpgrade/DistUpgradeQuirks.py:474 msgid "" "It appears that ROS is currently installed. Each ROS release is very strict " "about the versions of Ubuntu it supports, and Ubuntu upgrades can fail if " @@ -1035,11 +1035,11 @@ "Are you sure you want to continue?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:670 +#: ../DistUpgrade/DistUpgradeQuirks.py:674 msgid "Connection to the Snap Store failed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:671 +#: ../DistUpgrade/DistUpgradeQuirks.py:675 msgid "" "You have the package lxd installed but your system is unable to reach the " "Snap Store. lxd is now provided via a snap and the release upgrade will fail " @@ -1049,11 +1049,11 @@ "may want to configure a Snap Store proxy." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:686 +#: ../DistUpgrade/DistUpgradeQuirks.py:690 msgid "Connection to Snap Store failed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:687 +#: ../DistUpgrade/DistUpgradeQuirks.py:691 msgid "" "Your system does not have a connection to the Snap Store. For the best " "upgrade experience make sure that your system can connect to api.snapcraft." @@ -1061,11 +1061,11 @@ "Do you still want to continue with the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:696 +#: ../DistUpgrade/DistUpgradeQuirks.py:700 msgid "Outdated snapd package" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:697 +#: ../DistUpgrade/DistUpgradeQuirks.py:701 msgid "" "Your system does not have the latest version of snapd. Please update the " "version of snapd on your system to improve the upgrade experience.\n" @@ -1074,36 +1074,36 @@ #. now perform direct API calls to the store, requesting size #. information for each of the snaps needing installation -#: ../DistUpgrade/DistUpgradeQuirks.py:722 +#: ../DistUpgrade/DistUpgradeQuirks.py:726 msgid "Calculating snap size requirements" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:753 +#: ../DistUpgrade/DistUpgradeQuirks.py:757 msgid "Processing snap replacements" msgstr "" #. TODO: This status should be updated, but the time of #. this change to snap switch is post-translation freeze. -#: ../DistUpgrade/DistUpgradeQuirks.py:761 +#: ../DistUpgrade/DistUpgradeQuirks.py:765 #, python-format msgid "refreshing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:765 +#: ../DistUpgrade/DistUpgradeQuirks.py:769 #, python-format msgid "removing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:768 +#: ../DistUpgrade/DistUpgradeQuirks.py:772 #, python-format msgid "installing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:797 +#: ../DistUpgrade/DistUpgradeQuirks.py:801 msgid "PAE not enabled" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:798 +#: ../DistUpgrade/DistUpgradeQuirks.py:802 msgid "" "Your system uses a CPU that does not have PAE enabled. Ubuntu only supports " "non-PAE systems up to Ubuntu 12.04. To upgrade to a later version of Ubuntu, " @@ -1111,11 +1111,11 @@ "http://help.ubuntu.com/community/EnablingPAE" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1094 +#: ../DistUpgrade/DistUpgradeQuirks.py:1098 msgid "universe component not enabled" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1095 +#: ../DistUpgrade/DistUpgradeQuirks.py:1099 #, python-format msgid "" "You have the package %s installed which is a python2 package. python2 has " @@ -1127,39 +1127,50 @@ "universe component in /etc/apt/sources.list or remove %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1207 +#: ../DistUpgrade/DistUpgradeQuirks.py:1211 msgid "Checking for installed snaps" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1654 +#: ../DistUpgrade/DistUpgradeQuirks.py:1720 #, fuzzy msgid "Cannot upgrade this system" msgstr "Kann ikki uppstiga" -#: ../DistUpgrade/DistUpgradeQuirks.py:1655 +#: ../DistUpgrade/DistUpgradeQuirks.py:1721 msgid "" "Due to a bug in grub, this system cannot be safely upgraded at this time.\n" "\n" "See https://launchpad.net/bugs/2039172." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1721 +#: ../DistUpgrade/DistUpgradeQuirks.py:1787 #, python-brace-format msgid "Updates for Ubuntu {from_release.version} will " msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1731 +#: ../DistUpgrade/DistUpgradeQuirks.py:1797 #, fuzzy msgid "Sorry, cannot upgrade this system to 24.04 LTS" msgstr "Kann ikki uppstiga" -#: ../DistUpgrade/DistUpgradeQuirks.py:1734 +#: ../DistUpgrade/DistUpgradeQuirks.py:1800 msgid "" "The Raspberry Pi kernel for Ubuntu 24.04 LTS does not support the armhf " "architecture.\n" "\n" msgstr "" +#: ../DistUpgrade/DistUpgradeQuirks.py:1928 +#, fuzzy, python-brace-format +msgid "Sorry, cannot upgrade this system to {version}" +msgstr "Kann ikki uppstiga" + +#: ../DistUpgrade/DistUpgradeQuirks.py:1931 +msgid "" +"Upgrades for desktop systems running TPM FDE are not currently supported. " +"Please see https://launchpad.net/bugs/2065229 for more information." +msgstr "" + #: ../DistUpgrade/DistUpgradeMain.py:62 msgid "" "Use frontend. Currently available: \n" diff -Nru ubuntu-release-upgrader-24.04.17/po/fr.po ubuntu-release-upgrader-24.04.18/po/fr.po --- ubuntu-release-upgrader-24.04.17/po/fr.po 2024-04-29 14:26:40.000000000 +0000 +++ ubuntu-release-upgrader-24.04.18/po/fr.po 2024-05-09 19:39:17.000000000 +0000 @@ -9,7 +9,7 @@ msgstr "" "Project-Id-Version: update-manager 0.37.2\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2024-04-29 16:03+0200\n" +"POT-Creation-Date: 2024-05-09 15:39-0400\n" "PO-Revision-Date: 2019-06-18 17:52+0000\n" "Last-Translator: Pierre Slamich \n" "Language-Team: French \n" @@ -1090,13 +1090,13 @@ msgid "Media Change" msgstr "Changement de média" -#: ../DistUpgrade/DistUpgradeQuirks.py:248 +#: ../DistUpgrade/DistUpgradeQuirks.py:252 msgid "Your graphics hardware may not be fully supported in Ubuntu 14.04." msgstr "" "Votre matériel graphique n'est peut-être pas pris en charge complètement " "dans Ubuntu 14.04." -#: ../DistUpgrade/DistUpgradeQuirks.py:250 +#: ../DistUpgrade/DistUpgradeQuirks.py:254 msgid "" "Running the 'unity' desktop environment is not fully supported by your " "graphics hardware. You will maybe end up in a very slow environment after " @@ -1112,13 +1112,13 @@ "rendez-vous sur https://wiki.ubuntu.com/X/Bugs/" "UpdateManagerWarningForUnity3D Voulez-vous poursuivre la mise à niveau ?" -#: ../DistUpgrade/DistUpgradeQuirks.py:274 +#: ../DistUpgrade/DistUpgradeQuirks.py:278 msgid "Your graphics hardware may not be fully supported in Ubuntu 12.04 LTS." msgstr "" "Il est possible que votre carte graphique ne soit pas entièrement prise en " "charge par Ubuntu 12.04 LTS." -#: ../DistUpgrade/DistUpgradeQuirks.py:276 +#: ../DistUpgrade/DistUpgradeQuirks.py:280 msgid "" "The support in Ubuntu 12.04 LTS for your Intel graphics hardware is limited " "and you may encounter problems after the upgrade. For more information see " @@ -1130,7 +1130,7 @@ "Pour plus d'information, rendez-vous sur https://wiki.ubuntu.com/X/Bugs/" "UpdateManagerWarningForI8xx Voulez-vous poursuivre la mise à niveau ?" -#: ../DistUpgrade/DistUpgradeQuirks.py:296 +#: ../DistUpgrade/DistUpgradeQuirks.py:300 msgid "" "Upgrading may reduce desktop effects, and performance in games and other " "graphically intensive programs." @@ -1139,7 +1139,7 @@ "performances pour les jeux et autres programmes exigeants au niveau " "graphique." -#: ../DistUpgrade/DistUpgradeQuirks.py:300 +#: ../DistUpgrade/DistUpgradeQuirks.py:304 msgid "" "This computer is currently using the AMD 'fglrx' graphics driver. No version " "of this driver is available that works with your hardware in Ubuntu 10.04 " @@ -1153,12 +1153,12 @@ "\n" "Voulez-vous continuer ?" -#: ../DistUpgrade/DistUpgradeQuirks.py:339 -#: ../DistUpgrade/DistUpgradeQuirks.py:408 +#: ../DistUpgrade/DistUpgradeQuirks.py:343 +#: ../DistUpgrade/DistUpgradeQuirks.py:412 msgid "Sorry, no more upgrades for this system" msgstr "Désolé, il n'existe plus de mise à niveau pour ce système" -#: ../DistUpgrade/DistUpgradeQuirks.py:340 +#: ../DistUpgrade/DistUpgradeQuirks.py:344 #, python-format msgid "" "There will not be any further Ubuntu releases for this system's 'i386' " @@ -1171,11 +1171,11 @@ "\n" "Les mises à jour pour Ubuntu %s se poursuivront jusqu’en %s." -#: ../DistUpgrade/DistUpgradeQuirks.py:355 +#: ../DistUpgrade/DistUpgradeQuirks.py:359 msgid "No ARMv6 CPU" msgstr "Pas de processeur ARMv6" -#: ../DistUpgrade/DistUpgradeQuirks.py:356 +#: ../DistUpgrade/DistUpgradeQuirks.py:360 msgid "" "Your system uses an ARM CPU that is older than the ARMv6 architecture. All " "packages in karmic were built with optimizations requiring ARMv6 as the " @@ -1187,12 +1187,12 @@ "nécessitant au minimum une architecture ARMv6. Il est impossible de mettre à " "niveau votre système vers la nouvelle version d'Ubuntu." -#: ../DistUpgrade/DistUpgradeQuirks.py:376 +#: ../DistUpgrade/DistUpgradeQuirks.py:380 msgid "" "Sorry, this storage driver is not supported in kernels for newer releases" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:378 +#: ../DistUpgrade/DistUpgradeQuirks.py:382 #, python-format msgid "" "There will not be any further Ubuntu releases that provide kernel support " @@ -1202,7 +1202,7 @@ "driver, remove the directory %s and try again." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:409 +#: ../DistUpgrade/DistUpgradeQuirks.py:413 #, fuzzy, python-format msgid "" "There will not be any further Ubuntu releases for this system's POWER8 " @@ -1215,11 +1215,11 @@ "\n" "Les mises à jour pour Ubuntu %s se poursuivront jusqu’en %s." -#: ../DistUpgrade/DistUpgradeQuirks.py:427 +#: ../DistUpgrade/DistUpgradeQuirks.py:431 msgid "No init available" msgstr "Initialisation indisponible" -#: ../DistUpgrade/DistUpgradeQuirks.py:428 +#: ../DistUpgrade/DistUpgradeQuirks.py:432 msgid "" "Your system appears to be a virtualised environment without an init daemon, " "e.g. Linux-VServer. Ubuntu 10.04 LTS cannot function within this type of " @@ -1235,11 +1235,11 @@ "\n" "Voulez-vous vraiment continuer ?" -#: ../DistUpgrade/DistUpgradeQuirks.py:469 +#: ../DistUpgrade/DistUpgradeQuirks.py:473 msgid "The Robot Operating System (ROS) is installed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:470 +#: ../DistUpgrade/DistUpgradeQuirks.py:474 msgid "" "It appears that ROS is currently installed. Each ROS release is very strict " "about the versions of Ubuntu it supports, and Ubuntu upgrades can fail if " @@ -1256,12 +1256,12 @@ "Are you sure you want to continue?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:670 +#: ../DistUpgrade/DistUpgradeQuirks.py:674 #, fuzzy msgid "Connection to the Snap Store failed" msgstr "La connexion au Snap Store a échoué" -#: ../DistUpgrade/DistUpgradeQuirks.py:671 +#: ../DistUpgrade/DistUpgradeQuirks.py:675 msgid "" "You have the package lxd installed but your system is unable to reach the " "Snap Store. lxd is now provided via a snap and the release upgrade will fail " @@ -1271,11 +1271,11 @@ "may want to configure a Snap Store proxy." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:686 +#: ../DistUpgrade/DistUpgradeQuirks.py:690 msgid "Connection to Snap Store failed" msgstr "La connexion au Snap Store a échoué" -#: ../DistUpgrade/DistUpgradeQuirks.py:687 +#: ../DistUpgrade/DistUpgradeQuirks.py:691 msgid "" "Your system does not have a connection to the Snap Store. For the best " "upgrade experience make sure that your system can connect to api.snapcraft." @@ -1287,11 +1287,11 @@ "connecter à api.snapcraft.io.\n" "Voulez-vous poursuivre la mise à niveau ?" -#: ../DistUpgrade/DistUpgradeQuirks.py:696 +#: ../DistUpgrade/DistUpgradeQuirks.py:700 msgid "Outdated snapd package" msgstr "Paquet snapd obsolète" -#: ../DistUpgrade/DistUpgradeQuirks.py:697 +#: ../DistUpgrade/DistUpgradeQuirks.py:701 msgid "" "Your system does not have the latest version of snapd. Please update the " "version of snapd on your system to improve the upgrade experience.\n" @@ -1304,36 +1304,36 @@ #. now perform direct API calls to the store, requesting size #. information for each of the snaps needing installation -#: ../DistUpgrade/DistUpgradeQuirks.py:722 +#: ../DistUpgrade/DistUpgradeQuirks.py:726 msgid "Calculating snap size requirements" msgstr "Calcul de la taille nécessaire du snap" -#: ../DistUpgrade/DistUpgradeQuirks.py:753 +#: ../DistUpgrade/DistUpgradeQuirks.py:757 msgid "Processing snap replacements" msgstr "Remplacement du snap en cours" #. TODO: This status should be updated, but the time of #. this change to snap switch is post-translation freeze. -#: ../DistUpgrade/DistUpgradeQuirks.py:761 +#: ../DistUpgrade/DistUpgradeQuirks.py:765 #, python-format msgid "refreshing snap %s" msgstr "actualisation du snap %s" -#: ../DistUpgrade/DistUpgradeQuirks.py:765 +#: ../DistUpgrade/DistUpgradeQuirks.py:769 #, fuzzy, python-format msgid "removing snap %s" msgstr "actualisation du snap %s" -#: ../DistUpgrade/DistUpgradeQuirks.py:768 +#: ../DistUpgrade/DistUpgradeQuirks.py:772 #, python-format msgid "installing snap %s" msgstr "installation du snap %s" -#: ../DistUpgrade/DistUpgradeQuirks.py:797 +#: ../DistUpgrade/DistUpgradeQuirks.py:801 msgid "PAE not enabled" msgstr "PAE non activé" -#: ../DistUpgrade/DistUpgradeQuirks.py:798 +#: ../DistUpgrade/DistUpgradeQuirks.py:802 msgid "" "Your system uses a CPU that does not have PAE enabled. Ubuntu only supports " "non-PAE systems up to Ubuntu 12.04. To upgrade to a later version of Ubuntu, " @@ -1347,11 +1347,11 @@ "PAE (si cela est possible) voir :\n" "http://help.ubuntu.com/community/EnablingPAE" -#: ../DistUpgrade/DistUpgradeQuirks.py:1094 +#: ../DistUpgrade/DistUpgradeQuirks.py:1098 msgid "universe component not enabled" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1095 +#: ../DistUpgrade/DistUpgradeQuirks.py:1099 #, python-format msgid "" "You have the package %s installed which is a python2 package. python2 has " @@ -1363,39 +1363,50 @@ "universe component in /etc/apt/sources.list or remove %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1207 +#: ../DistUpgrade/DistUpgradeQuirks.py:1211 msgid "Checking for installed snaps" msgstr "Vérification des snaps installés" -#: ../DistUpgrade/DistUpgradeQuirks.py:1654 +#: ../DistUpgrade/DistUpgradeQuirks.py:1720 #, fuzzy msgid "Cannot upgrade this system" msgstr "Mise à niveau impossible" -#: ../DistUpgrade/DistUpgradeQuirks.py:1655 +#: ../DistUpgrade/DistUpgradeQuirks.py:1721 msgid "" "Due to a bug in grub, this system cannot be safely upgraded at this time.\n" "\n" "See https://launchpad.net/bugs/2039172." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1721 +#: ../DistUpgrade/DistUpgradeQuirks.py:1787 #, python-brace-format msgid "Updates for Ubuntu {from_release.version} will " msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1731 +#: ../DistUpgrade/DistUpgradeQuirks.py:1797 #, fuzzy msgid "Sorry, cannot upgrade this system to 24.04 LTS" msgstr "Mise à niveau impossible" -#: ../DistUpgrade/DistUpgradeQuirks.py:1734 +#: ../DistUpgrade/DistUpgradeQuirks.py:1800 msgid "" "The Raspberry Pi kernel for Ubuntu 24.04 LTS does not support the armhf " "architecture.\n" "\n" msgstr "" +#: ../DistUpgrade/DistUpgradeQuirks.py:1928 +#, fuzzy, python-brace-format +msgid "Sorry, cannot upgrade this system to {version}" +msgstr "Mise à niveau impossible" + +#: ../DistUpgrade/DistUpgradeQuirks.py:1931 +msgid "" +"Upgrades for desktop systems running TPM FDE are not currently supported. " +"Please see https://launchpad.net/bugs/2065229 for more information." +msgstr "" + #: ../DistUpgrade/DistUpgradeMain.py:62 msgid "" "Use frontend. Currently available: \n" diff -Nru ubuntu-release-upgrader-24.04.17/po/fr_CA.po ubuntu-release-upgrader-24.04.18/po/fr_CA.po --- ubuntu-release-upgrader-24.04.17/po/fr_CA.po 2024-04-29 14:26:40.000000000 +0000 +++ ubuntu-release-upgrader-24.04.18/po/fr_CA.po 2024-05-09 19:39:17.000000000 +0000 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: ubuntu-release-upgrader\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2024-04-29 16:03+0200\n" +"POT-Creation-Date: 2024-05-09 15:39-0400\n" "PO-Revision-Date: 2019-06-18 17:54+0000\n" "Last-Translator: Brian Murray \n" "Language-Team: French (Canada) \n" @@ -1088,13 +1088,13 @@ msgid "Media Change" msgstr "Changement de support" -#: ../DistUpgrade/DistUpgradeQuirks.py:248 +#: ../DistUpgrade/DistUpgradeQuirks.py:252 msgid "Your graphics hardware may not be fully supported in Ubuntu 14.04." msgstr "" "Votre matériel graphique n’est peut-être pas complètement pris en charge " "dans Ubuntu 14.04." -#: ../DistUpgrade/DistUpgradeQuirks.py:250 +#: ../DistUpgrade/DistUpgradeQuirks.py:254 msgid "" "Running the 'unity' desktop environment is not fully supported by your " "graphics hardware. You will maybe end up in a very slow environment after " @@ -1110,13 +1110,13 @@ "ubuntu.com/X/Bugs/UpdateManagerWarningForUnity3D Voulez-vous quand même " "poursuivre la mise à niveau?" -#: ../DistUpgrade/DistUpgradeQuirks.py:274 +#: ../DistUpgrade/DistUpgradeQuirks.py:278 msgid "Your graphics hardware may not be fully supported in Ubuntu 12.04 LTS." msgstr "" "Votre matériel graphique n’est peut-être pas complètement prise en charge " "par Ubuntu 12.04 LTS." -#: ../DistUpgrade/DistUpgradeQuirks.py:276 +#: ../DistUpgrade/DistUpgradeQuirks.py:280 msgid "" "The support in Ubuntu 12.04 LTS for your Intel graphics hardware is limited " "and you may encounter problems after the upgrade. For more information see " @@ -1128,7 +1128,7 @@ "Pour plus d’informations, voir https://wiki.ubuntu.com/X/Bugs/" "UpdateManagerWarningForI8xx Voulez-vous continuer la mise à niveau?" -#: ../DistUpgrade/DistUpgradeQuirks.py:296 +#: ../DistUpgrade/DistUpgradeQuirks.py:300 msgid "" "Upgrading may reduce desktop effects, and performance in games and other " "graphically intensive programs." @@ -1136,7 +1136,7 @@ "La mise à niveau pourrait diminuer les effets du bureau, la performance dans " "les jeux et les autres programmes gourmands au niveau graphique." -#: ../DistUpgrade/DistUpgradeQuirks.py:300 +#: ../DistUpgrade/DistUpgradeQuirks.py:304 msgid "" "This computer is currently using the AMD 'fglrx' graphics driver. No version " "of this driver is available that works with your hardware in Ubuntu 10.04 " @@ -1150,12 +1150,12 @@ "\n" "Voulez-vous continuer?" -#: ../DistUpgrade/DistUpgradeQuirks.py:339 -#: ../DistUpgrade/DistUpgradeQuirks.py:408 +#: ../DistUpgrade/DistUpgradeQuirks.py:343 +#: ../DistUpgrade/DistUpgradeQuirks.py:412 msgid "Sorry, no more upgrades for this system" msgstr "Désolé, il n’existe plus de mise à niveau pour ce système" -#: ../DistUpgrade/DistUpgradeQuirks.py:340 +#: ../DistUpgrade/DistUpgradeQuirks.py:344 #, python-format msgid "" "There will not be any further Ubuntu releases for this system's 'i386' " @@ -1168,11 +1168,11 @@ "\n" "Les mises à jour pour Ubuntu %s se poursuivront jusqu’en %s." -#: ../DistUpgrade/DistUpgradeQuirks.py:355 +#: ../DistUpgrade/DistUpgradeQuirks.py:359 msgid "No ARMv6 CPU" msgstr "Pas d’UCT ARMv6" -#: ../DistUpgrade/DistUpgradeQuirks.py:356 +#: ../DistUpgrade/DistUpgradeQuirks.py:360 msgid "" "Your system uses an ARM CPU that is older than the ARMv6 architecture. All " "packages in karmic were built with optimizations requiring ARMv6 as the " @@ -1184,12 +1184,12 @@ "exigeant que l’architecture minimale soit ARMv6. Il est impossible de mettre " "à niveau votre système vers une nouvelle version d’Ubuntu avec ce matériel." -#: ../DistUpgrade/DistUpgradeQuirks.py:376 +#: ../DistUpgrade/DistUpgradeQuirks.py:380 msgid "" "Sorry, this storage driver is not supported in kernels for newer releases" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:378 +#: ../DistUpgrade/DistUpgradeQuirks.py:382 #, python-format msgid "" "There will not be any further Ubuntu releases that provide kernel support " @@ -1199,7 +1199,7 @@ "driver, remove the directory %s and try again." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:409 +#: ../DistUpgrade/DistUpgradeQuirks.py:413 #, fuzzy, python-format msgid "" "There will not be any further Ubuntu releases for this system's POWER8 " @@ -1212,11 +1212,11 @@ "\n" "Les mises à jour pour Ubuntu %s se poursuivront jusqu’en %s." -#: ../DistUpgrade/DistUpgradeQuirks.py:427 +#: ../DistUpgrade/DistUpgradeQuirks.py:431 msgid "No init available" msgstr "Aucun init de disponible" -#: ../DistUpgrade/DistUpgradeQuirks.py:428 +#: ../DistUpgrade/DistUpgradeQuirks.py:432 msgid "" "Your system appears to be a virtualised environment without an init daemon, " "e.g. Linux-VServer. Ubuntu 10.04 LTS cannot function within this type of " @@ -1232,11 +1232,11 @@ "\n" "Voulez-vous vraiment poursuivre?" -#: ../DistUpgrade/DistUpgradeQuirks.py:469 +#: ../DistUpgrade/DistUpgradeQuirks.py:473 msgid "The Robot Operating System (ROS) is installed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:470 +#: ../DistUpgrade/DistUpgradeQuirks.py:474 msgid "" "It appears that ROS is currently installed. Each ROS release is very strict " "about the versions of Ubuntu it supports, and Ubuntu upgrades can fail if " @@ -1253,12 +1253,12 @@ "Are you sure you want to continue?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:670 +#: ../DistUpgrade/DistUpgradeQuirks.py:674 #, fuzzy msgid "Connection to the Snap Store failed" msgstr "Échec de connexion à la logithèque Snap Store" -#: ../DistUpgrade/DistUpgradeQuirks.py:671 +#: ../DistUpgrade/DistUpgradeQuirks.py:675 msgid "" "You have the package lxd installed but your system is unable to reach the " "Snap Store. lxd is now provided via a snap and the release upgrade will fail " @@ -1268,11 +1268,11 @@ "may want to configure a Snap Store proxy." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:686 +#: ../DistUpgrade/DistUpgradeQuirks.py:690 msgid "Connection to Snap Store failed" msgstr "Échec de connexion à la logithèque Snap Store" -#: ../DistUpgrade/DistUpgradeQuirks.py:687 +#: ../DistUpgrade/DistUpgradeQuirks.py:691 msgid "" "Your system does not have a connection to the Snap Store. For the best " "upgrade experience make sure that your system can connect to api.snapcraft." @@ -1284,11 +1284,11 @@ "se connecter à api.snapcraft.io.\n" "Voulez-vous quand même poursuivre la mise à niveau ?" -#: ../DistUpgrade/DistUpgradeQuirks.py:696 +#: ../DistUpgrade/DistUpgradeQuirks.py:700 msgid "Outdated snapd package" msgstr "Le paquet snapd est obsolète" -#: ../DistUpgrade/DistUpgradeQuirks.py:697 +#: ../DistUpgrade/DistUpgradeQuirks.py:701 msgid "" "Your system does not have the latest version of snapd. Please update the " "version of snapd on your system to improve the upgrade experience.\n" @@ -1301,36 +1301,36 @@ #. now perform direct API calls to the store, requesting size #. information for each of the snaps needing installation -#: ../DistUpgrade/DistUpgradeQuirks.py:722 +#: ../DistUpgrade/DistUpgradeQuirks.py:726 msgid "Calculating snap size requirements" msgstr "Calcul des exigences de taille des snap" -#: ../DistUpgrade/DistUpgradeQuirks.py:753 +#: ../DistUpgrade/DistUpgradeQuirks.py:757 msgid "Processing snap replacements" msgstr "Traitement des remplacements des snap" #. TODO: This status should be updated, but the time of #. this change to snap switch is post-translation freeze. -#: ../DistUpgrade/DistUpgradeQuirks.py:761 +#: ../DistUpgrade/DistUpgradeQuirks.py:765 #, python-format msgid "refreshing snap %s" msgstr "actualisation du snap %s" -#: ../DistUpgrade/DistUpgradeQuirks.py:765 +#: ../DistUpgrade/DistUpgradeQuirks.py:769 #, fuzzy, python-format msgid "removing snap %s" msgstr "actualisation du snap %s" -#: ../DistUpgrade/DistUpgradeQuirks.py:768 +#: ../DistUpgrade/DistUpgradeQuirks.py:772 #, python-format msgid "installing snap %s" msgstr "installation du snap %s" -#: ../DistUpgrade/DistUpgradeQuirks.py:797 +#: ../DistUpgrade/DistUpgradeQuirks.py:801 msgid "PAE not enabled" msgstr "PAE n’est pas activée" -#: ../DistUpgrade/DistUpgradeQuirks.py:798 +#: ../DistUpgrade/DistUpgradeQuirks.py:802 msgid "" "Your system uses a CPU that does not have PAE enabled. Ubuntu only supports " "non-PAE systems up to Ubuntu 12.04. To upgrade to a later version of Ubuntu, " @@ -1343,11 +1343,11 @@ "c’est possible). Voir :\n" " http://help.ubuntu.com/community/EnablingPAE" -#: ../DistUpgrade/DistUpgradeQuirks.py:1094 +#: ../DistUpgrade/DistUpgradeQuirks.py:1098 msgid "universe component not enabled" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1095 +#: ../DistUpgrade/DistUpgradeQuirks.py:1099 #, python-format msgid "" "You have the package %s installed which is a python2 package. python2 has " @@ -1359,39 +1359,50 @@ "universe component in /etc/apt/sources.list or remove %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1207 +#: ../DistUpgrade/DistUpgradeQuirks.py:1211 msgid "Checking for installed snaps" msgstr "Vérification des snaps installés" -#: ../DistUpgrade/DistUpgradeQuirks.py:1654 +#: ../DistUpgrade/DistUpgradeQuirks.py:1720 #, fuzzy msgid "Cannot upgrade this system" msgstr "La mise à niveau est impossible" -#: ../DistUpgrade/DistUpgradeQuirks.py:1655 +#: ../DistUpgrade/DistUpgradeQuirks.py:1721 msgid "" "Due to a bug in grub, this system cannot be safely upgraded at this time.\n" "\n" "See https://launchpad.net/bugs/2039172." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1721 +#: ../DistUpgrade/DistUpgradeQuirks.py:1787 #, python-brace-format msgid "Updates for Ubuntu {from_release.version} will " msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1731 +#: ../DistUpgrade/DistUpgradeQuirks.py:1797 #, fuzzy msgid "Sorry, cannot upgrade this system to 24.04 LTS" msgstr "La mise à niveau est impossible" -#: ../DistUpgrade/DistUpgradeQuirks.py:1734 +#: ../DistUpgrade/DistUpgradeQuirks.py:1800 msgid "" "The Raspberry Pi kernel for Ubuntu 24.04 LTS does not support the armhf " "architecture.\n" "\n" msgstr "" +#: ../DistUpgrade/DistUpgradeQuirks.py:1928 +#, fuzzy, python-brace-format +msgid "Sorry, cannot upgrade this system to {version}" +msgstr "La mise à niveau est impossible" + +#: ../DistUpgrade/DistUpgradeQuirks.py:1931 +msgid "" +"Upgrades for desktop systems running TPM FDE are not currently supported. " +"Please see https://launchpad.net/bugs/2065229 for more information." +msgstr "" + #: ../DistUpgrade/DistUpgradeMain.py:62 msgid "" "Use frontend. Currently available: \n" diff -Nru ubuntu-release-upgrader-24.04.17/po/fur.po ubuntu-release-upgrader-24.04.18/po/fur.po --- ubuntu-release-upgrader-24.04.17/po/fur.po 2024-04-29 14:26:40.000000000 +0000 +++ ubuntu-release-upgrader-24.04.18/po/fur.po 2024-05-09 19:39:17.000000000 +0000 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2024-04-29 16:03+0200\n" +"POT-Creation-Date: 2024-05-09 15:39-0400\n" "PO-Revision-Date: 2013-05-22 11:00+0000\n" "Last-Translator: Marco Londero \n" "Language-Team: Friulian \n" @@ -917,11 +917,11 @@ msgid "Media Change" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:248 +#: ../DistUpgrade/DistUpgradeQuirks.py:252 msgid "Your graphics hardware may not be fully supported in Ubuntu 14.04." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:250 +#: ../DistUpgrade/DistUpgradeQuirks.py:254 msgid "" "Running the 'unity' desktop environment is not fully supported by your " "graphics hardware. You will maybe end up in a very slow environment after " @@ -931,11 +931,11 @@ "upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:274 +#: ../DistUpgrade/DistUpgradeQuirks.py:278 msgid "Your graphics hardware may not be fully supported in Ubuntu 12.04 LTS." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:276 +#: ../DistUpgrade/DistUpgradeQuirks.py:280 msgid "" "The support in Ubuntu 12.04 LTS for your Intel graphics hardware is limited " "and you may encounter problems after the upgrade. For more information see " @@ -943,13 +943,13 @@ "continue with the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:296 +#: ../DistUpgrade/DistUpgradeQuirks.py:300 msgid "" "Upgrading may reduce desktop effects, and performance in games and other " "graphically intensive programs." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:300 +#: ../DistUpgrade/DistUpgradeQuirks.py:304 msgid "" "This computer is currently using the AMD 'fglrx' graphics driver. No version " "of this driver is available that works with your hardware in Ubuntu 10.04 " @@ -958,12 +958,12 @@ "Do you want to continue?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:339 -#: ../DistUpgrade/DistUpgradeQuirks.py:408 +#: ../DistUpgrade/DistUpgradeQuirks.py:343 +#: ../DistUpgrade/DistUpgradeQuirks.py:412 msgid "Sorry, no more upgrades for this system" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:340 +#: ../DistUpgrade/DistUpgradeQuirks.py:344 #, python-format msgid "" "There will not be any further Ubuntu releases for this system's 'i386' " @@ -972,11 +972,11 @@ "Updates for Ubuntu %s will continue until %s." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:355 +#: ../DistUpgrade/DistUpgradeQuirks.py:359 msgid "No ARMv6 CPU" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:356 +#: ../DistUpgrade/DistUpgradeQuirks.py:360 msgid "" "Your system uses an ARM CPU that is older than the ARMv6 architecture. All " "packages in karmic were built with optimizations requiring ARMv6 as the " @@ -984,12 +984,12 @@ "Ubuntu release with this hardware." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:376 +#: ../DistUpgrade/DistUpgradeQuirks.py:380 msgid "" "Sorry, this storage driver is not supported in kernels for newer releases" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:378 +#: ../DistUpgrade/DistUpgradeQuirks.py:382 #, python-format msgid "" "There will not be any further Ubuntu releases that provide kernel support " @@ -999,7 +999,7 @@ "driver, remove the directory %s and try again." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:409 +#: ../DistUpgrade/DistUpgradeQuirks.py:413 #, python-format msgid "" "There will not be any further Ubuntu releases for this system's POWER8 " @@ -1008,11 +1008,11 @@ "Updates for Ubuntu %s will continue until %s." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:427 +#: ../DistUpgrade/DistUpgradeQuirks.py:431 msgid "No init available" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:428 +#: ../DistUpgrade/DistUpgradeQuirks.py:432 msgid "" "Your system appears to be a virtualised environment without an init daemon, " "e.g. Linux-VServer. Ubuntu 10.04 LTS cannot function within this type of " @@ -1022,11 +1022,11 @@ "Are you sure you want to continue?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:469 +#: ../DistUpgrade/DistUpgradeQuirks.py:473 msgid "The Robot Operating System (ROS) is installed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:470 +#: ../DistUpgrade/DistUpgradeQuirks.py:474 msgid "" "It appears that ROS is currently installed. Each ROS release is very strict " "about the versions of Ubuntu it supports, and Ubuntu upgrades can fail if " @@ -1043,11 +1043,11 @@ "Are you sure you want to continue?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:670 +#: ../DistUpgrade/DistUpgradeQuirks.py:674 msgid "Connection to the Snap Store failed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:671 +#: ../DistUpgrade/DistUpgradeQuirks.py:675 msgid "" "You have the package lxd installed but your system is unable to reach the " "Snap Store. lxd is now provided via a snap and the release upgrade will fail " @@ -1057,11 +1057,11 @@ "may want to configure a Snap Store proxy." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:686 +#: ../DistUpgrade/DistUpgradeQuirks.py:690 msgid "Connection to Snap Store failed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:687 +#: ../DistUpgrade/DistUpgradeQuirks.py:691 msgid "" "Your system does not have a connection to the Snap Store. For the best " "upgrade experience make sure that your system can connect to api.snapcraft." @@ -1069,11 +1069,11 @@ "Do you still want to continue with the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:696 +#: ../DistUpgrade/DistUpgradeQuirks.py:700 msgid "Outdated snapd package" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:697 +#: ../DistUpgrade/DistUpgradeQuirks.py:701 msgid "" "Your system does not have the latest version of snapd. Please update the " "version of snapd on your system to improve the upgrade experience.\n" @@ -1082,36 +1082,36 @@ #. now perform direct API calls to the store, requesting size #. information for each of the snaps needing installation -#: ../DistUpgrade/DistUpgradeQuirks.py:722 +#: ../DistUpgrade/DistUpgradeQuirks.py:726 msgid "Calculating snap size requirements" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:753 +#: ../DistUpgrade/DistUpgradeQuirks.py:757 msgid "Processing snap replacements" msgstr "" #. TODO: This status should be updated, but the time of #. this change to snap switch is post-translation freeze. -#: ../DistUpgrade/DistUpgradeQuirks.py:761 +#: ../DistUpgrade/DistUpgradeQuirks.py:765 #, python-format msgid "refreshing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:765 +#: ../DistUpgrade/DistUpgradeQuirks.py:769 #, python-format msgid "removing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:768 +#: ../DistUpgrade/DistUpgradeQuirks.py:772 #, python-format msgid "installing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:797 +#: ../DistUpgrade/DistUpgradeQuirks.py:801 msgid "PAE not enabled" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:798 +#: ../DistUpgrade/DistUpgradeQuirks.py:802 msgid "" "Your system uses a CPU that does not have PAE enabled. Ubuntu only supports " "non-PAE systems up to Ubuntu 12.04. To upgrade to a later version of Ubuntu, " @@ -1119,11 +1119,11 @@ "http://help.ubuntu.com/community/EnablingPAE" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1094 +#: ../DistUpgrade/DistUpgradeQuirks.py:1098 msgid "universe component not enabled" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1095 +#: ../DistUpgrade/DistUpgradeQuirks.py:1099 #, python-format msgid "" "You have the package %s installed which is a python2 package. python2 has " @@ -1135,39 +1135,50 @@ "universe component in /etc/apt/sources.list or remove %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1207 +#: ../DistUpgrade/DistUpgradeQuirks.py:1211 msgid "Checking for installed snaps" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1654 +#: ../DistUpgrade/DistUpgradeQuirks.py:1720 #, fuzzy msgid "Cannot upgrade this system" msgstr "No si pues inzornâ" -#: ../DistUpgrade/DistUpgradeQuirks.py:1655 +#: ../DistUpgrade/DistUpgradeQuirks.py:1721 msgid "" "Due to a bug in grub, this system cannot be safely upgraded at this time.\n" "\n" "See https://launchpad.net/bugs/2039172." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1721 +#: ../DistUpgrade/DistUpgradeQuirks.py:1787 #, python-brace-format msgid "Updates for Ubuntu {from_release.version} will " msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1731 +#: ../DistUpgrade/DistUpgradeQuirks.py:1797 #, fuzzy msgid "Sorry, cannot upgrade this system to 24.04 LTS" msgstr "No si pues inzornâ" -#: ../DistUpgrade/DistUpgradeQuirks.py:1734 +#: ../DistUpgrade/DistUpgradeQuirks.py:1800 msgid "" "The Raspberry Pi kernel for Ubuntu 24.04 LTS does not support the armhf " "architecture.\n" "\n" msgstr "" +#: ../DistUpgrade/DistUpgradeQuirks.py:1928 +#, fuzzy, python-brace-format +msgid "Sorry, cannot upgrade this system to {version}" +msgstr "No si pues inzornâ" + +#: ../DistUpgrade/DistUpgradeQuirks.py:1931 +msgid "" +"Upgrades for desktop systems running TPM FDE are not currently supported. " +"Please see https://launchpad.net/bugs/2065229 for more information." +msgstr "" + #: ../DistUpgrade/DistUpgradeMain.py:62 msgid "" "Use frontend. Currently available: \n" diff -Nru ubuntu-release-upgrader-24.04.17/po/fy.po ubuntu-release-upgrader-24.04.18/po/fy.po --- ubuntu-release-upgrader-24.04.17/po/fy.po 2024-04-29 14:26:40.000000000 +0000 +++ ubuntu-release-upgrader-24.04.18/po/fy.po 2024-05-09 19:39:17.000000000 +0000 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2024-04-29 16:03+0200\n" +"POT-Creation-Date: 2024-05-09 15:39-0400\n" "PO-Revision-Date: 2013-05-22 11:00+0000\n" "Last-Translator: Sense Egbert Hofstede \n" "Language-Team: Frisian \n" @@ -905,11 +905,11 @@ msgid "Media Change" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:248 +#: ../DistUpgrade/DistUpgradeQuirks.py:252 msgid "Your graphics hardware may not be fully supported in Ubuntu 14.04." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:250 +#: ../DistUpgrade/DistUpgradeQuirks.py:254 msgid "" "Running the 'unity' desktop environment is not fully supported by your " "graphics hardware. You will maybe end up in a very slow environment after " @@ -919,11 +919,11 @@ "upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:274 +#: ../DistUpgrade/DistUpgradeQuirks.py:278 msgid "Your graphics hardware may not be fully supported in Ubuntu 12.04 LTS." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:276 +#: ../DistUpgrade/DistUpgradeQuirks.py:280 msgid "" "The support in Ubuntu 12.04 LTS for your Intel graphics hardware is limited " "and you may encounter problems after the upgrade. For more information see " @@ -931,13 +931,13 @@ "continue with the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:296 +#: ../DistUpgrade/DistUpgradeQuirks.py:300 msgid "" "Upgrading may reduce desktop effects, and performance in games and other " "graphically intensive programs." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:300 +#: ../DistUpgrade/DistUpgradeQuirks.py:304 msgid "" "This computer is currently using the AMD 'fglrx' graphics driver. No version " "of this driver is available that works with your hardware in Ubuntu 10.04 " @@ -946,12 +946,12 @@ "Do you want to continue?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:339 -#: ../DistUpgrade/DistUpgradeQuirks.py:408 +#: ../DistUpgrade/DistUpgradeQuirks.py:343 +#: ../DistUpgrade/DistUpgradeQuirks.py:412 msgid "Sorry, no more upgrades for this system" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:340 +#: ../DistUpgrade/DistUpgradeQuirks.py:344 #, python-format msgid "" "There will not be any further Ubuntu releases for this system's 'i386' " @@ -960,11 +960,11 @@ "Updates for Ubuntu %s will continue until %s." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:355 +#: ../DistUpgrade/DistUpgradeQuirks.py:359 msgid "No ARMv6 CPU" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:356 +#: ../DistUpgrade/DistUpgradeQuirks.py:360 msgid "" "Your system uses an ARM CPU that is older than the ARMv6 architecture. All " "packages in karmic were built with optimizations requiring ARMv6 as the " @@ -972,12 +972,12 @@ "Ubuntu release with this hardware." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:376 +#: ../DistUpgrade/DistUpgradeQuirks.py:380 msgid "" "Sorry, this storage driver is not supported in kernels for newer releases" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:378 +#: ../DistUpgrade/DistUpgradeQuirks.py:382 #, python-format msgid "" "There will not be any further Ubuntu releases that provide kernel support " @@ -987,7 +987,7 @@ "driver, remove the directory %s and try again." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:409 +#: ../DistUpgrade/DistUpgradeQuirks.py:413 #, python-format msgid "" "There will not be any further Ubuntu releases for this system's POWER8 " @@ -996,11 +996,11 @@ "Updates for Ubuntu %s will continue until %s." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:427 +#: ../DistUpgrade/DistUpgradeQuirks.py:431 msgid "No init available" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:428 +#: ../DistUpgrade/DistUpgradeQuirks.py:432 msgid "" "Your system appears to be a virtualised environment without an init daemon, " "e.g. Linux-VServer. Ubuntu 10.04 LTS cannot function within this type of " @@ -1010,11 +1010,11 @@ "Are you sure you want to continue?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:469 +#: ../DistUpgrade/DistUpgradeQuirks.py:473 msgid "The Robot Operating System (ROS) is installed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:470 +#: ../DistUpgrade/DistUpgradeQuirks.py:474 msgid "" "It appears that ROS is currently installed. Each ROS release is very strict " "about the versions of Ubuntu it supports, and Ubuntu upgrades can fail if " @@ -1031,11 +1031,11 @@ "Are you sure you want to continue?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:670 +#: ../DistUpgrade/DistUpgradeQuirks.py:674 msgid "Connection to the Snap Store failed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:671 +#: ../DistUpgrade/DistUpgradeQuirks.py:675 msgid "" "You have the package lxd installed but your system is unable to reach the " "Snap Store. lxd is now provided via a snap and the release upgrade will fail " @@ -1045,11 +1045,11 @@ "may want to configure a Snap Store proxy." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:686 +#: ../DistUpgrade/DistUpgradeQuirks.py:690 msgid "Connection to Snap Store failed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:687 +#: ../DistUpgrade/DistUpgradeQuirks.py:691 msgid "" "Your system does not have a connection to the Snap Store. For the best " "upgrade experience make sure that your system can connect to api.snapcraft." @@ -1057,11 +1057,11 @@ "Do you still want to continue with the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:696 +#: ../DistUpgrade/DistUpgradeQuirks.py:700 msgid "Outdated snapd package" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:697 +#: ../DistUpgrade/DistUpgradeQuirks.py:701 msgid "" "Your system does not have the latest version of snapd. Please update the " "version of snapd on your system to improve the upgrade experience.\n" @@ -1070,36 +1070,36 @@ #. now perform direct API calls to the store, requesting size #. information for each of the snaps needing installation -#: ../DistUpgrade/DistUpgradeQuirks.py:722 +#: ../DistUpgrade/DistUpgradeQuirks.py:726 msgid "Calculating snap size requirements" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:753 +#: ../DistUpgrade/DistUpgradeQuirks.py:757 msgid "Processing snap replacements" msgstr "" #. TODO: This status should be updated, but the time of #. this change to snap switch is post-translation freeze. -#: ../DistUpgrade/DistUpgradeQuirks.py:761 +#: ../DistUpgrade/DistUpgradeQuirks.py:765 #, python-format msgid "refreshing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:765 +#: ../DistUpgrade/DistUpgradeQuirks.py:769 #, python-format msgid "removing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:768 +#: ../DistUpgrade/DistUpgradeQuirks.py:772 #, python-format msgid "installing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:797 +#: ../DistUpgrade/DistUpgradeQuirks.py:801 msgid "PAE not enabled" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:798 +#: ../DistUpgrade/DistUpgradeQuirks.py:802 msgid "" "Your system uses a CPU that does not have PAE enabled. Ubuntu only supports " "non-PAE systems up to Ubuntu 12.04. To upgrade to a later version of Ubuntu, " @@ -1107,11 +1107,11 @@ "http://help.ubuntu.com/community/EnablingPAE" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1094 +#: ../DistUpgrade/DistUpgradeQuirks.py:1098 msgid "universe component not enabled" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1095 +#: ../DistUpgrade/DistUpgradeQuirks.py:1099 #, python-format msgid "" "You have the package %s installed which is a python2 package. python2 has " @@ -1123,37 +1123,48 @@ "universe component in /etc/apt/sources.list or remove %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1207 +#: ../DistUpgrade/DistUpgradeQuirks.py:1211 msgid "Checking for installed snaps" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1654 +#: ../DistUpgrade/DistUpgradeQuirks.py:1720 msgid "Cannot upgrade this system" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1655 +#: ../DistUpgrade/DistUpgradeQuirks.py:1721 msgid "" "Due to a bug in grub, this system cannot be safely upgraded at this time.\n" "\n" "See https://launchpad.net/bugs/2039172." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1721 +#: ../DistUpgrade/DistUpgradeQuirks.py:1787 #, python-brace-format msgid "Updates for Ubuntu {from_release.version} will " msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1731 +#: ../DistUpgrade/DistUpgradeQuirks.py:1797 msgid "Sorry, cannot upgrade this system to 24.04 LTS" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1734 +#: ../DistUpgrade/DistUpgradeQuirks.py:1800 msgid "" "The Raspberry Pi kernel for Ubuntu 24.04 LTS does not support the armhf " "architecture.\n" "\n" msgstr "" +#: ../DistUpgrade/DistUpgradeQuirks.py:1928 +#, python-brace-format +msgid "Sorry, cannot upgrade this system to {version}" +msgstr "" + +#: ../DistUpgrade/DistUpgradeQuirks.py:1931 +msgid "" +"Upgrades for desktop systems running TPM FDE are not currently supported. " +"Please see https://launchpad.net/bugs/2065229 for more information." +msgstr "" + #: ../DistUpgrade/DistUpgradeMain.py:62 msgid "" "Use frontend. Currently available: \n" diff -Nru ubuntu-release-upgrader-24.04.17/po/ga.po ubuntu-release-upgrader-24.04.18/po/ga.po --- ubuntu-release-upgrader-24.04.17/po/ga.po 2024-04-29 14:26:40.000000000 +0000 +++ ubuntu-release-upgrader-24.04.18/po/ga.po 2024-05-09 19:39:17.000000000 +0000 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2024-04-29 16:03+0200\n" +"POT-Creation-Date: 2024-05-09 15:39-0400\n" "PO-Revision-Date: 2013-05-22 11:00+0000\n" "Last-Translator: Brian Murray \n" "Language-Team: Irish \n" @@ -897,11 +897,11 @@ msgid "Media Change" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:248 +#: ../DistUpgrade/DistUpgradeQuirks.py:252 msgid "Your graphics hardware may not be fully supported in Ubuntu 14.04." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:250 +#: ../DistUpgrade/DistUpgradeQuirks.py:254 msgid "" "Running the 'unity' desktop environment is not fully supported by your " "graphics hardware. You will maybe end up in a very slow environment after " @@ -911,11 +911,11 @@ "upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:274 +#: ../DistUpgrade/DistUpgradeQuirks.py:278 msgid "Your graphics hardware may not be fully supported in Ubuntu 12.04 LTS." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:276 +#: ../DistUpgrade/DistUpgradeQuirks.py:280 msgid "" "The support in Ubuntu 12.04 LTS for your Intel graphics hardware is limited " "and you may encounter problems after the upgrade. For more information see " @@ -923,13 +923,13 @@ "continue with the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:296 +#: ../DistUpgrade/DistUpgradeQuirks.py:300 msgid "" "Upgrading may reduce desktop effects, and performance in games and other " "graphically intensive programs." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:300 +#: ../DistUpgrade/DistUpgradeQuirks.py:304 msgid "" "This computer is currently using the AMD 'fglrx' graphics driver. No version " "of this driver is available that works with your hardware in Ubuntu 10.04 " @@ -938,12 +938,12 @@ "Do you want to continue?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:339 -#: ../DistUpgrade/DistUpgradeQuirks.py:408 +#: ../DistUpgrade/DistUpgradeQuirks.py:343 +#: ../DistUpgrade/DistUpgradeQuirks.py:412 msgid "Sorry, no more upgrades for this system" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:340 +#: ../DistUpgrade/DistUpgradeQuirks.py:344 #, python-format msgid "" "There will not be any further Ubuntu releases for this system's 'i386' " @@ -952,11 +952,11 @@ "Updates for Ubuntu %s will continue until %s." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:355 +#: ../DistUpgrade/DistUpgradeQuirks.py:359 msgid "No ARMv6 CPU" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:356 +#: ../DistUpgrade/DistUpgradeQuirks.py:360 msgid "" "Your system uses an ARM CPU that is older than the ARMv6 architecture. All " "packages in karmic were built with optimizations requiring ARMv6 as the " @@ -964,12 +964,12 @@ "Ubuntu release with this hardware." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:376 +#: ../DistUpgrade/DistUpgradeQuirks.py:380 msgid "" "Sorry, this storage driver is not supported in kernels for newer releases" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:378 +#: ../DistUpgrade/DistUpgradeQuirks.py:382 #, python-format msgid "" "There will not be any further Ubuntu releases that provide kernel support " @@ -979,7 +979,7 @@ "driver, remove the directory %s and try again." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:409 +#: ../DistUpgrade/DistUpgradeQuirks.py:413 #, python-format msgid "" "There will not be any further Ubuntu releases for this system's POWER8 " @@ -988,11 +988,11 @@ "Updates for Ubuntu %s will continue until %s." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:427 +#: ../DistUpgrade/DistUpgradeQuirks.py:431 msgid "No init available" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:428 +#: ../DistUpgrade/DistUpgradeQuirks.py:432 msgid "" "Your system appears to be a virtualised environment without an init daemon, " "e.g. Linux-VServer. Ubuntu 10.04 LTS cannot function within this type of " @@ -1002,11 +1002,11 @@ "Are you sure you want to continue?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:469 +#: ../DistUpgrade/DistUpgradeQuirks.py:473 msgid "The Robot Operating System (ROS) is installed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:470 +#: ../DistUpgrade/DistUpgradeQuirks.py:474 msgid "" "It appears that ROS is currently installed. Each ROS release is very strict " "about the versions of Ubuntu it supports, and Ubuntu upgrades can fail if " @@ -1023,11 +1023,11 @@ "Are you sure you want to continue?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:670 +#: ../DistUpgrade/DistUpgradeQuirks.py:674 msgid "Connection to the Snap Store failed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:671 +#: ../DistUpgrade/DistUpgradeQuirks.py:675 msgid "" "You have the package lxd installed but your system is unable to reach the " "Snap Store. lxd is now provided via a snap and the release upgrade will fail " @@ -1037,11 +1037,11 @@ "may want to configure a Snap Store proxy." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:686 +#: ../DistUpgrade/DistUpgradeQuirks.py:690 msgid "Connection to Snap Store failed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:687 +#: ../DistUpgrade/DistUpgradeQuirks.py:691 msgid "" "Your system does not have a connection to the Snap Store. For the best " "upgrade experience make sure that your system can connect to api.snapcraft." @@ -1049,11 +1049,11 @@ "Do you still want to continue with the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:696 +#: ../DistUpgrade/DistUpgradeQuirks.py:700 msgid "Outdated snapd package" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:697 +#: ../DistUpgrade/DistUpgradeQuirks.py:701 msgid "" "Your system does not have the latest version of snapd. Please update the " "version of snapd on your system to improve the upgrade experience.\n" @@ -1062,36 +1062,36 @@ #. now perform direct API calls to the store, requesting size #. information for each of the snaps needing installation -#: ../DistUpgrade/DistUpgradeQuirks.py:722 +#: ../DistUpgrade/DistUpgradeQuirks.py:726 msgid "Calculating snap size requirements" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:753 +#: ../DistUpgrade/DistUpgradeQuirks.py:757 msgid "Processing snap replacements" msgstr "" #. TODO: This status should be updated, but the time of #. this change to snap switch is post-translation freeze. -#: ../DistUpgrade/DistUpgradeQuirks.py:761 +#: ../DistUpgrade/DistUpgradeQuirks.py:765 #, python-format msgid "refreshing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:765 +#: ../DistUpgrade/DistUpgradeQuirks.py:769 #, python-format msgid "removing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:768 +#: ../DistUpgrade/DistUpgradeQuirks.py:772 #, python-format msgid "installing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:797 +#: ../DistUpgrade/DistUpgradeQuirks.py:801 msgid "PAE not enabled" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:798 +#: ../DistUpgrade/DistUpgradeQuirks.py:802 msgid "" "Your system uses a CPU that does not have PAE enabled. Ubuntu only supports " "non-PAE systems up to Ubuntu 12.04. To upgrade to a later version of Ubuntu, " @@ -1099,11 +1099,11 @@ "http://help.ubuntu.com/community/EnablingPAE" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1094 +#: ../DistUpgrade/DistUpgradeQuirks.py:1098 msgid "universe component not enabled" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1095 +#: ../DistUpgrade/DistUpgradeQuirks.py:1099 #, python-format msgid "" "You have the package %s installed which is a python2 package. python2 has " @@ -1115,37 +1115,48 @@ "universe component in /etc/apt/sources.list or remove %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1207 +#: ../DistUpgrade/DistUpgradeQuirks.py:1211 msgid "Checking for installed snaps" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1654 +#: ../DistUpgrade/DistUpgradeQuirks.py:1720 msgid "Cannot upgrade this system" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1655 +#: ../DistUpgrade/DistUpgradeQuirks.py:1721 msgid "" "Due to a bug in grub, this system cannot be safely upgraded at this time.\n" "\n" "See https://launchpad.net/bugs/2039172." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1721 +#: ../DistUpgrade/DistUpgradeQuirks.py:1787 #, python-brace-format msgid "Updates for Ubuntu {from_release.version} will " msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1731 +#: ../DistUpgrade/DistUpgradeQuirks.py:1797 msgid "Sorry, cannot upgrade this system to 24.04 LTS" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1734 +#: ../DistUpgrade/DistUpgradeQuirks.py:1800 msgid "" "The Raspberry Pi kernel for Ubuntu 24.04 LTS does not support the armhf " "architecture.\n" "\n" msgstr "" +#: ../DistUpgrade/DistUpgradeQuirks.py:1928 +#, python-brace-format +msgid "Sorry, cannot upgrade this system to {version}" +msgstr "" + +#: ../DistUpgrade/DistUpgradeQuirks.py:1931 +msgid "" +"Upgrades for desktop systems running TPM FDE are not currently supported. " +"Please see https://launchpad.net/bugs/2065229 for more information." +msgstr "" + #: ../DistUpgrade/DistUpgradeMain.py:62 msgid "" "Use frontend. Currently available: \n" diff -Nru ubuntu-release-upgrader-24.04.17/po/gd.po ubuntu-release-upgrader-24.04.18/po/gd.po --- ubuntu-release-upgrader-24.04.17/po/gd.po 2024-04-29 14:26:40.000000000 +0000 +++ ubuntu-release-upgrader-24.04.18/po/gd.po 2024-05-09 19:39:18.000000000 +0000 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2024-04-29 16:03+0200\n" +"POT-Creation-Date: 2024-05-09 15:39-0400\n" "PO-Revision-Date: 2019-06-18 17:54+0000\n" "Last-Translator: Akerbeltz \n" "Language-Team: Gaelic; Scottish \n" @@ -1063,13 +1063,13 @@ msgid "Media Change" msgstr "Atharrachadh meadhain" -#: ../DistUpgrade/DistUpgradeQuirks.py:248 +#: ../DistUpgrade/DistUpgradeQuirks.py:252 msgid "Your graphics hardware may not be fully supported in Ubuntu 14.04." msgstr "" "Dh'fhaoidte nach cuirear làn-taic ris a' bhathar-chruaidh ghrafaigeachd " "agad ann an Ubuntu 14.04." -#: ../DistUpgrade/DistUpgradeQuirks.py:250 +#: ../DistUpgrade/DistUpgradeQuirks.py:254 msgid "" "Running the 'unity' desktop environment is not fully supported by your " "graphics hardware. You will maybe end up in a very slow environment after " @@ -1084,13 +1084,13 @@ "barrachd fiosrachaidh, faic https://wiki.ubuntu.com/X/Bugs/" "UpdateManagerWarningForUnity3D A bheil thu airson àrdachadh fhathast?" -#: ../DistUpgrade/DistUpgradeQuirks.py:274 +#: ../DistUpgrade/DistUpgradeQuirks.py:278 msgid "Your graphics hardware may not be fully supported in Ubuntu 12.04 LTS." msgstr "" "Dh'fhaoidte nach eil làn-taic ris a' bhathar-chruaidh ghrafaigeachd ann an " "Ubuntu 12.04 LTS." -#: ../DistUpgrade/DistUpgradeQuirks.py:276 +#: ../DistUpgrade/DistUpgradeQuirks.py:280 msgid "" "The support in Ubuntu 12.04 LTS for your Intel graphics hardware is limited " "and you may encounter problems after the upgrade. For more information see " @@ -1102,7 +1102,7 @@ "dhut àrdachadh. Airson barrachd fiosrachaidh, faic https://wiki.ubuntu.com/X/" "Bugs/UpdateManagerWarningForI8xx A bheil thu airson àrdachadh fhathast?" -#: ../DistUpgrade/DistUpgradeQuirks.py:296 +#: ../DistUpgrade/DistUpgradeQuirks.py:300 msgid "" "Upgrading may reduce desktop effects, and performance in games and other " "graphically intensive programs." @@ -1111,7 +1111,7 @@ "geamannan is rudan eile a tha feumach air grafaigean gu mòr ma nì thu " "àrdachadh." -#: ../DistUpgrade/DistUpgradeQuirks.py:300 +#: ../DistUpgrade/DistUpgradeQuirks.py:304 msgid "" "This computer is currently using the AMD 'fglrx' graphics driver. No version " "of this driver is available that works with your hardware in Ubuntu 10.04 " @@ -1125,12 +1125,12 @@ "\n" "A bheil thu airson leantainn air adhart?" -#: ../DistUpgrade/DistUpgradeQuirks.py:339 -#: ../DistUpgrade/DistUpgradeQuirks.py:408 +#: ../DistUpgrade/DistUpgradeQuirks.py:343 +#: ../DistUpgrade/DistUpgradeQuirks.py:412 msgid "Sorry, no more upgrades for this system" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:340 +#: ../DistUpgrade/DistUpgradeQuirks.py:344 #, python-format msgid "" "There will not be any further Ubuntu releases for this system's 'i386' " @@ -1139,11 +1139,11 @@ "Updates for Ubuntu %s will continue until %s." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:355 +#: ../DistUpgrade/DistUpgradeQuirks.py:359 msgid "No ARMv6 CPU" msgstr "As aonais CPU ARMv6" -#: ../DistUpgrade/DistUpgradeQuirks.py:356 +#: ../DistUpgrade/DistUpgradeQuirks.py:360 msgid "" "Your system uses an ARM CPU that is older than the ARMv6 architecture. All " "packages in karmic were built with optimizations requiring ARMv6 as the " @@ -1155,12 +1155,12 @@ "a tha feumach air ARMv6 air a' char as lugha. Chan urrainn dhut an siostam " "agad àrdachadh gu tionndadh Ubuntu ùr leis a' bhathar-chruaidh seo." -#: ../DistUpgrade/DistUpgradeQuirks.py:376 +#: ../DistUpgrade/DistUpgradeQuirks.py:380 msgid "" "Sorry, this storage driver is not supported in kernels for newer releases" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:378 +#: ../DistUpgrade/DistUpgradeQuirks.py:382 #, python-format msgid "" "There will not be any further Ubuntu releases that provide kernel support " @@ -1170,7 +1170,7 @@ "driver, remove the directory %s and try again." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:409 +#: ../DistUpgrade/DistUpgradeQuirks.py:413 #, python-format msgid "" "There will not be any further Ubuntu releases for this system's POWER8 " @@ -1179,11 +1179,11 @@ "Updates for Ubuntu %s will continue until %s." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:427 +#: ../DistUpgrade/DistUpgradeQuirks.py:431 msgid "No init available" msgstr "Chan eil init ri làimh" -#: ../DistUpgrade/DistUpgradeQuirks.py:428 +#: ../DistUpgrade/DistUpgradeQuirks.py:432 msgid "" "Your system appears to be a virtualised environment without an init daemon, " "e.g. Linux-VServer. Ubuntu 10.04 LTS cannot function within this type of " @@ -1199,11 +1199,11 @@ "\n" "A bheil thu cinnteach gu bheil thu airson leantainn air adhart?" -#: ../DistUpgrade/DistUpgradeQuirks.py:469 +#: ../DistUpgrade/DistUpgradeQuirks.py:473 msgid "The Robot Operating System (ROS) is installed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:470 +#: ../DistUpgrade/DistUpgradeQuirks.py:474 msgid "" "It appears that ROS is currently installed. Each ROS release is very strict " "about the versions of Ubuntu it supports, and Ubuntu upgrades can fail if " @@ -1220,11 +1220,11 @@ "Are you sure you want to continue?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:670 +#: ../DistUpgrade/DistUpgradeQuirks.py:674 msgid "Connection to the Snap Store failed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:671 +#: ../DistUpgrade/DistUpgradeQuirks.py:675 msgid "" "You have the package lxd installed but your system is unable to reach the " "Snap Store. lxd is now provided via a snap and the release upgrade will fail " @@ -1234,11 +1234,11 @@ "may want to configure a Snap Store proxy." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:686 +#: ../DistUpgrade/DistUpgradeQuirks.py:690 msgid "Connection to Snap Store failed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:687 +#: ../DistUpgrade/DistUpgradeQuirks.py:691 msgid "" "Your system does not have a connection to the Snap Store. For the best " "upgrade experience make sure that your system can connect to api.snapcraft." @@ -1246,11 +1246,11 @@ "Do you still want to continue with the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:696 +#: ../DistUpgrade/DistUpgradeQuirks.py:700 msgid "Outdated snapd package" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:697 +#: ../DistUpgrade/DistUpgradeQuirks.py:701 msgid "" "Your system does not have the latest version of snapd. Please update the " "version of snapd on your system to improve the upgrade experience.\n" @@ -1259,36 +1259,36 @@ #. now perform direct API calls to the store, requesting size #. information for each of the snaps needing installation -#: ../DistUpgrade/DistUpgradeQuirks.py:722 +#: ../DistUpgrade/DistUpgradeQuirks.py:726 msgid "Calculating snap size requirements" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:753 +#: ../DistUpgrade/DistUpgradeQuirks.py:757 msgid "Processing snap replacements" msgstr "" #. TODO: This status should be updated, but the time of #. this change to snap switch is post-translation freeze. -#: ../DistUpgrade/DistUpgradeQuirks.py:761 +#: ../DistUpgrade/DistUpgradeQuirks.py:765 #, python-format msgid "refreshing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:765 +#: ../DistUpgrade/DistUpgradeQuirks.py:769 #, python-format msgid "removing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:768 +#: ../DistUpgrade/DistUpgradeQuirks.py:772 #, python-format msgid "installing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:797 +#: ../DistUpgrade/DistUpgradeQuirks.py:801 msgid "PAE not enabled" msgstr "Chan eil PAE an comas" -#: ../DistUpgrade/DistUpgradeQuirks.py:798 +#: ../DistUpgrade/DistUpgradeQuirks.py:802 msgid "" "Your system uses a CPU that does not have PAE enabled. Ubuntu only supports " "non-PAE systems up to Ubuntu 12.04. To upgrade to a later version of Ubuntu, " @@ -1301,11 +1301,11 @@ "Ubuntu. Thoir sùil air:\n" "http://help.ubuntu.com/community/EnablingPAE" -#: ../DistUpgrade/DistUpgradeQuirks.py:1094 +#: ../DistUpgrade/DistUpgradeQuirks.py:1098 msgid "universe component not enabled" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1095 +#: ../DistUpgrade/DistUpgradeQuirks.py:1099 #, python-format msgid "" "You have the package %s installed which is a python2 package. python2 has " @@ -1317,39 +1317,50 @@ "universe component in /etc/apt/sources.list or remove %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1207 +#: ../DistUpgrade/DistUpgradeQuirks.py:1211 msgid "Checking for installed snaps" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1654 +#: ../DistUpgrade/DistUpgradeQuirks.py:1720 #, fuzzy msgid "Cannot upgrade this system" msgstr "Cha ghabh an t-àrdachadh a dhèanamh" -#: ../DistUpgrade/DistUpgradeQuirks.py:1655 +#: ../DistUpgrade/DistUpgradeQuirks.py:1721 msgid "" "Due to a bug in grub, this system cannot be safely upgraded at this time.\n" "\n" "See https://launchpad.net/bugs/2039172." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1721 +#: ../DistUpgrade/DistUpgradeQuirks.py:1787 #, python-brace-format msgid "Updates for Ubuntu {from_release.version} will " msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1731 +#: ../DistUpgrade/DistUpgradeQuirks.py:1797 #, fuzzy msgid "Sorry, cannot upgrade this system to 24.04 LTS" msgstr "Cha ghabh an t-àrdachadh a dhèanamh" -#: ../DistUpgrade/DistUpgradeQuirks.py:1734 +#: ../DistUpgrade/DistUpgradeQuirks.py:1800 msgid "" "The Raspberry Pi kernel for Ubuntu 24.04 LTS does not support the armhf " "architecture.\n" "\n" msgstr "" +#: ../DistUpgrade/DistUpgradeQuirks.py:1928 +#, fuzzy, python-brace-format +msgid "Sorry, cannot upgrade this system to {version}" +msgstr "Cha ghabh an t-àrdachadh a dhèanamh" + +#: ../DistUpgrade/DistUpgradeQuirks.py:1931 +msgid "" +"Upgrades for desktop systems running TPM FDE are not currently supported. " +"Please see https://launchpad.net/bugs/2065229 for more information." +msgstr "" + #: ../DistUpgrade/DistUpgradeMain.py:62 msgid "" "Use frontend. Currently available: \n" diff -Nru ubuntu-release-upgrader-24.04.17/po/gl.po ubuntu-release-upgrader-24.04.18/po/gl.po --- ubuntu-release-upgrader-24.04.17/po/gl.po 2024-04-29 14:26:40.000000000 +0000 +++ ubuntu-release-upgrader-24.04.18/po/gl.po 2024-05-09 19:39:18.000000000 +0000 @@ -10,7 +10,7 @@ msgstr "" "Project-Id-Version: gl\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2024-04-29 16:03+0200\n" +"POT-Creation-Date: 2024-05-09 15:39-0400\n" "PO-Revision-Date: 2019-06-18 17:53+0000\n" "Last-Translator: Brian Murray \n" "Language-Team: galician\n" @@ -1077,13 +1077,13 @@ msgid "Media Change" msgstr "Cambio de medio" -#: ../DistUpgrade/DistUpgradeQuirks.py:248 +#: ../DistUpgrade/DistUpgradeQuirks.py:252 msgid "Your graphics hardware may not be fully supported in Ubuntu 14.04." msgstr "" "É posíbel que o hardware gráfico non sexa totalmente compatíbel co Ubuntu " "14.04." -#: ../DistUpgrade/DistUpgradeQuirks.py:250 +#: ../DistUpgrade/DistUpgradeQuirks.py:254 msgid "" "Running the 'unity' desktop environment is not fully supported by your " "graphics hardware. You will maybe end up in a very slow environment after " @@ -1098,13 +1098,13 @@ "máis información, consulte https://wiki.ubuntu.com/X/Bugs/" "UpdateManagerWarningForUnity3D. Desexa proseguir coa actualización?" -#: ../DistUpgrade/DistUpgradeQuirks.py:274 +#: ../DistUpgrade/DistUpgradeQuirks.py:278 msgid "Your graphics hardware may not be fully supported in Ubuntu 12.04 LTS." msgstr "" "O seu hardware de gráficos non é completamente compatíbel con Ubuntu 12.04 " "LTS." -#: ../DistUpgrade/DistUpgradeQuirks.py:276 +#: ../DistUpgrade/DistUpgradeQuirks.py:280 msgid "" "The support in Ubuntu 12.04 LTS for your Intel graphics hardware is limited " "and you may encounter problems after the upgrade. For more information see " @@ -1116,7 +1116,7 @@ "información vexa https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForI8xx " "¿Desexa continuar coa anovación?" -#: ../DistUpgrade/DistUpgradeQuirks.py:296 +#: ../DistUpgrade/DistUpgradeQuirks.py:300 msgid "" "Upgrading may reduce desktop effects, and performance in games and other " "graphically intensive programs." @@ -1124,7 +1124,7 @@ "A anovación pode reducir os efectos do escritorio, o rendemento nos xogos e " "noutros programas que fagan un emprego intensivo dos gráficos." -#: ../DistUpgrade/DistUpgradeQuirks.py:300 +#: ../DistUpgrade/DistUpgradeQuirks.py:304 msgid "" "This computer is currently using the AMD 'fglrx' graphics driver. No version " "of this driver is available that works with your hardware in Ubuntu 10.04 " @@ -1137,12 +1137,12 @@ "\n" "Está seguro de que desexa continuar?" -#: ../DistUpgrade/DistUpgradeQuirks.py:339 -#: ../DistUpgrade/DistUpgradeQuirks.py:408 +#: ../DistUpgrade/DistUpgradeQuirks.py:343 +#: ../DistUpgrade/DistUpgradeQuirks.py:412 msgid "Sorry, no more upgrades for this system" msgstr "Desculpe, mais non hai máis anovacións para este sistema" -#: ../DistUpgrade/DistUpgradeQuirks.py:340 +#: ../DistUpgrade/DistUpgradeQuirks.py:344 #, python-format msgid "" "There will not be any further Ubuntu releases for this system's 'i386' " @@ -1155,11 +1155,11 @@ "\n" "As actuacións para Ubuntu %s continuarán até %s." -#: ../DistUpgrade/DistUpgradeQuirks.py:355 +#: ../DistUpgrade/DistUpgradeQuirks.py:359 msgid "No ARMv6 CPU" msgstr "Non é unha CPU ARMv6" -#: ../DistUpgrade/DistUpgradeQuirks.py:356 +#: ../DistUpgrade/DistUpgradeQuirks.py:360 msgid "" "Your system uses an ARM CPU that is older than the ARMv6 architecture. All " "packages in karmic were built with optimizations requiring ARMv6 as the " @@ -1171,12 +1171,12 @@ "require ARMv6 como arquitectura mínima. Non é posíbel anovar o seu sistema a " "unha versión de Ubuntu con esta arquitectura." -#: ../DistUpgrade/DistUpgradeQuirks.py:376 +#: ../DistUpgrade/DistUpgradeQuirks.py:380 msgid "" "Sorry, this storage driver is not supported in kernels for newer releases" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:378 +#: ../DistUpgrade/DistUpgradeQuirks.py:382 #, python-format msgid "" "There will not be any further Ubuntu releases that provide kernel support " @@ -1186,7 +1186,7 @@ "driver, remove the directory %s and try again." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:409 +#: ../DistUpgrade/DistUpgradeQuirks.py:413 #, fuzzy, python-format msgid "" "There will not be any further Ubuntu releases for this system's POWER8 " @@ -1199,11 +1199,11 @@ "\n" "As actuacións para Ubuntu %s continuarán até %s." -#: ../DistUpgrade/DistUpgradeQuirks.py:427 +#: ../DistUpgrade/DistUpgradeQuirks.py:431 msgid "No init available" msgstr "O «daemon» init non está dispoñíbel" -#: ../DistUpgrade/DistUpgradeQuirks.py:428 +#: ../DistUpgrade/DistUpgradeQuirks.py:432 msgid "" "Your system appears to be a virtualised environment without an init daemon, " "e.g. Linux-VServer. Ubuntu 10.04 LTS cannot function within this type of " @@ -1219,11 +1219,11 @@ "\n" "Está seguro de que desexa continuar?" -#: ../DistUpgrade/DistUpgradeQuirks.py:469 +#: ../DistUpgrade/DistUpgradeQuirks.py:473 msgid "The Robot Operating System (ROS) is installed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:470 +#: ../DistUpgrade/DistUpgradeQuirks.py:474 msgid "" "It appears that ROS is currently installed. Each ROS release is very strict " "about the versions of Ubuntu it supports, and Ubuntu upgrades can fail if " @@ -1240,12 +1240,12 @@ "Are you sure you want to continue?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:670 +#: ../DistUpgrade/DistUpgradeQuirks.py:674 #, fuzzy msgid "Connection to the Snap Store failed" msgstr "Produciuse un fallo conectando coa tenda de snaps" -#: ../DistUpgrade/DistUpgradeQuirks.py:671 +#: ../DistUpgrade/DistUpgradeQuirks.py:675 msgid "" "You have the package lxd installed but your system is unable to reach the " "Snap Store. lxd is now provided via a snap and the release upgrade will fail " @@ -1255,11 +1255,11 @@ "may want to configure a Snap Store proxy." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:686 +#: ../DistUpgrade/DistUpgradeQuirks.py:690 msgid "Connection to Snap Store failed" msgstr "Produciuse un fallo conectando coa tenda de snaps" -#: ../DistUpgrade/DistUpgradeQuirks.py:687 +#: ../DistUpgrade/DistUpgradeQuirks.py:691 msgid "" "Your system does not have a connection to the Snap Store. For the best " "upgrade experience make sure that your system can connect to api.snapcraft." @@ -1271,11 +1271,11 @@ "io.\n" "Desexa continuar coa anovación?" -#: ../DistUpgrade/DistUpgradeQuirks.py:696 +#: ../DistUpgrade/DistUpgradeQuirks.py:700 msgid "Outdated snapd package" msgstr "O paquete snapd está obsoleto" -#: ../DistUpgrade/DistUpgradeQuirks.py:697 +#: ../DistUpgrade/DistUpgradeQuirks.py:701 msgid "" "Your system does not have the latest version of snapd. Please update the " "version of snapd on your system to improve the upgrade experience.\n" @@ -1287,36 +1287,36 @@ #. now perform direct API calls to the store, requesting size #. information for each of the snaps needing installation -#: ../DistUpgrade/DistUpgradeQuirks.py:722 +#: ../DistUpgrade/DistUpgradeQuirks.py:726 msgid "Calculating snap size requirements" msgstr "A calcular os requisitos de tamaño dos snaps" -#: ../DistUpgrade/DistUpgradeQuirks.py:753 +#: ../DistUpgrade/DistUpgradeQuirks.py:757 msgid "Processing snap replacements" msgstr "A procesar as substitucións de snaps" #. TODO: This status should be updated, but the time of #. this change to snap switch is post-translation freeze. -#: ../DistUpgrade/DistUpgradeQuirks.py:761 +#: ../DistUpgrade/DistUpgradeQuirks.py:765 #, python-format msgid "refreshing snap %s" msgstr "a refrescar o snap %s" -#: ../DistUpgrade/DistUpgradeQuirks.py:765 +#: ../DistUpgrade/DistUpgradeQuirks.py:769 #, fuzzy, python-format msgid "removing snap %s" msgstr "a refrescar o snap %s" -#: ../DistUpgrade/DistUpgradeQuirks.py:768 +#: ../DistUpgrade/DistUpgradeQuirks.py:772 #, python-format msgid "installing snap %s" msgstr "a instalar o snap %s" -#: ../DistUpgrade/DistUpgradeQuirks.py:797 +#: ../DistUpgrade/DistUpgradeQuirks.py:801 msgid "PAE not enabled" msgstr "A PAE non está activada" -#: ../DistUpgrade/DistUpgradeQuirks.py:798 +#: ../DistUpgrade/DistUpgradeQuirks.py:802 msgid "" "Your system uses a CPU that does not have PAE enabled. Ubuntu only supports " "non-PAE systems up to Ubuntu 12.04. To upgrade to a later version of Ubuntu, " @@ -1328,11 +1328,11 @@ "máis recente de Ubuntu, debe activar a PAE (se é posíbel) vexa:\n" " http://help.ubuntu.com/community/EnablingPAE" -#: ../DistUpgrade/DistUpgradeQuirks.py:1094 +#: ../DistUpgrade/DistUpgradeQuirks.py:1098 msgid "universe component not enabled" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1095 +#: ../DistUpgrade/DistUpgradeQuirks.py:1099 #, python-format msgid "" "You have the package %s installed which is a python2 package. python2 has " @@ -1344,39 +1344,50 @@ "universe component in /etc/apt/sources.list or remove %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1207 +#: ../DistUpgrade/DistUpgradeQuirks.py:1211 msgid "Checking for installed snaps" msgstr "Comprobando os snaps instalados" -#: ../DistUpgrade/DistUpgradeQuirks.py:1654 +#: ../DistUpgrade/DistUpgradeQuirks.py:1720 #, fuzzy msgid "Cannot upgrade this system" msgstr "Non é posíbel anovar" -#: ../DistUpgrade/DistUpgradeQuirks.py:1655 +#: ../DistUpgrade/DistUpgradeQuirks.py:1721 msgid "" "Due to a bug in grub, this system cannot be safely upgraded at this time.\n" "\n" "See https://launchpad.net/bugs/2039172." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1721 +#: ../DistUpgrade/DistUpgradeQuirks.py:1787 #, python-brace-format msgid "Updates for Ubuntu {from_release.version} will " msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1731 +#: ../DistUpgrade/DistUpgradeQuirks.py:1797 #, fuzzy msgid "Sorry, cannot upgrade this system to 24.04 LTS" msgstr "Non é posíbel anovar" -#: ../DistUpgrade/DistUpgradeQuirks.py:1734 +#: ../DistUpgrade/DistUpgradeQuirks.py:1800 msgid "" "The Raspberry Pi kernel for Ubuntu 24.04 LTS does not support the armhf " "architecture.\n" "\n" msgstr "" +#: ../DistUpgrade/DistUpgradeQuirks.py:1928 +#, fuzzy, python-brace-format +msgid "Sorry, cannot upgrade this system to {version}" +msgstr "Non é posíbel anovar" + +#: ../DistUpgrade/DistUpgradeQuirks.py:1931 +msgid "" +"Upgrades for desktop systems running TPM FDE are not currently supported. " +"Please see https://launchpad.net/bugs/2065229 for more information." +msgstr "" + #: ../DistUpgrade/DistUpgradeMain.py:62 msgid "" "Use frontend. Currently available: \n" diff -Nru ubuntu-release-upgrader-24.04.17/po/gu.po ubuntu-release-upgrader-24.04.18/po/gu.po --- ubuntu-release-upgrader-24.04.17/po/gu.po 2024-04-29 14:26:40.000000000 +0000 +++ ubuntu-release-upgrader-24.04.18/po/gu.po 2024-05-09 19:39:18.000000000 +0000 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2024-04-29 16:03+0200\n" +"POT-Creation-Date: 2024-05-09 15:39-0400\n" "PO-Revision-Date: 2013-05-22 11:00+0000\n" "Last-Translator: Brian Murray \n" "Language-Team: Gujarati \n" @@ -899,11 +899,11 @@ msgid "Media Change" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:248 +#: ../DistUpgrade/DistUpgradeQuirks.py:252 msgid "Your graphics hardware may not be fully supported in Ubuntu 14.04." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:250 +#: ../DistUpgrade/DistUpgradeQuirks.py:254 msgid "" "Running the 'unity' desktop environment is not fully supported by your " "graphics hardware. You will maybe end up in a very slow environment after " @@ -913,11 +913,11 @@ "upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:274 +#: ../DistUpgrade/DistUpgradeQuirks.py:278 msgid "Your graphics hardware may not be fully supported in Ubuntu 12.04 LTS." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:276 +#: ../DistUpgrade/DistUpgradeQuirks.py:280 msgid "" "The support in Ubuntu 12.04 LTS for your Intel graphics hardware is limited " "and you may encounter problems after the upgrade. For more information see " @@ -925,13 +925,13 @@ "continue with the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:296 +#: ../DistUpgrade/DistUpgradeQuirks.py:300 msgid "" "Upgrading may reduce desktop effects, and performance in games and other " "graphically intensive programs." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:300 +#: ../DistUpgrade/DistUpgradeQuirks.py:304 msgid "" "This computer is currently using the AMD 'fglrx' graphics driver. No version " "of this driver is available that works with your hardware in Ubuntu 10.04 " @@ -940,12 +940,12 @@ "Do you want to continue?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:339 -#: ../DistUpgrade/DistUpgradeQuirks.py:408 +#: ../DistUpgrade/DistUpgradeQuirks.py:343 +#: ../DistUpgrade/DistUpgradeQuirks.py:412 msgid "Sorry, no more upgrades for this system" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:340 +#: ../DistUpgrade/DistUpgradeQuirks.py:344 #, python-format msgid "" "There will not be any further Ubuntu releases for this system's 'i386' " @@ -954,11 +954,11 @@ "Updates for Ubuntu %s will continue until %s." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:355 +#: ../DistUpgrade/DistUpgradeQuirks.py:359 msgid "No ARMv6 CPU" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:356 +#: ../DistUpgrade/DistUpgradeQuirks.py:360 msgid "" "Your system uses an ARM CPU that is older than the ARMv6 architecture. All " "packages in karmic were built with optimizations requiring ARMv6 as the " @@ -966,12 +966,12 @@ "Ubuntu release with this hardware." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:376 +#: ../DistUpgrade/DistUpgradeQuirks.py:380 msgid "" "Sorry, this storage driver is not supported in kernels for newer releases" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:378 +#: ../DistUpgrade/DistUpgradeQuirks.py:382 #, python-format msgid "" "There will not be any further Ubuntu releases that provide kernel support " @@ -981,7 +981,7 @@ "driver, remove the directory %s and try again." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:409 +#: ../DistUpgrade/DistUpgradeQuirks.py:413 #, python-format msgid "" "There will not be any further Ubuntu releases for this system's POWER8 " @@ -990,11 +990,11 @@ "Updates for Ubuntu %s will continue until %s." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:427 +#: ../DistUpgrade/DistUpgradeQuirks.py:431 msgid "No init available" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:428 +#: ../DistUpgrade/DistUpgradeQuirks.py:432 msgid "" "Your system appears to be a virtualised environment without an init daemon, " "e.g. Linux-VServer. Ubuntu 10.04 LTS cannot function within this type of " @@ -1004,11 +1004,11 @@ "Are you sure you want to continue?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:469 +#: ../DistUpgrade/DistUpgradeQuirks.py:473 msgid "The Robot Operating System (ROS) is installed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:470 +#: ../DistUpgrade/DistUpgradeQuirks.py:474 msgid "" "It appears that ROS is currently installed. Each ROS release is very strict " "about the versions of Ubuntu it supports, and Ubuntu upgrades can fail if " @@ -1025,11 +1025,11 @@ "Are you sure you want to continue?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:670 +#: ../DistUpgrade/DistUpgradeQuirks.py:674 msgid "Connection to the Snap Store failed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:671 +#: ../DistUpgrade/DistUpgradeQuirks.py:675 msgid "" "You have the package lxd installed but your system is unable to reach the " "Snap Store. lxd is now provided via a snap and the release upgrade will fail " @@ -1039,11 +1039,11 @@ "may want to configure a Snap Store proxy." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:686 +#: ../DistUpgrade/DistUpgradeQuirks.py:690 msgid "Connection to Snap Store failed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:687 +#: ../DistUpgrade/DistUpgradeQuirks.py:691 msgid "" "Your system does not have a connection to the Snap Store. For the best " "upgrade experience make sure that your system can connect to api.snapcraft." @@ -1051,11 +1051,11 @@ "Do you still want to continue with the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:696 +#: ../DistUpgrade/DistUpgradeQuirks.py:700 msgid "Outdated snapd package" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:697 +#: ../DistUpgrade/DistUpgradeQuirks.py:701 msgid "" "Your system does not have the latest version of snapd. Please update the " "version of snapd on your system to improve the upgrade experience.\n" @@ -1064,36 +1064,36 @@ #. now perform direct API calls to the store, requesting size #. information for each of the snaps needing installation -#: ../DistUpgrade/DistUpgradeQuirks.py:722 +#: ../DistUpgrade/DistUpgradeQuirks.py:726 msgid "Calculating snap size requirements" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:753 +#: ../DistUpgrade/DistUpgradeQuirks.py:757 msgid "Processing snap replacements" msgstr "" #. TODO: This status should be updated, but the time of #. this change to snap switch is post-translation freeze. -#: ../DistUpgrade/DistUpgradeQuirks.py:761 +#: ../DistUpgrade/DistUpgradeQuirks.py:765 #, python-format msgid "refreshing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:765 +#: ../DistUpgrade/DistUpgradeQuirks.py:769 #, python-format msgid "removing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:768 +#: ../DistUpgrade/DistUpgradeQuirks.py:772 #, python-format msgid "installing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:797 +#: ../DistUpgrade/DistUpgradeQuirks.py:801 msgid "PAE not enabled" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:798 +#: ../DistUpgrade/DistUpgradeQuirks.py:802 msgid "" "Your system uses a CPU that does not have PAE enabled. Ubuntu only supports " "non-PAE systems up to Ubuntu 12.04. To upgrade to a later version of Ubuntu, " @@ -1101,11 +1101,11 @@ "http://help.ubuntu.com/community/EnablingPAE" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1094 +#: ../DistUpgrade/DistUpgradeQuirks.py:1098 msgid "universe component not enabled" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1095 +#: ../DistUpgrade/DistUpgradeQuirks.py:1099 #, python-format msgid "" "You have the package %s installed which is a python2 package. python2 has " @@ -1117,37 +1117,48 @@ "universe component in /etc/apt/sources.list or remove %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1207 +#: ../DistUpgrade/DistUpgradeQuirks.py:1211 msgid "Checking for installed snaps" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1654 +#: ../DistUpgrade/DistUpgradeQuirks.py:1720 msgid "Cannot upgrade this system" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1655 +#: ../DistUpgrade/DistUpgradeQuirks.py:1721 msgid "" "Due to a bug in grub, this system cannot be safely upgraded at this time.\n" "\n" "See https://launchpad.net/bugs/2039172." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1721 +#: ../DistUpgrade/DistUpgradeQuirks.py:1787 #, python-brace-format msgid "Updates for Ubuntu {from_release.version} will " msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1731 +#: ../DistUpgrade/DistUpgradeQuirks.py:1797 msgid "Sorry, cannot upgrade this system to 24.04 LTS" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1734 +#: ../DistUpgrade/DistUpgradeQuirks.py:1800 msgid "" "The Raspberry Pi kernel for Ubuntu 24.04 LTS does not support the armhf " "architecture.\n" "\n" msgstr "" +#: ../DistUpgrade/DistUpgradeQuirks.py:1928 +#, python-brace-format +msgid "Sorry, cannot upgrade this system to {version}" +msgstr "" + +#: ../DistUpgrade/DistUpgradeQuirks.py:1931 +msgid "" +"Upgrades for desktop systems running TPM FDE are not currently supported. " +"Please see https://launchpad.net/bugs/2065229 for more information." +msgstr "" + #: ../DistUpgrade/DistUpgradeMain.py:62 msgid "" "Use frontend. Currently available: \n" diff -Nru ubuntu-release-upgrader-24.04.17/po/gv.po ubuntu-release-upgrader-24.04.18/po/gv.po --- ubuntu-release-upgrader-24.04.17/po/gv.po 2024-04-29 14:26:40.000000000 +0000 +++ ubuntu-release-upgrader-24.04.18/po/gv.po 2024-05-09 19:39:18.000000000 +0000 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2024-04-29 16:03+0200\n" +"POT-Creation-Date: 2024-05-09 15:39-0400\n" "PO-Revision-Date: 2013-05-22 11:00+0000\n" "Last-Translator: Brian Murray \n" "Language-Team: Manx \n" @@ -897,11 +897,11 @@ msgid "Media Change" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:248 +#: ../DistUpgrade/DistUpgradeQuirks.py:252 msgid "Your graphics hardware may not be fully supported in Ubuntu 14.04." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:250 +#: ../DistUpgrade/DistUpgradeQuirks.py:254 msgid "" "Running the 'unity' desktop environment is not fully supported by your " "graphics hardware. You will maybe end up in a very slow environment after " @@ -911,11 +911,11 @@ "upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:274 +#: ../DistUpgrade/DistUpgradeQuirks.py:278 msgid "Your graphics hardware may not be fully supported in Ubuntu 12.04 LTS." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:276 +#: ../DistUpgrade/DistUpgradeQuirks.py:280 msgid "" "The support in Ubuntu 12.04 LTS for your Intel graphics hardware is limited " "and you may encounter problems after the upgrade. For more information see " @@ -923,13 +923,13 @@ "continue with the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:296 +#: ../DistUpgrade/DistUpgradeQuirks.py:300 msgid "" "Upgrading may reduce desktop effects, and performance in games and other " "graphically intensive programs." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:300 +#: ../DistUpgrade/DistUpgradeQuirks.py:304 msgid "" "This computer is currently using the AMD 'fglrx' graphics driver. No version " "of this driver is available that works with your hardware in Ubuntu 10.04 " @@ -938,12 +938,12 @@ "Do you want to continue?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:339 -#: ../DistUpgrade/DistUpgradeQuirks.py:408 +#: ../DistUpgrade/DistUpgradeQuirks.py:343 +#: ../DistUpgrade/DistUpgradeQuirks.py:412 msgid "Sorry, no more upgrades for this system" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:340 +#: ../DistUpgrade/DistUpgradeQuirks.py:344 #, python-format msgid "" "There will not be any further Ubuntu releases for this system's 'i386' " @@ -952,11 +952,11 @@ "Updates for Ubuntu %s will continue until %s." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:355 +#: ../DistUpgrade/DistUpgradeQuirks.py:359 msgid "No ARMv6 CPU" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:356 +#: ../DistUpgrade/DistUpgradeQuirks.py:360 msgid "" "Your system uses an ARM CPU that is older than the ARMv6 architecture. All " "packages in karmic were built with optimizations requiring ARMv6 as the " @@ -964,12 +964,12 @@ "Ubuntu release with this hardware." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:376 +#: ../DistUpgrade/DistUpgradeQuirks.py:380 msgid "" "Sorry, this storage driver is not supported in kernels for newer releases" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:378 +#: ../DistUpgrade/DistUpgradeQuirks.py:382 #, python-format msgid "" "There will not be any further Ubuntu releases that provide kernel support " @@ -979,7 +979,7 @@ "driver, remove the directory %s and try again." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:409 +#: ../DistUpgrade/DistUpgradeQuirks.py:413 #, python-format msgid "" "There will not be any further Ubuntu releases for this system's POWER8 " @@ -988,11 +988,11 @@ "Updates for Ubuntu %s will continue until %s." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:427 +#: ../DistUpgrade/DistUpgradeQuirks.py:431 msgid "No init available" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:428 +#: ../DistUpgrade/DistUpgradeQuirks.py:432 msgid "" "Your system appears to be a virtualised environment without an init daemon, " "e.g. Linux-VServer. Ubuntu 10.04 LTS cannot function within this type of " @@ -1002,11 +1002,11 @@ "Are you sure you want to continue?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:469 +#: ../DistUpgrade/DistUpgradeQuirks.py:473 msgid "The Robot Operating System (ROS) is installed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:470 +#: ../DistUpgrade/DistUpgradeQuirks.py:474 msgid "" "It appears that ROS is currently installed. Each ROS release is very strict " "about the versions of Ubuntu it supports, and Ubuntu upgrades can fail if " @@ -1023,11 +1023,11 @@ "Are you sure you want to continue?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:670 +#: ../DistUpgrade/DistUpgradeQuirks.py:674 msgid "Connection to the Snap Store failed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:671 +#: ../DistUpgrade/DistUpgradeQuirks.py:675 msgid "" "You have the package lxd installed but your system is unable to reach the " "Snap Store. lxd is now provided via a snap and the release upgrade will fail " @@ -1037,11 +1037,11 @@ "may want to configure a Snap Store proxy." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:686 +#: ../DistUpgrade/DistUpgradeQuirks.py:690 msgid "Connection to Snap Store failed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:687 +#: ../DistUpgrade/DistUpgradeQuirks.py:691 msgid "" "Your system does not have a connection to the Snap Store. For the best " "upgrade experience make sure that your system can connect to api.snapcraft." @@ -1049,11 +1049,11 @@ "Do you still want to continue with the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:696 +#: ../DistUpgrade/DistUpgradeQuirks.py:700 msgid "Outdated snapd package" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:697 +#: ../DistUpgrade/DistUpgradeQuirks.py:701 msgid "" "Your system does not have the latest version of snapd. Please update the " "version of snapd on your system to improve the upgrade experience.\n" @@ -1062,36 +1062,36 @@ #. now perform direct API calls to the store, requesting size #. information for each of the snaps needing installation -#: ../DistUpgrade/DistUpgradeQuirks.py:722 +#: ../DistUpgrade/DistUpgradeQuirks.py:726 msgid "Calculating snap size requirements" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:753 +#: ../DistUpgrade/DistUpgradeQuirks.py:757 msgid "Processing snap replacements" msgstr "" #. TODO: This status should be updated, but the time of #. this change to snap switch is post-translation freeze. -#: ../DistUpgrade/DistUpgradeQuirks.py:761 +#: ../DistUpgrade/DistUpgradeQuirks.py:765 #, python-format msgid "refreshing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:765 +#: ../DistUpgrade/DistUpgradeQuirks.py:769 #, python-format msgid "removing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:768 +#: ../DistUpgrade/DistUpgradeQuirks.py:772 #, python-format msgid "installing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:797 +#: ../DistUpgrade/DistUpgradeQuirks.py:801 msgid "PAE not enabled" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:798 +#: ../DistUpgrade/DistUpgradeQuirks.py:802 msgid "" "Your system uses a CPU that does not have PAE enabled. Ubuntu only supports " "non-PAE systems up to Ubuntu 12.04. To upgrade to a later version of Ubuntu, " @@ -1099,11 +1099,11 @@ "http://help.ubuntu.com/community/EnablingPAE" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1094 +#: ../DistUpgrade/DistUpgradeQuirks.py:1098 msgid "universe component not enabled" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1095 +#: ../DistUpgrade/DistUpgradeQuirks.py:1099 #, python-format msgid "" "You have the package %s installed which is a python2 package. python2 has " @@ -1115,37 +1115,48 @@ "universe component in /etc/apt/sources.list or remove %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1207 +#: ../DistUpgrade/DistUpgradeQuirks.py:1211 msgid "Checking for installed snaps" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1654 +#: ../DistUpgrade/DistUpgradeQuirks.py:1720 msgid "Cannot upgrade this system" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1655 +#: ../DistUpgrade/DistUpgradeQuirks.py:1721 msgid "" "Due to a bug in grub, this system cannot be safely upgraded at this time.\n" "\n" "See https://launchpad.net/bugs/2039172." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1721 +#: ../DistUpgrade/DistUpgradeQuirks.py:1787 #, python-brace-format msgid "Updates for Ubuntu {from_release.version} will " msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1731 +#: ../DistUpgrade/DistUpgradeQuirks.py:1797 msgid "Sorry, cannot upgrade this system to 24.04 LTS" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1734 +#: ../DistUpgrade/DistUpgradeQuirks.py:1800 msgid "" "The Raspberry Pi kernel for Ubuntu 24.04 LTS does not support the armhf " "architecture.\n" "\n" msgstr "" +#: ../DistUpgrade/DistUpgradeQuirks.py:1928 +#, python-brace-format +msgid "Sorry, cannot upgrade this system to {version}" +msgstr "" + +#: ../DistUpgrade/DistUpgradeQuirks.py:1931 +msgid "" +"Upgrades for desktop systems running TPM FDE are not currently supported. " +"Please see https://launchpad.net/bugs/2065229 for more information." +msgstr "" + #: ../DistUpgrade/DistUpgradeMain.py:62 msgid "" "Use frontend. Currently available: \n" diff -Nru ubuntu-release-upgrader-24.04.17/po/he.po ubuntu-release-upgrader-24.04.18/po/he.po --- ubuntu-release-upgrader-24.04.17/po/he.po 2024-04-29 14:26:40.000000000 +0000 +++ ubuntu-release-upgrader-24.04.18/po/he.po 2024-05-09 19:39:18.000000000 +0000 @@ -11,7 +11,7 @@ msgstr "" "Project-Id-Version: update-manager.HEAD\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2024-04-29 16:03+0200\n" +"POT-Creation-Date: 2024-05-09 15:39-0400\n" "PO-Revision-Date: 2019-06-18 17:55+0000\n" "Last-Translator: Yaron \n" "Language-Team: Hebrew \n" @@ -1022,11 +1022,11 @@ msgid "Media Change" msgstr "החלפת מדיה" -#: ../DistUpgrade/DistUpgradeQuirks.py:248 +#: ../DistUpgrade/DistUpgradeQuirks.py:252 msgid "Your graphics hardware may not be fully supported in Ubuntu 14.04." msgstr "יתכן שהחומרה הגרפית שלך אינה נתמכת במלואה באובונטו 14.04." -#: ../DistUpgrade/DistUpgradeQuirks.py:250 +#: ../DistUpgrade/DistUpgradeQuirks.py:254 msgid "" "Running the 'unity' desktop environment is not fully supported by your " "graphics hardware. You will maybe end up in a very slow environment after " @@ -1041,13 +1041,13 @@ "wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForUnity3D, האם בכל זאת להמשיך " "בשדרוג?" -#: ../DistUpgrade/DistUpgradeQuirks.py:274 +#: ../DistUpgrade/DistUpgradeQuirks.py:278 msgid "Your graphics hardware may not be fully supported in Ubuntu 12.04 LTS." msgstr "" "חומרת הגרפיקה שלך אינה נתמכת במלואה על ידי אובונטו 12.04 עם תמיכה לטווח ארוך " "(LTS)." -#: ../DistUpgrade/DistUpgradeQuirks.py:276 +#: ../DistUpgrade/DistUpgradeQuirks.py:280 msgid "" "The support in Ubuntu 12.04 LTS for your Intel graphics hardware is limited " "and you may encounter problems after the upgrade. For more information see " @@ -1058,7 +1058,7 @@ "בעיות לאחר השדרוג. למידע נוסף יש לעיין בכתובת https://wiki.ubuntu.com/X/Bugs/" "UpdateManagerWarningForI8xx האם ברצונך להמשיך בשדרוג?" -#: ../DistUpgrade/DistUpgradeQuirks.py:296 +#: ../DistUpgrade/DistUpgradeQuirks.py:300 msgid "" "Upgrading may reduce desktop effects, and performance in games and other " "graphically intensive programs." @@ -1066,7 +1066,7 @@ "שדרוג עלול לפגוע באפקטים של שולחן העבודה ובביצועים של משחקים ותכניות עמוסות " "מבחינה גרפית." -#: ../DistUpgrade/DistUpgradeQuirks.py:300 +#: ../DistUpgrade/DistUpgradeQuirks.py:304 msgid "" "This computer is currently using the AMD 'fglrx' graphics driver. No version " "of this driver is available that works with your hardware in Ubuntu 10.04 " @@ -1079,12 +1079,12 @@ "\n" "האם ברצונך להמשיך?" -#: ../DistUpgrade/DistUpgradeQuirks.py:339 -#: ../DistUpgrade/DistUpgradeQuirks.py:408 +#: ../DistUpgrade/DistUpgradeQuirks.py:343 +#: ../DistUpgrade/DistUpgradeQuirks.py:412 msgid "Sorry, no more upgrades for this system" msgstr "אין עוד עדכונים למערכת הזאת, עמך הסליחה" -#: ../DistUpgrade/DistUpgradeQuirks.py:340 +#: ../DistUpgrade/DistUpgradeQuirks.py:344 #, python-format msgid "" "There will not be any further Ubuntu releases for this system's 'i386' " @@ -1096,11 +1096,11 @@ "\n" "עדכונים לאובונטו %s יימשכו עד %s." -#: ../DistUpgrade/DistUpgradeQuirks.py:355 +#: ../DistUpgrade/DistUpgradeQuirks.py:359 msgid "No ARMv6 CPU" msgstr "אין מעבד מסוג ARMv6" -#: ../DistUpgrade/DistUpgradeQuirks.py:356 +#: ../DistUpgrade/DistUpgradeQuirks.py:360 msgid "" "Your system uses an ARM CPU that is older than the ARMv6 architecture. All " "packages in karmic were built with optimizations requiring ARMv6 as the " @@ -1111,12 +1111,12 @@ "החבילות ב־Karmic נבנו עם שיפורים מיוחדים הדורשים את ARMv6 כארכיטקטורה " "מינימלית. לא ניתן לשדרג את המערכת להפצת אובונטו חדשה עם חומרה זו." -#: ../DistUpgrade/DistUpgradeQuirks.py:376 +#: ../DistUpgrade/DistUpgradeQuirks.py:380 msgid "" "Sorry, this storage driver is not supported in kernels for newer releases" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:378 +#: ../DistUpgrade/DistUpgradeQuirks.py:382 #, python-format msgid "" "There will not be any further Ubuntu releases that provide kernel support " @@ -1126,7 +1126,7 @@ "driver, remove the directory %s and try again." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:409 +#: ../DistUpgrade/DistUpgradeQuirks.py:413 #, fuzzy, python-format msgid "" "There will not be any further Ubuntu releases for this system's POWER8 " @@ -1138,11 +1138,11 @@ "\n" "עדכונים לאובונטו %s יימשכו עד %s." -#: ../DistUpgrade/DistUpgradeQuirks.py:427 +#: ../DistUpgrade/DistUpgradeQuirks.py:431 msgid "No init available" msgstr "אין init זמין" -#: ../DistUpgrade/DistUpgradeQuirks.py:428 +#: ../DistUpgrade/DistUpgradeQuirks.py:432 msgid "" "Your system appears to be a virtualised environment without an init daemon, " "e.g. Linux-VServer. Ubuntu 10.04 LTS cannot function within this type of " @@ -1157,11 +1157,11 @@ "\n" "האם ברצונך להמשיך?" -#: ../DistUpgrade/DistUpgradeQuirks.py:469 +#: ../DistUpgrade/DistUpgradeQuirks.py:473 msgid "The Robot Operating System (ROS) is installed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:470 +#: ../DistUpgrade/DistUpgradeQuirks.py:474 msgid "" "It appears that ROS is currently installed. Each ROS release is very strict " "about the versions of Ubuntu it supports, and Ubuntu upgrades can fail if " @@ -1178,12 +1178,12 @@ "Are you sure you want to continue?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:670 +#: ../DistUpgrade/DistUpgradeQuirks.py:674 #, fuzzy msgid "Connection to the Snap Store failed" msgstr "החיבור לחנות ה־Snap נכשלה" -#: ../DistUpgrade/DistUpgradeQuirks.py:671 +#: ../DistUpgrade/DistUpgradeQuirks.py:675 msgid "" "You have the package lxd installed but your system is unable to reach the " "Snap Store. lxd is now provided via a snap and the release upgrade will fail " @@ -1193,11 +1193,11 @@ "may want to configure a Snap Store proxy." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:686 +#: ../DistUpgrade/DistUpgradeQuirks.py:690 msgid "Connection to Snap Store failed" msgstr "החיבור לחנות ה־Snap נכשלה" -#: ../DistUpgrade/DistUpgradeQuirks.py:687 +#: ../DistUpgrade/DistUpgradeQuirks.py:691 msgid "" "Your system does not have a connection to the Snap Store. For the best " "upgrade experience make sure that your system can connect to api.snapcraft." @@ -1207,11 +1207,11 @@ "למערכת שלך אין קשר אל חנות ה־Snap. לקבלת חוויית השדרוג הטובה ביותר נא לוודא " "שלמערכת שלך יש גישה אל api.snapcraft.io.ֿ" -#: ../DistUpgrade/DistUpgradeQuirks.py:696 +#: ../DistUpgrade/DistUpgradeQuirks.py:700 msgid "Outdated snapd package" msgstr "חבילת snapd שתוקפה פג." -#: ../DistUpgrade/DistUpgradeQuirks.py:697 +#: ../DistUpgrade/DistUpgradeQuirks.py:701 msgid "" "Your system does not have the latest version of snapd. Please update the " "version of snapd on your system to improve the upgrade experience.\n" @@ -1223,36 +1223,36 @@ #. now perform direct API calls to the store, requesting size #. information for each of the snaps needing installation -#: ../DistUpgrade/DistUpgradeQuirks.py:722 +#: ../DistUpgrade/DistUpgradeQuirks.py:726 msgid "Calculating snap size requirements" msgstr "דרישות גודל ה־snap מחושבות" -#: ../DistUpgrade/DistUpgradeQuirks.py:753 +#: ../DistUpgrade/DistUpgradeQuirks.py:757 msgid "Processing snap replacements" msgstr "החלפות ה־snap עוברות עיבוד" #. TODO: This status should be updated, but the time of #. this change to snap switch is post-translation freeze. -#: ../DistUpgrade/DistUpgradeQuirks.py:761 +#: ../DistUpgrade/DistUpgradeQuirks.py:765 #, python-format msgid "refreshing snap %s" msgstr "ה־snap‏ %s מתרענן" -#: ../DistUpgrade/DistUpgradeQuirks.py:765 +#: ../DistUpgrade/DistUpgradeQuirks.py:769 #, fuzzy, python-format msgid "removing snap %s" msgstr "ה־snap‏ %s מתרענן" -#: ../DistUpgrade/DistUpgradeQuirks.py:768 +#: ../DistUpgrade/DistUpgradeQuirks.py:772 #, python-format msgid "installing snap %s" msgstr "ה־snap‏ %s מותקן" -#: ../DistUpgrade/DistUpgradeQuirks.py:797 +#: ../DistUpgrade/DistUpgradeQuirks.py:801 msgid "PAE not enabled" msgstr "PAE לא מופעל" -#: ../DistUpgrade/DistUpgradeQuirks.py:798 +#: ../DistUpgrade/DistUpgradeQuirks.py:802 msgid "" "Your system uses a CPU that does not have PAE enabled. Ubuntu only supports " "non-PAE systems up to Ubuntu 12.04. To upgrade to a later version of Ubuntu, " @@ -1264,11 +1264,11 @@ "להפעיל PAE (אם ניתן) בעזרת ההנחיות הבאות:\n" "http://help.ubuntu.com/community/EnablingPAE" -#: ../DistUpgrade/DistUpgradeQuirks.py:1094 +#: ../DistUpgrade/DistUpgradeQuirks.py:1098 msgid "universe component not enabled" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1095 +#: ../DistUpgrade/DistUpgradeQuirks.py:1099 #, python-format msgid "" "You have the package %s installed which is a python2 package. python2 has " @@ -1280,39 +1280,50 @@ "universe component in /etc/apt/sources.list or remove %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1207 +#: ../DistUpgrade/DistUpgradeQuirks.py:1211 msgid "Checking for installed snaps" msgstr "ה־snaps המותקנים שלך נבדקים" -#: ../DistUpgrade/DistUpgradeQuirks.py:1654 +#: ../DistUpgrade/DistUpgradeQuirks.py:1720 #, fuzzy msgid "Cannot upgrade this system" msgstr "לא ניתן לשדרג" -#: ../DistUpgrade/DistUpgradeQuirks.py:1655 +#: ../DistUpgrade/DistUpgradeQuirks.py:1721 msgid "" "Due to a bug in grub, this system cannot be safely upgraded at this time.\n" "\n" "See https://launchpad.net/bugs/2039172." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1721 +#: ../DistUpgrade/DistUpgradeQuirks.py:1787 #, python-brace-format msgid "Updates for Ubuntu {from_release.version} will " msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1731 +#: ../DistUpgrade/DistUpgradeQuirks.py:1797 #, fuzzy msgid "Sorry, cannot upgrade this system to 24.04 LTS" msgstr "לא ניתן לשדרג" -#: ../DistUpgrade/DistUpgradeQuirks.py:1734 +#: ../DistUpgrade/DistUpgradeQuirks.py:1800 msgid "" "The Raspberry Pi kernel for Ubuntu 24.04 LTS does not support the armhf " "architecture.\n" "\n" msgstr "" +#: ../DistUpgrade/DistUpgradeQuirks.py:1928 +#, fuzzy, python-brace-format +msgid "Sorry, cannot upgrade this system to {version}" +msgstr "לא ניתן לשדרג" + +#: ../DistUpgrade/DistUpgradeQuirks.py:1931 +msgid "" +"Upgrades for desktop systems running TPM FDE are not currently supported. " +"Please see https://launchpad.net/bugs/2065229 for more information." +msgstr "" + #: ../DistUpgrade/DistUpgradeMain.py:62 msgid "" "Use frontend. Currently available: \n" diff -Nru ubuntu-release-upgrader-24.04.17/po/hi.po ubuntu-release-upgrader-24.04.18/po/hi.po --- ubuntu-release-upgrader-24.04.17/po/hi.po 2024-04-29 14:26:40.000000000 +0000 +++ ubuntu-release-upgrader-24.04.18/po/hi.po 2024-05-09 19:39:18.000000000 +0000 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2024-04-29 16:03+0200\n" +"POT-Creation-Date: 2024-05-09 15:39-0400\n" "PO-Revision-Date: 2013-05-22 11:00+0000\n" "Last-Translator: Manish Kumar \n" "Language-Team: Hindi \n" @@ -956,11 +956,11 @@ msgid "Media Change" msgstr "मिडिया परिवर्तन" -#: ../DistUpgrade/DistUpgradeQuirks.py:248 +#: ../DistUpgrade/DistUpgradeQuirks.py:252 msgid "Your graphics hardware may not be fully supported in Ubuntu 14.04." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:250 +#: ../DistUpgrade/DistUpgradeQuirks.py:254 msgid "" "Running the 'unity' desktop environment is not fully supported by your " "graphics hardware. You will maybe end up in a very slow environment after " @@ -970,11 +970,11 @@ "upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:274 +#: ../DistUpgrade/DistUpgradeQuirks.py:278 msgid "Your graphics hardware may not be fully supported in Ubuntu 12.04 LTS." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:276 +#: ../DistUpgrade/DistUpgradeQuirks.py:280 msgid "" "The support in Ubuntu 12.04 LTS for your Intel graphics hardware is limited " "and you may encounter problems after the upgrade. For more information see " @@ -982,7 +982,7 @@ "continue with the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:296 +#: ../DistUpgrade/DistUpgradeQuirks.py:300 msgid "" "Upgrading may reduce desktop effects, and performance in games and other " "graphically intensive programs." @@ -990,7 +990,7 @@ "अद्यतन डेक्सटाप तथा खेल निष्पादन तथा अन्य चित्रादि वाले कार्यक्रम को के प्रभाव को कम कर " "देगा." -#: ../DistUpgrade/DistUpgradeQuirks.py:300 +#: ../DistUpgrade/DistUpgradeQuirks.py:304 msgid "" "This computer is currently using the AMD 'fglrx' graphics driver. No version " "of this driver is available that works with your hardware in Ubuntu 10.04 " @@ -1003,12 +1003,12 @@ "\n" "क्या आप आगे बढ़ना चाहते हैं?" -#: ../DistUpgrade/DistUpgradeQuirks.py:339 -#: ../DistUpgrade/DistUpgradeQuirks.py:408 +#: ../DistUpgrade/DistUpgradeQuirks.py:343 +#: ../DistUpgrade/DistUpgradeQuirks.py:412 msgid "Sorry, no more upgrades for this system" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:340 +#: ../DistUpgrade/DistUpgradeQuirks.py:344 #, python-format msgid "" "There will not be any further Ubuntu releases for this system's 'i386' " @@ -1017,11 +1017,11 @@ "Updates for Ubuntu %s will continue until %s." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:355 +#: ../DistUpgrade/DistUpgradeQuirks.py:359 msgid "No ARMv6 CPU" msgstr "ARMv6 सीपीयु नहीं है" -#: ../DistUpgrade/DistUpgradeQuirks.py:356 +#: ../DistUpgrade/DistUpgradeQuirks.py:360 msgid "" "Your system uses an ARM CPU that is older than the ARMv6 architecture. All " "packages in karmic were built with optimizations requiring ARMv6 as the " @@ -1033,12 +1033,12 @@ "आवश्यकता होगी. इन हार्डवेयर के साथ उबुन्टू के नए प्रकाशन द्वारा अपने तंत्र को उन्नत करना " "संभव नहीं है." -#: ../DistUpgrade/DistUpgradeQuirks.py:376 +#: ../DistUpgrade/DistUpgradeQuirks.py:380 msgid "" "Sorry, this storage driver is not supported in kernels for newer releases" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:378 +#: ../DistUpgrade/DistUpgradeQuirks.py:382 #, python-format msgid "" "There will not be any further Ubuntu releases that provide kernel support " @@ -1048,7 +1048,7 @@ "driver, remove the directory %s and try again." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:409 +#: ../DistUpgrade/DistUpgradeQuirks.py:413 #, python-format msgid "" "There will not be any further Ubuntu releases for this system's POWER8 " @@ -1057,11 +1057,11 @@ "Updates for Ubuntu %s will continue until %s." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:427 +#: ../DistUpgrade/DistUpgradeQuirks.py:431 msgid "No init available" msgstr "init उपलब्ध नहीं है" -#: ../DistUpgrade/DistUpgradeQuirks.py:428 +#: ../DistUpgrade/DistUpgradeQuirks.py:432 msgid "" "Your system appears to be a virtualised environment without an init daemon, " "e.g. Linux-VServer. Ubuntu 10.04 LTS cannot function within this type of " @@ -1074,11 +1074,11 @@ "है. उबुन्टू 10.04 LTS इस प्रकार के वातावरण में कार्य नहीं कर सकता, पहले अपने आभासी मशीन " "को अद्यतन करने की जरुरत है." -#: ../DistUpgrade/DistUpgradeQuirks.py:469 +#: ../DistUpgrade/DistUpgradeQuirks.py:473 msgid "The Robot Operating System (ROS) is installed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:470 +#: ../DistUpgrade/DistUpgradeQuirks.py:474 msgid "" "It appears that ROS is currently installed. Each ROS release is very strict " "about the versions of Ubuntu it supports, and Ubuntu upgrades can fail if " @@ -1095,11 +1095,11 @@ "Are you sure you want to continue?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:670 +#: ../DistUpgrade/DistUpgradeQuirks.py:674 msgid "Connection to the Snap Store failed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:671 +#: ../DistUpgrade/DistUpgradeQuirks.py:675 msgid "" "You have the package lxd installed but your system is unable to reach the " "Snap Store. lxd is now provided via a snap and the release upgrade will fail " @@ -1109,11 +1109,11 @@ "may want to configure a Snap Store proxy." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:686 +#: ../DistUpgrade/DistUpgradeQuirks.py:690 msgid "Connection to Snap Store failed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:687 +#: ../DistUpgrade/DistUpgradeQuirks.py:691 msgid "" "Your system does not have a connection to the Snap Store. For the best " "upgrade experience make sure that your system can connect to api.snapcraft." @@ -1121,11 +1121,11 @@ "Do you still want to continue with the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:696 +#: ../DistUpgrade/DistUpgradeQuirks.py:700 msgid "Outdated snapd package" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:697 +#: ../DistUpgrade/DistUpgradeQuirks.py:701 msgid "" "Your system does not have the latest version of snapd. Please update the " "version of snapd on your system to improve the upgrade experience.\n" @@ -1134,36 +1134,36 @@ #. now perform direct API calls to the store, requesting size #. information for each of the snaps needing installation -#: ../DistUpgrade/DistUpgradeQuirks.py:722 +#: ../DistUpgrade/DistUpgradeQuirks.py:726 msgid "Calculating snap size requirements" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:753 +#: ../DistUpgrade/DistUpgradeQuirks.py:757 msgid "Processing snap replacements" msgstr "" #. TODO: This status should be updated, but the time of #. this change to snap switch is post-translation freeze. -#: ../DistUpgrade/DistUpgradeQuirks.py:761 +#: ../DistUpgrade/DistUpgradeQuirks.py:765 #, python-format msgid "refreshing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:765 +#: ../DistUpgrade/DistUpgradeQuirks.py:769 #, python-format msgid "removing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:768 +#: ../DistUpgrade/DistUpgradeQuirks.py:772 #, python-format msgid "installing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:797 +#: ../DistUpgrade/DistUpgradeQuirks.py:801 msgid "PAE not enabled" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:798 +#: ../DistUpgrade/DistUpgradeQuirks.py:802 msgid "" "Your system uses a CPU that does not have PAE enabled. Ubuntu only supports " "non-PAE systems up to Ubuntu 12.04. To upgrade to a later version of Ubuntu, " @@ -1171,11 +1171,11 @@ "http://help.ubuntu.com/community/EnablingPAE" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1094 +#: ../DistUpgrade/DistUpgradeQuirks.py:1098 msgid "universe component not enabled" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1095 +#: ../DistUpgrade/DistUpgradeQuirks.py:1099 #, python-format msgid "" "You have the package %s installed which is a python2 package. python2 has " @@ -1187,39 +1187,50 @@ "universe component in /etc/apt/sources.list or remove %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1207 +#: ../DistUpgrade/DistUpgradeQuirks.py:1211 msgid "Checking for installed snaps" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1654 +#: ../DistUpgrade/DistUpgradeQuirks.py:1720 #, fuzzy msgid "Cannot upgrade this system" msgstr "अद्यतन नहीं हो सका" -#: ../DistUpgrade/DistUpgradeQuirks.py:1655 +#: ../DistUpgrade/DistUpgradeQuirks.py:1721 msgid "" "Due to a bug in grub, this system cannot be safely upgraded at this time.\n" "\n" "See https://launchpad.net/bugs/2039172." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1721 +#: ../DistUpgrade/DistUpgradeQuirks.py:1787 #, python-brace-format msgid "Updates for Ubuntu {from_release.version} will " msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1731 +#: ../DistUpgrade/DistUpgradeQuirks.py:1797 #, fuzzy msgid "Sorry, cannot upgrade this system to 24.04 LTS" msgstr "अद्यतन नहीं हो सका" -#: ../DistUpgrade/DistUpgradeQuirks.py:1734 +#: ../DistUpgrade/DistUpgradeQuirks.py:1800 msgid "" "The Raspberry Pi kernel for Ubuntu 24.04 LTS does not support the armhf " "architecture.\n" "\n" msgstr "" +#: ../DistUpgrade/DistUpgradeQuirks.py:1928 +#, fuzzy, python-brace-format +msgid "Sorry, cannot upgrade this system to {version}" +msgstr "अद्यतन नहीं हो सका" + +#: ../DistUpgrade/DistUpgradeQuirks.py:1931 +msgid "" +"Upgrades for desktop systems running TPM FDE are not currently supported. " +"Please see https://launchpad.net/bugs/2065229 for more information." +msgstr "" + #: ../DistUpgrade/DistUpgradeMain.py:62 msgid "" "Use frontend. Currently available: \n" diff -Nru ubuntu-release-upgrader-24.04.17/po/hr.po ubuntu-release-upgrader-24.04.18/po/hr.po --- ubuntu-release-upgrader-24.04.17/po/hr.po 2024-04-29 14:26:40.000000000 +0000 +++ ubuntu-release-upgrader-24.04.18/po/hr.po 2024-05-09 19:39:18.000000000 +0000 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2024-04-29 16:03+0200\n" +"POT-Creation-Date: 2024-05-09 15:39-0400\n" "PO-Revision-Date: 2019-06-18 17:51+0000\n" "Last-Translator: Brian Murray \n" "Language-Team: Croatian \n" @@ -1087,11 +1087,11 @@ msgid "Media Change" msgstr "Promjena medija" -#: ../DistUpgrade/DistUpgradeQuirks.py:248 +#: ../DistUpgrade/DistUpgradeQuirks.py:252 msgid "Your graphics hardware may not be fully supported in Ubuntu 14.04." msgstr "Vaš grafički hardver možda neće biti potpuno podržan u Ubuntu 14.04." -#: ../DistUpgrade/DistUpgradeQuirks.py:250 +#: ../DistUpgrade/DistUpgradeQuirks.py:254 msgid "" "Running the 'unity' desktop environment is not fully supported by your " "graphics hardware. You will maybe end up in a very slow environment after " @@ -1106,13 +1106,13 @@ "informacija pogledajte https://wiki.ubuntu.com/X/Bugs/" "UpdateManagerWarningForUnity3D Želite li još uvijek nastaviti s nadogradnjom?" -#: ../DistUpgrade/DistUpgradeQuirks.py:274 +#: ../DistUpgrade/DistUpgradeQuirks.py:278 msgid "Your graphics hardware may not be fully supported in Ubuntu 12.04 LTS." msgstr "" "Vaš grafički hardver možda neće biti u potpunosti podržan u Ubuntuu 12.04 " "LTS." -#: ../DistUpgrade/DistUpgradeQuirks.py:276 +#: ../DistUpgrade/DistUpgradeQuirks.py:280 msgid "" "The support in Ubuntu 12.04 LTS for your Intel graphics hardware is limited " "and you may encounter problems after the upgrade. For more information see " @@ -1124,7 +1124,7 @@ "posjetite https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForI8xx Želite " "li nastaviti s nadogradnjom?" -#: ../DistUpgrade/DistUpgradeQuirks.py:296 +#: ../DistUpgrade/DistUpgradeQuirks.py:300 msgid "" "Upgrading may reduce desktop effects, and performance in games and other " "graphically intensive programs." @@ -1132,7 +1132,7 @@ "Nadogradnja može umanjiti efekte radne površine i performanse u igrama i " "ostalim grafički zahtjevnim programima." -#: ../DistUpgrade/DistUpgradeQuirks.py:300 +#: ../DistUpgrade/DistUpgradeQuirks.py:304 msgid "" "This computer is currently using the AMD 'fglrx' graphics driver. No version " "of this driver is available that works with your hardware in Ubuntu 10.04 " @@ -1146,12 +1146,12 @@ "\n" "Želite li nastaviti?" -#: ../DistUpgrade/DistUpgradeQuirks.py:339 -#: ../DistUpgrade/DistUpgradeQuirks.py:408 +#: ../DistUpgrade/DistUpgradeQuirks.py:343 +#: ../DistUpgrade/DistUpgradeQuirks.py:412 msgid "Sorry, no more upgrades for this system" msgstr "Nažalost, više nema nadopuna za ovaj sustav" -#: ../DistUpgrade/DistUpgradeQuirks.py:340 +#: ../DistUpgrade/DistUpgradeQuirks.py:344 #, python-format msgid "" "There will not be any further Ubuntu releases for this system's 'i386' " @@ -1164,11 +1164,11 @@ "\n" "Nadopune za Ubuntu %s će se nastaviti do %s." -#: ../DistUpgrade/DistUpgradeQuirks.py:355 +#: ../DistUpgrade/DistUpgradeQuirks.py:359 msgid "No ARMv6 CPU" msgstr "Nedostaje ARMv6 procesor" -#: ../DistUpgrade/DistUpgradeQuirks.py:356 +#: ../DistUpgrade/DistUpgradeQuirks.py:360 msgid "" "Your system uses an ARM CPU that is older than the ARMv6 architecture. All " "packages in karmic were built with optimizations requiring ARMv6 as the " @@ -1180,12 +1180,12 @@ "minimalnu arhitekturu. Nadogradnja vašeg sustava na novo izdanje Ubuntua " "nije moguće na ovom hardveru." -#: ../DistUpgrade/DistUpgradeQuirks.py:376 +#: ../DistUpgrade/DistUpgradeQuirks.py:380 msgid "" "Sorry, this storage driver is not supported in kernels for newer releases" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:378 +#: ../DistUpgrade/DistUpgradeQuirks.py:382 #, python-format msgid "" "There will not be any further Ubuntu releases that provide kernel support " @@ -1195,7 +1195,7 @@ "driver, remove the directory %s and try again." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:409 +#: ../DistUpgrade/DistUpgradeQuirks.py:413 #, fuzzy, python-format msgid "" "There will not be any further Ubuntu releases for this system's POWER8 " @@ -1208,11 +1208,11 @@ "\n" "Nadopune za Ubuntu %s će se nastaviti do %s." -#: ../DistUpgrade/DistUpgradeQuirks.py:427 +#: ../DistUpgrade/DistUpgradeQuirks.py:431 msgid "No init available" msgstr "Nema dostupnog inita" -#: ../DistUpgrade/DistUpgradeQuirks.py:428 +#: ../DistUpgrade/DistUpgradeQuirks.py:432 msgid "" "Your system appears to be a virtualised environment without an init daemon, " "e.g. Linux-VServer. Ubuntu 10.04 LTS cannot function within this type of " @@ -1228,11 +1228,11 @@ "\n" "Želite li nastaviti?" -#: ../DistUpgrade/DistUpgradeQuirks.py:469 +#: ../DistUpgrade/DistUpgradeQuirks.py:473 msgid "The Robot Operating System (ROS) is installed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:470 +#: ../DistUpgrade/DistUpgradeQuirks.py:474 msgid "" "It appears that ROS is currently installed. Each ROS release is very strict " "about the versions of Ubuntu it supports, and Ubuntu upgrades can fail if " @@ -1249,12 +1249,12 @@ "Are you sure you want to continue?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:670 +#: ../DistUpgrade/DistUpgradeQuirks.py:674 #, fuzzy msgid "Connection to the Snap Store failed" msgstr "Povezivanje sa Snap trogvinom neuspjelo" -#: ../DistUpgrade/DistUpgradeQuirks.py:671 +#: ../DistUpgrade/DistUpgradeQuirks.py:675 msgid "" "You have the package lxd installed but your system is unable to reach the " "Snap Store. lxd is now provided via a snap and the release upgrade will fail " @@ -1264,11 +1264,11 @@ "may want to configure a Snap Store proxy." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:686 +#: ../DistUpgrade/DistUpgradeQuirks.py:690 msgid "Connection to Snap Store failed" msgstr "Povezivanje sa Snap trogvinom neuspjelo" -#: ../DistUpgrade/DistUpgradeQuirks.py:687 +#: ../DistUpgrade/DistUpgradeQuirks.py:691 msgid "" "Your system does not have a connection to the Snap Store. For the best " "upgrade experience make sure that your system can connect to api.snapcraft." @@ -1279,11 +1279,11 @@ "da je vaš sustav povezan sa api.snapcraft.io.\n" "Sigurno želite nastaviti sa nadopunom?" -#: ../DistUpgrade/DistUpgradeQuirks.py:696 +#: ../DistUpgrade/DistUpgradeQuirks.py:700 msgid "Outdated snapd package" msgstr "Zastarjeli snapd paketi" -#: ../DistUpgrade/DistUpgradeQuirks.py:697 +#: ../DistUpgrade/DistUpgradeQuirks.py:701 msgid "" "Your system does not have the latest version of snapd. Please update the " "version of snapd on your system to improve the upgrade experience.\n" @@ -1295,36 +1295,36 @@ #. now perform direct API calls to the store, requesting size #. information for each of the snaps needing installation -#: ../DistUpgrade/DistUpgradeQuirks.py:722 +#: ../DistUpgrade/DistUpgradeQuirks.py:726 msgid "Calculating snap size requirements" msgstr "Izračunavanje potrebne veličine snap paketa" -#: ../DistUpgrade/DistUpgradeQuirks.py:753 +#: ../DistUpgrade/DistUpgradeQuirks.py:757 msgid "Processing snap replacements" msgstr "Obrada zamjene snap paketa" #. TODO: This status should be updated, but the time of #. this change to snap switch is post-translation freeze. -#: ../DistUpgrade/DistUpgradeQuirks.py:761 +#: ../DistUpgrade/DistUpgradeQuirks.py:765 #, python-format msgid "refreshing snap %s" msgstr "osvježavanje snap paketa %s" -#: ../DistUpgrade/DistUpgradeQuirks.py:765 +#: ../DistUpgrade/DistUpgradeQuirks.py:769 #, fuzzy, python-format msgid "removing snap %s" msgstr "osvježavanje snap paketa %s" -#: ../DistUpgrade/DistUpgradeQuirks.py:768 +#: ../DistUpgrade/DistUpgradeQuirks.py:772 #, python-format msgid "installing snap %s" msgstr "instalacija snap paketa %s" -#: ../DistUpgrade/DistUpgradeQuirks.py:797 +#: ../DistUpgrade/DistUpgradeQuirks.py:801 msgid "PAE not enabled" msgstr "PAE nije omogućen" -#: ../DistUpgrade/DistUpgradeQuirks.py:798 +#: ../DistUpgrade/DistUpgradeQuirks.py:802 msgid "" "Your system uses a CPU that does not have PAE enabled. Ubuntu only supports " "non-PAE systems up to Ubuntu 12.04. To upgrade to a later version of Ubuntu, " @@ -1336,11 +1336,11 @@ "Ubuntua, morate omogućiti PAE (ako je moguće) pogledajte:\n" "http://help.ubuntu.com/community/EnablingPAE" -#: ../DistUpgrade/DistUpgradeQuirks.py:1094 +#: ../DistUpgrade/DistUpgradeQuirks.py:1098 msgid "universe component not enabled" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1095 +#: ../DistUpgrade/DistUpgradeQuirks.py:1099 #, python-format msgid "" "You have the package %s installed which is a python2 package. python2 has " @@ -1352,39 +1352,50 @@ "universe component in /etc/apt/sources.list or remove %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1207 +#: ../DistUpgrade/DistUpgradeQuirks.py:1211 msgid "Checking for installed snaps" msgstr "Provjera instaliranih snap paketa" -#: ../DistUpgrade/DistUpgradeQuirks.py:1654 +#: ../DistUpgrade/DistUpgradeQuirks.py:1720 #, fuzzy msgid "Cannot upgrade this system" msgstr "Nadogradnja nije moguća" -#: ../DistUpgrade/DistUpgradeQuirks.py:1655 +#: ../DistUpgrade/DistUpgradeQuirks.py:1721 msgid "" "Due to a bug in grub, this system cannot be safely upgraded at this time.\n" "\n" "See https://launchpad.net/bugs/2039172." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1721 +#: ../DistUpgrade/DistUpgradeQuirks.py:1787 #, python-brace-format msgid "Updates for Ubuntu {from_release.version} will " msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1731 +#: ../DistUpgrade/DistUpgradeQuirks.py:1797 #, fuzzy msgid "Sorry, cannot upgrade this system to 24.04 LTS" msgstr "Nadogradnja nije moguća" -#: ../DistUpgrade/DistUpgradeQuirks.py:1734 +#: ../DistUpgrade/DistUpgradeQuirks.py:1800 msgid "" "The Raspberry Pi kernel for Ubuntu 24.04 LTS does not support the armhf " "architecture.\n" "\n" msgstr "" +#: ../DistUpgrade/DistUpgradeQuirks.py:1928 +#, fuzzy, python-brace-format +msgid "Sorry, cannot upgrade this system to {version}" +msgstr "Nadogradnja nije moguća" + +#: ../DistUpgrade/DistUpgradeQuirks.py:1931 +msgid "" +"Upgrades for desktop systems running TPM FDE are not currently supported. " +"Please see https://launchpad.net/bugs/2065229 for more information." +msgstr "" + #: ../DistUpgrade/DistUpgradeMain.py:62 msgid "" "Use frontend. Currently available: \n" diff -Nru ubuntu-release-upgrader-24.04.17/po/hu.po ubuntu-release-upgrader-24.04.18/po/hu.po --- ubuntu-release-upgrader-24.04.17/po/hu.po 2024-04-29 14:26:40.000000000 +0000 +++ ubuntu-release-upgrader-24.04.18/po/hu.po 2024-05-09 19:39:18.000000000 +0000 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: update-manager.HEAD\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2024-04-29 16:03+0200\n" +"POT-Creation-Date: 2024-05-09 15:39-0400\n" "PO-Revision-Date: 2019-06-18 17:54+0000\n" "Last-Translator: Báthory Péter \n" "Language-Team: Hungarian \n" @@ -1048,13 +1048,13 @@ msgid "Media Change" msgstr "Adathordozó-csere" -#: ../DistUpgrade/DistUpgradeQuirks.py:248 +#: ../DistUpgrade/DistUpgradeQuirks.py:252 msgid "Your graphics hardware may not be fully supported in Ubuntu 14.04." msgstr "" "A videokártyája nem biztos, hogy megfelelően lesz támogatva az Ubuntu 14.04 " "verziójában." -#: ../DistUpgrade/DistUpgradeQuirks.py:250 +#: ../DistUpgrade/DistUpgradeQuirks.py:254 msgid "" "Running the 'unity' desktop environment is not fully supported by your " "graphics hardware. You will maybe end up in a very slow environment after " @@ -1070,13 +1070,13 @@ "UpdateManagerWarningForUnity3D oldalt. Még így is szeretné folytatni a " "frissítést?" -#: ../DistUpgrade/DistUpgradeQuirks.py:274 +#: ../DistUpgrade/DistUpgradeQuirks.py:278 msgid "Your graphics hardware may not be fully supported in Ubuntu 12.04 LTS." msgstr "" "Videokártyája nem biztos, hogy teljesen támogatott lesz Ubuntu 12.04 LTS " "alatt." -#: ../DistUpgrade/DistUpgradeQuirks.py:276 +#: ../DistUpgrade/DistUpgradeQuirks.py:280 msgid "" "The support in Ubuntu 12.04 LTS for your Intel graphics hardware is limited " "and you may encounter problems after the upgrade. For more information see " @@ -1088,7 +1088,7 @@ "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForI8xx oldalt. Folytatni " "szeretné a frissítést?" -#: ../DistUpgrade/DistUpgradeQuirks.py:296 +#: ../DistUpgrade/DistUpgradeQuirks.py:300 msgid "" "Upgrading may reduce desktop effects, and performance in games and other " "graphically intensive programs." @@ -1096,7 +1096,7 @@ "A frissítés visszafoghatja a vizuális effektusokat, a játékok és a sok " "grafikai számítást igénylő alkalmazások teljesítményét." -#: ../DistUpgrade/DistUpgradeQuirks.py:300 +#: ../DistUpgrade/DistUpgradeQuirks.py:304 msgid "" "This computer is currently using the AMD 'fglrx' graphics driver. No version " "of this driver is available that works with your hardware in Ubuntu 10.04 " @@ -1110,12 +1110,12 @@ "\n" "Biztosan folytatja?" -#: ../DistUpgrade/DistUpgradeQuirks.py:339 -#: ../DistUpgrade/DistUpgradeQuirks.py:408 +#: ../DistUpgrade/DistUpgradeQuirks.py:343 +#: ../DistUpgrade/DistUpgradeQuirks.py:412 msgid "Sorry, no more upgrades for this system" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:340 +#: ../DistUpgrade/DistUpgradeQuirks.py:344 #, python-format msgid "" "There will not be any further Ubuntu releases for this system's 'i386' " @@ -1124,11 +1124,11 @@ "Updates for Ubuntu %s will continue until %s." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:355 +#: ../DistUpgrade/DistUpgradeQuirks.py:359 msgid "No ARMv6 CPU" msgstr "Nem ARMv6 processzor" -#: ../DistUpgrade/DistUpgradeQuirks.py:356 +#: ../DistUpgrade/DistUpgradeQuirks.py:360 msgid "" "Your system uses an ARM CPU that is older than the ARMv6 architecture. All " "packages in karmic were built with optimizations requiring ARMv6 as the " @@ -1140,12 +1140,12 @@ "optimalizációkkal készült. Ezen a hardveren nem frissíthető a rendszer új " "Ubuntu kiadásra." -#: ../DistUpgrade/DistUpgradeQuirks.py:376 +#: ../DistUpgrade/DistUpgradeQuirks.py:380 msgid "" "Sorry, this storage driver is not supported in kernels for newer releases" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:378 +#: ../DistUpgrade/DistUpgradeQuirks.py:382 #, python-format msgid "" "There will not be any further Ubuntu releases that provide kernel support " @@ -1155,7 +1155,7 @@ "driver, remove the directory %s and try again." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:409 +#: ../DistUpgrade/DistUpgradeQuirks.py:413 #, python-format msgid "" "There will not be any further Ubuntu releases for this system's POWER8 " @@ -1164,11 +1164,11 @@ "Updates for Ubuntu %s will continue until %s." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:427 +#: ../DistUpgrade/DistUpgradeQuirks.py:431 msgid "No init available" msgstr "Nem érhető el init" -#: ../DistUpgrade/DistUpgradeQuirks.py:428 +#: ../DistUpgrade/DistUpgradeQuirks.py:432 msgid "" "Your system appears to be a virtualised environment without an init daemon, " "e.g. Linux-VServer. Ubuntu 10.04 LTS cannot function within this type of " @@ -1183,11 +1183,11 @@ "\n" "Biztosan folytatja?" -#: ../DistUpgrade/DistUpgradeQuirks.py:469 +#: ../DistUpgrade/DistUpgradeQuirks.py:473 msgid "The Robot Operating System (ROS) is installed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:470 +#: ../DistUpgrade/DistUpgradeQuirks.py:474 msgid "" "It appears that ROS is currently installed. Each ROS release is very strict " "about the versions of Ubuntu it supports, and Ubuntu upgrades can fail if " @@ -1204,11 +1204,11 @@ "Are you sure you want to continue?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:670 +#: ../DistUpgrade/DistUpgradeQuirks.py:674 msgid "Connection to the Snap Store failed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:671 +#: ../DistUpgrade/DistUpgradeQuirks.py:675 msgid "" "You have the package lxd installed but your system is unable to reach the " "Snap Store. lxd is now provided via a snap and the release upgrade will fail " @@ -1218,11 +1218,11 @@ "may want to configure a Snap Store proxy." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:686 +#: ../DistUpgrade/DistUpgradeQuirks.py:690 msgid "Connection to Snap Store failed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:687 +#: ../DistUpgrade/DistUpgradeQuirks.py:691 msgid "" "Your system does not have a connection to the Snap Store. For the best " "upgrade experience make sure that your system can connect to api.snapcraft." @@ -1230,11 +1230,11 @@ "Do you still want to continue with the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:696 +#: ../DistUpgrade/DistUpgradeQuirks.py:700 msgid "Outdated snapd package" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:697 +#: ../DistUpgrade/DistUpgradeQuirks.py:701 msgid "" "Your system does not have the latest version of snapd. Please update the " "version of snapd on your system to improve the upgrade experience.\n" @@ -1243,36 +1243,36 @@ #. now perform direct API calls to the store, requesting size #. information for each of the snaps needing installation -#: ../DistUpgrade/DistUpgradeQuirks.py:722 +#: ../DistUpgrade/DistUpgradeQuirks.py:726 msgid "Calculating snap size requirements" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:753 +#: ../DistUpgrade/DistUpgradeQuirks.py:757 msgid "Processing snap replacements" msgstr "" #. TODO: This status should be updated, but the time of #. this change to snap switch is post-translation freeze. -#: ../DistUpgrade/DistUpgradeQuirks.py:761 +#: ../DistUpgrade/DistUpgradeQuirks.py:765 #, python-format msgid "refreshing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:765 +#: ../DistUpgrade/DistUpgradeQuirks.py:769 #, python-format msgid "removing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:768 +#: ../DistUpgrade/DistUpgradeQuirks.py:772 #, python-format msgid "installing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:797 +#: ../DistUpgrade/DistUpgradeQuirks.py:801 msgid "PAE not enabled" msgstr "A PAE nincs bekapcsolva" -#: ../DistUpgrade/DistUpgradeQuirks.py:798 +#: ../DistUpgrade/DistUpgradeQuirks.py:802 msgid "" "Your system uses a CPU that does not have PAE enabled. Ubuntu only supports " "non-PAE systems up to Ubuntu 12.04. To upgrade to a later version of Ubuntu, " @@ -1284,11 +1284,11 @@ "Ubuntu újabb verziójára frissítéshez be kell kapcsolnia a PAE-t (ha ez " "lehetséges), lásd: http://help.ubuntu.com/community/EnablingPAE" -#: ../DistUpgrade/DistUpgradeQuirks.py:1094 +#: ../DistUpgrade/DistUpgradeQuirks.py:1098 msgid "universe component not enabled" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1095 +#: ../DistUpgrade/DistUpgradeQuirks.py:1099 #, python-format msgid "" "You have the package %s installed which is a python2 package. python2 has " @@ -1300,39 +1300,50 @@ "universe component in /etc/apt/sources.list or remove %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1207 +#: ../DistUpgrade/DistUpgradeQuirks.py:1211 msgid "Checking for installed snaps" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1654 +#: ../DistUpgrade/DistUpgradeQuirks.py:1720 #, fuzzy msgid "Cannot upgrade this system" msgstr "Nem lehet frissíteni" -#: ../DistUpgrade/DistUpgradeQuirks.py:1655 +#: ../DistUpgrade/DistUpgradeQuirks.py:1721 msgid "" "Due to a bug in grub, this system cannot be safely upgraded at this time.\n" "\n" "See https://launchpad.net/bugs/2039172." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1721 +#: ../DistUpgrade/DistUpgradeQuirks.py:1787 #, python-brace-format msgid "Updates for Ubuntu {from_release.version} will " msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1731 +#: ../DistUpgrade/DistUpgradeQuirks.py:1797 #, fuzzy msgid "Sorry, cannot upgrade this system to 24.04 LTS" msgstr "Nem lehet frissíteni" -#: ../DistUpgrade/DistUpgradeQuirks.py:1734 +#: ../DistUpgrade/DistUpgradeQuirks.py:1800 msgid "" "The Raspberry Pi kernel for Ubuntu 24.04 LTS does not support the armhf " "architecture.\n" "\n" msgstr "" +#: ../DistUpgrade/DistUpgradeQuirks.py:1928 +#, fuzzy, python-brace-format +msgid "Sorry, cannot upgrade this system to {version}" +msgstr "Nem lehet frissíteni" + +#: ../DistUpgrade/DistUpgradeQuirks.py:1931 +msgid "" +"Upgrades for desktop systems running TPM FDE are not currently supported. " +"Please see https://launchpad.net/bugs/2065229 for more information." +msgstr "" + #: ../DistUpgrade/DistUpgradeMain.py:62 msgid "" "Use frontend. Currently available: \n" diff -Nru ubuntu-release-upgrader-24.04.17/po/hy.po ubuntu-release-upgrader-24.04.18/po/hy.po --- ubuntu-release-upgrader-24.04.17/po/hy.po 2024-04-29 14:26:40.000000000 +0000 +++ ubuntu-release-upgrader-24.04.18/po/hy.po 2024-05-09 19:39:18.000000000 +0000 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2024-04-29 16:03+0200\n" +"POT-Creation-Date: 2024-05-09 15:39-0400\n" "PO-Revision-Date: 2013-05-22 11:00+0000\n" "Last-Translator: Serj Safarian \n" "Language-Team: Armenian \n" @@ -898,11 +898,11 @@ msgid "Media Change" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:248 +#: ../DistUpgrade/DistUpgradeQuirks.py:252 msgid "Your graphics hardware may not be fully supported in Ubuntu 14.04." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:250 +#: ../DistUpgrade/DistUpgradeQuirks.py:254 msgid "" "Running the 'unity' desktop environment is not fully supported by your " "graphics hardware. You will maybe end up in a very slow environment after " @@ -912,11 +912,11 @@ "upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:274 +#: ../DistUpgrade/DistUpgradeQuirks.py:278 msgid "Your graphics hardware may not be fully supported in Ubuntu 12.04 LTS." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:276 +#: ../DistUpgrade/DistUpgradeQuirks.py:280 msgid "" "The support in Ubuntu 12.04 LTS for your Intel graphics hardware is limited " "and you may encounter problems after the upgrade. For more information see " @@ -924,13 +924,13 @@ "continue with the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:296 +#: ../DistUpgrade/DistUpgradeQuirks.py:300 msgid "" "Upgrading may reduce desktop effects, and performance in games and other " "graphically intensive programs." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:300 +#: ../DistUpgrade/DistUpgradeQuirks.py:304 msgid "" "This computer is currently using the AMD 'fglrx' graphics driver. No version " "of this driver is available that works with your hardware in Ubuntu 10.04 " @@ -939,12 +939,12 @@ "Do you want to continue?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:339 -#: ../DistUpgrade/DistUpgradeQuirks.py:408 +#: ../DistUpgrade/DistUpgradeQuirks.py:343 +#: ../DistUpgrade/DistUpgradeQuirks.py:412 msgid "Sorry, no more upgrades for this system" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:340 +#: ../DistUpgrade/DistUpgradeQuirks.py:344 #, python-format msgid "" "There will not be any further Ubuntu releases for this system's 'i386' " @@ -953,11 +953,11 @@ "Updates for Ubuntu %s will continue until %s." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:355 +#: ../DistUpgrade/DistUpgradeQuirks.py:359 msgid "No ARMv6 CPU" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:356 +#: ../DistUpgrade/DistUpgradeQuirks.py:360 msgid "" "Your system uses an ARM CPU that is older than the ARMv6 architecture. All " "packages in karmic were built with optimizations requiring ARMv6 as the " @@ -965,12 +965,12 @@ "Ubuntu release with this hardware." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:376 +#: ../DistUpgrade/DistUpgradeQuirks.py:380 msgid "" "Sorry, this storage driver is not supported in kernels for newer releases" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:378 +#: ../DistUpgrade/DistUpgradeQuirks.py:382 #, python-format msgid "" "There will not be any further Ubuntu releases that provide kernel support " @@ -980,7 +980,7 @@ "driver, remove the directory %s and try again." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:409 +#: ../DistUpgrade/DistUpgradeQuirks.py:413 #, python-format msgid "" "There will not be any further Ubuntu releases for this system's POWER8 " @@ -989,11 +989,11 @@ "Updates for Ubuntu %s will continue until %s." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:427 +#: ../DistUpgrade/DistUpgradeQuirks.py:431 msgid "No init available" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:428 +#: ../DistUpgrade/DistUpgradeQuirks.py:432 msgid "" "Your system appears to be a virtualised environment without an init daemon, " "e.g. Linux-VServer. Ubuntu 10.04 LTS cannot function within this type of " @@ -1003,11 +1003,11 @@ "Are you sure you want to continue?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:469 +#: ../DistUpgrade/DistUpgradeQuirks.py:473 msgid "The Robot Operating System (ROS) is installed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:470 +#: ../DistUpgrade/DistUpgradeQuirks.py:474 msgid "" "It appears that ROS is currently installed. Each ROS release is very strict " "about the versions of Ubuntu it supports, and Ubuntu upgrades can fail if " @@ -1024,11 +1024,11 @@ "Are you sure you want to continue?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:670 +#: ../DistUpgrade/DistUpgradeQuirks.py:674 msgid "Connection to the Snap Store failed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:671 +#: ../DistUpgrade/DistUpgradeQuirks.py:675 msgid "" "You have the package lxd installed but your system is unable to reach the " "Snap Store. lxd is now provided via a snap and the release upgrade will fail " @@ -1038,11 +1038,11 @@ "may want to configure a Snap Store proxy." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:686 +#: ../DistUpgrade/DistUpgradeQuirks.py:690 msgid "Connection to Snap Store failed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:687 +#: ../DistUpgrade/DistUpgradeQuirks.py:691 msgid "" "Your system does not have a connection to the Snap Store. For the best " "upgrade experience make sure that your system can connect to api.snapcraft." @@ -1050,11 +1050,11 @@ "Do you still want to continue with the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:696 +#: ../DistUpgrade/DistUpgradeQuirks.py:700 msgid "Outdated snapd package" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:697 +#: ../DistUpgrade/DistUpgradeQuirks.py:701 msgid "" "Your system does not have the latest version of snapd. Please update the " "version of snapd on your system to improve the upgrade experience.\n" @@ -1063,36 +1063,36 @@ #. now perform direct API calls to the store, requesting size #. information for each of the snaps needing installation -#: ../DistUpgrade/DistUpgradeQuirks.py:722 +#: ../DistUpgrade/DistUpgradeQuirks.py:726 msgid "Calculating snap size requirements" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:753 +#: ../DistUpgrade/DistUpgradeQuirks.py:757 msgid "Processing snap replacements" msgstr "" #. TODO: This status should be updated, but the time of #. this change to snap switch is post-translation freeze. -#: ../DistUpgrade/DistUpgradeQuirks.py:761 +#: ../DistUpgrade/DistUpgradeQuirks.py:765 #, python-format msgid "refreshing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:765 +#: ../DistUpgrade/DistUpgradeQuirks.py:769 #, python-format msgid "removing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:768 +#: ../DistUpgrade/DistUpgradeQuirks.py:772 #, python-format msgid "installing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:797 +#: ../DistUpgrade/DistUpgradeQuirks.py:801 msgid "PAE not enabled" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:798 +#: ../DistUpgrade/DistUpgradeQuirks.py:802 msgid "" "Your system uses a CPU that does not have PAE enabled. Ubuntu only supports " "non-PAE systems up to Ubuntu 12.04. To upgrade to a later version of Ubuntu, " @@ -1100,11 +1100,11 @@ "http://help.ubuntu.com/community/EnablingPAE" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1094 +#: ../DistUpgrade/DistUpgradeQuirks.py:1098 msgid "universe component not enabled" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1095 +#: ../DistUpgrade/DistUpgradeQuirks.py:1099 #, python-format msgid "" "You have the package %s installed which is a python2 package. python2 has " @@ -1116,37 +1116,48 @@ "universe component in /etc/apt/sources.list or remove %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1207 +#: ../DistUpgrade/DistUpgradeQuirks.py:1211 msgid "Checking for installed snaps" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1654 +#: ../DistUpgrade/DistUpgradeQuirks.py:1720 msgid "Cannot upgrade this system" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1655 +#: ../DistUpgrade/DistUpgradeQuirks.py:1721 msgid "" "Due to a bug in grub, this system cannot be safely upgraded at this time.\n" "\n" "See https://launchpad.net/bugs/2039172." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1721 +#: ../DistUpgrade/DistUpgradeQuirks.py:1787 #, python-brace-format msgid "Updates for Ubuntu {from_release.version} will " msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1731 +#: ../DistUpgrade/DistUpgradeQuirks.py:1797 msgid "Sorry, cannot upgrade this system to 24.04 LTS" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1734 +#: ../DistUpgrade/DistUpgradeQuirks.py:1800 msgid "" "The Raspberry Pi kernel for Ubuntu 24.04 LTS does not support the armhf " "architecture.\n" "\n" msgstr "" +#: ../DistUpgrade/DistUpgradeQuirks.py:1928 +#, python-brace-format +msgid "Sorry, cannot upgrade this system to {version}" +msgstr "" + +#: ../DistUpgrade/DistUpgradeQuirks.py:1931 +msgid "" +"Upgrades for desktop systems running TPM FDE are not currently supported. " +"Please see https://launchpad.net/bugs/2065229 for more information." +msgstr "" + #: ../DistUpgrade/DistUpgradeMain.py:62 msgid "" "Use frontend. Currently available: \n" diff -Nru ubuntu-release-upgrader-24.04.17/po/ia.po ubuntu-release-upgrader-24.04.18/po/ia.po --- ubuntu-release-upgrader-24.04.17/po/ia.po 2024-04-29 14:26:40.000000000 +0000 +++ ubuntu-release-upgrader-24.04.18/po/ia.po 2024-05-09 19:39:18.000000000 +0000 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: ubuntu-release-upgrader\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2024-04-29 16:03+0200\n" +"POT-Creation-Date: 2024-05-09 15:39-0400\n" "PO-Revision-Date: 2015-09-01 21:48+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Interlingua \n" @@ -1052,12 +1052,12 @@ msgid "Media Change" msgstr "Cambiamento de medios" -#: ../DistUpgrade/DistUpgradeQuirks.py:248 +#: ../DistUpgrade/DistUpgradeQuirks.py:252 msgid "Your graphics hardware may not be fully supported in Ubuntu 14.04." msgstr "" "Tu hardware graphic pote non ser totalmente supportate in Ubuntu 14.04." -#: ../DistUpgrade/DistUpgradeQuirks.py:250 +#: ../DistUpgrade/DistUpgradeQuirks.py:254 msgid "" "Running the 'unity' desktop environment is not fully supported by your " "graphics hardware. You will maybe end up in a very slow environment after " @@ -1072,13 +1072,13 @@ "Pro plus de information vider https://wiki.ubuntu.com/X/Bugs/" "UpdateManagerWarningForUnity3D . Desira tu ancora proceder con le promotion?" -#: ../DistUpgrade/DistUpgradeQuirks.py:274 +#: ../DistUpgrade/DistUpgradeQuirks.py:278 msgid "Your graphics hardware may not be fully supported in Ubuntu 12.04 LTS." msgstr "" "Tu hardware graphic non pote ser supportate completemente in Ubuntu 12.04 " "LTS." -#: ../DistUpgrade/DistUpgradeQuirks.py:276 +#: ../DistUpgrade/DistUpgradeQuirks.py:280 msgid "" "The support in Ubuntu 12.04 LTS for your Intel graphics hardware is limited " "and you may encounter problems after the upgrade. For more information see " @@ -1090,7 +1090,7 @@ "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForI8xx . Desira tu " "ancora proceder con le promotion?" -#: ../DistUpgrade/DistUpgradeQuirks.py:296 +#: ../DistUpgrade/DistUpgradeQuirks.py:300 msgid "" "Upgrading may reduce desktop effects, and performance in games and other " "graphically intensive programs." @@ -1098,7 +1098,7 @@ "Le promotion pote reducer le effectos del scriptorio, e le performance in le " "jocos e le alie programmas graphicamente intensive." -#: ../DistUpgrade/DistUpgradeQuirks.py:300 +#: ../DistUpgrade/DistUpgradeQuirks.py:304 msgid "" "This computer is currently using the AMD 'fglrx' graphics driver. No version " "of this driver is available that works with your hardware in Ubuntu 10.04 " @@ -1112,12 +1112,12 @@ "\n" "Desira tu continuar?" -#: ../DistUpgrade/DistUpgradeQuirks.py:339 -#: ../DistUpgrade/DistUpgradeQuirks.py:408 +#: ../DistUpgrade/DistUpgradeQuirks.py:343 +#: ../DistUpgrade/DistUpgradeQuirks.py:412 msgid "Sorry, no more upgrades for this system" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:340 +#: ../DistUpgrade/DistUpgradeQuirks.py:344 #, python-format msgid "" "There will not be any further Ubuntu releases for this system's 'i386' " @@ -1126,11 +1126,11 @@ "Updates for Ubuntu %s will continue until %s." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:355 +#: ../DistUpgrade/DistUpgradeQuirks.py:359 msgid "No ARMv6 CPU" msgstr "Nulle CPU ARMv6" -#: ../DistUpgrade/DistUpgradeQuirks.py:356 +#: ../DistUpgrade/DistUpgradeQuirks.py:360 msgid "" "Your system uses an ARM CPU that is older than the ARMv6 architecture. All " "packages in karmic were built with optimizations requiring ARMv6 as the " @@ -1142,12 +1142,12 @@ "ARMv6 como minime architectura. Il non es possibile promover tu systema a un " "nove version de Ubuntu con ce hardware." -#: ../DistUpgrade/DistUpgradeQuirks.py:376 +#: ../DistUpgrade/DistUpgradeQuirks.py:380 msgid "" "Sorry, this storage driver is not supported in kernels for newer releases" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:378 +#: ../DistUpgrade/DistUpgradeQuirks.py:382 #, python-format msgid "" "There will not be any further Ubuntu releases that provide kernel support " @@ -1157,7 +1157,7 @@ "driver, remove the directory %s and try again." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:409 +#: ../DistUpgrade/DistUpgradeQuirks.py:413 #, python-format msgid "" "There will not be any further Ubuntu releases for this system's POWER8 " @@ -1166,11 +1166,11 @@ "Updates for Ubuntu %s will continue until %s." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:427 +#: ../DistUpgrade/DistUpgradeQuirks.py:431 msgid "No init available" msgstr "Nulle init disponibile" -#: ../DistUpgrade/DistUpgradeQuirks.py:428 +#: ../DistUpgrade/DistUpgradeQuirks.py:432 msgid "" "Your system appears to be a virtualised environment without an init daemon, " "e.g. Linux-VServer. Ubuntu 10.04 LTS cannot function within this type of " @@ -1186,11 +1186,11 @@ "\n" "Desira tu vermente continuar?" -#: ../DistUpgrade/DistUpgradeQuirks.py:469 +#: ../DistUpgrade/DistUpgradeQuirks.py:473 msgid "The Robot Operating System (ROS) is installed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:470 +#: ../DistUpgrade/DistUpgradeQuirks.py:474 msgid "" "It appears that ROS is currently installed. Each ROS release is very strict " "about the versions of Ubuntu it supports, and Ubuntu upgrades can fail if " @@ -1207,11 +1207,11 @@ "Are you sure you want to continue?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:670 +#: ../DistUpgrade/DistUpgradeQuirks.py:674 msgid "Connection to the Snap Store failed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:671 +#: ../DistUpgrade/DistUpgradeQuirks.py:675 msgid "" "You have the package lxd installed but your system is unable to reach the " "Snap Store. lxd is now provided via a snap and the release upgrade will fail " @@ -1221,11 +1221,11 @@ "may want to configure a Snap Store proxy." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:686 +#: ../DistUpgrade/DistUpgradeQuirks.py:690 msgid "Connection to Snap Store failed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:687 +#: ../DistUpgrade/DistUpgradeQuirks.py:691 msgid "" "Your system does not have a connection to the Snap Store. For the best " "upgrade experience make sure that your system can connect to api.snapcraft." @@ -1233,11 +1233,11 @@ "Do you still want to continue with the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:696 +#: ../DistUpgrade/DistUpgradeQuirks.py:700 msgid "Outdated snapd package" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:697 +#: ../DistUpgrade/DistUpgradeQuirks.py:701 msgid "" "Your system does not have the latest version of snapd. Please update the " "version of snapd on your system to improve the upgrade experience.\n" @@ -1246,36 +1246,36 @@ #. now perform direct API calls to the store, requesting size #. information for each of the snaps needing installation -#: ../DistUpgrade/DistUpgradeQuirks.py:722 +#: ../DistUpgrade/DistUpgradeQuirks.py:726 msgid "Calculating snap size requirements" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:753 +#: ../DistUpgrade/DistUpgradeQuirks.py:757 msgid "Processing snap replacements" msgstr "" #. TODO: This status should be updated, but the time of #. this change to snap switch is post-translation freeze. -#: ../DistUpgrade/DistUpgradeQuirks.py:761 +#: ../DistUpgrade/DistUpgradeQuirks.py:765 #, python-format msgid "refreshing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:765 +#: ../DistUpgrade/DistUpgradeQuirks.py:769 #, fuzzy, python-format msgid "removing snap %s" msgstr "installation snap %s" -#: ../DistUpgrade/DistUpgradeQuirks.py:768 +#: ../DistUpgrade/DistUpgradeQuirks.py:772 #, python-format msgid "installing snap %s" msgstr "installation snap %s" -#: ../DistUpgrade/DistUpgradeQuirks.py:797 +#: ../DistUpgrade/DistUpgradeQuirks.py:801 msgid "PAE not enabled" msgstr "PAE no activate" -#: ../DistUpgrade/DistUpgradeQuirks.py:798 +#: ../DistUpgrade/DistUpgradeQuirks.py:802 msgid "" "Your system uses a CPU that does not have PAE enabled. Ubuntu only supports " "non-PAE systems up to Ubuntu 12.04. To upgrade to a later version of Ubuntu, " @@ -1287,11 +1287,11 @@ "Ubuntu, tu debe activar PAE (si isto es possibile) vide:\n" "http://help.ubuntu.com/collectivitate/EnablingPAE" -#: ../DistUpgrade/DistUpgradeQuirks.py:1094 +#: ../DistUpgrade/DistUpgradeQuirks.py:1098 msgid "universe component not enabled" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1095 +#: ../DistUpgrade/DistUpgradeQuirks.py:1099 #, python-format msgid "" "You have the package %s installed which is a python2 package. python2 has " @@ -1303,39 +1303,50 @@ "universe component in /etc/apt/sources.list or remove %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1207 +#: ../DistUpgrade/DistUpgradeQuirks.py:1211 msgid "Checking for installed snaps" msgstr "Controlo del snaps installate" -#: ../DistUpgrade/DistUpgradeQuirks.py:1654 +#: ../DistUpgrade/DistUpgradeQuirks.py:1720 #, fuzzy msgid "Cannot upgrade this system" msgstr "Impossibile promover" -#: ../DistUpgrade/DistUpgradeQuirks.py:1655 +#: ../DistUpgrade/DistUpgradeQuirks.py:1721 msgid "" "Due to a bug in grub, this system cannot be safely upgraded at this time.\n" "\n" "See https://launchpad.net/bugs/2039172." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1721 +#: ../DistUpgrade/DistUpgradeQuirks.py:1787 #, python-brace-format msgid "Updates for Ubuntu {from_release.version} will " msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1731 +#: ../DistUpgrade/DistUpgradeQuirks.py:1797 #, fuzzy msgid "Sorry, cannot upgrade this system to 24.04 LTS" msgstr "Impossibile promover" -#: ../DistUpgrade/DistUpgradeQuirks.py:1734 +#: ../DistUpgrade/DistUpgradeQuirks.py:1800 msgid "" "The Raspberry Pi kernel for Ubuntu 24.04 LTS does not support the armhf " "architecture.\n" "\n" msgstr "" +#: ../DistUpgrade/DistUpgradeQuirks.py:1928 +#, fuzzy, python-brace-format +msgid "Sorry, cannot upgrade this system to {version}" +msgstr "Impossibile promover" + +#: ../DistUpgrade/DistUpgradeQuirks.py:1931 +msgid "" +"Upgrades for desktop systems running TPM FDE are not currently supported. " +"Please see https://launchpad.net/bugs/2065229 for more information." +msgstr "" + #: ../DistUpgrade/DistUpgradeMain.py:62 msgid "" "Use frontend. Currently available: \n" diff -Nru ubuntu-release-upgrader-24.04.17/po/id.po ubuntu-release-upgrader-24.04.18/po/id.po --- ubuntu-release-upgrader-24.04.17/po/id.po 2024-04-29 14:26:40.000000000 +0000 +++ ubuntu-release-upgrader-24.04.18/po/id.po 2024-05-09 19:39:18.000000000 +0000 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2024-04-29 16:03+0200\n" +"POT-Creation-Date: 2024-05-09 15:39-0400\n" "PO-Revision-Date: 2019-06-18 17:52+0000\n" "Last-Translator: Bagus Herlambang \n" "Language-Team: Indonesian \n" @@ -1033,13 +1033,13 @@ msgid "Media Change" msgstr "Perubahan Media" -#: ../DistUpgrade/DistUpgradeQuirks.py:248 +#: ../DistUpgrade/DistUpgradeQuirks.py:252 msgid "Your graphics hardware may not be fully supported in Ubuntu 14.04." msgstr "" "Perangkat keras grafik Anda mungkin tak sepenuhnya didukung dalam Ubuntu " "14.04" -#: ../DistUpgrade/DistUpgradeQuirks.py:250 +#: ../DistUpgrade/DistUpgradeQuirks.py:254 msgid "" "Running the 'unity' desktop environment is not fully supported by your " "graphics hardware. You will maybe end up in a very slow environment after " @@ -1049,11 +1049,11 @@ "upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:274 +#: ../DistUpgrade/DistUpgradeQuirks.py:278 msgid "Your graphics hardware may not be fully supported in Ubuntu 12.04 LTS." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:276 +#: ../DistUpgrade/DistUpgradeQuirks.py:280 msgid "" "The support in Ubuntu 12.04 LTS for your Intel graphics hardware is limited " "and you may encounter problems after the upgrade. For more information see " @@ -1061,7 +1061,7 @@ "continue with the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:296 +#: ../DistUpgrade/DistUpgradeQuirks.py:300 msgid "" "Upgrading may reduce desktop effects, and performance in games and other " "graphically intensive programs." @@ -1069,7 +1069,7 @@ "Peningkatan mungkin mengurangi efek-efek desktop, dan kinerja pada permainan " "dan program-program lain yang intensif grafis." -#: ../DistUpgrade/DistUpgradeQuirks.py:300 +#: ../DistUpgrade/DistUpgradeQuirks.py:304 msgid "" "This computer is currently using the AMD 'fglrx' graphics driver. No version " "of this driver is available that works with your hardware in Ubuntu 10.04 " @@ -1083,12 +1083,12 @@ "\n" "Anda ingin melanjutkan?" -#: ../DistUpgrade/DistUpgradeQuirks.py:339 -#: ../DistUpgrade/DistUpgradeQuirks.py:408 +#: ../DistUpgrade/DistUpgradeQuirks.py:343 +#: ../DistUpgrade/DistUpgradeQuirks.py:412 msgid "Sorry, no more upgrades for this system" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:340 +#: ../DistUpgrade/DistUpgradeQuirks.py:344 #, python-format msgid "" "There will not be any further Ubuntu releases for this system's 'i386' " @@ -1097,11 +1097,11 @@ "Updates for Ubuntu %s will continue until %s." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:355 +#: ../DistUpgrade/DistUpgradeQuirks.py:359 msgid "No ARMv6 CPU" msgstr "CPU ARMv6 tidak ada" -#: ../DistUpgrade/DistUpgradeQuirks.py:356 +#: ../DistUpgrade/DistUpgradeQuirks.py:360 msgid "" "Your system uses an ARM CPU that is older than the ARMv6 architecture. All " "packages in karmic were built with optimizations requiring ARMv6 as the " @@ -1113,12 +1113,12 @@ "arsitektur minimal. Tidak mungkin meningkatkan sistem Anda ke rilis baru " "Ubuntu dengan perangkat keras ini." -#: ../DistUpgrade/DistUpgradeQuirks.py:376 +#: ../DistUpgrade/DistUpgradeQuirks.py:380 msgid "" "Sorry, this storage driver is not supported in kernels for newer releases" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:378 +#: ../DistUpgrade/DistUpgradeQuirks.py:382 #, python-format msgid "" "There will not be any further Ubuntu releases that provide kernel support " @@ -1128,7 +1128,7 @@ "driver, remove the directory %s and try again." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:409 +#: ../DistUpgrade/DistUpgradeQuirks.py:413 #, python-format msgid "" "There will not be any further Ubuntu releases for this system's POWER8 " @@ -1137,11 +1137,11 @@ "Updates for Ubuntu %s will continue until %s." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:427 +#: ../DistUpgrade/DistUpgradeQuirks.py:431 msgid "No init available" msgstr "Tidak ada 'init' yang tersedia" -#: ../DistUpgrade/DistUpgradeQuirks.py:428 +#: ../DistUpgrade/DistUpgradeQuirks.py:432 msgid "" "Your system appears to be a virtualised environment without an init daemon, " "e.g. Linux-VServer. Ubuntu 10.04 LTS cannot function within this type of " @@ -1156,11 +1156,11 @@ "\n" "Anda yakin akan melanjutkan?" -#: ../DistUpgrade/DistUpgradeQuirks.py:469 +#: ../DistUpgrade/DistUpgradeQuirks.py:473 msgid "The Robot Operating System (ROS) is installed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:470 +#: ../DistUpgrade/DistUpgradeQuirks.py:474 msgid "" "It appears that ROS is currently installed. Each ROS release is very strict " "about the versions of Ubuntu it supports, and Ubuntu upgrades can fail if " @@ -1177,12 +1177,12 @@ "Are you sure you want to continue?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:670 +#: ../DistUpgrade/DistUpgradeQuirks.py:674 #, fuzzy msgid "Connection to the Snap Store failed" msgstr "Koneksi ke Toko Snap gagal" -#: ../DistUpgrade/DistUpgradeQuirks.py:671 +#: ../DistUpgrade/DistUpgradeQuirks.py:675 msgid "" "You have the package lxd installed but your system is unable to reach the " "Snap Store. lxd is now provided via a snap and the release upgrade will fail " @@ -1192,11 +1192,11 @@ "may want to configure a Snap Store proxy." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:686 +#: ../DistUpgrade/DistUpgradeQuirks.py:690 msgid "Connection to Snap Store failed" msgstr "Koneksi ke Toko Snap gagal" -#: ../DistUpgrade/DistUpgradeQuirks.py:687 +#: ../DistUpgrade/DistUpgradeQuirks.py:691 msgid "" "Your system does not have a connection to the Snap Store. For the best " "upgrade experience make sure that your system can connect to api.snapcraft." @@ -1207,11 +1207,11 @@ "terbaik pastikan bahwa sistem Anda dapat menyambung ke api.snapcarft.io.\n" "Apakah Anda masih hendak melanjutkan peningkatan?" -#: ../DistUpgrade/DistUpgradeQuirks.py:696 +#: ../DistUpgrade/DistUpgradeQuirks.py:700 msgid "Outdated snapd package" msgstr "Paket snapd kedaluwarsa" -#: ../DistUpgrade/DistUpgradeQuirks.py:697 +#: ../DistUpgrade/DistUpgradeQuirks.py:701 msgid "" "Your system does not have the latest version of snapd. Please update the " "version of snapd on your system to improve the upgrade experience.\n" @@ -1223,36 +1223,36 @@ #. now perform direct API calls to the store, requesting size #. information for each of the snaps needing installation -#: ../DistUpgrade/DistUpgradeQuirks.py:722 +#: ../DistUpgrade/DistUpgradeQuirks.py:726 msgid "Calculating snap size requirements" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:753 +#: ../DistUpgrade/DistUpgradeQuirks.py:757 msgid "Processing snap replacements" msgstr "" #. TODO: This status should be updated, but the time of #. this change to snap switch is post-translation freeze. -#: ../DistUpgrade/DistUpgradeQuirks.py:761 +#: ../DistUpgrade/DistUpgradeQuirks.py:765 #, python-format msgid "refreshing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:765 +#: ../DistUpgrade/DistUpgradeQuirks.py:769 #, python-format msgid "removing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:768 +#: ../DistUpgrade/DistUpgradeQuirks.py:772 #, python-format msgid "installing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:797 +#: ../DistUpgrade/DistUpgradeQuirks.py:801 msgid "PAE not enabled" msgstr "PAE tak difungsikan" -#: ../DistUpgrade/DistUpgradeQuirks.py:798 +#: ../DistUpgrade/DistUpgradeQuirks.py:802 msgid "" "Your system uses a CPU that does not have PAE enabled. Ubuntu only supports " "non-PAE systems up to Ubuntu 12.04. To upgrade to a later version of Ubuntu, " @@ -1264,11 +1264,11 @@ "lebih baru, Anda mesti memfungsikan PAE (bila ini mungkin) lihat:\n" "http://help.ubuntu.com/community/EnablingPAE" -#: ../DistUpgrade/DistUpgradeQuirks.py:1094 +#: ../DistUpgrade/DistUpgradeQuirks.py:1098 msgid "universe component not enabled" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1095 +#: ../DistUpgrade/DistUpgradeQuirks.py:1099 #, python-format msgid "" "You have the package %s installed which is a python2 package. python2 has " @@ -1280,39 +1280,50 @@ "universe component in /etc/apt/sources.list or remove %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1207 +#: ../DistUpgrade/DistUpgradeQuirks.py:1211 msgid "Checking for installed snaps" msgstr "Memeriksa snap yang terpasang" -#: ../DistUpgrade/DistUpgradeQuirks.py:1654 +#: ../DistUpgrade/DistUpgradeQuirks.py:1720 #, fuzzy msgid "Cannot upgrade this system" msgstr "Tidak dapat meningkatkan versi" -#: ../DistUpgrade/DistUpgradeQuirks.py:1655 +#: ../DistUpgrade/DistUpgradeQuirks.py:1721 msgid "" "Due to a bug in grub, this system cannot be safely upgraded at this time.\n" "\n" "See https://launchpad.net/bugs/2039172." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1721 +#: ../DistUpgrade/DistUpgradeQuirks.py:1787 #, python-brace-format msgid "Updates for Ubuntu {from_release.version} will " msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1731 +#: ../DistUpgrade/DistUpgradeQuirks.py:1797 #, fuzzy msgid "Sorry, cannot upgrade this system to 24.04 LTS" msgstr "Tidak dapat meningkatkan versi" -#: ../DistUpgrade/DistUpgradeQuirks.py:1734 +#: ../DistUpgrade/DistUpgradeQuirks.py:1800 msgid "" "The Raspberry Pi kernel for Ubuntu 24.04 LTS does not support the armhf " "architecture.\n" "\n" msgstr "" +#: ../DistUpgrade/DistUpgradeQuirks.py:1928 +#, fuzzy, python-brace-format +msgid "Sorry, cannot upgrade this system to {version}" +msgstr "Tidak dapat meningkatkan versi" + +#: ../DistUpgrade/DistUpgradeQuirks.py:1931 +msgid "" +"Upgrades for desktop systems running TPM FDE are not currently supported. " +"Please see https://launchpad.net/bugs/2065229 for more information." +msgstr "" + #: ../DistUpgrade/DistUpgradeMain.py:62 msgid "" "Use frontend. Currently available: \n" diff -Nru ubuntu-release-upgrader-24.04.17/po/is.po ubuntu-release-upgrader-24.04.18/po/is.po --- ubuntu-release-upgrader-24.04.17/po/is.po 2024-04-29 14:26:40.000000000 +0000 +++ ubuntu-release-upgrader-24.04.18/po/is.po 2024-05-09 19:39:18.000000000 +0000 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2024-04-29 16:03+0200\n" +"POT-Creation-Date: 2024-05-09 15:39-0400\n" "PO-Revision-Date: 2013-05-22 11:00+0000\n" "Last-Translator: Sigurpáll Sigurðsson \n" "Language-Team: Icelandic \n" @@ -947,11 +947,11 @@ msgid "Media Change" msgstr "Breyta miðli" -#: ../DistUpgrade/DistUpgradeQuirks.py:248 +#: ../DistUpgrade/DistUpgradeQuirks.py:252 msgid "Your graphics hardware may not be fully supported in Ubuntu 14.04." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:250 +#: ../DistUpgrade/DistUpgradeQuirks.py:254 msgid "" "Running the 'unity' desktop environment is not fully supported by your " "graphics hardware. You will maybe end up in a very slow environment after " @@ -961,11 +961,11 @@ "upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:274 +#: ../DistUpgrade/DistUpgradeQuirks.py:278 msgid "Your graphics hardware may not be fully supported in Ubuntu 12.04 LTS." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:276 +#: ../DistUpgrade/DistUpgradeQuirks.py:280 msgid "" "The support in Ubuntu 12.04 LTS for your Intel graphics hardware is limited " "and you may encounter problems after the upgrade. For more information see " @@ -973,7 +973,7 @@ "continue with the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:296 +#: ../DistUpgrade/DistUpgradeQuirks.py:300 msgid "" "Upgrading may reduce desktop effects, and performance in games and other " "graphically intensive programs." @@ -981,7 +981,7 @@ "Þá má vera að brellur, leikir og önnur forrit sem nota skjákortið mikið " "virki ekki eins vel að uppfærslu lokinni." -#: ../DistUpgrade/DistUpgradeQuirks.py:300 +#: ../DistUpgrade/DistUpgradeQuirks.py:304 msgid "" "This computer is currently using the AMD 'fglrx' graphics driver. No version " "of this driver is available that works with your hardware in Ubuntu 10.04 " @@ -995,12 +995,12 @@ "\n" "Viltu halda áfram?" -#: ../DistUpgrade/DistUpgradeQuirks.py:339 -#: ../DistUpgrade/DistUpgradeQuirks.py:408 +#: ../DistUpgrade/DistUpgradeQuirks.py:343 +#: ../DistUpgrade/DistUpgradeQuirks.py:412 msgid "Sorry, no more upgrades for this system" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:340 +#: ../DistUpgrade/DistUpgradeQuirks.py:344 #, python-format msgid "" "There will not be any further Ubuntu releases for this system's 'i386' " @@ -1009,11 +1009,11 @@ "Updates for Ubuntu %s will continue until %s." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:355 +#: ../DistUpgrade/DistUpgradeQuirks.py:359 msgid "No ARMv6 CPU" msgstr "Enginn ARMv6-örgjörvi" -#: ../DistUpgrade/DistUpgradeQuirks.py:356 +#: ../DistUpgrade/DistUpgradeQuirks.py:360 msgid "" "Your system uses an ARM CPU that is older than the ARMv6 architecture. All " "packages in karmic were built with optimizations requiring ARMv6 as the " @@ -1024,12 +1024,12 @@ "í karmic þurfa að lágmarki örgjörva af útgáfu ARMv6. Það er ekki hægt að " "uppfæra stýrikerfi þitt yfir í nýja útgáfu af Ubuntu með þessum vélbúnaði." -#: ../DistUpgrade/DistUpgradeQuirks.py:376 +#: ../DistUpgrade/DistUpgradeQuirks.py:380 msgid "" "Sorry, this storage driver is not supported in kernels for newer releases" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:378 +#: ../DistUpgrade/DistUpgradeQuirks.py:382 #, python-format msgid "" "There will not be any further Ubuntu releases that provide kernel support " @@ -1039,7 +1039,7 @@ "driver, remove the directory %s and try again." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:409 +#: ../DistUpgrade/DistUpgradeQuirks.py:413 #, python-format msgid "" "There will not be any further Ubuntu releases for this system's POWER8 " @@ -1048,11 +1048,11 @@ "Updates for Ubuntu %s will continue until %s." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:427 +#: ../DistUpgrade/DistUpgradeQuirks.py:431 msgid "No init available" msgstr "‚init‘ fannst ekki" -#: ../DistUpgrade/DistUpgradeQuirks.py:428 +#: ../DistUpgrade/DistUpgradeQuirks.py:432 msgid "" "Your system appears to be a virtualised environment without an init daemon, " "e.g. Linux-VServer. Ubuntu 10.04 LTS cannot function within this type of " @@ -1062,11 +1062,11 @@ "Are you sure you want to continue?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:469 +#: ../DistUpgrade/DistUpgradeQuirks.py:473 msgid "The Robot Operating System (ROS) is installed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:470 +#: ../DistUpgrade/DistUpgradeQuirks.py:474 msgid "" "It appears that ROS is currently installed. Each ROS release is very strict " "about the versions of Ubuntu it supports, and Ubuntu upgrades can fail if " @@ -1083,11 +1083,11 @@ "Are you sure you want to continue?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:670 +#: ../DistUpgrade/DistUpgradeQuirks.py:674 msgid "Connection to the Snap Store failed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:671 +#: ../DistUpgrade/DistUpgradeQuirks.py:675 msgid "" "You have the package lxd installed but your system is unable to reach the " "Snap Store. lxd is now provided via a snap and the release upgrade will fail " @@ -1097,11 +1097,11 @@ "may want to configure a Snap Store proxy." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:686 +#: ../DistUpgrade/DistUpgradeQuirks.py:690 msgid "Connection to Snap Store failed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:687 +#: ../DistUpgrade/DistUpgradeQuirks.py:691 msgid "" "Your system does not have a connection to the Snap Store. For the best " "upgrade experience make sure that your system can connect to api.snapcraft." @@ -1109,11 +1109,11 @@ "Do you still want to continue with the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:696 +#: ../DistUpgrade/DistUpgradeQuirks.py:700 msgid "Outdated snapd package" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:697 +#: ../DistUpgrade/DistUpgradeQuirks.py:701 msgid "" "Your system does not have the latest version of snapd. Please update the " "version of snapd on your system to improve the upgrade experience.\n" @@ -1122,36 +1122,36 @@ #. now perform direct API calls to the store, requesting size #. information for each of the snaps needing installation -#: ../DistUpgrade/DistUpgradeQuirks.py:722 +#: ../DistUpgrade/DistUpgradeQuirks.py:726 msgid "Calculating snap size requirements" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:753 +#: ../DistUpgrade/DistUpgradeQuirks.py:757 msgid "Processing snap replacements" msgstr "" #. TODO: This status should be updated, but the time of #. this change to snap switch is post-translation freeze. -#: ../DistUpgrade/DistUpgradeQuirks.py:761 +#: ../DistUpgrade/DistUpgradeQuirks.py:765 #, python-format msgid "refreshing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:765 +#: ../DistUpgrade/DistUpgradeQuirks.py:769 #, python-format msgid "removing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:768 +#: ../DistUpgrade/DistUpgradeQuirks.py:772 #, python-format msgid "installing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:797 +#: ../DistUpgrade/DistUpgradeQuirks.py:801 msgid "PAE not enabled" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:798 +#: ../DistUpgrade/DistUpgradeQuirks.py:802 msgid "" "Your system uses a CPU that does not have PAE enabled. Ubuntu only supports " "non-PAE systems up to Ubuntu 12.04. To upgrade to a later version of Ubuntu, " @@ -1159,11 +1159,11 @@ "http://help.ubuntu.com/community/EnablingPAE" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1094 +#: ../DistUpgrade/DistUpgradeQuirks.py:1098 msgid "universe component not enabled" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1095 +#: ../DistUpgrade/DistUpgradeQuirks.py:1099 #, python-format msgid "" "You have the package %s installed which is a python2 package. python2 has " @@ -1175,39 +1175,50 @@ "universe component in /etc/apt/sources.list or remove %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1207 +#: ../DistUpgrade/DistUpgradeQuirks.py:1211 msgid "Checking for installed snaps" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1654 +#: ../DistUpgrade/DistUpgradeQuirks.py:1720 #, fuzzy msgid "Cannot upgrade this system" msgstr "Get ekki uppfært" -#: ../DistUpgrade/DistUpgradeQuirks.py:1655 +#: ../DistUpgrade/DistUpgradeQuirks.py:1721 msgid "" "Due to a bug in grub, this system cannot be safely upgraded at this time.\n" "\n" "See https://launchpad.net/bugs/2039172." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1721 +#: ../DistUpgrade/DistUpgradeQuirks.py:1787 #, python-brace-format msgid "Updates for Ubuntu {from_release.version} will " msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1731 +#: ../DistUpgrade/DistUpgradeQuirks.py:1797 #, fuzzy msgid "Sorry, cannot upgrade this system to 24.04 LTS" msgstr "Get ekki uppfært" -#: ../DistUpgrade/DistUpgradeQuirks.py:1734 +#: ../DistUpgrade/DistUpgradeQuirks.py:1800 msgid "" "The Raspberry Pi kernel for Ubuntu 24.04 LTS does not support the armhf " "architecture.\n" "\n" msgstr "" +#: ../DistUpgrade/DistUpgradeQuirks.py:1928 +#, fuzzy, python-brace-format +msgid "Sorry, cannot upgrade this system to {version}" +msgstr "Get ekki uppfært" + +#: ../DistUpgrade/DistUpgradeQuirks.py:1931 +msgid "" +"Upgrades for desktop systems running TPM FDE are not currently supported. " +"Please see https://launchpad.net/bugs/2065229 for more information." +msgstr "" + #: ../DistUpgrade/DistUpgradeMain.py:62 msgid "" "Use frontend. Currently available: \n" diff -Nru ubuntu-release-upgrader-24.04.17/po/it.po ubuntu-release-upgrader-24.04.18/po/it.po --- ubuntu-release-upgrader-24.04.17/po/it.po 2024-04-29 14:26:40.000000000 +0000 +++ ubuntu-release-upgrader-24.04.18/po/it.po 2024-05-09 19:39:18.000000000 +0000 @@ -10,7 +10,7 @@ msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2024-04-29 16:03+0200\n" +"POT-Creation-Date: 2024-05-09 15:39-0400\n" "PO-Revision-Date: 2019-06-18 17:55+0000\n" "Last-Translator: Alessandro Ranaldi \n" "Language-Team: Italian \n" @@ -1081,12 +1081,12 @@ msgid "Media Change" msgstr "Cambio del supporto" -#: ../DistUpgrade/DistUpgradeQuirks.py:248 +#: ../DistUpgrade/DistUpgradeQuirks.py:252 msgid "Your graphics hardware may not be fully supported in Ubuntu 14.04." msgstr "" "L'hardware grafico potrebbe non essere pienamente supportato da Ubuntu 14.04." -#: ../DistUpgrade/DistUpgradeQuirks.py:250 +#: ../DistUpgrade/DistUpgradeQuirks.py:254 msgid "" "Running the 'unity' desktop environment is not fully supported by your " "graphics hardware. You will maybe end up in a very slow environment after " @@ -1101,13 +1101,13 @@ "Per ulteriori informazioni consultare la pagina https://wiki.ubuntu.com/X/" "Bugs/UpdateManagerWarningForUnity3D. Continuare comunque con l'aggiornamento?" -#: ../DistUpgrade/DistUpgradeQuirks.py:274 +#: ../DistUpgrade/DistUpgradeQuirks.py:278 msgid "Your graphics hardware may not be fully supported in Ubuntu 12.04 LTS." msgstr "" "La scheda video potrebbe non essere pienamente supportata in Ubuntu 12.04 " "LTS." -#: ../DistUpgrade/DistUpgradeQuirks.py:276 +#: ../DistUpgrade/DistUpgradeQuirks.py:280 msgid "" "The support in Ubuntu 12.04 LTS for your Intel graphics hardware is limited " "and you may encounter problems after the upgrade. For more information see " @@ -1119,7 +1119,7 @@ "informazioni andare su https://wiki.ubuntu.com/X/Bugs/" "UpdateManagerWarningForI8xx Continuare?" -#: ../DistUpgrade/DistUpgradeQuirks.py:296 +#: ../DistUpgrade/DistUpgradeQuirks.py:300 msgid "" "Upgrading may reduce desktop effects, and performance in games and other " "graphically intensive programs." @@ -1128,7 +1128,7 @@ "prestazioni di giochi e di altri programmi che fanno un uso intensivo della " "grafica." -#: ../DistUpgrade/DistUpgradeQuirks.py:300 +#: ../DistUpgrade/DistUpgradeQuirks.py:304 msgid "" "This computer is currently using the AMD 'fglrx' graphics driver. No version " "of this driver is available that works with your hardware in Ubuntu 10.04 " @@ -1141,12 +1141,12 @@ "\n" "Continuare comunque?" -#: ../DistUpgrade/DistUpgradeQuirks.py:339 -#: ../DistUpgrade/DistUpgradeQuirks.py:408 +#: ../DistUpgrade/DistUpgradeQuirks.py:343 +#: ../DistUpgrade/DistUpgradeQuirks.py:412 msgid "Sorry, no more upgrades for this system" msgstr "Non sono più disponibili aggiornamenti per questo sistema" -#: ../DistUpgrade/DistUpgradeQuirks.py:340 +#: ../DistUpgrade/DistUpgradeQuirks.py:344 #, python-format msgid "" "There will not be any further Ubuntu releases for this system's 'i386' " @@ -1159,11 +1159,11 @@ "\n" "Gli aggiornamenti per Ubuntu %s continueranno fino al %s." -#: ../DistUpgrade/DistUpgradeQuirks.py:355 +#: ../DistUpgrade/DistUpgradeQuirks.py:359 msgid "No ARMv6 CPU" msgstr "Nessuna CPU ARMv6" -#: ../DistUpgrade/DistUpgradeQuirks.py:356 +#: ../DistUpgrade/DistUpgradeQuirks.py:360 msgid "" "Your system uses an ARM CPU that is older than the ARMv6 architecture. All " "packages in karmic were built with optimizations requiring ARMv6 as the " @@ -1175,12 +1175,12 @@ "richiedono ARMv6 come architettura minima. Non è possibile avanzare il " "sistema a un nuovo rilascio di Ubuntu con l'hardware attuale." -#: ../DistUpgrade/DistUpgradeQuirks.py:376 +#: ../DistUpgrade/DistUpgradeQuirks.py:380 msgid "" "Sorry, this storage driver is not supported in kernels for newer releases" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:378 +#: ../DistUpgrade/DistUpgradeQuirks.py:382 #, python-format msgid "" "There will not be any further Ubuntu releases that provide kernel support " @@ -1190,7 +1190,7 @@ "driver, remove the directory %s and try again." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:409 +#: ../DistUpgrade/DistUpgradeQuirks.py:413 #, fuzzy, python-format msgid "" "There will not be any further Ubuntu releases for this system's POWER8 " @@ -1203,11 +1203,11 @@ "\n" "Gli aggiornamenti per Ubuntu %s continueranno fino al %s." -#: ../DistUpgrade/DistUpgradeQuirks.py:427 +#: ../DistUpgrade/DistUpgradeQuirks.py:431 msgid "No init available" msgstr "\"init\" non disponibile" -#: ../DistUpgrade/DistUpgradeQuirks.py:428 +#: ../DistUpgrade/DistUpgradeQuirks.py:432 msgid "" "Your system appears to be a virtualised environment without an init daemon, " "e.g. Linux-VServer. Ubuntu 10.04 LTS cannot function within this type of " @@ -1223,11 +1223,11 @@ "\n" "Continuare comunque?" -#: ../DistUpgrade/DistUpgradeQuirks.py:469 +#: ../DistUpgrade/DistUpgradeQuirks.py:473 msgid "The Robot Operating System (ROS) is installed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:470 +#: ../DistUpgrade/DistUpgradeQuirks.py:474 msgid "" "It appears that ROS is currently installed. Each ROS release is very strict " "about the versions of Ubuntu it supports, and Ubuntu upgrades can fail if " @@ -1244,12 +1244,12 @@ "Are you sure you want to continue?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:670 +#: ../DistUpgrade/DistUpgradeQuirks.py:674 #, fuzzy msgid "Connection to the Snap Store failed" msgstr "Connessione allo Snap Store non riuscita" -#: ../DistUpgrade/DistUpgradeQuirks.py:671 +#: ../DistUpgrade/DistUpgradeQuirks.py:675 msgid "" "You have the package lxd installed but your system is unable to reach the " "Snap Store. lxd is now provided via a snap and the release upgrade will fail " @@ -1259,11 +1259,11 @@ "may want to configure a Snap Store proxy." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:686 +#: ../DistUpgrade/DistUpgradeQuirks.py:690 msgid "Connection to Snap Store failed" msgstr "Connessione allo Snap Store non riuscita" -#: ../DistUpgrade/DistUpgradeQuirks.py:687 +#: ../DistUpgrade/DistUpgradeQuirks.py:691 msgid "" "Your system does not have a connection to the Snap Store. For the best " "upgrade experience make sure that your system can connect to api.snapcraft." @@ -1275,11 +1275,11 @@ "api.snapcraft.io.\n" "Continuare comunque con l'aggiornamento?" -#: ../DistUpgrade/DistUpgradeQuirks.py:696 +#: ../DistUpgrade/DistUpgradeQuirks.py:700 msgid "Outdated snapd package" msgstr "Pacchetto snapd obsoleto" -#: ../DistUpgrade/DistUpgradeQuirks.py:697 +#: ../DistUpgrade/DistUpgradeQuirks.py:701 msgid "" "Your system does not have the latest version of snapd. Please update the " "version of snapd on your system to improve the upgrade experience.\n" @@ -1292,36 +1292,36 @@ #. now perform direct API calls to the store, requesting size #. information for each of the snaps needing installation -#: ../DistUpgrade/DistUpgradeQuirks.py:722 +#: ../DistUpgrade/DistUpgradeQuirks.py:726 msgid "Calculating snap size requirements" msgstr "Calcolo requisiti dimensione snap" -#: ../DistUpgrade/DistUpgradeQuirks.py:753 +#: ../DistUpgrade/DistUpgradeQuirks.py:757 msgid "Processing snap replacements" msgstr "Elaborazione sostituzioni snap" #. TODO: This status should be updated, but the time of #. this change to snap switch is post-translation freeze. -#: ../DistUpgrade/DistUpgradeQuirks.py:761 +#: ../DistUpgrade/DistUpgradeQuirks.py:765 #, python-format msgid "refreshing snap %s" msgstr "ricarica snap %s" -#: ../DistUpgrade/DistUpgradeQuirks.py:765 +#: ../DistUpgrade/DistUpgradeQuirks.py:769 #, fuzzy, python-format msgid "removing snap %s" msgstr "ricarica snap %s" -#: ../DistUpgrade/DistUpgradeQuirks.py:768 +#: ../DistUpgrade/DistUpgradeQuirks.py:772 #, python-format msgid "installing snap %s" msgstr "installazione snap %s" -#: ../DistUpgrade/DistUpgradeQuirks.py:797 +#: ../DistUpgrade/DistUpgradeQuirks.py:801 msgid "PAE not enabled" msgstr "PAE non abilitato" -#: ../DistUpgrade/DistUpgradeQuirks.py:798 +#: ../DistUpgrade/DistUpgradeQuirks.py:802 msgid "" "Your system uses a CPU that does not have PAE enabled. Ubuntu only supports " "non-PAE systems up to Ubuntu 12.04. To upgrade to a later version of Ubuntu, " @@ -1333,11 +1333,11 @@ "di Ubuntu, è necessario abilitare PAE, se possibile. Consultare:\n" "http://help.ubuntu.com/community/EnablingPAE" -#: ../DistUpgrade/DistUpgradeQuirks.py:1094 +#: ../DistUpgrade/DistUpgradeQuirks.py:1098 msgid "universe component not enabled" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1095 +#: ../DistUpgrade/DistUpgradeQuirks.py:1099 #, python-format msgid "" "You have the package %s installed which is a python2 package. python2 has " @@ -1349,39 +1349,50 @@ "universe component in /etc/apt/sources.list or remove %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1207 +#: ../DistUpgrade/DistUpgradeQuirks.py:1211 msgid "Checking for installed snaps" msgstr "Controllo snap installate" -#: ../DistUpgrade/DistUpgradeQuirks.py:1654 +#: ../DistUpgrade/DistUpgradeQuirks.py:1720 #, fuzzy msgid "Cannot upgrade this system" msgstr "Impossibile eseguire l'avanzamento" -#: ../DistUpgrade/DistUpgradeQuirks.py:1655 +#: ../DistUpgrade/DistUpgradeQuirks.py:1721 msgid "" "Due to a bug in grub, this system cannot be safely upgraded at this time.\n" "\n" "See https://launchpad.net/bugs/2039172." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1721 +#: ../DistUpgrade/DistUpgradeQuirks.py:1787 #, python-brace-format msgid "Updates for Ubuntu {from_release.version} will " msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1731 +#: ../DistUpgrade/DistUpgradeQuirks.py:1797 #, fuzzy msgid "Sorry, cannot upgrade this system to 24.04 LTS" msgstr "Impossibile eseguire l'avanzamento" -#: ../DistUpgrade/DistUpgradeQuirks.py:1734 +#: ../DistUpgrade/DistUpgradeQuirks.py:1800 msgid "" "The Raspberry Pi kernel for Ubuntu 24.04 LTS does not support the armhf " "architecture.\n" "\n" msgstr "" +#: ../DistUpgrade/DistUpgradeQuirks.py:1928 +#, fuzzy, python-brace-format +msgid "Sorry, cannot upgrade this system to {version}" +msgstr "Impossibile eseguire l'avanzamento" + +#: ../DistUpgrade/DistUpgradeQuirks.py:1931 +msgid "" +"Upgrades for desktop systems running TPM FDE are not currently supported. " +"Please see https://launchpad.net/bugs/2065229 for more information." +msgstr "" + #: ../DistUpgrade/DistUpgradeMain.py:62 msgid "" "Use frontend. Currently available: \n" diff -Nru ubuntu-release-upgrader-24.04.17/po/ja.po ubuntu-release-upgrader-24.04.18/po/ja.po --- ubuntu-release-upgrader-24.04.17/po/ja.po 2024-04-29 14:26:40.000000000 +0000 +++ ubuntu-release-upgrader-24.04.18/po/ja.po 2024-05-09 19:39:18.000000000 +0000 @@ -10,7 +10,7 @@ msgstr "" "Project-Id-Version: update-manager 0.42.4\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2024-04-29 16:03+0200\n" +"POT-Creation-Date: 2024-05-09 15:39-0400\n" "PO-Revision-Date: 2019-06-18 17:54+0000\n" "Last-Translator: Mitsuya Shibata \n" "Language-Team: Ubuntu Japanese Team \n" @@ -1042,13 +1042,13 @@ msgid "Media Change" msgstr "メディアの交換" -#: ../DistUpgrade/DistUpgradeQuirks.py:248 +#: ../DistUpgrade/DistUpgradeQuirks.py:252 msgid "Your graphics hardware may not be fully supported in Ubuntu 14.04." msgstr "" "あなたが使用中のグラフィックハードウェアはUbuntu 14.04では完全にサポートされ" "ない場合があります。" -#: ../DistUpgrade/DistUpgradeQuirks.py:250 +#: ../DistUpgrade/DistUpgradeQuirks.py:254 msgid "" "Running the 'unity' desktop environment is not fully supported by your " "graphics hardware. You will maybe end up in a very slow environment after " @@ -1063,13 +1063,13 @@ "wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForUnity3D を確認してください。そ" "れでもアップグレードを続けますか?" -#: ../DistUpgrade/DistUpgradeQuirks.py:274 +#: ../DistUpgrade/DistUpgradeQuirks.py:278 msgid "Your graphics hardware may not be fully supported in Ubuntu 12.04 LTS." msgstr "" "現在使用中のグラフィックハードウェアのサポートは Ubuntu 12.04 LTS では不完全" "な可能性があります。" -#: ../DistUpgrade/DistUpgradeQuirks.py:276 +#: ../DistUpgrade/DistUpgradeQuirks.py:280 msgid "" "The support in Ubuntu 12.04 LTS for your Intel graphics hardware is limited " "and you may encounter problems after the upgrade. For more information see " @@ -1081,7 +1081,7 @@ "す。詳しくは https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForI8xx をご" "覧ください。アップグレードを続行しますか?" -#: ../DistUpgrade/DistUpgradeQuirks.py:296 +#: ../DistUpgrade/DistUpgradeQuirks.py:300 msgid "" "Upgrading may reduce desktop effects, and performance in games and other " "graphically intensive programs." @@ -1090,7 +1090,7 @@ "フィックに強く依存するその他のプログラムなどのパフォーマンスが低下するかもし" "れません。" -#: ../DistUpgrade/DistUpgradeQuirks.py:300 +#: ../DistUpgrade/DistUpgradeQuirks.py:304 msgid "" "This computer is currently using the AMD 'fglrx' graphics driver. No version " "of this driver is available that works with your hardware in Ubuntu 10.04 " @@ -1104,12 +1104,12 @@ "\n" "作業を続けますか?" -#: ../DistUpgrade/DistUpgradeQuirks.py:339 -#: ../DistUpgrade/DistUpgradeQuirks.py:408 +#: ../DistUpgrade/DistUpgradeQuirks.py:343 +#: ../DistUpgrade/DistUpgradeQuirks.py:412 msgid "Sorry, no more upgrades for this system" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:340 +#: ../DistUpgrade/DistUpgradeQuirks.py:344 #, python-format msgid "" "There will not be any further Ubuntu releases for this system's 'i386' " @@ -1118,11 +1118,11 @@ "Updates for Ubuntu %s will continue until %s." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:355 +#: ../DistUpgrade/DistUpgradeQuirks.py:359 msgid "No ARMv6 CPU" msgstr "ARMv6 準拠ではない CPU です" -#: ../DistUpgrade/DistUpgradeQuirks.py:356 +#: ../DistUpgrade/DistUpgradeQuirks.py:360 msgid "" "Your system uses an ARM CPU that is older than the ARMv6 architecture. All " "packages in karmic were built with optimizations requiring ARMv6 as the " @@ -1134,12 +1134,12 @@ "最適化オプションを利用してビルドされています。このハードウェアでは新しい " "Ubuntu のリリースにアップグレードできません。" -#: ../DistUpgrade/DistUpgradeQuirks.py:376 +#: ../DistUpgrade/DistUpgradeQuirks.py:380 msgid "" "Sorry, this storage driver is not supported in kernels for newer releases" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:378 +#: ../DistUpgrade/DistUpgradeQuirks.py:382 #, python-format msgid "" "There will not be any further Ubuntu releases that provide kernel support " @@ -1149,7 +1149,7 @@ "driver, remove the directory %s and try again." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:409 +#: ../DistUpgrade/DistUpgradeQuirks.py:413 #, python-format msgid "" "There will not be any further Ubuntu releases for this system's POWER8 " @@ -1158,11 +1158,11 @@ "Updates for Ubuntu %s will continue until %s." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:427 +#: ../DistUpgrade/DistUpgradeQuirks.py:431 msgid "No init available" msgstr "initデーモンが見つかりません" -#: ../DistUpgrade/DistUpgradeQuirks.py:428 +#: ../DistUpgrade/DistUpgradeQuirks.py:432 msgid "" "Your system appears to be a virtualised environment without an init daemon, " "e.g. Linux-VServer. Ubuntu 10.04 LTS cannot function within this type of " @@ -1177,11 +1177,11 @@ "\n" "本当に作業を進めてよろしいですか?" -#: ../DistUpgrade/DistUpgradeQuirks.py:469 +#: ../DistUpgrade/DistUpgradeQuirks.py:473 msgid "The Robot Operating System (ROS) is installed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:470 +#: ../DistUpgrade/DistUpgradeQuirks.py:474 msgid "" "It appears that ROS is currently installed. Each ROS release is very strict " "about the versions of Ubuntu it supports, and Ubuntu upgrades can fail if " @@ -1198,12 +1198,12 @@ "Are you sure you want to continue?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:670 +#: ../DistUpgrade/DistUpgradeQuirks.py:674 #, fuzzy msgid "Connection to the Snap Store failed" msgstr "Snap Store への接続に失敗しました" -#: ../DistUpgrade/DistUpgradeQuirks.py:671 +#: ../DistUpgrade/DistUpgradeQuirks.py:675 msgid "" "You have the package lxd installed but your system is unable to reach the " "Snap Store. lxd is now provided via a snap and the release upgrade will fail " @@ -1213,11 +1213,11 @@ "may want to configure a Snap Store proxy." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:686 +#: ../DistUpgrade/DistUpgradeQuirks.py:690 msgid "Connection to Snap Store failed" msgstr "Snap Store への接続に失敗しました" -#: ../DistUpgrade/DistUpgradeQuirks.py:687 +#: ../DistUpgrade/DistUpgradeQuirks.py:691 msgid "" "Your system does not have a connection to the Snap Store. For the best " "upgrade experience make sure that your system can connect to api.snapcraft." @@ -1225,11 +1225,11 @@ "Do you still want to continue with the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:696 +#: ../DistUpgrade/DistUpgradeQuirks.py:700 msgid "Outdated snapd package" msgstr "期限切れの snapd パッケージ" -#: ../DistUpgrade/DistUpgradeQuirks.py:697 +#: ../DistUpgrade/DistUpgradeQuirks.py:701 msgid "" "Your system does not have the latest version of snapd. Please update the " "version of snapd on your system to improve the upgrade experience.\n" @@ -1238,36 +1238,36 @@ #. now perform direct API calls to the store, requesting size #. information for each of the snaps needing installation -#: ../DistUpgrade/DistUpgradeQuirks.py:722 +#: ../DistUpgrade/DistUpgradeQuirks.py:726 msgid "Calculating snap size requirements" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:753 +#: ../DistUpgrade/DistUpgradeQuirks.py:757 msgid "Processing snap replacements" msgstr "" #. TODO: This status should be updated, but the time of #. this change to snap switch is post-translation freeze. -#: ../DistUpgrade/DistUpgradeQuirks.py:761 +#: ../DistUpgrade/DistUpgradeQuirks.py:765 #, python-format msgid "refreshing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:765 +#: ../DistUpgrade/DistUpgradeQuirks.py:769 #, python-format msgid "removing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:768 +#: ../DistUpgrade/DistUpgradeQuirks.py:772 #, python-format msgid "installing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:797 +#: ../DistUpgrade/DistUpgradeQuirks.py:801 msgid "PAE not enabled" msgstr "PAEが有効になっていません" -#: ../DistUpgrade/DistUpgradeQuirks.py:798 +#: ../DistUpgrade/DistUpgradeQuirks.py:802 msgid "" "Your system uses a CPU that does not have PAE enabled. Ubuntu only supports " "non-PAE systems up to Ubuntu 12.04. To upgrade to a later version of Ubuntu, " @@ -1279,11 +1279,11 @@ "アップグレードするには、PAEを有効にする必要があります。(可能であれば)次をご覧" "ください: http://help.ubuntu.com/community/EnablingPAE" -#: ../DistUpgrade/DistUpgradeQuirks.py:1094 +#: ../DistUpgrade/DistUpgradeQuirks.py:1098 msgid "universe component not enabled" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1095 +#: ../DistUpgrade/DistUpgradeQuirks.py:1099 #, python-format msgid "" "You have the package %s installed which is a python2 package. python2 has " @@ -1295,39 +1295,50 @@ "universe component in /etc/apt/sources.list or remove %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1207 +#: ../DistUpgrade/DistUpgradeQuirks.py:1211 msgid "Checking for installed snaps" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1654 +#: ../DistUpgrade/DistUpgradeQuirks.py:1720 #, fuzzy msgid "Cannot upgrade this system" msgstr "アップグレードできません" -#: ../DistUpgrade/DistUpgradeQuirks.py:1655 +#: ../DistUpgrade/DistUpgradeQuirks.py:1721 msgid "" "Due to a bug in grub, this system cannot be safely upgraded at this time.\n" "\n" "See https://launchpad.net/bugs/2039172." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1721 +#: ../DistUpgrade/DistUpgradeQuirks.py:1787 #, python-brace-format msgid "Updates for Ubuntu {from_release.version} will " msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1731 +#: ../DistUpgrade/DistUpgradeQuirks.py:1797 #, fuzzy msgid "Sorry, cannot upgrade this system to 24.04 LTS" msgstr "アップグレードできません" -#: ../DistUpgrade/DistUpgradeQuirks.py:1734 +#: ../DistUpgrade/DistUpgradeQuirks.py:1800 msgid "" "The Raspberry Pi kernel for Ubuntu 24.04 LTS does not support the armhf " "architecture.\n" "\n" msgstr "" +#: ../DistUpgrade/DistUpgradeQuirks.py:1928 +#, fuzzy, python-brace-format +msgid "Sorry, cannot upgrade this system to {version}" +msgstr "アップグレードできません" + +#: ../DistUpgrade/DistUpgradeQuirks.py:1931 +msgid "" +"Upgrades for desktop systems running TPM FDE are not currently supported. " +"Please see https://launchpad.net/bugs/2065229 for more information." +msgstr "" + #: ../DistUpgrade/DistUpgradeMain.py:62 msgid "" "Use frontend. Currently available: \n" diff -Nru ubuntu-release-upgrader-24.04.17/po/jv.po ubuntu-release-upgrader-24.04.18/po/jv.po --- ubuntu-release-upgrader-24.04.17/po/jv.po 2024-04-29 14:26:40.000000000 +0000 +++ ubuntu-release-upgrader-24.04.18/po/jv.po 2024-05-09 19:39:18.000000000 +0000 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2024-04-29 16:03+0200\n" +"POT-Creation-Date: 2024-05-09 15:39-0400\n" "PO-Revision-Date: 2013-05-22 11:00+0000\n" "Last-Translator: Rahman Yusri Aftian \n" "Language-Team: Javanese \n" @@ -897,11 +897,11 @@ msgid "Media Change" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:248 +#: ../DistUpgrade/DistUpgradeQuirks.py:252 msgid "Your graphics hardware may not be fully supported in Ubuntu 14.04." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:250 +#: ../DistUpgrade/DistUpgradeQuirks.py:254 msgid "" "Running the 'unity' desktop environment is not fully supported by your " "graphics hardware. You will maybe end up in a very slow environment after " @@ -911,11 +911,11 @@ "upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:274 +#: ../DistUpgrade/DistUpgradeQuirks.py:278 msgid "Your graphics hardware may not be fully supported in Ubuntu 12.04 LTS." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:276 +#: ../DistUpgrade/DistUpgradeQuirks.py:280 msgid "" "The support in Ubuntu 12.04 LTS for your Intel graphics hardware is limited " "and you may encounter problems after the upgrade. For more information see " @@ -923,13 +923,13 @@ "continue with the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:296 +#: ../DistUpgrade/DistUpgradeQuirks.py:300 msgid "" "Upgrading may reduce desktop effects, and performance in games and other " "graphically intensive programs." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:300 +#: ../DistUpgrade/DistUpgradeQuirks.py:304 msgid "" "This computer is currently using the AMD 'fglrx' graphics driver. No version " "of this driver is available that works with your hardware in Ubuntu 10.04 " @@ -938,12 +938,12 @@ "Do you want to continue?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:339 -#: ../DistUpgrade/DistUpgradeQuirks.py:408 +#: ../DistUpgrade/DistUpgradeQuirks.py:343 +#: ../DistUpgrade/DistUpgradeQuirks.py:412 msgid "Sorry, no more upgrades for this system" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:340 +#: ../DistUpgrade/DistUpgradeQuirks.py:344 #, python-format msgid "" "There will not be any further Ubuntu releases for this system's 'i386' " @@ -952,11 +952,11 @@ "Updates for Ubuntu %s will continue until %s." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:355 +#: ../DistUpgrade/DistUpgradeQuirks.py:359 msgid "No ARMv6 CPU" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:356 +#: ../DistUpgrade/DistUpgradeQuirks.py:360 msgid "" "Your system uses an ARM CPU that is older than the ARMv6 architecture. All " "packages in karmic were built with optimizations requiring ARMv6 as the " @@ -964,12 +964,12 @@ "Ubuntu release with this hardware." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:376 +#: ../DistUpgrade/DistUpgradeQuirks.py:380 msgid "" "Sorry, this storage driver is not supported in kernels for newer releases" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:378 +#: ../DistUpgrade/DistUpgradeQuirks.py:382 #, python-format msgid "" "There will not be any further Ubuntu releases that provide kernel support " @@ -979,7 +979,7 @@ "driver, remove the directory %s and try again." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:409 +#: ../DistUpgrade/DistUpgradeQuirks.py:413 #, python-format msgid "" "There will not be any further Ubuntu releases for this system's POWER8 " @@ -988,11 +988,11 @@ "Updates for Ubuntu %s will continue until %s." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:427 +#: ../DistUpgrade/DistUpgradeQuirks.py:431 msgid "No init available" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:428 +#: ../DistUpgrade/DistUpgradeQuirks.py:432 msgid "" "Your system appears to be a virtualised environment without an init daemon, " "e.g. Linux-VServer. Ubuntu 10.04 LTS cannot function within this type of " @@ -1002,11 +1002,11 @@ "Are you sure you want to continue?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:469 +#: ../DistUpgrade/DistUpgradeQuirks.py:473 msgid "The Robot Operating System (ROS) is installed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:470 +#: ../DistUpgrade/DistUpgradeQuirks.py:474 msgid "" "It appears that ROS is currently installed. Each ROS release is very strict " "about the versions of Ubuntu it supports, and Ubuntu upgrades can fail if " @@ -1023,11 +1023,11 @@ "Are you sure you want to continue?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:670 +#: ../DistUpgrade/DistUpgradeQuirks.py:674 msgid "Connection to the Snap Store failed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:671 +#: ../DistUpgrade/DistUpgradeQuirks.py:675 msgid "" "You have the package lxd installed but your system is unable to reach the " "Snap Store. lxd is now provided via a snap and the release upgrade will fail " @@ -1037,11 +1037,11 @@ "may want to configure a Snap Store proxy." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:686 +#: ../DistUpgrade/DistUpgradeQuirks.py:690 msgid "Connection to Snap Store failed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:687 +#: ../DistUpgrade/DistUpgradeQuirks.py:691 msgid "" "Your system does not have a connection to the Snap Store. For the best " "upgrade experience make sure that your system can connect to api.snapcraft." @@ -1049,11 +1049,11 @@ "Do you still want to continue with the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:696 +#: ../DistUpgrade/DistUpgradeQuirks.py:700 msgid "Outdated snapd package" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:697 +#: ../DistUpgrade/DistUpgradeQuirks.py:701 msgid "" "Your system does not have the latest version of snapd. Please update the " "version of snapd on your system to improve the upgrade experience.\n" @@ -1062,36 +1062,36 @@ #. now perform direct API calls to the store, requesting size #. information for each of the snaps needing installation -#: ../DistUpgrade/DistUpgradeQuirks.py:722 +#: ../DistUpgrade/DistUpgradeQuirks.py:726 msgid "Calculating snap size requirements" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:753 +#: ../DistUpgrade/DistUpgradeQuirks.py:757 msgid "Processing snap replacements" msgstr "" #. TODO: This status should be updated, but the time of #. this change to snap switch is post-translation freeze. -#: ../DistUpgrade/DistUpgradeQuirks.py:761 +#: ../DistUpgrade/DistUpgradeQuirks.py:765 #, python-format msgid "refreshing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:765 +#: ../DistUpgrade/DistUpgradeQuirks.py:769 #, python-format msgid "removing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:768 +#: ../DistUpgrade/DistUpgradeQuirks.py:772 #, python-format msgid "installing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:797 +#: ../DistUpgrade/DistUpgradeQuirks.py:801 msgid "PAE not enabled" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:798 +#: ../DistUpgrade/DistUpgradeQuirks.py:802 msgid "" "Your system uses a CPU that does not have PAE enabled. Ubuntu only supports " "non-PAE systems up to Ubuntu 12.04. To upgrade to a later version of Ubuntu, " @@ -1099,11 +1099,11 @@ "http://help.ubuntu.com/community/EnablingPAE" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1094 +#: ../DistUpgrade/DistUpgradeQuirks.py:1098 msgid "universe component not enabled" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1095 +#: ../DistUpgrade/DistUpgradeQuirks.py:1099 #, python-format msgid "" "You have the package %s installed which is a python2 package. python2 has " @@ -1115,37 +1115,48 @@ "universe component in /etc/apt/sources.list or remove %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1207 +#: ../DistUpgrade/DistUpgradeQuirks.py:1211 msgid "Checking for installed snaps" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1654 +#: ../DistUpgrade/DistUpgradeQuirks.py:1720 msgid "Cannot upgrade this system" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1655 +#: ../DistUpgrade/DistUpgradeQuirks.py:1721 msgid "" "Due to a bug in grub, this system cannot be safely upgraded at this time.\n" "\n" "See https://launchpad.net/bugs/2039172." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1721 +#: ../DistUpgrade/DistUpgradeQuirks.py:1787 #, python-brace-format msgid "Updates for Ubuntu {from_release.version} will " msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1731 +#: ../DistUpgrade/DistUpgradeQuirks.py:1797 msgid "Sorry, cannot upgrade this system to 24.04 LTS" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1734 +#: ../DistUpgrade/DistUpgradeQuirks.py:1800 msgid "" "The Raspberry Pi kernel for Ubuntu 24.04 LTS does not support the armhf " "architecture.\n" "\n" msgstr "" +#: ../DistUpgrade/DistUpgradeQuirks.py:1928 +#, python-brace-format +msgid "Sorry, cannot upgrade this system to {version}" +msgstr "" + +#: ../DistUpgrade/DistUpgradeQuirks.py:1931 +msgid "" +"Upgrades for desktop systems running TPM FDE are not currently supported. " +"Please see https://launchpad.net/bugs/2065229 for more information." +msgstr "" + #: ../DistUpgrade/DistUpgradeMain.py:62 msgid "" "Use frontend. Currently available: \n" diff -Nru ubuntu-release-upgrader-24.04.17/po/ka.po ubuntu-release-upgrader-24.04.18/po/ka.po --- ubuntu-release-upgrader-24.04.17/po/ka.po 2024-04-29 14:26:40.000000000 +0000 +++ ubuntu-release-upgrader-24.04.18/po/ka.po 2024-05-09 19:39:19.000000000 +0000 @@ -11,7 +11,7 @@ msgstr "" "Project-Id-Version: po_update-manager-ka\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2024-04-29 16:03+0200\n" +"POT-Creation-Date: 2024-05-09 15:39-0400\n" "PO-Revision-Date: 2013-05-22 11:00+0000\n" "Last-Translator: Vladimer Sichinava \n" "Language-Team: Georgian \n" "Language-Team: Kazakh \n" @@ -966,11 +966,11 @@ msgid "Media Change" msgstr "Сақтауышты ауыстыру" -#: ../DistUpgrade/DistUpgradeQuirks.py:248 +#: ../DistUpgrade/DistUpgradeQuirks.py:252 msgid "Your graphics hardware may not be fully supported in Ubuntu 14.04." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:250 +#: ../DistUpgrade/DistUpgradeQuirks.py:254 msgid "" "Running the 'unity' desktop environment is not fully supported by your " "graphics hardware. You will maybe end up in a very slow environment after " @@ -980,11 +980,11 @@ "upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:274 +#: ../DistUpgrade/DistUpgradeQuirks.py:278 msgid "Your graphics hardware may not be fully supported in Ubuntu 12.04 LTS." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:276 +#: ../DistUpgrade/DistUpgradeQuirks.py:280 msgid "" "The support in Ubuntu 12.04 LTS for your Intel graphics hardware is limited " "and you may encounter problems after the upgrade. For more information see " @@ -992,7 +992,7 @@ "continue with the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:296 +#: ../DistUpgrade/DistUpgradeQuirks.py:300 msgid "" "Upgrading may reduce desktop effects, and performance in games and other " "graphically intensive programs." @@ -1001,7 +1001,7 @@ "істейтін ойындар мен бағдарламалардың өнімділігін төмендеуіне әкеліп " "соқтыруы мүмкін." -#: ../DistUpgrade/DistUpgradeQuirks.py:300 +#: ../DistUpgrade/DistUpgradeQuirks.py:304 msgid "" "This computer is currently using the AMD 'fglrx' graphics driver. No version " "of this driver is available that works with your hardware in Ubuntu 10.04 " @@ -1014,12 +1014,12 @@ "\n" "Жалғастыру қажет пе?" -#: ../DistUpgrade/DistUpgradeQuirks.py:339 -#: ../DistUpgrade/DistUpgradeQuirks.py:408 +#: ../DistUpgrade/DistUpgradeQuirks.py:343 +#: ../DistUpgrade/DistUpgradeQuirks.py:412 msgid "Sorry, no more upgrades for this system" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:340 +#: ../DistUpgrade/DistUpgradeQuirks.py:344 #, python-format msgid "" "There will not be any further Ubuntu releases for this system's 'i386' " @@ -1028,11 +1028,11 @@ "Updates for Ubuntu %s will continue until %s." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:355 +#: ../DistUpgrade/DistUpgradeQuirks.py:359 msgid "No ARMv6 CPU" msgstr "ARMv6 орталық процессоры (CPU) жоқ" -#: ../DistUpgrade/DistUpgradeQuirks.py:356 +#: ../DistUpgrade/DistUpgradeQuirks.py:360 msgid "" "Your system uses an ARM CPU that is older than the ARMv6 architecture. All " "packages in karmic were built with optimizations requiring ARMv6 as the " @@ -1044,12 +1044,12 @@ "сәулеттерге арналып қалыпқа келтірілген. Ағымдағы құралдар жабдықтармен, " "жүйеңізді Ubuntu жаңа релизіне дейін жаңарту мүмкін емес." -#: ../DistUpgrade/DistUpgradeQuirks.py:376 +#: ../DistUpgrade/DistUpgradeQuirks.py:380 msgid "" "Sorry, this storage driver is not supported in kernels for newer releases" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:378 +#: ../DistUpgrade/DistUpgradeQuirks.py:382 #, python-format msgid "" "There will not be any further Ubuntu releases that provide kernel support " @@ -1059,7 +1059,7 @@ "driver, remove the directory %s and try again." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:409 +#: ../DistUpgrade/DistUpgradeQuirks.py:413 #, python-format msgid "" "There will not be any further Ubuntu releases for this system's POWER8 " @@ -1068,11 +1068,11 @@ "Updates for Ubuntu %s will continue until %s." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:427 +#: ../DistUpgrade/DistUpgradeQuirks.py:431 msgid "No init available" msgstr "init қызметі жетімсіз" -#: ../DistUpgrade/DistUpgradeQuirks.py:428 +#: ../DistUpgrade/DistUpgradeQuirks.py:432 msgid "" "Your system appears to be a virtualised environment without an init daemon, " "e.g. Linux-VServer. Ubuntu 10.04 LTS cannot function within this type of " @@ -1088,11 +1088,11 @@ "\n" "Жалғастыруды қалайсыз ба?" -#: ../DistUpgrade/DistUpgradeQuirks.py:469 +#: ../DistUpgrade/DistUpgradeQuirks.py:473 msgid "The Robot Operating System (ROS) is installed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:470 +#: ../DistUpgrade/DistUpgradeQuirks.py:474 msgid "" "It appears that ROS is currently installed. Each ROS release is very strict " "about the versions of Ubuntu it supports, and Ubuntu upgrades can fail if " @@ -1109,11 +1109,11 @@ "Are you sure you want to continue?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:670 +#: ../DistUpgrade/DistUpgradeQuirks.py:674 msgid "Connection to the Snap Store failed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:671 +#: ../DistUpgrade/DistUpgradeQuirks.py:675 msgid "" "You have the package lxd installed but your system is unable to reach the " "Snap Store. lxd is now provided via a snap and the release upgrade will fail " @@ -1123,11 +1123,11 @@ "may want to configure a Snap Store proxy." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:686 +#: ../DistUpgrade/DistUpgradeQuirks.py:690 msgid "Connection to Snap Store failed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:687 +#: ../DistUpgrade/DistUpgradeQuirks.py:691 msgid "" "Your system does not have a connection to the Snap Store. For the best " "upgrade experience make sure that your system can connect to api.snapcraft." @@ -1135,11 +1135,11 @@ "Do you still want to continue with the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:696 +#: ../DistUpgrade/DistUpgradeQuirks.py:700 msgid "Outdated snapd package" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:697 +#: ../DistUpgrade/DistUpgradeQuirks.py:701 msgid "" "Your system does not have the latest version of snapd. Please update the " "version of snapd on your system to improve the upgrade experience.\n" @@ -1148,36 +1148,36 @@ #. now perform direct API calls to the store, requesting size #. information for each of the snaps needing installation -#: ../DistUpgrade/DistUpgradeQuirks.py:722 +#: ../DistUpgrade/DistUpgradeQuirks.py:726 msgid "Calculating snap size requirements" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:753 +#: ../DistUpgrade/DistUpgradeQuirks.py:757 msgid "Processing snap replacements" msgstr "" #. TODO: This status should be updated, but the time of #. this change to snap switch is post-translation freeze. -#: ../DistUpgrade/DistUpgradeQuirks.py:761 +#: ../DistUpgrade/DistUpgradeQuirks.py:765 #, python-format msgid "refreshing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:765 +#: ../DistUpgrade/DistUpgradeQuirks.py:769 #, python-format msgid "removing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:768 +#: ../DistUpgrade/DistUpgradeQuirks.py:772 #, python-format msgid "installing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:797 +#: ../DistUpgrade/DistUpgradeQuirks.py:801 msgid "PAE not enabled" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:798 +#: ../DistUpgrade/DistUpgradeQuirks.py:802 msgid "" "Your system uses a CPU that does not have PAE enabled. Ubuntu only supports " "non-PAE systems up to Ubuntu 12.04. To upgrade to a later version of Ubuntu, " @@ -1185,11 +1185,11 @@ "http://help.ubuntu.com/community/EnablingPAE" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1094 +#: ../DistUpgrade/DistUpgradeQuirks.py:1098 msgid "universe component not enabled" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1095 +#: ../DistUpgrade/DistUpgradeQuirks.py:1099 #, python-format msgid "" "You have the package %s installed which is a python2 package. python2 has " @@ -1201,39 +1201,50 @@ "universe component in /etc/apt/sources.list or remove %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1207 +#: ../DistUpgrade/DistUpgradeQuirks.py:1211 msgid "Checking for installed snaps" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1654 +#: ../DistUpgrade/DistUpgradeQuirks.py:1720 #, fuzzy msgid "Cannot upgrade this system" msgstr "Жаңарту мүмкін емес" -#: ../DistUpgrade/DistUpgradeQuirks.py:1655 +#: ../DistUpgrade/DistUpgradeQuirks.py:1721 msgid "" "Due to a bug in grub, this system cannot be safely upgraded at this time.\n" "\n" "See https://launchpad.net/bugs/2039172." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1721 +#: ../DistUpgrade/DistUpgradeQuirks.py:1787 #, python-brace-format msgid "Updates for Ubuntu {from_release.version} will " msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1731 +#: ../DistUpgrade/DistUpgradeQuirks.py:1797 #, fuzzy msgid "Sorry, cannot upgrade this system to 24.04 LTS" msgstr "Жаңарту мүмкін емес" -#: ../DistUpgrade/DistUpgradeQuirks.py:1734 +#: ../DistUpgrade/DistUpgradeQuirks.py:1800 msgid "" "The Raspberry Pi kernel for Ubuntu 24.04 LTS does not support the armhf " "architecture.\n" "\n" msgstr "" +#: ../DistUpgrade/DistUpgradeQuirks.py:1928 +#, fuzzy, python-brace-format +msgid "Sorry, cannot upgrade this system to {version}" +msgstr "Жаңарту мүмкін емес" + +#: ../DistUpgrade/DistUpgradeQuirks.py:1931 +msgid "" +"Upgrades for desktop systems running TPM FDE are not currently supported. " +"Please see https://launchpad.net/bugs/2065229 for more information." +msgstr "" + #: ../DistUpgrade/DistUpgradeMain.py:62 msgid "" "Use frontend. Currently available: \n" diff -Nru ubuntu-release-upgrader-24.04.17/po/km.po ubuntu-release-upgrader-24.04.18/po/km.po --- ubuntu-release-upgrader-24.04.17/po/km.po 2024-04-29 14:26:40.000000000 +0000 +++ ubuntu-release-upgrader-24.04.18/po/km.po 2024-05-09 19:39:19.000000000 +0000 @@ -9,7 +9,7 @@ msgstr "" "Project-Id-Version: po_update-manager-km\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2024-04-29 16:03+0200\n" +"POT-Creation-Date: 2024-05-09 15:39-0400\n" "PO-Revision-Date: 2013-05-22 11:00+0000\n" "Last-Translator: Khoem Sokhem \n" "Language-Team: Khmer \n" @@ -995,11 +995,11 @@ msgid "Media Change" msgstr "ការ​ផ្លាស់ប្ដូរ​មេឌៀ" -#: ../DistUpgrade/DistUpgradeQuirks.py:248 +#: ../DistUpgrade/DistUpgradeQuirks.py:252 msgid "Your graphics hardware may not be fully supported in Ubuntu 14.04." msgstr "ផ្នែក​រឹង​ក្រាហ្វិក​របស់​អ្នក​អាច​មិន​គាំទ្រ​ពេញ​លេញ​ក្នុង Ubuntu 14.04 ។" -#: ../DistUpgrade/DistUpgradeQuirks.py:250 +#: ../DistUpgrade/DistUpgradeQuirks.py:254 msgid "" "Running the 'unity' desktop environment is not fully supported by your " "graphics hardware. You will maybe end up in a very slow environment after " @@ -1013,11 +1013,11 @@ "មើល​ព័ត៌មាន​បន្ថែម​សូម​មើល https://wiki.ubuntu.com/X/Bugs/" "UpdateManagerWarningForUnity3D តើ​អ្នក​នៅ​តែ​ចង់​បន្ត​ជាមួយ​បច្ចុប្បន្នភាព​នេះ​ឬ?" -#: ../DistUpgrade/DistUpgradeQuirks.py:274 +#: ../DistUpgrade/DistUpgradeQuirks.py:278 msgid "Your graphics hardware may not be fully supported in Ubuntu 12.04 LTS." msgstr "ផ្នែក​រឹង​ក្រាហ្វិក​របស់​អ្នក​អាច​គាំទ្រ​មិន​ពេញលេញ​នៅ​ក្នុង​អ៊ូប៊ុនទូ 12.04 LTS  ។" -#: ../DistUpgrade/DistUpgradeQuirks.py:276 +#: ../DistUpgrade/DistUpgradeQuirks.py:280 msgid "" "The support in Ubuntu 12.04 LTS for your Intel graphics hardware is limited " "and you may encounter problems after the upgrade. For more information see " @@ -1028,7 +1028,7 @@ "ប្រទះ​បញ្ហា​បន្ទាប់​ពី​ធ្វើ​ឲ្យ​ប្រសើរ​ឡើង ។ ចំពោះ​ព័ត៌មាន​បន្ថែម សូម​មើល https://wiki.ubuntu.com/X/" "Bugs/UpdateManagerWarningForI8xx តើ​អ្នក​ចង់​បន្ត​ការ​ធ្វើ​ឲ្យ​ប្រសើរ​ឡើង​ដែរឬទេ ?" -#: ../DistUpgrade/DistUpgradeQuirks.py:296 +#: ../DistUpgrade/DistUpgradeQuirks.py:300 msgid "" "Upgrading may reduce desktop effects, and performance in games and other " "graphically intensive programs." @@ -1036,7 +1036,7 @@ "ការ​ធ្វើឲ្យ​ប្រសើរ​អាច​កាត់បន្ថយ​បែបផែន​ផ្ទៃតុ សមត្ថភាព​នៅ​ក្នុង​ល្បែង​កម្សាន្ត និងកម្មវិធីដែល​ប្រើ​ក្រាហ្វិក​" "ផ្សេងទៀត ។" -#: ../DistUpgrade/DistUpgradeQuirks.py:300 +#: ../DistUpgrade/DistUpgradeQuirks.py:304 msgid "" "This computer is currently using the AMD 'fglrx' graphics driver. No version " "of this driver is available that works with your hardware in Ubuntu 10.04 " @@ -1049,12 +1049,12 @@ "\n" "តើ​អ្នក​ចង់​បន្ត​ដែរ​ឬ​ទេ ?" -#: ../DistUpgrade/DistUpgradeQuirks.py:339 -#: ../DistUpgrade/DistUpgradeQuirks.py:408 +#: ../DistUpgrade/DistUpgradeQuirks.py:343 +#: ../DistUpgrade/DistUpgradeQuirks.py:412 msgid "Sorry, no more upgrades for this system" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:340 +#: ../DistUpgrade/DistUpgradeQuirks.py:344 #, python-format msgid "" "There will not be any further Ubuntu releases for this system's 'i386' " @@ -1063,11 +1063,11 @@ "Updates for Ubuntu %s will continue until %s." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:355 +#: ../DistUpgrade/DistUpgradeQuirks.py:359 msgid "No ARMv6 CPU" msgstr "គ្មាន​ស៊ីភីយូ ARMv6" -#: ../DistUpgrade/DistUpgradeQuirks.py:356 +#: ../DistUpgrade/DistUpgradeQuirks.py:360 msgid "" "Your system uses an ARM CPU that is older than the ARMv6 architecture. All " "packages in karmic were built with optimizations requiring ARMv6 as the " @@ -1078,12 +1078,12 @@ "បាន​ស្ថាបនា​ជាមួយ​ការ​ធ្វើឲ្យ​ប្រសើរ​ដែល​ទាមទារ ARMv6 ជា​ស្ថាបត្យកម្ម​អប្បបរមា ។ អ្នក​មិន​អាច​ធ្វើឲ្យ​" "ប្រព័ន្ធ​របស់​អ្នក​ប្រសើរ​ទៅជា​កំណែ​ចេញ​ផ្សាយ​អ៊ូប៊ុនទូ​ថ្មី​ដោយ​ប្រើ​ផ្នែក​រឹង​នេះ​បាន​ឡើយ ។" -#: ../DistUpgrade/DistUpgradeQuirks.py:376 +#: ../DistUpgrade/DistUpgradeQuirks.py:380 msgid "" "Sorry, this storage driver is not supported in kernels for newer releases" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:378 +#: ../DistUpgrade/DistUpgradeQuirks.py:382 #, python-format msgid "" "There will not be any further Ubuntu releases that provide kernel support " @@ -1093,7 +1093,7 @@ "driver, remove the directory %s and try again." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:409 +#: ../DistUpgrade/DistUpgradeQuirks.py:413 #, python-format msgid "" "There will not be any further Ubuntu releases for this system's POWER8 " @@ -1102,11 +1102,11 @@ "Updates for Ubuntu %s will continue until %s." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:427 +#: ../DistUpgrade/DistUpgradeQuirks.py:431 msgid "No init available" msgstr "គ្មាន init" -#: ../DistUpgrade/DistUpgradeQuirks.py:428 +#: ../DistUpgrade/DistUpgradeQuirks.py:432 msgid "" "Your system appears to be a virtualised environment without an init daemon, " "e.g. Linux-VServer. Ubuntu 10.04 LTS cannot function within this type of " @@ -1121,11 +1121,11 @@ "\n" "តើ​អ្នក​ចង់​បន្ត​ទេ ?" -#: ../DistUpgrade/DistUpgradeQuirks.py:469 +#: ../DistUpgrade/DistUpgradeQuirks.py:473 msgid "The Robot Operating System (ROS) is installed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:470 +#: ../DistUpgrade/DistUpgradeQuirks.py:474 msgid "" "It appears that ROS is currently installed. Each ROS release is very strict " "about the versions of Ubuntu it supports, and Ubuntu upgrades can fail if " @@ -1142,11 +1142,11 @@ "Are you sure you want to continue?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:670 +#: ../DistUpgrade/DistUpgradeQuirks.py:674 msgid "Connection to the Snap Store failed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:671 +#: ../DistUpgrade/DistUpgradeQuirks.py:675 msgid "" "You have the package lxd installed but your system is unable to reach the " "Snap Store. lxd is now provided via a snap and the release upgrade will fail " @@ -1156,11 +1156,11 @@ "may want to configure a Snap Store proxy." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:686 +#: ../DistUpgrade/DistUpgradeQuirks.py:690 msgid "Connection to Snap Store failed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:687 +#: ../DistUpgrade/DistUpgradeQuirks.py:691 msgid "" "Your system does not have a connection to the Snap Store. For the best " "upgrade experience make sure that your system can connect to api.snapcraft." @@ -1168,11 +1168,11 @@ "Do you still want to continue with the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:696 +#: ../DistUpgrade/DistUpgradeQuirks.py:700 msgid "Outdated snapd package" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:697 +#: ../DistUpgrade/DistUpgradeQuirks.py:701 msgid "" "Your system does not have the latest version of snapd. Please update the " "version of snapd on your system to improve the upgrade experience.\n" @@ -1181,36 +1181,36 @@ #. now perform direct API calls to the store, requesting size #. information for each of the snaps needing installation -#: ../DistUpgrade/DistUpgradeQuirks.py:722 +#: ../DistUpgrade/DistUpgradeQuirks.py:726 msgid "Calculating snap size requirements" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:753 +#: ../DistUpgrade/DistUpgradeQuirks.py:757 msgid "Processing snap replacements" msgstr "" #. TODO: This status should be updated, but the time of #. this change to snap switch is post-translation freeze. -#: ../DistUpgrade/DistUpgradeQuirks.py:761 +#: ../DistUpgrade/DistUpgradeQuirks.py:765 #, python-format msgid "refreshing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:765 +#: ../DistUpgrade/DistUpgradeQuirks.py:769 #, python-format msgid "removing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:768 +#: ../DistUpgrade/DistUpgradeQuirks.py:772 #, python-format msgid "installing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:797 +#: ../DistUpgrade/DistUpgradeQuirks.py:801 msgid "PAE not enabled" msgstr "បាន​បិទ PAE" -#: ../DistUpgrade/DistUpgradeQuirks.py:798 +#: ../DistUpgrade/DistUpgradeQuirks.py:802 msgid "" "Your system uses a CPU that does not have PAE enabled. Ubuntu only supports " "non-PAE systems up to Ubuntu 12.04. To upgrade to a later version of Ubuntu, " @@ -1221,11 +1221,11 @@ "12.04 ។ ដើម្បី​ធ្វើ​បច្ចុប្បន្ន​ចំពោះ​កំណែ​អ៊ូប៊ុនទូ​ថ្មី​ជាង​នេះ, អ្នក​ត្រូវ​តែ​បើក PAE (ប្រសិនបើ​​អាច) មើល៖\n" "http://help.ubuntu.com/community/EnablingPAE" -#: ../DistUpgrade/DistUpgradeQuirks.py:1094 +#: ../DistUpgrade/DistUpgradeQuirks.py:1098 msgid "universe component not enabled" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1095 +#: ../DistUpgrade/DistUpgradeQuirks.py:1099 #, python-format msgid "" "You have the package %s installed which is a python2 package. python2 has " @@ -1237,39 +1237,50 @@ "universe component in /etc/apt/sources.list or remove %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1207 +#: ../DistUpgrade/DistUpgradeQuirks.py:1211 msgid "Checking for installed snaps" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1654 +#: ../DistUpgrade/DistUpgradeQuirks.py:1720 #, fuzzy msgid "Cannot upgrade this system" msgstr "មិន​អាច​ធ្វើ​បច្ចុប្បន្នភាព​បាន​​ឡើយ" -#: ../DistUpgrade/DistUpgradeQuirks.py:1655 +#: ../DistUpgrade/DistUpgradeQuirks.py:1721 msgid "" "Due to a bug in grub, this system cannot be safely upgraded at this time.\n" "\n" "See https://launchpad.net/bugs/2039172." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1721 +#: ../DistUpgrade/DistUpgradeQuirks.py:1787 #, python-brace-format msgid "Updates for Ubuntu {from_release.version} will " msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1731 +#: ../DistUpgrade/DistUpgradeQuirks.py:1797 #, fuzzy msgid "Sorry, cannot upgrade this system to 24.04 LTS" msgstr "មិន​អាច​ធ្វើ​បច្ចុប្បន្នភាព​បាន​​ឡើយ" -#: ../DistUpgrade/DistUpgradeQuirks.py:1734 +#: ../DistUpgrade/DistUpgradeQuirks.py:1800 msgid "" "The Raspberry Pi kernel for Ubuntu 24.04 LTS does not support the armhf " "architecture.\n" "\n" msgstr "" +#: ../DistUpgrade/DistUpgradeQuirks.py:1928 +#, fuzzy, python-brace-format +msgid "Sorry, cannot upgrade this system to {version}" +msgstr "មិន​អាច​ធ្វើ​បច្ចុប្បន្នភាព​បាន​​ឡើយ" + +#: ../DistUpgrade/DistUpgradeQuirks.py:1931 +msgid "" +"Upgrades for desktop systems running TPM FDE are not currently supported. " +"Please see https://launchpad.net/bugs/2065229 for more information." +msgstr "" + #: ../DistUpgrade/DistUpgradeMain.py:62 msgid "" "Use frontend. Currently available: \n" diff -Nru ubuntu-release-upgrader-24.04.17/po/kn.po ubuntu-release-upgrader-24.04.18/po/kn.po --- ubuntu-release-upgrader-24.04.17/po/kn.po 2024-04-29 14:26:40.000000000 +0000 +++ ubuntu-release-upgrader-24.04.18/po/kn.po 2024-05-09 19:39:19.000000000 +0000 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2024-04-29 16:03+0200\n" +"POT-Creation-Date: 2024-05-09 15:39-0400\n" "PO-Revision-Date: 2013-05-22 11:00+0000\n" "Last-Translator: Michael Vogt \n" "Language-Team: Kannada \n" @@ -899,11 +899,11 @@ msgid "Media Change" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:248 +#: ../DistUpgrade/DistUpgradeQuirks.py:252 msgid "Your graphics hardware may not be fully supported in Ubuntu 14.04." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:250 +#: ../DistUpgrade/DistUpgradeQuirks.py:254 msgid "" "Running the 'unity' desktop environment is not fully supported by your " "graphics hardware. You will maybe end up in a very slow environment after " @@ -913,11 +913,11 @@ "upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:274 +#: ../DistUpgrade/DistUpgradeQuirks.py:278 msgid "Your graphics hardware may not be fully supported in Ubuntu 12.04 LTS." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:276 +#: ../DistUpgrade/DistUpgradeQuirks.py:280 msgid "" "The support in Ubuntu 12.04 LTS for your Intel graphics hardware is limited " "and you may encounter problems after the upgrade. For more information see " @@ -925,13 +925,13 @@ "continue with the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:296 +#: ../DistUpgrade/DistUpgradeQuirks.py:300 msgid "" "Upgrading may reduce desktop effects, and performance in games and other " "graphically intensive programs." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:300 +#: ../DistUpgrade/DistUpgradeQuirks.py:304 msgid "" "This computer is currently using the AMD 'fglrx' graphics driver. No version " "of this driver is available that works with your hardware in Ubuntu 10.04 " @@ -940,12 +940,12 @@ "Do you want to continue?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:339 -#: ../DistUpgrade/DistUpgradeQuirks.py:408 +#: ../DistUpgrade/DistUpgradeQuirks.py:343 +#: ../DistUpgrade/DistUpgradeQuirks.py:412 msgid "Sorry, no more upgrades for this system" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:340 +#: ../DistUpgrade/DistUpgradeQuirks.py:344 #, python-format msgid "" "There will not be any further Ubuntu releases for this system's 'i386' " @@ -954,11 +954,11 @@ "Updates for Ubuntu %s will continue until %s." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:355 +#: ../DistUpgrade/DistUpgradeQuirks.py:359 msgid "No ARMv6 CPU" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:356 +#: ../DistUpgrade/DistUpgradeQuirks.py:360 msgid "" "Your system uses an ARM CPU that is older than the ARMv6 architecture. All " "packages in karmic were built with optimizations requiring ARMv6 as the " @@ -966,12 +966,12 @@ "Ubuntu release with this hardware." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:376 +#: ../DistUpgrade/DistUpgradeQuirks.py:380 msgid "" "Sorry, this storage driver is not supported in kernels for newer releases" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:378 +#: ../DistUpgrade/DistUpgradeQuirks.py:382 #, python-format msgid "" "There will not be any further Ubuntu releases that provide kernel support " @@ -981,7 +981,7 @@ "driver, remove the directory %s and try again." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:409 +#: ../DistUpgrade/DistUpgradeQuirks.py:413 #, python-format msgid "" "There will not be any further Ubuntu releases for this system's POWER8 " @@ -990,11 +990,11 @@ "Updates for Ubuntu %s will continue until %s." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:427 +#: ../DistUpgrade/DistUpgradeQuirks.py:431 msgid "No init available" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:428 +#: ../DistUpgrade/DistUpgradeQuirks.py:432 msgid "" "Your system appears to be a virtualised environment without an init daemon, " "e.g. Linux-VServer. Ubuntu 10.04 LTS cannot function within this type of " @@ -1004,11 +1004,11 @@ "Are you sure you want to continue?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:469 +#: ../DistUpgrade/DistUpgradeQuirks.py:473 msgid "The Robot Operating System (ROS) is installed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:470 +#: ../DistUpgrade/DistUpgradeQuirks.py:474 msgid "" "It appears that ROS is currently installed. Each ROS release is very strict " "about the versions of Ubuntu it supports, and Ubuntu upgrades can fail if " @@ -1025,11 +1025,11 @@ "Are you sure you want to continue?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:670 +#: ../DistUpgrade/DistUpgradeQuirks.py:674 msgid "Connection to the Snap Store failed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:671 +#: ../DistUpgrade/DistUpgradeQuirks.py:675 msgid "" "You have the package lxd installed but your system is unable to reach the " "Snap Store. lxd is now provided via a snap and the release upgrade will fail " @@ -1039,11 +1039,11 @@ "may want to configure a Snap Store proxy." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:686 +#: ../DistUpgrade/DistUpgradeQuirks.py:690 msgid "Connection to Snap Store failed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:687 +#: ../DistUpgrade/DistUpgradeQuirks.py:691 msgid "" "Your system does not have a connection to the Snap Store. For the best " "upgrade experience make sure that your system can connect to api.snapcraft." @@ -1051,11 +1051,11 @@ "Do you still want to continue with the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:696 +#: ../DistUpgrade/DistUpgradeQuirks.py:700 msgid "Outdated snapd package" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:697 +#: ../DistUpgrade/DistUpgradeQuirks.py:701 msgid "" "Your system does not have the latest version of snapd. Please update the " "version of snapd on your system to improve the upgrade experience.\n" @@ -1064,36 +1064,36 @@ #. now perform direct API calls to the store, requesting size #. information for each of the snaps needing installation -#: ../DistUpgrade/DistUpgradeQuirks.py:722 +#: ../DistUpgrade/DistUpgradeQuirks.py:726 msgid "Calculating snap size requirements" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:753 +#: ../DistUpgrade/DistUpgradeQuirks.py:757 msgid "Processing snap replacements" msgstr "" #. TODO: This status should be updated, but the time of #. this change to snap switch is post-translation freeze. -#: ../DistUpgrade/DistUpgradeQuirks.py:761 +#: ../DistUpgrade/DistUpgradeQuirks.py:765 #, python-format msgid "refreshing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:765 +#: ../DistUpgrade/DistUpgradeQuirks.py:769 #, python-format msgid "removing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:768 +#: ../DistUpgrade/DistUpgradeQuirks.py:772 #, python-format msgid "installing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:797 +#: ../DistUpgrade/DistUpgradeQuirks.py:801 msgid "PAE not enabled" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:798 +#: ../DistUpgrade/DistUpgradeQuirks.py:802 msgid "" "Your system uses a CPU that does not have PAE enabled. Ubuntu only supports " "non-PAE systems up to Ubuntu 12.04. To upgrade to a later version of Ubuntu, " @@ -1101,11 +1101,11 @@ "http://help.ubuntu.com/community/EnablingPAE" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1094 +#: ../DistUpgrade/DistUpgradeQuirks.py:1098 msgid "universe component not enabled" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1095 +#: ../DistUpgrade/DistUpgradeQuirks.py:1099 #, python-format msgid "" "You have the package %s installed which is a python2 package. python2 has " @@ -1117,37 +1117,48 @@ "universe component in /etc/apt/sources.list or remove %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1207 +#: ../DistUpgrade/DistUpgradeQuirks.py:1211 msgid "Checking for installed snaps" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1654 +#: ../DistUpgrade/DistUpgradeQuirks.py:1720 msgid "Cannot upgrade this system" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1655 +#: ../DistUpgrade/DistUpgradeQuirks.py:1721 msgid "" "Due to a bug in grub, this system cannot be safely upgraded at this time.\n" "\n" "See https://launchpad.net/bugs/2039172." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1721 +#: ../DistUpgrade/DistUpgradeQuirks.py:1787 #, python-brace-format msgid "Updates for Ubuntu {from_release.version} will " msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1731 +#: ../DistUpgrade/DistUpgradeQuirks.py:1797 msgid "Sorry, cannot upgrade this system to 24.04 LTS" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1734 +#: ../DistUpgrade/DistUpgradeQuirks.py:1800 msgid "" "The Raspberry Pi kernel for Ubuntu 24.04 LTS does not support the armhf " "architecture.\n" "\n" msgstr "" +#: ../DistUpgrade/DistUpgradeQuirks.py:1928 +#, python-brace-format +msgid "Sorry, cannot upgrade this system to {version}" +msgstr "" + +#: ../DistUpgrade/DistUpgradeQuirks.py:1931 +msgid "" +"Upgrades for desktop systems running TPM FDE are not currently supported. " +"Please see https://launchpad.net/bugs/2065229 for more information." +msgstr "" + #: ../DistUpgrade/DistUpgradeMain.py:62 msgid "" "Use frontend. Currently available: \n" diff -Nru ubuntu-release-upgrader-24.04.17/po/ko.po ubuntu-release-upgrader-24.04.18/po/ko.po --- ubuntu-release-upgrader-24.04.17/po/ko.po 2024-04-29 14:26:40.000000000 +0000 +++ ubuntu-release-upgrader-24.04.18/po/ko.po 2024-05-09 19:39:19.000000000 +0000 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2024-04-29 16:03+0200\n" +"POT-Creation-Date: 2024-05-09 15:39-0400\n" "PO-Revision-Date: 2019-06-18 17:54+0000\n" "Last-Translator: Kim Boram \n" "Language-Team: Korean \n" @@ -1015,12 +1015,12 @@ msgid "Media Change" msgstr "미디어 바꾸기" -#: ../DistUpgrade/DistUpgradeQuirks.py:248 +#: ../DistUpgrade/DistUpgradeQuirks.py:252 msgid "Your graphics hardware may not be fully supported in Ubuntu 14.04." msgstr "" "사용 중인 그래픽 카드가 우분투 14.04 버전을 완전히 지원하지 않을 수 있습니다." -#: ../DistUpgrade/DistUpgradeQuirks.py:250 +#: ../DistUpgrade/DistUpgradeQuirks.py:254 msgid "" "Running the 'unity' desktop environment is not fully supported by your " "graphics hardware. You will maybe end up in a very slow environment after " @@ -1035,11 +1035,11 @@ "UpdateManagerWarningForUnity3D 페이지를 확인하십시오. 업그레이드를 계속하시겠" "습니까?" -#: ../DistUpgrade/DistUpgradeQuirks.py:274 +#: ../DistUpgrade/DistUpgradeQuirks.py:278 msgid "Your graphics hardware may not be fully supported in Ubuntu 12.04 LTS." msgstr "그래픽 카드가 우분투 12.04 장기 지원판을 지원하지 않습니다." -#: ../DistUpgrade/DistUpgradeQuirks.py:276 +#: ../DistUpgrade/DistUpgradeQuirks.py:280 msgid "" "The support in Ubuntu 12.04 LTS for your Intel graphics hardware is limited " "and you may encounter problems after the upgrade. For more information see " @@ -1051,7 +1051,7 @@ "Bugs/UpdateManagerWarningForI8xx 페이지를 확인해주십시오. 업그레이드를 계속 " "진행하시겠습니까?" -#: ../DistUpgrade/DistUpgradeQuirks.py:296 +#: ../DistUpgrade/DistUpgradeQuirks.py:300 msgid "" "Upgrading may reduce desktop effects, and performance in games and other " "graphically intensive programs." @@ -1059,7 +1059,7 @@ "업그레이드로 인해 데스크탑 효과나 게임, 그래픽 관련 프로그램의 성능이 줄어들 " "수 있습니다." -#: ../DistUpgrade/DistUpgradeQuirks.py:300 +#: ../DistUpgrade/DistUpgradeQuirks.py:304 msgid "" "This computer is currently using the AMD 'fglrx' graphics driver. No version " "of this driver is available that works with your hardware in Ubuntu 10.04 " @@ -1071,12 +1071,12 @@ "이버는 우분투 10.04 LTS을 지원하는 버전이 없습니다.\n" "계속 진행하시겠습니까?" -#: ../DistUpgrade/DistUpgradeQuirks.py:339 -#: ../DistUpgrade/DistUpgradeQuirks.py:408 +#: ../DistUpgrade/DistUpgradeQuirks.py:343 +#: ../DistUpgrade/DistUpgradeQuirks.py:412 msgid "Sorry, no more upgrades for this system" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:340 +#: ../DistUpgrade/DistUpgradeQuirks.py:344 #, python-format msgid "" "There will not be any further Ubuntu releases for this system's 'i386' " @@ -1085,11 +1085,11 @@ "Updates for Ubuntu %s will continue until %s." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:355 +#: ../DistUpgrade/DistUpgradeQuirks.py:359 msgid "No ARMv6 CPU" msgstr "ARMv6 CPU 아님" -#: ../DistUpgrade/DistUpgradeQuirks.py:356 +#: ../DistUpgrade/DistUpgradeQuirks.py:360 msgid "" "Your system uses an ARM CPU that is older than the ARMv6 architecture. All " "packages in karmic were built with optimizations requiring ARMv6 as the " @@ -1101,12 +1101,12 @@ "합니다. 현재 하드웨어로는 새로운 우분투 버전으로 시스템을 업그레이드 할 수 없" "습니다." -#: ../DistUpgrade/DistUpgradeQuirks.py:376 +#: ../DistUpgrade/DistUpgradeQuirks.py:380 msgid "" "Sorry, this storage driver is not supported in kernels for newer releases" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:378 +#: ../DistUpgrade/DistUpgradeQuirks.py:382 #, python-format msgid "" "There will not be any further Ubuntu releases that provide kernel support " @@ -1116,7 +1116,7 @@ "driver, remove the directory %s and try again." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:409 +#: ../DistUpgrade/DistUpgradeQuirks.py:413 #, python-format msgid "" "There will not be any further Ubuntu releases for this system's POWER8 " @@ -1125,11 +1125,11 @@ "Updates for Ubuntu %s will continue until %s." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:427 +#: ../DistUpgrade/DistUpgradeQuirks.py:431 msgid "No init available" msgstr "init 사용 불가" -#: ../DistUpgrade/DistUpgradeQuirks.py:428 +#: ../DistUpgrade/DistUpgradeQuirks.py:432 msgid "" "Your system appears to be a virtualised environment without an init daemon, " "e.g. Linux-VServer. Ubuntu 10.04 LTS cannot function within this type of " @@ -1144,11 +1144,11 @@ "\n" "계속 진행하시겠습니까?" -#: ../DistUpgrade/DistUpgradeQuirks.py:469 +#: ../DistUpgrade/DistUpgradeQuirks.py:473 msgid "The Robot Operating System (ROS) is installed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:470 +#: ../DistUpgrade/DistUpgradeQuirks.py:474 msgid "" "It appears that ROS is currently installed. Each ROS release is very strict " "about the versions of Ubuntu it supports, and Ubuntu upgrades can fail if " @@ -1165,11 +1165,11 @@ "Are you sure you want to continue?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:670 +#: ../DistUpgrade/DistUpgradeQuirks.py:674 msgid "Connection to the Snap Store failed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:671 +#: ../DistUpgrade/DistUpgradeQuirks.py:675 msgid "" "You have the package lxd installed but your system is unable to reach the " "Snap Store. lxd is now provided via a snap and the release upgrade will fail " @@ -1179,11 +1179,11 @@ "may want to configure a Snap Store proxy." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:686 +#: ../DistUpgrade/DistUpgradeQuirks.py:690 msgid "Connection to Snap Store failed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:687 +#: ../DistUpgrade/DistUpgradeQuirks.py:691 msgid "" "Your system does not have a connection to the Snap Store. For the best " "upgrade experience make sure that your system can connect to api.snapcraft." @@ -1191,11 +1191,11 @@ "Do you still want to continue with the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:696 +#: ../DistUpgrade/DistUpgradeQuirks.py:700 msgid "Outdated snapd package" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:697 +#: ../DistUpgrade/DistUpgradeQuirks.py:701 msgid "" "Your system does not have the latest version of snapd. Please update the " "version of snapd on your system to improve the upgrade experience.\n" @@ -1204,36 +1204,36 @@ #. now perform direct API calls to the store, requesting size #. information for each of the snaps needing installation -#: ../DistUpgrade/DistUpgradeQuirks.py:722 +#: ../DistUpgrade/DistUpgradeQuirks.py:726 msgid "Calculating snap size requirements" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:753 +#: ../DistUpgrade/DistUpgradeQuirks.py:757 msgid "Processing snap replacements" msgstr "" #. TODO: This status should be updated, but the time of #. this change to snap switch is post-translation freeze. -#: ../DistUpgrade/DistUpgradeQuirks.py:761 +#: ../DistUpgrade/DistUpgradeQuirks.py:765 #, python-format msgid "refreshing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:765 +#: ../DistUpgrade/DistUpgradeQuirks.py:769 #, python-format msgid "removing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:768 +#: ../DistUpgrade/DistUpgradeQuirks.py:772 #, python-format msgid "installing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:797 +#: ../DistUpgrade/DistUpgradeQuirks.py:801 msgid "PAE not enabled" msgstr "PAE 기능을 사용하지 않고 있습니다." -#: ../DistUpgrade/DistUpgradeQuirks.py:798 +#: ../DistUpgrade/DistUpgradeQuirks.py:802 msgid "" "Your system uses a CPU that does not have PAE enabled. Ubuntu only supports " "non-PAE systems up to Ubuntu 12.04. To upgrade to a later version of Ubuntu, " @@ -1246,11 +1246,11 @@ "\n" "다음 페이지를 확인하십시오: http://help.ubuntu.com/community/EnablingPAE" -#: ../DistUpgrade/DistUpgradeQuirks.py:1094 +#: ../DistUpgrade/DistUpgradeQuirks.py:1098 msgid "universe component not enabled" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1095 +#: ../DistUpgrade/DistUpgradeQuirks.py:1099 #, python-format msgid "" "You have the package %s installed which is a python2 package. python2 has " @@ -1262,39 +1262,50 @@ "universe component in /etc/apt/sources.list or remove %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1207 +#: ../DistUpgrade/DistUpgradeQuirks.py:1211 msgid "Checking for installed snaps" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1654 +#: ../DistUpgrade/DistUpgradeQuirks.py:1720 #, fuzzy msgid "Cannot upgrade this system" msgstr "업그레이드할 수 없음" -#: ../DistUpgrade/DistUpgradeQuirks.py:1655 +#: ../DistUpgrade/DistUpgradeQuirks.py:1721 msgid "" "Due to a bug in grub, this system cannot be safely upgraded at this time.\n" "\n" "See https://launchpad.net/bugs/2039172." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1721 +#: ../DistUpgrade/DistUpgradeQuirks.py:1787 #, python-brace-format msgid "Updates for Ubuntu {from_release.version} will " msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1731 +#: ../DistUpgrade/DistUpgradeQuirks.py:1797 #, fuzzy msgid "Sorry, cannot upgrade this system to 24.04 LTS" msgstr "업그레이드할 수 없음" -#: ../DistUpgrade/DistUpgradeQuirks.py:1734 +#: ../DistUpgrade/DistUpgradeQuirks.py:1800 msgid "" "The Raspberry Pi kernel for Ubuntu 24.04 LTS does not support the armhf " "architecture.\n" "\n" msgstr "" +#: ../DistUpgrade/DistUpgradeQuirks.py:1928 +#, fuzzy, python-brace-format +msgid "Sorry, cannot upgrade this system to {version}" +msgstr "업그레이드할 수 없음" + +#: ../DistUpgrade/DistUpgradeQuirks.py:1931 +msgid "" +"Upgrades for desktop systems running TPM FDE are not currently supported. " +"Please see https://launchpad.net/bugs/2065229 for more information." +msgstr "" + #: ../DistUpgrade/DistUpgradeMain.py:62 msgid "" "Use frontend. Currently available: \n" diff -Nru ubuntu-release-upgrader-24.04.17/po/ku.po ubuntu-release-upgrader-24.04.18/po/ku.po --- ubuntu-release-upgrader-24.04.17/po/ku.po 2024-04-29 14:26:40.000000000 +0000 +++ ubuntu-release-upgrader-24.04.18/po/ku.po 2024-05-09 19:39:19.000000000 +0000 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2024-04-29 16:03+0200\n" +"POT-Creation-Date: 2024-05-09 15:39-0400\n" "PO-Revision-Date: 2013-05-22 11:00+0000\n" "Last-Translator: Amed Çeko Jiyan \n" "Language-Team: Kurdish \n" @@ -1048,13 +1048,13 @@ msgid "Media Change" msgstr "Guhartina Medyayê" -#: ../DistUpgrade/DistUpgradeQuirks.py:248 +#: ../DistUpgrade/DistUpgradeQuirks.py:252 msgid "Your graphics hardware may not be fully supported in Ubuntu 14.04." msgstr "" "Dibe ku Ubuntu 14.04 LTS, ji aliyê hişkalava te ve bi tevahî nayê " "piştgirîkirin." -#: ../DistUpgrade/DistUpgradeQuirks.py:250 +#: ../DistUpgrade/DistUpgradeQuirks.py:254 msgid "" "Running the 'unity' desktop environment is not fully supported by your " "graphics hardware. You will maybe end up in a very slow environment after " @@ -1069,13 +1069,13 @@ "zêdetir agahiyan li navnîşana https://wiki.ubuntu.com/X/Bugs/" "UpdateManagerWarningForUnity3D-ê binêre. Tu dixwazî bilindkirinê bidomînî?" -#: ../DistUpgrade/DistUpgradeQuirks.py:274 +#: ../DistUpgrade/DistUpgradeQuirks.py:278 msgid "Your graphics hardware may not be fully supported in Ubuntu 12.04 LTS." msgstr "" "Dibe ku Ubuntu 12.04 LTS, ji aliyê hişkalava te ve bi tevahî nayê " "piştgirîkirin." -#: ../DistUpgrade/DistUpgradeQuirks.py:276 +#: ../DistUpgrade/DistUpgradeQuirks.py:280 msgid "" "The support in Ubuntu 12.04 LTS for your Intel graphics hardware is limited " "and you may encounter problems after the upgrade. For more information see " @@ -1087,7 +1087,7 @@ "agahiyan li navnîşana https://wiki.ubuntu.com/X/Bugs/" "UpdateManagerWarningForI8xx-ê binêre. Tu dixwazî bilindkirinê bidomînî?" -#: ../DistUpgrade/DistUpgradeQuirks.py:296 +#: ../DistUpgrade/DistUpgradeQuirks.py:300 msgid "" "Upgrading may reduce desktop effects, and performance in games and other " "graphically intensive programs." @@ -1095,7 +1095,7 @@ "Bilindkirin dibe ku efektên sermaseyê û performansên lîstikan û bernameyên " "din ên bi hêz kêm bike." -#: ../DistUpgrade/DistUpgradeQuirks.py:300 +#: ../DistUpgrade/DistUpgradeQuirks.py:304 msgid "" "This computer is currently using the AMD 'fglrx' graphics driver. No version " "of this driver is available that works with your hardware in Ubuntu 10.04 " @@ -1108,12 +1108,12 @@ "\n" "Tu dixwazî bidomînî?" -#: ../DistUpgrade/DistUpgradeQuirks.py:339 -#: ../DistUpgrade/DistUpgradeQuirks.py:408 +#: ../DistUpgrade/DistUpgradeQuirks.py:343 +#: ../DistUpgrade/DistUpgradeQuirks.py:412 msgid "Sorry, no more upgrades for this system" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:340 +#: ../DistUpgrade/DistUpgradeQuirks.py:344 #, python-format msgid "" "There will not be any further Ubuntu releases for this system's 'i386' " @@ -1122,11 +1122,11 @@ "Updates for Ubuntu %s will continue until %s." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:355 +#: ../DistUpgrade/DistUpgradeQuirks.py:359 msgid "No ARMv6 CPU" msgstr "CPU ya ARMv6 tune" -#: ../DistUpgrade/DistUpgradeQuirks.py:356 +#: ../DistUpgrade/DistUpgradeQuirks.py:360 msgid "" "Your system uses an ARM CPU that is older than the ARMv6 architecture. All " "packages in karmic were built with optimizations requiring ARMv6 as the " @@ -1138,12 +1138,12 @@ "dikin, pêk hatine. Ne mimkun e ku bi vê hişkalavê re di pergala te de " "guhertoyeke nû ya Ubuntuyê bilind bibe." -#: ../DistUpgrade/DistUpgradeQuirks.py:376 +#: ../DistUpgrade/DistUpgradeQuirks.py:380 msgid "" "Sorry, this storage driver is not supported in kernels for newer releases" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:378 +#: ../DistUpgrade/DistUpgradeQuirks.py:382 #, python-format msgid "" "There will not be any further Ubuntu releases that provide kernel support " @@ -1153,7 +1153,7 @@ "driver, remove the directory %s and try again." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:409 +#: ../DistUpgrade/DistUpgradeQuirks.py:413 #, python-format msgid "" "There will not be any further Ubuntu releases for this system's POWER8 " @@ -1162,11 +1162,11 @@ "Updates for Ubuntu %s will continue until %s." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:427 +#: ../DistUpgrade/DistUpgradeQuirks.py:431 msgid "No init available" msgstr "Despêk tune ye" -#: ../DistUpgrade/DistUpgradeQuirks.py:428 +#: ../DistUpgrade/DistUpgradeQuirks.py:432 msgid "" "Your system appears to be a virtualised environment without an init daemon, " "e.g. Linux-VServer. Ubuntu 10.04 LTS cannot function within this type of " @@ -1181,11 +1181,11 @@ "\n" "Tu ji xwe bawer î, bidomînî?" -#: ../DistUpgrade/DistUpgradeQuirks.py:469 +#: ../DistUpgrade/DistUpgradeQuirks.py:473 msgid "The Robot Operating System (ROS) is installed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:470 +#: ../DistUpgrade/DistUpgradeQuirks.py:474 msgid "" "It appears that ROS is currently installed. Each ROS release is very strict " "about the versions of Ubuntu it supports, and Ubuntu upgrades can fail if " @@ -1202,12 +1202,12 @@ "Are you sure you want to continue?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:670 +#: ../DistUpgrade/DistUpgradeQuirks.py:674 #, fuzzy msgid "Connection to the Snap Store failed" msgstr "Girêdana ji Snap Store re bi ser neket" -#: ../DistUpgrade/DistUpgradeQuirks.py:671 +#: ../DistUpgrade/DistUpgradeQuirks.py:675 msgid "" "You have the package lxd installed but your system is unable to reach the " "Snap Store. lxd is now provided via a snap and the release upgrade will fail " @@ -1217,11 +1217,11 @@ "may want to configure a Snap Store proxy." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:686 +#: ../DistUpgrade/DistUpgradeQuirks.py:690 msgid "Connection to Snap Store failed" msgstr "Girêdana ji Snap Store re bi ser neket" -#: ../DistUpgrade/DistUpgradeQuirks.py:687 +#: ../DistUpgrade/DistUpgradeQuirks.py:691 msgid "" "Your system does not have a connection to the Snap Store. For the best " "upgrade experience make sure that your system can connect to api.snapcraft." @@ -1233,11 +1233,11 @@ "giredan.\n" "Tu hê jî dixwazî dewam bikî bilindkirinê?" -#: ../DistUpgrade/DistUpgradeQuirks.py:696 +#: ../DistUpgrade/DistUpgradeQuirks.py:700 msgid "Outdated snapd package" msgstr "Pakêta snapdê ya kevnbûyî" -#: ../DistUpgrade/DistUpgradeQuirks.py:697 +#: ../DistUpgrade/DistUpgradeQuirks.py:701 msgid "" "Your system does not have the latest version of snapd. Please update the " "version of snapd on your system to improve the upgrade experience.\n" @@ -1250,36 +1250,36 @@ #. now perform direct API calls to the store, requesting size #. information for each of the snaps needing installation -#: ../DistUpgrade/DistUpgradeQuirks.py:722 +#: ../DistUpgrade/DistUpgradeQuirks.py:726 msgid "Calculating snap size requirements" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:753 +#: ../DistUpgrade/DistUpgradeQuirks.py:757 msgid "Processing snap replacements" msgstr "" #. TODO: This status should be updated, but the time of #. this change to snap switch is post-translation freeze. -#: ../DistUpgrade/DistUpgradeQuirks.py:761 +#: ../DistUpgrade/DistUpgradeQuirks.py:765 #, python-format msgid "refreshing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:765 +#: ../DistUpgrade/DistUpgradeQuirks.py:769 #, python-format msgid "removing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:768 +#: ../DistUpgrade/DistUpgradeQuirks.py:772 #, python-format msgid "installing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:797 +#: ../DistUpgrade/DistUpgradeQuirks.py:801 msgid "PAE not enabled" msgstr "PAE ne çalak e" -#: ../DistUpgrade/DistUpgradeQuirks.py:798 +#: ../DistUpgrade/DistUpgradeQuirks.py:802 msgid "" "Your system uses a CPU that does not have PAE enabled. Ubuntu only supports " "non-PAE systems up to Ubuntu 12.04. To upgrade to a later version of Ubuntu, " @@ -1291,11 +1291,11 @@ "guhertoya din, (heke mimkun be) divê tu PAE-yê çalak bikî:\n" "http://help.ubuntu.com/community/EnablingPAE" -#: ../DistUpgrade/DistUpgradeQuirks.py:1094 +#: ../DistUpgrade/DistUpgradeQuirks.py:1098 msgid "universe component not enabled" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1095 +#: ../DistUpgrade/DistUpgradeQuirks.py:1099 #, python-format msgid "" "You have the package %s installed which is a python2 package. python2 has " @@ -1307,39 +1307,50 @@ "universe component in /etc/apt/sources.list or remove %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1207 +#: ../DistUpgrade/DistUpgradeQuirks.py:1211 msgid "Checking for installed snaps" msgstr "Snapên sazkirî têne kontrolkirin" -#: ../DistUpgrade/DistUpgradeQuirks.py:1654 +#: ../DistUpgrade/DistUpgradeQuirks.py:1720 #, fuzzy msgid "Cannot upgrade this system" msgstr "Bilindkirin çênabe" -#: ../DistUpgrade/DistUpgradeQuirks.py:1655 +#: ../DistUpgrade/DistUpgradeQuirks.py:1721 msgid "" "Due to a bug in grub, this system cannot be safely upgraded at this time.\n" "\n" "See https://launchpad.net/bugs/2039172." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1721 +#: ../DistUpgrade/DistUpgradeQuirks.py:1787 #, python-brace-format msgid "Updates for Ubuntu {from_release.version} will " msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1731 +#: ../DistUpgrade/DistUpgradeQuirks.py:1797 #, fuzzy msgid "Sorry, cannot upgrade this system to 24.04 LTS" msgstr "Bilindkirin çênabe" -#: ../DistUpgrade/DistUpgradeQuirks.py:1734 +#: ../DistUpgrade/DistUpgradeQuirks.py:1800 msgid "" "The Raspberry Pi kernel for Ubuntu 24.04 LTS does not support the armhf " "architecture.\n" "\n" msgstr "" +#: ../DistUpgrade/DistUpgradeQuirks.py:1928 +#, fuzzy, python-brace-format +msgid "Sorry, cannot upgrade this system to {version}" +msgstr "Bilindkirin çênabe" + +#: ../DistUpgrade/DistUpgradeQuirks.py:1931 +msgid "" +"Upgrades for desktop systems running TPM FDE are not currently supported. " +"Please see https://launchpad.net/bugs/2065229 for more information." +msgstr "" + #: ../DistUpgrade/DistUpgradeMain.py:62 msgid "" "Use frontend. Currently available: \n" diff -Nru ubuntu-release-upgrader-24.04.17/po/ky.po ubuntu-release-upgrader-24.04.18/po/ky.po --- ubuntu-release-upgrader-24.04.17/po/ky.po 2024-04-29 14:26:40.000000000 +0000 +++ ubuntu-release-upgrader-24.04.18/po/ky.po 2024-05-09 19:39:19.000000000 +0000 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2024-04-29 16:03+0200\n" +"POT-Creation-Date: 2024-05-09 15:39-0400\n" "PO-Revision-Date: 2013-05-22 11:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Kirghiz \n" @@ -897,11 +897,11 @@ msgid "Media Change" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:248 +#: ../DistUpgrade/DistUpgradeQuirks.py:252 msgid "Your graphics hardware may not be fully supported in Ubuntu 14.04." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:250 +#: ../DistUpgrade/DistUpgradeQuirks.py:254 msgid "" "Running the 'unity' desktop environment is not fully supported by your " "graphics hardware. You will maybe end up in a very slow environment after " @@ -911,11 +911,11 @@ "upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:274 +#: ../DistUpgrade/DistUpgradeQuirks.py:278 msgid "Your graphics hardware may not be fully supported in Ubuntu 12.04 LTS." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:276 +#: ../DistUpgrade/DistUpgradeQuirks.py:280 msgid "" "The support in Ubuntu 12.04 LTS for your Intel graphics hardware is limited " "and you may encounter problems after the upgrade. For more information see " @@ -923,13 +923,13 @@ "continue with the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:296 +#: ../DistUpgrade/DistUpgradeQuirks.py:300 msgid "" "Upgrading may reduce desktop effects, and performance in games and other " "graphically intensive programs." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:300 +#: ../DistUpgrade/DistUpgradeQuirks.py:304 msgid "" "This computer is currently using the AMD 'fglrx' graphics driver. No version " "of this driver is available that works with your hardware in Ubuntu 10.04 " @@ -938,12 +938,12 @@ "Do you want to continue?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:339 -#: ../DistUpgrade/DistUpgradeQuirks.py:408 +#: ../DistUpgrade/DistUpgradeQuirks.py:343 +#: ../DistUpgrade/DistUpgradeQuirks.py:412 msgid "Sorry, no more upgrades for this system" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:340 +#: ../DistUpgrade/DistUpgradeQuirks.py:344 #, python-format msgid "" "There will not be any further Ubuntu releases for this system's 'i386' " @@ -952,11 +952,11 @@ "Updates for Ubuntu %s will continue until %s." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:355 +#: ../DistUpgrade/DistUpgradeQuirks.py:359 msgid "No ARMv6 CPU" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:356 +#: ../DistUpgrade/DistUpgradeQuirks.py:360 msgid "" "Your system uses an ARM CPU that is older than the ARMv6 architecture. All " "packages in karmic were built with optimizations requiring ARMv6 as the " @@ -964,12 +964,12 @@ "Ubuntu release with this hardware." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:376 +#: ../DistUpgrade/DistUpgradeQuirks.py:380 msgid "" "Sorry, this storage driver is not supported in kernels for newer releases" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:378 +#: ../DistUpgrade/DistUpgradeQuirks.py:382 #, python-format msgid "" "There will not be any further Ubuntu releases that provide kernel support " @@ -979,7 +979,7 @@ "driver, remove the directory %s and try again." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:409 +#: ../DistUpgrade/DistUpgradeQuirks.py:413 #, python-format msgid "" "There will not be any further Ubuntu releases for this system's POWER8 " @@ -988,11 +988,11 @@ "Updates for Ubuntu %s will continue until %s." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:427 +#: ../DistUpgrade/DistUpgradeQuirks.py:431 msgid "No init available" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:428 +#: ../DistUpgrade/DistUpgradeQuirks.py:432 msgid "" "Your system appears to be a virtualised environment without an init daemon, " "e.g. Linux-VServer. Ubuntu 10.04 LTS cannot function within this type of " @@ -1002,11 +1002,11 @@ "Are you sure you want to continue?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:469 +#: ../DistUpgrade/DistUpgradeQuirks.py:473 msgid "The Robot Operating System (ROS) is installed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:470 +#: ../DistUpgrade/DistUpgradeQuirks.py:474 msgid "" "It appears that ROS is currently installed. Each ROS release is very strict " "about the versions of Ubuntu it supports, and Ubuntu upgrades can fail if " @@ -1023,11 +1023,11 @@ "Are you sure you want to continue?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:670 +#: ../DistUpgrade/DistUpgradeQuirks.py:674 msgid "Connection to the Snap Store failed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:671 +#: ../DistUpgrade/DistUpgradeQuirks.py:675 msgid "" "You have the package lxd installed but your system is unable to reach the " "Snap Store. lxd is now provided via a snap and the release upgrade will fail " @@ -1037,11 +1037,11 @@ "may want to configure a Snap Store proxy." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:686 +#: ../DistUpgrade/DistUpgradeQuirks.py:690 msgid "Connection to Snap Store failed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:687 +#: ../DistUpgrade/DistUpgradeQuirks.py:691 msgid "" "Your system does not have a connection to the Snap Store. For the best " "upgrade experience make sure that your system can connect to api.snapcraft." @@ -1049,11 +1049,11 @@ "Do you still want to continue with the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:696 +#: ../DistUpgrade/DistUpgradeQuirks.py:700 msgid "Outdated snapd package" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:697 +#: ../DistUpgrade/DistUpgradeQuirks.py:701 msgid "" "Your system does not have the latest version of snapd. Please update the " "version of snapd on your system to improve the upgrade experience.\n" @@ -1062,36 +1062,36 @@ #. now perform direct API calls to the store, requesting size #. information for each of the snaps needing installation -#: ../DistUpgrade/DistUpgradeQuirks.py:722 +#: ../DistUpgrade/DistUpgradeQuirks.py:726 msgid "Calculating snap size requirements" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:753 +#: ../DistUpgrade/DistUpgradeQuirks.py:757 msgid "Processing snap replacements" msgstr "" #. TODO: This status should be updated, but the time of #. this change to snap switch is post-translation freeze. -#: ../DistUpgrade/DistUpgradeQuirks.py:761 +#: ../DistUpgrade/DistUpgradeQuirks.py:765 #, python-format msgid "refreshing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:765 +#: ../DistUpgrade/DistUpgradeQuirks.py:769 #, python-format msgid "removing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:768 +#: ../DistUpgrade/DistUpgradeQuirks.py:772 #, python-format msgid "installing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:797 +#: ../DistUpgrade/DistUpgradeQuirks.py:801 msgid "PAE not enabled" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:798 +#: ../DistUpgrade/DistUpgradeQuirks.py:802 msgid "" "Your system uses a CPU that does not have PAE enabled. Ubuntu only supports " "non-PAE systems up to Ubuntu 12.04. To upgrade to a later version of Ubuntu, " @@ -1099,11 +1099,11 @@ "http://help.ubuntu.com/community/EnablingPAE" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1094 +#: ../DistUpgrade/DistUpgradeQuirks.py:1098 msgid "universe component not enabled" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1095 +#: ../DistUpgrade/DistUpgradeQuirks.py:1099 #, python-format msgid "" "You have the package %s installed which is a python2 package. python2 has " @@ -1115,37 +1115,48 @@ "universe component in /etc/apt/sources.list or remove %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1207 +#: ../DistUpgrade/DistUpgradeQuirks.py:1211 msgid "Checking for installed snaps" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1654 +#: ../DistUpgrade/DistUpgradeQuirks.py:1720 msgid "Cannot upgrade this system" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1655 +#: ../DistUpgrade/DistUpgradeQuirks.py:1721 msgid "" "Due to a bug in grub, this system cannot be safely upgraded at this time.\n" "\n" "See https://launchpad.net/bugs/2039172." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1721 +#: ../DistUpgrade/DistUpgradeQuirks.py:1787 #, python-brace-format msgid "Updates for Ubuntu {from_release.version} will " msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1731 +#: ../DistUpgrade/DistUpgradeQuirks.py:1797 msgid "Sorry, cannot upgrade this system to 24.04 LTS" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1734 +#: ../DistUpgrade/DistUpgradeQuirks.py:1800 msgid "" "The Raspberry Pi kernel for Ubuntu 24.04 LTS does not support the armhf " "architecture.\n" "\n" msgstr "" +#: ../DistUpgrade/DistUpgradeQuirks.py:1928 +#, python-brace-format +msgid "Sorry, cannot upgrade this system to {version}" +msgstr "" + +#: ../DistUpgrade/DistUpgradeQuirks.py:1931 +msgid "" +"Upgrades for desktop systems running TPM FDE are not currently supported. " +"Please see https://launchpad.net/bugs/2065229 for more information." +msgstr "" + #: ../DistUpgrade/DistUpgradeMain.py:62 msgid "" "Use frontend. Currently available: \n" diff -Nru ubuntu-release-upgrader-24.04.17/po/lb.po ubuntu-release-upgrader-24.04.18/po/lb.po --- ubuntu-release-upgrader-24.04.17/po/lb.po 2024-04-29 14:26:40.000000000 +0000 +++ ubuntu-release-upgrader-24.04.18/po/lb.po 2024-05-09 19:39:19.000000000 +0000 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2024-04-29 16:03+0200\n" +"POT-Creation-Date: 2024-05-09 15:39-0400\n" "PO-Revision-Date: 2013-05-22 11:00+0000\n" "Last-Translator: Brian Murray \n" "Language-Team: Luxembourgish \n" @@ -906,11 +906,11 @@ msgid "Media Change" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:248 +#: ../DistUpgrade/DistUpgradeQuirks.py:252 msgid "Your graphics hardware may not be fully supported in Ubuntu 14.04." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:250 +#: ../DistUpgrade/DistUpgradeQuirks.py:254 msgid "" "Running the 'unity' desktop environment is not fully supported by your " "graphics hardware. You will maybe end up in a very slow environment after " @@ -920,11 +920,11 @@ "upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:274 +#: ../DistUpgrade/DistUpgradeQuirks.py:278 msgid "Your graphics hardware may not be fully supported in Ubuntu 12.04 LTS." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:276 +#: ../DistUpgrade/DistUpgradeQuirks.py:280 msgid "" "The support in Ubuntu 12.04 LTS for your Intel graphics hardware is limited " "and you may encounter problems after the upgrade. For more information see " @@ -932,13 +932,13 @@ "continue with the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:296 +#: ../DistUpgrade/DistUpgradeQuirks.py:300 msgid "" "Upgrading may reduce desktop effects, and performance in games and other " "graphically intensive programs." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:300 +#: ../DistUpgrade/DistUpgradeQuirks.py:304 msgid "" "This computer is currently using the AMD 'fglrx' graphics driver. No version " "of this driver is available that works with your hardware in Ubuntu 10.04 " @@ -947,12 +947,12 @@ "Do you want to continue?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:339 -#: ../DistUpgrade/DistUpgradeQuirks.py:408 +#: ../DistUpgrade/DistUpgradeQuirks.py:343 +#: ../DistUpgrade/DistUpgradeQuirks.py:412 msgid "Sorry, no more upgrades for this system" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:340 +#: ../DistUpgrade/DistUpgradeQuirks.py:344 #, python-format msgid "" "There will not be any further Ubuntu releases for this system's 'i386' " @@ -961,11 +961,11 @@ "Updates for Ubuntu %s will continue until %s." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:355 +#: ../DistUpgrade/DistUpgradeQuirks.py:359 msgid "No ARMv6 CPU" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:356 +#: ../DistUpgrade/DistUpgradeQuirks.py:360 msgid "" "Your system uses an ARM CPU that is older than the ARMv6 architecture. All " "packages in karmic were built with optimizations requiring ARMv6 as the " @@ -973,12 +973,12 @@ "Ubuntu release with this hardware." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:376 +#: ../DistUpgrade/DistUpgradeQuirks.py:380 msgid "" "Sorry, this storage driver is not supported in kernels for newer releases" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:378 +#: ../DistUpgrade/DistUpgradeQuirks.py:382 #, python-format msgid "" "There will not be any further Ubuntu releases that provide kernel support " @@ -988,7 +988,7 @@ "driver, remove the directory %s and try again." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:409 +#: ../DistUpgrade/DistUpgradeQuirks.py:413 #, python-format msgid "" "There will not be any further Ubuntu releases for this system's POWER8 " @@ -997,11 +997,11 @@ "Updates for Ubuntu %s will continue until %s." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:427 +#: ../DistUpgrade/DistUpgradeQuirks.py:431 msgid "No init available" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:428 +#: ../DistUpgrade/DistUpgradeQuirks.py:432 msgid "" "Your system appears to be a virtualised environment without an init daemon, " "e.g. Linux-VServer. Ubuntu 10.04 LTS cannot function within this type of " @@ -1011,11 +1011,11 @@ "Are you sure you want to continue?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:469 +#: ../DistUpgrade/DistUpgradeQuirks.py:473 msgid "The Robot Operating System (ROS) is installed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:470 +#: ../DistUpgrade/DistUpgradeQuirks.py:474 msgid "" "It appears that ROS is currently installed. Each ROS release is very strict " "about the versions of Ubuntu it supports, and Ubuntu upgrades can fail if " @@ -1032,11 +1032,11 @@ "Are you sure you want to continue?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:670 +#: ../DistUpgrade/DistUpgradeQuirks.py:674 msgid "Connection to the Snap Store failed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:671 +#: ../DistUpgrade/DistUpgradeQuirks.py:675 msgid "" "You have the package lxd installed but your system is unable to reach the " "Snap Store. lxd is now provided via a snap and the release upgrade will fail " @@ -1046,11 +1046,11 @@ "may want to configure a Snap Store proxy." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:686 +#: ../DistUpgrade/DistUpgradeQuirks.py:690 msgid "Connection to Snap Store failed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:687 +#: ../DistUpgrade/DistUpgradeQuirks.py:691 msgid "" "Your system does not have a connection to the Snap Store. For the best " "upgrade experience make sure that your system can connect to api.snapcraft." @@ -1058,11 +1058,11 @@ "Do you still want to continue with the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:696 +#: ../DistUpgrade/DistUpgradeQuirks.py:700 msgid "Outdated snapd package" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:697 +#: ../DistUpgrade/DistUpgradeQuirks.py:701 msgid "" "Your system does not have the latest version of snapd. Please update the " "version of snapd on your system to improve the upgrade experience.\n" @@ -1071,36 +1071,36 @@ #. now perform direct API calls to the store, requesting size #. information for each of the snaps needing installation -#: ../DistUpgrade/DistUpgradeQuirks.py:722 +#: ../DistUpgrade/DistUpgradeQuirks.py:726 msgid "Calculating snap size requirements" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:753 +#: ../DistUpgrade/DistUpgradeQuirks.py:757 msgid "Processing snap replacements" msgstr "" #. TODO: This status should be updated, but the time of #. this change to snap switch is post-translation freeze. -#: ../DistUpgrade/DistUpgradeQuirks.py:761 +#: ../DistUpgrade/DistUpgradeQuirks.py:765 #, python-format msgid "refreshing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:765 +#: ../DistUpgrade/DistUpgradeQuirks.py:769 #, python-format msgid "removing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:768 +#: ../DistUpgrade/DistUpgradeQuirks.py:772 #, python-format msgid "installing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:797 +#: ../DistUpgrade/DistUpgradeQuirks.py:801 msgid "PAE not enabled" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:798 +#: ../DistUpgrade/DistUpgradeQuirks.py:802 msgid "" "Your system uses a CPU that does not have PAE enabled. Ubuntu only supports " "non-PAE systems up to Ubuntu 12.04. To upgrade to a later version of Ubuntu, " @@ -1108,11 +1108,11 @@ "http://help.ubuntu.com/community/EnablingPAE" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1094 +#: ../DistUpgrade/DistUpgradeQuirks.py:1098 msgid "universe component not enabled" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1095 +#: ../DistUpgrade/DistUpgradeQuirks.py:1099 #, python-format msgid "" "You have the package %s installed which is a python2 package. python2 has " @@ -1124,37 +1124,48 @@ "universe component in /etc/apt/sources.list or remove %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1207 +#: ../DistUpgrade/DistUpgradeQuirks.py:1211 msgid "Checking for installed snaps" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1654 +#: ../DistUpgrade/DistUpgradeQuirks.py:1720 msgid "Cannot upgrade this system" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1655 +#: ../DistUpgrade/DistUpgradeQuirks.py:1721 msgid "" "Due to a bug in grub, this system cannot be safely upgraded at this time.\n" "\n" "See https://launchpad.net/bugs/2039172." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1721 +#: ../DistUpgrade/DistUpgradeQuirks.py:1787 #, python-brace-format msgid "Updates for Ubuntu {from_release.version} will " msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1731 +#: ../DistUpgrade/DistUpgradeQuirks.py:1797 msgid "Sorry, cannot upgrade this system to 24.04 LTS" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1734 +#: ../DistUpgrade/DistUpgradeQuirks.py:1800 msgid "" "The Raspberry Pi kernel for Ubuntu 24.04 LTS does not support the armhf " "architecture.\n" "\n" msgstr "" +#: ../DistUpgrade/DistUpgradeQuirks.py:1928 +#, python-brace-format +msgid "Sorry, cannot upgrade this system to {version}" +msgstr "" + +#: ../DistUpgrade/DistUpgradeQuirks.py:1931 +msgid "" +"Upgrades for desktop systems running TPM FDE are not currently supported. " +"Please see https://launchpad.net/bugs/2065229 for more information." +msgstr "" + #: ../DistUpgrade/DistUpgradeMain.py:62 msgid "" "Use frontend. Currently available: \n" diff -Nru ubuntu-release-upgrader-24.04.17/po/ln.po ubuntu-release-upgrader-24.04.18/po/ln.po --- ubuntu-release-upgrader-24.04.17/po/ln.po 2024-04-29 14:26:40.000000000 +0000 +++ ubuntu-release-upgrader-24.04.18/po/ln.po 2024-05-09 19:39:19.000000000 +0000 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: ubuntu-release-upgrader\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2024-04-29 16:03+0200\n" +"POT-Creation-Date: 2024-05-09 15:39-0400\n" "PO-Revision-Date: 2016-10-05 09:46+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Lingala \n" @@ -897,11 +897,11 @@ msgid "Media Change" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:248 +#: ../DistUpgrade/DistUpgradeQuirks.py:252 msgid "Your graphics hardware may not be fully supported in Ubuntu 14.04." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:250 +#: ../DistUpgrade/DistUpgradeQuirks.py:254 msgid "" "Running the 'unity' desktop environment is not fully supported by your " "graphics hardware. You will maybe end up in a very slow environment after " @@ -911,11 +911,11 @@ "upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:274 +#: ../DistUpgrade/DistUpgradeQuirks.py:278 msgid "Your graphics hardware may not be fully supported in Ubuntu 12.04 LTS." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:276 +#: ../DistUpgrade/DistUpgradeQuirks.py:280 msgid "" "The support in Ubuntu 12.04 LTS for your Intel graphics hardware is limited " "and you may encounter problems after the upgrade. For more information see " @@ -923,13 +923,13 @@ "continue with the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:296 +#: ../DistUpgrade/DistUpgradeQuirks.py:300 msgid "" "Upgrading may reduce desktop effects, and performance in games and other " "graphically intensive programs." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:300 +#: ../DistUpgrade/DistUpgradeQuirks.py:304 msgid "" "This computer is currently using the AMD 'fglrx' graphics driver. No version " "of this driver is available that works with your hardware in Ubuntu 10.04 " @@ -938,12 +938,12 @@ "Do you want to continue?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:339 -#: ../DistUpgrade/DistUpgradeQuirks.py:408 +#: ../DistUpgrade/DistUpgradeQuirks.py:343 +#: ../DistUpgrade/DistUpgradeQuirks.py:412 msgid "Sorry, no more upgrades for this system" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:340 +#: ../DistUpgrade/DistUpgradeQuirks.py:344 #, python-format msgid "" "There will not be any further Ubuntu releases for this system's 'i386' " @@ -952,11 +952,11 @@ "Updates for Ubuntu %s will continue until %s." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:355 +#: ../DistUpgrade/DistUpgradeQuirks.py:359 msgid "No ARMv6 CPU" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:356 +#: ../DistUpgrade/DistUpgradeQuirks.py:360 msgid "" "Your system uses an ARM CPU that is older than the ARMv6 architecture. All " "packages in karmic were built with optimizations requiring ARMv6 as the " @@ -964,12 +964,12 @@ "Ubuntu release with this hardware." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:376 +#: ../DistUpgrade/DistUpgradeQuirks.py:380 msgid "" "Sorry, this storage driver is not supported in kernels for newer releases" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:378 +#: ../DistUpgrade/DistUpgradeQuirks.py:382 #, python-format msgid "" "There will not be any further Ubuntu releases that provide kernel support " @@ -979,7 +979,7 @@ "driver, remove the directory %s and try again." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:409 +#: ../DistUpgrade/DistUpgradeQuirks.py:413 #, python-format msgid "" "There will not be any further Ubuntu releases for this system's POWER8 " @@ -988,11 +988,11 @@ "Updates for Ubuntu %s will continue until %s." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:427 +#: ../DistUpgrade/DistUpgradeQuirks.py:431 msgid "No init available" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:428 +#: ../DistUpgrade/DistUpgradeQuirks.py:432 msgid "" "Your system appears to be a virtualised environment without an init daemon, " "e.g. Linux-VServer. Ubuntu 10.04 LTS cannot function within this type of " @@ -1002,11 +1002,11 @@ "Are you sure you want to continue?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:469 +#: ../DistUpgrade/DistUpgradeQuirks.py:473 msgid "The Robot Operating System (ROS) is installed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:470 +#: ../DistUpgrade/DistUpgradeQuirks.py:474 msgid "" "It appears that ROS is currently installed. Each ROS release is very strict " "about the versions of Ubuntu it supports, and Ubuntu upgrades can fail if " @@ -1023,11 +1023,11 @@ "Are you sure you want to continue?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:670 +#: ../DistUpgrade/DistUpgradeQuirks.py:674 msgid "Connection to the Snap Store failed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:671 +#: ../DistUpgrade/DistUpgradeQuirks.py:675 msgid "" "You have the package lxd installed but your system is unable to reach the " "Snap Store. lxd is now provided via a snap and the release upgrade will fail " @@ -1037,11 +1037,11 @@ "may want to configure a Snap Store proxy." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:686 +#: ../DistUpgrade/DistUpgradeQuirks.py:690 msgid "Connection to Snap Store failed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:687 +#: ../DistUpgrade/DistUpgradeQuirks.py:691 msgid "" "Your system does not have a connection to the Snap Store. For the best " "upgrade experience make sure that your system can connect to api.snapcraft." @@ -1049,11 +1049,11 @@ "Do you still want to continue with the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:696 +#: ../DistUpgrade/DistUpgradeQuirks.py:700 msgid "Outdated snapd package" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:697 +#: ../DistUpgrade/DistUpgradeQuirks.py:701 msgid "" "Your system does not have the latest version of snapd. Please update the " "version of snapd on your system to improve the upgrade experience.\n" @@ -1062,36 +1062,36 @@ #. now perform direct API calls to the store, requesting size #. information for each of the snaps needing installation -#: ../DistUpgrade/DistUpgradeQuirks.py:722 +#: ../DistUpgrade/DistUpgradeQuirks.py:726 msgid "Calculating snap size requirements" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:753 +#: ../DistUpgrade/DistUpgradeQuirks.py:757 msgid "Processing snap replacements" msgstr "" #. TODO: This status should be updated, but the time of #. this change to snap switch is post-translation freeze. -#: ../DistUpgrade/DistUpgradeQuirks.py:761 +#: ../DistUpgrade/DistUpgradeQuirks.py:765 #, python-format msgid "refreshing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:765 +#: ../DistUpgrade/DistUpgradeQuirks.py:769 #, python-format msgid "removing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:768 +#: ../DistUpgrade/DistUpgradeQuirks.py:772 #, python-format msgid "installing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:797 +#: ../DistUpgrade/DistUpgradeQuirks.py:801 msgid "PAE not enabled" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:798 +#: ../DistUpgrade/DistUpgradeQuirks.py:802 msgid "" "Your system uses a CPU that does not have PAE enabled. Ubuntu only supports " "non-PAE systems up to Ubuntu 12.04. To upgrade to a later version of Ubuntu, " @@ -1099,11 +1099,11 @@ "http://help.ubuntu.com/community/EnablingPAE" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1094 +#: ../DistUpgrade/DistUpgradeQuirks.py:1098 msgid "universe component not enabled" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1095 +#: ../DistUpgrade/DistUpgradeQuirks.py:1099 #, python-format msgid "" "You have the package %s installed which is a python2 package. python2 has " @@ -1115,37 +1115,48 @@ "universe component in /etc/apt/sources.list or remove %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1207 +#: ../DistUpgrade/DistUpgradeQuirks.py:1211 msgid "Checking for installed snaps" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1654 +#: ../DistUpgrade/DistUpgradeQuirks.py:1720 msgid "Cannot upgrade this system" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1655 +#: ../DistUpgrade/DistUpgradeQuirks.py:1721 msgid "" "Due to a bug in grub, this system cannot be safely upgraded at this time.\n" "\n" "See https://launchpad.net/bugs/2039172." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1721 +#: ../DistUpgrade/DistUpgradeQuirks.py:1787 #, python-brace-format msgid "Updates for Ubuntu {from_release.version} will " msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1731 +#: ../DistUpgrade/DistUpgradeQuirks.py:1797 msgid "Sorry, cannot upgrade this system to 24.04 LTS" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1734 +#: ../DistUpgrade/DistUpgradeQuirks.py:1800 msgid "" "The Raspberry Pi kernel for Ubuntu 24.04 LTS does not support the armhf " "architecture.\n" "\n" msgstr "" +#: ../DistUpgrade/DistUpgradeQuirks.py:1928 +#, python-brace-format +msgid "Sorry, cannot upgrade this system to {version}" +msgstr "" + +#: ../DistUpgrade/DistUpgradeQuirks.py:1931 +msgid "" +"Upgrades for desktop systems running TPM FDE are not currently supported. " +"Please see https://launchpad.net/bugs/2065229 for more information." +msgstr "" + #: ../DistUpgrade/DistUpgradeMain.py:62 msgid "" "Use frontend. Currently available: \n" diff -Nru ubuntu-release-upgrader-24.04.17/po/lo.po ubuntu-release-upgrader-24.04.18/po/lo.po --- ubuntu-release-upgrader-24.04.17/po/lo.po 2024-04-29 14:26:40.000000000 +0000 +++ ubuntu-release-upgrader-24.04.18/po/lo.po 2024-05-09 19:39:19.000000000 +0000 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2024-04-29 16:03+0200\n" +"POT-Creation-Date: 2024-05-09 15:39-0400\n" "PO-Revision-Date: 2013-05-22 11:00+0000\n" "Last-Translator: Michael Terry \n" "Language-Team: Lao \n" @@ -897,11 +897,11 @@ msgid "Media Change" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:248 +#: ../DistUpgrade/DistUpgradeQuirks.py:252 msgid "Your graphics hardware may not be fully supported in Ubuntu 14.04." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:250 +#: ../DistUpgrade/DistUpgradeQuirks.py:254 msgid "" "Running the 'unity' desktop environment is not fully supported by your " "graphics hardware. You will maybe end up in a very slow environment after " @@ -911,11 +911,11 @@ "upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:274 +#: ../DistUpgrade/DistUpgradeQuirks.py:278 msgid "Your graphics hardware may not be fully supported in Ubuntu 12.04 LTS." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:276 +#: ../DistUpgrade/DistUpgradeQuirks.py:280 msgid "" "The support in Ubuntu 12.04 LTS for your Intel graphics hardware is limited " "and you may encounter problems after the upgrade. For more information see " @@ -923,13 +923,13 @@ "continue with the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:296 +#: ../DistUpgrade/DistUpgradeQuirks.py:300 msgid "" "Upgrading may reduce desktop effects, and performance in games and other " "graphically intensive programs." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:300 +#: ../DistUpgrade/DistUpgradeQuirks.py:304 msgid "" "This computer is currently using the AMD 'fglrx' graphics driver. No version " "of this driver is available that works with your hardware in Ubuntu 10.04 " @@ -938,12 +938,12 @@ "Do you want to continue?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:339 -#: ../DistUpgrade/DistUpgradeQuirks.py:408 +#: ../DistUpgrade/DistUpgradeQuirks.py:343 +#: ../DistUpgrade/DistUpgradeQuirks.py:412 msgid "Sorry, no more upgrades for this system" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:340 +#: ../DistUpgrade/DistUpgradeQuirks.py:344 #, python-format msgid "" "There will not be any further Ubuntu releases for this system's 'i386' " @@ -952,11 +952,11 @@ "Updates for Ubuntu %s will continue until %s." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:355 +#: ../DistUpgrade/DistUpgradeQuirks.py:359 msgid "No ARMv6 CPU" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:356 +#: ../DistUpgrade/DistUpgradeQuirks.py:360 msgid "" "Your system uses an ARM CPU that is older than the ARMv6 architecture. All " "packages in karmic were built with optimizations requiring ARMv6 as the " @@ -964,12 +964,12 @@ "Ubuntu release with this hardware." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:376 +#: ../DistUpgrade/DistUpgradeQuirks.py:380 msgid "" "Sorry, this storage driver is not supported in kernels for newer releases" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:378 +#: ../DistUpgrade/DistUpgradeQuirks.py:382 #, python-format msgid "" "There will not be any further Ubuntu releases that provide kernel support " @@ -979,7 +979,7 @@ "driver, remove the directory %s and try again." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:409 +#: ../DistUpgrade/DistUpgradeQuirks.py:413 #, python-format msgid "" "There will not be any further Ubuntu releases for this system's POWER8 " @@ -988,11 +988,11 @@ "Updates for Ubuntu %s will continue until %s." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:427 +#: ../DistUpgrade/DistUpgradeQuirks.py:431 msgid "No init available" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:428 +#: ../DistUpgrade/DistUpgradeQuirks.py:432 msgid "" "Your system appears to be a virtualised environment without an init daemon, " "e.g. Linux-VServer. Ubuntu 10.04 LTS cannot function within this type of " @@ -1002,11 +1002,11 @@ "Are you sure you want to continue?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:469 +#: ../DistUpgrade/DistUpgradeQuirks.py:473 msgid "The Robot Operating System (ROS) is installed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:470 +#: ../DistUpgrade/DistUpgradeQuirks.py:474 msgid "" "It appears that ROS is currently installed. Each ROS release is very strict " "about the versions of Ubuntu it supports, and Ubuntu upgrades can fail if " @@ -1023,11 +1023,11 @@ "Are you sure you want to continue?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:670 +#: ../DistUpgrade/DistUpgradeQuirks.py:674 msgid "Connection to the Snap Store failed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:671 +#: ../DistUpgrade/DistUpgradeQuirks.py:675 msgid "" "You have the package lxd installed but your system is unable to reach the " "Snap Store. lxd is now provided via a snap and the release upgrade will fail " @@ -1037,11 +1037,11 @@ "may want to configure a Snap Store proxy." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:686 +#: ../DistUpgrade/DistUpgradeQuirks.py:690 msgid "Connection to Snap Store failed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:687 +#: ../DistUpgrade/DistUpgradeQuirks.py:691 msgid "" "Your system does not have a connection to the Snap Store. For the best " "upgrade experience make sure that your system can connect to api.snapcraft." @@ -1049,11 +1049,11 @@ "Do you still want to continue with the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:696 +#: ../DistUpgrade/DistUpgradeQuirks.py:700 msgid "Outdated snapd package" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:697 +#: ../DistUpgrade/DistUpgradeQuirks.py:701 msgid "" "Your system does not have the latest version of snapd. Please update the " "version of snapd on your system to improve the upgrade experience.\n" @@ -1062,36 +1062,36 @@ #. now perform direct API calls to the store, requesting size #. information for each of the snaps needing installation -#: ../DistUpgrade/DistUpgradeQuirks.py:722 +#: ../DistUpgrade/DistUpgradeQuirks.py:726 msgid "Calculating snap size requirements" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:753 +#: ../DistUpgrade/DistUpgradeQuirks.py:757 msgid "Processing snap replacements" msgstr "" #. TODO: This status should be updated, but the time of #. this change to snap switch is post-translation freeze. -#: ../DistUpgrade/DistUpgradeQuirks.py:761 +#: ../DistUpgrade/DistUpgradeQuirks.py:765 #, python-format msgid "refreshing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:765 +#: ../DistUpgrade/DistUpgradeQuirks.py:769 #, python-format msgid "removing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:768 +#: ../DistUpgrade/DistUpgradeQuirks.py:772 #, python-format msgid "installing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:797 +#: ../DistUpgrade/DistUpgradeQuirks.py:801 msgid "PAE not enabled" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:798 +#: ../DistUpgrade/DistUpgradeQuirks.py:802 msgid "" "Your system uses a CPU that does not have PAE enabled. Ubuntu only supports " "non-PAE systems up to Ubuntu 12.04. To upgrade to a later version of Ubuntu, " @@ -1099,11 +1099,11 @@ "http://help.ubuntu.com/community/EnablingPAE" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1094 +#: ../DistUpgrade/DistUpgradeQuirks.py:1098 msgid "universe component not enabled" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1095 +#: ../DistUpgrade/DistUpgradeQuirks.py:1099 #, python-format msgid "" "You have the package %s installed which is a python2 package. python2 has " @@ -1115,37 +1115,48 @@ "universe component in /etc/apt/sources.list or remove %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1207 +#: ../DistUpgrade/DistUpgradeQuirks.py:1211 msgid "Checking for installed snaps" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1654 +#: ../DistUpgrade/DistUpgradeQuirks.py:1720 msgid "Cannot upgrade this system" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1655 +#: ../DistUpgrade/DistUpgradeQuirks.py:1721 msgid "" "Due to a bug in grub, this system cannot be safely upgraded at this time.\n" "\n" "See https://launchpad.net/bugs/2039172." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1721 +#: ../DistUpgrade/DistUpgradeQuirks.py:1787 #, python-brace-format msgid "Updates for Ubuntu {from_release.version} will " msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1731 +#: ../DistUpgrade/DistUpgradeQuirks.py:1797 msgid "Sorry, cannot upgrade this system to 24.04 LTS" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1734 +#: ../DistUpgrade/DistUpgradeQuirks.py:1800 msgid "" "The Raspberry Pi kernel for Ubuntu 24.04 LTS does not support the armhf " "architecture.\n" "\n" msgstr "" +#: ../DistUpgrade/DistUpgradeQuirks.py:1928 +#, python-brace-format +msgid "Sorry, cannot upgrade this system to {version}" +msgstr "" + +#: ../DistUpgrade/DistUpgradeQuirks.py:1931 +msgid "" +"Upgrades for desktop systems running TPM FDE are not currently supported. " +"Please see https://launchpad.net/bugs/2065229 for more information." +msgstr "" + #: ../DistUpgrade/DistUpgradeMain.py:62 msgid "" "Use frontend. Currently available: \n" diff -Nru ubuntu-release-upgrader-24.04.17/po/lt.po ubuntu-release-upgrader-24.04.18/po/lt.po --- ubuntu-release-upgrader-24.04.17/po/lt.po 2024-04-29 14:26:40.000000000 +0000 +++ ubuntu-release-upgrader-24.04.18/po/lt.po 2024-05-09 19:39:19.000000000 +0000 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: update-manager HEAD\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2024-04-29 16:03+0200\n" +"POT-Creation-Date: 2024-05-09 15:39-0400\n" "PO-Revision-Date: 2019-06-18 17:54+0000\n" "Last-Translator: Moo \n" "Language-Team: Lithuanian\n" @@ -1000,11 +1000,11 @@ msgid "Media Change" msgstr "Laikmenos keitimas" -#: ../DistUpgrade/DistUpgradeQuirks.py:248 +#: ../DistUpgrade/DistUpgradeQuirks.py:252 msgid "Your graphics hardware may not be fully supported in Ubuntu 14.04." msgstr "Ubuntu 14.04 gali pilnai nepalaikyti jūsų grafikos aparatinės įrangos." -#: ../DistUpgrade/DistUpgradeQuirks.py:250 +#: ../DistUpgrade/DistUpgradeQuirks.py:254 msgid "" "Running the 'unity' desktop environment is not fully supported by your " "graphics hardware. You will maybe end up in a very slow environment after " @@ -1019,13 +1019,13 @@ "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForUnity3D Ar vis dar " "norite tęsti atnaujinimą?" -#: ../DistUpgrade/DistUpgradeQuirks.py:274 +#: ../DistUpgrade/DistUpgradeQuirks.py:278 msgid "Your graphics hardware may not be fully supported in Ubuntu 12.04 LTS." msgstr "" "Jūsų grafikos aparatinė įranga gali būti nevisiškai palaikoma Ubuntu 12.04 " "LTS." -#: ../DistUpgrade/DistUpgradeQuirks.py:276 +#: ../DistUpgrade/DistUpgradeQuirks.py:280 msgid "" "The support in Ubuntu 12.04 LTS for your Intel graphics hardware is limited " "and you may encounter problems after the upgrade. For more information see " @@ -1037,7 +1037,7 @@ "informacijos rasite https://wiki.ubuntu.com/X/Bugs/" "UpdateManagerWarningForI8xx Ar norite tęsti atnaujinimą?" -#: ../DistUpgrade/DistUpgradeQuirks.py:296 +#: ../DistUpgrade/DistUpgradeQuirks.py:300 msgid "" "Upgrading may reduce desktop effects, and performance in games and other " "graphically intensive programs." @@ -1045,7 +1045,7 @@ "Atlikus atnaujinimą gali sumažėti darbo aplinkos efektų, žaidimų ir kitų " "grafiškai reiklių programų našumas." -#: ../DistUpgrade/DistUpgradeQuirks.py:300 +#: ../DistUpgrade/DistUpgradeQuirks.py:304 msgid "" "This computer is currently using the AMD 'fglrx' graphics driver. No version " "of this driver is available that works with your hardware in Ubuntu 10.04 " @@ -1058,12 +1058,12 @@ "\n" "Ar norite tęsti?" -#: ../DistUpgrade/DistUpgradeQuirks.py:339 -#: ../DistUpgrade/DistUpgradeQuirks.py:408 +#: ../DistUpgrade/DistUpgradeQuirks.py:343 +#: ../DistUpgrade/DistUpgradeQuirks.py:412 msgid "Sorry, no more upgrades for this system" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:340 +#: ../DistUpgrade/DistUpgradeQuirks.py:344 #, python-format msgid "" "There will not be any further Ubuntu releases for this system's 'i386' " @@ -1072,11 +1072,11 @@ "Updates for Ubuntu %s will continue until %s." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:355 +#: ../DistUpgrade/DistUpgradeQuirks.py:359 msgid "No ARMv6 CPU" msgstr "Ne ARMv6 procesorius" -#: ../DistUpgrade/DistUpgradeQuirks.py:356 +#: ../DistUpgrade/DistUpgradeQuirks.py:360 msgid "" "Your system uses an ARM CPU that is older than the ARMv6 architecture. All " "packages in karmic were built with optimizations requiring ARMv6 as the " @@ -1088,12 +1088,12 @@ "negu ARMv6 architektūra. Su šia aparatine įranga negalima atnaujinti jūsų " "sistemos į naują Ubuntu laidą." -#: ../DistUpgrade/DistUpgradeQuirks.py:376 +#: ../DistUpgrade/DistUpgradeQuirks.py:380 msgid "" "Sorry, this storage driver is not supported in kernels for newer releases" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:378 +#: ../DistUpgrade/DistUpgradeQuirks.py:382 #, python-format msgid "" "There will not be any further Ubuntu releases that provide kernel support " @@ -1103,7 +1103,7 @@ "driver, remove the directory %s and try again." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:409 +#: ../DistUpgrade/DistUpgradeQuirks.py:413 #, python-format msgid "" "There will not be any further Ubuntu releases for this system's POWER8 " @@ -1112,11 +1112,11 @@ "Updates for Ubuntu %s will continue until %s." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:427 +#: ../DistUpgrade/DistUpgradeQuirks.py:431 msgid "No init available" msgstr "Neprieinamas init" -#: ../DistUpgrade/DistUpgradeQuirks.py:428 +#: ../DistUpgrade/DistUpgradeQuirks.py:432 msgid "" "Your system appears to be a virtualised environment without an init daemon, " "e.g. Linux-VServer. Ubuntu 10.04 LTS cannot function within this type of " @@ -1131,11 +1131,11 @@ "\n" "Ar tikrai norite tęsti?" -#: ../DistUpgrade/DistUpgradeQuirks.py:469 +#: ../DistUpgrade/DistUpgradeQuirks.py:473 msgid "The Robot Operating System (ROS) is installed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:470 +#: ../DistUpgrade/DistUpgradeQuirks.py:474 msgid "" "It appears that ROS is currently installed. Each ROS release is very strict " "about the versions of Ubuntu it supports, and Ubuntu upgrades can fail if " @@ -1152,11 +1152,11 @@ "Are you sure you want to continue?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:670 +#: ../DistUpgrade/DistUpgradeQuirks.py:674 msgid "Connection to the Snap Store failed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:671 +#: ../DistUpgrade/DistUpgradeQuirks.py:675 msgid "" "You have the package lxd installed but your system is unable to reach the " "Snap Store. lxd is now provided via a snap and the release upgrade will fail " @@ -1166,11 +1166,11 @@ "may want to configure a Snap Store proxy." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:686 +#: ../DistUpgrade/DistUpgradeQuirks.py:690 msgid "Connection to Snap Store failed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:687 +#: ../DistUpgrade/DistUpgradeQuirks.py:691 msgid "" "Your system does not have a connection to the Snap Store. For the best " "upgrade experience make sure that your system can connect to api.snapcraft." @@ -1178,11 +1178,11 @@ "Do you still want to continue with the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:696 +#: ../DistUpgrade/DistUpgradeQuirks.py:700 msgid "Outdated snapd package" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:697 +#: ../DistUpgrade/DistUpgradeQuirks.py:701 msgid "" "Your system does not have the latest version of snapd. Please update the " "version of snapd on your system to improve the upgrade experience.\n" @@ -1191,36 +1191,36 @@ #. now perform direct API calls to the store, requesting size #. information for each of the snaps needing installation -#: ../DistUpgrade/DistUpgradeQuirks.py:722 +#: ../DistUpgrade/DistUpgradeQuirks.py:726 msgid "Calculating snap size requirements" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:753 +#: ../DistUpgrade/DistUpgradeQuirks.py:757 msgid "Processing snap replacements" msgstr "" #. TODO: This status should be updated, but the time of #. this change to snap switch is post-translation freeze. -#: ../DistUpgrade/DistUpgradeQuirks.py:761 +#: ../DistUpgrade/DistUpgradeQuirks.py:765 #, python-format msgid "refreshing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:765 +#: ../DistUpgrade/DistUpgradeQuirks.py:769 #, python-format msgid "removing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:768 +#: ../DistUpgrade/DistUpgradeQuirks.py:772 #, python-format msgid "installing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:797 +#: ../DistUpgrade/DistUpgradeQuirks.py:801 msgid "PAE not enabled" msgstr "PAE neįjungtas" -#: ../DistUpgrade/DistUpgradeQuirks.py:798 +#: ../DistUpgrade/DistUpgradeQuirks.py:802 msgid "" "Your system uses a CPU that does not have PAE enabled. Ubuntu only supports " "non-PAE systems up to Ubuntu 12.04. To upgrade to a later version of Ubuntu, " @@ -1228,11 +1228,11 @@ "http://help.ubuntu.com/community/EnablingPAE" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1094 +#: ../DistUpgrade/DistUpgradeQuirks.py:1098 msgid "universe component not enabled" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1095 +#: ../DistUpgrade/DistUpgradeQuirks.py:1099 #, python-format msgid "" "You have the package %s installed which is a python2 package. python2 has " @@ -1244,39 +1244,50 @@ "universe component in /etc/apt/sources.list or remove %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1207 +#: ../DistUpgrade/DistUpgradeQuirks.py:1211 msgid "Checking for installed snaps" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1654 +#: ../DistUpgrade/DistUpgradeQuirks.py:1720 #, fuzzy msgid "Cannot upgrade this system" msgstr "Negalima atnaujinti" -#: ../DistUpgrade/DistUpgradeQuirks.py:1655 +#: ../DistUpgrade/DistUpgradeQuirks.py:1721 msgid "" "Due to a bug in grub, this system cannot be safely upgraded at this time.\n" "\n" "See https://launchpad.net/bugs/2039172." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1721 +#: ../DistUpgrade/DistUpgradeQuirks.py:1787 #, python-brace-format msgid "Updates for Ubuntu {from_release.version} will " msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1731 +#: ../DistUpgrade/DistUpgradeQuirks.py:1797 #, fuzzy msgid "Sorry, cannot upgrade this system to 24.04 LTS" msgstr "Negalima atnaujinti" -#: ../DistUpgrade/DistUpgradeQuirks.py:1734 +#: ../DistUpgrade/DistUpgradeQuirks.py:1800 msgid "" "The Raspberry Pi kernel for Ubuntu 24.04 LTS does not support the armhf " "architecture.\n" "\n" msgstr "" +#: ../DistUpgrade/DistUpgradeQuirks.py:1928 +#, fuzzy, python-brace-format +msgid "Sorry, cannot upgrade this system to {version}" +msgstr "Negalima atnaujinti" + +#: ../DistUpgrade/DistUpgradeQuirks.py:1931 +msgid "" +"Upgrades for desktop systems running TPM FDE are not currently supported. " +"Please see https://launchpad.net/bugs/2065229 for more information." +msgstr "" + #: ../DistUpgrade/DistUpgradeMain.py:62 msgid "" "Use frontend. Currently available: \n" diff -Nru ubuntu-release-upgrader-24.04.17/po/lv.po ubuntu-release-upgrader-24.04.18/po/lv.po --- ubuntu-release-upgrader-24.04.17/po/lv.po 2024-04-29 14:26:40.000000000 +0000 +++ ubuntu-release-upgrader-24.04.18/po/lv.po 2024-05-09 19:39:19.000000000 +0000 @@ -11,7 +11,7 @@ msgstr "" "Project-Id-Version: lp-upd-manager-lv\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2024-04-29 16:03+0200\n" +"POT-Creation-Date: 2024-05-09 15:39-0400\n" "PO-Revision-Date: 2019-06-18 17:54+0000\n" "Last-Translator: Iain Lane \n" "Language-Team: Latvian \n" @@ -1047,12 +1047,12 @@ msgid "Media Change" msgstr "Datu nesēja maiņa" -#: ../DistUpgrade/DistUpgradeQuirks.py:248 +#: ../DistUpgrade/DistUpgradeQuirks.py:252 msgid "Your graphics hardware may not be fully supported in Ubuntu 14.04." msgstr "" "Jūsu grafikas aparatūra iespējams nebūs pilnīgi nodrošināta Ubuntu 14.04." -#: ../DistUpgrade/DistUpgradeQuirks.py:250 +#: ../DistUpgrade/DistUpgradeQuirks.py:254 msgid "" "Running the 'unity' desktop environment is not fully supported by your " "graphics hardware. You will maybe end up in a very slow environment after " @@ -1067,12 +1067,12 @@ "ubuntu.com/X/Bugs/UpdateManagerWarningForUnity3D Vai vēl aizvien vēlaties " "uzlabot?" -#: ../DistUpgrade/DistUpgradeQuirks.py:274 +#: ../DistUpgrade/DistUpgradeQuirks.py:278 msgid "Your graphics hardware may not be fully supported in Ubuntu 12.04 LTS." msgstr "" "Iespējams, ka Ubuntu 12.04 LTS vairs neatbalsta jūsu grafikas aparatūru." -#: ../DistUpgrade/DistUpgradeQuirks.py:276 +#: ../DistUpgrade/DistUpgradeQuirks.py:280 msgid "" "The support in Ubuntu 12.04 LTS for your Intel graphics hardware is limited " "and you may encounter problems after the upgrade. For more information see " @@ -1084,7 +1084,7 @@ "ubuntu.com/X/Bugs/UpdateManagerWarningForI8xx Vai vēlaties turpināt " "atjaunināšanu?" -#: ../DistUpgrade/DistUpgradeQuirks.py:296 +#: ../DistUpgrade/DistUpgradeQuirks.py:300 msgid "" "Upgrading may reduce desktop effects, and performance in games and other " "graphically intensive programs." @@ -1092,7 +1092,7 @@ "Atjaunināšana var samazināt darbvirsmas efektus, datora veiktspēju spēlēs " "vai citās grafiski prasīgās programmās." -#: ../DistUpgrade/DistUpgradeQuirks.py:300 +#: ../DistUpgrade/DistUpgradeQuirks.py:304 msgid "" "This computer is currently using the AMD 'fglrx' graphics driver. No version " "of this driver is available that works with your hardware in Ubuntu 10.04 " @@ -1105,12 +1105,12 @@ "\n" "Vai jūs vēlaties turpināt?" -#: ../DistUpgrade/DistUpgradeQuirks.py:339 -#: ../DistUpgrade/DistUpgradeQuirks.py:408 +#: ../DistUpgrade/DistUpgradeQuirks.py:343 +#: ../DistUpgrade/DistUpgradeQuirks.py:412 msgid "Sorry, no more upgrades for this system" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:340 +#: ../DistUpgrade/DistUpgradeQuirks.py:344 #, python-format msgid "" "There will not be any further Ubuntu releases for this system's 'i386' " @@ -1119,11 +1119,11 @@ "Updates for Ubuntu %s will continue until %s." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:355 +#: ../DistUpgrade/DistUpgradeQuirks.py:359 msgid "No ARMv6 CPU" msgstr "Nav ARMv6 CPU" -#: ../DistUpgrade/DistUpgradeQuirks.py:356 +#: ../DistUpgrade/DistUpgradeQuirks.py:360 msgid "" "Your system uses an ARM CPU that is older than the ARMv6 architecture. All " "packages in karmic were built with optimizations requiring ARMv6 as the " @@ -1135,12 +1135,12 @@ "minimālo arhitektūru. Diemžēl nav iespējams uzlabot jūsu sistēmu uz jaunāko " "Ubuntu versiju ar šo aparatūru." -#: ../DistUpgrade/DistUpgradeQuirks.py:376 +#: ../DistUpgrade/DistUpgradeQuirks.py:380 msgid "" "Sorry, this storage driver is not supported in kernels for newer releases" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:378 +#: ../DistUpgrade/DistUpgradeQuirks.py:382 #, python-format msgid "" "There will not be any further Ubuntu releases that provide kernel support " @@ -1150,7 +1150,7 @@ "driver, remove the directory %s and try again." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:409 +#: ../DistUpgrade/DistUpgradeQuirks.py:413 #, python-format msgid "" "There will not be any further Ubuntu releases for this system's POWER8 " @@ -1159,11 +1159,11 @@ "Updates for Ubuntu %s will continue until %s." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:427 +#: ../DistUpgrade/DistUpgradeQuirks.py:431 msgid "No init available" msgstr "Nav pieejams init" -#: ../DistUpgrade/DistUpgradeQuirks.py:428 +#: ../DistUpgrade/DistUpgradeQuirks.py:432 msgid "" "Your system appears to be a virtualised environment without an init daemon, " "e.g. Linux-VServer. Ubuntu 10.04 LTS cannot function within this type of " @@ -1178,11 +1178,11 @@ "\n" "Vai tiešām vēlaties turpināt?" -#: ../DistUpgrade/DistUpgradeQuirks.py:469 +#: ../DistUpgrade/DistUpgradeQuirks.py:473 msgid "The Robot Operating System (ROS) is installed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:470 +#: ../DistUpgrade/DistUpgradeQuirks.py:474 msgid "" "It appears that ROS is currently installed. Each ROS release is very strict " "about the versions of Ubuntu it supports, and Ubuntu upgrades can fail if " @@ -1199,12 +1199,12 @@ "Are you sure you want to continue?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:670 +#: ../DistUpgrade/DistUpgradeQuirks.py:674 #, fuzzy msgid "Connection to the Snap Store failed" msgstr "Neizdevās savienoties ar 'Snap Store'" -#: ../DistUpgrade/DistUpgradeQuirks.py:671 +#: ../DistUpgrade/DistUpgradeQuirks.py:675 msgid "" "You have the package lxd installed but your system is unable to reach the " "Snap Store. lxd is now provided via a snap and the release upgrade will fail " @@ -1214,11 +1214,11 @@ "may want to configure a Snap Store proxy." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:686 +#: ../DistUpgrade/DistUpgradeQuirks.py:690 msgid "Connection to Snap Store failed" msgstr "Neizdevās savienoties ar 'Snap Store'" -#: ../DistUpgrade/DistUpgradeQuirks.py:687 +#: ../DistUpgrade/DistUpgradeQuirks.py:691 msgid "" "Your system does not have a connection to the Snap Store. For the best " "upgrade experience make sure that your system can connect to api.snapcraft." @@ -1229,11 +1229,11 @@ "var savienoties ar api.snapcraft.io, lai gūtu labāko jaunināšanas pieredzi.\n" "Vai vēl joprojām vēlaties jaunināšanu turpināt?" -#: ../DistUpgrade/DistUpgradeQuirks.py:696 +#: ../DistUpgrade/DistUpgradeQuirks.py:700 msgid "Outdated snapd package" msgstr "Pakotne 'snapd' novecojusi" -#: ../DistUpgrade/DistUpgradeQuirks.py:697 +#: ../DistUpgrade/DistUpgradeQuirks.py:701 msgid "" "Your system does not have the latest version of snapd. Please update the " "version of snapd on your system to improve the upgrade experience.\n" @@ -1245,36 +1245,36 @@ #. now perform direct API calls to the store, requesting size #. information for each of the snaps needing installation -#: ../DistUpgrade/DistUpgradeQuirks.py:722 +#: ../DistUpgrade/DistUpgradeQuirks.py:726 msgid "Calculating snap size requirements" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:753 +#: ../DistUpgrade/DistUpgradeQuirks.py:757 msgid "Processing snap replacements" msgstr "" #. TODO: This status should be updated, but the time of #. this change to snap switch is post-translation freeze. -#: ../DistUpgrade/DistUpgradeQuirks.py:761 +#: ../DistUpgrade/DistUpgradeQuirks.py:765 #, python-format msgid "refreshing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:765 +#: ../DistUpgrade/DistUpgradeQuirks.py:769 #, python-format msgid "removing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:768 +#: ../DistUpgrade/DistUpgradeQuirks.py:772 #, python-format msgid "installing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:797 +#: ../DistUpgrade/DistUpgradeQuirks.py:801 msgid "PAE not enabled" msgstr "PAE nav ieslēgts" -#: ../DistUpgrade/DistUpgradeQuirks.py:798 +#: ../DistUpgrade/DistUpgradeQuirks.py:802 msgid "" "Your system uses a CPU that does not have PAE enabled. Ubuntu only supports " "non-PAE systems up to Ubuntu 12.04. To upgrade to a later version of Ubuntu, " @@ -1287,11 +1287,11 @@ "\n" "http://help.ubuntu.com/community/EnablingPAE" -#: ../DistUpgrade/DistUpgradeQuirks.py:1094 +#: ../DistUpgrade/DistUpgradeQuirks.py:1098 msgid "universe component not enabled" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1095 +#: ../DistUpgrade/DistUpgradeQuirks.py:1099 #, python-format msgid "" "You have the package %s installed which is a python2 package. python2 has " @@ -1303,39 +1303,50 @@ "universe component in /etc/apt/sources.list or remove %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1207 +#: ../DistUpgrade/DistUpgradeQuirks.py:1211 msgid "Checking for installed snaps" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1654 +#: ../DistUpgrade/DistUpgradeQuirks.py:1720 #, fuzzy msgid "Cannot upgrade this system" msgstr "Neizdodas uzlabot" -#: ../DistUpgrade/DistUpgradeQuirks.py:1655 +#: ../DistUpgrade/DistUpgradeQuirks.py:1721 msgid "" "Due to a bug in grub, this system cannot be safely upgraded at this time.\n" "\n" "See https://launchpad.net/bugs/2039172." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1721 +#: ../DistUpgrade/DistUpgradeQuirks.py:1787 #, python-brace-format msgid "Updates for Ubuntu {from_release.version} will " msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1731 +#: ../DistUpgrade/DistUpgradeQuirks.py:1797 #, fuzzy msgid "Sorry, cannot upgrade this system to 24.04 LTS" msgstr "Neizdodas uzlabot" -#: ../DistUpgrade/DistUpgradeQuirks.py:1734 +#: ../DistUpgrade/DistUpgradeQuirks.py:1800 msgid "" "The Raspberry Pi kernel for Ubuntu 24.04 LTS does not support the armhf " "architecture.\n" "\n" msgstr "" +#: ../DistUpgrade/DistUpgradeQuirks.py:1928 +#, fuzzy, python-brace-format +msgid "Sorry, cannot upgrade this system to {version}" +msgstr "Neizdodas uzlabot" + +#: ../DistUpgrade/DistUpgradeQuirks.py:1931 +msgid "" +"Upgrades for desktop systems running TPM FDE are not currently supported. " +"Please see https://launchpad.net/bugs/2065229 for more information." +msgstr "" + #: ../DistUpgrade/DistUpgradeMain.py:62 msgid "" "Use frontend. Currently available: \n" diff -Nru ubuntu-release-upgrader-24.04.17/po/mhr.po ubuntu-release-upgrader-24.04.18/po/mhr.po --- ubuntu-release-upgrader-24.04.17/po/mhr.po 2024-04-29 14:26:40.000000000 +0000 +++ ubuntu-release-upgrader-24.04.18/po/mhr.po 2024-05-09 19:39:19.000000000 +0000 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: ubuntu-release-upgrader\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2024-04-29 16:03+0200\n" +"POT-Creation-Date: 2024-05-09 15:39-0400\n" "PO-Revision-Date: 2013-05-22 11:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Mari (Meadow) \n" @@ -897,11 +897,11 @@ msgid "Media Change" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:248 +#: ../DistUpgrade/DistUpgradeQuirks.py:252 msgid "Your graphics hardware may not be fully supported in Ubuntu 14.04." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:250 +#: ../DistUpgrade/DistUpgradeQuirks.py:254 msgid "" "Running the 'unity' desktop environment is not fully supported by your " "graphics hardware. You will maybe end up in a very slow environment after " @@ -911,11 +911,11 @@ "upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:274 +#: ../DistUpgrade/DistUpgradeQuirks.py:278 msgid "Your graphics hardware may not be fully supported in Ubuntu 12.04 LTS." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:276 +#: ../DistUpgrade/DistUpgradeQuirks.py:280 msgid "" "The support in Ubuntu 12.04 LTS for your Intel graphics hardware is limited " "and you may encounter problems after the upgrade. For more information see " @@ -923,13 +923,13 @@ "continue with the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:296 +#: ../DistUpgrade/DistUpgradeQuirks.py:300 msgid "" "Upgrading may reduce desktop effects, and performance in games and other " "graphically intensive programs." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:300 +#: ../DistUpgrade/DistUpgradeQuirks.py:304 msgid "" "This computer is currently using the AMD 'fglrx' graphics driver. No version " "of this driver is available that works with your hardware in Ubuntu 10.04 " @@ -938,12 +938,12 @@ "Do you want to continue?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:339 -#: ../DistUpgrade/DistUpgradeQuirks.py:408 +#: ../DistUpgrade/DistUpgradeQuirks.py:343 +#: ../DistUpgrade/DistUpgradeQuirks.py:412 msgid "Sorry, no more upgrades for this system" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:340 +#: ../DistUpgrade/DistUpgradeQuirks.py:344 #, python-format msgid "" "There will not be any further Ubuntu releases for this system's 'i386' " @@ -952,11 +952,11 @@ "Updates for Ubuntu %s will continue until %s." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:355 +#: ../DistUpgrade/DistUpgradeQuirks.py:359 msgid "No ARMv6 CPU" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:356 +#: ../DistUpgrade/DistUpgradeQuirks.py:360 msgid "" "Your system uses an ARM CPU that is older than the ARMv6 architecture. All " "packages in karmic were built with optimizations requiring ARMv6 as the " @@ -964,12 +964,12 @@ "Ubuntu release with this hardware." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:376 +#: ../DistUpgrade/DistUpgradeQuirks.py:380 msgid "" "Sorry, this storage driver is not supported in kernels for newer releases" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:378 +#: ../DistUpgrade/DistUpgradeQuirks.py:382 #, python-format msgid "" "There will not be any further Ubuntu releases that provide kernel support " @@ -979,7 +979,7 @@ "driver, remove the directory %s and try again." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:409 +#: ../DistUpgrade/DistUpgradeQuirks.py:413 #, python-format msgid "" "There will not be any further Ubuntu releases for this system's POWER8 " @@ -988,11 +988,11 @@ "Updates for Ubuntu %s will continue until %s." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:427 +#: ../DistUpgrade/DistUpgradeQuirks.py:431 msgid "No init available" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:428 +#: ../DistUpgrade/DistUpgradeQuirks.py:432 msgid "" "Your system appears to be a virtualised environment without an init daemon, " "e.g. Linux-VServer. Ubuntu 10.04 LTS cannot function within this type of " @@ -1002,11 +1002,11 @@ "Are you sure you want to continue?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:469 +#: ../DistUpgrade/DistUpgradeQuirks.py:473 msgid "The Robot Operating System (ROS) is installed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:470 +#: ../DistUpgrade/DistUpgradeQuirks.py:474 msgid "" "It appears that ROS is currently installed. Each ROS release is very strict " "about the versions of Ubuntu it supports, and Ubuntu upgrades can fail if " @@ -1023,11 +1023,11 @@ "Are you sure you want to continue?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:670 +#: ../DistUpgrade/DistUpgradeQuirks.py:674 msgid "Connection to the Snap Store failed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:671 +#: ../DistUpgrade/DistUpgradeQuirks.py:675 msgid "" "You have the package lxd installed but your system is unable to reach the " "Snap Store. lxd is now provided via a snap and the release upgrade will fail " @@ -1037,11 +1037,11 @@ "may want to configure a Snap Store proxy." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:686 +#: ../DistUpgrade/DistUpgradeQuirks.py:690 msgid "Connection to Snap Store failed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:687 +#: ../DistUpgrade/DistUpgradeQuirks.py:691 msgid "" "Your system does not have a connection to the Snap Store. For the best " "upgrade experience make sure that your system can connect to api.snapcraft." @@ -1049,11 +1049,11 @@ "Do you still want to continue with the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:696 +#: ../DistUpgrade/DistUpgradeQuirks.py:700 msgid "Outdated snapd package" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:697 +#: ../DistUpgrade/DistUpgradeQuirks.py:701 msgid "" "Your system does not have the latest version of snapd. Please update the " "version of snapd on your system to improve the upgrade experience.\n" @@ -1062,36 +1062,36 @@ #. now perform direct API calls to the store, requesting size #. information for each of the snaps needing installation -#: ../DistUpgrade/DistUpgradeQuirks.py:722 +#: ../DistUpgrade/DistUpgradeQuirks.py:726 msgid "Calculating snap size requirements" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:753 +#: ../DistUpgrade/DistUpgradeQuirks.py:757 msgid "Processing snap replacements" msgstr "" #. TODO: This status should be updated, but the time of #. this change to snap switch is post-translation freeze. -#: ../DistUpgrade/DistUpgradeQuirks.py:761 +#: ../DistUpgrade/DistUpgradeQuirks.py:765 #, python-format msgid "refreshing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:765 +#: ../DistUpgrade/DistUpgradeQuirks.py:769 #, python-format msgid "removing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:768 +#: ../DistUpgrade/DistUpgradeQuirks.py:772 #, python-format msgid "installing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:797 +#: ../DistUpgrade/DistUpgradeQuirks.py:801 msgid "PAE not enabled" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:798 +#: ../DistUpgrade/DistUpgradeQuirks.py:802 msgid "" "Your system uses a CPU that does not have PAE enabled. Ubuntu only supports " "non-PAE systems up to Ubuntu 12.04. To upgrade to a later version of Ubuntu, " @@ -1099,11 +1099,11 @@ "http://help.ubuntu.com/community/EnablingPAE" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1094 +#: ../DistUpgrade/DistUpgradeQuirks.py:1098 msgid "universe component not enabled" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1095 +#: ../DistUpgrade/DistUpgradeQuirks.py:1099 #, python-format msgid "" "You have the package %s installed which is a python2 package. python2 has " @@ -1115,37 +1115,48 @@ "universe component in /etc/apt/sources.list or remove %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1207 +#: ../DistUpgrade/DistUpgradeQuirks.py:1211 msgid "Checking for installed snaps" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1654 +#: ../DistUpgrade/DistUpgradeQuirks.py:1720 msgid "Cannot upgrade this system" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1655 +#: ../DistUpgrade/DistUpgradeQuirks.py:1721 msgid "" "Due to a bug in grub, this system cannot be safely upgraded at this time.\n" "\n" "See https://launchpad.net/bugs/2039172." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1721 +#: ../DistUpgrade/DistUpgradeQuirks.py:1787 #, python-brace-format msgid "Updates for Ubuntu {from_release.version} will " msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1731 +#: ../DistUpgrade/DistUpgradeQuirks.py:1797 msgid "Sorry, cannot upgrade this system to 24.04 LTS" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1734 +#: ../DistUpgrade/DistUpgradeQuirks.py:1800 msgid "" "The Raspberry Pi kernel for Ubuntu 24.04 LTS does not support the armhf " "architecture.\n" "\n" msgstr "" +#: ../DistUpgrade/DistUpgradeQuirks.py:1928 +#, python-brace-format +msgid "Sorry, cannot upgrade this system to {version}" +msgstr "" + +#: ../DistUpgrade/DistUpgradeQuirks.py:1931 +msgid "" +"Upgrades for desktop systems running TPM FDE are not currently supported. " +"Please see https://launchpad.net/bugs/2065229 for more information." +msgstr "" + #: ../DistUpgrade/DistUpgradeMain.py:62 msgid "" "Use frontend. Currently available: \n" diff -Nru ubuntu-release-upgrader-24.04.17/po/mjw.po ubuntu-release-upgrader-24.04.18/po/mjw.po --- ubuntu-release-upgrader-24.04.17/po/mjw.po 2024-04-29 14:26:40.000000000 +0000 +++ ubuntu-release-upgrader-24.04.18/po/mjw.po 2024-05-09 19:39:19.000000000 +0000 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: ubuntu-release-upgrader\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2024-04-29 16:03+0200\n" +"POT-Creation-Date: 2024-05-09 15:39-0400\n" "PO-Revision-Date: 2019-07-24 18:57+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Karbi \n" @@ -897,11 +897,11 @@ msgid "Media Change" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:248 +#: ../DistUpgrade/DistUpgradeQuirks.py:252 msgid "Your graphics hardware may not be fully supported in Ubuntu 14.04." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:250 +#: ../DistUpgrade/DistUpgradeQuirks.py:254 msgid "" "Running the 'unity' desktop environment is not fully supported by your " "graphics hardware. You will maybe end up in a very slow environment after " @@ -911,11 +911,11 @@ "upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:274 +#: ../DistUpgrade/DistUpgradeQuirks.py:278 msgid "Your graphics hardware may not be fully supported in Ubuntu 12.04 LTS." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:276 +#: ../DistUpgrade/DistUpgradeQuirks.py:280 msgid "" "The support in Ubuntu 12.04 LTS for your Intel graphics hardware is limited " "and you may encounter problems after the upgrade. For more information see " @@ -923,13 +923,13 @@ "continue with the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:296 +#: ../DistUpgrade/DistUpgradeQuirks.py:300 msgid "" "Upgrading may reduce desktop effects, and performance in games and other " "graphically intensive programs." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:300 +#: ../DistUpgrade/DistUpgradeQuirks.py:304 msgid "" "This computer is currently using the AMD 'fglrx' graphics driver. No version " "of this driver is available that works with your hardware in Ubuntu 10.04 " @@ -938,12 +938,12 @@ "Do you want to continue?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:339 -#: ../DistUpgrade/DistUpgradeQuirks.py:408 +#: ../DistUpgrade/DistUpgradeQuirks.py:343 +#: ../DistUpgrade/DistUpgradeQuirks.py:412 msgid "Sorry, no more upgrades for this system" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:340 +#: ../DistUpgrade/DistUpgradeQuirks.py:344 #, python-format msgid "" "There will not be any further Ubuntu releases for this system's 'i386' " @@ -952,11 +952,11 @@ "Updates for Ubuntu %s will continue until %s." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:355 +#: ../DistUpgrade/DistUpgradeQuirks.py:359 msgid "No ARMv6 CPU" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:356 +#: ../DistUpgrade/DistUpgradeQuirks.py:360 msgid "" "Your system uses an ARM CPU that is older than the ARMv6 architecture. All " "packages in karmic were built with optimizations requiring ARMv6 as the " @@ -964,12 +964,12 @@ "Ubuntu release with this hardware." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:376 +#: ../DistUpgrade/DistUpgradeQuirks.py:380 msgid "" "Sorry, this storage driver is not supported in kernels for newer releases" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:378 +#: ../DistUpgrade/DistUpgradeQuirks.py:382 #, python-format msgid "" "There will not be any further Ubuntu releases that provide kernel support " @@ -979,7 +979,7 @@ "driver, remove the directory %s and try again." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:409 +#: ../DistUpgrade/DistUpgradeQuirks.py:413 #, python-format msgid "" "There will not be any further Ubuntu releases for this system's POWER8 " @@ -988,11 +988,11 @@ "Updates for Ubuntu %s will continue until %s." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:427 +#: ../DistUpgrade/DistUpgradeQuirks.py:431 msgid "No init available" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:428 +#: ../DistUpgrade/DistUpgradeQuirks.py:432 msgid "" "Your system appears to be a virtualised environment without an init daemon, " "e.g. Linux-VServer. Ubuntu 10.04 LTS cannot function within this type of " @@ -1002,11 +1002,11 @@ "Are you sure you want to continue?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:469 +#: ../DistUpgrade/DistUpgradeQuirks.py:473 msgid "The Robot Operating System (ROS) is installed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:470 +#: ../DistUpgrade/DistUpgradeQuirks.py:474 msgid "" "It appears that ROS is currently installed. Each ROS release is very strict " "about the versions of Ubuntu it supports, and Ubuntu upgrades can fail if " @@ -1023,11 +1023,11 @@ "Are you sure you want to continue?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:670 +#: ../DistUpgrade/DistUpgradeQuirks.py:674 msgid "Connection to the Snap Store failed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:671 +#: ../DistUpgrade/DistUpgradeQuirks.py:675 msgid "" "You have the package lxd installed but your system is unable to reach the " "Snap Store. lxd is now provided via a snap and the release upgrade will fail " @@ -1037,11 +1037,11 @@ "may want to configure a Snap Store proxy." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:686 +#: ../DistUpgrade/DistUpgradeQuirks.py:690 msgid "Connection to Snap Store failed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:687 +#: ../DistUpgrade/DistUpgradeQuirks.py:691 msgid "" "Your system does not have a connection to the Snap Store. For the best " "upgrade experience make sure that your system can connect to api.snapcraft." @@ -1049,11 +1049,11 @@ "Do you still want to continue with the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:696 +#: ../DistUpgrade/DistUpgradeQuirks.py:700 msgid "Outdated snapd package" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:697 +#: ../DistUpgrade/DistUpgradeQuirks.py:701 msgid "" "Your system does not have the latest version of snapd. Please update the " "version of snapd on your system to improve the upgrade experience.\n" @@ -1062,36 +1062,36 @@ #. now perform direct API calls to the store, requesting size #. information for each of the snaps needing installation -#: ../DistUpgrade/DistUpgradeQuirks.py:722 +#: ../DistUpgrade/DistUpgradeQuirks.py:726 msgid "Calculating snap size requirements" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:753 +#: ../DistUpgrade/DistUpgradeQuirks.py:757 msgid "Processing snap replacements" msgstr "" #. TODO: This status should be updated, but the time of #. this change to snap switch is post-translation freeze. -#: ../DistUpgrade/DistUpgradeQuirks.py:761 +#: ../DistUpgrade/DistUpgradeQuirks.py:765 #, python-format msgid "refreshing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:765 +#: ../DistUpgrade/DistUpgradeQuirks.py:769 #, python-format msgid "removing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:768 +#: ../DistUpgrade/DistUpgradeQuirks.py:772 #, python-format msgid "installing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:797 +#: ../DistUpgrade/DistUpgradeQuirks.py:801 msgid "PAE not enabled" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:798 +#: ../DistUpgrade/DistUpgradeQuirks.py:802 msgid "" "Your system uses a CPU that does not have PAE enabled. Ubuntu only supports " "non-PAE systems up to Ubuntu 12.04. To upgrade to a later version of Ubuntu, " @@ -1099,11 +1099,11 @@ "http://help.ubuntu.com/community/EnablingPAE" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1094 +#: ../DistUpgrade/DistUpgradeQuirks.py:1098 msgid "universe component not enabled" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1095 +#: ../DistUpgrade/DistUpgradeQuirks.py:1099 #, python-format msgid "" "You have the package %s installed which is a python2 package. python2 has " @@ -1115,37 +1115,48 @@ "universe component in /etc/apt/sources.list or remove %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1207 +#: ../DistUpgrade/DistUpgradeQuirks.py:1211 msgid "Checking for installed snaps" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1654 +#: ../DistUpgrade/DistUpgradeQuirks.py:1720 msgid "Cannot upgrade this system" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1655 +#: ../DistUpgrade/DistUpgradeQuirks.py:1721 msgid "" "Due to a bug in grub, this system cannot be safely upgraded at this time.\n" "\n" "See https://launchpad.net/bugs/2039172." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1721 +#: ../DistUpgrade/DistUpgradeQuirks.py:1787 #, python-brace-format msgid "Updates for Ubuntu {from_release.version} will " msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1731 +#: ../DistUpgrade/DistUpgradeQuirks.py:1797 msgid "Sorry, cannot upgrade this system to 24.04 LTS" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1734 +#: ../DistUpgrade/DistUpgradeQuirks.py:1800 msgid "" "The Raspberry Pi kernel for Ubuntu 24.04 LTS does not support the armhf " "architecture.\n" "\n" msgstr "" +#: ../DistUpgrade/DistUpgradeQuirks.py:1928 +#, python-brace-format +msgid "Sorry, cannot upgrade this system to {version}" +msgstr "" + +#: ../DistUpgrade/DistUpgradeQuirks.py:1931 +msgid "" +"Upgrades for desktop systems running TPM FDE are not currently supported. " +"Please see https://launchpad.net/bugs/2065229 for more information." +msgstr "" + #: ../DistUpgrade/DistUpgradeMain.py:62 msgid "" "Use frontend. Currently available: \n" diff -Nru ubuntu-release-upgrader-24.04.17/po/mk.po ubuntu-release-upgrader-24.04.18/po/mk.po --- ubuntu-release-upgrader-24.04.17/po/mk.po 2024-04-29 14:26:40.000000000 +0000 +++ ubuntu-release-upgrader-24.04.18/po/mk.po 2024-05-09 19:39:19.000000000 +0000 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: mk\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2024-04-29 16:03+0200\n" +"POT-Creation-Date: 2024-05-09 15:39-0400\n" "PO-Revision-Date: 2013-05-22 11:00+0000\n" "Last-Translator: Јован Наумовски \n" "Language-Team: Macedonian \n" @@ -921,11 +921,11 @@ msgid "Media Change" msgstr "Промена на медиум" -#: ../DistUpgrade/DistUpgradeQuirks.py:248 +#: ../DistUpgrade/DistUpgradeQuirks.py:252 msgid "Your graphics hardware may not be fully supported in Ubuntu 14.04." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:250 +#: ../DistUpgrade/DistUpgradeQuirks.py:254 msgid "" "Running the 'unity' desktop environment is not fully supported by your " "graphics hardware. You will maybe end up in a very slow environment after " @@ -935,11 +935,11 @@ "upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:274 +#: ../DistUpgrade/DistUpgradeQuirks.py:278 msgid "Your graphics hardware may not be fully supported in Ubuntu 12.04 LTS." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:276 +#: ../DistUpgrade/DistUpgradeQuirks.py:280 msgid "" "The support in Ubuntu 12.04 LTS for your Intel graphics hardware is limited " "and you may encounter problems after the upgrade. For more information see " @@ -947,13 +947,13 @@ "continue with the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:296 +#: ../DistUpgrade/DistUpgradeQuirks.py:300 msgid "" "Upgrading may reduce desktop effects, and performance in games and other " "graphically intensive programs." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:300 +#: ../DistUpgrade/DistUpgradeQuirks.py:304 msgid "" "This computer is currently using the AMD 'fglrx' graphics driver. No version " "of this driver is available that works with your hardware in Ubuntu 10.04 " @@ -962,12 +962,12 @@ "Do you want to continue?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:339 -#: ../DistUpgrade/DistUpgradeQuirks.py:408 +#: ../DistUpgrade/DistUpgradeQuirks.py:343 +#: ../DistUpgrade/DistUpgradeQuirks.py:412 msgid "Sorry, no more upgrades for this system" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:340 +#: ../DistUpgrade/DistUpgradeQuirks.py:344 #, python-format msgid "" "There will not be any further Ubuntu releases for this system's 'i386' " @@ -976,11 +976,11 @@ "Updates for Ubuntu %s will continue until %s." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:355 +#: ../DistUpgrade/DistUpgradeQuirks.py:359 msgid "No ARMv6 CPU" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:356 +#: ../DistUpgrade/DistUpgradeQuirks.py:360 msgid "" "Your system uses an ARM CPU that is older than the ARMv6 architecture. All " "packages in karmic were built with optimizations requiring ARMv6 as the " @@ -988,12 +988,12 @@ "Ubuntu release with this hardware." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:376 +#: ../DistUpgrade/DistUpgradeQuirks.py:380 msgid "" "Sorry, this storage driver is not supported in kernels for newer releases" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:378 +#: ../DistUpgrade/DistUpgradeQuirks.py:382 #, python-format msgid "" "There will not be any further Ubuntu releases that provide kernel support " @@ -1003,7 +1003,7 @@ "driver, remove the directory %s and try again." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:409 +#: ../DistUpgrade/DistUpgradeQuirks.py:413 #, python-format msgid "" "There will not be any further Ubuntu releases for this system's POWER8 " @@ -1012,11 +1012,11 @@ "Updates for Ubuntu %s will continue until %s." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:427 +#: ../DistUpgrade/DistUpgradeQuirks.py:431 msgid "No init available" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:428 +#: ../DistUpgrade/DistUpgradeQuirks.py:432 msgid "" "Your system appears to be a virtualised environment without an init daemon, " "e.g. Linux-VServer. Ubuntu 10.04 LTS cannot function within this type of " @@ -1026,11 +1026,11 @@ "Are you sure you want to continue?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:469 +#: ../DistUpgrade/DistUpgradeQuirks.py:473 msgid "The Robot Operating System (ROS) is installed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:470 +#: ../DistUpgrade/DistUpgradeQuirks.py:474 msgid "" "It appears that ROS is currently installed. Each ROS release is very strict " "about the versions of Ubuntu it supports, and Ubuntu upgrades can fail if " @@ -1047,11 +1047,11 @@ "Are you sure you want to continue?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:670 +#: ../DistUpgrade/DistUpgradeQuirks.py:674 msgid "Connection to the Snap Store failed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:671 +#: ../DistUpgrade/DistUpgradeQuirks.py:675 msgid "" "You have the package lxd installed but your system is unable to reach the " "Snap Store. lxd is now provided via a snap and the release upgrade will fail " @@ -1061,11 +1061,11 @@ "may want to configure a Snap Store proxy." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:686 +#: ../DistUpgrade/DistUpgradeQuirks.py:690 msgid "Connection to Snap Store failed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:687 +#: ../DistUpgrade/DistUpgradeQuirks.py:691 msgid "" "Your system does not have a connection to the Snap Store. For the best " "upgrade experience make sure that your system can connect to api.snapcraft." @@ -1073,11 +1073,11 @@ "Do you still want to continue with the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:696 +#: ../DistUpgrade/DistUpgradeQuirks.py:700 msgid "Outdated snapd package" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:697 +#: ../DistUpgrade/DistUpgradeQuirks.py:701 msgid "" "Your system does not have the latest version of snapd. Please update the " "version of snapd on your system to improve the upgrade experience.\n" @@ -1086,36 +1086,36 @@ #. now perform direct API calls to the store, requesting size #. information for each of the snaps needing installation -#: ../DistUpgrade/DistUpgradeQuirks.py:722 +#: ../DistUpgrade/DistUpgradeQuirks.py:726 msgid "Calculating snap size requirements" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:753 +#: ../DistUpgrade/DistUpgradeQuirks.py:757 msgid "Processing snap replacements" msgstr "" #. TODO: This status should be updated, but the time of #. this change to snap switch is post-translation freeze. -#: ../DistUpgrade/DistUpgradeQuirks.py:761 +#: ../DistUpgrade/DistUpgradeQuirks.py:765 #, python-format msgid "refreshing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:765 +#: ../DistUpgrade/DistUpgradeQuirks.py:769 #, python-format msgid "removing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:768 +#: ../DistUpgrade/DistUpgradeQuirks.py:772 #, python-format msgid "installing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:797 +#: ../DistUpgrade/DistUpgradeQuirks.py:801 msgid "PAE not enabled" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:798 +#: ../DistUpgrade/DistUpgradeQuirks.py:802 msgid "" "Your system uses a CPU that does not have PAE enabled. Ubuntu only supports " "non-PAE systems up to Ubuntu 12.04. To upgrade to a later version of Ubuntu, " @@ -1123,11 +1123,11 @@ "http://help.ubuntu.com/community/EnablingPAE" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1094 +#: ../DistUpgrade/DistUpgradeQuirks.py:1098 msgid "universe component not enabled" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1095 +#: ../DistUpgrade/DistUpgradeQuirks.py:1099 #, python-format msgid "" "You have the package %s installed which is a python2 package. python2 has " @@ -1139,39 +1139,50 @@ "universe component in /etc/apt/sources.list or remove %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1207 +#: ../DistUpgrade/DistUpgradeQuirks.py:1211 msgid "Checking for installed snaps" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1654 +#: ../DistUpgrade/DistUpgradeQuirks.py:1720 #, fuzzy msgid "Cannot upgrade this system" msgstr "Не можам да извршам надградба" -#: ../DistUpgrade/DistUpgradeQuirks.py:1655 +#: ../DistUpgrade/DistUpgradeQuirks.py:1721 msgid "" "Due to a bug in grub, this system cannot be safely upgraded at this time.\n" "\n" "See https://launchpad.net/bugs/2039172." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1721 +#: ../DistUpgrade/DistUpgradeQuirks.py:1787 #, python-brace-format msgid "Updates for Ubuntu {from_release.version} will " msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1731 +#: ../DistUpgrade/DistUpgradeQuirks.py:1797 #, fuzzy msgid "Sorry, cannot upgrade this system to 24.04 LTS" msgstr "Не можам да извршам надградба" -#: ../DistUpgrade/DistUpgradeQuirks.py:1734 +#: ../DistUpgrade/DistUpgradeQuirks.py:1800 msgid "" "The Raspberry Pi kernel for Ubuntu 24.04 LTS does not support the armhf " "architecture.\n" "\n" msgstr "" +#: ../DistUpgrade/DistUpgradeQuirks.py:1928 +#, fuzzy, python-brace-format +msgid "Sorry, cannot upgrade this system to {version}" +msgstr "Не можам да извршам надградба" + +#: ../DistUpgrade/DistUpgradeQuirks.py:1931 +msgid "" +"Upgrades for desktop systems running TPM FDE are not currently supported. " +"Please see https://launchpad.net/bugs/2065229 for more information." +msgstr "" + #: ../DistUpgrade/DistUpgradeMain.py:62 msgid "" "Use frontend. Currently available: \n" diff -Nru ubuntu-release-upgrader-24.04.17/po/ml.po ubuntu-release-upgrader-24.04.18/po/ml.po --- ubuntu-release-upgrader-24.04.17/po/ml.po 2024-04-29 14:26:40.000000000 +0000 +++ ubuntu-release-upgrader-24.04.18/po/ml.po 2024-05-09 19:39:19.000000000 +0000 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2024-04-29 16:03+0200\n" +"POT-Creation-Date: 2024-05-09 15:39-0400\n" "PO-Revision-Date: 2013-05-22 11:00+0000\n" "Last-Translator: nithin_aneesh \n" "Language-Team: Malayalam \n" @@ -916,11 +916,11 @@ msgid "Media Change" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:248 +#: ../DistUpgrade/DistUpgradeQuirks.py:252 msgid "Your graphics hardware may not be fully supported in Ubuntu 14.04." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:250 +#: ../DistUpgrade/DistUpgradeQuirks.py:254 msgid "" "Running the 'unity' desktop environment is not fully supported by your " "graphics hardware. You will maybe end up in a very slow environment after " @@ -930,11 +930,11 @@ "upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:274 +#: ../DistUpgrade/DistUpgradeQuirks.py:278 msgid "Your graphics hardware may not be fully supported in Ubuntu 12.04 LTS." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:276 +#: ../DistUpgrade/DistUpgradeQuirks.py:280 msgid "" "The support in Ubuntu 12.04 LTS for your Intel graphics hardware is limited " "and you may encounter problems after the upgrade. For more information see " @@ -942,13 +942,13 @@ "continue with the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:296 +#: ../DistUpgrade/DistUpgradeQuirks.py:300 msgid "" "Upgrading may reduce desktop effects, and performance in games and other " "graphically intensive programs." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:300 +#: ../DistUpgrade/DistUpgradeQuirks.py:304 msgid "" "This computer is currently using the AMD 'fglrx' graphics driver. No version " "of this driver is available that works with your hardware in Ubuntu 10.04 " @@ -957,12 +957,12 @@ "Do you want to continue?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:339 -#: ../DistUpgrade/DistUpgradeQuirks.py:408 +#: ../DistUpgrade/DistUpgradeQuirks.py:343 +#: ../DistUpgrade/DistUpgradeQuirks.py:412 msgid "Sorry, no more upgrades for this system" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:340 +#: ../DistUpgrade/DistUpgradeQuirks.py:344 #, python-format msgid "" "There will not be any further Ubuntu releases for this system's 'i386' " @@ -971,11 +971,11 @@ "Updates for Ubuntu %s will continue until %s." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:355 +#: ../DistUpgrade/DistUpgradeQuirks.py:359 msgid "No ARMv6 CPU" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:356 +#: ../DistUpgrade/DistUpgradeQuirks.py:360 msgid "" "Your system uses an ARM CPU that is older than the ARMv6 architecture. All " "packages in karmic were built with optimizations requiring ARMv6 as the " @@ -983,12 +983,12 @@ "Ubuntu release with this hardware." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:376 +#: ../DistUpgrade/DistUpgradeQuirks.py:380 msgid "" "Sorry, this storage driver is not supported in kernels for newer releases" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:378 +#: ../DistUpgrade/DistUpgradeQuirks.py:382 #, python-format msgid "" "There will not be any further Ubuntu releases that provide kernel support " @@ -998,7 +998,7 @@ "driver, remove the directory %s and try again." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:409 +#: ../DistUpgrade/DistUpgradeQuirks.py:413 #, python-format msgid "" "There will not be any further Ubuntu releases for this system's POWER8 " @@ -1007,11 +1007,11 @@ "Updates for Ubuntu %s will continue until %s." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:427 +#: ../DistUpgrade/DistUpgradeQuirks.py:431 msgid "No init available" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:428 +#: ../DistUpgrade/DistUpgradeQuirks.py:432 msgid "" "Your system appears to be a virtualised environment without an init daemon, " "e.g. Linux-VServer. Ubuntu 10.04 LTS cannot function within this type of " @@ -1021,11 +1021,11 @@ "Are you sure you want to continue?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:469 +#: ../DistUpgrade/DistUpgradeQuirks.py:473 msgid "The Robot Operating System (ROS) is installed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:470 +#: ../DistUpgrade/DistUpgradeQuirks.py:474 msgid "" "It appears that ROS is currently installed. Each ROS release is very strict " "about the versions of Ubuntu it supports, and Ubuntu upgrades can fail if " @@ -1042,11 +1042,11 @@ "Are you sure you want to continue?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:670 +#: ../DistUpgrade/DistUpgradeQuirks.py:674 msgid "Connection to the Snap Store failed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:671 +#: ../DistUpgrade/DistUpgradeQuirks.py:675 msgid "" "You have the package lxd installed but your system is unable to reach the " "Snap Store. lxd is now provided via a snap and the release upgrade will fail " @@ -1056,11 +1056,11 @@ "may want to configure a Snap Store proxy." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:686 +#: ../DistUpgrade/DistUpgradeQuirks.py:690 msgid "Connection to Snap Store failed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:687 +#: ../DistUpgrade/DistUpgradeQuirks.py:691 msgid "" "Your system does not have a connection to the Snap Store. For the best " "upgrade experience make sure that your system can connect to api.snapcraft." @@ -1068,11 +1068,11 @@ "Do you still want to continue with the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:696 +#: ../DistUpgrade/DistUpgradeQuirks.py:700 msgid "Outdated snapd package" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:697 +#: ../DistUpgrade/DistUpgradeQuirks.py:701 msgid "" "Your system does not have the latest version of snapd. Please update the " "version of snapd on your system to improve the upgrade experience.\n" @@ -1081,36 +1081,36 @@ #. now perform direct API calls to the store, requesting size #. information for each of the snaps needing installation -#: ../DistUpgrade/DistUpgradeQuirks.py:722 +#: ../DistUpgrade/DistUpgradeQuirks.py:726 msgid "Calculating snap size requirements" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:753 +#: ../DistUpgrade/DistUpgradeQuirks.py:757 msgid "Processing snap replacements" msgstr "" #. TODO: This status should be updated, but the time of #. this change to snap switch is post-translation freeze. -#: ../DistUpgrade/DistUpgradeQuirks.py:761 +#: ../DistUpgrade/DistUpgradeQuirks.py:765 #, python-format msgid "refreshing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:765 +#: ../DistUpgrade/DistUpgradeQuirks.py:769 #, python-format msgid "removing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:768 +#: ../DistUpgrade/DistUpgradeQuirks.py:772 #, python-format msgid "installing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:797 +#: ../DistUpgrade/DistUpgradeQuirks.py:801 msgid "PAE not enabled" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:798 +#: ../DistUpgrade/DistUpgradeQuirks.py:802 msgid "" "Your system uses a CPU that does not have PAE enabled. Ubuntu only supports " "non-PAE systems up to Ubuntu 12.04. To upgrade to a later version of Ubuntu, " @@ -1118,11 +1118,11 @@ "http://help.ubuntu.com/community/EnablingPAE" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1094 +#: ../DistUpgrade/DistUpgradeQuirks.py:1098 msgid "universe component not enabled" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1095 +#: ../DistUpgrade/DistUpgradeQuirks.py:1099 #, python-format msgid "" "You have the package %s installed which is a python2 package. python2 has " @@ -1134,39 +1134,50 @@ "universe component in /etc/apt/sources.list or remove %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1207 +#: ../DistUpgrade/DistUpgradeQuirks.py:1211 msgid "Checking for installed snaps" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1654 +#: ../DistUpgrade/DistUpgradeQuirks.py:1720 #, fuzzy msgid "Cannot upgrade this system" msgstr "അപ്ഗ്രേഡ്‌ ചെയ്യാൻ സാധിച്ചില്ലാ" -#: ../DistUpgrade/DistUpgradeQuirks.py:1655 +#: ../DistUpgrade/DistUpgradeQuirks.py:1721 msgid "" "Due to a bug in grub, this system cannot be safely upgraded at this time.\n" "\n" "See https://launchpad.net/bugs/2039172." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1721 +#: ../DistUpgrade/DistUpgradeQuirks.py:1787 #, python-brace-format msgid "Updates for Ubuntu {from_release.version} will " msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1731 +#: ../DistUpgrade/DistUpgradeQuirks.py:1797 #, fuzzy msgid "Sorry, cannot upgrade this system to 24.04 LTS" msgstr "അപ്ഗ്രേഡ്‌ ചെയ്യാൻ സാധിച്ചില്ലാ" -#: ../DistUpgrade/DistUpgradeQuirks.py:1734 +#: ../DistUpgrade/DistUpgradeQuirks.py:1800 msgid "" "The Raspberry Pi kernel for Ubuntu 24.04 LTS does not support the armhf " "architecture.\n" "\n" msgstr "" +#: ../DistUpgrade/DistUpgradeQuirks.py:1928 +#, fuzzy, python-brace-format +msgid "Sorry, cannot upgrade this system to {version}" +msgstr "അപ്ഗ്രേഡ്‌ ചെയ്യാൻ സാധിച്ചില്ലാ" + +#: ../DistUpgrade/DistUpgradeQuirks.py:1931 +msgid "" +"Upgrades for desktop systems running TPM FDE are not currently supported. " +"Please see https://launchpad.net/bugs/2065229 for more information." +msgstr "" + #: ../DistUpgrade/DistUpgradeMain.py:62 msgid "" "Use frontend. Currently available: \n" diff -Nru ubuntu-release-upgrader-24.04.17/po/mn.po ubuntu-release-upgrader-24.04.18/po/mn.po --- ubuntu-release-upgrader-24.04.17/po/mn.po 2024-04-29 14:26:40.000000000 +0000 +++ ubuntu-release-upgrader-24.04.18/po/mn.po 2024-05-09 19:39:19.000000000 +0000 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2024-04-29 16:03+0200\n" +"POT-Creation-Date: 2024-05-09 15:39-0400\n" "PO-Revision-Date: 2013-05-22 11:00+0000\n" "Last-Translator: Н.Энхбат \n" "Language-Team: Mongolian \n" @@ -903,11 +903,11 @@ msgid "Media Change" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:248 +#: ../DistUpgrade/DistUpgradeQuirks.py:252 msgid "Your graphics hardware may not be fully supported in Ubuntu 14.04." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:250 +#: ../DistUpgrade/DistUpgradeQuirks.py:254 msgid "" "Running the 'unity' desktop environment is not fully supported by your " "graphics hardware. You will maybe end up in a very slow environment after " @@ -917,11 +917,11 @@ "upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:274 +#: ../DistUpgrade/DistUpgradeQuirks.py:278 msgid "Your graphics hardware may not be fully supported in Ubuntu 12.04 LTS." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:276 +#: ../DistUpgrade/DistUpgradeQuirks.py:280 msgid "" "The support in Ubuntu 12.04 LTS for your Intel graphics hardware is limited " "and you may encounter problems after the upgrade. For more information see " @@ -929,13 +929,13 @@ "continue with the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:296 +#: ../DistUpgrade/DistUpgradeQuirks.py:300 msgid "" "Upgrading may reduce desktop effects, and performance in games and other " "graphically intensive programs." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:300 +#: ../DistUpgrade/DistUpgradeQuirks.py:304 msgid "" "This computer is currently using the AMD 'fglrx' graphics driver. No version " "of this driver is available that works with your hardware in Ubuntu 10.04 " @@ -944,12 +944,12 @@ "Do you want to continue?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:339 -#: ../DistUpgrade/DistUpgradeQuirks.py:408 +#: ../DistUpgrade/DistUpgradeQuirks.py:343 +#: ../DistUpgrade/DistUpgradeQuirks.py:412 msgid "Sorry, no more upgrades for this system" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:340 +#: ../DistUpgrade/DistUpgradeQuirks.py:344 #, python-format msgid "" "There will not be any further Ubuntu releases for this system's 'i386' " @@ -958,11 +958,11 @@ "Updates for Ubuntu %s will continue until %s." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:355 +#: ../DistUpgrade/DistUpgradeQuirks.py:359 msgid "No ARMv6 CPU" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:356 +#: ../DistUpgrade/DistUpgradeQuirks.py:360 msgid "" "Your system uses an ARM CPU that is older than the ARMv6 architecture. All " "packages in karmic were built with optimizations requiring ARMv6 as the " @@ -970,12 +970,12 @@ "Ubuntu release with this hardware." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:376 +#: ../DistUpgrade/DistUpgradeQuirks.py:380 msgid "" "Sorry, this storage driver is not supported in kernels for newer releases" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:378 +#: ../DistUpgrade/DistUpgradeQuirks.py:382 #, python-format msgid "" "There will not be any further Ubuntu releases that provide kernel support " @@ -985,7 +985,7 @@ "driver, remove the directory %s and try again." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:409 +#: ../DistUpgrade/DistUpgradeQuirks.py:413 #, python-format msgid "" "There will not be any further Ubuntu releases for this system's POWER8 " @@ -994,11 +994,11 @@ "Updates for Ubuntu %s will continue until %s." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:427 +#: ../DistUpgrade/DistUpgradeQuirks.py:431 msgid "No init available" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:428 +#: ../DistUpgrade/DistUpgradeQuirks.py:432 msgid "" "Your system appears to be a virtualised environment without an init daemon, " "e.g. Linux-VServer. Ubuntu 10.04 LTS cannot function within this type of " @@ -1008,11 +1008,11 @@ "Are you sure you want to continue?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:469 +#: ../DistUpgrade/DistUpgradeQuirks.py:473 msgid "The Robot Operating System (ROS) is installed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:470 +#: ../DistUpgrade/DistUpgradeQuirks.py:474 msgid "" "It appears that ROS is currently installed. Each ROS release is very strict " "about the versions of Ubuntu it supports, and Ubuntu upgrades can fail if " @@ -1029,11 +1029,11 @@ "Are you sure you want to continue?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:670 +#: ../DistUpgrade/DistUpgradeQuirks.py:674 msgid "Connection to the Snap Store failed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:671 +#: ../DistUpgrade/DistUpgradeQuirks.py:675 msgid "" "You have the package lxd installed but your system is unable to reach the " "Snap Store. lxd is now provided via a snap and the release upgrade will fail " @@ -1043,11 +1043,11 @@ "may want to configure a Snap Store proxy." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:686 +#: ../DistUpgrade/DistUpgradeQuirks.py:690 msgid "Connection to Snap Store failed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:687 +#: ../DistUpgrade/DistUpgradeQuirks.py:691 msgid "" "Your system does not have a connection to the Snap Store. For the best " "upgrade experience make sure that your system can connect to api.snapcraft." @@ -1055,11 +1055,11 @@ "Do you still want to continue with the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:696 +#: ../DistUpgrade/DistUpgradeQuirks.py:700 msgid "Outdated snapd package" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:697 +#: ../DistUpgrade/DistUpgradeQuirks.py:701 msgid "" "Your system does not have the latest version of snapd. Please update the " "version of snapd on your system to improve the upgrade experience.\n" @@ -1068,36 +1068,36 @@ #. now perform direct API calls to the store, requesting size #. information for each of the snaps needing installation -#: ../DistUpgrade/DistUpgradeQuirks.py:722 +#: ../DistUpgrade/DistUpgradeQuirks.py:726 msgid "Calculating snap size requirements" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:753 +#: ../DistUpgrade/DistUpgradeQuirks.py:757 msgid "Processing snap replacements" msgstr "" #. TODO: This status should be updated, but the time of #. this change to snap switch is post-translation freeze. -#: ../DistUpgrade/DistUpgradeQuirks.py:761 +#: ../DistUpgrade/DistUpgradeQuirks.py:765 #, python-format msgid "refreshing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:765 +#: ../DistUpgrade/DistUpgradeQuirks.py:769 #, python-format msgid "removing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:768 +#: ../DistUpgrade/DistUpgradeQuirks.py:772 #, python-format msgid "installing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:797 +#: ../DistUpgrade/DistUpgradeQuirks.py:801 msgid "PAE not enabled" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:798 +#: ../DistUpgrade/DistUpgradeQuirks.py:802 msgid "" "Your system uses a CPU that does not have PAE enabled. Ubuntu only supports " "non-PAE systems up to Ubuntu 12.04. To upgrade to a later version of Ubuntu, " @@ -1105,11 +1105,11 @@ "http://help.ubuntu.com/community/EnablingPAE" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1094 +#: ../DistUpgrade/DistUpgradeQuirks.py:1098 msgid "universe component not enabled" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1095 +#: ../DistUpgrade/DistUpgradeQuirks.py:1099 #, python-format msgid "" "You have the package %s installed which is a python2 package. python2 has " @@ -1121,39 +1121,50 @@ "universe component in /etc/apt/sources.list or remove %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1207 +#: ../DistUpgrade/DistUpgradeQuirks.py:1211 msgid "Checking for installed snaps" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1654 +#: ../DistUpgrade/DistUpgradeQuirks.py:1720 #, fuzzy msgid "Cannot upgrade this system" msgstr "Шинэчлэгдэж чадахгүй байна" -#: ../DistUpgrade/DistUpgradeQuirks.py:1655 +#: ../DistUpgrade/DistUpgradeQuirks.py:1721 msgid "" "Due to a bug in grub, this system cannot be safely upgraded at this time.\n" "\n" "See https://launchpad.net/bugs/2039172." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1721 +#: ../DistUpgrade/DistUpgradeQuirks.py:1787 #, python-brace-format msgid "Updates for Ubuntu {from_release.version} will " msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1731 +#: ../DistUpgrade/DistUpgradeQuirks.py:1797 #, fuzzy msgid "Sorry, cannot upgrade this system to 24.04 LTS" msgstr "Шинэчлэгдэж чадахгүй байна" -#: ../DistUpgrade/DistUpgradeQuirks.py:1734 +#: ../DistUpgrade/DistUpgradeQuirks.py:1800 msgid "" "The Raspberry Pi kernel for Ubuntu 24.04 LTS does not support the armhf " "architecture.\n" "\n" msgstr "" +#: ../DistUpgrade/DistUpgradeQuirks.py:1928 +#, fuzzy, python-brace-format +msgid "Sorry, cannot upgrade this system to {version}" +msgstr "Шинэчлэгдэж чадахгүй байна" + +#: ../DistUpgrade/DistUpgradeQuirks.py:1931 +msgid "" +"Upgrades for desktop systems running TPM FDE are not currently supported. " +"Please see https://launchpad.net/bugs/2065229 for more information." +msgstr "" + #: ../DistUpgrade/DistUpgradeMain.py:62 msgid "" "Use frontend. Currently available: \n" diff -Nru ubuntu-release-upgrader-24.04.17/po/mnw.po ubuntu-release-upgrader-24.04.18/po/mnw.po --- ubuntu-release-upgrader-24.04.17/po/mnw.po 2024-04-29 14:26:40.000000000 +0000 +++ ubuntu-release-upgrader-24.04.18/po/mnw.po 2024-05-09 19:39:20.000000000 +0000 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: ubuntu-release-upgrader\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2024-04-29 16:03+0200\n" +"POT-Creation-Date: 2024-05-09 15:39-0400\n" "PO-Revision-Date: 2019-11-04 05:16+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Mon \n" @@ -898,11 +898,11 @@ msgid "Media Change" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:248 +#: ../DistUpgrade/DistUpgradeQuirks.py:252 msgid "Your graphics hardware may not be fully supported in Ubuntu 14.04." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:250 +#: ../DistUpgrade/DistUpgradeQuirks.py:254 msgid "" "Running the 'unity' desktop environment is not fully supported by your " "graphics hardware. You will maybe end up in a very slow environment after " @@ -912,11 +912,11 @@ "upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:274 +#: ../DistUpgrade/DistUpgradeQuirks.py:278 msgid "Your graphics hardware may not be fully supported in Ubuntu 12.04 LTS." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:276 +#: ../DistUpgrade/DistUpgradeQuirks.py:280 msgid "" "The support in Ubuntu 12.04 LTS for your Intel graphics hardware is limited " "and you may encounter problems after the upgrade. For more information see " @@ -924,13 +924,13 @@ "continue with the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:296 +#: ../DistUpgrade/DistUpgradeQuirks.py:300 msgid "" "Upgrading may reduce desktop effects, and performance in games and other " "graphically intensive programs." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:300 +#: ../DistUpgrade/DistUpgradeQuirks.py:304 msgid "" "This computer is currently using the AMD 'fglrx' graphics driver. No version " "of this driver is available that works with your hardware in Ubuntu 10.04 " @@ -939,12 +939,12 @@ "Do you want to continue?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:339 -#: ../DistUpgrade/DistUpgradeQuirks.py:408 +#: ../DistUpgrade/DistUpgradeQuirks.py:343 +#: ../DistUpgrade/DistUpgradeQuirks.py:412 msgid "Sorry, no more upgrades for this system" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:340 +#: ../DistUpgrade/DistUpgradeQuirks.py:344 #, python-format msgid "" "There will not be any further Ubuntu releases for this system's 'i386' " @@ -953,11 +953,11 @@ "Updates for Ubuntu %s will continue until %s." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:355 +#: ../DistUpgrade/DistUpgradeQuirks.py:359 msgid "No ARMv6 CPU" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:356 +#: ../DistUpgrade/DistUpgradeQuirks.py:360 msgid "" "Your system uses an ARM CPU that is older than the ARMv6 architecture. All " "packages in karmic were built with optimizations requiring ARMv6 as the " @@ -965,12 +965,12 @@ "Ubuntu release with this hardware." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:376 +#: ../DistUpgrade/DistUpgradeQuirks.py:380 msgid "" "Sorry, this storage driver is not supported in kernels for newer releases" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:378 +#: ../DistUpgrade/DistUpgradeQuirks.py:382 #, python-format msgid "" "There will not be any further Ubuntu releases that provide kernel support " @@ -980,7 +980,7 @@ "driver, remove the directory %s and try again." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:409 +#: ../DistUpgrade/DistUpgradeQuirks.py:413 #, python-format msgid "" "There will not be any further Ubuntu releases for this system's POWER8 " @@ -989,11 +989,11 @@ "Updates for Ubuntu %s will continue until %s." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:427 +#: ../DistUpgrade/DistUpgradeQuirks.py:431 msgid "No init available" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:428 +#: ../DistUpgrade/DistUpgradeQuirks.py:432 msgid "" "Your system appears to be a virtualised environment without an init daemon, " "e.g. Linux-VServer. Ubuntu 10.04 LTS cannot function within this type of " @@ -1003,11 +1003,11 @@ "Are you sure you want to continue?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:469 +#: ../DistUpgrade/DistUpgradeQuirks.py:473 msgid "The Robot Operating System (ROS) is installed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:470 +#: ../DistUpgrade/DistUpgradeQuirks.py:474 msgid "" "It appears that ROS is currently installed. Each ROS release is very strict " "about the versions of Ubuntu it supports, and Ubuntu upgrades can fail if " @@ -1024,11 +1024,11 @@ "Are you sure you want to continue?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:670 +#: ../DistUpgrade/DistUpgradeQuirks.py:674 msgid "Connection to the Snap Store failed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:671 +#: ../DistUpgrade/DistUpgradeQuirks.py:675 msgid "" "You have the package lxd installed but your system is unable to reach the " "Snap Store. lxd is now provided via a snap and the release upgrade will fail " @@ -1038,11 +1038,11 @@ "may want to configure a Snap Store proxy." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:686 +#: ../DistUpgrade/DistUpgradeQuirks.py:690 msgid "Connection to Snap Store failed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:687 +#: ../DistUpgrade/DistUpgradeQuirks.py:691 msgid "" "Your system does not have a connection to the Snap Store. For the best " "upgrade experience make sure that your system can connect to api.snapcraft." @@ -1050,11 +1050,11 @@ "Do you still want to continue with the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:696 +#: ../DistUpgrade/DistUpgradeQuirks.py:700 msgid "Outdated snapd package" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:697 +#: ../DistUpgrade/DistUpgradeQuirks.py:701 msgid "" "Your system does not have the latest version of snapd. Please update the " "version of snapd on your system to improve the upgrade experience.\n" @@ -1063,36 +1063,36 @@ #. now perform direct API calls to the store, requesting size #. information for each of the snaps needing installation -#: ../DistUpgrade/DistUpgradeQuirks.py:722 +#: ../DistUpgrade/DistUpgradeQuirks.py:726 msgid "Calculating snap size requirements" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:753 +#: ../DistUpgrade/DistUpgradeQuirks.py:757 msgid "Processing snap replacements" msgstr "" #. TODO: This status should be updated, but the time of #. this change to snap switch is post-translation freeze. -#: ../DistUpgrade/DistUpgradeQuirks.py:761 +#: ../DistUpgrade/DistUpgradeQuirks.py:765 #, python-format msgid "refreshing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:765 +#: ../DistUpgrade/DistUpgradeQuirks.py:769 #, python-format msgid "removing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:768 +#: ../DistUpgrade/DistUpgradeQuirks.py:772 #, python-format msgid "installing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:797 +#: ../DistUpgrade/DistUpgradeQuirks.py:801 msgid "PAE not enabled" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:798 +#: ../DistUpgrade/DistUpgradeQuirks.py:802 msgid "" "Your system uses a CPU that does not have PAE enabled. Ubuntu only supports " "non-PAE systems up to Ubuntu 12.04. To upgrade to a later version of Ubuntu, " @@ -1100,11 +1100,11 @@ "http://help.ubuntu.com/community/EnablingPAE" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1094 +#: ../DistUpgrade/DistUpgradeQuirks.py:1098 msgid "universe component not enabled" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1095 +#: ../DistUpgrade/DistUpgradeQuirks.py:1099 #, python-format msgid "" "You have the package %s installed which is a python2 package. python2 has " @@ -1116,37 +1116,48 @@ "universe component in /etc/apt/sources.list or remove %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1207 +#: ../DistUpgrade/DistUpgradeQuirks.py:1211 msgid "Checking for installed snaps" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1654 +#: ../DistUpgrade/DistUpgradeQuirks.py:1720 msgid "Cannot upgrade this system" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1655 +#: ../DistUpgrade/DistUpgradeQuirks.py:1721 msgid "" "Due to a bug in grub, this system cannot be safely upgraded at this time.\n" "\n" "See https://launchpad.net/bugs/2039172." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1721 +#: ../DistUpgrade/DistUpgradeQuirks.py:1787 #, python-brace-format msgid "Updates for Ubuntu {from_release.version} will " msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1731 +#: ../DistUpgrade/DistUpgradeQuirks.py:1797 msgid "Sorry, cannot upgrade this system to 24.04 LTS" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1734 +#: ../DistUpgrade/DistUpgradeQuirks.py:1800 msgid "" "The Raspberry Pi kernel for Ubuntu 24.04 LTS does not support the armhf " "architecture.\n" "\n" msgstr "" +#: ../DistUpgrade/DistUpgradeQuirks.py:1928 +#, python-brace-format +msgid "Sorry, cannot upgrade this system to {version}" +msgstr "" + +#: ../DistUpgrade/DistUpgradeQuirks.py:1931 +msgid "" +"Upgrades for desktop systems running TPM FDE are not currently supported. " +"Please see https://launchpad.net/bugs/2065229 for more information." +msgstr "" + #: ../DistUpgrade/DistUpgradeMain.py:62 msgid "" "Use frontend. Currently available: \n" diff -Nru ubuntu-release-upgrader-24.04.17/po/mr.po ubuntu-release-upgrader-24.04.18/po/mr.po --- ubuntu-release-upgrader-24.04.17/po/mr.po 2024-04-29 14:26:40.000000000 +0000 +++ ubuntu-release-upgrader-24.04.18/po/mr.po 2024-05-09 19:39:20.000000000 +0000 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2024-04-29 16:03+0200\n" +"POT-Creation-Date: 2024-05-09 15:39-0400\n" "PO-Revision-Date: 2013-05-22 11:00+0000\n" "Last-Translator: Brian Murray \n" "Language-Team: Marathi \n" @@ -972,11 +972,11 @@ msgid "Media Change" msgstr "मीडिया बदल" -#: ../DistUpgrade/DistUpgradeQuirks.py:248 +#: ../DistUpgrade/DistUpgradeQuirks.py:252 msgid "Your graphics hardware may not be fully supported in Ubuntu 14.04." msgstr "आपल्या ग्राफिक्स हार्डवेअर उबंटू 14.04 मध्ये पूर्णपणे समर्थीत नाही." -#: ../DistUpgrade/DistUpgradeQuirks.py:250 +#: ../DistUpgrade/DistUpgradeQuirks.py:254 msgid "" "Running the 'unity' desktop environment is not fully supported by your " "graphics hardware. You will maybe end up in a very slow environment after " @@ -986,11 +986,11 @@ "upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:274 +#: ../DistUpgrade/DistUpgradeQuirks.py:278 msgid "Your graphics hardware may not be fully supported in Ubuntu 12.04 LTS." msgstr "तुमचे ग्राफिक हार्डवेयर कदाचित उबुंटू १२.०४ LTS पूर्णपणे वापरू शकत नाही" -#: ../DistUpgrade/DistUpgradeQuirks.py:276 +#: ../DistUpgrade/DistUpgradeQuirks.py:280 msgid "" "The support in Ubuntu 12.04 LTS for your Intel graphics hardware is limited " "and you may encounter problems after the upgrade. For more information see " @@ -998,13 +998,13 @@ "continue with the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:296 +#: ../DistUpgrade/DistUpgradeQuirks.py:300 msgid "" "Upgrading may reduce desktop effects, and performance in games and other " "graphically intensive programs." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:300 +#: ../DistUpgrade/DistUpgradeQuirks.py:304 msgid "" "This computer is currently using the AMD 'fglrx' graphics driver. No version " "of this driver is available that works with your hardware in Ubuntu 10.04 " @@ -1016,12 +1016,12 @@ "हार्डवेयर वापरण्या साठी ह्या driver ची कोणतीही आवृत्ती उपलभ्ध नाही.\n" "तुम्हाला पुढे जायचे?" -#: ../DistUpgrade/DistUpgradeQuirks.py:339 -#: ../DistUpgrade/DistUpgradeQuirks.py:408 +#: ../DistUpgrade/DistUpgradeQuirks.py:343 +#: ../DistUpgrade/DistUpgradeQuirks.py:412 msgid "Sorry, no more upgrades for this system" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:340 +#: ../DistUpgrade/DistUpgradeQuirks.py:344 #, python-format msgid "" "There will not be any further Ubuntu releases for this system's 'i386' " @@ -1030,11 +1030,11 @@ "Updates for Ubuntu %s will continue until %s." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:355 +#: ../DistUpgrade/DistUpgradeQuirks.py:359 msgid "No ARMv6 CPU" msgstr "हा ARMv6 CPU नाही" -#: ../DistUpgrade/DistUpgradeQuirks.py:356 +#: ../DistUpgrade/DistUpgradeQuirks.py:360 msgid "" "Your system uses an ARM CPU that is older than the ARMv6 architecture. All " "packages in karmic were built with optimizations requiring ARMv6 as the " @@ -1045,12 +1045,12 @@ "कमीतकमी ARMv6 ला गृहीत धरून बनवल्या आहेत.ह्या हार्डवेयर वर तुम्हाला उबुंटू अद्ययावत करता " "येणार नाही." -#: ../DistUpgrade/DistUpgradeQuirks.py:376 +#: ../DistUpgrade/DistUpgradeQuirks.py:380 msgid "" "Sorry, this storage driver is not supported in kernels for newer releases" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:378 +#: ../DistUpgrade/DistUpgradeQuirks.py:382 #, python-format msgid "" "There will not be any further Ubuntu releases that provide kernel support " @@ -1060,7 +1060,7 @@ "driver, remove the directory %s and try again." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:409 +#: ../DistUpgrade/DistUpgradeQuirks.py:413 #, python-format msgid "" "There will not be any further Ubuntu releases for this system's POWER8 " @@ -1069,11 +1069,11 @@ "Updates for Ubuntu %s will continue until %s." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:427 +#: ../DistUpgrade/DistUpgradeQuirks.py:431 msgid "No init available" msgstr "init उपलब्ध नाही" -#: ../DistUpgrade/DistUpgradeQuirks.py:428 +#: ../DistUpgrade/DistUpgradeQuirks.py:432 msgid "" "Your system appears to be a virtualised environment without an init daemon, " "e.g. Linux-VServer. Ubuntu 10.04 LTS cannot function within this type of " @@ -1083,11 +1083,11 @@ "Are you sure you want to continue?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:469 +#: ../DistUpgrade/DistUpgradeQuirks.py:473 msgid "The Robot Operating System (ROS) is installed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:470 +#: ../DistUpgrade/DistUpgradeQuirks.py:474 msgid "" "It appears that ROS is currently installed. Each ROS release is very strict " "about the versions of Ubuntu it supports, and Ubuntu upgrades can fail if " @@ -1104,11 +1104,11 @@ "Are you sure you want to continue?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:670 +#: ../DistUpgrade/DistUpgradeQuirks.py:674 msgid "Connection to the Snap Store failed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:671 +#: ../DistUpgrade/DistUpgradeQuirks.py:675 msgid "" "You have the package lxd installed but your system is unable to reach the " "Snap Store. lxd is now provided via a snap and the release upgrade will fail " @@ -1118,11 +1118,11 @@ "may want to configure a Snap Store proxy." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:686 +#: ../DistUpgrade/DistUpgradeQuirks.py:690 msgid "Connection to Snap Store failed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:687 +#: ../DistUpgrade/DistUpgradeQuirks.py:691 msgid "" "Your system does not have a connection to the Snap Store. For the best " "upgrade experience make sure that your system can connect to api.snapcraft." @@ -1130,11 +1130,11 @@ "Do you still want to continue with the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:696 +#: ../DistUpgrade/DistUpgradeQuirks.py:700 msgid "Outdated snapd package" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:697 +#: ../DistUpgrade/DistUpgradeQuirks.py:701 msgid "" "Your system does not have the latest version of snapd. Please update the " "version of snapd on your system to improve the upgrade experience.\n" @@ -1143,36 +1143,36 @@ #. now perform direct API calls to the store, requesting size #. information for each of the snaps needing installation -#: ../DistUpgrade/DistUpgradeQuirks.py:722 +#: ../DistUpgrade/DistUpgradeQuirks.py:726 msgid "Calculating snap size requirements" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:753 +#: ../DistUpgrade/DistUpgradeQuirks.py:757 msgid "Processing snap replacements" msgstr "" #. TODO: This status should be updated, but the time of #. this change to snap switch is post-translation freeze. -#: ../DistUpgrade/DistUpgradeQuirks.py:761 +#: ../DistUpgrade/DistUpgradeQuirks.py:765 #, python-format msgid "refreshing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:765 +#: ../DistUpgrade/DistUpgradeQuirks.py:769 #, python-format msgid "removing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:768 +#: ../DistUpgrade/DistUpgradeQuirks.py:772 #, python-format msgid "installing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:797 +#: ../DistUpgrade/DistUpgradeQuirks.py:801 msgid "PAE not enabled" msgstr "PAE अक्षम आहे" -#: ../DistUpgrade/DistUpgradeQuirks.py:798 +#: ../DistUpgrade/DistUpgradeQuirks.py:802 msgid "" "Your system uses a CPU that does not have PAE enabled. Ubuntu only supports " "non-PAE systems up to Ubuntu 12.04. To upgrade to a later version of Ubuntu, " @@ -1180,11 +1180,11 @@ "http://help.ubuntu.com/community/EnablingPAE" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1094 +#: ../DistUpgrade/DistUpgradeQuirks.py:1098 msgid "universe component not enabled" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1095 +#: ../DistUpgrade/DistUpgradeQuirks.py:1099 #, python-format msgid "" "You have the package %s installed which is a python2 package. python2 has " @@ -1196,39 +1196,50 @@ "universe component in /etc/apt/sources.list or remove %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1207 +#: ../DistUpgrade/DistUpgradeQuirks.py:1211 msgid "Checking for installed snaps" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1654 +#: ../DistUpgrade/DistUpgradeQuirks.py:1720 #, fuzzy msgid "Cannot upgrade this system" msgstr "अपग्रेड करू शकत नाही" -#: ../DistUpgrade/DistUpgradeQuirks.py:1655 +#: ../DistUpgrade/DistUpgradeQuirks.py:1721 msgid "" "Due to a bug in grub, this system cannot be safely upgraded at this time.\n" "\n" "See https://launchpad.net/bugs/2039172." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1721 +#: ../DistUpgrade/DistUpgradeQuirks.py:1787 #, python-brace-format msgid "Updates for Ubuntu {from_release.version} will " msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1731 +#: ../DistUpgrade/DistUpgradeQuirks.py:1797 #, fuzzy msgid "Sorry, cannot upgrade this system to 24.04 LTS" msgstr "अपग्रेड करू शकत नाही" -#: ../DistUpgrade/DistUpgradeQuirks.py:1734 +#: ../DistUpgrade/DistUpgradeQuirks.py:1800 msgid "" "The Raspberry Pi kernel for Ubuntu 24.04 LTS does not support the armhf " "architecture.\n" "\n" msgstr "" +#: ../DistUpgrade/DistUpgradeQuirks.py:1928 +#, fuzzy, python-brace-format +msgid "Sorry, cannot upgrade this system to {version}" +msgstr "अपग्रेड करू शकत नाही" + +#: ../DistUpgrade/DistUpgradeQuirks.py:1931 +msgid "" +"Upgrades for desktop systems running TPM FDE are not currently supported. " +"Please see https://launchpad.net/bugs/2065229 for more information." +msgstr "" + #: ../DistUpgrade/DistUpgradeMain.py:62 msgid "" "Use frontend. Currently available: \n" diff -Nru ubuntu-release-upgrader-24.04.17/po/ms.po ubuntu-release-upgrader-24.04.18/po/ms.po --- ubuntu-release-upgrader-24.04.17/po/ms.po 2024-04-29 14:26:40.000000000 +0000 +++ ubuntu-release-upgrader-24.04.18/po/ms.po 2024-05-09 19:39:20.000000000 +0000 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2024-04-29 16:03+0200\n" +"POT-Creation-Date: 2024-05-09 15:39-0400\n" "PO-Revision-Date: 2019-06-18 17:54+0000\n" "Last-Translator: Brian Murray \n" "Language-Team: Malay \n" @@ -1050,11 +1050,11 @@ msgid "Media Change" msgstr "Perubahan Media" -#: ../DistUpgrade/DistUpgradeQuirks.py:248 +#: ../DistUpgrade/DistUpgradeQuirks.py:252 msgid "Your graphics hardware may not be fully supported in Ubuntu 14.04." msgstr "Perkakasan grafik anda tidak sepenuhnya disokong oleh Ubuntu 14.04." -#: ../DistUpgrade/DistUpgradeQuirks.py:250 +#: ../DistUpgrade/DistUpgradeQuirks.py:254 msgid "" "Running the 'unity' desktop environment is not fully supported by your " "graphics hardware. You will maybe end up in a very slow environment after " @@ -1069,11 +1069,11 @@ "buat masa ini. Untuk maklumat lanjut rujuk https://wiki.ubuntu.com/X/Bugs/" "UpdateManagerWarningForUnity3D Anda masih mahu teruskan penataran?" -#: ../DistUpgrade/DistUpgradeQuirks.py:274 +#: ../DistUpgrade/DistUpgradeQuirks.py:278 msgid "Your graphics hardware may not be fully supported in Ubuntu 12.04 LTS." msgstr "Perkakasan grafik anda tidak menyokong sepenuhnya Ubuntu 12.04 LTS." -#: ../DistUpgrade/DistUpgradeQuirks.py:276 +#: ../DistUpgrade/DistUpgradeQuirks.py:280 msgid "" "The support in Ubuntu 12.04 LTS for your Intel graphics hardware is limited " "and you may encounter problems after the upgrade. For more information see " @@ -1085,7 +1085,7 @@ "lanjut rujuk https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForI8xx Anda " "hendak teruskan penataran?" -#: ../DistUpgrade/DistUpgradeQuirks.py:296 +#: ../DistUpgrade/DistUpgradeQuirks.py:300 msgid "" "Upgrading may reduce desktop effects, and performance in games and other " "graphically intensive programs." @@ -1093,7 +1093,7 @@ "Penataran akan mengurangkan kesan desktop, dan prestasi didalam permainan " "serta program bergrafik tinggi yang lain." -#: ../DistUpgrade/DistUpgradeQuirks.py:300 +#: ../DistUpgrade/DistUpgradeQuirks.py:304 msgid "" "This computer is currently using the AMD 'fglrx' graphics driver. No version " "of this driver is available that works with your hardware in Ubuntu 10.04 " @@ -1107,12 +1107,12 @@ "\n" "Adakah anda ingin meneruskannya?" -#: ../DistUpgrade/DistUpgradeQuirks.py:339 -#: ../DistUpgrade/DistUpgradeQuirks.py:408 +#: ../DistUpgrade/DistUpgradeQuirks.py:343 +#: ../DistUpgrade/DistUpgradeQuirks.py:412 msgid "Sorry, no more upgrades for this system" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:340 +#: ../DistUpgrade/DistUpgradeQuirks.py:344 #, python-format msgid "" "There will not be any further Ubuntu releases for this system's 'i386' " @@ -1121,11 +1121,11 @@ "Updates for Ubuntu %s will continue until %s." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:355 +#: ../DistUpgrade/DistUpgradeQuirks.py:359 msgid "No ARMv6 CPU" msgstr "Tiada CPU ARMv6" -#: ../DistUpgrade/DistUpgradeQuirks.py:356 +#: ../DistUpgrade/DistUpgradeQuirks.py:360 msgid "" "Your system uses an ARM CPU that is older than the ARMv6 architecture. All " "packages in karmic were built with optimizations requiring ARMv6 as the " @@ -1137,12 +1137,12 @@ "sebagai senibina yang minimum. Adalah tidak mungkin sistem anda boleh " "ditatarkan kepada pelepasan Ubuntu yang terbaru menggunakan perkakasan ini." -#: ../DistUpgrade/DistUpgradeQuirks.py:376 +#: ../DistUpgrade/DistUpgradeQuirks.py:380 msgid "" "Sorry, this storage driver is not supported in kernels for newer releases" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:378 +#: ../DistUpgrade/DistUpgradeQuirks.py:382 #, python-format msgid "" "There will not be any further Ubuntu releases that provide kernel support " @@ -1152,7 +1152,7 @@ "driver, remove the directory %s and try again." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:409 +#: ../DistUpgrade/DistUpgradeQuirks.py:413 #, python-format msgid "" "There will not be any further Ubuntu releases for this system's POWER8 " @@ -1161,11 +1161,11 @@ "Updates for Ubuntu %s will continue until %s." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:427 +#: ../DistUpgrade/DistUpgradeQuirks.py:431 msgid "No init available" msgstr "Tiada init" -#: ../DistUpgrade/DistUpgradeQuirks.py:428 +#: ../DistUpgrade/DistUpgradeQuirks.py:432 msgid "" "Your system appears to be a virtualised environment without an init daemon, " "e.g. Linux-VServer. Ubuntu 10.04 LTS cannot function within this type of " @@ -1180,11 +1180,11 @@ "\n" "Adakah anda ingin meneruskannya?" -#: ../DistUpgrade/DistUpgradeQuirks.py:469 +#: ../DistUpgrade/DistUpgradeQuirks.py:473 msgid "The Robot Operating System (ROS) is installed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:470 +#: ../DistUpgrade/DistUpgradeQuirks.py:474 msgid "" "It appears that ROS is currently installed. Each ROS release is very strict " "about the versions of Ubuntu it supports, and Ubuntu upgrades can fail if " @@ -1201,12 +1201,12 @@ "Are you sure you want to continue?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:670 +#: ../DistUpgrade/DistUpgradeQuirks.py:674 #, fuzzy msgid "Connection to the Snap Store failed" msgstr "Sambungan ke Kedai Snap gagal" -#: ../DistUpgrade/DistUpgradeQuirks.py:671 +#: ../DistUpgrade/DistUpgradeQuirks.py:675 msgid "" "You have the package lxd installed but your system is unable to reach the " "Snap Store. lxd is now provided via a snap and the release upgrade will fail " @@ -1216,11 +1216,11 @@ "may want to configure a Snap Store proxy." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:686 +#: ../DistUpgrade/DistUpgradeQuirks.py:690 msgid "Connection to Snap Store failed" msgstr "Sambungan ke Kedai Snap gagal" -#: ../DistUpgrade/DistUpgradeQuirks.py:687 +#: ../DistUpgrade/DistUpgradeQuirks.py:691 msgid "" "Your system does not have a connection to the Snap Store. For the best " "upgrade experience make sure that your system can connect to api.snapcraft." @@ -1232,11 +1232,11 @@ "api.snapcraft.io.\n" "Anda masih mahu teruskan penataran?" -#: ../DistUpgrade/DistUpgradeQuirks.py:696 +#: ../DistUpgrade/DistUpgradeQuirks.py:700 msgid "Outdated snapd package" msgstr "Pakej snapd telah lapuk" -#: ../DistUpgrade/DistUpgradeQuirks.py:697 +#: ../DistUpgrade/DistUpgradeQuirks.py:701 msgid "" "Your system does not have the latest version of snapd. Please update the " "version of snapd on your system to improve the upgrade experience.\n" @@ -1248,36 +1248,36 @@ #. now perform direct API calls to the store, requesting size #. information for each of the snaps needing installation -#: ../DistUpgrade/DistUpgradeQuirks.py:722 +#: ../DistUpgrade/DistUpgradeQuirks.py:726 msgid "Calculating snap size requirements" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:753 +#: ../DistUpgrade/DistUpgradeQuirks.py:757 msgid "Processing snap replacements" msgstr "" #. TODO: This status should be updated, but the time of #. this change to snap switch is post-translation freeze. -#: ../DistUpgrade/DistUpgradeQuirks.py:761 +#: ../DistUpgrade/DistUpgradeQuirks.py:765 #, python-format msgid "refreshing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:765 +#: ../DistUpgrade/DistUpgradeQuirks.py:769 #, python-format msgid "removing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:768 +#: ../DistUpgrade/DistUpgradeQuirks.py:772 #, python-format msgid "installing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:797 +#: ../DistUpgrade/DistUpgradeQuirks.py:801 msgid "PAE not enabled" msgstr "PAE tidak dibenarkan" -#: ../DistUpgrade/DistUpgradeQuirks.py:798 +#: ../DistUpgrade/DistUpgradeQuirks.py:802 msgid "" "Your system uses a CPU that does not have PAE enabled. Ubuntu only supports " "non-PAE systems up to Ubuntu 12.04. To upgrade to a later version of Ubuntu, " @@ -1289,11 +1289,11 @@ "anda mesti benarkan PAE (jika ia boleh dibuat) sila rujuk:\n" "http://help.ubuntu.com/community/EnablingPAE" -#: ../DistUpgrade/DistUpgradeQuirks.py:1094 +#: ../DistUpgrade/DistUpgradeQuirks.py:1098 msgid "universe component not enabled" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1095 +#: ../DistUpgrade/DistUpgradeQuirks.py:1099 #, python-format msgid "" "You have the package %s installed which is a python2 package. python2 has " @@ -1305,39 +1305,50 @@ "universe component in /etc/apt/sources.list or remove %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1207 +#: ../DistUpgrade/DistUpgradeQuirks.py:1211 msgid "Checking for installed snaps" msgstr "Memeriksa snap yang dipasang" -#: ../DistUpgrade/DistUpgradeQuirks.py:1654 +#: ../DistUpgrade/DistUpgradeQuirks.py:1720 #, fuzzy msgid "Cannot upgrade this system" msgstr "Tidak boleh menatar" -#: ../DistUpgrade/DistUpgradeQuirks.py:1655 +#: ../DistUpgrade/DistUpgradeQuirks.py:1721 msgid "" "Due to a bug in grub, this system cannot be safely upgraded at this time.\n" "\n" "See https://launchpad.net/bugs/2039172." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1721 +#: ../DistUpgrade/DistUpgradeQuirks.py:1787 #, python-brace-format msgid "Updates for Ubuntu {from_release.version} will " msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1731 +#: ../DistUpgrade/DistUpgradeQuirks.py:1797 #, fuzzy msgid "Sorry, cannot upgrade this system to 24.04 LTS" msgstr "Tidak boleh menatar" -#: ../DistUpgrade/DistUpgradeQuirks.py:1734 +#: ../DistUpgrade/DistUpgradeQuirks.py:1800 msgid "" "The Raspberry Pi kernel for Ubuntu 24.04 LTS does not support the armhf " "architecture.\n" "\n" msgstr "" +#: ../DistUpgrade/DistUpgradeQuirks.py:1928 +#, fuzzy, python-brace-format +msgid "Sorry, cannot upgrade this system to {version}" +msgstr "Tidak boleh menatar" + +#: ../DistUpgrade/DistUpgradeQuirks.py:1931 +msgid "" +"Upgrades for desktop systems running TPM FDE are not currently supported. " +"Please see https://launchpad.net/bugs/2065229 for more information." +msgstr "" + #: ../DistUpgrade/DistUpgradeMain.py:62 msgid "" "Use frontend. Currently available: \n" diff -Nru ubuntu-release-upgrader-24.04.17/po/mus.po ubuntu-release-upgrader-24.04.18/po/mus.po --- ubuntu-release-upgrader-24.04.17/po/mus.po 2024-04-29 14:26:40.000000000 +0000 +++ ubuntu-release-upgrader-24.04.18/po/mus.po 2024-05-09 19:39:20.000000000 +0000 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2024-04-29 16:03+0200\n" +"POT-Creation-Date: 2024-05-09 15:39-0400\n" "PO-Revision-Date: 2013-05-22 11:00+0000\n" "Last-Translator: Michael Vogt \n" "Language-Team: Creek \n" @@ -897,11 +897,11 @@ msgid "Media Change" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:248 +#: ../DistUpgrade/DistUpgradeQuirks.py:252 msgid "Your graphics hardware may not be fully supported in Ubuntu 14.04." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:250 +#: ../DistUpgrade/DistUpgradeQuirks.py:254 msgid "" "Running the 'unity' desktop environment is not fully supported by your " "graphics hardware. You will maybe end up in a very slow environment after " @@ -911,11 +911,11 @@ "upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:274 +#: ../DistUpgrade/DistUpgradeQuirks.py:278 msgid "Your graphics hardware may not be fully supported in Ubuntu 12.04 LTS." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:276 +#: ../DistUpgrade/DistUpgradeQuirks.py:280 msgid "" "The support in Ubuntu 12.04 LTS for your Intel graphics hardware is limited " "and you may encounter problems after the upgrade. For more information see " @@ -923,13 +923,13 @@ "continue with the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:296 +#: ../DistUpgrade/DistUpgradeQuirks.py:300 msgid "" "Upgrading may reduce desktop effects, and performance in games and other " "graphically intensive programs." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:300 +#: ../DistUpgrade/DistUpgradeQuirks.py:304 msgid "" "This computer is currently using the AMD 'fglrx' graphics driver. No version " "of this driver is available that works with your hardware in Ubuntu 10.04 " @@ -938,12 +938,12 @@ "Do you want to continue?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:339 -#: ../DistUpgrade/DistUpgradeQuirks.py:408 +#: ../DistUpgrade/DistUpgradeQuirks.py:343 +#: ../DistUpgrade/DistUpgradeQuirks.py:412 msgid "Sorry, no more upgrades for this system" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:340 +#: ../DistUpgrade/DistUpgradeQuirks.py:344 #, python-format msgid "" "There will not be any further Ubuntu releases for this system's 'i386' " @@ -952,11 +952,11 @@ "Updates for Ubuntu %s will continue until %s." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:355 +#: ../DistUpgrade/DistUpgradeQuirks.py:359 msgid "No ARMv6 CPU" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:356 +#: ../DistUpgrade/DistUpgradeQuirks.py:360 msgid "" "Your system uses an ARM CPU that is older than the ARMv6 architecture. All " "packages in karmic were built with optimizations requiring ARMv6 as the " @@ -964,12 +964,12 @@ "Ubuntu release with this hardware." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:376 +#: ../DistUpgrade/DistUpgradeQuirks.py:380 msgid "" "Sorry, this storage driver is not supported in kernels for newer releases" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:378 +#: ../DistUpgrade/DistUpgradeQuirks.py:382 #, python-format msgid "" "There will not be any further Ubuntu releases that provide kernel support " @@ -979,7 +979,7 @@ "driver, remove the directory %s and try again." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:409 +#: ../DistUpgrade/DistUpgradeQuirks.py:413 #, python-format msgid "" "There will not be any further Ubuntu releases for this system's POWER8 " @@ -988,11 +988,11 @@ "Updates for Ubuntu %s will continue until %s." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:427 +#: ../DistUpgrade/DistUpgradeQuirks.py:431 msgid "No init available" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:428 +#: ../DistUpgrade/DistUpgradeQuirks.py:432 msgid "" "Your system appears to be a virtualised environment without an init daemon, " "e.g. Linux-VServer. Ubuntu 10.04 LTS cannot function within this type of " @@ -1002,11 +1002,11 @@ "Are you sure you want to continue?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:469 +#: ../DistUpgrade/DistUpgradeQuirks.py:473 msgid "The Robot Operating System (ROS) is installed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:470 +#: ../DistUpgrade/DistUpgradeQuirks.py:474 msgid "" "It appears that ROS is currently installed. Each ROS release is very strict " "about the versions of Ubuntu it supports, and Ubuntu upgrades can fail if " @@ -1023,11 +1023,11 @@ "Are you sure you want to continue?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:670 +#: ../DistUpgrade/DistUpgradeQuirks.py:674 msgid "Connection to the Snap Store failed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:671 +#: ../DistUpgrade/DistUpgradeQuirks.py:675 msgid "" "You have the package lxd installed but your system is unable to reach the " "Snap Store. lxd is now provided via a snap and the release upgrade will fail " @@ -1037,11 +1037,11 @@ "may want to configure a Snap Store proxy." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:686 +#: ../DistUpgrade/DistUpgradeQuirks.py:690 msgid "Connection to Snap Store failed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:687 +#: ../DistUpgrade/DistUpgradeQuirks.py:691 msgid "" "Your system does not have a connection to the Snap Store. For the best " "upgrade experience make sure that your system can connect to api.snapcraft." @@ -1049,11 +1049,11 @@ "Do you still want to continue with the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:696 +#: ../DistUpgrade/DistUpgradeQuirks.py:700 msgid "Outdated snapd package" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:697 +#: ../DistUpgrade/DistUpgradeQuirks.py:701 msgid "" "Your system does not have the latest version of snapd. Please update the " "version of snapd on your system to improve the upgrade experience.\n" @@ -1062,36 +1062,36 @@ #. now perform direct API calls to the store, requesting size #. information for each of the snaps needing installation -#: ../DistUpgrade/DistUpgradeQuirks.py:722 +#: ../DistUpgrade/DistUpgradeQuirks.py:726 msgid "Calculating snap size requirements" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:753 +#: ../DistUpgrade/DistUpgradeQuirks.py:757 msgid "Processing snap replacements" msgstr "" #. TODO: This status should be updated, but the time of #. this change to snap switch is post-translation freeze. -#: ../DistUpgrade/DistUpgradeQuirks.py:761 +#: ../DistUpgrade/DistUpgradeQuirks.py:765 #, python-format msgid "refreshing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:765 +#: ../DistUpgrade/DistUpgradeQuirks.py:769 #, python-format msgid "removing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:768 +#: ../DistUpgrade/DistUpgradeQuirks.py:772 #, python-format msgid "installing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:797 +#: ../DistUpgrade/DistUpgradeQuirks.py:801 msgid "PAE not enabled" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:798 +#: ../DistUpgrade/DistUpgradeQuirks.py:802 msgid "" "Your system uses a CPU that does not have PAE enabled. Ubuntu only supports " "non-PAE systems up to Ubuntu 12.04. To upgrade to a later version of Ubuntu, " @@ -1099,11 +1099,11 @@ "http://help.ubuntu.com/community/EnablingPAE" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1094 +#: ../DistUpgrade/DistUpgradeQuirks.py:1098 msgid "universe component not enabled" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1095 +#: ../DistUpgrade/DistUpgradeQuirks.py:1099 #, python-format msgid "" "You have the package %s installed which is a python2 package. python2 has " @@ -1115,37 +1115,48 @@ "universe component in /etc/apt/sources.list or remove %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1207 +#: ../DistUpgrade/DistUpgradeQuirks.py:1211 msgid "Checking for installed snaps" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1654 +#: ../DistUpgrade/DistUpgradeQuirks.py:1720 msgid "Cannot upgrade this system" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1655 +#: ../DistUpgrade/DistUpgradeQuirks.py:1721 msgid "" "Due to a bug in grub, this system cannot be safely upgraded at this time.\n" "\n" "See https://launchpad.net/bugs/2039172." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1721 +#: ../DistUpgrade/DistUpgradeQuirks.py:1787 #, python-brace-format msgid "Updates for Ubuntu {from_release.version} will " msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1731 +#: ../DistUpgrade/DistUpgradeQuirks.py:1797 msgid "Sorry, cannot upgrade this system to 24.04 LTS" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1734 +#: ../DistUpgrade/DistUpgradeQuirks.py:1800 msgid "" "The Raspberry Pi kernel for Ubuntu 24.04 LTS does not support the armhf " "architecture.\n" "\n" msgstr "" +#: ../DistUpgrade/DistUpgradeQuirks.py:1928 +#, python-brace-format +msgid "Sorry, cannot upgrade this system to {version}" +msgstr "" + +#: ../DistUpgrade/DistUpgradeQuirks.py:1931 +msgid "" +"Upgrades for desktop systems running TPM FDE are not currently supported. " +"Please see https://launchpad.net/bugs/2065229 for more information." +msgstr "" + #: ../DistUpgrade/DistUpgradeMain.py:62 msgid "" "Use frontend. Currently available: \n" diff -Nru ubuntu-release-upgrader-24.04.17/po/my.po ubuntu-release-upgrader-24.04.18/po/my.po --- ubuntu-release-upgrader-24.04.17/po/my.po 2024-04-29 14:26:40.000000000 +0000 +++ ubuntu-release-upgrader-24.04.18/po/my.po 2024-05-09 19:39:20.000000000 +0000 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2024-04-29 16:03+0200\n" +"POT-Creation-Date: 2024-05-09 15:39-0400\n" "PO-Revision-Date: 2013-05-22 11:00+0000\n" "Last-Translator: Brian Murray \n" "Language-Team: Burmese \n" @@ -903,11 +903,11 @@ msgid "Media Change" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:248 +#: ../DistUpgrade/DistUpgradeQuirks.py:252 msgid "Your graphics hardware may not be fully supported in Ubuntu 14.04." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:250 +#: ../DistUpgrade/DistUpgradeQuirks.py:254 msgid "" "Running the 'unity' desktop environment is not fully supported by your " "graphics hardware. You will maybe end up in a very slow environment after " @@ -917,11 +917,11 @@ "upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:274 +#: ../DistUpgrade/DistUpgradeQuirks.py:278 msgid "Your graphics hardware may not be fully supported in Ubuntu 12.04 LTS." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:276 +#: ../DistUpgrade/DistUpgradeQuirks.py:280 msgid "" "The support in Ubuntu 12.04 LTS for your Intel graphics hardware is limited " "and you may encounter problems after the upgrade. For more information see " @@ -929,13 +929,13 @@ "continue with the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:296 +#: ../DistUpgrade/DistUpgradeQuirks.py:300 msgid "" "Upgrading may reduce desktop effects, and performance in games and other " "graphically intensive programs." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:300 +#: ../DistUpgrade/DistUpgradeQuirks.py:304 msgid "" "This computer is currently using the AMD 'fglrx' graphics driver. No version " "of this driver is available that works with your hardware in Ubuntu 10.04 " @@ -944,12 +944,12 @@ "Do you want to continue?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:339 -#: ../DistUpgrade/DistUpgradeQuirks.py:408 +#: ../DistUpgrade/DistUpgradeQuirks.py:343 +#: ../DistUpgrade/DistUpgradeQuirks.py:412 msgid "Sorry, no more upgrades for this system" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:340 +#: ../DistUpgrade/DistUpgradeQuirks.py:344 #, python-format msgid "" "There will not be any further Ubuntu releases for this system's 'i386' " @@ -958,11 +958,11 @@ "Updates for Ubuntu %s will continue until %s." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:355 +#: ../DistUpgrade/DistUpgradeQuirks.py:359 msgid "No ARMv6 CPU" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:356 +#: ../DistUpgrade/DistUpgradeQuirks.py:360 msgid "" "Your system uses an ARM CPU that is older than the ARMv6 architecture. All " "packages in karmic were built with optimizations requiring ARMv6 as the " @@ -970,12 +970,12 @@ "Ubuntu release with this hardware." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:376 +#: ../DistUpgrade/DistUpgradeQuirks.py:380 msgid "" "Sorry, this storage driver is not supported in kernels for newer releases" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:378 +#: ../DistUpgrade/DistUpgradeQuirks.py:382 #, python-format msgid "" "There will not be any further Ubuntu releases that provide kernel support " @@ -985,7 +985,7 @@ "driver, remove the directory %s and try again." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:409 +#: ../DistUpgrade/DistUpgradeQuirks.py:413 #, python-format msgid "" "There will not be any further Ubuntu releases for this system's POWER8 " @@ -994,11 +994,11 @@ "Updates for Ubuntu %s will continue until %s." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:427 +#: ../DistUpgrade/DistUpgradeQuirks.py:431 msgid "No init available" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:428 +#: ../DistUpgrade/DistUpgradeQuirks.py:432 msgid "" "Your system appears to be a virtualised environment without an init daemon, " "e.g. Linux-VServer. Ubuntu 10.04 LTS cannot function within this type of " @@ -1008,11 +1008,11 @@ "Are you sure you want to continue?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:469 +#: ../DistUpgrade/DistUpgradeQuirks.py:473 msgid "The Robot Operating System (ROS) is installed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:470 +#: ../DistUpgrade/DistUpgradeQuirks.py:474 msgid "" "It appears that ROS is currently installed. Each ROS release is very strict " "about the versions of Ubuntu it supports, and Ubuntu upgrades can fail if " @@ -1029,11 +1029,11 @@ "Are you sure you want to continue?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:670 +#: ../DistUpgrade/DistUpgradeQuirks.py:674 msgid "Connection to the Snap Store failed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:671 +#: ../DistUpgrade/DistUpgradeQuirks.py:675 msgid "" "You have the package lxd installed but your system is unable to reach the " "Snap Store. lxd is now provided via a snap and the release upgrade will fail " @@ -1043,11 +1043,11 @@ "may want to configure a Snap Store proxy." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:686 +#: ../DistUpgrade/DistUpgradeQuirks.py:690 msgid "Connection to Snap Store failed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:687 +#: ../DistUpgrade/DistUpgradeQuirks.py:691 msgid "" "Your system does not have a connection to the Snap Store. For the best " "upgrade experience make sure that your system can connect to api.snapcraft." @@ -1055,11 +1055,11 @@ "Do you still want to continue with the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:696 +#: ../DistUpgrade/DistUpgradeQuirks.py:700 msgid "Outdated snapd package" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:697 +#: ../DistUpgrade/DistUpgradeQuirks.py:701 msgid "" "Your system does not have the latest version of snapd. Please update the " "version of snapd on your system to improve the upgrade experience.\n" @@ -1068,36 +1068,36 @@ #. now perform direct API calls to the store, requesting size #. information for each of the snaps needing installation -#: ../DistUpgrade/DistUpgradeQuirks.py:722 +#: ../DistUpgrade/DistUpgradeQuirks.py:726 msgid "Calculating snap size requirements" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:753 +#: ../DistUpgrade/DistUpgradeQuirks.py:757 msgid "Processing snap replacements" msgstr "" #. TODO: This status should be updated, but the time of #. this change to snap switch is post-translation freeze. -#: ../DistUpgrade/DistUpgradeQuirks.py:761 +#: ../DistUpgrade/DistUpgradeQuirks.py:765 #, python-format msgid "refreshing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:765 +#: ../DistUpgrade/DistUpgradeQuirks.py:769 #, python-format msgid "removing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:768 +#: ../DistUpgrade/DistUpgradeQuirks.py:772 #, python-format msgid "installing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:797 +#: ../DistUpgrade/DistUpgradeQuirks.py:801 msgid "PAE not enabled" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:798 +#: ../DistUpgrade/DistUpgradeQuirks.py:802 msgid "" "Your system uses a CPU that does not have PAE enabled. Ubuntu only supports " "non-PAE systems up to Ubuntu 12.04. To upgrade to a later version of Ubuntu, " @@ -1105,11 +1105,11 @@ "http://help.ubuntu.com/community/EnablingPAE" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1094 +#: ../DistUpgrade/DistUpgradeQuirks.py:1098 msgid "universe component not enabled" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1095 +#: ../DistUpgrade/DistUpgradeQuirks.py:1099 #, python-format msgid "" "You have the package %s installed which is a python2 package. python2 has " @@ -1121,39 +1121,50 @@ "universe component in /etc/apt/sources.list or remove %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1207 +#: ../DistUpgrade/DistUpgradeQuirks.py:1211 msgid "Checking for installed snaps" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1654 +#: ../DistUpgrade/DistUpgradeQuirks.py:1720 #, fuzzy msgid "Cannot upgrade this system" msgstr "Upgrade မတင်နိုင်ပါ။" -#: ../DistUpgrade/DistUpgradeQuirks.py:1655 +#: ../DistUpgrade/DistUpgradeQuirks.py:1721 msgid "" "Due to a bug in grub, this system cannot be safely upgraded at this time.\n" "\n" "See https://launchpad.net/bugs/2039172." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1721 +#: ../DistUpgrade/DistUpgradeQuirks.py:1787 #, python-brace-format msgid "Updates for Ubuntu {from_release.version} will " msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1731 +#: ../DistUpgrade/DistUpgradeQuirks.py:1797 #, fuzzy msgid "Sorry, cannot upgrade this system to 24.04 LTS" msgstr "Upgrade မတင်နိုင်ပါ။" -#: ../DistUpgrade/DistUpgradeQuirks.py:1734 +#: ../DistUpgrade/DistUpgradeQuirks.py:1800 msgid "" "The Raspberry Pi kernel for Ubuntu 24.04 LTS does not support the armhf " "architecture.\n" "\n" msgstr "" +#: ../DistUpgrade/DistUpgradeQuirks.py:1928 +#, fuzzy, python-brace-format +msgid "Sorry, cannot upgrade this system to {version}" +msgstr "Upgrade မတင်နိုင်ပါ။" + +#: ../DistUpgrade/DistUpgradeQuirks.py:1931 +msgid "" +"Upgrades for desktop systems running TPM FDE are not currently supported. " +"Please see https://launchpad.net/bugs/2065229 for more information." +msgstr "" + #: ../DistUpgrade/DistUpgradeMain.py:62 msgid "" "Use frontend. Currently available: \n" diff -Nru ubuntu-release-upgrader-24.04.17/po/nb.po ubuntu-release-upgrader-24.04.18/po/nb.po --- ubuntu-release-upgrader-24.04.17/po/nb.po 2024-04-29 14:26:40.000000000 +0000 +++ ubuntu-release-upgrader-24.04.18/po/nb.po 2024-05-09 19:39:20.000000000 +0000 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: nb\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2024-04-29 16:03+0200\n" +"POT-Creation-Date: 2024-05-09 15:39-0400\n" "PO-Revision-Date: 2019-06-18 17:54+0000\n" "Last-Translator: Brian Murray \n" "Language-Team: Norwegian Bokmal \n" @@ -1046,12 +1046,12 @@ msgid "Media Change" msgstr "Mediebytte" -#: ../DistUpgrade/DistUpgradeQuirks.py:248 +#: ../DistUpgrade/DistUpgradeQuirks.py:252 msgid "Your graphics hardware may not be fully supported in Ubuntu 14.04." msgstr "" "Det er ikke sikkert at grafikkortet ditt støttes optimalt i Ubuntu 14.04." -#: ../DistUpgrade/DistUpgradeQuirks.py:250 +#: ../DistUpgrade/DistUpgradeQuirks.py:254 msgid "" "Running the 'unity' desktop environment is not fully supported by your " "graphics hardware. You will maybe end up in a very slow environment after " @@ -1066,12 +1066,12 @@ "videre. Se https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForUnity3D for " "mer informasjon. Vil du fortsette med å oppgradere likevel?" -#: ../DistUpgrade/DistUpgradeQuirks.py:274 +#: ../DistUpgrade/DistUpgradeQuirks.py:278 msgid "Your graphics hardware may not be fully supported in Ubuntu 12.04 LTS." msgstr "" "Det er ikke sikkert at grafikkortet ditt støttes optimalt i Ubuntu 12.04 LTS." -#: ../DistUpgrade/DistUpgradeQuirks.py:276 +#: ../DistUpgrade/DistUpgradeQuirks.py:280 msgid "" "The support in Ubuntu 12.04 LTS for your Intel graphics hardware is limited " "and you may encounter problems after the upgrade. For more information see " @@ -1083,7 +1083,7 @@ "UpdateManagerWarningForI8xx for mer informasjon. Vil fortsette med å " "oppgradere likevel?" -#: ../DistUpgrade/DistUpgradeQuirks.py:296 +#: ../DistUpgrade/DistUpgradeQuirks.py:300 msgid "" "Upgrading may reduce desktop effects, and performance in games and other " "graphically intensive programs." @@ -1091,7 +1091,7 @@ "Å oppgradere kan gå på bekostning av skrivebordseffekter, samt ytelse i " "spill og andre grafikkintensive programmer." -#: ../DistUpgrade/DistUpgradeQuirks.py:300 +#: ../DistUpgrade/DistUpgradeQuirks.py:304 msgid "" "This computer is currently using the AMD 'fglrx' graphics driver. No version " "of this driver is available that works with your hardware in Ubuntu 10.04 " @@ -1105,12 +1105,12 @@ "\n" "Vil du fortsette?" -#: ../DistUpgrade/DistUpgradeQuirks.py:339 -#: ../DistUpgrade/DistUpgradeQuirks.py:408 +#: ../DistUpgrade/DistUpgradeQuirks.py:343 +#: ../DistUpgrade/DistUpgradeQuirks.py:412 msgid "Sorry, no more upgrades for this system" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:340 +#: ../DistUpgrade/DistUpgradeQuirks.py:344 #, python-format msgid "" "There will not be any further Ubuntu releases for this system's 'i386' " @@ -1119,11 +1119,11 @@ "Updates for Ubuntu %s will continue until %s." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:355 +#: ../DistUpgrade/DistUpgradeQuirks.py:359 msgid "No ARMv6 CPU" msgstr "Ingen ARMv6-prosessor" -#: ../DistUpgrade/DistUpgradeQuirks.py:356 +#: ../DistUpgrade/DistUpgradeQuirks.py:360 msgid "" "Your system uses an ARM CPU that is older than the ARMv6 architecture. All " "packages in karmic were built with optimizations requiring ARMv6 as the " @@ -1135,12 +1135,12 @@ "Det er ikke mulig å oppgradere systemet ditt til en ny Ubuntu-versjon med " "denne maskinvaren." -#: ../DistUpgrade/DistUpgradeQuirks.py:376 +#: ../DistUpgrade/DistUpgradeQuirks.py:380 msgid "" "Sorry, this storage driver is not supported in kernels for newer releases" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:378 +#: ../DistUpgrade/DistUpgradeQuirks.py:382 #, python-format msgid "" "There will not be any further Ubuntu releases that provide kernel support " @@ -1150,7 +1150,7 @@ "driver, remove the directory %s and try again." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:409 +#: ../DistUpgrade/DistUpgradeQuirks.py:413 #, python-format msgid "" "There will not be any further Ubuntu releases for this system's POWER8 " @@ -1159,11 +1159,11 @@ "Updates for Ubuntu %s will continue until %s." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:427 +#: ../DistUpgrade/DistUpgradeQuirks.py:431 msgid "No init available" msgstr "Ingen oppstartsprogrammer (init) tilgjengelig" -#: ../DistUpgrade/DistUpgradeQuirks.py:428 +#: ../DistUpgrade/DistUpgradeQuirks.py:432 msgid "" "Your system appears to be a virtualised environment without an init daemon, " "e.g. Linux-VServer. Ubuntu 10.04 LTS cannot function within this type of " @@ -1179,11 +1179,11 @@ "\n" "Vil du fortsette likevel?" -#: ../DistUpgrade/DistUpgradeQuirks.py:469 +#: ../DistUpgrade/DistUpgradeQuirks.py:473 msgid "The Robot Operating System (ROS) is installed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:470 +#: ../DistUpgrade/DistUpgradeQuirks.py:474 msgid "" "It appears that ROS is currently installed. Each ROS release is very strict " "about the versions of Ubuntu it supports, and Ubuntu upgrades can fail if " @@ -1200,11 +1200,11 @@ "Are you sure you want to continue?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:670 +#: ../DistUpgrade/DistUpgradeQuirks.py:674 msgid "Connection to the Snap Store failed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:671 +#: ../DistUpgrade/DistUpgradeQuirks.py:675 msgid "" "You have the package lxd installed but your system is unable to reach the " "Snap Store. lxd is now provided via a snap and the release upgrade will fail " @@ -1214,11 +1214,11 @@ "may want to configure a Snap Store proxy." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:686 +#: ../DistUpgrade/DistUpgradeQuirks.py:690 msgid "Connection to Snap Store failed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:687 +#: ../DistUpgrade/DistUpgradeQuirks.py:691 msgid "" "Your system does not have a connection to the Snap Store. For the best " "upgrade experience make sure that your system can connect to api.snapcraft." @@ -1226,11 +1226,11 @@ "Do you still want to continue with the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:696 +#: ../DistUpgrade/DistUpgradeQuirks.py:700 msgid "Outdated snapd package" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:697 +#: ../DistUpgrade/DistUpgradeQuirks.py:701 msgid "" "Your system does not have the latest version of snapd. Please update the " "version of snapd on your system to improve the upgrade experience.\n" @@ -1239,36 +1239,36 @@ #. now perform direct API calls to the store, requesting size #. information for each of the snaps needing installation -#: ../DistUpgrade/DistUpgradeQuirks.py:722 +#: ../DistUpgrade/DistUpgradeQuirks.py:726 msgid "Calculating snap size requirements" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:753 +#: ../DistUpgrade/DistUpgradeQuirks.py:757 msgid "Processing snap replacements" msgstr "" #. TODO: This status should be updated, but the time of #. this change to snap switch is post-translation freeze. -#: ../DistUpgrade/DistUpgradeQuirks.py:761 +#: ../DistUpgrade/DistUpgradeQuirks.py:765 #, python-format msgid "refreshing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:765 +#: ../DistUpgrade/DistUpgradeQuirks.py:769 #, python-format msgid "removing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:768 +#: ../DistUpgrade/DistUpgradeQuirks.py:772 #, python-format msgid "installing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:797 +#: ../DistUpgrade/DistUpgradeQuirks.py:801 msgid "PAE not enabled" msgstr "PAE er ikke aktivert" -#: ../DistUpgrade/DistUpgradeQuirks.py:798 +#: ../DistUpgrade/DistUpgradeQuirks.py:802 msgid "" "Your system uses a CPU that does not have PAE enabled. Ubuntu only supports " "non-PAE systems up to Ubuntu 12.04. To upgrade to a later version of Ubuntu, " @@ -1280,11 +1280,11 @@ "til en senere versjon av Ubuntu. Se denne nettsiden for mer informasjon:\n" "http://help.ubuntu.com/community/EnablingPAE" -#: ../DistUpgrade/DistUpgradeQuirks.py:1094 +#: ../DistUpgrade/DistUpgradeQuirks.py:1098 msgid "universe component not enabled" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1095 +#: ../DistUpgrade/DistUpgradeQuirks.py:1099 #, python-format msgid "" "You have the package %s installed which is a python2 package. python2 has " @@ -1296,39 +1296,50 @@ "universe component in /etc/apt/sources.list or remove %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1207 +#: ../DistUpgrade/DistUpgradeQuirks.py:1211 msgid "Checking for installed snaps" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1654 +#: ../DistUpgrade/DistUpgradeQuirks.py:1720 #, fuzzy msgid "Cannot upgrade this system" msgstr "Klarte ikke å oppgradere" -#: ../DistUpgrade/DistUpgradeQuirks.py:1655 +#: ../DistUpgrade/DistUpgradeQuirks.py:1721 msgid "" "Due to a bug in grub, this system cannot be safely upgraded at this time.\n" "\n" "See https://launchpad.net/bugs/2039172." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1721 +#: ../DistUpgrade/DistUpgradeQuirks.py:1787 #, python-brace-format msgid "Updates for Ubuntu {from_release.version} will " msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1731 +#: ../DistUpgrade/DistUpgradeQuirks.py:1797 #, fuzzy msgid "Sorry, cannot upgrade this system to 24.04 LTS" msgstr "Klarte ikke å oppgradere" -#: ../DistUpgrade/DistUpgradeQuirks.py:1734 +#: ../DistUpgrade/DistUpgradeQuirks.py:1800 msgid "" "The Raspberry Pi kernel for Ubuntu 24.04 LTS does not support the armhf " "architecture.\n" "\n" msgstr "" +#: ../DistUpgrade/DistUpgradeQuirks.py:1928 +#, fuzzy, python-brace-format +msgid "Sorry, cannot upgrade this system to {version}" +msgstr "Klarte ikke å oppgradere" + +#: ../DistUpgrade/DistUpgradeQuirks.py:1931 +msgid "" +"Upgrades for desktop systems running TPM FDE are not currently supported. " +"Please see https://launchpad.net/bugs/2065229 for more information." +msgstr "" + #: ../DistUpgrade/DistUpgradeMain.py:62 msgid "" "Use frontend. Currently available: \n" diff -Nru ubuntu-release-upgrader-24.04.17/po/nds.po ubuntu-release-upgrader-24.04.18/po/nds.po --- ubuntu-release-upgrader-24.04.17/po/nds.po 2024-04-29 14:26:40.000000000 +0000 +++ ubuntu-release-upgrader-24.04.18/po/nds.po 2024-05-09 19:39:20.000000000 +0000 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2024-04-29 16:03+0200\n" +"POT-Creation-Date: 2024-05-09 15:39-0400\n" "PO-Revision-Date: 2013-05-22 11:00+0000\n" "Last-Translator: ncfiedler \n" "Language-Team: German, Low \n" @@ -908,11 +908,11 @@ msgid "Media Change" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:248 +#: ../DistUpgrade/DistUpgradeQuirks.py:252 msgid "Your graphics hardware may not be fully supported in Ubuntu 14.04." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:250 +#: ../DistUpgrade/DistUpgradeQuirks.py:254 msgid "" "Running the 'unity' desktop environment is not fully supported by your " "graphics hardware. You will maybe end up in a very slow environment after " @@ -922,11 +922,11 @@ "upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:274 +#: ../DistUpgrade/DistUpgradeQuirks.py:278 msgid "Your graphics hardware may not be fully supported in Ubuntu 12.04 LTS." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:276 +#: ../DistUpgrade/DistUpgradeQuirks.py:280 msgid "" "The support in Ubuntu 12.04 LTS for your Intel graphics hardware is limited " "and you may encounter problems after the upgrade. For more information see " @@ -934,13 +934,13 @@ "continue with the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:296 +#: ../DistUpgrade/DistUpgradeQuirks.py:300 msgid "" "Upgrading may reduce desktop effects, and performance in games and other " "graphically intensive programs." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:300 +#: ../DistUpgrade/DistUpgradeQuirks.py:304 msgid "" "This computer is currently using the AMD 'fglrx' graphics driver. No version " "of this driver is available that works with your hardware in Ubuntu 10.04 " @@ -949,12 +949,12 @@ "Do you want to continue?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:339 -#: ../DistUpgrade/DistUpgradeQuirks.py:408 +#: ../DistUpgrade/DistUpgradeQuirks.py:343 +#: ../DistUpgrade/DistUpgradeQuirks.py:412 msgid "Sorry, no more upgrades for this system" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:340 +#: ../DistUpgrade/DistUpgradeQuirks.py:344 #, python-format msgid "" "There will not be any further Ubuntu releases for this system's 'i386' " @@ -963,11 +963,11 @@ "Updates for Ubuntu %s will continue until %s." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:355 +#: ../DistUpgrade/DistUpgradeQuirks.py:359 msgid "No ARMv6 CPU" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:356 +#: ../DistUpgrade/DistUpgradeQuirks.py:360 msgid "" "Your system uses an ARM CPU that is older than the ARMv6 architecture. All " "packages in karmic were built with optimizations requiring ARMv6 as the " @@ -975,12 +975,12 @@ "Ubuntu release with this hardware." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:376 +#: ../DistUpgrade/DistUpgradeQuirks.py:380 msgid "" "Sorry, this storage driver is not supported in kernels for newer releases" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:378 +#: ../DistUpgrade/DistUpgradeQuirks.py:382 #, python-format msgid "" "There will not be any further Ubuntu releases that provide kernel support " @@ -990,7 +990,7 @@ "driver, remove the directory %s and try again." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:409 +#: ../DistUpgrade/DistUpgradeQuirks.py:413 #, python-format msgid "" "There will not be any further Ubuntu releases for this system's POWER8 " @@ -999,11 +999,11 @@ "Updates for Ubuntu %s will continue until %s." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:427 +#: ../DistUpgrade/DistUpgradeQuirks.py:431 msgid "No init available" msgstr "Keen init verföögbar" -#: ../DistUpgrade/DistUpgradeQuirks.py:428 +#: ../DistUpgrade/DistUpgradeQuirks.py:432 msgid "" "Your system appears to be a virtualised environment without an init daemon, " "e.g. Linux-VServer. Ubuntu 10.04 LTS cannot function within this type of " @@ -1013,11 +1013,11 @@ "Are you sure you want to continue?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:469 +#: ../DistUpgrade/DistUpgradeQuirks.py:473 msgid "The Robot Operating System (ROS) is installed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:470 +#: ../DistUpgrade/DistUpgradeQuirks.py:474 msgid "" "It appears that ROS is currently installed. Each ROS release is very strict " "about the versions of Ubuntu it supports, and Ubuntu upgrades can fail if " @@ -1034,11 +1034,11 @@ "Are you sure you want to continue?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:670 +#: ../DistUpgrade/DistUpgradeQuirks.py:674 msgid "Connection to the Snap Store failed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:671 +#: ../DistUpgrade/DistUpgradeQuirks.py:675 msgid "" "You have the package lxd installed but your system is unable to reach the " "Snap Store. lxd is now provided via a snap and the release upgrade will fail " @@ -1048,11 +1048,11 @@ "may want to configure a Snap Store proxy." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:686 +#: ../DistUpgrade/DistUpgradeQuirks.py:690 msgid "Connection to Snap Store failed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:687 +#: ../DistUpgrade/DistUpgradeQuirks.py:691 msgid "" "Your system does not have a connection to the Snap Store. For the best " "upgrade experience make sure that your system can connect to api.snapcraft." @@ -1060,11 +1060,11 @@ "Do you still want to continue with the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:696 +#: ../DistUpgrade/DistUpgradeQuirks.py:700 msgid "Outdated snapd package" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:697 +#: ../DistUpgrade/DistUpgradeQuirks.py:701 msgid "" "Your system does not have the latest version of snapd. Please update the " "version of snapd on your system to improve the upgrade experience.\n" @@ -1073,36 +1073,36 @@ #. now perform direct API calls to the store, requesting size #. information for each of the snaps needing installation -#: ../DistUpgrade/DistUpgradeQuirks.py:722 +#: ../DistUpgrade/DistUpgradeQuirks.py:726 msgid "Calculating snap size requirements" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:753 +#: ../DistUpgrade/DistUpgradeQuirks.py:757 msgid "Processing snap replacements" msgstr "" #. TODO: This status should be updated, but the time of #. this change to snap switch is post-translation freeze. -#: ../DistUpgrade/DistUpgradeQuirks.py:761 +#: ../DistUpgrade/DistUpgradeQuirks.py:765 #, python-format msgid "refreshing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:765 +#: ../DistUpgrade/DistUpgradeQuirks.py:769 #, python-format msgid "removing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:768 +#: ../DistUpgrade/DistUpgradeQuirks.py:772 #, python-format msgid "installing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:797 +#: ../DistUpgrade/DistUpgradeQuirks.py:801 msgid "PAE not enabled" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:798 +#: ../DistUpgrade/DistUpgradeQuirks.py:802 msgid "" "Your system uses a CPU that does not have PAE enabled. Ubuntu only supports " "non-PAE systems up to Ubuntu 12.04. To upgrade to a later version of Ubuntu, " @@ -1110,11 +1110,11 @@ "http://help.ubuntu.com/community/EnablingPAE" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1094 +#: ../DistUpgrade/DistUpgradeQuirks.py:1098 msgid "universe component not enabled" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1095 +#: ../DistUpgrade/DistUpgradeQuirks.py:1099 #, python-format msgid "" "You have the package %s installed which is a python2 package. python2 has " @@ -1126,39 +1126,50 @@ "universe component in /etc/apt/sources.list or remove %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1207 +#: ../DistUpgrade/DistUpgradeQuirks.py:1211 msgid "Checking for installed snaps" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1654 +#: ../DistUpgrade/DistUpgradeQuirks.py:1720 #, fuzzy msgid "Cannot upgrade this system" msgstr "Upgrade kann nicht durchgeführt werden." -#: ../DistUpgrade/DistUpgradeQuirks.py:1655 +#: ../DistUpgrade/DistUpgradeQuirks.py:1721 msgid "" "Due to a bug in grub, this system cannot be safely upgraded at this time.\n" "\n" "See https://launchpad.net/bugs/2039172." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1721 +#: ../DistUpgrade/DistUpgradeQuirks.py:1787 #, python-brace-format msgid "Updates for Ubuntu {from_release.version} will " msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1731 +#: ../DistUpgrade/DistUpgradeQuirks.py:1797 #, fuzzy msgid "Sorry, cannot upgrade this system to 24.04 LTS" msgstr "Upgrade kann nicht durchgeführt werden." -#: ../DistUpgrade/DistUpgradeQuirks.py:1734 +#: ../DistUpgrade/DistUpgradeQuirks.py:1800 msgid "" "The Raspberry Pi kernel for Ubuntu 24.04 LTS does not support the armhf " "architecture.\n" "\n" msgstr "" +#: ../DistUpgrade/DistUpgradeQuirks.py:1928 +#, fuzzy, python-brace-format +msgid "Sorry, cannot upgrade this system to {version}" +msgstr "Upgrade kann nicht durchgeführt werden." + +#: ../DistUpgrade/DistUpgradeQuirks.py:1931 +msgid "" +"Upgrades for desktop systems running TPM FDE are not currently supported. " +"Please see https://launchpad.net/bugs/2065229 for more information." +msgstr "" + #: ../DistUpgrade/DistUpgradeMain.py:62 msgid "" "Use frontend. Currently available: \n" diff -Nru ubuntu-release-upgrader-24.04.17/po/ne.po ubuntu-release-upgrader-24.04.18/po/ne.po --- ubuntu-release-upgrader-24.04.17/po/ne.po 2024-04-29 14:26:40.000000000 +0000 +++ ubuntu-release-upgrader-24.04.18/po/ne.po 2024-05-09 19:39:20.000000000 +0000 @@ -9,7 +9,7 @@ msgstr "" "Project-Id-Version: update-manager.HEAD\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2024-04-29 16:03+0200\n" +"POT-Creation-Date: 2024-05-09 15:39-0400\n" "PO-Revision-Date: 2013-05-22 11:00+0000\n" "Last-Translator: Brian Murray \n" "Language-Team: Nepali \n" @@ -913,11 +913,11 @@ msgid "Media Change" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:248 +#: ../DistUpgrade/DistUpgradeQuirks.py:252 msgid "Your graphics hardware may not be fully supported in Ubuntu 14.04." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:250 +#: ../DistUpgrade/DistUpgradeQuirks.py:254 msgid "" "Running the 'unity' desktop environment is not fully supported by your " "graphics hardware. You will maybe end up in a very slow environment after " @@ -927,11 +927,11 @@ "upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:274 +#: ../DistUpgrade/DistUpgradeQuirks.py:278 msgid "Your graphics hardware may not be fully supported in Ubuntu 12.04 LTS." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:276 +#: ../DistUpgrade/DistUpgradeQuirks.py:280 msgid "" "The support in Ubuntu 12.04 LTS for your Intel graphics hardware is limited " "and you may encounter problems after the upgrade. For more information see " @@ -939,13 +939,13 @@ "continue with the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:296 +#: ../DistUpgrade/DistUpgradeQuirks.py:300 msgid "" "Upgrading may reduce desktop effects, and performance in games and other " "graphically intensive programs." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:300 +#: ../DistUpgrade/DistUpgradeQuirks.py:304 msgid "" "This computer is currently using the AMD 'fglrx' graphics driver. No version " "of this driver is available that works with your hardware in Ubuntu 10.04 " @@ -954,12 +954,12 @@ "Do you want to continue?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:339 -#: ../DistUpgrade/DistUpgradeQuirks.py:408 +#: ../DistUpgrade/DistUpgradeQuirks.py:343 +#: ../DistUpgrade/DistUpgradeQuirks.py:412 msgid "Sorry, no more upgrades for this system" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:340 +#: ../DistUpgrade/DistUpgradeQuirks.py:344 #, python-format msgid "" "There will not be any further Ubuntu releases for this system's 'i386' " @@ -968,11 +968,11 @@ "Updates for Ubuntu %s will continue until %s." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:355 +#: ../DistUpgrade/DistUpgradeQuirks.py:359 msgid "No ARMv6 CPU" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:356 +#: ../DistUpgrade/DistUpgradeQuirks.py:360 msgid "" "Your system uses an ARM CPU that is older than the ARMv6 architecture. All " "packages in karmic were built with optimizations requiring ARMv6 as the " @@ -980,12 +980,12 @@ "Ubuntu release with this hardware." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:376 +#: ../DistUpgrade/DistUpgradeQuirks.py:380 msgid "" "Sorry, this storage driver is not supported in kernels for newer releases" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:378 +#: ../DistUpgrade/DistUpgradeQuirks.py:382 #, python-format msgid "" "There will not be any further Ubuntu releases that provide kernel support " @@ -995,7 +995,7 @@ "driver, remove the directory %s and try again." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:409 +#: ../DistUpgrade/DistUpgradeQuirks.py:413 #, python-format msgid "" "There will not be any further Ubuntu releases for this system's POWER8 " @@ -1004,11 +1004,11 @@ "Updates for Ubuntu %s will continue until %s." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:427 +#: ../DistUpgrade/DistUpgradeQuirks.py:431 msgid "No init available" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:428 +#: ../DistUpgrade/DistUpgradeQuirks.py:432 msgid "" "Your system appears to be a virtualised environment without an init daemon, " "e.g. Linux-VServer. Ubuntu 10.04 LTS cannot function within this type of " @@ -1018,11 +1018,11 @@ "Are you sure you want to continue?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:469 +#: ../DistUpgrade/DistUpgradeQuirks.py:473 msgid "The Robot Operating System (ROS) is installed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:470 +#: ../DistUpgrade/DistUpgradeQuirks.py:474 msgid "" "It appears that ROS is currently installed. Each ROS release is very strict " "about the versions of Ubuntu it supports, and Ubuntu upgrades can fail if " @@ -1039,11 +1039,11 @@ "Are you sure you want to continue?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:670 +#: ../DistUpgrade/DistUpgradeQuirks.py:674 msgid "Connection to the Snap Store failed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:671 +#: ../DistUpgrade/DistUpgradeQuirks.py:675 msgid "" "You have the package lxd installed but your system is unable to reach the " "Snap Store. lxd is now provided via a snap and the release upgrade will fail " @@ -1053,11 +1053,11 @@ "may want to configure a Snap Store proxy." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:686 +#: ../DistUpgrade/DistUpgradeQuirks.py:690 msgid "Connection to Snap Store failed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:687 +#: ../DistUpgrade/DistUpgradeQuirks.py:691 msgid "" "Your system does not have a connection to the Snap Store. For the best " "upgrade experience make sure that your system can connect to api.snapcraft." @@ -1065,11 +1065,11 @@ "Do you still want to continue with the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:696 +#: ../DistUpgrade/DistUpgradeQuirks.py:700 msgid "Outdated snapd package" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:697 +#: ../DistUpgrade/DistUpgradeQuirks.py:701 msgid "" "Your system does not have the latest version of snapd. Please update the " "version of snapd on your system to improve the upgrade experience.\n" @@ -1078,36 +1078,36 @@ #. now perform direct API calls to the store, requesting size #. information for each of the snaps needing installation -#: ../DistUpgrade/DistUpgradeQuirks.py:722 +#: ../DistUpgrade/DistUpgradeQuirks.py:726 msgid "Calculating snap size requirements" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:753 +#: ../DistUpgrade/DistUpgradeQuirks.py:757 msgid "Processing snap replacements" msgstr "" #. TODO: This status should be updated, but the time of #. this change to snap switch is post-translation freeze. -#: ../DistUpgrade/DistUpgradeQuirks.py:761 +#: ../DistUpgrade/DistUpgradeQuirks.py:765 #, python-format msgid "refreshing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:765 +#: ../DistUpgrade/DistUpgradeQuirks.py:769 #, python-format msgid "removing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:768 +#: ../DistUpgrade/DistUpgradeQuirks.py:772 #, python-format msgid "installing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:797 +#: ../DistUpgrade/DistUpgradeQuirks.py:801 msgid "PAE not enabled" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:798 +#: ../DistUpgrade/DistUpgradeQuirks.py:802 msgid "" "Your system uses a CPU that does not have PAE enabled. Ubuntu only supports " "non-PAE systems up to Ubuntu 12.04. To upgrade to a later version of Ubuntu, " @@ -1115,11 +1115,11 @@ "http://help.ubuntu.com/community/EnablingPAE" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1094 +#: ../DistUpgrade/DistUpgradeQuirks.py:1098 msgid "universe component not enabled" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1095 +#: ../DistUpgrade/DistUpgradeQuirks.py:1099 #, python-format msgid "" "You have the package %s installed which is a python2 package. python2 has " @@ -1131,39 +1131,50 @@ "universe component in /etc/apt/sources.list or remove %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1207 +#: ../DistUpgrade/DistUpgradeQuirks.py:1211 msgid "Checking for installed snaps" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1654 +#: ../DistUpgrade/DistUpgradeQuirks.py:1720 #, fuzzy msgid "Cannot upgrade this system" msgstr "स्तरोन्नत गर्न सकिएन" -#: ../DistUpgrade/DistUpgradeQuirks.py:1655 +#: ../DistUpgrade/DistUpgradeQuirks.py:1721 msgid "" "Due to a bug in grub, this system cannot be safely upgraded at this time.\n" "\n" "See https://launchpad.net/bugs/2039172." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1721 +#: ../DistUpgrade/DistUpgradeQuirks.py:1787 #, python-brace-format msgid "Updates for Ubuntu {from_release.version} will " msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1731 +#: ../DistUpgrade/DistUpgradeQuirks.py:1797 #, fuzzy msgid "Sorry, cannot upgrade this system to 24.04 LTS" msgstr "स्तरोन्नत गर्न सकिएन" -#: ../DistUpgrade/DistUpgradeQuirks.py:1734 +#: ../DistUpgrade/DistUpgradeQuirks.py:1800 msgid "" "The Raspberry Pi kernel for Ubuntu 24.04 LTS does not support the armhf " "architecture.\n" "\n" msgstr "" +#: ../DistUpgrade/DistUpgradeQuirks.py:1928 +#, fuzzy, python-brace-format +msgid "Sorry, cannot upgrade this system to {version}" +msgstr "स्तरोन्नत गर्न सकिएन" + +#: ../DistUpgrade/DistUpgradeQuirks.py:1931 +msgid "" +"Upgrades for desktop systems running TPM FDE are not currently supported. " +"Please see https://launchpad.net/bugs/2065229 for more information." +msgstr "" + #: ../DistUpgrade/DistUpgradeMain.py:62 msgid "" "Use frontend. Currently available: \n" diff -Nru ubuntu-release-upgrader-24.04.17/po/nl.po ubuntu-release-upgrader-24.04.18/po/nl.po --- ubuntu-release-upgrader-24.04.17/po/nl.po 2024-04-29 14:26:40.000000000 +0000 +++ ubuntu-release-upgrader-24.04.18/po/nl.po 2024-05-09 19:39:20.000000000 +0000 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: update-manager HEAD\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2024-04-29 16:03+0200\n" +"POT-Creation-Date: 2024-05-09 15:39-0400\n" "PO-Revision-Date: 2019-06-18 17:52+0000\n" "Last-Translator: Brian Murray \n" "Language-Team: Nederlands \n" @@ -1091,12 +1091,12 @@ msgid "Media Change" msgstr "Medium wisselen" -#: ../DistUpgrade/DistUpgradeQuirks.py:248 +#: ../DistUpgrade/DistUpgradeQuirks.py:252 msgid "Your graphics hardware may not be fully supported in Ubuntu 14.04." msgstr "" "Mogelijk wordt uw grafische kaart niet volledig ondersteund in Ubuntu 14.04." -#: ../DistUpgrade/DistUpgradeQuirks.py:250 +#: ../DistUpgrade/DistUpgradeQuirks.py:254 msgid "" "Running the 'unity' desktop environment is not fully supported by your " "graphics hardware. You will maybe end up in a very slow environment after " @@ -1111,13 +1111,13 @@ "informatie vindt u op https://wiki.ubuntu.com/X/Bugs/" "UpdateManagerWarningForUnity3D Wilt u toch doorgaan met de opwaardering?" -#: ../DistUpgrade/DistUpgradeQuirks.py:274 +#: ../DistUpgrade/DistUpgradeQuirks.py:278 msgid "Your graphics hardware may not be fully supported in Ubuntu 12.04 LTS." msgstr "" "Uw grafische hardware wordt misschien niet volledig ondersteund in Ubuntu " "12.04 LTS." -#: ../DistUpgrade/DistUpgradeQuirks.py:276 +#: ../DistUpgrade/DistUpgradeQuirks.py:280 msgid "" "The support in Ubuntu 12.04 LTS for your Intel graphics hardware is limited " "and you may encounter problems after the upgrade. For more information see " @@ -1129,7 +1129,7 @@ "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForI8xx Wilt u toch " "verder gaan met de opwaardering?" -#: ../DistUpgrade/DistUpgradeQuirks.py:296 +#: ../DistUpgrade/DistUpgradeQuirks.py:300 msgid "" "Upgrading may reduce desktop effects, and performance in games and other " "graphically intensive programs." @@ -1137,7 +1137,7 @@ "Opwaarderen zou de bureaubladeffecten kunnen verminderen, alsook de " "prestaties in spellen en andere grafisch intensieve programma's." -#: ../DistUpgrade/DistUpgradeQuirks.py:300 +#: ../DistUpgrade/DistUpgradeQuirks.py:304 msgid "" "This computer is currently using the AMD 'fglrx' graphics driver. No version " "of this driver is available that works with your hardware in Ubuntu 10.04 " @@ -1150,12 +1150,12 @@ "hardware werkt.\n" "Wilt u doorgaan?" -#: ../DistUpgrade/DistUpgradeQuirks.py:339 -#: ../DistUpgrade/DistUpgradeQuirks.py:408 +#: ../DistUpgrade/DistUpgradeQuirks.py:343 +#: ../DistUpgrade/DistUpgradeQuirks.py:412 msgid "Sorry, no more upgrades for this system" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:340 +#: ../DistUpgrade/DistUpgradeQuirks.py:344 #, python-format msgid "" "There will not be any further Ubuntu releases for this system's 'i386' " @@ -1164,11 +1164,11 @@ "Updates for Ubuntu %s will continue until %s." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:355 +#: ../DistUpgrade/DistUpgradeQuirks.py:359 msgid "No ARMv6 CPU" msgstr "Geen ARMv6-CPU" -#: ../DistUpgrade/DistUpgradeQuirks.py:356 +#: ../DistUpgrade/DistUpgradeQuirks.py:360 msgid "" "Your system uses an ARM CPU that is older than the ARMv6 architecture. All " "packages in karmic were built with optimizations requiring ARMv6 as the " @@ -1180,12 +1180,12 @@ "met uw apparatuur niet mogelijk om uw systeem op te waarderen naar een " "nieuwe versie van Ubuntu." -#: ../DistUpgrade/DistUpgradeQuirks.py:376 +#: ../DistUpgrade/DistUpgradeQuirks.py:380 msgid "" "Sorry, this storage driver is not supported in kernels for newer releases" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:378 +#: ../DistUpgrade/DistUpgradeQuirks.py:382 #, python-format msgid "" "There will not be any further Ubuntu releases that provide kernel support " @@ -1195,7 +1195,7 @@ "driver, remove the directory %s and try again." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:409 +#: ../DistUpgrade/DistUpgradeQuirks.py:413 #, python-format msgid "" "There will not be any further Ubuntu releases for this system's POWER8 " @@ -1204,11 +1204,11 @@ "Updates for Ubuntu %s will continue until %s." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:427 +#: ../DistUpgrade/DistUpgradeQuirks.py:431 msgid "No init available" msgstr "Geen init beschikbaar" -#: ../DistUpgrade/DistUpgradeQuirks.py:428 +#: ../DistUpgrade/DistUpgradeQuirks.py:432 msgid "" "Your system appears to be a virtualised environment without an init daemon, " "e.g. Linux-VServer. Ubuntu 10.04 LTS cannot function within this type of " @@ -1224,11 +1224,11 @@ "\n" "Weet u zeker dat u wilt doorgaan?" -#: ../DistUpgrade/DistUpgradeQuirks.py:469 +#: ../DistUpgrade/DistUpgradeQuirks.py:473 msgid "The Robot Operating System (ROS) is installed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:470 +#: ../DistUpgrade/DistUpgradeQuirks.py:474 msgid "" "It appears that ROS is currently installed. Each ROS release is very strict " "about the versions of Ubuntu it supports, and Ubuntu upgrades can fail if " @@ -1245,12 +1245,12 @@ "Are you sure you want to continue?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:670 +#: ../DistUpgrade/DistUpgradeQuirks.py:674 #, fuzzy msgid "Connection to the Snap Store failed" msgstr "Verbinding met Snap Store is mislukt" -#: ../DistUpgrade/DistUpgradeQuirks.py:671 +#: ../DistUpgrade/DistUpgradeQuirks.py:675 msgid "" "You have the package lxd installed but your system is unable to reach the " "Snap Store. lxd is now provided via a snap and the release upgrade will fail " @@ -1260,11 +1260,11 @@ "may want to configure a Snap Store proxy." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:686 +#: ../DistUpgrade/DistUpgradeQuirks.py:690 msgid "Connection to Snap Store failed" msgstr "Verbinding met Snap Store is mislukt" -#: ../DistUpgrade/DistUpgradeQuirks.py:687 +#: ../DistUpgrade/DistUpgradeQuirks.py:691 msgid "" "Your system does not have a connection to the Snap Store. For the best " "upgrade experience make sure that your system can connect to api.snapcraft." @@ -1276,11 +1276,11 @@ "snapcraft.io.\n" "Wilt u nog doorgaan met de upgrade?" -#: ../DistUpgrade/DistUpgradeQuirks.py:696 +#: ../DistUpgrade/DistUpgradeQuirks.py:700 msgid "Outdated snapd package" msgstr "Verouderd snapd-pakket" -#: ../DistUpgrade/DistUpgradeQuirks.py:697 +#: ../DistUpgrade/DistUpgradeQuirks.py:701 msgid "" "Your system does not have the latest version of snapd. Please update the " "version of snapd on your system to improve the upgrade experience.\n" @@ -1293,36 +1293,36 @@ #. now perform direct API calls to the store, requesting size #. information for each of the snaps needing installation -#: ../DistUpgrade/DistUpgradeQuirks.py:722 +#: ../DistUpgrade/DistUpgradeQuirks.py:726 msgid "Calculating snap size requirements" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:753 +#: ../DistUpgrade/DistUpgradeQuirks.py:757 msgid "Processing snap replacements" msgstr "" #. TODO: This status should be updated, but the time of #. this change to snap switch is post-translation freeze. -#: ../DistUpgrade/DistUpgradeQuirks.py:761 +#: ../DistUpgrade/DistUpgradeQuirks.py:765 #, python-format msgid "refreshing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:765 +#: ../DistUpgrade/DistUpgradeQuirks.py:769 #, python-format msgid "removing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:768 +#: ../DistUpgrade/DistUpgradeQuirks.py:772 #, python-format msgid "installing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:797 +#: ../DistUpgrade/DistUpgradeQuirks.py:801 msgid "PAE not enabled" msgstr "PAE is niet ingeschakeld" -#: ../DistUpgrade/DistUpgradeQuirks.py:798 +#: ../DistUpgrade/DistUpgradeQuirks.py:802 msgid "" "Your system uses a CPU that does not have PAE enabled. Ubuntu only supports " "non-PAE systems up to Ubuntu 12.04. To upgrade to a later version of Ubuntu, " @@ -1335,11 +1335,11 @@ "is) in te schakelen; zie:\n" "http://help.ubuntu.com/community/EnablingPAE" -#: ../DistUpgrade/DistUpgradeQuirks.py:1094 +#: ../DistUpgrade/DistUpgradeQuirks.py:1098 msgid "universe component not enabled" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1095 +#: ../DistUpgrade/DistUpgradeQuirks.py:1099 #, python-format msgid "" "You have the package %s installed which is a python2 package. python2 has " @@ -1351,39 +1351,50 @@ "universe component in /etc/apt/sources.list or remove %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1207 +#: ../DistUpgrade/DistUpgradeQuirks.py:1211 msgid "Checking for installed snaps" msgstr "Op geïnstalleerde snaps controleren" -#: ../DistUpgrade/DistUpgradeQuirks.py:1654 +#: ../DistUpgrade/DistUpgradeQuirks.py:1720 #, fuzzy msgid "Cannot upgrade this system" msgstr "Opwaarderen niet mogelijk" -#: ../DistUpgrade/DistUpgradeQuirks.py:1655 +#: ../DistUpgrade/DistUpgradeQuirks.py:1721 msgid "" "Due to a bug in grub, this system cannot be safely upgraded at this time.\n" "\n" "See https://launchpad.net/bugs/2039172." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1721 +#: ../DistUpgrade/DistUpgradeQuirks.py:1787 #, python-brace-format msgid "Updates for Ubuntu {from_release.version} will " msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1731 +#: ../DistUpgrade/DistUpgradeQuirks.py:1797 #, fuzzy msgid "Sorry, cannot upgrade this system to 24.04 LTS" msgstr "Opwaarderen niet mogelijk" -#: ../DistUpgrade/DistUpgradeQuirks.py:1734 +#: ../DistUpgrade/DistUpgradeQuirks.py:1800 msgid "" "The Raspberry Pi kernel for Ubuntu 24.04 LTS does not support the armhf " "architecture.\n" "\n" msgstr "" +#: ../DistUpgrade/DistUpgradeQuirks.py:1928 +#, fuzzy, python-brace-format +msgid "Sorry, cannot upgrade this system to {version}" +msgstr "Opwaarderen niet mogelijk" + +#: ../DistUpgrade/DistUpgradeQuirks.py:1931 +msgid "" +"Upgrades for desktop systems running TPM FDE are not currently supported. " +"Please see https://launchpad.net/bugs/2065229 for more information." +msgstr "" + #: ../DistUpgrade/DistUpgradeMain.py:62 msgid "" "Use frontend. Currently available: \n" diff -Nru ubuntu-release-upgrader-24.04.17/po/nn.po ubuntu-release-upgrader-24.04.18/po/nn.po --- ubuntu-release-upgrader-24.04.17/po/nn.po 2024-04-29 14:26:40.000000000 +0000 +++ ubuntu-release-upgrader-24.04.18/po/nn.po 2024-05-09 19:39:20.000000000 +0000 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2024-04-29 16:03+0200\n" +"POT-Creation-Date: 2024-05-09 15:39-0400\n" "PO-Revision-Date: 2013-05-22 11:00+0000\n" "Last-Translator: Åsmund Skjæveland \n" "Language-Team: Norwegian Nynorsk \n" @@ -973,11 +973,11 @@ msgid "Media Change" msgstr "Medieendring" -#: ../DistUpgrade/DistUpgradeQuirks.py:248 +#: ../DistUpgrade/DistUpgradeQuirks.py:252 msgid "Your graphics hardware may not be fully supported in Ubuntu 14.04." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:250 +#: ../DistUpgrade/DistUpgradeQuirks.py:254 msgid "" "Running the 'unity' desktop environment is not fully supported by your " "graphics hardware. You will maybe end up in a very slow environment after " @@ -987,11 +987,11 @@ "upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:274 +#: ../DistUpgrade/DistUpgradeQuirks.py:278 msgid "Your graphics hardware may not be fully supported in Ubuntu 12.04 LTS." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:276 +#: ../DistUpgrade/DistUpgradeQuirks.py:280 msgid "" "The support in Ubuntu 12.04 LTS for your Intel graphics hardware is limited " "and you may encounter problems after the upgrade. For more information see " @@ -999,7 +999,7 @@ "continue with the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:296 +#: ../DistUpgrade/DistUpgradeQuirks.py:300 msgid "" "Upgrading may reduce desktop effects, and performance in games and other " "graphically intensive programs." @@ -1007,7 +1007,7 @@ "Å oppgradera kan redusera skrivebordseffekter, samt ytinga i spel og andre " "grafikkintensive program." -#: ../DistUpgrade/DistUpgradeQuirks.py:300 +#: ../DistUpgrade/DistUpgradeQuirks.py:304 msgid "" "This computer is currently using the AMD 'fglrx' graphics driver. No version " "of this driver is available that works with your hardware in Ubuntu 10.04 " @@ -1018,12 +1018,12 @@ "Datamaskina brukar AMD «fglrx»-grafikkdrivaren. Ingen tilgjengelege " "versjonar av denne drivaren verkar med maskinvaren din i Ubuntu 10.04 LTS." -#: ../DistUpgrade/DistUpgradeQuirks.py:339 -#: ../DistUpgrade/DistUpgradeQuirks.py:408 +#: ../DistUpgrade/DistUpgradeQuirks.py:343 +#: ../DistUpgrade/DistUpgradeQuirks.py:412 msgid "Sorry, no more upgrades for this system" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:340 +#: ../DistUpgrade/DistUpgradeQuirks.py:344 #, python-format msgid "" "There will not be any further Ubuntu releases for this system's 'i386' " @@ -1032,11 +1032,11 @@ "Updates for Ubuntu %s will continue until %s." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:355 +#: ../DistUpgrade/DistUpgradeQuirks.py:359 msgid "No ARMv6 CPU" msgstr "Ingen ARMv6-prosessor" -#: ../DistUpgrade/DistUpgradeQuirks.py:356 +#: ../DistUpgrade/DistUpgradeQuirks.py:360 msgid "" "Your system uses an ARM CPU that is older than the ARMv6 architecture. All " "packages in karmic were built with optimizations requiring ARMv6 as the " @@ -1047,12 +1047,12 @@ "pakkane i karmic krev minimum ARMv6. Det er ikkje mogleg å oppgradera " "systemet ditt til den nyaste Ubuntu-utgjevinga med den noverande maskinvaren." -#: ../DistUpgrade/DistUpgradeQuirks.py:376 +#: ../DistUpgrade/DistUpgradeQuirks.py:380 msgid "" "Sorry, this storage driver is not supported in kernels for newer releases" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:378 +#: ../DistUpgrade/DistUpgradeQuirks.py:382 #, python-format msgid "" "There will not be any further Ubuntu releases that provide kernel support " @@ -1062,7 +1062,7 @@ "driver, remove the directory %s and try again." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:409 +#: ../DistUpgrade/DistUpgradeQuirks.py:413 #, python-format msgid "" "There will not be any further Ubuntu releases for this system's POWER8 " @@ -1071,11 +1071,11 @@ "Updates for Ubuntu %s will continue until %s." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:427 +#: ../DistUpgrade/DistUpgradeQuirks.py:431 msgid "No init available" msgstr "Ingen oppstartsprogram (init) er tilgjengelege" -#: ../DistUpgrade/DistUpgradeQuirks.py:428 +#: ../DistUpgrade/DistUpgradeQuirks.py:432 msgid "" "Your system appears to be a virtualised environment without an init daemon, " "e.g. Linux-VServer. Ubuntu 10.04 LTS cannot function within this type of " @@ -1091,11 +1091,11 @@ "\n" "Er du sikker på at du vil halda fram?" -#: ../DistUpgrade/DistUpgradeQuirks.py:469 +#: ../DistUpgrade/DistUpgradeQuirks.py:473 msgid "The Robot Operating System (ROS) is installed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:470 +#: ../DistUpgrade/DistUpgradeQuirks.py:474 msgid "" "It appears that ROS is currently installed. Each ROS release is very strict " "about the versions of Ubuntu it supports, and Ubuntu upgrades can fail if " @@ -1112,12 +1112,12 @@ "Are you sure you want to continue?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:670 +#: ../DistUpgrade/DistUpgradeQuirks.py:674 #, fuzzy msgid "Connection to the Snap Store failed" msgstr "Klarte ikkje kopla til Snap Store" -#: ../DistUpgrade/DistUpgradeQuirks.py:671 +#: ../DistUpgrade/DistUpgradeQuirks.py:675 msgid "" "You have the package lxd installed but your system is unable to reach the " "Snap Store. lxd is now provided via a snap and the release upgrade will fail " @@ -1127,11 +1127,11 @@ "may want to configure a Snap Store proxy." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:686 +#: ../DistUpgrade/DistUpgradeQuirks.py:690 msgid "Connection to Snap Store failed" msgstr "Klarte ikkje kopla til Snap Store" -#: ../DistUpgrade/DistUpgradeQuirks.py:687 +#: ../DistUpgrade/DistUpgradeQuirks.py:691 msgid "" "Your system does not have a connection to the Snap Store. For the best " "upgrade experience make sure that your system can connect to api.snapcraft." @@ -1142,11 +1142,11 @@ "oppgradering bør du stadfesta at systemet kan kopla til api.snapcraft.io.\n" "Vil du likevel halda fram med oppgraderinga?" -#: ../DistUpgrade/DistUpgradeQuirks.py:696 +#: ../DistUpgrade/DistUpgradeQuirks.py:700 msgid "Outdated snapd package" msgstr "Utdatert snapd-pakke" -#: ../DistUpgrade/DistUpgradeQuirks.py:697 +#: ../DistUpgrade/DistUpgradeQuirks.py:701 msgid "" "Your system does not have the latest version of snapd. Please update the " "version of snapd on your system to improve the upgrade experience.\n" @@ -1158,36 +1158,36 @@ #. now perform direct API calls to the store, requesting size #. information for each of the snaps needing installation -#: ../DistUpgrade/DistUpgradeQuirks.py:722 +#: ../DistUpgrade/DistUpgradeQuirks.py:726 msgid "Calculating snap size requirements" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:753 +#: ../DistUpgrade/DistUpgradeQuirks.py:757 msgid "Processing snap replacements" msgstr "" #. TODO: This status should be updated, but the time of #. this change to snap switch is post-translation freeze. -#: ../DistUpgrade/DistUpgradeQuirks.py:761 +#: ../DistUpgrade/DistUpgradeQuirks.py:765 #, python-format msgid "refreshing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:765 +#: ../DistUpgrade/DistUpgradeQuirks.py:769 #, python-format msgid "removing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:768 +#: ../DistUpgrade/DistUpgradeQuirks.py:772 #, python-format msgid "installing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:797 +#: ../DistUpgrade/DistUpgradeQuirks.py:801 msgid "PAE not enabled" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:798 +#: ../DistUpgrade/DistUpgradeQuirks.py:802 msgid "" "Your system uses a CPU that does not have PAE enabled. Ubuntu only supports " "non-PAE systems up to Ubuntu 12.04. To upgrade to a later version of Ubuntu, " @@ -1195,11 +1195,11 @@ "http://help.ubuntu.com/community/EnablingPAE" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1094 +#: ../DistUpgrade/DistUpgradeQuirks.py:1098 msgid "universe component not enabled" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1095 +#: ../DistUpgrade/DistUpgradeQuirks.py:1099 #, python-format msgid "" "You have the package %s installed which is a python2 package. python2 has " @@ -1211,39 +1211,50 @@ "universe component in /etc/apt/sources.list or remove %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1207 +#: ../DistUpgrade/DistUpgradeQuirks.py:1211 msgid "Checking for installed snaps" msgstr "Sjekkar installerte snap-pakkar" -#: ../DistUpgrade/DistUpgradeQuirks.py:1654 +#: ../DistUpgrade/DistUpgradeQuirks.py:1720 #, fuzzy msgid "Cannot upgrade this system" msgstr "Klarte ikkje å oppgradera" -#: ../DistUpgrade/DistUpgradeQuirks.py:1655 +#: ../DistUpgrade/DistUpgradeQuirks.py:1721 msgid "" "Due to a bug in grub, this system cannot be safely upgraded at this time.\n" "\n" "See https://launchpad.net/bugs/2039172." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1721 +#: ../DistUpgrade/DistUpgradeQuirks.py:1787 #, python-brace-format msgid "Updates for Ubuntu {from_release.version} will " msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1731 +#: ../DistUpgrade/DistUpgradeQuirks.py:1797 #, fuzzy msgid "Sorry, cannot upgrade this system to 24.04 LTS" msgstr "Klarte ikkje å oppgradera" -#: ../DistUpgrade/DistUpgradeQuirks.py:1734 +#: ../DistUpgrade/DistUpgradeQuirks.py:1800 msgid "" "The Raspberry Pi kernel for Ubuntu 24.04 LTS does not support the armhf " "architecture.\n" "\n" msgstr "" +#: ../DistUpgrade/DistUpgradeQuirks.py:1928 +#, fuzzy, python-brace-format +msgid "Sorry, cannot upgrade this system to {version}" +msgstr "Klarte ikkje å oppgradera" + +#: ../DistUpgrade/DistUpgradeQuirks.py:1931 +msgid "" +"Upgrades for desktop systems running TPM FDE are not currently supported. " +"Please see https://launchpad.net/bugs/2065229 for more information." +msgstr "" + #: ../DistUpgrade/DistUpgradeMain.py:62 msgid "" "Use frontend. Currently available: \n" diff -Nru ubuntu-release-upgrader-24.04.17/po/oc.po ubuntu-release-upgrader-24.04.18/po/oc.po --- ubuntu-release-upgrader-24.04.17/po/oc.po 2024-04-29 14:26:40.000000000 +0000 +++ ubuntu-release-upgrader-24.04.18/po/oc.po 2024-05-09 19:39:20.000000000 +0000 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2024-04-29 16:03+0200\n" +"POT-Creation-Date: 2024-05-09 15:39-0400\n" "PO-Revision-Date: 2019-06-18 17:52+0000\n" "Last-Translator: Cédric VALMARY (Tot en òc) \n" "Language-Team: Occitan (post 1500) \n" @@ -1032,13 +1032,13 @@ msgid "Media Change" msgstr "Cambiament de mèdia" -#: ../DistUpgrade/DistUpgradeQuirks.py:248 +#: ../DistUpgrade/DistUpgradeQuirks.py:252 msgid "Your graphics hardware may not be fully supported in Ubuntu 14.04." msgstr "" "Benlèu que vòstre material grafic es pas pres en carga completament dins " "Ubuntu 14.04." -#: ../DistUpgrade/DistUpgradeQuirks.py:250 +#: ../DistUpgrade/DistUpgradeQuirks.py:254 msgid "" "Running the 'unity' desktop environment is not fully supported by your " "graphics hardware. You will maybe end up in a very slow environment after " @@ -1054,13 +1054,13 @@ "wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForUnity3D Volètz contunhar la " "mesa a nivèl ?" -#: ../DistUpgrade/DistUpgradeQuirks.py:274 +#: ../DistUpgrade/DistUpgradeQuirks.py:278 msgid "Your graphics hardware may not be fully supported in Ubuntu 12.04 LTS." msgstr "" "Es possible que vòstra carta grafica siá pas entièrament presa en carga per " "Ubuntu 12.04 LTS." -#: ../DistUpgrade/DistUpgradeQuirks.py:276 +#: ../DistUpgrade/DistUpgradeQuirks.py:280 msgid "" "The support in Ubuntu 12.04 LTS for your Intel graphics hardware is limited " "and you may encounter problems after the upgrade. For more information see " @@ -1072,7 +1072,7 @@ "Per mai d'informacion, rendètz-vos sus https://wiki.ubuntu.com/X/Bugs/" "UpdateManagerWarningForI8xx Volètz contunhar la mesa a nivèl ?" -#: ../DistUpgrade/DistUpgradeQuirks.py:296 +#: ../DistUpgrade/DistUpgradeQuirks.py:300 msgid "" "Upgrading may reduce desktop effects, and performance in games and other " "graphically intensive programs." @@ -1080,7 +1080,7 @@ "Es possible que la mesa a nivèl reduisca los efièits visuals e las " "performàncias pels jòcs e autres programas exigents en tèrmes de grafismes." -#: ../DistUpgrade/DistUpgradeQuirks.py:300 +#: ../DistUpgrade/DistUpgradeQuirks.py:304 msgid "" "This computer is currently using the AMD 'fglrx' graphics driver. No version " "of this driver is available that works with your hardware in Ubuntu 10.04 " @@ -1094,12 +1094,12 @@ "\n" "Volètz contunhar ?" -#: ../DistUpgrade/DistUpgradeQuirks.py:339 -#: ../DistUpgrade/DistUpgradeQuirks.py:408 +#: ../DistUpgrade/DistUpgradeQuirks.py:343 +#: ../DistUpgrade/DistUpgradeQuirks.py:412 msgid "Sorry, no more upgrades for this system" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:340 +#: ../DistUpgrade/DistUpgradeQuirks.py:344 #, python-format msgid "" "There will not be any further Ubuntu releases for this system's 'i386' " @@ -1108,11 +1108,11 @@ "Updates for Ubuntu %s will continue until %s." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:355 +#: ../DistUpgrade/DistUpgradeQuirks.py:359 msgid "No ARMv6 CPU" msgstr "Pas de processor ARMv6" -#: ../DistUpgrade/DistUpgradeQuirks.py:356 +#: ../DistUpgrade/DistUpgradeQuirks.py:360 msgid "" "Your system uses an ARM CPU that is older than the ARMv6 architecture. All " "packages in karmic were built with optimizations requiring ARMv6 as the " @@ -1124,12 +1124,12 @@ "necessitan al minimum una arquitectura ARMv6. Es impossible de metre a nivèl " "vòstre sistèma cap a la version novèla d'Ubuntu." -#: ../DistUpgrade/DistUpgradeQuirks.py:376 +#: ../DistUpgrade/DistUpgradeQuirks.py:380 msgid "" "Sorry, this storage driver is not supported in kernels for newer releases" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:378 +#: ../DistUpgrade/DistUpgradeQuirks.py:382 #, python-format msgid "" "There will not be any further Ubuntu releases that provide kernel support " @@ -1139,7 +1139,7 @@ "driver, remove the directory %s and try again." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:409 +#: ../DistUpgrade/DistUpgradeQuirks.py:413 #, python-format msgid "" "There will not be any further Ubuntu releases for this system's POWER8 " @@ -1148,11 +1148,11 @@ "Updates for Ubuntu %s will continue until %s." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:427 +#: ../DistUpgrade/DistUpgradeQuirks.py:431 msgid "No init available" msgstr "Inicializacion indisponibla" -#: ../DistUpgrade/DistUpgradeQuirks.py:428 +#: ../DistUpgrade/DistUpgradeQuirks.py:432 msgid "" "Your system appears to be a virtualised environment without an init daemon, " "e.g. Linux-VServer. Ubuntu 10.04 LTS cannot function within this type of " @@ -1168,11 +1168,11 @@ "\n" "Sètz segur que volètz contunhar ?" -#: ../DistUpgrade/DistUpgradeQuirks.py:469 +#: ../DistUpgrade/DistUpgradeQuirks.py:473 msgid "The Robot Operating System (ROS) is installed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:470 +#: ../DistUpgrade/DistUpgradeQuirks.py:474 msgid "" "It appears that ROS is currently installed. Each ROS release is very strict " "about the versions of Ubuntu it supports, and Ubuntu upgrades can fail if " @@ -1189,11 +1189,11 @@ "Are you sure you want to continue?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:670 +#: ../DistUpgrade/DistUpgradeQuirks.py:674 msgid "Connection to the Snap Store failed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:671 +#: ../DistUpgrade/DistUpgradeQuirks.py:675 msgid "" "You have the package lxd installed but your system is unable to reach the " "Snap Store. lxd is now provided via a snap and the release upgrade will fail " @@ -1203,11 +1203,11 @@ "may want to configure a Snap Store proxy." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:686 +#: ../DistUpgrade/DistUpgradeQuirks.py:690 msgid "Connection to Snap Store failed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:687 +#: ../DistUpgrade/DistUpgradeQuirks.py:691 msgid "" "Your system does not have a connection to the Snap Store. For the best " "upgrade experience make sure that your system can connect to api.snapcraft." @@ -1215,11 +1215,11 @@ "Do you still want to continue with the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:696 +#: ../DistUpgrade/DistUpgradeQuirks.py:700 msgid "Outdated snapd package" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:697 +#: ../DistUpgrade/DistUpgradeQuirks.py:701 msgid "" "Your system does not have the latest version of snapd. Please update the " "version of snapd on your system to improve the upgrade experience.\n" @@ -1228,36 +1228,36 @@ #. now perform direct API calls to the store, requesting size #. information for each of the snaps needing installation -#: ../DistUpgrade/DistUpgradeQuirks.py:722 +#: ../DistUpgrade/DistUpgradeQuirks.py:726 msgid "Calculating snap size requirements" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:753 +#: ../DistUpgrade/DistUpgradeQuirks.py:757 msgid "Processing snap replacements" msgstr "" #. TODO: This status should be updated, but the time of #. this change to snap switch is post-translation freeze. -#: ../DistUpgrade/DistUpgradeQuirks.py:761 +#: ../DistUpgrade/DistUpgradeQuirks.py:765 #, python-format msgid "refreshing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:765 +#: ../DistUpgrade/DistUpgradeQuirks.py:769 #, python-format msgid "removing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:768 +#: ../DistUpgrade/DistUpgradeQuirks.py:772 #, python-format msgid "installing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:797 +#: ../DistUpgrade/DistUpgradeQuirks.py:801 msgid "PAE not enabled" msgstr "PAE pas activat" -#: ../DistUpgrade/DistUpgradeQuirks.py:798 +#: ../DistUpgrade/DistUpgradeQuirks.py:802 msgid "" "Your system uses a CPU that does not have PAE enabled. Ubuntu only supports " "non-PAE systems up to Ubuntu 12.04. To upgrade to a later version of Ubuntu, " @@ -1271,11 +1271,11 @@ "es possible) vejatz :\n" "http://help.ubuntu.com/community/EnablingPAE" -#: ../DistUpgrade/DistUpgradeQuirks.py:1094 +#: ../DistUpgrade/DistUpgradeQuirks.py:1098 msgid "universe component not enabled" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1095 +#: ../DistUpgrade/DistUpgradeQuirks.py:1099 #, python-format msgid "" "You have the package %s installed which is a python2 package. python2 has " @@ -1287,39 +1287,50 @@ "universe component in /etc/apt/sources.list or remove %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1207 +#: ../DistUpgrade/DistUpgradeQuirks.py:1211 msgid "Checking for installed snaps" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1654 +#: ../DistUpgrade/DistUpgradeQuirks.py:1720 #, fuzzy msgid "Cannot upgrade this system" msgstr "Impossible de metre a jorn" -#: ../DistUpgrade/DistUpgradeQuirks.py:1655 +#: ../DistUpgrade/DistUpgradeQuirks.py:1721 msgid "" "Due to a bug in grub, this system cannot be safely upgraded at this time.\n" "\n" "See https://launchpad.net/bugs/2039172." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1721 +#: ../DistUpgrade/DistUpgradeQuirks.py:1787 #, python-brace-format msgid "Updates for Ubuntu {from_release.version} will " msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1731 +#: ../DistUpgrade/DistUpgradeQuirks.py:1797 #, fuzzy msgid "Sorry, cannot upgrade this system to 24.04 LTS" msgstr "Impossible de metre a jorn" -#: ../DistUpgrade/DistUpgradeQuirks.py:1734 +#: ../DistUpgrade/DistUpgradeQuirks.py:1800 msgid "" "The Raspberry Pi kernel for Ubuntu 24.04 LTS does not support the armhf " "architecture.\n" "\n" msgstr "" +#: ../DistUpgrade/DistUpgradeQuirks.py:1928 +#, fuzzy, python-brace-format +msgid "Sorry, cannot upgrade this system to {version}" +msgstr "Impossible de metre a jorn" + +#: ../DistUpgrade/DistUpgradeQuirks.py:1931 +msgid "" +"Upgrades for desktop systems running TPM FDE are not currently supported. " +"Please see https://launchpad.net/bugs/2065229 for more information." +msgstr "" + #: ../DistUpgrade/DistUpgradeMain.py:62 msgid "" "Use frontend. Currently available: \n" diff -Nru ubuntu-release-upgrader-24.04.17/po/om.po ubuntu-release-upgrader-24.04.18/po/om.po --- ubuntu-release-upgrader-24.04.17/po/om.po 2024-04-29 14:26:40.000000000 +0000 +++ ubuntu-release-upgrader-24.04.18/po/om.po 2024-05-09 19:39:20.000000000 +0000 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: ubuntu-release-upgrader\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2024-04-29 16:03+0200\n" +"POT-Creation-Date: 2024-05-09 15:39-0400\n" "PO-Revision-Date: 2015-08-25 13:46+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Oromo \n" @@ -897,11 +897,11 @@ msgid "Media Change" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:248 +#: ../DistUpgrade/DistUpgradeQuirks.py:252 msgid "Your graphics hardware may not be fully supported in Ubuntu 14.04." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:250 +#: ../DistUpgrade/DistUpgradeQuirks.py:254 msgid "" "Running the 'unity' desktop environment is not fully supported by your " "graphics hardware. You will maybe end up in a very slow environment after " @@ -911,11 +911,11 @@ "upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:274 +#: ../DistUpgrade/DistUpgradeQuirks.py:278 msgid "Your graphics hardware may not be fully supported in Ubuntu 12.04 LTS." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:276 +#: ../DistUpgrade/DistUpgradeQuirks.py:280 msgid "" "The support in Ubuntu 12.04 LTS for your Intel graphics hardware is limited " "and you may encounter problems after the upgrade. For more information see " @@ -923,13 +923,13 @@ "continue with the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:296 +#: ../DistUpgrade/DistUpgradeQuirks.py:300 msgid "" "Upgrading may reduce desktop effects, and performance in games and other " "graphically intensive programs." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:300 +#: ../DistUpgrade/DistUpgradeQuirks.py:304 msgid "" "This computer is currently using the AMD 'fglrx' graphics driver. No version " "of this driver is available that works with your hardware in Ubuntu 10.04 " @@ -938,12 +938,12 @@ "Do you want to continue?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:339 -#: ../DistUpgrade/DistUpgradeQuirks.py:408 +#: ../DistUpgrade/DistUpgradeQuirks.py:343 +#: ../DistUpgrade/DistUpgradeQuirks.py:412 msgid "Sorry, no more upgrades for this system" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:340 +#: ../DistUpgrade/DistUpgradeQuirks.py:344 #, python-format msgid "" "There will not be any further Ubuntu releases for this system's 'i386' " @@ -952,11 +952,11 @@ "Updates for Ubuntu %s will continue until %s." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:355 +#: ../DistUpgrade/DistUpgradeQuirks.py:359 msgid "No ARMv6 CPU" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:356 +#: ../DistUpgrade/DistUpgradeQuirks.py:360 msgid "" "Your system uses an ARM CPU that is older than the ARMv6 architecture. All " "packages in karmic were built with optimizations requiring ARMv6 as the " @@ -964,12 +964,12 @@ "Ubuntu release with this hardware." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:376 +#: ../DistUpgrade/DistUpgradeQuirks.py:380 msgid "" "Sorry, this storage driver is not supported in kernels for newer releases" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:378 +#: ../DistUpgrade/DistUpgradeQuirks.py:382 #, python-format msgid "" "There will not be any further Ubuntu releases that provide kernel support " @@ -979,7 +979,7 @@ "driver, remove the directory %s and try again." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:409 +#: ../DistUpgrade/DistUpgradeQuirks.py:413 #, python-format msgid "" "There will not be any further Ubuntu releases for this system's POWER8 " @@ -988,11 +988,11 @@ "Updates for Ubuntu %s will continue until %s." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:427 +#: ../DistUpgrade/DistUpgradeQuirks.py:431 msgid "No init available" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:428 +#: ../DistUpgrade/DistUpgradeQuirks.py:432 msgid "" "Your system appears to be a virtualised environment without an init daemon, " "e.g. Linux-VServer. Ubuntu 10.04 LTS cannot function within this type of " @@ -1002,11 +1002,11 @@ "Are you sure you want to continue?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:469 +#: ../DistUpgrade/DistUpgradeQuirks.py:473 msgid "The Robot Operating System (ROS) is installed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:470 +#: ../DistUpgrade/DistUpgradeQuirks.py:474 msgid "" "It appears that ROS is currently installed. Each ROS release is very strict " "about the versions of Ubuntu it supports, and Ubuntu upgrades can fail if " @@ -1023,11 +1023,11 @@ "Are you sure you want to continue?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:670 +#: ../DistUpgrade/DistUpgradeQuirks.py:674 msgid "Connection to the Snap Store failed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:671 +#: ../DistUpgrade/DistUpgradeQuirks.py:675 msgid "" "You have the package lxd installed but your system is unable to reach the " "Snap Store. lxd is now provided via a snap and the release upgrade will fail " @@ -1037,11 +1037,11 @@ "may want to configure a Snap Store proxy." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:686 +#: ../DistUpgrade/DistUpgradeQuirks.py:690 msgid "Connection to Snap Store failed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:687 +#: ../DistUpgrade/DistUpgradeQuirks.py:691 msgid "" "Your system does not have a connection to the Snap Store. For the best " "upgrade experience make sure that your system can connect to api.snapcraft." @@ -1049,11 +1049,11 @@ "Do you still want to continue with the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:696 +#: ../DistUpgrade/DistUpgradeQuirks.py:700 msgid "Outdated snapd package" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:697 +#: ../DistUpgrade/DistUpgradeQuirks.py:701 msgid "" "Your system does not have the latest version of snapd. Please update the " "version of snapd on your system to improve the upgrade experience.\n" @@ -1062,36 +1062,36 @@ #. now perform direct API calls to the store, requesting size #. information for each of the snaps needing installation -#: ../DistUpgrade/DistUpgradeQuirks.py:722 +#: ../DistUpgrade/DistUpgradeQuirks.py:726 msgid "Calculating snap size requirements" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:753 +#: ../DistUpgrade/DistUpgradeQuirks.py:757 msgid "Processing snap replacements" msgstr "" #. TODO: This status should be updated, but the time of #. this change to snap switch is post-translation freeze. -#: ../DistUpgrade/DistUpgradeQuirks.py:761 +#: ../DistUpgrade/DistUpgradeQuirks.py:765 #, python-format msgid "refreshing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:765 +#: ../DistUpgrade/DistUpgradeQuirks.py:769 #, python-format msgid "removing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:768 +#: ../DistUpgrade/DistUpgradeQuirks.py:772 #, python-format msgid "installing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:797 +#: ../DistUpgrade/DistUpgradeQuirks.py:801 msgid "PAE not enabled" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:798 +#: ../DistUpgrade/DistUpgradeQuirks.py:802 msgid "" "Your system uses a CPU that does not have PAE enabled. Ubuntu only supports " "non-PAE systems up to Ubuntu 12.04. To upgrade to a later version of Ubuntu, " @@ -1099,11 +1099,11 @@ "http://help.ubuntu.com/community/EnablingPAE" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1094 +#: ../DistUpgrade/DistUpgradeQuirks.py:1098 msgid "universe component not enabled" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1095 +#: ../DistUpgrade/DistUpgradeQuirks.py:1099 #, python-format msgid "" "You have the package %s installed which is a python2 package. python2 has " @@ -1115,37 +1115,48 @@ "universe component in /etc/apt/sources.list or remove %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1207 +#: ../DistUpgrade/DistUpgradeQuirks.py:1211 msgid "Checking for installed snaps" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1654 +#: ../DistUpgrade/DistUpgradeQuirks.py:1720 msgid "Cannot upgrade this system" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1655 +#: ../DistUpgrade/DistUpgradeQuirks.py:1721 msgid "" "Due to a bug in grub, this system cannot be safely upgraded at this time.\n" "\n" "See https://launchpad.net/bugs/2039172." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1721 +#: ../DistUpgrade/DistUpgradeQuirks.py:1787 #, python-brace-format msgid "Updates for Ubuntu {from_release.version} will " msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1731 +#: ../DistUpgrade/DistUpgradeQuirks.py:1797 msgid "Sorry, cannot upgrade this system to 24.04 LTS" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1734 +#: ../DistUpgrade/DistUpgradeQuirks.py:1800 msgid "" "The Raspberry Pi kernel for Ubuntu 24.04 LTS does not support the armhf " "architecture.\n" "\n" msgstr "" +#: ../DistUpgrade/DistUpgradeQuirks.py:1928 +#, python-brace-format +msgid "Sorry, cannot upgrade this system to {version}" +msgstr "" + +#: ../DistUpgrade/DistUpgradeQuirks.py:1931 +msgid "" +"Upgrades for desktop systems running TPM FDE are not currently supported. " +"Please see https://launchpad.net/bugs/2065229 for more information." +msgstr "" + #: ../DistUpgrade/DistUpgradeMain.py:62 msgid "" "Use frontend. Currently available: \n" diff -Nru ubuntu-release-upgrader-24.04.17/po/pa.po ubuntu-release-upgrader-24.04.18/po/pa.po --- ubuntu-release-upgrader-24.04.17/po/pa.po 2024-04-29 14:26:40.000000000 +0000 +++ ubuntu-release-upgrader-24.04.18/po/pa.po 2024-05-09 19:39:20.000000000 +0000 @@ -9,7 +9,7 @@ msgstr "" "Project-Id-Version: pa\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2024-04-29 16:03+0200\n" +"POT-Creation-Date: 2024-05-09 15:39-0400\n" "PO-Revision-Date: 2013-05-22 11:00+0000\n" "Last-Translator: A S Alam \n" "Language-Team: testLokalize \n" @@ -907,11 +907,11 @@ msgid "Media Change" msgstr "ਮੀਡਿਆ ਬਦਲੋ" -#: ../DistUpgrade/DistUpgradeQuirks.py:248 +#: ../DistUpgrade/DistUpgradeQuirks.py:252 msgid "Your graphics hardware may not be fully supported in Ubuntu 14.04." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:250 +#: ../DistUpgrade/DistUpgradeQuirks.py:254 msgid "" "Running the 'unity' desktop environment is not fully supported by your " "graphics hardware. You will maybe end up in a very slow environment after " @@ -921,11 +921,11 @@ "upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:274 +#: ../DistUpgrade/DistUpgradeQuirks.py:278 msgid "Your graphics hardware may not be fully supported in Ubuntu 12.04 LTS." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:276 +#: ../DistUpgrade/DistUpgradeQuirks.py:280 msgid "" "The support in Ubuntu 12.04 LTS for your Intel graphics hardware is limited " "and you may encounter problems after the upgrade. For more information see " @@ -933,13 +933,13 @@ "continue with the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:296 +#: ../DistUpgrade/DistUpgradeQuirks.py:300 msgid "" "Upgrading may reduce desktop effects, and performance in games and other " "graphically intensive programs." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:300 +#: ../DistUpgrade/DistUpgradeQuirks.py:304 msgid "" "This computer is currently using the AMD 'fglrx' graphics driver. No version " "of this driver is available that works with your hardware in Ubuntu 10.04 " @@ -948,12 +948,12 @@ "Do you want to continue?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:339 -#: ../DistUpgrade/DistUpgradeQuirks.py:408 +#: ../DistUpgrade/DistUpgradeQuirks.py:343 +#: ../DistUpgrade/DistUpgradeQuirks.py:412 msgid "Sorry, no more upgrades for this system" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:340 +#: ../DistUpgrade/DistUpgradeQuirks.py:344 #, python-format msgid "" "There will not be any further Ubuntu releases for this system's 'i386' " @@ -962,11 +962,11 @@ "Updates for Ubuntu %s will continue until %s." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:355 +#: ../DistUpgrade/DistUpgradeQuirks.py:359 msgid "No ARMv6 CPU" msgstr "ARMv6 CPU ਨਹੀਂ" -#: ../DistUpgrade/DistUpgradeQuirks.py:356 +#: ../DistUpgrade/DistUpgradeQuirks.py:360 msgid "" "Your system uses an ARM CPU that is older than the ARMv6 architecture. All " "packages in karmic were built with optimizations requiring ARMv6 as the " @@ -974,12 +974,12 @@ "Ubuntu release with this hardware." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:376 +#: ../DistUpgrade/DistUpgradeQuirks.py:380 msgid "" "Sorry, this storage driver is not supported in kernels for newer releases" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:378 +#: ../DistUpgrade/DistUpgradeQuirks.py:382 #, python-format msgid "" "There will not be any further Ubuntu releases that provide kernel support " @@ -989,7 +989,7 @@ "driver, remove the directory %s and try again." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:409 +#: ../DistUpgrade/DistUpgradeQuirks.py:413 #, python-format msgid "" "There will not be any further Ubuntu releases for this system's POWER8 " @@ -998,11 +998,11 @@ "Updates for Ubuntu %s will continue until %s." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:427 +#: ../DistUpgrade/DistUpgradeQuirks.py:431 msgid "No init available" msgstr "init ਮੌਜੂਦ ਨਹੀਂ" -#: ../DistUpgrade/DistUpgradeQuirks.py:428 +#: ../DistUpgrade/DistUpgradeQuirks.py:432 msgid "" "Your system appears to be a virtualised environment without an init daemon, " "e.g. Linux-VServer. Ubuntu 10.04 LTS cannot function within this type of " @@ -1012,11 +1012,11 @@ "Are you sure you want to continue?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:469 +#: ../DistUpgrade/DistUpgradeQuirks.py:473 msgid "The Robot Operating System (ROS) is installed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:470 +#: ../DistUpgrade/DistUpgradeQuirks.py:474 msgid "" "It appears that ROS is currently installed. Each ROS release is very strict " "about the versions of Ubuntu it supports, and Ubuntu upgrades can fail if " @@ -1033,11 +1033,11 @@ "Are you sure you want to continue?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:670 +#: ../DistUpgrade/DistUpgradeQuirks.py:674 msgid "Connection to the Snap Store failed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:671 +#: ../DistUpgrade/DistUpgradeQuirks.py:675 msgid "" "You have the package lxd installed but your system is unable to reach the " "Snap Store. lxd is now provided via a snap and the release upgrade will fail " @@ -1047,11 +1047,11 @@ "may want to configure a Snap Store proxy." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:686 +#: ../DistUpgrade/DistUpgradeQuirks.py:690 msgid "Connection to Snap Store failed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:687 +#: ../DistUpgrade/DistUpgradeQuirks.py:691 msgid "" "Your system does not have a connection to the Snap Store. For the best " "upgrade experience make sure that your system can connect to api.snapcraft." @@ -1059,11 +1059,11 @@ "Do you still want to continue with the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:696 +#: ../DistUpgrade/DistUpgradeQuirks.py:700 msgid "Outdated snapd package" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:697 +#: ../DistUpgrade/DistUpgradeQuirks.py:701 msgid "" "Your system does not have the latest version of snapd. Please update the " "version of snapd on your system to improve the upgrade experience.\n" @@ -1072,36 +1072,36 @@ #. now perform direct API calls to the store, requesting size #. information for each of the snaps needing installation -#: ../DistUpgrade/DistUpgradeQuirks.py:722 +#: ../DistUpgrade/DistUpgradeQuirks.py:726 msgid "Calculating snap size requirements" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:753 +#: ../DistUpgrade/DistUpgradeQuirks.py:757 msgid "Processing snap replacements" msgstr "" #. TODO: This status should be updated, but the time of #. this change to snap switch is post-translation freeze. -#: ../DistUpgrade/DistUpgradeQuirks.py:761 +#: ../DistUpgrade/DistUpgradeQuirks.py:765 #, python-format msgid "refreshing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:765 +#: ../DistUpgrade/DistUpgradeQuirks.py:769 #, python-format msgid "removing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:768 +#: ../DistUpgrade/DistUpgradeQuirks.py:772 #, python-format msgid "installing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:797 +#: ../DistUpgrade/DistUpgradeQuirks.py:801 msgid "PAE not enabled" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:798 +#: ../DistUpgrade/DistUpgradeQuirks.py:802 msgid "" "Your system uses a CPU that does not have PAE enabled. Ubuntu only supports " "non-PAE systems up to Ubuntu 12.04. To upgrade to a later version of Ubuntu, " @@ -1109,11 +1109,11 @@ "http://help.ubuntu.com/community/EnablingPAE" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1094 +#: ../DistUpgrade/DistUpgradeQuirks.py:1098 msgid "universe component not enabled" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1095 +#: ../DistUpgrade/DistUpgradeQuirks.py:1099 #, python-format msgid "" "You have the package %s installed which is a python2 package. python2 has " @@ -1125,39 +1125,50 @@ "universe component in /etc/apt/sources.list or remove %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1207 +#: ../DistUpgrade/DistUpgradeQuirks.py:1211 msgid "Checking for installed snaps" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1654 +#: ../DistUpgrade/DistUpgradeQuirks.py:1720 #, fuzzy msgid "Cannot upgrade this system" msgstr "ਅੱਪਗਰੇਡ ਨਹੀਂ ਕੀਤਾ ਜਾ ਸਕਦਾ" -#: ../DistUpgrade/DistUpgradeQuirks.py:1655 +#: ../DistUpgrade/DistUpgradeQuirks.py:1721 msgid "" "Due to a bug in grub, this system cannot be safely upgraded at this time.\n" "\n" "See https://launchpad.net/bugs/2039172." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1721 +#: ../DistUpgrade/DistUpgradeQuirks.py:1787 #, python-brace-format msgid "Updates for Ubuntu {from_release.version} will " msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1731 +#: ../DistUpgrade/DistUpgradeQuirks.py:1797 #, fuzzy msgid "Sorry, cannot upgrade this system to 24.04 LTS" msgstr "ਅੱਪਗਰੇਡ ਨਹੀਂ ਕੀਤਾ ਜਾ ਸਕਦਾ" -#: ../DistUpgrade/DistUpgradeQuirks.py:1734 +#: ../DistUpgrade/DistUpgradeQuirks.py:1800 msgid "" "The Raspberry Pi kernel for Ubuntu 24.04 LTS does not support the armhf " "architecture.\n" "\n" msgstr "" +#: ../DistUpgrade/DistUpgradeQuirks.py:1928 +#, fuzzy, python-brace-format +msgid "Sorry, cannot upgrade this system to {version}" +msgstr "ਅੱਪਗਰੇਡ ਨਹੀਂ ਕੀਤਾ ਜਾ ਸਕਦਾ" + +#: ../DistUpgrade/DistUpgradeQuirks.py:1931 +msgid "" +"Upgrades for desktop systems running TPM FDE are not currently supported. " +"Please see https://launchpad.net/bugs/2065229 for more information." +msgstr "" + #: ../DistUpgrade/DistUpgradeMain.py:62 msgid "" "Use frontend. Currently available: \n" diff -Nru ubuntu-release-upgrader-24.04.17/po/pam.po ubuntu-release-upgrader-24.04.18/po/pam.po --- ubuntu-release-upgrader-24.04.17/po/pam.po 2024-04-29 14:26:40.000000000 +0000 +++ ubuntu-release-upgrader-24.04.18/po/pam.po 2024-05-09 19:39:20.000000000 +0000 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: ubuntu-release-upgrader\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2024-04-29 16:03+0200\n" +"POT-Creation-Date: 2024-05-09 15:39-0400\n" "PO-Revision-Date: 2015-05-19 14:51+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Pampangan \n" @@ -897,11 +897,11 @@ msgid "Media Change" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:248 +#: ../DistUpgrade/DistUpgradeQuirks.py:252 msgid "Your graphics hardware may not be fully supported in Ubuntu 14.04." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:250 +#: ../DistUpgrade/DistUpgradeQuirks.py:254 msgid "" "Running the 'unity' desktop environment is not fully supported by your " "graphics hardware. You will maybe end up in a very slow environment after " @@ -911,11 +911,11 @@ "upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:274 +#: ../DistUpgrade/DistUpgradeQuirks.py:278 msgid "Your graphics hardware may not be fully supported in Ubuntu 12.04 LTS." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:276 +#: ../DistUpgrade/DistUpgradeQuirks.py:280 msgid "" "The support in Ubuntu 12.04 LTS for your Intel graphics hardware is limited " "and you may encounter problems after the upgrade. For more information see " @@ -923,13 +923,13 @@ "continue with the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:296 +#: ../DistUpgrade/DistUpgradeQuirks.py:300 msgid "" "Upgrading may reduce desktop effects, and performance in games and other " "graphically intensive programs." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:300 +#: ../DistUpgrade/DistUpgradeQuirks.py:304 msgid "" "This computer is currently using the AMD 'fglrx' graphics driver. No version " "of this driver is available that works with your hardware in Ubuntu 10.04 " @@ -938,12 +938,12 @@ "Do you want to continue?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:339 -#: ../DistUpgrade/DistUpgradeQuirks.py:408 +#: ../DistUpgrade/DistUpgradeQuirks.py:343 +#: ../DistUpgrade/DistUpgradeQuirks.py:412 msgid "Sorry, no more upgrades for this system" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:340 +#: ../DistUpgrade/DistUpgradeQuirks.py:344 #, python-format msgid "" "There will not be any further Ubuntu releases for this system's 'i386' " @@ -952,11 +952,11 @@ "Updates for Ubuntu %s will continue until %s." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:355 +#: ../DistUpgrade/DistUpgradeQuirks.py:359 msgid "No ARMv6 CPU" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:356 +#: ../DistUpgrade/DistUpgradeQuirks.py:360 msgid "" "Your system uses an ARM CPU that is older than the ARMv6 architecture. All " "packages in karmic were built with optimizations requiring ARMv6 as the " @@ -964,12 +964,12 @@ "Ubuntu release with this hardware." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:376 +#: ../DistUpgrade/DistUpgradeQuirks.py:380 msgid "" "Sorry, this storage driver is not supported in kernels for newer releases" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:378 +#: ../DistUpgrade/DistUpgradeQuirks.py:382 #, python-format msgid "" "There will not be any further Ubuntu releases that provide kernel support " @@ -979,7 +979,7 @@ "driver, remove the directory %s and try again." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:409 +#: ../DistUpgrade/DistUpgradeQuirks.py:413 #, python-format msgid "" "There will not be any further Ubuntu releases for this system's POWER8 " @@ -988,11 +988,11 @@ "Updates for Ubuntu %s will continue until %s." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:427 +#: ../DistUpgrade/DistUpgradeQuirks.py:431 msgid "No init available" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:428 +#: ../DistUpgrade/DistUpgradeQuirks.py:432 msgid "" "Your system appears to be a virtualised environment without an init daemon, " "e.g. Linux-VServer. Ubuntu 10.04 LTS cannot function within this type of " @@ -1002,11 +1002,11 @@ "Are you sure you want to continue?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:469 +#: ../DistUpgrade/DistUpgradeQuirks.py:473 msgid "The Robot Operating System (ROS) is installed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:470 +#: ../DistUpgrade/DistUpgradeQuirks.py:474 msgid "" "It appears that ROS is currently installed. Each ROS release is very strict " "about the versions of Ubuntu it supports, and Ubuntu upgrades can fail if " @@ -1023,11 +1023,11 @@ "Are you sure you want to continue?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:670 +#: ../DistUpgrade/DistUpgradeQuirks.py:674 msgid "Connection to the Snap Store failed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:671 +#: ../DistUpgrade/DistUpgradeQuirks.py:675 msgid "" "You have the package lxd installed but your system is unable to reach the " "Snap Store. lxd is now provided via a snap and the release upgrade will fail " @@ -1037,11 +1037,11 @@ "may want to configure a Snap Store proxy." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:686 +#: ../DistUpgrade/DistUpgradeQuirks.py:690 msgid "Connection to Snap Store failed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:687 +#: ../DistUpgrade/DistUpgradeQuirks.py:691 msgid "" "Your system does not have a connection to the Snap Store. For the best " "upgrade experience make sure that your system can connect to api.snapcraft." @@ -1049,11 +1049,11 @@ "Do you still want to continue with the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:696 +#: ../DistUpgrade/DistUpgradeQuirks.py:700 msgid "Outdated snapd package" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:697 +#: ../DistUpgrade/DistUpgradeQuirks.py:701 msgid "" "Your system does not have the latest version of snapd. Please update the " "version of snapd on your system to improve the upgrade experience.\n" @@ -1062,36 +1062,36 @@ #. now perform direct API calls to the store, requesting size #. information for each of the snaps needing installation -#: ../DistUpgrade/DistUpgradeQuirks.py:722 +#: ../DistUpgrade/DistUpgradeQuirks.py:726 msgid "Calculating snap size requirements" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:753 +#: ../DistUpgrade/DistUpgradeQuirks.py:757 msgid "Processing snap replacements" msgstr "" #. TODO: This status should be updated, but the time of #. this change to snap switch is post-translation freeze. -#: ../DistUpgrade/DistUpgradeQuirks.py:761 +#: ../DistUpgrade/DistUpgradeQuirks.py:765 #, python-format msgid "refreshing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:765 +#: ../DistUpgrade/DistUpgradeQuirks.py:769 #, python-format msgid "removing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:768 +#: ../DistUpgrade/DistUpgradeQuirks.py:772 #, python-format msgid "installing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:797 +#: ../DistUpgrade/DistUpgradeQuirks.py:801 msgid "PAE not enabled" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:798 +#: ../DistUpgrade/DistUpgradeQuirks.py:802 msgid "" "Your system uses a CPU that does not have PAE enabled. Ubuntu only supports " "non-PAE systems up to Ubuntu 12.04. To upgrade to a later version of Ubuntu, " @@ -1099,11 +1099,11 @@ "http://help.ubuntu.com/community/EnablingPAE" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1094 +#: ../DistUpgrade/DistUpgradeQuirks.py:1098 msgid "universe component not enabled" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1095 +#: ../DistUpgrade/DistUpgradeQuirks.py:1099 #, python-format msgid "" "You have the package %s installed which is a python2 package. python2 has " @@ -1115,37 +1115,48 @@ "universe component in /etc/apt/sources.list or remove %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1207 +#: ../DistUpgrade/DistUpgradeQuirks.py:1211 msgid "Checking for installed snaps" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1654 +#: ../DistUpgrade/DistUpgradeQuirks.py:1720 msgid "Cannot upgrade this system" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1655 +#: ../DistUpgrade/DistUpgradeQuirks.py:1721 msgid "" "Due to a bug in grub, this system cannot be safely upgraded at this time.\n" "\n" "See https://launchpad.net/bugs/2039172." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1721 +#: ../DistUpgrade/DistUpgradeQuirks.py:1787 #, python-brace-format msgid "Updates for Ubuntu {from_release.version} will " msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1731 +#: ../DistUpgrade/DistUpgradeQuirks.py:1797 msgid "Sorry, cannot upgrade this system to 24.04 LTS" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1734 +#: ../DistUpgrade/DistUpgradeQuirks.py:1800 msgid "" "The Raspberry Pi kernel for Ubuntu 24.04 LTS does not support the armhf " "architecture.\n" "\n" msgstr "" +#: ../DistUpgrade/DistUpgradeQuirks.py:1928 +#, python-brace-format +msgid "Sorry, cannot upgrade this system to {version}" +msgstr "" + +#: ../DistUpgrade/DistUpgradeQuirks.py:1931 +msgid "" +"Upgrades for desktop systems running TPM FDE are not currently supported. " +"Please see https://launchpad.net/bugs/2065229 for more information." +msgstr "" + #: ../DistUpgrade/DistUpgradeMain.py:62 msgid "" "Use frontend. Currently available: \n" diff -Nru ubuntu-release-upgrader-24.04.17/po/pl.po ubuntu-release-upgrader-24.04.18/po/pl.po --- ubuntu-release-upgrader-24.04.17/po/pl.po 2024-04-29 14:26:40.000000000 +0000 +++ ubuntu-release-upgrader-24.04.18/po/pl.po 2024-05-09 19:39:20.000000000 +0000 @@ -14,7 +14,7 @@ msgstr "" "Project-Id-Version: update-manager 0.87\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2024-04-29 16:03+0200\n" +"POT-Creation-Date: 2024-05-09 15:39-0400\n" "PO-Revision-Date: 2019-06-18 17:54+0000\n" "Last-Translator: GTriderXC \n" "Language-Team: Polish \n" @@ -1061,11 +1061,11 @@ msgid "Media Change" msgstr "Zmiana nośnika" -#: ../DistUpgrade/DistUpgradeQuirks.py:248 +#: ../DistUpgrade/DistUpgradeQuirks.py:252 msgid "Your graphics hardware may not be fully supported in Ubuntu 14.04." msgstr "Twoja karta graficzna może nie być w pełni wspierana w Ubuntu 14.04" -#: ../DistUpgrade/DistUpgradeQuirks.py:250 +#: ../DistUpgrade/DistUpgradeQuirks.py:254 msgid "" "Running the 'unity' desktop environment is not fully supported by your " "graphics hardware. You will maybe end up in a very slow environment after " @@ -1081,13 +1081,13 @@ "stronie: https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForUnity3D Czy " "pomimo to kontynuować proces aktualizacji?" -#: ../DistUpgrade/DistUpgradeQuirks.py:274 +#: ../DistUpgrade/DistUpgradeQuirks.py:278 msgid "Your graphics hardware may not be fully supported in Ubuntu 12.04 LTS." msgstr "" "Bieżąca karta graficzna może nie być w pełni obsługiwana przez Ubuntu 12.04 " "LTS." -#: ../DistUpgrade/DistUpgradeQuirks.py:276 +#: ../DistUpgrade/DistUpgradeQuirks.py:280 msgid "" "The support in Ubuntu 12.04 LTS for your Intel graphics hardware is limited " "and you may encounter problems after the upgrade. For more information see " @@ -1099,7 +1099,7 @@ "Aby uzyskać więcej informacji, proszę odwiedzić stronę https://wiki.ubuntu." "com/X/Bugs/UpdateManagerWarningForI8xx Kontynuować aktualizację?" -#: ../DistUpgrade/DistUpgradeQuirks.py:296 +#: ../DistUpgrade/DistUpgradeQuirks.py:300 msgid "" "Upgrading may reduce desktop effects, and performance in games and other " "graphically intensive programs." @@ -1107,7 +1107,7 @@ "Aktualizacja może ograniczyć wydajność systemu dla efektów pulpitu, gier " "oraz innych programów obciążających zasoby graficzne." -#: ../DistUpgrade/DistUpgradeQuirks.py:300 +#: ../DistUpgrade/DistUpgradeQuirks.py:304 msgid "" "This computer is currently using the AMD 'fglrx' graphics driver. No version " "of this driver is available that works with your hardware in Ubuntu 10.04 " @@ -1120,12 +1120,12 @@ "\n" "Kontynuować?" -#: ../DistUpgrade/DistUpgradeQuirks.py:339 -#: ../DistUpgrade/DistUpgradeQuirks.py:408 +#: ../DistUpgrade/DistUpgradeQuirks.py:343 +#: ../DistUpgrade/DistUpgradeQuirks.py:412 msgid "Sorry, no more upgrades for this system" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:340 +#: ../DistUpgrade/DistUpgradeQuirks.py:344 #, python-format msgid "" "There will not be any further Ubuntu releases for this system's 'i386' " @@ -1134,11 +1134,11 @@ "Updates for Ubuntu %s will continue until %s." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:355 +#: ../DistUpgrade/DistUpgradeQuirks.py:359 msgid "No ARMv6 CPU" msgstr "Brak procesora ARMv6" -#: ../DistUpgrade/DistUpgradeQuirks.py:356 +#: ../DistUpgrade/DistUpgradeQuirks.py:360 msgid "" "Your system uses an ARM CPU that is older than the ARMv6 architecture. All " "packages in karmic were built with optimizations requiring ARMv6 as the " @@ -1150,12 +1150,12 @@ "architektury ARMv6. Nie ma możliwości aktualizacji systemu do nowego wydania " "na tym sprzęcie." -#: ../DistUpgrade/DistUpgradeQuirks.py:376 +#: ../DistUpgrade/DistUpgradeQuirks.py:380 msgid "" "Sorry, this storage driver is not supported in kernels for newer releases" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:378 +#: ../DistUpgrade/DistUpgradeQuirks.py:382 #, python-format msgid "" "There will not be any further Ubuntu releases that provide kernel support " @@ -1165,7 +1165,7 @@ "driver, remove the directory %s and try again." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:409 +#: ../DistUpgrade/DistUpgradeQuirks.py:413 #, python-format msgid "" "There will not be any further Ubuntu releases for this system's POWER8 " @@ -1174,11 +1174,11 @@ "Updates for Ubuntu %s will continue until %s." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:427 +#: ../DistUpgrade/DistUpgradeQuirks.py:431 msgid "No init available" msgstr "Brak dostępnego procesu init" -#: ../DistUpgrade/DistUpgradeQuirks.py:428 +#: ../DistUpgrade/DistUpgradeQuirks.py:432 msgid "" "Your system appears to be a virtualised environment without an init daemon, " "e.g. Linux-VServer. Ubuntu 10.04 LTS cannot function within this type of " @@ -1192,11 +1192,11 @@ "tym typem środowiska, wymagając najpierw aktualizacji konfiguracji maszyny " "wirtualnej." -#: ../DistUpgrade/DistUpgradeQuirks.py:469 +#: ../DistUpgrade/DistUpgradeQuirks.py:473 msgid "The Robot Operating System (ROS) is installed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:470 +#: ../DistUpgrade/DistUpgradeQuirks.py:474 msgid "" "It appears that ROS is currently installed. Each ROS release is very strict " "about the versions of Ubuntu it supports, and Ubuntu upgrades can fail if " @@ -1213,11 +1213,11 @@ "Are you sure you want to continue?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:670 +#: ../DistUpgrade/DistUpgradeQuirks.py:674 msgid "Connection to the Snap Store failed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:671 +#: ../DistUpgrade/DistUpgradeQuirks.py:675 msgid "" "You have the package lxd installed but your system is unable to reach the " "Snap Store. lxd is now provided via a snap and the release upgrade will fail " @@ -1227,11 +1227,11 @@ "may want to configure a Snap Store proxy." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:686 +#: ../DistUpgrade/DistUpgradeQuirks.py:690 msgid "Connection to Snap Store failed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:687 +#: ../DistUpgrade/DistUpgradeQuirks.py:691 msgid "" "Your system does not have a connection to the Snap Store. For the best " "upgrade experience make sure that your system can connect to api.snapcraft." @@ -1239,11 +1239,11 @@ "Do you still want to continue with the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:696 +#: ../DistUpgrade/DistUpgradeQuirks.py:700 msgid "Outdated snapd package" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:697 +#: ../DistUpgrade/DistUpgradeQuirks.py:701 msgid "" "Your system does not have the latest version of snapd. Please update the " "version of snapd on your system to improve the upgrade experience.\n" @@ -1252,36 +1252,36 @@ #. now perform direct API calls to the store, requesting size #. information for each of the snaps needing installation -#: ../DistUpgrade/DistUpgradeQuirks.py:722 +#: ../DistUpgrade/DistUpgradeQuirks.py:726 msgid "Calculating snap size requirements" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:753 +#: ../DistUpgrade/DistUpgradeQuirks.py:757 msgid "Processing snap replacements" msgstr "" #. TODO: This status should be updated, but the time of #. this change to snap switch is post-translation freeze. -#: ../DistUpgrade/DistUpgradeQuirks.py:761 +#: ../DistUpgrade/DistUpgradeQuirks.py:765 #, python-format msgid "refreshing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:765 +#: ../DistUpgrade/DistUpgradeQuirks.py:769 #, python-format msgid "removing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:768 +#: ../DistUpgrade/DistUpgradeQuirks.py:772 #, python-format msgid "installing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:797 +#: ../DistUpgrade/DistUpgradeQuirks.py:801 msgid "PAE not enabled" msgstr "PAE nie jest włączony" -#: ../DistUpgrade/DistUpgradeQuirks.py:798 +#: ../DistUpgrade/DistUpgradeQuirks.py:802 msgid "" "Your system uses a CPU that does not have PAE enabled. Ubuntu only supports " "non-PAE systems up to Ubuntu 12.04. To upgrade to a later version of Ubuntu, " @@ -1294,11 +1294,11 @@ "informacji:\n" "http://help.ubuntu.com/community/EnablingPAE" -#: ../DistUpgrade/DistUpgradeQuirks.py:1094 +#: ../DistUpgrade/DistUpgradeQuirks.py:1098 msgid "universe component not enabled" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1095 +#: ../DistUpgrade/DistUpgradeQuirks.py:1099 #, python-format msgid "" "You have the package %s installed which is a python2 package. python2 has " @@ -1310,39 +1310,50 @@ "universe component in /etc/apt/sources.list or remove %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1207 +#: ../DistUpgrade/DistUpgradeQuirks.py:1211 msgid "Checking for installed snaps" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1654 +#: ../DistUpgrade/DistUpgradeQuirks.py:1720 #, fuzzy msgid "Cannot upgrade this system" msgstr "Nie można zaktualizować" -#: ../DistUpgrade/DistUpgradeQuirks.py:1655 +#: ../DistUpgrade/DistUpgradeQuirks.py:1721 msgid "" "Due to a bug in grub, this system cannot be safely upgraded at this time.\n" "\n" "See https://launchpad.net/bugs/2039172." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1721 +#: ../DistUpgrade/DistUpgradeQuirks.py:1787 #, python-brace-format msgid "Updates for Ubuntu {from_release.version} will " msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1731 +#: ../DistUpgrade/DistUpgradeQuirks.py:1797 #, fuzzy msgid "Sorry, cannot upgrade this system to 24.04 LTS" msgstr "Nie można zaktualizować" -#: ../DistUpgrade/DistUpgradeQuirks.py:1734 +#: ../DistUpgrade/DistUpgradeQuirks.py:1800 msgid "" "The Raspberry Pi kernel for Ubuntu 24.04 LTS does not support the armhf " "architecture.\n" "\n" msgstr "" +#: ../DistUpgrade/DistUpgradeQuirks.py:1928 +#, fuzzy, python-brace-format +msgid "Sorry, cannot upgrade this system to {version}" +msgstr "Nie można zaktualizować" + +#: ../DistUpgrade/DistUpgradeQuirks.py:1931 +msgid "" +"Upgrades for desktop systems running TPM FDE are not currently supported. " +"Please see https://launchpad.net/bugs/2065229 for more information." +msgstr "" + #: ../DistUpgrade/DistUpgradeMain.py:62 msgid "" "Use frontend. Currently available: \n" diff -Nru ubuntu-release-upgrader-24.04.17/po/ps.po ubuntu-release-upgrader-24.04.18/po/ps.po --- ubuntu-release-upgrader-24.04.17/po/ps.po 2024-04-29 14:26:40.000000000 +0000 +++ ubuntu-release-upgrader-24.04.18/po/ps.po 2024-05-09 19:39:20.000000000 +0000 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2024-04-29 16:03+0200\n" +"POT-Creation-Date: 2024-05-09 15:39-0400\n" "PO-Revision-Date: 2013-05-22 11:00+0000\n" "Last-Translator: Michael Terry \n" "Language-Team: Pushto \n" @@ -897,11 +897,11 @@ msgid "Media Change" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:248 +#: ../DistUpgrade/DistUpgradeQuirks.py:252 msgid "Your graphics hardware may not be fully supported in Ubuntu 14.04." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:250 +#: ../DistUpgrade/DistUpgradeQuirks.py:254 msgid "" "Running the 'unity' desktop environment is not fully supported by your " "graphics hardware. You will maybe end up in a very slow environment after " @@ -911,11 +911,11 @@ "upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:274 +#: ../DistUpgrade/DistUpgradeQuirks.py:278 msgid "Your graphics hardware may not be fully supported in Ubuntu 12.04 LTS." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:276 +#: ../DistUpgrade/DistUpgradeQuirks.py:280 msgid "" "The support in Ubuntu 12.04 LTS for your Intel graphics hardware is limited " "and you may encounter problems after the upgrade. For more information see " @@ -923,13 +923,13 @@ "continue with the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:296 +#: ../DistUpgrade/DistUpgradeQuirks.py:300 msgid "" "Upgrading may reduce desktop effects, and performance in games and other " "graphically intensive programs." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:300 +#: ../DistUpgrade/DistUpgradeQuirks.py:304 msgid "" "This computer is currently using the AMD 'fglrx' graphics driver. No version " "of this driver is available that works with your hardware in Ubuntu 10.04 " @@ -938,12 +938,12 @@ "Do you want to continue?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:339 -#: ../DistUpgrade/DistUpgradeQuirks.py:408 +#: ../DistUpgrade/DistUpgradeQuirks.py:343 +#: ../DistUpgrade/DistUpgradeQuirks.py:412 msgid "Sorry, no more upgrades for this system" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:340 +#: ../DistUpgrade/DistUpgradeQuirks.py:344 #, python-format msgid "" "There will not be any further Ubuntu releases for this system's 'i386' " @@ -952,11 +952,11 @@ "Updates for Ubuntu %s will continue until %s." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:355 +#: ../DistUpgrade/DistUpgradeQuirks.py:359 msgid "No ARMv6 CPU" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:356 +#: ../DistUpgrade/DistUpgradeQuirks.py:360 msgid "" "Your system uses an ARM CPU that is older than the ARMv6 architecture. All " "packages in karmic were built with optimizations requiring ARMv6 as the " @@ -964,12 +964,12 @@ "Ubuntu release with this hardware." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:376 +#: ../DistUpgrade/DistUpgradeQuirks.py:380 msgid "" "Sorry, this storage driver is not supported in kernels for newer releases" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:378 +#: ../DistUpgrade/DistUpgradeQuirks.py:382 #, python-format msgid "" "There will not be any further Ubuntu releases that provide kernel support " @@ -979,7 +979,7 @@ "driver, remove the directory %s and try again." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:409 +#: ../DistUpgrade/DistUpgradeQuirks.py:413 #, python-format msgid "" "There will not be any further Ubuntu releases for this system's POWER8 " @@ -988,11 +988,11 @@ "Updates for Ubuntu %s will continue until %s." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:427 +#: ../DistUpgrade/DistUpgradeQuirks.py:431 msgid "No init available" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:428 +#: ../DistUpgrade/DistUpgradeQuirks.py:432 msgid "" "Your system appears to be a virtualised environment without an init daemon, " "e.g. Linux-VServer. Ubuntu 10.04 LTS cannot function within this type of " @@ -1002,11 +1002,11 @@ "Are you sure you want to continue?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:469 +#: ../DistUpgrade/DistUpgradeQuirks.py:473 msgid "The Robot Operating System (ROS) is installed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:470 +#: ../DistUpgrade/DistUpgradeQuirks.py:474 msgid "" "It appears that ROS is currently installed. Each ROS release is very strict " "about the versions of Ubuntu it supports, and Ubuntu upgrades can fail if " @@ -1023,11 +1023,11 @@ "Are you sure you want to continue?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:670 +#: ../DistUpgrade/DistUpgradeQuirks.py:674 msgid "Connection to the Snap Store failed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:671 +#: ../DistUpgrade/DistUpgradeQuirks.py:675 msgid "" "You have the package lxd installed but your system is unable to reach the " "Snap Store. lxd is now provided via a snap and the release upgrade will fail " @@ -1037,11 +1037,11 @@ "may want to configure a Snap Store proxy." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:686 +#: ../DistUpgrade/DistUpgradeQuirks.py:690 msgid "Connection to Snap Store failed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:687 +#: ../DistUpgrade/DistUpgradeQuirks.py:691 msgid "" "Your system does not have a connection to the Snap Store. For the best " "upgrade experience make sure that your system can connect to api.snapcraft." @@ -1049,11 +1049,11 @@ "Do you still want to continue with the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:696 +#: ../DistUpgrade/DistUpgradeQuirks.py:700 msgid "Outdated snapd package" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:697 +#: ../DistUpgrade/DistUpgradeQuirks.py:701 msgid "" "Your system does not have the latest version of snapd. Please update the " "version of snapd on your system to improve the upgrade experience.\n" @@ -1062,36 +1062,36 @@ #. now perform direct API calls to the store, requesting size #. information for each of the snaps needing installation -#: ../DistUpgrade/DistUpgradeQuirks.py:722 +#: ../DistUpgrade/DistUpgradeQuirks.py:726 msgid "Calculating snap size requirements" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:753 +#: ../DistUpgrade/DistUpgradeQuirks.py:757 msgid "Processing snap replacements" msgstr "" #. TODO: This status should be updated, but the time of #. this change to snap switch is post-translation freeze. -#: ../DistUpgrade/DistUpgradeQuirks.py:761 +#: ../DistUpgrade/DistUpgradeQuirks.py:765 #, python-format msgid "refreshing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:765 +#: ../DistUpgrade/DistUpgradeQuirks.py:769 #, python-format msgid "removing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:768 +#: ../DistUpgrade/DistUpgradeQuirks.py:772 #, python-format msgid "installing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:797 +#: ../DistUpgrade/DistUpgradeQuirks.py:801 msgid "PAE not enabled" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:798 +#: ../DistUpgrade/DistUpgradeQuirks.py:802 msgid "" "Your system uses a CPU that does not have PAE enabled. Ubuntu only supports " "non-PAE systems up to Ubuntu 12.04. To upgrade to a later version of Ubuntu, " @@ -1099,11 +1099,11 @@ "http://help.ubuntu.com/community/EnablingPAE" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1094 +#: ../DistUpgrade/DistUpgradeQuirks.py:1098 msgid "universe component not enabled" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1095 +#: ../DistUpgrade/DistUpgradeQuirks.py:1099 #, python-format msgid "" "You have the package %s installed which is a python2 package. python2 has " @@ -1115,37 +1115,48 @@ "universe component in /etc/apt/sources.list or remove %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1207 +#: ../DistUpgrade/DistUpgradeQuirks.py:1211 msgid "Checking for installed snaps" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1654 +#: ../DistUpgrade/DistUpgradeQuirks.py:1720 msgid "Cannot upgrade this system" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1655 +#: ../DistUpgrade/DistUpgradeQuirks.py:1721 msgid "" "Due to a bug in grub, this system cannot be safely upgraded at this time.\n" "\n" "See https://launchpad.net/bugs/2039172." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1721 +#: ../DistUpgrade/DistUpgradeQuirks.py:1787 #, python-brace-format msgid "Updates for Ubuntu {from_release.version} will " msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1731 +#: ../DistUpgrade/DistUpgradeQuirks.py:1797 msgid "Sorry, cannot upgrade this system to 24.04 LTS" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1734 +#: ../DistUpgrade/DistUpgradeQuirks.py:1800 msgid "" "The Raspberry Pi kernel for Ubuntu 24.04 LTS does not support the armhf " "architecture.\n" "\n" msgstr "" +#: ../DistUpgrade/DistUpgradeQuirks.py:1928 +#, python-brace-format +msgid "Sorry, cannot upgrade this system to {version}" +msgstr "" + +#: ../DistUpgrade/DistUpgradeQuirks.py:1931 +msgid "" +"Upgrades for desktop systems running TPM FDE are not currently supported. " +"Please see https://launchpad.net/bugs/2065229 for more information." +msgstr "" + #: ../DistUpgrade/DistUpgradeMain.py:62 msgid "" "Use frontend. Currently available: \n" diff -Nru ubuntu-release-upgrader-24.04.17/po/pt.po ubuntu-release-upgrader-24.04.18/po/pt.po --- ubuntu-release-upgrader-24.04.17/po/pt.po 2024-04-29 14:26:40.000000000 +0000 +++ ubuntu-release-upgrader-24.04.18/po/pt.po 2024-05-09 19:39:21.000000000 +0000 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2024-04-29 16:03+0200\n" +"POT-Creation-Date: 2024-05-09 15:39-0400\n" "PO-Revision-Date: 2019-06-18 17:55+0000\n" "Last-Translator: Brian Murray \n" "Language-Team: Ubuntu Portuguese Team \n" @@ -1079,12 +1079,12 @@ msgid "Media Change" msgstr "Alterar Media" -#: ../DistUpgrade/DistUpgradeQuirks.py:248 +#: ../DistUpgrade/DistUpgradeQuirks.py:252 msgid "Your graphics hardware may not be fully supported in Ubuntu 14.04." msgstr "" "O seu hardware gráfico pode não ser completamente suportado no Ubuntu 14.04." -#: ../DistUpgrade/DistUpgradeQuirks.py:250 +#: ../DistUpgrade/DistUpgradeQuirks.py:254 msgid "" "Running the 'unity' desktop environment is not fully supported by your " "graphics hardware. You will maybe end up in a very slow environment after " @@ -1099,12 +1099,12 @@ "informações consultar https://wiki.ubuntu.com/X/Bugs/" "UpdateManagerWarningForUnity3D Deseja ainda continuar com a atualização?" -#: ../DistUpgrade/DistUpgradeQuirks.py:274 +#: ../DistUpgrade/DistUpgradeQuirks.py:278 msgid "Your graphics hardware may not be fully supported in Ubuntu 12.04 LTS." msgstr "" "A sua placa gráfica pode não ser totalmente suportada no Ubuntu 12.04 LTS." -#: ../DistUpgrade/DistUpgradeQuirks.py:276 +#: ../DistUpgrade/DistUpgradeQuirks.py:280 msgid "" "The support in Ubuntu 12.04 LTS for your Intel graphics hardware is limited " "and you may encounter problems after the upgrade. For more information see " @@ -1116,7 +1116,7 @@ "consulte https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForI8xx Deseja " "prosseguir com a atualização?" -#: ../DistUpgrade/DistUpgradeQuirks.py:296 +#: ../DistUpgrade/DistUpgradeQuirks.py:300 msgid "" "Upgrading may reduce desktop effects, and performance in games and other " "graphically intensive programs." @@ -1124,7 +1124,7 @@ "Atualizar pode reduzir os efeitos do ambiente de trabalho, bem como o " "desempenho em jogos e outros programas graficamente exigentes." -#: ../DistUpgrade/DistUpgradeQuirks.py:300 +#: ../DistUpgrade/DistUpgradeQuirks.py:304 msgid "" "This computer is currently using the AMD 'fglrx' graphics driver. No version " "of this driver is available that works with your hardware in Ubuntu 10.04 " @@ -1138,12 +1138,12 @@ "\n" "Pretende continuar?" -#: ../DistUpgrade/DistUpgradeQuirks.py:339 -#: ../DistUpgrade/DistUpgradeQuirks.py:408 +#: ../DistUpgrade/DistUpgradeQuirks.py:343 +#: ../DistUpgrade/DistUpgradeQuirks.py:412 msgid "Sorry, no more upgrades for this system" msgstr "Desculpe, não há mais atualizações para este sistema" -#: ../DistUpgrade/DistUpgradeQuirks.py:340 +#: ../DistUpgrade/DistUpgradeQuirks.py:344 #, python-format msgid "" "There will not be any further Ubuntu releases for this system's 'i386' " @@ -1155,11 +1155,11 @@ "\n" "As atualizações para o Ubuntu %s continuarão até %s." -#: ../DistUpgrade/DistUpgradeQuirks.py:355 +#: ../DistUpgrade/DistUpgradeQuirks.py:359 msgid "No ARMv6 CPU" msgstr "Sem CPU ARMv6" -#: ../DistUpgrade/DistUpgradeQuirks.py:356 +#: ../DistUpgrade/DistUpgradeQuirks.py:360 msgid "" "Your system uses an ARM CPU that is older than the ARMv6 architecture. All " "packages in karmic were built with optimizations requiring ARMv6 as the " @@ -1171,12 +1171,12 @@ "mínima. Não é possível fazer upgrade para uma nova versão de Ubuntu com este " "hardware." -#: ../DistUpgrade/DistUpgradeQuirks.py:376 +#: ../DistUpgrade/DistUpgradeQuirks.py:380 msgid "" "Sorry, this storage driver is not supported in kernels for newer releases" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:378 +#: ../DistUpgrade/DistUpgradeQuirks.py:382 #, python-format msgid "" "There will not be any further Ubuntu releases that provide kernel support " @@ -1186,7 +1186,7 @@ "driver, remove the directory %s and try again." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:409 +#: ../DistUpgrade/DistUpgradeQuirks.py:413 #, fuzzy, python-format msgid "" "There will not be any further Ubuntu releases for this system's POWER8 " @@ -1198,11 +1198,11 @@ "\n" "As atualizações para o Ubuntu %s continuarão até %s." -#: ../DistUpgrade/DistUpgradeQuirks.py:427 +#: ../DistUpgrade/DistUpgradeQuirks.py:431 msgid "No init available" msgstr "Sem inicialização disponível" -#: ../DistUpgrade/DistUpgradeQuirks.py:428 +#: ../DistUpgrade/DistUpgradeQuirks.py:432 msgid "" "Your system appears to be a virtualised environment without an init daemon, " "e.g. Linux-VServer. Ubuntu 10.04 LTS cannot function within this type of " @@ -1218,11 +1218,11 @@ "\n" "De certeza que quer continuar?" -#: ../DistUpgrade/DistUpgradeQuirks.py:469 +#: ../DistUpgrade/DistUpgradeQuirks.py:473 msgid "The Robot Operating System (ROS) is installed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:470 +#: ../DistUpgrade/DistUpgradeQuirks.py:474 msgid "" "It appears that ROS is currently installed. Each ROS release is very strict " "about the versions of Ubuntu it supports, and Ubuntu upgrades can fail if " @@ -1239,12 +1239,12 @@ "Are you sure you want to continue?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:670 +#: ../DistUpgrade/DistUpgradeQuirks.py:674 #, fuzzy msgid "Connection to the Snap Store failed" msgstr "Falhou a ligação com a \"Snap Store\"" -#: ../DistUpgrade/DistUpgradeQuirks.py:671 +#: ../DistUpgrade/DistUpgradeQuirks.py:675 msgid "" "You have the package lxd installed but your system is unable to reach the " "Snap Store. lxd is now provided via a snap and the release upgrade will fail " @@ -1254,11 +1254,11 @@ "may want to configure a Snap Store proxy." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:686 +#: ../DistUpgrade/DistUpgradeQuirks.py:690 msgid "Connection to Snap Store failed" msgstr "Falhou a ligação com a \"Snap Store\"" -#: ../DistUpgrade/DistUpgradeQuirks.py:687 +#: ../DistUpgrade/DistUpgradeQuirks.py:691 msgid "" "Your system does not have a connection to the Snap Store. For the best " "upgrade experience make sure that your system can connect to api.snapcraft." @@ -1270,11 +1270,11 @@ "io.\n" "Ainda deseja continuar com a atualização?" -#: ../DistUpgrade/DistUpgradeQuirks.py:696 +#: ../DistUpgrade/DistUpgradeQuirks.py:700 msgid "Outdated snapd package" msgstr "Pacote snapd desatualizado" -#: ../DistUpgrade/DistUpgradeQuirks.py:697 +#: ../DistUpgrade/DistUpgradeQuirks.py:701 msgid "" "Your system does not have the latest version of snapd. Please update the " "version of snapd on your system to improve the upgrade experience.\n" @@ -1286,36 +1286,36 @@ #. now perform direct API calls to the store, requesting size #. information for each of the snaps needing installation -#: ../DistUpgrade/DistUpgradeQuirks.py:722 +#: ../DistUpgrade/DistUpgradeQuirks.py:726 msgid "Calculating snap size requirements" msgstr "Calculando requisitos de tamanho de encaixe" -#: ../DistUpgrade/DistUpgradeQuirks.py:753 +#: ../DistUpgrade/DistUpgradeQuirks.py:757 msgid "Processing snap replacements" msgstr "Processando substituições de encaixe" #. TODO: This status should be updated, but the time of #. this change to snap switch is post-translation freeze. -#: ../DistUpgrade/DistUpgradeQuirks.py:761 +#: ../DistUpgrade/DistUpgradeQuirks.py:765 #, python-format msgid "refreshing snap %s" msgstr "a atualizar o snap %s" -#: ../DistUpgrade/DistUpgradeQuirks.py:765 +#: ../DistUpgrade/DistUpgradeQuirks.py:769 #, fuzzy, python-format msgid "removing snap %s" msgstr "a atualizar o snap %s" -#: ../DistUpgrade/DistUpgradeQuirks.py:768 +#: ../DistUpgrade/DistUpgradeQuirks.py:772 #, python-format msgid "installing snap %s" msgstr "a instalar o snap %s" -#: ../DistUpgrade/DistUpgradeQuirks.py:797 +#: ../DistUpgrade/DistUpgradeQuirks.py:801 msgid "PAE not enabled" msgstr "PAE não ativo" -#: ../DistUpgrade/DistUpgradeQuirks.py:798 +#: ../DistUpgrade/DistUpgradeQuirks.py:802 msgid "" "Your system uses a CPU that does not have PAE enabled. Ubuntu only supports " "non-PAE systems up to Ubuntu 12.04. To upgrade to a later version of Ubuntu, " @@ -1327,11 +1327,11 @@ "posterior, tem de ativar PAE (se isso for possível) veja:\n" "http://help.ubuntu.com/community/EnablingPAE" -#: ../DistUpgrade/DistUpgradeQuirks.py:1094 +#: ../DistUpgrade/DistUpgradeQuirks.py:1098 msgid "universe component not enabled" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1095 +#: ../DistUpgrade/DistUpgradeQuirks.py:1099 #, python-format msgid "" "You have the package %s installed which is a python2 package. python2 has " @@ -1343,39 +1343,50 @@ "universe component in /etc/apt/sources.list or remove %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1207 +#: ../DistUpgrade/DistUpgradeQuirks.py:1211 msgid "Checking for installed snaps" msgstr "Procurar por snaps instalados" -#: ../DistUpgrade/DistUpgradeQuirks.py:1654 +#: ../DistUpgrade/DistUpgradeQuirks.py:1720 #, fuzzy msgid "Cannot upgrade this system" msgstr "Impossível atualizar a versão" -#: ../DistUpgrade/DistUpgradeQuirks.py:1655 +#: ../DistUpgrade/DistUpgradeQuirks.py:1721 msgid "" "Due to a bug in grub, this system cannot be safely upgraded at this time.\n" "\n" "See https://launchpad.net/bugs/2039172." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1721 +#: ../DistUpgrade/DistUpgradeQuirks.py:1787 #, python-brace-format msgid "Updates for Ubuntu {from_release.version} will " msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1731 +#: ../DistUpgrade/DistUpgradeQuirks.py:1797 #, fuzzy msgid "Sorry, cannot upgrade this system to 24.04 LTS" msgstr "Impossível atualizar a versão" -#: ../DistUpgrade/DistUpgradeQuirks.py:1734 +#: ../DistUpgrade/DistUpgradeQuirks.py:1800 msgid "" "The Raspberry Pi kernel for Ubuntu 24.04 LTS does not support the armhf " "architecture.\n" "\n" msgstr "" +#: ../DistUpgrade/DistUpgradeQuirks.py:1928 +#, fuzzy, python-brace-format +msgid "Sorry, cannot upgrade this system to {version}" +msgstr "Impossível atualizar a versão" + +#: ../DistUpgrade/DistUpgradeQuirks.py:1931 +msgid "" +"Upgrades for desktop systems running TPM FDE are not currently supported. " +"Please see https://launchpad.net/bugs/2065229 for more information." +msgstr "" + #: ../DistUpgrade/DistUpgradeMain.py:62 msgid "" "Use frontend. Currently available: \n" diff -Nru ubuntu-release-upgrader-24.04.17/po/pt_BR.po ubuntu-release-upgrader-24.04.18/po/pt_BR.po --- ubuntu-release-upgrader-24.04.17/po/pt_BR.po 2024-04-29 14:26:40.000000000 +0000 +++ ubuntu-release-upgrader-24.04.18/po/pt_BR.po 2024-05-09 19:39:21.000000000 +0000 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2024-04-29 16:03+0200\n" +"POT-Creation-Date: 2024-05-09 15:39-0400\n" "PO-Revision-Date: 2019-06-18 17:53+0000\n" "Last-Translator: Brian Murray \n" "Language-Team: Ubuntu-BR \n" @@ -1023,11 +1023,11 @@ msgid "Media Change" msgstr "Mudança de mídia" -#: ../DistUpgrade/DistUpgradeQuirks.py:248 +#: ../DistUpgrade/DistUpgradeQuirks.py:252 msgid "Your graphics hardware may not be fully supported in Ubuntu 14.04." msgstr "O seu hardware gráfico pode não ter suporte completo no Ubuntu 14.04." -#: ../DistUpgrade/DistUpgradeQuirks.py:250 +#: ../DistUpgrade/DistUpgradeQuirks.py:254 msgid "" "Running the 'unity' desktop environment is not fully supported by your " "graphics hardware. You will maybe end up in a very slow environment after " @@ -1043,13 +1043,13 @@ "UpdateManagerWarningForUnity3D Você tem certeza de que deseja continuar com " "a atualização?" -#: ../DistUpgrade/DistUpgradeQuirks.py:274 +#: ../DistUpgrade/DistUpgradeQuirks.py:278 msgid "Your graphics hardware may not be fully supported in Ubuntu 12.04 LTS." msgstr "" "Seu hardware de gráficos pode não ser totalmente suportado no Ubuntu 12.04 " "LTS." -#: ../DistUpgrade/DistUpgradeQuirks.py:276 +#: ../DistUpgrade/DistUpgradeQuirks.py:280 msgid "" "The support in Ubuntu 12.04 LTS for your Intel graphics hardware is limited " "and you may encounter problems after the upgrade. For more information see " @@ -1061,7 +1061,7 @@ "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForI8xx Você deseja " "continuar com a atualização?" -#: ../DistUpgrade/DistUpgradeQuirks.py:296 +#: ../DistUpgrade/DistUpgradeQuirks.py:300 msgid "" "Upgrading may reduce desktop effects, and performance in games and other " "graphically intensive programs." @@ -1069,7 +1069,7 @@ "Atualizar pode reduzir efeitos da área de trabalho e performance em jogos e " "outros programas que usam gráficos intensamente." -#: ../DistUpgrade/DistUpgradeQuirks.py:300 +#: ../DistUpgrade/DistUpgradeQuirks.py:304 msgid "" "This computer is currently using the AMD 'fglrx' graphics driver. No version " "of this driver is available that works with your hardware in Ubuntu 10.04 " @@ -1083,12 +1083,12 @@ "\n" "Você deseja continuar?" -#: ../DistUpgrade/DistUpgradeQuirks.py:339 -#: ../DistUpgrade/DistUpgradeQuirks.py:408 +#: ../DistUpgrade/DistUpgradeQuirks.py:343 +#: ../DistUpgrade/DistUpgradeQuirks.py:412 msgid "Sorry, no more upgrades for this system" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:340 +#: ../DistUpgrade/DistUpgradeQuirks.py:344 #, python-format msgid "" "There will not be any further Ubuntu releases for this system's 'i386' " @@ -1097,11 +1097,11 @@ "Updates for Ubuntu %s will continue until %s." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:355 +#: ../DistUpgrade/DistUpgradeQuirks.py:359 msgid "No ARMv6 CPU" msgstr "Nenhuma CPU ARMv6" -#: ../DistUpgrade/DistUpgradeQuirks.py:356 +#: ../DistUpgrade/DistUpgradeQuirks.py:360 msgid "" "Your system uses an ARM CPU that is older than the ARMv6 architecture. All " "packages in karmic were built with optimizations requiring ARMv6 as the " @@ -1113,12 +1113,12 @@ "mínimo a arquitetura ARMv6. Não é possível atualizar seu sistema para uma " "versão mais nova do Ubuntu com este hardware." -#: ../DistUpgrade/DistUpgradeQuirks.py:376 +#: ../DistUpgrade/DistUpgradeQuirks.py:380 msgid "" "Sorry, this storage driver is not supported in kernels for newer releases" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:378 +#: ../DistUpgrade/DistUpgradeQuirks.py:382 #, python-format msgid "" "There will not be any further Ubuntu releases that provide kernel support " @@ -1128,7 +1128,7 @@ "driver, remove the directory %s and try again." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:409 +#: ../DistUpgrade/DistUpgradeQuirks.py:413 #, python-format msgid "" "There will not be any further Ubuntu releases for this system's POWER8 " @@ -1137,11 +1137,11 @@ "Updates for Ubuntu %s will continue until %s." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:427 +#: ../DistUpgrade/DistUpgradeQuirks.py:431 msgid "No init available" msgstr "Sem inicialização disponível" -#: ../DistUpgrade/DistUpgradeQuirks.py:428 +#: ../DistUpgrade/DistUpgradeQuirks.py:432 msgid "" "Your system appears to be a virtualised environment without an init daemon, " "e.g. Linux-VServer. Ubuntu 10.04 LTS cannot function within this type of " @@ -1157,11 +1157,11 @@ "\n" "Você tem certeza que deseja continuar?" -#: ../DistUpgrade/DistUpgradeQuirks.py:469 +#: ../DistUpgrade/DistUpgradeQuirks.py:473 msgid "The Robot Operating System (ROS) is installed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:470 +#: ../DistUpgrade/DistUpgradeQuirks.py:474 msgid "" "It appears that ROS is currently installed. Each ROS release is very strict " "about the versions of Ubuntu it supports, and Ubuntu upgrades can fail if " @@ -1178,11 +1178,11 @@ "Are you sure you want to continue?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:670 +#: ../DistUpgrade/DistUpgradeQuirks.py:674 msgid "Connection to the Snap Store failed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:671 +#: ../DistUpgrade/DistUpgradeQuirks.py:675 msgid "" "You have the package lxd installed but your system is unable to reach the " "Snap Store. lxd is now provided via a snap and the release upgrade will fail " @@ -1192,11 +1192,11 @@ "may want to configure a Snap Store proxy." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:686 +#: ../DistUpgrade/DistUpgradeQuirks.py:690 msgid "Connection to Snap Store failed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:687 +#: ../DistUpgrade/DistUpgradeQuirks.py:691 msgid "" "Your system does not have a connection to the Snap Store. For the best " "upgrade experience make sure that your system can connect to api.snapcraft." @@ -1204,11 +1204,11 @@ "Do you still want to continue with the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:696 +#: ../DistUpgrade/DistUpgradeQuirks.py:700 msgid "Outdated snapd package" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:697 +#: ../DistUpgrade/DistUpgradeQuirks.py:701 msgid "" "Your system does not have the latest version of snapd. Please update the " "version of snapd on your system to improve the upgrade experience.\n" @@ -1217,36 +1217,36 @@ #. now perform direct API calls to the store, requesting size #. information for each of the snaps needing installation -#: ../DistUpgrade/DistUpgradeQuirks.py:722 +#: ../DistUpgrade/DistUpgradeQuirks.py:726 msgid "Calculating snap size requirements" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:753 +#: ../DistUpgrade/DistUpgradeQuirks.py:757 msgid "Processing snap replacements" msgstr "" #. TODO: This status should be updated, but the time of #. this change to snap switch is post-translation freeze. -#: ../DistUpgrade/DistUpgradeQuirks.py:761 +#: ../DistUpgrade/DistUpgradeQuirks.py:765 #, python-format msgid "refreshing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:765 +#: ../DistUpgrade/DistUpgradeQuirks.py:769 #, python-format msgid "removing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:768 +#: ../DistUpgrade/DistUpgradeQuirks.py:772 #, python-format msgid "installing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:797 +#: ../DistUpgrade/DistUpgradeQuirks.py:801 msgid "PAE not enabled" msgstr "PAE não habilitado" -#: ../DistUpgrade/DistUpgradeQuirks.py:798 +#: ../DistUpgrade/DistUpgradeQuirks.py:802 msgid "" "Your system uses a CPU that does not have PAE enabled. Ubuntu only supports " "non-PAE systems up to Ubuntu 12.04. To upgrade to a later version of Ubuntu, " @@ -1259,11 +1259,11 @@ "veja:\n" "http://help.ubuntu.com/community/EnablingPAE" -#: ../DistUpgrade/DistUpgradeQuirks.py:1094 +#: ../DistUpgrade/DistUpgradeQuirks.py:1098 msgid "universe component not enabled" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1095 +#: ../DistUpgrade/DistUpgradeQuirks.py:1099 #, python-format msgid "" "You have the package %s installed which is a python2 package. python2 has " @@ -1275,39 +1275,50 @@ "universe component in /etc/apt/sources.list or remove %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1207 +#: ../DistUpgrade/DistUpgradeQuirks.py:1211 msgid "Checking for installed snaps" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1654 +#: ../DistUpgrade/DistUpgradeQuirks.py:1720 #, fuzzy msgid "Cannot upgrade this system" msgstr "Não é possível atualizar" -#: ../DistUpgrade/DistUpgradeQuirks.py:1655 +#: ../DistUpgrade/DistUpgradeQuirks.py:1721 msgid "" "Due to a bug in grub, this system cannot be safely upgraded at this time.\n" "\n" "See https://launchpad.net/bugs/2039172." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1721 +#: ../DistUpgrade/DistUpgradeQuirks.py:1787 #, python-brace-format msgid "Updates for Ubuntu {from_release.version} will " msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1731 +#: ../DistUpgrade/DistUpgradeQuirks.py:1797 #, fuzzy msgid "Sorry, cannot upgrade this system to 24.04 LTS" msgstr "Não é possível atualizar" -#: ../DistUpgrade/DistUpgradeQuirks.py:1734 +#: ../DistUpgrade/DistUpgradeQuirks.py:1800 msgid "" "The Raspberry Pi kernel for Ubuntu 24.04 LTS does not support the armhf " "architecture.\n" "\n" msgstr "" +#: ../DistUpgrade/DistUpgradeQuirks.py:1928 +#, fuzzy, python-brace-format +msgid "Sorry, cannot upgrade this system to {version}" +msgstr "Não é possível atualizar" + +#: ../DistUpgrade/DistUpgradeQuirks.py:1931 +msgid "" +"Upgrades for desktop systems running TPM FDE are not currently supported. " +"Please see https://launchpad.net/bugs/2065229 for more information." +msgstr "" + #: ../DistUpgrade/DistUpgradeMain.py:62 msgid "" "Use frontend. Currently available: \n" diff -Nru ubuntu-release-upgrader-24.04.17/po/qu.po ubuntu-release-upgrader-24.04.18/po/qu.po --- ubuntu-release-upgrader-24.04.17/po/qu.po 2024-04-29 14:26:40.000000000 +0000 +++ ubuntu-release-upgrader-24.04.18/po/qu.po 2024-05-09 19:39:21.000000000 +0000 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2024-04-29 16:03+0200\n" +"POT-Creation-Date: 2024-05-09 15:39-0400\n" "PO-Revision-Date: 2013-05-22 11:00+0000\n" "Last-Translator: Michael Terry \n" "Language-Team: Quechua \n" @@ -897,11 +897,11 @@ msgid "Media Change" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:248 +#: ../DistUpgrade/DistUpgradeQuirks.py:252 msgid "Your graphics hardware may not be fully supported in Ubuntu 14.04." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:250 +#: ../DistUpgrade/DistUpgradeQuirks.py:254 msgid "" "Running the 'unity' desktop environment is not fully supported by your " "graphics hardware. You will maybe end up in a very slow environment after " @@ -911,11 +911,11 @@ "upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:274 +#: ../DistUpgrade/DistUpgradeQuirks.py:278 msgid "Your graphics hardware may not be fully supported in Ubuntu 12.04 LTS." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:276 +#: ../DistUpgrade/DistUpgradeQuirks.py:280 msgid "" "The support in Ubuntu 12.04 LTS for your Intel graphics hardware is limited " "and you may encounter problems after the upgrade. For more information see " @@ -923,13 +923,13 @@ "continue with the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:296 +#: ../DistUpgrade/DistUpgradeQuirks.py:300 msgid "" "Upgrading may reduce desktop effects, and performance in games and other " "graphically intensive programs." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:300 +#: ../DistUpgrade/DistUpgradeQuirks.py:304 msgid "" "This computer is currently using the AMD 'fglrx' graphics driver. No version " "of this driver is available that works with your hardware in Ubuntu 10.04 " @@ -938,12 +938,12 @@ "Do you want to continue?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:339 -#: ../DistUpgrade/DistUpgradeQuirks.py:408 +#: ../DistUpgrade/DistUpgradeQuirks.py:343 +#: ../DistUpgrade/DistUpgradeQuirks.py:412 msgid "Sorry, no more upgrades for this system" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:340 +#: ../DistUpgrade/DistUpgradeQuirks.py:344 #, python-format msgid "" "There will not be any further Ubuntu releases for this system's 'i386' " @@ -952,11 +952,11 @@ "Updates for Ubuntu %s will continue until %s." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:355 +#: ../DistUpgrade/DistUpgradeQuirks.py:359 msgid "No ARMv6 CPU" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:356 +#: ../DistUpgrade/DistUpgradeQuirks.py:360 msgid "" "Your system uses an ARM CPU that is older than the ARMv6 architecture. All " "packages in karmic were built with optimizations requiring ARMv6 as the " @@ -964,12 +964,12 @@ "Ubuntu release with this hardware." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:376 +#: ../DistUpgrade/DistUpgradeQuirks.py:380 msgid "" "Sorry, this storage driver is not supported in kernels for newer releases" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:378 +#: ../DistUpgrade/DistUpgradeQuirks.py:382 #, python-format msgid "" "There will not be any further Ubuntu releases that provide kernel support " @@ -979,7 +979,7 @@ "driver, remove the directory %s and try again." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:409 +#: ../DistUpgrade/DistUpgradeQuirks.py:413 #, python-format msgid "" "There will not be any further Ubuntu releases for this system's POWER8 " @@ -988,11 +988,11 @@ "Updates for Ubuntu %s will continue until %s." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:427 +#: ../DistUpgrade/DistUpgradeQuirks.py:431 msgid "No init available" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:428 +#: ../DistUpgrade/DistUpgradeQuirks.py:432 msgid "" "Your system appears to be a virtualised environment without an init daemon, " "e.g. Linux-VServer. Ubuntu 10.04 LTS cannot function within this type of " @@ -1002,11 +1002,11 @@ "Are you sure you want to continue?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:469 +#: ../DistUpgrade/DistUpgradeQuirks.py:473 msgid "The Robot Operating System (ROS) is installed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:470 +#: ../DistUpgrade/DistUpgradeQuirks.py:474 msgid "" "It appears that ROS is currently installed. Each ROS release is very strict " "about the versions of Ubuntu it supports, and Ubuntu upgrades can fail if " @@ -1023,11 +1023,11 @@ "Are you sure you want to continue?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:670 +#: ../DistUpgrade/DistUpgradeQuirks.py:674 msgid "Connection to the Snap Store failed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:671 +#: ../DistUpgrade/DistUpgradeQuirks.py:675 msgid "" "You have the package lxd installed but your system is unable to reach the " "Snap Store. lxd is now provided via a snap and the release upgrade will fail " @@ -1037,11 +1037,11 @@ "may want to configure a Snap Store proxy." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:686 +#: ../DistUpgrade/DistUpgradeQuirks.py:690 msgid "Connection to Snap Store failed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:687 +#: ../DistUpgrade/DistUpgradeQuirks.py:691 msgid "" "Your system does not have a connection to the Snap Store. For the best " "upgrade experience make sure that your system can connect to api.snapcraft." @@ -1049,11 +1049,11 @@ "Do you still want to continue with the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:696 +#: ../DistUpgrade/DistUpgradeQuirks.py:700 msgid "Outdated snapd package" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:697 +#: ../DistUpgrade/DistUpgradeQuirks.py:701 msgid "" "Your system does not have the latest version of snapd. Please update the " "version of snapd on your system to improve the upgrade experience.\n" @@ -1062,36 +1062,36 @@ #. now perform direct API calls to the store, requesting size #. information for each of the snaps needing installation -#: ../DistUpgrade/DistUpgradeQuirks.py:722 +#: ../DistUpgrade/DistUpgradeQuirks.py:726 msgid "Calculating snap size requirements" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:753 +#: ../DistUpgrade/DistUpgradeQuirks.py:757 msgid "Processing snap replacements" msgstr "" #. TODO: This status should be updated, but the time of #. this change to snap switch is post-translation freeze. -#: ../DistUpgrade/DistUpgradeQuirks.py:761 +#: ../DistUpgrade/DistUpgradeQuirks.py:765 #, python-format msgid "refreshing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:765 +#: ../DistUpgrade/DistUpgradeQuirks.py:769 #, python-format msgid "removing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:768 +#: ../DistUpgrade/DistUpgradeQuirks.py:772 #, python-format msgid "installing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:797 +#: ../DistUpgrade/DistUpgradeQuirks.py:801 msgid "PAE not enabled" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:798 +#: ../DistUpgrade/DistUpgradeQuirks.py:802 msgid "" "Your system uses a CPU that does not have PAE enabled. Ubuntu only supports " "non-PAE systems up to Ubuntu 12.04. To upgrade to a later version of Ubuntu, " @@ -1099,11 +1099,11 @@ "http://help.ubuntu.com/community/EnablingPAE" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1094 +#: ../DistUpgrade/DistUpgradeQuirks.py:1098 msgid "universe component not enabled" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1095 +#: ../DistUpgrade/DistUpgradeQuirks.py:1099 #, python-format msgid "" "You have the package %s installed which is a python2 package. python2 has " @@ -1115,37 +1115,48 @@ "universe component in /etc/apt/sources.list or remove %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1207 +#: ../DistUpgrade/DistUpgradeQuirks.py:1211 msgid "Checking for installed snaps" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1654 +#: ../DistUpgrade/DistUpgradeQuirks.py:1720 msgid "Cannot upgrade this system" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1655 +#: ../DistUpgrade/DistUpgradeQuirks.py:1721 msgid "" "Due to a bug in grub, this system cannot be safely upgraded at this time.\n" "\n" "See https://launchpad.net/bugs/2039172." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1721 +#: ../DistUpgrade/DistUpgradeQuirks.py:1787 #, python-brace-format msgid "Updates for Ubuntu {from_release.version} will " msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1731 +#: ../DistUpgrade/DistUpgradeQuirks.py:1797 msgid "Sorry, cannot upgrade this system to 24.04 LTS" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1734 +#: ../DistUpgrade/DistUpgradeQuirks.py:1800 msgid "" "The Raspberry Pi kernel for Ubuntu 24.04 LTS does not support the armhf " "architecture.\n" "\n" msgstr "" +#: ../DistUpgrade/DistUpgradeQuirks.py:1928 +#, python-brace-format +msgid "Sorry, cannot upgrade this system to {version}" +msgstr "" + +#: ../DistUpgrade/DistUpgradeQuirks.py:1931 +msgid "" +"Upgrades for desktop systems running TPM FDE are not currently supported. " +"Please see https://launchpad.net/bugs/2065229 for more information." +msgstr "" + #: ../DistUpgrade/DistUpgradeMain.py:62 msgid "" "Use frontend. Currently available: \n" diff -Nru ubuntu-release-upgrader-24.04.17/po/ro.po ubuntu-release-upgrader-24.04.18/po/ro.po --- ubuntu-release-upgrader-24.04.17/po/ro.po 2024-04-29 14:26:40.000000000 +0000 +++ ubuntu-release-upgrader-24.04.18/po/ro.po 2024-05-09 19:39:21.000000000 +0000 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2024-04-29 16:03+0200\n" +"POT-Creation-Date: 2024-05-09 15:39-0400\n" "PO-Revision-Date: 2019-06-18 17:52+0000\n" "Last-Translator: Marian Vasile \n" "Language-Team: Romanian Gnome Team \n" @@ -1045,13 +1045,13 @@ msgid "Media Change" msgstr "Modificare mediu de stocare" -#: ../DistUpgrade/DistUpgradeQuirks.py:248 +#: ../DistUpgrade/DistUpgradeQuirks.py:252 msgid "Your graphics hardware may not be fully supported in Ubuntu 14.04." msgstr "" "Există posibilitatea ca în Ubuntu 14/04 să nu existe un driver corespunzător " "pentru placa video din sistem." -#: ../DistUpgrade/DistUpgradeQuirks.py:250 +#: ../DistUpgrade/DistUpgradeQuirks.py:254 msgid "" "Running the 'unity' desktop environment is not fully supported by your " "graphics hardware. You will maybe end up in a very slow environment after " @@ -1066,13 +1066,13 @@ "multe informații mergeți la https://wiki.ubuntu.com/X/Bugs/" "UpdateManagerWarningForUnity3D Doriți să continuați actualizarea?" -#: ../DistUpgrade/DistUpgradeQuirks.py:274 +#: ../DistUpgrade/DistUpgradeQuirks.py:278 msgid "Your graphics hardware may not be fully supported in Ubuntu 12.04 LTS." msgstr "" "Există posibilitatea ca funcțiile plăcii grafice să nu fie recunoscute pe " "deplin în Ubuntu 12.04 LTS." -#: ../DistUpgrade/DistUpgradeQuirks.py:276 +#: ../DistUpgrade/DistUpgradeQuirks.py:280 msgid "" "The support in Ubuntu 12.04 LTS for your Intel graphics hardware is limited " "and you may encounter problems after the upgrade. For more information see " @@ -1084,7 +1084,7 @@ "mai multe informații consultați https://wiki.ubuntu.com/X/Bugs/" "UpdateManagerWarningForI8xx. Doriți să continuați actualizarea?" -#: ../DistUpgrade/DistUpgradeQuirks.py:296 +#: ../DistUpgrade/DistUpgradeQuirks.py:300 msgid "" "Upgrading may reduce desktop effects, and performance in games and other " "graphically intensive programs." @@ -1092,7 +1092,7 @@ "Înnoirea ar putea reduce efectele vizuale, performanța în jocuri și a altor " "aplicații intensive din punct de vedere grafic." -#: ../DistUpgrade/DistUpgradeQuirks.py:300 +#: ../DistUpgrade/DistUpgradeQuirks.py:304 msgid "" "This computer is currently using the AMD 'fglrx' graphics driver. No version " "of this driver is available that works with your hardware in Ubuntu 10.04 " @@ -1106,12 +1106,12 @@ "\n" "Doriți să continuați?" -#: ../DistUpgrade/DistUpgradeQuirks.py:339 -#: ../DistUpgrade/DistUpgradeQuirks.py:408 +#: ../DistUpgrade/DistUpgradeQuirks.py:343 +#: ../DistUpgrade/DistUpgradeQuirks.py:412 msgid "Sorry, no more upgrades for this system" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:340 +#: ../DistUpgrade/DistUpgradeQuirks.py:344 #, python-format msgid "" "There will not be any further Ubuntu releases for this system's 'i386' " @@ -1120,11 +1120,11 @@ "Updates for Ubuntu %s will continue until %s." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:355 +#: ../DistUpgrade/DistUpgradeQuirks.py:359 msgid "No ARMv6 CPU" msgstr "Nu există nici un procesor ARMv6" -#: ../DistUpgrade/DistUpgradeQuirks.py:356 +#: ../DistUpgrade/DistUpgradeQuirks.py:360 msgid "" "Your system uses an ARM CPU that is older than the ARMv6 architecture. All " "packages in karmic were built with optimizations requiring ARMv6 as the " @@ -1136,12 +1136,12 @@ "optimizări care necesită ARMv6, ca arhitectură minimă. Cu acest hardware, nu " "se poate înnoi sistemul la noua versiune Ubuntu." -#: ../DistUpgrade/DistUpgradeQuirks.py:376 +#: ../DistUpgrade/DistUpgradeQuirks.py:380 msgid "" "Sorry, this storage driver is not supported in kernels for newer releases" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:378 +#: ../DistUpgrade/DistUpgradeQuirks.py:382 #, python-format msgid "" "There will not be any further Ubuntu releases that provide kernel support " @@ -1151,7 +1151,7 @@ "driver, remove the directory %s and try again." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:409 +#: ../DistUpgrade/DistUpgradeQuirks.py:413 #, python-format msgid "" "There will not be any further Ubuntu releases for this system's POWER8 " @@ -1160,11 +1160,11 @@ "Updates for Ubuntu %s will continue until %s." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:427 +#: ../DistUpgrade/DistUpgradeQuirks.py:431 msgid "No init available" msgstr "Nu există niciun serviciu „init” disponibil" -#: ../DistUpgrade/DistUpgradeQuirks.py:428 +#: ../DistUpgrade/DistUpgradeQuirks.py:432 msgid "" "Your system appears to be a virtualised environment without an init daemon, " "e.g. Linux-VServer. Ubuntu 10.04 LTS cannot function within this type of " @@ -1180,11 +1180,11 @@ "\n" "Sigur doriți să continuați?" -#: ../DistUpgrade/DistUpgradeQuirks.py:469 +#: ../DistUpgrade/DistUpgradeQuirks.py:473 msgid "The Robot Operating System (ROS) is installed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:470 +#: ../DistUpgrade/DistUpgradeQuirks.py:474 msgid "" "It appears that ROS is currently installed. Each ROS release is very strict " "about the versions of Ubuntu it supports, and Ubuntu upgrades can fail if " @@ -1201,11 +1201,11 @@ "Are you sure you want to continue?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:670 +#: ../DistUpgrade/DistUpgradeQuirks.py:674 msgid "Connection to the Snap Store failed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:671 +#: ../DistUpgrade/DistUpgradeQuirks.py:675 msgid "" "You have the package lxd installed but your system is unable to reach the " "Snap Store. lxd is now provided via a snap and the release upgrade will fail " @@ -1215,11 +1215,11 @@ "may want to configure a Snap Store proxy." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:686 +#: ../DistUpgrade/DistUpgradeQuirks.py:690 msgid "Connection to Snap Store failed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:687 +#: ../DistUpgrade/DistUpgradeQuirks.py:691 msgid "" "Your system does not have a connection to the Snap Store. For the best " "upgrade experience make sure that your system can connect to api.snapcraft." @@ -1227,11 +1227,11 @@ "Do you still want to continue with the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:696 +#: ../DistUpgrade/DistUpgradeQuirks.py:700 msgid "Outdated snapd package" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:697 +#: ../DistUpgrade/DistUpgradeQuirks.py:701 msgid "" "Your system does not have the latest version of snapd. Please update the " "version of snapd on your system to improve the upgrade experience.\n" @@ -1240,36 +1240,36 @@ #. now perform direct API calls to the store, requesting size #. information for each of the snaps needing installation -#: ../DistUpgrade/DistUpgradeQuirks.py:722 +#: ../DistUpgrade/DistUpgradeQuirks.py:726 msgid "Calculating snap size requirements" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:753 +#: ../DistUpgrade/DistUpgradeQuirks.py:757 msgid "Processing snap replacements" msgstr "" #. TODO: This status should be updated, but the time of #. this change to snap switch is post-translation freeze. -#: ../DistUpgrade/DistUpgradeQuirks.py:761 +#: ../DistUpgrade/DistUpgradeQuirks.py:765 #, python-format msgid "refreshing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:765 +#: ../DistUpgrade/DistUpgradeQuirks.py:769 #, python-format msgid "removing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:768 +#: ../DistUpgrade/DistUpgradeQuirks.py:772 #, python-format msgid "installing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:797 +#: ../DistUpgrade/DistUpgradeQuirks.py:801 msgid "PAE not enabled" msgstr "PAE nu este activat" -#: ../DistUpgrade/DistUpgradeQuirks.py:798 +#: ../DistUpgrade/DistUpgradeQuirks.py:802 msgid "" "Your system uses a CPU that does not have PAE enabled. Ubuntu only supports " "non-PAE systems up to Ubuntu 12.04. To upgrade to a later version of Ubuntu, " @@ -1283,11 +1283,11 @@ "consultați :\n" "http://help.ubuntu.com/community/EnablingPAE" -#: ../DistUpgrade/DistUpgradeQuirks.py:1094 +#: ../DistUpgrade/DistUpgradeQuirks.py:1098 msgid "universe component not enabled" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1095 +#: ../DistUpgrade/DistUpgradeQuirks.py:1099 #, python-format msgid "" "You have the package %s installed which is a python2 package. python2 has " @@ -1299,39 +1299,50 @@ "universe component in /etc/apt/sources.list or remove %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1207 +#: ../DistUpgrade/DistUpgradeQuirks.py:1211 msgid "Checking for installed snaps" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1654 +#: ../DistUpgrade/DistUpgradeQuirks.py:1720 #, fuzzy msgid "Cannot upgrade this system" msgstr "Nu s-a putut înnoi" -#: ../DistUpgrade/DistUpgradeQuirks.py:1655 +#: ../DistUpgrade/DistUpgradeQuirks.py:1721 msgid "" "Due to a bug in grub, this system cannot be safely upgraded at this time.\n" "\n" "See https://launchpad.net/bugs/2039172." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1721 +#: ../DistUpgrade/DistUpgradeQuirks.py:1787 #, python-brace-format msgid "Updates for Ubuntu {from_release.version} will " msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1731 +#: ../DistUpgrade/DistUpgradeQuirks.py:1797 #, fuzzy msgid "Sorry, cannot upgrade this system to 24.04 LTS" msgstr "Nu s-a putut înnoi" -#: ../DistUpgrade/DistUpgradeQuirks.py:1734 +#: ../DistUpgrade/DistUpgradeQuirks.py:1800 msgid "" "The Raspberry Pi kernel for Ubuntu 24.04 LTS does not support the armhf " "architecture.\n" "\n" msgstr "" +#: ../DistUpgrade/DistUpgradeQuirks.py:1928 +#, fuzzy, python-brace-format +msgid "Sorry, cannot upgrade this system to {version}" +msgstr "Nu s-a putut înnoi" + +#: ../DistUpgrade/DistUpgradeQuirks.py:1931 +msgid "" +"Upgrades for desktop systems running TPM FDE are not currently supported. " +"Please see https://launchpad.net/bugs/2065229 for more information." +msgstr "" + #: ../DistUpgrade/DistUpgradeMain.py:62 msgid "" "Use frontend. Currently available: \n" diff -Nru ubuntu-release-upgrader-24.04.17/po/ru.po ubuntu-release-upgrader-24.04.18/po/ru.po --- ubuntu-release-upgrader-24.04.17/po/ru.po 2024-04-29 14:26:40.000000000 +0000 +++ ubuntu-release-upgrader-24.04.18/po/ru.po 2024-05-09 19:39:21.000000000 +0000 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2024-04-29 16:03+0200\n" +"POT-Creation-Date: 2024-05-09 15:39-0400\n" "PO-Revision-Date: 2019-06-18 17:52+0000\n" "Last-Translator: Maxim Petrov \n" "Language-Team: Russian \n" @@ -1075,13 +1075,13 @@ msgid "Media Change" msgstr "Смена носителя" -#: ../DistUpgrade/DistUpgradeQuirks.py:248 +#: ../DistUpgrade/DistUpgradeQuirks.py:252 msgid "Your graphics hardware may not be fully supported in Ubuntu 14.04." msgstr "" "Имеющееся графическое оборудование может не полностью поддерживаться в " "Ubuntu 14.04." -#: ../DistUpgrade/DistUpgradeQuirks.py:250 +#: ../DistUpgrade/DistUpgradeQuirks.py:254 msgid "" "Running the 'unity' desktop environment is not fully supported by your " "graphics hardware. You will maybe end up in a very slow environment after " @@ -1096,11 +1096,11 @@ "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForUnity3D Вы все еще " "хотите начать обновление?" -#: ../DistUpgrade/DistUpgradeQuirks.py:274 +#: ../DistUpgrade/DistUpgradeQuirks.py:278 msgid "Your graphics hardware may not be fully supported in Ubuntu 12.04 LTS." msgstr "Ваша видеокарта не будет поддерживаться полностью в Ubuntu 12.04 LTS." -#: ../DistUpgrade/DistUpgradeQuirks.py:276 +#: ../DistUpgrade/DistUpgradeQuirks.py:280 msgid "" "The support in Ubuntu 12.04 LTS for your Intel graphics hardware is limited " "and you may encounter problems after the upgrade. For more information see " @@ -1112,7 +1112,7 @@ "wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForI8xx Вы действительно хотите " "продолжить обновление?" -#: ../DistUpgrade/DistUpgradeQuirks.py:296 +#: ../DistUpgrade/DistUpgradeQuirks.py:300 msgid "" "Upgrading may reduce desktop effects, and performance in games and other " "graphically intensive programs." @@ -1120,7 +1120,7 @@ "Обновление может повлечь снижение качества эффектов рабочего стола и " "производительности в играх и приложениях, активно работающих с графикой." -#: ../DistUpgrade/DistUpgradeQuirks.py:300 +#: ../DistUpgrade/DistUpgradeQuirks.py:304 msgid "" "This computer is currently using the AMD 'fglrx' graphics driver. No version " "of this driver is available that works with your hardware in Ubuntu 10.04 " @@ -1134,12 +1134,12 @@ "\n" "Вы хотите продолжить?" -#: ../DistUpgrade/DistUpgradeQuirks.py:339 -#: ../DistUpgrade/DistUpgradeQuirks.py:408 +#: ../DistUpgrade/DistUpgradeQuirks.py:343 +#: ../DistUpgrade/DistUpgradeQuirks.py:412 msgid "Sorry, no more upgrades for this system" msgstr "Извините, больше нет обновлений для этой системы" -#: ../DistUpgrade/DistUpgradeQuirks.py:340 +#: ../DistUpgrade/DistUpgradeQuirks.py:344 #, python-format msgid "" "There will not be any further Ubuntu releases for this system's 'i386' " @@ -1151,11 +1151,11 @@ "\n" "Обновления для Ubuntu %s будут продолжаться до %s." -#: ../DistUpgrade/DistUpgradeQuirks.py:355 +#: ../DistUpgrade/DistUpgradeQuirks.py:359 msgid "No ARMv6 CPU" msgstr "Нет процессора ARMv6" -#: ../DistUpgrade/DistUpgradeQuirks.py:356 +#: ../DistUpgrade/DistUpgradeQuirks.py:360 msgid "" "Your system uses an ARM CPU that is older than the ARMv6 architecture. All " "packages in karmic were built with optimizations requiring ARMv6 as the " @@ -1167,12 +1167,12 @@ "выше. Вашу систему невозможно обновить до нового релиза Ubuntu с текущим " "аппаратным обеспечением." -#: ../DistUpgrade/DistUpgradeQuirks.py:376 +#: ../DistUpgrade/DistUpgradeQuirks.py:380 msgid "" "Sorry, this storage driver is not supported in kernels for newer releases" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:378 +#: ../DistUpgrade/DistUpgradeQuirks.py:382 #, python-format msgid "" "There will not be any further Ubuntu releases that provide kernel support " @@ -1182,7 +1182,7 @@ "driver, remove the directory %s and try again." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:409 +#: ../DistUpgrade/DistUpgradeQuirks.py:413 #, fuzzy, python-format msgid "" "There will not be any further Ubuntu releases for this system's POWER8 " @@ -1194,11 +1194,11 @@ "\n" "Обновления для Ubuntu %s будут продолжаться до %s." -#: ../DistUpgrade/DistUpgradeQuirks.py:427 +#: ../DistUpgrade/DistUpgradeQuirks.py:431 msgid "No init available" msgstr "Служба init недоступна" -#: ../DistUpgrade/DistUpgradeQuirks.py:428 +#: ../DistUpgrade/DistUpgradeQuirks.py:432 msgid "" "Your system appears to be a virtualised environment without an init daemon, " "e.g. Linux-VServer. Ubuntu 10.04 LTS cannot function within this type of " @@ -1214,11 +1214,11 @@ "\n" "Вы уверены, что хотите продолжить?" -#: ../DistUpgrade/DistUpgradeQuirks.py:469 +#: ../DistUpgrade/DistUpgradeQuirks.py:473 msgid "The Robot Operating System (ROS) is installed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:470 +#: ../DistUpgrade/DistUpgradeQuirks.py:474 msgid "" "It appears that ROS is currently installed. Each ROS release is very strict " "about the versions of Ubuntu it supports, and Ubuntu upgrades can fail if " @@ -1235,12 +1235,12 @@ "Are you sure you want to continue?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:670 +#: ../DistUpgrade/DistUpgradeQuirks.py:674 #, fuzzy msgid "Connection to the Snap Store failed" msgstr "Не удалось подключиться к Snap Store" -#: ../DistUpgrade/DistUpgradeQuirks.py:671 +#: ../DistUpgrade/DistUpgradeQuirks.py:675 msgid "" "You have the package lxd installed but your system is unable to reach the " "Snap Store. lxd is now provided via a snap and the release upgrade will fail " @@ -1250,11 +1250,11 @@ "may want to configure a Snap Store proxy." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:686 +#: ../DistUpgrade/DistUpgradeQuirks.py:690 msgid "Connection to Snap Store failed" msgstr "Не удалось подключиться к Snap Store" -#: ../DistUpgrade/DistUpgradeQuirks.py:687 +#: ../DistUpgrade/DistUpgradeQuirks.py:691 msgid "" "Your system does not have a connection to the Snap Store. For the best " "upgrade experience make sure that your system can connect to api.snapcraft." @@ -1266,11 +1266,11 @@ "io.\n" "Вы все еще хотите продолжить обновление?" -#: ../DistUpgrade/DistUpgradeQuirks.py:696 +#: ../DistUpgrade/DistUpgradeQuirks.py:700 msgid "Outdated snapd package" msgstr "Устаревший пакет snapd" -#: ../DistUpgrade/DistUpgradeQuirks.py:697 +#: ../DistUpgrade/DistUpgradeQuirks.py:701 msgid "" "Your system does not have the latest version of snapd. Please update the " "version of snapd on your system to improve the upgrade experience.\n" @@ -1282,36 +1282,36 @@ #. now perform direct API calls to the store, requesting size #. information for each of the snaps needing installation -#: ../DistUpgrade/DistUpgradeQuirks.py:722 +#: ../DistUpgrade/DistUpgradeQuirks.py:726 msgid "Calculating snap size requirements" msgstr "Подсчёт требуемого размера snap" -#: ../DistUpgrade/DistUpgradeQuirks.py:753 +#: ../DistUpgrade/DistUpgradeQuirks.py:757 msgid "Processing snap replacements" msgstr "Обработка замещений snap" #. TODO: This status should be updated, but the time of #. this change to snap switch is post-translation freeze. -#: ../DistUpgrade/DistUpgradeQuirks.py:761 +#: ../DistUpgrade/DistUpgradeQuirks.py:765 #, python-format msgid "refreshing snap %s" msgstr "обновление snap-пакета %s" -#: ../DistUpgrade/DistUpgradeQuirks.py:765 +#: ../DistUpgrade/DistUpgradeQuirks.py:769 #, fuzzy, python-format msgid "removing snap %s" msgstr "обновление snap-пакета %s" -#: ../DistUpgrade/DistUpgradeQuirks.py:768 +#: ../DistUpgrade/DistUpgradeQuirks.py:772 #, python-format msgid "installing snap %s" msgstr "установка snap-пакета %s" -#: ../DistUpgrade/DistUpgradeQuirks.py:797 +#: ../DistUpgrade/DistUpgradeQuirks.py:801 msgid "PAE not enabled" msgstr "PAE отключен" -#: ../DistUpgrade/DistUpgradeQuirks.py:798 +#: ../DistUpgrade/DistUpgradeQuirks.py:802 msgid "" "Your system uses a CPU that does not have PAE enabled. Ubuntu only supports " "non-PAE systems up to Ubuntu 12.04. To upgrade to a later version of Ubuntu, " @@ -1324,11 +1324,11 @@ "возможно), обратитесь к веб-сайту:\n" "http://help.ubuntu.com/community/EnablingPAE" -#: ../DistUpgrade/DistUpgradeQuirks.py:1094 +#: ../DistUpgrade/DistUpgradeQuirks.py:1098 msgid "universe component not enabled" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1095 +#: ../DistUpgrade/DistUpgradeQuirks.py:1099 #, python-format msgid "" "You have the package %s installed which is a python2 package. python2 has " @@ -1340,39 +1340,50 @@ "universe component in /etc/apt/sources.list or remove %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1207 +#: ../DistUpgrade/DistUpgradeQuirks.py:1211 msgid "Checking for installed snaps" msgstr "Проверка установленных snap" -#: ../DistUpgrade/DistUpgradeQuirks.py:1654 +#: ../DistUpgrade/DistUpgradeQuirks.py:1720 #, fuzzy msgid "Cannot upgrade this system" msgstr "Не удалось обновить" -#: ../DistUpgrade/DistUpgradeQuirks.py:1655 +#: ../DistUpgrade/DistUpgradeQuirks.py:1721 msgid "" "Due to a bug in grub, this system cannot be safely upgraded at this time.\n" "\n" "See https://launchpad.net/bugs/2039172." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1721 +#: ../DistUpgrade/DistUpgradeQuirks.py:1787 #, python-brace-format msgid "Updates for Ubuntu {from_release.version} will " msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1731 +#: ../DistUpgrade/DistUpgradeQuirks.py:1797 #, fuzzy msgid "Sorry, cannot upgrade this system to 24.04 LTS" msgstr "Не удалось обновить" -#: ../DistUpgrade/DistUpgradeQuirks.py:1734 +#: ../DistUpgrade/DistUpgradeQuirks.py:1800 msgid "" "The Raspberry Pi kernel for Ubuntu 24.04 LTS does not support the armhf " "architecture.\n" "\n" msgstr "" +#: ../DistUpgrade/DistUpgradeQuirks.py:1928 +#, fuzzy, python-brace-format +msgid "Sorry, cannot upgrade this system to {version}" +msgstr "Не удалось обновить" + +#: ../DistUpgrade/DistUpgradeQuirks.py:1931 +msgid "" +"Upgrades for desktop systems running TPM FDE are not currently supported. " +"Please see https://launchpad.net/bugs/2065229 for more information." +msgstr "" + #: ../DistUpgrade/DistUpgradeMain.py:62 msgid "" "Use frontend. Currently available: \n" diff -Nru ubuntu-release-upgrader-24.04.17/po/rw.po ubuntu-release-upgrader-24.04.18/po/rw.po --- ubuntu-release-upgrader-24.04.17/po/rw.po 2024-04-29 14:26:40.000000000 +0000 +++ ubuntu-release-upgrader-24.04.18/po/rw.po 2024-05-09 19:39:21.000000000 +0000 @@ -16,7 +16,7 @@ msgstr "" "Project-Id-Version: update-manager HEAD\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2024-04-29 16:03+0200\n" +"POT-Creation-Date: 2024-05-09 15:39-0400\n" "PO-Revision-Date: 2013-05-22 11:00+0000\n" "Last-Translator: Brian Murray \n" "Language-Team: Kinyarwanda \n" @@ -905,11 +905,11 @@ msgid "Media Change" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:248 +#: ../DistUpgrade/DistUpgradeQuirks.py:252 msgid "Your graphics hardware may not be fully supported in Ubuntu 14.04." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:250 +#: ../DistUpgrade/DistUpgradeQuirks.py:254 msgid "" "Running the 'unity' desktop environment is not fully supported by your " "graphics hardware. You will maybe end up in a very slow environment after " @@ -919,11 +919,11 @@ "upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:274 +#: ../DistUpgrade/DistUpgradeQuirks.py:278 msgid "Your graphics hardware may not be fully supported in Ubuntu 12.04 LTS." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:276 +#: ../DistUpgrade/DistUpgradeQuirks.py:280 msgid "" "The support in Ubuntu 12.04 LTS for your Intel graphics hardware is limited " "and you may encounter problems after the upgrade. For more information see " @@ -931,13 +931,13 @@ "continue with the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:296 +#: ../DistUpgrade/DistUpgradeQuirks.py:300 msgid "" "Upgrading may reduce desktop effects, and performance in games and other " "graphically intensive programs." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:300 +#: ../DistUpgrade/DistUpgradeQuirks.py:304 msgid "" "This computer is currently using the AMD 'fglrx' graphics driver. No version " "of this driver is available that works with your hardware in Ubuntu 10.04 " @@ -946,12 +946,12 @@ "Do you want to continue?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:339 -#: ../DistUpgrade/DistUpgradeQuirks.py:408 +#: ../DistUpgrade/DistUpgradeQuirks.py:343 +#: ../DistUpgrade/DistUpgradeQuirks.py:412 msgid "Sorry, no more upgrades for this system" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:340 +#: ../DistUpgrade/DistUpgradeQuirks.py:344 #, python-format msgid "" "There will not be any further Ubuntu releases for this system's 'i386' " @@ -960,11 +960,11 @@ "Updates for Ubuntu %s will continue until %s." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:355 +#: ../DistUpgrade/DistUpgradeQuirks.py:359 msgid "No ARMv6 CPU" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:356 +#: ../DistUpgrade/DistUpgradeQuirks.py:360 msgid "" "Your system uses an ARM CPU that is older than the ARMv6 architecture. All " "packages in karmic were built with optimizations requiring ARMv6 as the " @@ -972,12 +972,12 @@ "Ubuntu release with this hardware." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:376 +#: ../DistUpgrade/DistUpgradeQuirks.py:380 msgid "" "Sorry, this storage driver is not supported in kernels for newer releases" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:378 +#: ../DistUpgrade/DistUpgradeQuirks.py:382 #, python-format msgid "" "There will not be any further Ubuntu releases that provide kernel support " @@ -987,7 +987,7 @@ "driver, remove the directory %s and try again." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:409 +#: ../DistUpgrade/DistUpgradeQuirks.py:413 #, python-format msgid "" "There will not be any further Ubuntu releases for this system's POWER8 " @@ -996,11 +996,11 @@ "Updates for Ubuntu %s will continue until %s." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:427 +#: ../DistUpgrade/DistUpgradeQuirks.py:431 msgid "No init available" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:428 +#: ../DistUpgrade/DistUpgradeQuirks.py:432 msgid "" "Your system appears to be a virtualised environment without an init daemon, " "e.g. Linux-VServer. Ubuntu 10.04 LTS cannot function within this type of " @@ -1010,11 +1010,11 @@ "Are you sure you want to continue?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:469 +#: ../DistUpgrade/DistUpgradeQuirks.py:473 msgid "The Robot Operating System (ROS) is installed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:470 +#: ../DistUpgrade/DistUpgradeQuirks.py:474 msgid "" "It appears that ROS is currently installed. Each ROS release is very strict " "about the versions of Ubuntu it supports, and Ubuntu upgrades can fail if " @@ -1031,11 +1031,11 @@ "Are you sure you want to continue?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:670 +#: ../DistUpgrade/DistUpgradeQuirks.py:674 msgid "Connection to the Snap Store failed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:671 +#: ../DistUpgrade/DistUpgradeQuirks.py:675 msgid "" "You have the package lxd installed but your system is unable to reach the " "Snap Store. lxd is now provided via a snap and the release upgrade will fail " @@ -1045,11 +1045,11 @@ "may want to configure a Snap Store proxy." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:686 +#: ../DistUpgrade/DistUpgradeQuirks.py:690 msgid "Connection to Snap Store failed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:687 +#: ../DistUpgrade/DistUpgradeQuirks.py:691 msgid "" "Your system does not have a connection to the Snap Store. For the best " "upgrade experience make sure that your system can connect to api.snapcraft." @@ -1057,11 +1057,11 @@ "Do you still want to continue with the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:696 +#: ../DistUpgrade/DistUpgradeQuirks.py:700 msgid "Outdated snapd package" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:697 +#: ../DistUpgrade/DistUpgradeQuirks.py:701 msgid "" "Your system does not have the latest version of snapd. Please update the " "version of snapd on your system to improve the upgrade experience.\n" @@ -1070,36 +1070,36 @@ #. now perform direct API calls to the store, requesting size #. information for each of the snaps needing installation -#: ../DistUpgrade/DistUpgradeQuirks.py:722 +#: ../DistUpgrade/DistUpgradeQuirks.py:726 msgid "Calculating snap size requirements" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:753 +#: ../DistUpgrade/DistUpgradeQuirks.py:757 msgid "Processing snap replacements" msgstr "" #. TODO: This status should be updated, but the time of #. this change to snap switch is post-translation freeze. -#: ../DistUpgrade/DistUpgradeQuirks.py:761 +#: ../DistUpgrade/DistUpgradeQuirks.py:765 #, python-format msgid "refreshing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:765 +#: ../DistUpgrade/DistUpgradeQuirks.py:769 #, python-format msgid "removing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:768 +#: ../DistUpgrade/DistUpgradeQuirks.py:772 #, python-format msgid "installing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:797 +#: ../DistUpgrade/DistUpgradeQuirks.py:801 msgid "PAE not enabled" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:798 +#: ../DistUpgrade/DistUpgradeQuirks.py:802 msgid "" "Your system uses a CPU that does not have PAE enabled. Ubuntu only supports " "non-PAE systems up to Ubuntu 12.04. To upgrade to a later version of Ubuntu, " @@ -1107,11 +1107,11 @@ "http://help.ubuntu.com/community/EnablingPAE" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1094 +#: ../DistUpgrade/DistUpgradeQuirks.py:1098 msgid "universe component not enabled" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1095 +#: ../DistUpgrade/DistUpgradeQuirks.py:1099 #, python-format msgid "" "You have the package %s installed which is a python2 package. python2 has " @@ -1123,37 +1123,48 @@ "universe component in /etc/apt/sources.list or remove %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1207 +#: ../DistUpgrade/DistUpgradeQuirks.py:1211 msgid "Checking for installed snaps" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1654 +#: ../DistUpgrade/DistUpgradeQuirks.py:1720 msgid "Cannot upgrade this system" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1655 +#: ../DistUpgrade/DistUpgradeQuirks.py:1721 msgid "" "Due to a bug in grub, this system cannot be safely upgraded at this time.\n" "\n" "See https://launchpad.net/bugs/2039172." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1721 +#: ../DistUpgrade/DistUpgradeQuirks.py:1787 #, python-brace-format msgid "Updates for Ubuntu {from_release.version} will " msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1731 +#: ../DistUpgrade/DistUpgradeQuirks.py:1797 msgid "Sorry, cannot upgrade this system to 24.04 LTS" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1734 +#: ../DistUpgrade/DistUpgradeQuirks.py:1800 msgid "" "The Raspberry Pi kernel for Ubuntu 24.04 LTS does not support the armhf " "architecture.\n" "\n" msgstr "" +#: ../DistUpgrade/DistUpgradeQuirks.py:1928 +#, python-brace-format +msgid "Sorry, cannot upgrade this system to {version}" +msgstr "" + +#: ../DistUpgrade/DistUpgradeQuirks.py:1931 +msgid "" +"Upgrades for desktop systems running TPM FDE are not currently supported. " +"Please see https://launchpad.net/bugs/2065229 for more information." +msgstr "" + #: ../DistUpgrade/DistUpgradeMain.py:62 msgid "" "Use frontend. Currently available: \n" diff -Nru ubuntu-release-upgrader-24.04.17/po/sc.po ubuntu-release-upgrader-24.04.18/po/sc.po --- ubuntu-release-upgrader-24.04.17/po/sc.po 2024-04-29 14:26:40.000000000 +0000 +++ ubuntu-release-upgrader-24.04.18/po/sc.po 2024-05-09 19:39:21.000000000 +0000 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2024-04-29 16:03+0200\n" +"POT-Creation-Date: 2024-05-09 15:39-0400\n" "PO-Revision-Date: 2013-05-22 11:00+0000\n" "Last-Translator: Borealis \n" "Language-Team: Sardinian \n" @@ -897,11 +897,11 @@ msgid "Media Change" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:248 +#: ../DistUpgrade/DistUpgradeQuirks.py:252 msgid "Your graphics hardware may not be fully supported in Ubuntu 14.04." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:250 +#: ../DistUpgrade/DistUpgradeQuirks.py:254 msgid "" "Running the 'unity' desktop environment is not fully supported by your " "graphics hardware. You will maybe end up in a very slow environment after " @@ -911,11 +911,11 @@ "upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:274 +#: ../DistUpgrade/DistUpgradeQuirks.py:278 msgid "Your graphics hardware may not be fully supported in Ubuntu 12.04 LTS." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:276 +#: ../DistUpgrade/DistUpgradeQuirks.py:280 msgid "" "The support in Ubuntu 12.04 LTS for your Intel graphics hardware is limited " "and you may encounter problems after the upgrade. For more information see " @@ -923,13 +923,13 @@ "continue with the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:296 +#: ../DistUpgrade/DistUpgradeQuirks.py:300 msgid "" "Upgrading may reduce desktop effects, and performance in games and other " "graphically intensive programs." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:300 +#: ../DistUpgrade/DistUpgradeQuirks.py:304 msgid "" "This computer is currently using the AMD 'fglrx' graphics driver. No version " "of this driver is available that works with your hardware in Ubuntu 10.04 " @@ -938,12 +938,12 @@ "Do you want to continue?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:339 -#: ../DistUpgrade/DistUpgradeQuirks.py:408 +#: ../DistUpgrade/DistUpgradeQuirks.py:343 +#: ../DistUpgrade/DistUpgradeQuirks.py:412 msgid "Sorry, no more upgrades for this system" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:340 +#: ../DistUpgrade/DistUpgradeQuirks.py:344 #, python-format msgid "" "There will not be any further Ubuntu releases for this system's 'i386' " @@ -952,11 +952,11 @@ "Updates for Ubuntu %s will continue until %s." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:355 +#: ../DistUpgrade/DistUpgradeQuirks.py:359 msgid "No ARMv6 CPU" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:356 +#: ../DistUpgrade/DistUpgradeQuirks.py:360 msgid "" "Your system uses an ARM CPU that is older than the ARMv6 architecture. All " "packages in karmic were built with optimizations requiring ARMv6 as the " @@ -964,12 +964,12 @@ "Ubuntu release with this hardware." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:376 +#: ../DistUpgrade/DistUpgradeQuirks.py:380 msgid "" "Sorry, this storage driver is not supported in kernels for newer releases" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:378 +#: ../DistUpgrade/DistUpgradeQuirks.py:382 #, python-format msgid "" "There will not be any further Ubuntu releases that provide kernel support " @@ -979,7 +979,7 @@ "driver, remove the directory %s and try again." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:409 +#: ../DistUpgrade/DistUpgradeQuirks.py:413 #, python-format msgid "" "There will not be any further Ubuntu releases for this system's POWER8 " @@ -988,11 +988,11 @@ "Updates for Ubuntu %s will continue until %s." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:427 +#: ../DistUpgrade/DistUpgradeQuirks.py:431 msgid "No init available" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:428 +#: ../DistUpgrade/DistUpgradeQuirks.py:432 msgid "" "Your system appears to be a virtualised environment without an init daemon, " "e.g. Linux-VServer. Ubuntu 10.04 LTS cannot function within this type of " @@ -1002,11 +1002,11 @@ "Are you sure you want to continue?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:469 +#: ../DistUpgrade/DistUpgradeQuirks.py:473 msgid "The Robot Operating System (ROS) is installed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:470 +#: ../DistUpgrade/DistUpgradeQuirks.py:474 msgid "" "It appears that ROS is currently installed. Each ROS release is very strict " "about the versions of Ubuntu it supports, and Ubuntu upgrades can fail if " @@ -1023,11 +1023,11 @@ "Are you sure you want to continue?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:670 +#: ../DistUpgrade/DistUpgradeQuirks.py:674 msgid "Connection to the Snap Store failed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:671 +#: ../DistUpgrade/DistUpgradeQuirks.py:675 msgid "" "You have the package lxd installed but your system is unable to reach the " "Snap Store. lxd is now provided via a snap and the release upgrade will fail " @@ -1037,11 +1037,11 @@ "may want to configure a Snap Store proxy." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:686 +#: ../DistUpgrade/DistUpgradeQuirks.py:690 msgid "Connection to Snap Store failed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:687 +#: ../DistUpgrade/DistUpgradeQuirks.py:691 msgid "" "Your system does not have a connection to the Snap Store. For the best " "upgrade experience make sure that your system can connect to api.snapcraft." @@ -1049,11 +1049,11 @@ "Do you still want to continue with the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:696 +#: ../DistUpgrade/DistUpgradeQuirks.py:700 msgid "Outdated snapd package" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:697 +#: ../DistUpgrade/DistUpgradeQuirks.py:701 msgid "" "Your system does not have the latest version of snapd. Please update the " "version of snapd on your system to improve the upgrade experience.\n" @@ -1062,36 +1062,36 @@ #. now perform direct API calls to the store, requesting size #. information for each of the snaps needing installation -#: ../DistUpgrade/DistUpgradeQuirks.py:722 +#: ../DistUpgrade/DistUpgradeQuirks.py:726 msgid "Calculating snap size requirements" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:753 +#: ../DistUpgrade/DistUpgradeQuirks.py:757 msgid "Processing snap replacements" msgstr "" #. TODO: This status should be updated, but the time of #. this change to snap switch is post-translation freeze. -#: ../DistUpgrade/DistUpgradeQuirks.py:761 +#: ../DistUpgrade/DistUpgradeQuirks.py:765 #, python-format msgid "refreshing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:765 +#: ../DistUpgrade/DistUpgradeQuirks.py:769 #, python-format msgid "removing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:768 +#: ../DistUpgrade/DistUpgradeQuirks.py:772 #, python-format msgid "installing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:797 +#: ../DistUpgrade/DistUpgradeQuirks.py:801 msgid "PAE not enabled" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:798 +#: ../DistUpgrade/DistUpgradeQuirks.py:802 msgid "" "Your system uses a CPU that does not have PAE enabled. Ubuntu only supports " "non-PAE systems up to Ubuntu 12.04. To upgrade to a later version of Ubuntu, " @@ -1099,11 +1099,11 @@ "http://help.ubuntu.com/community/EnablingPAE" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1094 +#: ../DistUpgrade/DistUpgradeQuirks.py:1098 msgid "universe component not enabled" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1095 +#: ../DistUpgrade/DistUpgradeQuirks.py:1099 #, python-format msgid "" "You have the package %s installed which is a python2 package. python2 has " @@ -1115,37 +1115,48 @@ "universe component in /etc/apt/sources.list or remove %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1207 +#: ../DistUpgrade/DistUpgradeQuirks.py:1211 msgid "Checking for installed snaps" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1654 +#: ../DistUpgrade/DistUpgradeQuirks.py:1720 msgid "Cannot upgrade this system" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1655 +#: ../DistUpgrade/DistUpgradeQuirks.py:1721 msgid "" "Due to a bug in grub, this system cannot be safely upgraded at this time.\n" "\n" "See https://launchpad.net/bugs/2039172." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1721 +#: ../DistUpgrade/DistUpgradeQuirks.py:1787 #, python-brace-format msgid "Updates for Ubuntu {from_release.version} will " msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1731 +#: ../DistUpgrade/DistUpgradeQuirks.py:1797 msgid "Sorry, cannot upgrade this system to 24.04 LTS" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1734 +#: ../DistUpgrade/DistUpgradeQuirks.py:1800 msgid "" "The Raspberry Pi kernel for Ubuntu 24.04 LTS does not support the armhf " "architecture.\n" "\n" msgstr "" +#: ../DistUpgrade/DistUpgradeQuirks.py:1928 +#, python-brace-format +msgid "Sorry, cannot upgrade this system to {version}" +msgstr "" + +#: ../DistUpgrade/DistUpgradeQuirks.py:1931 +msgid "" +"Upgrades for desktop systems running TPM FDE are not currently supported. " +"Please see https://launchpad.net/bugs/2065229 for more information." +msgstr "" + #: ../DistUpgrade/DistUpgradeMain.py:62 msgid "" "Use frontend. Currently available: \n" diff -Nru ubuntu-release-upgrader-24.04.17/po/sco.po ubuntu-release-upgrader-24.04.18/po/sco.po --- ubuntu-release-upgrader-24.04.17/po/sco.po 2024-04-29 14:26:40.000000000 +0000 +++ ubuntu-release-upgrader-24.04.18/po/sco.po 2024-05-09 19:39:21.000000000 +0000 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2024-04-29 16:03+0200\n" +"POT-Creation-Date: 2024-05-09 15:39-0400\n" "PO-Revision-Date: 2013-05-22 11:00+0000\n" "Last-Translator: Brian Murray \n" "Language-Team: Scots \n" @@ -911,11 +911,11 @@ msgid "Media Change" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:248 +#: ../DistUpgrade/DistUpgradeQuirks.py:252 msgid "Your graphics hardware may not be fully supported in Ubuntu 14.04." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:250 +#: ../DistUpgrade/DistUpgradeQuirks.py:254 msgid "" "Running the 'unity' desktop environment is not fully supported by your " "graphics hardware. You will maybe end up in a very slow environment after " @@ -925,11 +925,11 @@ "upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:274 +#: ../DistUpgrade/DistUpgradeQuirks.py:278 msgid "Your graphics hardware may not be fully supported in Ubuntu 12.04 LTS." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:276 +#: ../DistUpgrade/DistUpgradeQuirks.py:280 msgid "" "The support in Ubuntu 12.04 LTS for your Intel graphics hardware is limited " "and you may encounter problems after the upgrade. For more information see " @@ -937,13 +937,13 @@ "continue with the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:296 +#: ../DistUpgrade/DistUpgradeQuirks.py:300 msgid "" "Upgrading may reduce desktop effects, and performance in games and other " "graphically intensive programs." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:300 +#: ../DistUpgrade/DistUpgradeQuirks.py:304 msgid "" "This computer is currently using the AMD 'fglrx' graphics driver. No version " "of this driver is available that works with your hardware in Ubuntu 10.04 " @@ -952,12 +952,12 @@ "Do you want to continue?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:339 -#: ../DistUpgrade/DistUpgradeQuirks.py:408 +#: ../DistUpgrade/DistUpgradeQuirks.py:343 +#: ../DistUpgrade/DistUpgradeQuirks.py:412 msgid "Sorry, no more upgrades for this system" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:340 +#: ../DistUpgrade/DistUpgradeQuirks.py:344 #, python-format msgid "" "There will not be any further Ubuntu releases for this system's 'i386' " @@ -966,11 +966,11 @@ "Updates for Ubuntu %s will continue until %s." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:355 +#: ../DistUpgrade/DistUpgradeQuirks.py:359 msgid "No ARMv6 CPU" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:356 +#: ../DistUpgrade/DistUpgradeQuirks.py:360 msgid "" "Your system uses an ARM CPU that is older than the ARMv6 architecture. All " "packages in karmic were built with optimizations requiring ARMv6 as the " @@ -978,12 +978,12 @@ "Ubuntu release with this hardware." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:376 +#: ../DistUpgrade/DistUpgradeQuirks.py:380 msgid "" "Sorry, this storage driver is not supported in kernels for newer releases" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:378 +#: ../DistUpgrade/DistUpgradeQuirks.py:382 #, python-format msgid "" "There will not be any further Ubuntu releases that provide kernel support " @@ -993,7 +993,7 @@ "driver, remove the directory %s and try again." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:409 +#: ../DistUpgrade/DistUpgradeQuirks.py:413 #, python-format msgid "" "There will not be any further Ubuntu releases for this system's POWER8 " @@ -1002,11 +1002,11 @@ "Updates for Ubuntu %s will continue until %s." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:427 +#: ../DistUpgrade/DistUpgradeQuirks.py:431 msgid "No init available" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:428 +#: ../DistUpgrade/DistUpgradeQuirks.py:432 msgid "" "Your system appears to be a virtualised environment without an init daemon, " "e.g. Linux-VServer. Ubuntu 10.04 LTS cannot function within this type of " @@ -1016,11 +1016,11 @@ "Are you sure you want to continue?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:469 +#: ../DistUpgrade/DistUpgradeQuirks.py:473 msgid "The Robot Operating System (ROS) is installed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:470 +#: ../DistUpgrade/DistUpgradeQuirks.py:474 msgid "" "It appears that ROS is currently installed. Each ROS release is very strict " "about the versions of Ubuntu it supports, and Ubuntu upgrades can fail if " @@ -1037,11 +1037,11 @@ "Are you sure you want to continue?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:670 +#: ../DistUpgrade/DistUpgradeQuirks.py:674 msgid "Connection to the Snap Store failed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:671 +#: ../DistUpgrade/DistUpgradeQuirks.py:675 msgid "" "You have the package lxd installed but your system is unable to reach the " "Snap Store. lxd is now provided via a snap and the release upgrade will fail " @@ -1051,11 +1051,11 @@ "may want to configure a Snap Store proxy." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:686 +#: ../DistUpgrade/DistUpgradeQuirks.py:690 msgid "Connection to Snap Store failed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:687 +#: ../DistUpgrade/DistUpgradeQuirks.py:691 msgid "" "Your system does not have a connection to the Snap Store. For the best " "upgrade experience make sure that your system can connect to api.snapcraft." @@ -1063,11 +1063,11 @@ "Do you still want to continue with the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:696 +#: ../DistUpgrade/DistUpgradeQuirks.py:700 msgid "Outdated snapd package" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:697 +#: ../DistUpgrade/DistUpgradeQuirks.py:701 msgid "" "Your system does not have the latest version of snapd. Please update the " "version of snapd on your system to improve the upgrade experience.\n" @@ -1076,36 +1076,36 @@ #. now perform direct API calls to the store, requesting size #. information for each of the snaps needing installation -#: ../DistUpgrade/DistUpgradeQuirks.py:722 +#: ../DistUpgrade/DistUpgradeQuirks.py:726 msgid "Calculating snap size requirements" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:753 +#: ../DistUpgrade/DistUpgradeQuirks.py:757 msgid "Processing snap replacements" msgstr "" #. TODO: This status should be updated, but the time of #. this change to snap switch is post-translation freeze. -#: ../DistUpgrade/DistUpgradeQuirks.py:761 +#: ../DistUpgrade/DistUpgradeQuirks.py:765 #, python-format msgid "refreshing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:765 +#: ../DistUpgrade/DistUpgradeQuirks.py:769 #, python-format msgid "removing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:768 +#: ../DistUpgrade/DistUpgradeQuirks.py:772 #, python-format msgid "installing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:797 +#: ../DistUpgrade/DistUpgradeQuirks.py:801 msgid "PAE not enabled" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:798 +#: ../DistUpgrade/DistUpgradeQuirks.py:802 msgid "" "Your system uses a CPU that does not have PAE enabled. Ubuntu only supports " "non-PAE systems up to Ubuntu 12.04. To upgrade to a later version of Ubuntu, " @@ -1113,11 +1113,11 @@ "http://help.ubuntu.com/community/EnablingPAE" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1094 +#: ../DistUpgrade/DistUpgradeQuirks.py:1098 msgid "universe component not enabled" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1095 +#: ../DistUpgrade/DistUpgradeQuirks.py:1099 #, python-format msgid "" "You have the package %s installed which is a python2 package. python2 has " @@ -1129,39 +1129,50 @@ "universe component in /etc/apt/sources.list or remove %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1207 +#: ../DistUpgrade/DistUpgradeQuirks.py:1211 msgid "Checking for installed snaps" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1654 +#: ../DistUpgrade/DistUpgradeQuirks.py:1720 #, fuzzy msgid "Cannot upgrade this system" msgstr "Cannae upgrade" -#: ../DistUpgrade/DistUpgradeQuirks.py:1655 +#: ../DistUpgrade/DistUpgradeQuirks.py:1721 msgid "" "Due to a bug in grub, this system cannot be safely upgraded at this time.\n" "\n" "See https://launchpad.net/bugs/2039172." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1721 +#: ../DistUpgrade/DistUpgradeQuirks.py:1787 #, python-brace-format msgid "Updates for Ubuntu {from_release.version} will " msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1731 +#: ../DistUpgrade/DistUpgradeQuirks.py:1797 #, fuzzy msgid "Sorry, cannot upgrade this system to 24.04 LTS" msgstr "Cannae upgrade" -#: ../DistUpgrade/DistUpgradeQuirks.py:1734 +#: ../DistUpgrade/DistUpgradeQuirks.py:1800 msgid "" "The Raspberry Pi kernel for Ubuntu 24.04 LTS does not support the armhf " "architecture.\n" "\n" msgstr "" +#: ../DistUpgrade/DistUpgradeQuirks.py:1928 +#, fuzzy, python-brace-format +msgid "Sorry, cannot upgrade this system to {version}" +msgstr "Cannae upgrade" + +#: ../DistUpgrade/DistUpgradeQuirks.py:1931 +msgid "" +"Upgrades for desktop systems running TPM FDE are not currently supported. " +"Please see https://launchpad.net/bugs/2065229 for more information." +msgstr "" + #: ../DistUpgrade/DistUpgradeMain.py:62 msgid "" "Use frontend. Currently available: \n" diff -Nru ubuntu-release-upgrader-24.04.17/po/sd.po ubuntu-release-upgrader-24.04.18/po/sd.po --- ubuntu-release-upgrader-24.04.17/po/sd.po 2024-04-29 14:26:40.000000000 +0000 +++ ubuntu-release-upgrader-24.04.18/po/sd.po 2024-05-09 19:39:21.000000000 +0000 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2024-04-29 16:03+0200\n" +"POT-Creation-Date: 2024-05-09 15:39-0400\n" "PO-Revision-Date: 2013-05-22 11:00+0000\n" "Last-Translator: Michael Terry \n" "Language-Team: Sindhi \n" @@ -897,11 +897,11 @@ msgid "Media Change" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:248 +#: ../DistUpgrade/DistUpgradeQuirks.py:252 msgid "Your graphics hardware may not be fully supported in Ubuntu 14.04." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:250 +#: ../DistUpgrade/DistUpgradeQuirks.py:254 msgid "" "Running the 'unity' desktop environment is not fully supported by your " "graphics hardware. You will maybe end up in a very slow environment after " @@ -911,11 +911,11 @@ "upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:274 +#: ../DistUpgrade/DistUpgradeQuirks.py:278 msgid "Your graphics hardware may not be fully supported in Ubuntu 12.04 LTS." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:276 +#: ../DistUpgrade/DistUpgradeQuirks.py:280 msgid "" "The support in Ubuntu 12.04 LTS for your Intel graphics hardware is limited " "and you may encounter problems after the upgrade. For more information see " @@ -923,13 +923,13 @@ "continue with the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:296 +#: ../DistUpgrade/DistUpgradeQuirks.py:300 msgid "" "Upgrading may reduce desktop effects, and performance in games and other " "graphically intensive programs." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:300 +#: ../DistUpgrade/DistUpgradeQuirks.py:304 msgid "" "This computer is currently using the AMD 'fglrx' graphics driver. No version " "of this driver is available that works with your hardware in Ubuntu 10.04 " @@ -938,12 +938,12 @@ "Do you want to continue?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:339 -#: ../DistUpgrade/DistUpgradeQuirks.py:408 +#: ../DistUpgrade/DistUpgradeQuirks.py:343 +#: ../DistUpgrade/DistUpgradeQuirks.py:412 msgid "Sorry, no more upgrades for this system" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:340 +#: ../DistUpgrade/DistUpgradeQuirks.py:344 #, python-format msgid "" "There will not be any further Ubuntu releases for this system's 'i386' " @@ -952,11 +952,11 @@ "Updates for Ubuntu %s will continue until %s." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:355 +#: ../DistUpgrade/DistUpgradeQuirks.py:359 msgid "No ARMv6 CPU" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:356 +#: ../DistUpgrade/DistUpgradeQuirks.py:360 msgid "" "Your system uses an ARM CPU that is older than the ARMv6 architecture. All " "packages in karmic were built with optimizations requiring ARMv6 as the " @@ -964,12 +964,12 @@ "Ubuntu release with this hardware." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:376 +#: ../DistUpgrade/DistUpgradeQuirks.py:380 msgid "" "Sorry, this storage driver is not supported in kernels for newer releases" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:378 +#: ../DistUpgrade/DistUpgradeQuirks.py:382 #, python-format msgid "" "There will not be any further Ubuntu releases that provide kernel support " @@ -979,7 +979,7 @@ "driver, remove the directory %s and try again." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:409 +#: ../DistUpgrade/DistUpgradeQuirks.py:413 #, python-format msgid "" "There will not be any further Ubuntu releases for this system's POWER8 " @@ -988,11 +988,11 @@ "Updates for Ubuntu %s will continue until %s." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:427 +#: ../DistUpgrade/DistUpgradeQuirks.py:431 msgid "No init available" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:428 +#: ../DistUpgrade/DistUpgradeQuirks.py:432 msgid "" "Your system appears to be a virtualised environment without an init daemon, " "e.g. Linux-VServer. Ubuntu 10.04 LTS cannot function within this type of " @@ -1002,11 +1002,11 @@ "Are you sure you want to continue?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:469 +#: ../DistUpgrade/DistUpgradeQuirks.py:473 msgid "The Robot Operating System (ROS) is installed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:470 +#: ../DistUpgrade/DistUpgradeQuirks.py:474 msgid "" "It appears that ROS is currently installed. Each ROS release is very strict " "about the versions of Ubuntu it supports, and Ubuntu upgrades can fail if " @@ -1023,11 +1023,11 @@ "Are you sure you want to continue?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:670 +#: ../DistUpgrade/DistUpgradeQuirks.py:674 msgid "Connection to the Snap Store failed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:671 +#: ../DistUpgrade/DistUpgradeQuirks.py:675 msgid "" "You have the package lxd installed but your system is unable to reach the " "Snap Store. lxd is now provided via a snap and the release upgrade will fail " @@ -1037,11 +1037,11 @@ "may want to configure a Snap Store proxy." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:686 +#: ../DistUpgrade/DistUpgradeQuirks.py:690 msgid "Connection to Snap Store failed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:687 +#: ../DistUpgrade/DistUpgradeQuirks.py:691 msgid "" "Your system does not have a connection to the Snap Store. For the best " "upgrade experience make sure that your system can connect to api.snapcraft." @@ -1049,11 +1049,11 @@ "Do you still want to continue with the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:696 +#: ../DistUpgrade/DistUpgradeQuirks.py:700 msgid "Outdated snapd package" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:697 +#: ../DistUpgrade/DistUpgradeQuirks.py:701 msgid "" "Your system does not have the latest version of snapd. Please update the " "version of snapd on your system to improve the upgrade experience.\n" @@ -1062,36 +1062,36 @@ #. now perform direct API calls to the store, requesting size #. information for each of the snaps needing installation -#: ../DistUpgrade/DistUpgradeQuirks.py:722 +#: ../DistUpgrade/DistUpgradeQuirks.py:726 msgid "Calculating snap size requirements" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:753 +#: ../DistUpgrade/DistUpgradeQuirks.py:757 msgid "Processing snap replacements" msgstr "" #. TODO: This status should be updated, but the time of #. this change to snap switch is post-translation freeze. -#: ../DistUpgrade/DistUpgradeQuirks.py:761 +#: ../DistUpgrade/DistUpgradeQuirks.py:765 #, python-format msgid "refreshing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:765 +#: ../DistUpgrade/DistUpgradeQuirks.py:769 #, python-format msgid "removing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:768 +#: ../DistUpgrade/DistUpgradeQuirks.py:772 #, python-format msgid "installing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:797 +#: ../DistUpgrade/DistUpgradeQuirks.py:801 msgid "PAE not enabled" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:798 +#: ../DistUpgrade/DistUpgradeQuirks.py:802 msgid "" "Your system uses a CPU that does not have PAE enabled. Ubuntu only supports " "non-PAE systems up to Ubuntu 12.04. To upgrade to a later version of Ubuntu, " @@ -1099,11 +1099,11 @@ "http://help.ubuntu.com/community/EnablingPAE" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1094 +#: ../DistUpgrade/DistUpgradeQuirks.py:1098 msgid "universe component not enabled" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1095 +#: ../DistUpgrade/DistUpgradeQuirks.py:1099 #, python-format msgid "" "You have the package %s installed which is a python2 package. python2 has " @@ -1115,37 +1115,48 @@ "universe component in /etc/apt/sources.list or remove %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1207 +#: ../DistUpgrade/DistUpgradeQuirks.py:1211 msgid "Checking for installed snaps" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1654 +#: ../DistUpgrade/DistUpgradeQuirks.py:1720 msgid "Cannot upgrade this system" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1655 +#: ../DistUpgrade/DistUpgradeQuirks.py:1721 msgid "" "Due to a bug in grub, this system cannot be safely upgraded at this time.\n" "\n" "See https://launchpad.net/bugs/2039172." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1721 +#: ../DistUpgrade/DistUpgradeQuirks.py:1787 #, python-brace-format msgid "Updates for Ubuntu {from_release.version} will " msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1731 +#: ../DistUpgrade/DistUpgradeQuirks.py:1797 msgid "Sorry, cannot upgrade this system to 24.04 LTS" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1734 +#: ../DistUpgrade/DistUpgradeQuirks.py:1800 msgid "" "The Raspberry Pi kernel for Ubuntu 24.04 LTS does not support the armhf " "architecture.\n" "\n" msgstr "" +#: ../DistUpgrade/DistUpgradeQuirks.py:1928 +#, python-brace-format +msgid "Sorry, cannot upgrade this system to {version}" +msgstr "" + +#: ../DistUpgrade/DistUpgradeQuirks.py:1931 +msgid "" +"Upgrades for desktop systems running TPM FDE are not currently supported. " +"Please see https://launchpad.net/bugs/2065229 for more information." +msgstr "" + #: ../DistUpgrade/DistUpgradeMain.py:62 msgid "" "Use frontend. Currently available: \n" diff -Nru ubuntu-release-upgrader-24.04.17/po/se.po ubuntu-release-upgrader-24.04.18/po/se.po --- ubuntu-release-upgrader-24.04.17/po/se.po 2024-04-29 14:26:40.000000000 +0000 +++ ubuntu-release-upgrader-24.04.18/po/se.po 2024-05-09 19:39:21.000000000 +0000 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: ubuntu-release-upgrader\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2024-04-29 16:03+0200\n" +"POT-Creation-Date: 2024-05-09 15:39-0400\n" "PO-Revision-Date: 2013-05-22 15:22+0000\n" "Last-Translator: Christopher Forster \n" "Language-Team: Northern Sami \n" @@ -897,11 +897,11 @@ msgid "Media Change" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:248 +#: ../DistUpgrade/DistUpgradeQuirks.py:252 msgid "Your graphics hardware may not be fully supported in Ubuntu 14.04." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:250 +#: ../DistUpgrade/DistUpgradeQuirks.py:254 msgid "" "Running the 'unity' desktop environment is not fully supported by your " "graphics hardware. You will maybe end up in a very slow environment after " @@ -911,11 +911,11 @@ "upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:274 +#: ../DistUpgrade/DistUpgradeQuirks.py:278 msgid "Your graphics hardware may not be fully supported in Ubuntu 12.04 LTS." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:276 +#: ../DistUpgrade/DistUpgradeQuirks.py:280 msgid "" "The support in Ubuntu 12.04 LTS for your Intel graphics hardware is limited " "and you may encounter problems after the upgrade. For more information see " @@ -923,13 +923,13 @@ "continue with the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:296 +#: ../DistUpgrade/DistUpgradeQuirks.py:300 msgid "" "Upgrading may reduce desktop effects, and performance in games and other " "graphically intensive programs." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:300 +#: ../DistUpgrade/DistUpgradeQuirks.py:304 msgid "" "This computer is currently using the AMD 'fglrx' graphics driver. No version " "of this driver is available that works with your hardware in Ubuntu 10.04 " @@ -938,12 +938,12 @@ "Do you want to continue?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:339 -#: ../DistUpgrade/DistUpgradeQuirks.py:408 +#: ../DistUpgrade/DistUpgradeQuirks.py:343 +#: ../DistUpgrade/DistUpgradeQuirks.py:412 msgid "Sorry, no more upgrades for this system" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:340 +#: ../DistUpgrade/DistUpgradeQuirks.py:344 #, python-format msgid "" "There will not be any further Ubuntu releases for this system's 'i386' " @@ -952,11 +952,11 @@ "Updates for Ubuntu %s will continue until %s." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:355 +#: ../DistUpgrade/DistUpgradeQuirks.py:359 msgid "No ARMv6 CPU" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:356 +#: ../DistUpgrade/DistUpgradeQuirks.py:360 msgid "" "Your system uses an ARM CPU that is older than the ARMv6 architecture. All " "packages in karmic were built with optimizations requiring ARMv6 as the " @@ -964,12 +964,12 @@ "Ubuntu release with this hardware." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:376 +#: ../DistUpgrade/DistUpgradeQuirks.py:380 msgid "" "Sorry, this storage driver is not supported in kernels for newer releases" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:378 +#: ../DistUpgrade/DistUpgradeQuirks.py:382 #, python-format msgid "" "There will not be any further Ubuntu releases that provide kernel support " @@ -979,7 +979,7 @@ "driver, remove the directory %s and try again." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:409 +#: ../DistUpgrade/DistUpgradeQuirks.py:413 #, python-format msgid "" "There will not be any further Ubuntu releases for this system's POWER8 " @@ -988,11 +988,11 @@ "Updates for Ubuntu %s will continue until %s." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:427 +#: ../DistUpgrade/DistUpgradeQuirks.py:431 msgid "No init available" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:428 +#: ../DistUpgrade/DistUpgradeQuirks.py:432 msgid "" "Your system appears to be a virtualised environment without an init daemon, " "e.g. Linux-VServer. Ubuntu 10.04 LTS cannot function within this type of " @@ -1002,11 +1002,11 @@ "Are you sure you want to continue?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:469 +#: ../DistUpgrade/DistUpgradeQuirks.py:473 msgid "The Robot Operating System (ROS) is installed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:470 +#: ../DistUpgrade/DistUpgradeQuirks.py:474 msgid "" "It appears that ROS is currently installed. Each ROS release is very strict " "about the versions of Ubuntu it supports, and Ubuntu upgrades can fail if " @@ -1023,11 +1023,11 @@ "Are you sure you want to continue?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:670 +#: ../DistUpgrade/DistUpgradeQuirks.py:674 msgid "Connection to the Snap Store failed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:671 +#: ../DistUpgrade/DistUpgradeQuirks.py:675 msgid "" "You have the package lxd installed but your system is unable to reach the " "Snap Store. lxd is now provided via a snap and the release upgrade will fail " @@ -1037,11 +1037,11 @@ "may want to configure a Snap Store proxy." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:686 +#: ../DistUpgrade/DistUpgradeQuirks.py:690 msgid "Connection to Snap Store failed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:687 +#: ../DistUpgrade/DistUpgradeQuirks.py:691 msgid "" "Your system does not have a connection to the Snap Store. For the best " "upgrade experience make sure that your system can connect to api.snapcraft." @@ -1049,11 +1049,11 @@ "Do you still want to continue with the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:696 +#: ../DistUpgrade/DistUpgradeQuirks.py:700 msgid "Outdated snapd package" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:697 +#: ../DistUpgrade/DistUpgradeQuirks.py:701 msgid "" "Your system does not have the latest version of snapd. Please update the " "version of snapd on your system to improve the upgrade experience.\n" @@ -1062,36 +1062,36 @@ #. now perform direct API calls to the store, requesting size #. information for each of the snaps needing installation -#: ../DistUpgrade/DistUpgradeQuirks.py:722 +#: ../DistUpgrade/DistUpgradeQuirks.py:726 msgid "Calculating snap size requirements" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:753 +#: ../DistUpgrade/DistUpgradeQuirks.py:757 msgid "Processing snap replacements" msgstr "" #. TODO: This status should be updated, but the time of #. this change to snap switch is post-translation freeze. -#: ../DistUpgrade/DistUpgradeQuirks.py:761 +#: ../DistUpgrade/DistUpgradeQuirks.py:765 #, python-format msgid "refreshing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:765 +#: ../DistUpgrade/DistUpgradeQuirks.py:769 #, python-format msgid "removing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:768 +#: ../DistUpgrade/DistUpgradeQuirks.py:772 #, python-format msgid "installing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:797 +#: ../DistUpgrade/DistUpgradeQuirks.py:801 msgid "PAE not enabled" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:798 +#: ../DistUpgrade/DistUpgradeQuirks.py:802 msgid "" "Your system uses a CPU that does not have PAE enabled. Ubuntu only supports " "non-PAE systems up to Ubuntu 12.04. To upgrade to a later version of Ubuntu, " @@ -1099,11 +1099,11 @@ "http://help.ubuntu.com/community/EnablingPAE" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1094 +#: ../DistUpgrade/DistUpgradeQuirks.py:1098 msgid "universe component not enabled" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1095 +#: ../DistUpgrade/DistUpgradeQuirks.py:1099 #, python-format msgid "" "You have the package %s installed which is a python2 package. python2 has " @@ -1115,37 +1115,48 @@ "universe component in /etc/apt/sources.list or remove %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1207 +#: ../DistUpgrade/DistUpgradeQuirks.py:1211 msgid "Checking for installed snaps" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1654 +#: ../DistUpgrade/DistUpgradeQuirks.py:1720 msgid "Cannot upgrade this system" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1655 +#: ../DistUpgrade/DistUpgradeQuirks.py:1721 msgid "" "Due to a bug in grub, this system cannot be safely upgraded at this time.\n" "\n" "See https://launchpad.net/bugs/2039172." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1721 +#: ../DistUpgrade/DistUpgradeQuirks.py:1787 #, python-brace-format msgid "Updates for Ubuntu {from_release.version} will " msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1731 +#: ../DistUpgrade/DistUpgradeQuirks.py:1797 msgid "Sorry, cannot upgrade this system to 24.04 LTS" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1734 +#: ../DistUpgrade/DistUpgradeQuirks.py:1800 msgid "" "The Raspberry Pi kernel for Ubuntu 24.04 LTS does not support the armhf " "architecture.\n" "\n" msgstr "" +#: ../DistUpgrade/DistUpgradeQuirks.py:1928 +#, python-brace-format +msgid "Sorry, cannot upgrade this system to {version}" +msgstr "" + +#: ../DistUpgrade/DistUpgradeQuirks.py:1931 +msgid "" +"Upgrades for desktop systems running TPM FDE are not currently supported. " +"Please see https://launchpad.net/bugs/2065229 for more information." +msgstr "" + #: ../DistUpgrade/DistUpgradeMain.py:62 msgid "" "Use frontend. Currently available: \n" diff -Nru ubuntu-release-upgrader-24.04.17/po/shn.po ubuntu-release-upgrader-24.04.18/po/shn.po --- ubuntu-release-upgrader-24.04.17/po/shn.po 2024-04-29 14:26:40.000000000 +0000 +++ ubuntu-release-upgrader-24.04.18/po/shn.po 2024-05-09 19:39:21.000000000 +0000 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2024-04-29 16:03+0200\n" +"POT-Creation-Date: 2024-05-09 15:39-0400\n" "PO-Revision-Date: 2013-05-22 11:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Shan \n" @@ -897,11 +897,11 @@ msgid "Media Change" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:248 +#: ../DistUpgrade/DistUpgradeQuirks.py:252 msgid "Your graphics hardware may not be fully supported in Ubuntu 14.04." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:250 +#: ../DistUpgrade/DistUpgradeQuirks.py:254 msgid "" "Running the 'unity' desktop environment is not fully supported by your " "graphics hardware. You will maybe end up in a very slow environment after " @@ -911,11 +911,11 @@ "upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:274 +#: ../DistUpgrade/DistUpgradeQuirks.py:278 msgid "Your graphics hardware may not be fully supported in Ubuntu 12.04 LTS." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:276 +#: ../DistUpgrade/DistUpgradeQuirks.py:280 msgid "" "The support in Ubuntu 12.04 LTS for your Intel graphics hardware is limited " "and you may encounter problems after the upgrade. For more information see " @@ -923,13 +923,13 @@ "continue with the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:296 +#: ../DistUpgrade/DistUpgradeQuirks.py:300 msgid "" "Upgrading may reduce desktop effects, and performance in games and other " "graphically intensive programs." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:300 +#: ../DistUpgrade/DistUpgradeQuirks.py:304 msgid "" "This computer is currently using the AMD 'fglrx' graphics driver. No version " "of this driver is available that works with your hardware in Ubuntu 10.04 " @@ -938,12 +938,12 @@ "Do you want to continue?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:339 -#: ../DistUpgrade/DistUpgradeQuirks.py:408 +#: ../DistUpgrade/DistUpgradeQuirks.py:343 +#: ../DistUpgrade/DistUpgradeQuirks.py:412 msgid "Sorry, no more upgrades for this system" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:340 +#: ../DistUpgrade/DistUpgradeQuirks.py:344 #, python-format msgid "" "There will not be any further Ubuntu releases for this system's 'i386' " @@ -952,11 +952,11 @@ "Updates for Ubuntu %s will continue until %s." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:355 +#: ../DistUpgrade/DistUpgradeQuirks.py:359 msgid "No ARMv6 CPU" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:356 +#: ../DistUpgrade/DistUpgradeQuirks.py:360 msgid "" "Your system uses an ARM CPU that is older than the ARMv6 architecture. All " "packages in karmic were built with optimizations requiring ARMv6 as the " @@ -964,12 +964,12 @@ "Ubuntu release with this hardware." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:376 +#: ../DistUpgrade/DistUpgradeQuirks.py:380 msgid "" "Sorry, this storage driver is not supported in kernels for newer releases" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:378 +#: ../DistUpgrade/DistUpgradeQuirks.py:382 #, python-format msgid "" "There will not be any further Ubuntu releases that provide kernel support " @@ -979,7 +979,7 @@ "driver, remove the directory %s and try again." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:409 +#: ../DistUpgrade/DistUpgradeQuirks.py:413 #, python-format msgid "" "There will not be any further Ubuntu releases for this system's POWER8 " @@ -988,11 +988,11 @@ "Updates for Ubuntu %s will continue until %s." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:427 +#: ../DistUpgrade/DistUpgradeQuirks.py:431 msgid "No init available" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:428 +#: ../DistUpgrade/DistUpgradeQuirks.py:432 msgid "" "Your system appears to be a virtualised environment without an init daemon, " "e.g. Linux-VServer. Ubuntu 10.04 LTS cannot function within this type of " @@ -1002,11 +1002,11 @@ "Are you sure you want to continue?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:469 +#: ../DistUpgrade/DistUpgradeQuirks.py:473 msgid "The Robot Operating System (ROS) is installed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:470 +#: ../DistUpgrade/DistUpgradeQuirks.py:474 msgid "" "It appears that ROS is currently installed. Each ROS release is very strict " "about the versions of Ubuntu it supports, and Ubuntu upgrades can fail if " @@ -1023,11 +1023,11 @@ "Are you sure you want to continue?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:670 +#: ../DistUpgrade/DistUpgradeQuirks.py:674 msgid "Connection to the Snap Store failed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:671 +#: ../DistUpgrade/DistUpgradeQuirks.py:675 msgid "" "You have the package lxd installed but your system is unable to reach the " "Snap Store. lxd is now provided via a snap and the release upgrade will fail " @@ -1037,11 +1037,11 @@ "may want to configure a Snap Store proxy." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:686 +#: ../DistUpgrade/DistUpgradeQuirks.py:690 msgid "Connection to Snap Store failed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:687 +#: ../DistUpgrade/DistUpgradeQuirks.py:691 msgid "" "Your system does not have a connection to the Snap Store. For the best " "upgrade experience make sure that your system can connect to api.snapcraft." @@ -1049,11 +1049,11 @@ "Do you still want to continue with the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:696 +#: ../DistUpgrade/DistUpgradeQuirks.py:700 msgid "Outdated snapd package" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:697 +#: ../DistUpgrade/DistUpgradeQuirks.py:701 msgid "" "Your system does not have the latest version of snapd. Please update the " "version of snapd on your system to improve the upgrade experience.\n" @@ -1062,36 +1062,36 @@ #. now perform direct API calls to the store, requesting size #. information for each of the snaps needing installation -#: ../DistUpgrade/DistUpgradeQuirks.py:722 +#: ../DistUpgrade/DistUpgradeQuirks.py:726 msgid "Calculating snap size requirements" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:753 +#: ../DistUpgrade/DistUpgradeQuirks.py:757 msgid "Processing snap replacements" msgstr "" #. TODO: This status should be updated, but the time of #. this change to snap switch is post-translation freeze. -#: ../DistUpgrade/DistUpgradeQuirks.py:761 +#: ../DistUpgrade/DistUpgradeQuirks.py:765 #, python-format msgid "refreshing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:765 +#: ../DistUpgrade/DistUpgradeQuirks.py:769 #, python-format msgid "removing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:768 +#: ../DistUpgrade/DistUpgradeQuirks.py:772 #, python-format msgid "installing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:797 +#: ../DistUpgrade/DistUpgradeQuirks.py:801 msgid "PAE not enabled" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:798 +#: ../DistUpgrade/DistUpgradeQuirks.py:802 msgid "" "Your system uses a CPU that does not have PAE enabled. Ubuntu only supports " "non-PAE systems up to Ubuntu 12.04. To upgrade to a later version of Ubuntu, " @@ -1099,11 +1099,11 @@ "http://help.ubuntu.com/community/EnablingPAE" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1094 +#: ../DistUpgrade/DistUpgradeQuirks.py:1098 msgid "universe component not enabled" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1095 +#: ../DistUpgrade/DistUpgradeQuirks.py:1099 #, python-format msgid "" "You have the package %s installed which is a python2 package. python2 has " @@ -1115,37 +1115,48 @@ "universe component in /etc/apt/sources.list or remove %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1207 +#: ../DistUpgrade/DistUpgradeQuirks.py:1211 msgid "Checking for installed snaps" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1654 +#: ../DistUpgrade/DistUpgradeQuirks.py:1720 msgid "Cannot upgrade this system" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1655 +#: ../DistUpgrade/DistUpgradeQuirks.py:1721 msgid "" "Due to a bug in grub, this system cannot be safely upgraded at this time.\n" "\n" "See https://launchpad.net/bugs/2039172." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1721 +#: ../DistUpgrade/DistUpgradeQuirks.py:1787 #, python-brace-format msgid "Updates for Ubuntu {from_release.version} will " msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1731 +#: ../DistUpgrade/DistUpgradeQuirks.py:1797 msgid "Sorry, cannot upgrade this system to 24.04 LTS" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1734 +#: ../DistUpgrade/DistUpgradeQuirks.py:1800 msgid "" "The Raspberry Pi kernel for Ubuntu 24.04 LTS does not support the armhf " "architecture.\n" "\n" msgstr "" +#: ../DistUpgrade/DistUpgradeQuirks.py:1928 +#, python-brace-format +msgid "Sorry, cannot upgrade this system to {version}" +msgstr "" + +#: ../DistUpgrade/DistUpgradeQuirks.py:1931 +msgid "" +"Upgrades for desktop systems running TPM FDE are not currently supported. " +"Please see https://launchpad.net/bugs/2065229 for more information." +msgstr "" + #: ../DistUpgrade/DistUpgradeMain.py:62 msgid "" "Use frontend. Currently available: \n" diff -Nru ubuntu-release-upgrader-24.04.17/po/si.po ubuntu-release-upgrader-24.04.18/po/si.po --- ubuntu-release-upgrader-24.04.17/po/si.po 2024-04-29 14:26:40.000000000 +0000 +++ ubuntu-release-upgrader-24.04.18/po/si.po 2024-05-09 19:39:21.000000000 +0000 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2024-04-29 16:03+0200\n" +"POT-Creation-Date: 2024-05-09 15:39-0400\n" "PO-Revision-Date: 2013-05-22 11:00+0000\n" "Last-Translator: Brian Murray \n" "Language-Team: Sinhalese \n" @@ -899,11 +899,11 @@ msgid "Media Change" msgstr "මාධ්‍ය වෙනස" -#: ../DistUpgrade/DistUpgradeQuirks.py:248 +#: ../DistUpgrade/DistUpgradeQuirks.py:252 msgid "Your graphics hardware may not be fully supported in Ubuntu 14.04." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:250 +#: ../DistUpgrade/DistUpgradeQuirks.py:254 msgid "" "Running the 'unity' desktop environment is not fully supported by your " "graphics hardware. You will maybe end up in a very slow environment after " @@ -913,11 +913,11 @@ "upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:274 +#: ../DistUpgrade/DistUpgradeQuirks.py:278 msgid "Your graphics hardware may not be fully supported in Ubuntu 12.04 LTS." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:276 +#: ../DistUpgrade/DistUpgradeQuirks.py:280 msgid "" "The support in Ubuntu 12.04 LTS for your Intel graphics hardware is limited " "and you may encounter problems after the upgrade. For more information see " @@ -925,13 +925,13 @@ "continue with the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:296 +#: ../DistUpgrade/DistUpgradeQuirks.py:300 msgid "" "Upgrading may reduce desktop effects, and performance in games and other " "graphically intensive programs." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:300 +#: ../DistUpgrade/DistUpgradeQuirks.py:304 msgid "" "This computer is currently using the AMD 'fglrx' graphics driver. No version " "of this driver is available that works with your hardware in Ubuntu 10.04 " @@ -940,12 +940,12 @@ "Do you want to continue?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:339 -#: ../DistUpgrade/DistUpgradeQuirks.py:408 +#: ../DistUpgrade/DistUpgradeQuirks.py:343 +#: ../DistUpgrade/DistUpgradeQuirks.py:412 msgid "Sorry, no more upgrades for this system" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:340 +#: ../DistUpgrade/DistUpgradeQuirks.py:344 #, python-format msgid "" "There will not be any further Ubuntu releases for this system's 'i386' " @@ -954,11 +954,11 @@ "Updates for Ubuntu %s will continue until %s." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:355 +#: ../DistUpgrade/DistUpgradeQuirks.py:359 msgid "No ARMv6 CPU" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:356 +#: ../DistUpgrade/DistUpgradeQuirks.py:360 msgid "" "Your system uses an ARM CPU that is older than the ARMv6 architecture. All " "packages in karmic were built with optimizations requiring ARMv6 as the " @@ -966,12 +966,12 @@ "Ubuntu release with this hardware." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:376 +#: ../DistUpgrade/DistUpgradeQuirks.py:380 msgid "" "Sorry, this storage driver is not supported in kernels for newer releases" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:378 +#: ../DistUpgrade/DistUpgradeQuirks.py:382 #, python-format msgid "" "There will not be any further Ubuntu releases that provide kernel support " @@ -981,7 +981,7 @@ "driver, remove the directory %s and try again." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:409 +#: ../DistUpgrade/DistUpgradeQuirks.py:413 #, python-format msgid "" "There will not be any further Ubuntu releases for this system's POWER8 " @@ -990,11 +990,11 @@ "Updates for Ubuntu %s will continue until %s." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:427 +#: ../DistUpgrade/DistUpgradeQuirks.py:431 msgid "No init available" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:428 +#: ../DistUpgrade/DistUpgradeQuirks.py:432 msgid "" "Your system appears to be a virtualised environment without an init daemon, " "e.g. Linux-VServer. Ubuntu 10.04 LTS cannot function within this type of " @@ -1004,11 +1004,11 @@ "Are you sure you want to continue?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:469 +#: ../DistUpgrade/DistUpgradeQuirks.py:473 msgid "The Robot Operating System (ROS) is installed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:470 +#: ../DistUpgrade/DistUpgradeQuirks.py:474 msgid "" "It appears that ROS is currently installed. Each ROS release is very strict " "about the versions of Ubuntu it supports, and Ubuntu upgrades can fail if " @@ -1025,11 +1025,11 @@ "Are you sure you want to continue?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:670 +#: ../DistUpgrade/DistUpgradeQuirks.py:674 msgid "Connection to the Snap Store failed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:671 +#: ../DistUpgrade/DistUpgradeQuirks.py:675 msgid "" "You have the package lxd installed but your system is unable to reach the " "Snap Store. lxd is now provided via a snap and the release upgrade will fail " @@ -1039,11 +1039,11 @@ "may want to configure a Snap Store proxy." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:686 +#: ../DistUpgrade/DistUpgradeQuirks.py:690 msgid "Connection to Snap Store failed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:687 +#: ../DistUpgrade/DistUpgradeQuirks.py:691 msgid "" "Your system does not have a connection to the Snap Store. For the best " "upgrade experience make sure that your system can connect to api.snapcraft." @@ -1051,11 +1051,11 @@ "Do you still want to continue with the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:696 +#: ../DistUpgrade/DistUpgradeQuirks.py:700 msgid "Outdated snapd package" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:697 +#: ../DistUpgrade/DistUpgradeQuirks.py:701 msgid "" "Your system does not have the latest version of snapd. Please update the " "version of snapd on your system to improve the upgrade experience.\n" @@ -1064,36 +1064,36 @@ #. now perform direct API calls to the store, requesting size #. information for each of the snaps needing installation -#: ../DistUpgrade/DistUpgradeQuirks.py:722 +#: ../DistUpgrade/DistUpgradeQuirks.py:726 msgid "Calculating snap size requirements" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:753 +#: ../DistUpgrade/DistUpgradeQuirks.py:757 msgid "Processing snap replacements" msgstr "" #. TODO: This status should be updated, but the time of #. this change to snap switch is post-translation freeze. -#: ../DistUpgrade/DistUpgradeQuirks.py:761 +#: ../DistUpgrade/DistUpgradeQuirks.py:765 #, python-format msgid "refreshing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:765 +#: ../DistUpgrade/DistUpgradeQuirks.py:769 #, python-format msgid "removing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:768 +#: ../DistUpgrade/DistUpgradeQuirks.py:772 #, python-format msgid "installing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:797 +#: ../DistUpgrade/DistUpgradeQuirks.py:801 msgid "PAE not enabled" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:798 +#: ../DistUpgrade/DistUpgradeQuirks.py:802 msgid "" "Your system uses a CPU that does not have PAE enabled. Ubuntu only supports " "non-PAE systems up to Ubuntu 12.04. To upgrade to a later version of Ubuntu, " @@ -1101,11 +1101,11 @@ "http://help.ubuntu.com/community/EnablingPAE" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1094 +#: ../DistUpgrade/DistUpgradeQuirks.py:1098 msgid "universe component not enabled" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1095 +#: ../DistUpgrade/DistUpgradeQuirks.py:1099 #, python-format msgid "" "You have the package %s installed which is a python2 package. python2 has " @@ -1117,39 +1117,50 @@ "universe component in /etc/apt/sources.list or remove %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1207 +#: ../DistUpgrade/DistUpgradeQuirks.py:1211 msgid "Checking for installed snaps" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1654 +#: ../DistUpgrade/DistUpgradeQuirks.py:1720 #, fuzzy msgid "Cannot upgrade this system" msgstr "උසස් කල නොහැක" -#: ../DistUpgrade/DistUpgradeQuirks.py:1655 +#: ../DistUpgrade/DistUpgradeQuirks.py:1721 msgid "" "Due to a bug in grub, this system cannot be safely upgraded at this time.\n" "\n" "See https://launchpad.net/bugs/2039172." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1721 +#: ../DistUpgrade/DistUpgradeQuirks.py:1787 #, python-brace-format msgid "Updates for Ubuntu {from_release.version} will " msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1731 +#: ../DistUpgrade/DistUpgradeQuirks.py:1797 #, fuzzy msgid "Sorry, cannot upgrade this system to 24.04 LTS" msgstr "උසස් කල නොහැක" -#: ../DistUpgrade/DistUpgradeQuirks.py:1734 +#: ../DistUpgrade/DistUpgradeQuirks.py:1800 msgid "" "The Raspberry Pi kernel for Ubuntu 24.04 LTS does not support the armhf " "architecture.\n" "\n" msgstr "" +#: ../DistUpgrade/DistUpgradeQuirks.py:1928 +#, fuzzy, python-brace-format +msgid "Sorry, cannot upgrade this system to {version}" +msgstr "උසස් කල නොහැක" + +#: ../DistUpgrade/DistUpgradeQuirks.py:1931 +msgid "" +"Upgrades for desktop systems running TPM FDE are not currently supported. " +"Please see https://launchpad.net/bugs/2065229 for more information." +msgstr "" + #: ../DistUpgrade/DistUpgradeMain.py:62 msgid "" "Use frontend. Currently available: \n" diff -Nru ubuntu-release-upgrader-24.04.17/po/sk.po ubuntu-release-upgrader-24.04.18/po/sk.po --- ubuntu-release-upgrader-24.04.17/po/sk.po 2024-04-29 14:26:40.000000000 +0000 +++ ubuntu-release-upgrader-24.04.18/po/sk.po 2024-05-09 19:39:21.000000000 +0000 @@ -12,7 +12,7 @@ msgstr "" "Project-Id-Version: sk\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2024-04-29 16:03+0200\n" +"POT-Creation-Date: 2024-05-09 15:39-0400\n" "PO-Revision-Date: 2013-05-23 02:43+0000\n" "Last-Translator: Iain Lane \n" "Language-Team: \n" @@ -1034,11 +1034,11 @@ msgid "Media Change" msgstr "Výmena nosiča" -#: ../DistUpgrade/DistUpgradeQuirks.py:248 +#: ../DistUpgrade/DistUpgradeQuirks.py:252 msgid "Your graphics hardware may not be fully supported in Ubuntu 14.04." msgstr "Váš grafický hardvér nemusí byť v Ubuntu 14.04 plne podporovaný." -#: ../DistUpgrade/DistUpgradeQuirks.py:250 +#: ../DistUpgrade/DistUpgradeQuirks.py:254 msgid "" "Running the 'unity' desktop environment is not fully supported by your " "graphics hardware. You will maybe end up in a very slow environment after " @@ -1053,11 +1053,11 @@ "nájdete na adrese https://wiki.ubuntu.com/X/Bugs/" "UpdateManagerWarningForUnity3D Chcete napriek tomu pokračovať v aktualizácii?" -#: ../DistUpgrade/DistUpgradeQuirks.py:274 +#: ../DistUpgrade/DistUpgradeQuirks.py:278 msgid "Your graphics hardware may not be fully supported in Ubuntu 12.04 LTS." msgstr "Ubuntu 12.04 LTS nemusí plne podporovať váš grafický hardvér." -#: ../DistUpgrade/DistUpgradeQuirks.py:276 +#: ../DistUpgrade/DistUpgradeQuirks.py:280 msgid "" "The support in Ubuntu 12.04 LTS for your Intel graphics hardware is limited " "and you may encounter problems after the upgrade. For more information see " @@ -1069,7 +1069,7 @@ "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForI8xx Chcete pokračovať " "v aktualizácii?" -#: ../DistUpgrade/DistUpgradeQuirks.py:296 +#: ../DistUpgrade/DistUpgradeQuirks.py:300 msgid "" "Upgrading may reduce desktop effects, and performance in games and other " "graphically intensive programs." @@ -1077,7 +1077,7 @@ "Aktualizácia systému môže vypnúť niektoré efekty prostredia a znížiť výkon " "hier a iných graficky náročných programov." -#: ../DistUpgrade/DistUpgradeQuirks.py:300 +#: ../DistUpgrade/DistUpgradeQuirks.py:304 msgid "" "This computer is currently using the AMD 'fglrx' graphics driver. No version " "of this driver is available that works with your hardware in Ubuntu 10.04 " @@ -1091,12 +1091,12 @@ "\n" "Chcete pokračovať?" -#: ../DistUpgrade/DistUpgradeQuirks.py:339 -#: ../DistUpgrade/DistUpgradeQuirks.py:408 +#: ../DistUpgrade/DistUpgradeQuirks.py:343 +#: ../DistUpgrade/DistUpgradeQuirks.py:412 msgid "Sorry, no more upgrades for this system" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:340 +#: ../DistUpgrade/DistUpgradeQuirks.py:344 #, python-format msgid "" "There will not be any further Ubuntu releases for this system's 'i386' " @@ -1105,11 +1105,11 @@ "Updates for Ubuntu %s will continue until %s." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:355 +#: ../DistUpgrade/DistUpgradeQuirks.py:359 msgid "No ARMv6 CPU" msgstr "Neobsahuje procesor ARMv6" -#: ../DistUpgrade/DistUpgradeQuirks.py:356 +#: ../DistUpgrade/DistUpgradeQuirks.py:360 msgid "" "Your system uses an ARM CPU that is older than the ARMv6 architecture. All " "packages in karmic were built with optimizations requiring ARMv6 as the " @@ -1121,12 +1121,12 @@ "architektúru ARMv6 alebo lepšiu. Na tomto hardvéri nie je možné aktualizovať " "váš systém na nové vydanie Ubuntu." -#: ../DistUpgrade/DistUpgradeQuirks.py:376 +#: ../DistUpgrade/DistUpgradeQuirks.py:380 msgid "" "Sorry, this storage driver is not supported in kernels for newer releases" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:378 +#: ../DistUpgrade/DistUpgradeQuirks.py:382 #, python-format msgid "" "There will not be any further Ubuntu releases that provide kernel support " @@ -1136,7 +1136,7 @@ "driver, remove the directory %s and try again." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:409 +#: ../DistUpgrade/DistUpgradeQuirks.py:413 #, python-format msgid "" "There will not be any further Ubuntu releases for this system's POWER8 " @@ -1145,11 +1145,11 @@ "Updates for Ubuntu %s will continue until %s." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:427 +#: ../DistUpgrade/DistUpgradeQuirks.py:431 msgid "No init available" msgstr "Nie je dostupný žiaden init" -#: ../DistUpgrade/DistUpgradeQuirks.py:428 +#: ../DistUpgrade/DistUpgradeQuirks.py:432 msgid "" "Your system appears to be a virtualised environment without an init daemon, " "e.g. Linux-VServer. Ubuntu 10.04 LTS cannot function within this type of " @@ -1164,11 +1164,11 @@ "\n" "Ste si istý, že chcete pokračovať?" -#: ../DistUpgrade/DistUpgradeQuirks.py:469 +#: ../DistUpgrade/DistUpgradeQuirks.py:473 msgid "The Robot Operating System (ROS) is installed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:470 +#: ../DistUpgrade/DistUpgradeQuirks.py:474 msgid "" "It appears that ROS is currently installed. Each ROS release is very strict " "about the versions of Ubuntu it supports, and Ubuntu upgrades can fail if " @@ -1185,11 +1185,11 @@ "Are you sure you want to continue?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:670 +#: ../DistUpgrade/DistUpgradeQuirks.py:674 msgid "Connection to the Snap Store failed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:671 +#: ../DistUpgrade/DistUpgradeQuirks.py:675 msgid "" "You have the package lxd installed but your system is unable to reach the " "Snap Store. lxd is now provided via a snap and the release upgrade will fail " @@ -1199,11 +1199,11 @@ "may want to configure a Snap Store proxy." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:686 +#: ../DistUpgrade/DistUpgradeQuirks.py:690 msgid "Connection to Snap Store failed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:687 +#: ../DistUpgrade/DistUpgradeQuirks.py:691 msgid "" "Your system does not have a connection to the Snap Store. For the best " "upgrade experience make sure that your system can connect to api.snapcraft." @@ -1211,11 +1211,11 @@ "Do you still want to continue with the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:696 +#: ../DistUpgrade/DistUpgradeQuirks.py:700 msgid "Outdated snapd package" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:697 +#: ../DistUpgrade/DistUpgradeQuirks.py:701 msgid "" "Your system does not have the latest version of snapd. Please update the " "version of snapd on your system to improve the upgrade experience.\n" @@ -1224,36 +1224,36 @@ #. now perform direct API calls to the store, requesting size #. information for each of the snaps needing installation -#: ../DistUpgrade/DistUpgradeQuirks.py:722 +#: ../DistUpgrade/DistUpgradeQuirks.py:726 msgid "Calculating snap size requirements" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:753 +#: ../DistUpgrade/DistUpgradeQuirks.py:757 msgid "Processing snap replacements" msgstr "" #. TODO: This status should be updated, but the time of #. this change to snap switch is post-translation freeze. -#: ../DistUpgrade/DistUpgradeQuirks.py:761 +#: ../DistUpgrade/DistUpgradeQuirks.py:765 #, python-format msgid "refreshing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:765 +#: ../DistUpgrade/DistUpgradeQuirks.py:769 #, python-format msgid "removing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:768 +#: ../DistUpgrade/DistUpgradeQuirks.py:772 #, python-format msgid "installing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:797 +#: ../DistUpgrade/DistUpgradeQuirks.py:801 msgid "PAE not enabled" msgstr "PAE nie je zapnuté" -#: ../DistUpgrade/DistUpgradeQuirks.py:798 +#: ../DistUpgrade/DistUpgradeQuirks.py:802 msgid "" "Your system uses a CPU that does not have PAE enabled. Ubuntu only supports " "non-PAE systems up to Ubuntu 12.04. To upgrade to a later version of Ubuntu, " @@ -1265,11 +1265,11 @@ "Ubuntu, musíte zapnúť PAE (ak je to možné), pozri:\n" "http://help.ubuntu.com/community/EnablingPAE" -#: ../DistUpgrade/DistUpgradeQuirks.py:1094 +#: ../DistUpgrade/DistUpgradeQuirks.py:1098 msgid "universe component not enabled" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1095 +#: ../DistUpgrade/DistUpgradeQuirks.py:1099 #, python-format msgid "" "You have the package %s installed which is a python2 package. python2 has " @@ -1281,39 +1281,50 @@ "universe component in /etc/apt/sources.list or remove %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1207 +#: ../DistUpgrade/DistUpgradeQuirks.py:1211 msgid "Checking for installed snaps" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1654 +#: ../DistUpgrade/DistUpgradeQuirks.py:1720 #, fuzzy msgid "Cannot upgrade this system" msgstr "Nie je možné vykonať prechod na novšiu verziu" -#: ../DistUpgrade/DistUpgradeQuirks.py:1655 +#: ../DistUpgrade/DistUpgradeQuirks.py:1721 msgid "" "Due to a bug in grub, this system cannot be safely upgraded at this time.\n" "\n" "See https://launchpad.net/bugs/2039172." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1721 +#: ../DistUpgrade/DistUpgradeQuirks.py:1787 #, python-brace-format msgid "Updates for Ubuntu {from_release.version} will " msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1731 +#: ../DistUpgrade/DistUpgradeQuirks.py:1797 #, fuzzy msgid "Sorry, cannot upgrade this system to 24.04 LTS" msgstr "Nie je možné vykonať prechod na novšiu verziu" -#: ../DistUpgrade/DistUpgradeQuirks.py:1734 +#: ../DistUpgrade/DistUpgradeQuirks.py:1800 msgid "" "The Raspberry Pi kernel for Ubuntu 24.04 LTS does not support the armhf " "architecture.\n" "\n" msgstr "" +#: ../DistUpgrade/DistUpgradeQuirks.py:1928 +#, fuzzy, python-brace-format +msgid "Sorry, cannot upgrade this system to {version}" +msgstr "Nie je možné vykonať prechod na novšiu verziu" + +#: ../DistUpgrade/DistUpgradeQuirks.py:1931 +msgid "" +"Upgrades for desktop systems running TPM FDE are not currently supported. " +"Please see https://launchpad.net/bugs/2065229 for more information." +msgstr "" + #: ../DistUpgrade/DistUpgradeMain.py:62 msgid "" "Use frontend. Currently available: \n" diff -Nru ubuntu-release-upgrader-24.04.17/po/sl.po ubuntu-release-upgrader-24.04.18/po/sl.po --- ubuntu-release-upgrader-24.04.17/po/sl.po 2024-04-29 14:26:40.000000000 +0000 +++ ubuntu-release-upgrader-24.04.18/po/sl.po 2024-05-09 19:39:21.000000000 +0000 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2024-04-29 16:03+0200\n" +"POT-Creation-Date: 2024-05-09 15:39-0400\n" "PO-Revision-Date: 2019-06-18 17:53+0000\n" "Last-Translator: Brian Murray \n" "Language-Team: Slovenian \n" @@ -1072,12 +1072,12 @@ msgid "Media Change" msgstr "Menjava nosilca podatkov" -#: ../DistUpgrade/DistUpgradeQuirks.py:248 +#: ../DistUpgrade/DistUpgradeQuirks.py:252 msgid "Your graphics hardware may not be fully supported in Ubuntu 14.04." msgstr "" "Vaša grafična strojna oprema morda ni popolnoma podprta v Ubuntuju 14.04." -#: ../DistUpgrade/DistUpgradeQuirks.py:250 +#: ../DistUpgrade/DistUpgradeQuirks.py:254 msgid "" "Running the 'unity' desktop environment is not fully supported by your " "graphics hardware. You will maybe end up in a very slow environment after " @@ -1092,12 +1092,12 @@ "oglejte https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForUnity3D Ali še " "vedno želite nadaljevati z nadgradnjo?" -#: ../DistUpgrade/DistUpgradeQuirks.py:274 +#: ../DistUpgrade/DistUpgradeQuirks.py:278 msgid "Your graphics hardware may not be fully supported in Ubuntu 12.04 LTS." msgstr "" "Vaša grafična strojna oprema v Ubuntuju 12.04 LTS morda ni popolnoma podprta." -#: ../DistUpgrade/DistUpgradeQuirks.py:276 +#: ../DistUpgrade/DistUpgradeQuirks.py:280 msgid "" "The support in Ubuntu 12.04 LTS for your Intel graphics hardware is limited " "and you may encounter problems after the upgrade. For more information see " @@ -1109,7 +1109,7 @@ "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForI8xx. Ali želite z " "nadgradnjo nadaljevati?" -#: ../DistUpgrade/DistUpgradeQuirks.py:296 +#: ../DistUpgrade/DistUpgradeQuirks.py:300 msgid "" "Upgrading may reduce desktop effects, and performance in games and other " "graphically intensive programs." @@ -1117,7 +1117,7 @@ "Nadgradnja bo verjetno vplivala na učinke namizja, zmogljivost pri igrah in " "drugih grafično zahtevnih programih." -#: ../DistUpgrade/DistUpgradeQuirks.py:300 +#: ../DistUpgrade/DistUpgradeQuirks.py:304 msgid "" "This computer is currently using the AMD 'fglrx' graphics driver. No version " "of this driver is available that works with your hardware in Ubuntu 10.04 " @@ -1130,12 +1130,12 @@ "\n" "Ali želite nadaljevati?" -#: ../DistUpgrade/DistUpgradeQuirks.py:339 -#: ../DistUpgrade/DistUpgradeQuirks.py:408 +#: ../DistUpgrade/DistUpgradeQuirks.py:343 +#: ../DistUpgrade/DistUpgradeQuirks.py:412 msgid "Sorry, no more upgrades for this system" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:340 +#: ../DistUpgrade/DistUpgradeQuirks.py:344 #, python-format msgid "" "There will not be any further Ubuntu releases for this system's 'i386' " @@ -1144,11 +1144,11 @@ "Updates for Ubuntu %s will continue until %s." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:355 +#: ../DistUpgrade/DistUpgradeQuirks.py:359 msgid "No ARMv6 CPU" msgstr "Ni CPE ARMv6" -#: ../DistUpgrade/DistUpgradeQuirks.py:356 +#: ../DistUpgrade/DistUpgradeQuirks.py:360 msgid "" "Your system uses an ARM CPU that is older than the ARMv6 architecture. All " "packages in karmic were built with optimizations requiring ARMv6 as the " @@ -1160,12 +1160,12 @@ "različico arhitekture. Na trenutni strojni opremi ni mogoče nadgraditi " "vašega sistema na novo izdajo distribucije Ubuntu." -#: ../DistUpgrade/DistUpgradeQuirks.py:376 +#: ../DistUpgrade/DistUpgradeQuirks.py:380 msgid "" "Sorry, this storage driver is not supported in kernels for newer releases" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:378 +#: ../DistUpgrade/DistUpgradeQuirks.py:382 #, python-format msgid "" "There will not be any further Ubuntu releases that provide kernel support " @@ -1175,7 +1175,7 @@ "driver, remove the directory %s and try again." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:409 +#: ../DistUpgrade/DistUpgradeQuirks.py:413 #, python-format msgid "" "There will not be any further Ubuntu releases for this system's POWER8 " @@ -1184,11 +1184,11 @@ "Updates for Ubuntu %s will continue until %s." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:427 +#: ../DistUpgrade/DistUpgradeQuirks.py:431 msgid "No init available" msgstr "Init ni na voljo" -#: ../DistUpgrade/DistUpgradeQuirks.py:428 +#: ../DistUpgrade/DistUpgradeQuirks.py:432 msgid "" "Your system appears to be a virtualised environment without an init daemon, " "e.g. Linux-VServer. Ubuntu 10.04 LTS cannot function within this type of " @@ -1203,11 +1203,11 @@ "\n" "Ali res želite nadaljevati?" -#: ../DistUpgrade/DistUpgradeQuirks.py:469 +#: ../DistUpgrade/DistUpgradeQuirks.py:473 msgid "The Robot Operating System (ROS) is installed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:470 +#: ../DistUpgrade/DistUpgradeQuirks.py:474 msgid "" "It appears that ROS is currently installed. Each ROS release is very strict " "about the versions of Ubuntu it supports, and Ubuntu upgrades can fail if " @@ -1224,12 +1224,12 @@ "Are you sure you want to continue?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:670 +#: ../DistUpgrade/DistUpgradeQuirks.py:674 #, fuzzy msgid "Connection to the Snap Store failed" msgstr "Povezava s trgovino Snap je spodletela" -#: ../DistUpgrade/DistUpgradeQuirks.py:671 +#: ../DistUpgrade/DistUpgradeQuirks.py:675 msgid "" "You have the package lxd installed but your system is unable to reach the " "Snap Store. lxd is now provided via a snap and the release upgrade will fail " @@ -1239,11 +1239,11 @@ "may want to configure a Snap Store proxy." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:686 +#: ../DistUpgrade/DistUpgradeQuirks.py:690 msgid "Connection to Snap Store failed" msgstr "Povezava s trgovino Snap je spodletela" -#: ../DistUpgrade/DistUpgradeQuirks.py:687 +#: ../DistUpgrade/DistUpgradeQuirks.py:691 msgid "" "Your system does not have a connection to the Snap Store. For the best " "upgrade experience make sure that your system can connect to api.snapcraft." @@ -1254,11 +1254,11 @@ "se prepričajte, da se vaš sistem lahko poveže z api.snapcraft.io.\n" "Ali še vedno želite nadaljevati z nadgradnjo?" -#: ../DistUpgrade/DistUpgradeQuirks.py:696 +#: ../DistUpgrade/DistUpgradeQuirks.py:700 msgid "Outdated snapd package" msgstr "Zastarel paket snapd" -#: ../DistUpgrade/DistUpgradeQuirks.py:697 +#: ../DistUpgrade/DistUpgradeQuirks.py:701 msgid "" "Your system does not have the latest version of snapd. Please update the " "version of snapd on your system to improve the upgrade experience.\n" @@ -1270,36 +1270,36 @@ #. now perform direct API calls to the store, requesting size #. information for each of the snaps needing installation -#: ../DistUpgrade/DistUpgradeQuirks.py:722 +#: ../DistUpgrade/DistUpgradeQuirks.py:726 msgid "Calculating snap size requirements" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:753 +#: ../DistUpgrade/DistUpgradeQuirks.py:757 msgid "Processing snap replacements" msgstr "" #. TODO: This status should be updated, but the time of #. this change to snap switch is post-translation freeze. -#: ../DistUpgrade/DistUpgradeQuirks.py:761 +#: ../DistUpgrade/DistUpgradeQuirks.py:765 #, python-format msgid "refreshing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:765 +#: ../DistUpgrade/DistUpgradeQuirks.py:769 #, python-format msgid "removing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:768 +#: ../DistUpgrade/DistUpgradeQuirks.py:772 #, python-format msgid "installing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:797 +#: ../DistUpgrade/DistUpgradeQuirks.py:801 msgid "PAE not enabled" msgstr "PAE ni omogočen" -#: ../DistUpgrade/DistUpgradeQuirks.py:798 +#: ../DistUpgrade/DistUpgradeQuirks.py:802 msgid "" "Your system uses a CPU that does not have PAE enabled. Ubuntu only supports " "non-PAE systems up to Ubuntu 12.04. To upgrade to a later version of Ubuntu, " @@ -1312,11 +1312,11 @@ "si:\n" "http://help.ubuntu.com/community/EnablingPAE" -#: ../DistUpgrade/DistUpgradeQuirks.py:1094 +#: ../DistUpgrade/DistUpgradeQuirks.py:1098 msgid "universe component not enabled" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1095 +#: ../DistUpgrade/DistUpgradeQuirks.py:1099 #, python-format msgid "" "You have the package %s installed which is a python2 package. python2 has " @@ -1328,39 +1328,50 @@ "universe component in /etc/apt/sources.list or remove %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1207 +#: ../DistUpgrade/DistUpgradeQuirks.py:1211 msgid "Checking for installed snaps" msgstr "Preverjanje nameščenih snapov" -#: ../DistUpgrade/DistUpgradeQuirks.py:1654 +#: ../DistUpgrade/DistUpgradeQuirks.py:1720 #, fuzzy msgid "Cannot upgrade this system" msgstr "Ni mogoče nadgraditi" -#: ../DistUpgrade/DistUpgradeQuirks.py:1655 +#: ../DistUpgrade/DistUpgradeQuirks.py:1721 msgid "" "Due to a bug in grub, this system cannot be safely upgraded at this time.\n" "\n" "See https://launchpad.net/bugs/2039172." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1721 +#: ../DistUpgrade/DistUpgradeQuirks.py:1787 #, python-brace-format msgid "Updates for Ubuntu {from_release.version} will " msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1731 +#: ../DistUpgrade/DistUpgradeQuirks.py:1797 #, fuzzy msgid "Sorry, cannot upgrade this system to 24.04 LTS" msgstr "Ni mogoče nadgraditi" -#: ../DistUpgrade/DistUpgradeQuirks.py:1734 +#: ../DistUpgrade/DistUpgradeQuirks.py:1800 msgid "" "The Raspberry Pi kernel for Ubuntu 24.04 LTS does not support the armhf " "architecture.\n" "\n" msgstr "" +#: ../DistUpgrade/DistUpgradeQuirks.py:1928 +#, fuzzy, python-brace-format +msgid "Sorry, cannot upgrade this system to {version}" +msgstr "Ni mogoče nadgraditi" + +#: ../DistUpgrade/DistUpgradeQuirks.py:1931 +msgid "" +"Upgrades for desktop systems running TPM FDE are not currently supported. " +"Please see https://launchpad.net/bugs/2065229 for more information." +msgstr "" + #: ../DistUpgrade/DistUpgradeMain.py:62 msgid "" "Use frontend. Currently available: \n" diff -Nru ubuntu-release-upgrader-24.04.17/po/sq.po ubuntu-release-upgrader-24.04.18/po/sq.po --- ubuntu-release-upgrader-24.04.17/po/sq.po 2024-04-29 14:26:40.000000000 +0000 +++ ubuntu-release-upgrader-24.04.18/po/sq.po 2024-05-09 19:39:21.000000000 +0000 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2024-04-29 16:03+0200\n" +"POT-Creation-Date: 2024-05-09 15:39-0400\n" "PO-Revision-Date: 2019-06-18 17:54+0000\n" "Last-Translator: Vilson Gjeci \n" "Language-Team: Albanian \n" @@ -1045,12 +1045,12 @@ msgid "Media Change" msgstr "Ndryshim i Medias" -#: ../DistUpgrade/DistUpgradeQuirks.py:248 +#: ../DistUpgrade/DistUpgradeQuirks.py:252 msgid "Your graphics hardware may not be fully supported in Ubuntu 14.04." msgstr "" "Hardueri juaj i garfikëve mund të mos suportohet plotësisht në Ubuntu 14.04." -#: ../DistUpgrade/DistUpgradeQuirks.py:250 +#: ../DistUpgrade/DistUpgradeQuirks.py:254 msgid "" "Running the 'unity' desktop environment is not fully supported by your " "graphics hardware. You will maybe end up in a very slow environment after " @@ -1066,11 +1066,11 @@ "UpdateManagerWarningForUnity3D. Prapëseprapë a dëshironi të vazhdoni me " "përditësimin?" -#: ../DistUpgrade/DistUpgradeQuirks.py:274 +#: ../DistUpgrade/DistUpgradeQuirks.py:278 msgid "Your graphics hardware may not be fully supported in Ubuntu 12.04 LTS." msgstr "Grafikët tuaj mund të mos suportohen plotësisht në Ubuntu 12.04 LTS." -#: ../DistUpgrade/DistUpgradeQuirks.py:276 +#: ../DistUpgrade/DistUpgradeQuirks.py:280 msgid "" "The support in Ubuntu 12.04 LTS for your Intel graphics hardware is limited " "and you may encounter problems after the upgrade. For more information see " @@ -1082,7 +1082,7 @@ "informacion shikoni https://wiki.ubuntu.com/X/Bugs/" "UpdateManagerWarningForI8xx Dëshironi të vazhdoni me përditësimin?" -#: ../DistUpgrade/DistUpgradeQuirks.py:296 +#: ../DistUpgrade/DistUpgradeQuirks.py:300 msgid "" "Upgrading may reduce desktop effects, and performance in games and other " "graphically intensive programs." @@ -1090,7 +1090,7 @@ "Përditësimi mund të pakësojë efektet e desktopit, performancën e lojërave " "dhe të programeve të tjerë me grafikë intensivë." -#: ../DistUpgrade/DistUpgradeQuirks.py:300 +#: ../DistUpgrade/DistUpgradeQuirks.py:304 msgid "" "This computer is currently using the AMD 'fglrx' graphics driver. No version " "of this driver is available that works with your hardware in Ubuntu 10.04 " @@ -1104,12 +1104,12 @@ "\n" "Dëshironi të vazhdoni?" -#: ../DistUpgrade/DistUpgradeQuirks.py:339 -#: ../DistUpgrade/DistUpgradeQuirks.py:408 +#: ../DistUpgrade/DistUpgradeQuirks.py:343 +#: ../DistUpgrade/DistUpgradeQuirks.py:412 msgid "Sorry, no more upgrades for this system" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:340 +#: ../DistUpgrade/DistUpgradeQuirks.py:344 #, python-format msgid "" "There will not be any further Ubuntu releases for this system's 'i386' " @@ -1118,11 +1118,11 @@ "Updates for Ubuntu %s will continue until %s." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:355 +#: ../DistUpgrade/DistUpgradeQuirks.py:359 msgid "No ARMv6 CPU" msgstr "Jo ARMv6 CPU" -#: ../DistUpgrade/DistUpgradeQuirks.py:356 +#: ../DistUpgrade/DistUpgradeQuirks.py:360 msgid "" "Your system uses an ARM CPU that is older than the ARMv6 architecture. All " "packages in karmic were built with optimizations requiring ARMv6 as the " @@ -1134,12 +1134,12 @@ "ARMv6 si arkitekturë minimale. Nuk është e mundur ta përditësoni sistemin " "tuaj në një version të ri të Ubuntu me këtë hardware." -#: ../DistUpgrade/DistUpgradeQuirks.py:376 +#: ../DistUpgrade/DistUpgradeQuirks.py:380 msgid "" "Sorry, this storage driver is not supported in kernels for newer releases" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:378 +#: ../DistUpgrade/DistUpgradeQuirks.py:382 #, python-format msgid "" "There will not be any further Ubuntu releases that provide kernel support " @@ -1149,7 +1149,7 @@ "driver, remove the directory %s and try again." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:409 +#: ../DistUpgrade/DistUpgradeQuirks.py:413 #, python-format msgid "" "There will not be any further Ubuntu releases for this system's POWER8 " @@ -1158,11 +1158,11 @@ "Updates for Ubuntu %s will continue until %s." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:427 +#: ../DistUpgrade/DistUpgradeQuirks.py:431 msgid "No init available" msgstr "Nuk ka init të disponueshëm" -#: ../DistUpgrade/DistUpgradeQuirks.py:428 +#: ../DistUpgrade/DistUpgradeQuirks.py:432 msgid "" "Your system appears to be a virtualised environment without an init daemon, " "e.g. Linux-VServer. Ubuntu 10.04 LTS cannot function within this type of " @@ -1178,11 +1178,11 @@ "\n" "Jeni i sigurtë që dëshironi të vazhdoni?" -#: ../DistUpgrade/DistUpgradeQuirks.py:469 +#: ../DistUpgrade/DistUpgradeQuirks.py:473 msgid "The Robot Operating System (ROS) is installed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:470 +#: ../DistUpgrade/DistUpgradeQuirks.py:474 msgid "" "It appears that ROS is currently installed. Each ROS release is very strict " "about the versions of Ubuntu it supports, and Ubuntu upgrades can fail if " @@ -1199,11 +1199,11 @@ "Are you sure you want to continue?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:670 +#: ../DistUpgrade/DistUpgradeQuirks.py:674 msgid "Connection to the Snap Store failed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:671 +#: ../DistUpgrade/DistUpgradeQuirks.py:675 msgid "" "You have the package lxd installed but your system is unable to reach the " "Snap Store. lxd is now provided via a snap and the release upgrade will fail " @@ -1213,11 +1213,11 @@ "may want to configure a Snap Store proxy." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:686 +#: ../DistUpgrade/DistUpgradeQuirks.py:690 msgid "Connection to Snap Store failed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:687 +#: ../DistUpgrade/DistUpgradeQuirks.py:691 msgid "" "Your system does not have a connection to the Snap Store. For the best " "upgrade experience make sure that your system can connect to api.snapcraft." @@ -1225,11 +1225,11 @@ "Do you still want to continue with the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:696 +#: ../DistUpgrade/DistUpgradeQuirks.py:700 msgid "Outdated snapd package" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:697 +#: ../DistUpgrade/DistUpgradeQuirks.py:701 msgid "" "Your system does not have the latest version of snapd. Please update the " "version of snapd on your system to improve the upgrade experience.\n" @@ -1238,36 +1238,36 @@ #. now perform direct API calls to the store, requesting size #. information for each of the snaps needing installation -#: ../DistUpgrade/DistUpgradeQuirks.py:722 +#: ../DistUpgrade/DistUpgradeQuirks.py:726 msgid "Calculating snap size requirements" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:753 +#: ../DistUpgrade/DistUpgradeQuirks.py:757 msgid "Processing snap replacements" msgstr "" #. TODO: This status should be updated, but the time of #. this change to snap switch is post-translation freeze. -#: ../DistUpgrade/DistUpgradeQuirks.py:761 +#: ../DistUpgrade/DistUpgradeQuirks.py:765 #, python-format msgid "refreshing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:765 +#: ../DistUpgrade/DistUpgradeQuirks.py:769 #, python-format msgid "removing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:768 +#: ../DistUpgrade/DistUpgradeQuirks.py:772 #, python-format msgid "installing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:797 +#: ../DistUpgrade/DistUpgradeQuirks.py:801 msgid "PAE not enabled" msgstr "PAE nuk është aktivizuar" -#: ../DistUpgrade/DistUpgradeQuirks.py:798 +#: ../DistUpgrade/DistUpgradeQuirks.py:802 msgid "" "Your system uses a CPU that does not have PAE enabled. Ubuntu only supports " "non-PAE systems up to Ubuntu 12.04. To upgrade to a later version of Ubuntu, " @@ -1280,11 +1280,11 @@ "shikoni:\n" "http://help.ubuntu.com/community/EnablingPAE" -#: ../DistUpgrade/DistUpgradeQuirks.py:1094 +#: ../DistUpgrade/DistUpgradeQuirks.py:1098 msgid "universe component not enabled" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1095 +#: ../DistUpgrade/DistUpgradeQuirks.py:1099 #, python-format msgid "" "You have the package %s installed which is a python2 package. python2 has " @@ -1296,39 +1296,50 @@ "universe component in /etc/apt/sources.list or remove %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1207 +#: ../DistUpgrade/DistUpgradeQuirks.py:1211 msgid "Checking for installed snaps" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1654 +#: ../DistUpgrade/DistUpgradeQuirks.py:1720 #, fuzzy msgid "Cannot upgrade this system" msgstr "Nuk mund të aktualizoj" -#: ../DistUpgrade/DistUpgradeQuirks.py:1655 +#: ../DistUpgrade/DistUpgradeQuirks.py:1721 msgid "" "Due to a bug in grub, this system cannot be safely upgraded at this time.\n" "\n" "See https://launchpad.net/bugs/2039172." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1721 +#: ../DistUpgrade/DistUpgradeQuirks.py:1787 #, python-brace-format msgid "Updates for Ubuntu {from_release.version} will " msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1731 +#: ../DistUpgrade/DistUpgradeQuirks.py:1797 #, fuzzy msgid "Sorry, cannot upgrade this system to 24.04 LTS" msgstr "Nuk mund të aktualizoj" -#: ../DistUpgrade/DistUpgradeQuirks.py:1734 +#: ../DistUpgrade/DistUpgradeQuirks.py:1800 msgid "" "The Raspberry Pi kernel for Ubuntu 24.04 LTS does not support the armhf " "architecture.\n" "\n" msgstr "" +#: ../DistUpgrade/DistUpgradeQuirks.py:1928 +#, fuzzy, python-brace-format +msgid "Sorry, cannot upgrade this system to {version}" +msgstr "Nuk mund të aktualizoj" + +#: ../DistUpgrade/DistUpgradeQuirks.py:1931 +msgid "" +"Upgrades for desktop systems running TPM FDE are not currently supported. " +"Please see https://launchpad.net/bugs/2065229 for more information." +msgstr "" + #: ../DistUpgrade/DistUpgradeMain.py:62 msgid "" "Use frontend. Currently available: \n" diff -Nru ubuntu-release-upgrader-24.04.17/po/sr.po ubuntu-release-upgrader-24.04.18/po/sr.po --- ubuntu-release-upgrader-24.04.17/po/sr.po 2024-04-29 14:26:40.000000000 +0000 +++ ubuntu-release-upgrader-24.04.18/po/sr.po 2024-05-09 19:39:21.000000000 +0000 @@ -9,7 +9,7 @@ msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2024-04-29 16:03+0200\n" +"POT-Creation-Date: 2024-05-09 15:39-0400\n" "PO-Revision-Date: 2013-05-22 11:00+0000\n" "Last-Translator: Мирослав Николић \n" "Language-Team: Serbian \n" @@ -1052,12 +1052,12 @@ msgid "Media Change" msgstr "Промена медијума" -#: ../DistUpgrade/DistUpgradeQuirks.py:248 +#: ../DistUpgrade/DistUpgradeQuirks.py:252 msgid "Your graphics hardware may not be fully supported in Ubuntu 14.04." msgstr "" "Ваша графичка картица можда није у потпуности подржана у Убунтуу 14.04." -#: ../DistUpgrade/DistUpgradeQuirks.py:250 +#: ../DistUpgrade/DistUpgradeQuirks.py:254 msgid "" "Running the 'unity' desktop environment is not fully supported by your " "graphics hardware. You will maybe end up in a very slow environment after " @@ -1073,11 +1073,11 @@ "UpdateManagerWarningForUnity3D“. Да ли и даље желите да наставите са " "надоградњом?" -#: ../DistUpgrade/DistUpgradeQuirks.py:274 +#: ../DistUpgrade/DistUpgradeQuirks.py:278 msgid "Your graphics hardware may not be fully supported in Ubuntu 12.04 LTS." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:276 +#: ../DistUpgrade/DistUpgradeQuirks.py:280 msgid "" "The support in Ubuntu 12.04 LTS for your Intel graphics hardware is limited " "and you may encounter problems after the upgrade. For more information see " @@ -1089,7 +1089,7 @@ "информација на „https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForI8xx“. " "Да ли желите да наставите са надоградњом?" -#: ../DistUpgrade/DistUpgradeQuirks.py:296 +#: ../DistUpgrade/DistUpgradeQuirks.py:300 msgid "" "Upgrading may reduce desktop effects, and performance in games and other " "graphically intensive programs." @@ -1097,7 +1097,7 @@ "Надоградња може смањити ефекте радне површине, перформансе игрица и других " "графички захтевних програма." -#: ../DistUpgrade/DistUpgradeQuirks.py:300 +#: ../DistUpgrade/DistUpgradeQuirks.py:304 msgid "" "This computer is currently using the AMD 'fglrx' graphics driver. No version " "of this driver is available that works with your hardware in Ubuntu 10.04 " @@ -1111,12 +1111,12 @@ "\n" "Да ли желите да наставите?" -#: ../DistUpgrade/DistUpgradeQuirks.py:339 -#: ../DistUpgrade/DistUpgradeQuirks.py:408 +#: ../DistUpgrade/DistUpgradeQuirks.py:343 +#: ../DistUpgrade/DistUpgradeQuirks.py:412 msgid "Sorry, no more upgrades for this system" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:340 +#: ../DistUpgrade/DistUpgradeQuirks.py:344 #, python-format msgid "" "There will not be any further Ubuntu releases for this system's 'i386' " @@ -1125,11 +1125,11 @@ "Updates for Ubuntu %s will continue until %s." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:355 +#: ../DistUpgrade/DistUpgradeQuirks.py:359 msgid "No ARMv6 CPU" msgstr "Нема „ARMv6“ процесора" -#: ../DistUpgrade/DistUpgradeQuirks.py:356 +#: ../DistUpgrade/DistUpgradeQuirks.py:360 msgid "" "Your system uses an ARM CPU that is older than the ARMv6 architecture. All " "packages in karmic were built with optimizations requiring ARMv6 as the " @@ -1141,12 +1141,12 @@ "минималну архитектуру. Није могуће надоградити ваш систем на ново Убунту " "издање са овим хардвером." -#: ../DistUpgrade/DistUpgradeQuirks.py:376 +#: ../DistUpgrade/DistUpgradeQuirks.py:380 msgid "" "Sorry, this storage driver is not supported in kernels for newer releases" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:378 +#: ../DistUpgrade/DistUpgradeQuirks.py:382 #, python-format msgid "" "There will not be any further Ubuntu releases that provide kernel support " @@ -1156,7 +1156,7 @@ "driver, remove the directory %s and try again." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:409 +#: ../DistUpgrade/DistUpgradeQuirks.py:413 #, python-format msgid "" "There will not be any further Ubuntu releases for this system's POWER8 " @@ -1165,11 +1165,11 @@ "Updates for Ubuntu %s will continue until %s." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:427 +#: ../DistUpgrade/DistUpgradeQuirks.py:431 msgid "No init available" msgstr "Инит није доступан" -#: ../DistUpgrade/DistUpgradeQuirks.py:428 +#: ../DistUpgrade/DistUpgradeQuirks.py:432 msgid "" "Your system appears to be a virtualised environment without an init daemon, " "e.g. Linux-VServer. Ubuntu 10.04 LTS cannot function within this type of " @@ -1184,11 +1184,11 @@ "\n" "Да ли сте сигурни да желите на наставите?" -#: ../DistUpgrade/DistUpgradeQuirks.py:469 +#: ../DistUpgrade/DistUpgradeQuirks.py:473 msgid "The Robot Operating System (ROS) is installed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:470 +#: ../DistUpgrade/DistUpgradeQuirks.py:474 msgid "" "It appears that ROS is currently installed. Each ROS release is very strict " "about the versions of Ubuntu it supports, and Ubuntu upgrades can fail if " @@ -1205,11 +1205,11 @@ "Are you sure you want to continue?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:670 +#: ../DistUpgrade/DistUpgradeQuirks.py:674 msgid "Connection to the Snap Store failed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:671 +#: ../DistUpgrade/DistUpgradeQuirks.py:675 msgid "" "You have the package lxd installed but your system is unable to reach the " "Snap Store. lxd is now provided via a snap and the release upgrade will fail " @@ -1219,11 +1219,11 @@ "may want to configure a Snap Store proxy." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:686 +#: ../DistUpgrade/DistUpgradeQuirks.py:690 msgid "Connection to Snap Store failed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:687 +#: ../DistUpgrade/DistUpgradeQuirks.py:691 msgid "" "Your system does not have a connection to the Snap Store. For the best " "upgrade experience make sure that your system can connect to api.snapcraft." @@ -1231,11 +1231,11 @@ "Do you still want to continue with the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:696 +#: ../DistUpgrade/DistUpgradeQuirks.py:700 msgid "Outdated snapd package" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:697 +#: ../DistUpgrade/DistUpgradeQuirks.py:701 msgid "" "Your system does not have the latest version of snapd. Please update the " "version of snapd on your system to improve the upgrade experience.\n" @@ -1244,36 +1244,36 @@ #. now perform direct API calls to the store, requesting size #. information for each of the snaps needing installation -#: ../DistUpgrade/DistUpgradeQuirks.py:722 +#: ../DistUpgrade/DistUpgradeQuirks.py:726 msgid "Calculating snap size requirements" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:753 +#: ../DistUpgrade/DistUpgradeQuirks.py:757 msgid "Processing snap replacements" msgstr "" #. TODO: This status should be updated, but the time of #. this change to snap switch is post-translation freeze. -#: ../DistUpgrade/DistUpgradeQuirks.py:761 +#: ../DistUpgrade/DistUpgradeQuirks.py:765 #, python-format msgid "refreshing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:765 +#: ../DistUpgrade/DistUpgradeQuirks.py:769 #, python-format msgid "removing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:768 +#: ../DistUpgrade/DistUpgradeQuirks.py:772 #, python-format msgid "installing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:797 +#: ../DistUpgrade/DistUpgradeQuirks.py:801 msgid "PAE not enabled" msgstr "ПАЕ није укључено" -#: ../DistUpgrade/DistUpgradeQuirks.py:798 +#: ../DistUpgrade/DistUpgradeQuirks.py:802 msgid "" "Your system uses a CPU that does not have PAE enabled. Ubuntu only supports " "non-PAE systems up to Ubuntu 12.04. To upgrade to a later version of Ubuntu, " @@ -1285,11 +1285,11 @@ "Убунтуа, морате да укључите ПАЕ (ако је могуће), видите:\n" "http://help.ubuntu.com/community/EnablingPAE" -#: ../DistUpgrade/DistUpgradeQuirks.py:1094 +#: ../DistUpgrade/DistUpgradeQuirks.py:1098 msgid "universe component not enabled" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1095 +#: ../DistUpgrade/DistUpgradeQuirks.py:1099 #, python-format msgid "" "You have the package %s installed which is a python2 package. python2 has " @@ -1301,41 +1301,53 @@ "universe component in /etc/apt/sources.list or remove %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1207 +#: ../DistUpgrade/DistUpgradeQuirks.py:1211 msgid "Checking for installed snaps" msgstr "" # Надоградња није могућа? -#: ../DistUpgrade/DistUpgradeQuirks.py:1654 +#: ../DistUpgrade/DistUpgradeQuirks.py:1720 #, fuzzy msgid "Cannot upgrade this system" msgstr "Не могу да извршим надоградњу" -#: ../DistUpgrade/DistUpgradeQuirks.py:1655 +#: ../DistUpgrade/DistUpgradeQuirks.py:1721 msgid "" "Due to a bug in grub, this system cannot be safely upgraded at this time.\n" "\n" "See https://launchpad.net/bugs/2039172." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1721 +#: ../DistUpgrade/DistUpgradeQuirks.py:1787 #, python-brace-format msgid "Updates for Ubuntu {from_release.version} will " msgstr "" # Надоградња није могућа? -#: ../DistUpgrade/DistUpgradeQuirks.py:1731 +#: ../DistUpgrade/DistUpgradeQuirks.py:1797 #, fuzzy msgid "Sorry, cannot upgrade this system to 24.04 LTS" msgstr "Не могу да извршим надоградњу" -#: ../DistUpgrade/DistUpgradeQuirks.py:1734 +#: ../DistUpgrade/DistUpgradeQuirks.py:1800 msgid "" "The Raspberry Pi kernel for Ubuntu 24.04 LTS does not support the armhf " "architecture.\n" "\n" msgstr "" +# Надоградња није могућа? +#: ../DistUpgrade/DistUpgradeQuirks.py:1928 +#, fuzzy, python-brace-format +msgid "Sorry, cannot upgrade this system to {version}" +msgstr "Не могу да извршим надоградњу" + +#: ../DistUpgrade/DistUpgradeQuirks.py:1931 +msgid "" +"Upgrades for desktop systems running TPM FDE are not currently supported. " +"Please see https://launchpad.net/bugs/2065229 for more information." +msgstr "" + #: ../DistUpgrade/DistUpgradeMain.py:62 msgid "" "Use frontend. Currently available: \n" diff -Nru ubuntu-release-upgrader-24.04.17/po/sv.po ubuntu-release-upgrader-24.04.18/po/sv.po --- ubuntu-release-upgrader-24.04.17/po/sv.po 2024-04-29 14:26:40.000000000 +0000 +++ ubuntu-release-upgrader-24.04.18/po/sv.po 2024-05-09 19:39:22.000000000 +0000 @@ -10,7 +10,7 @@ msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2024-04-29 16:03+0200\n" +"POT-Creation-Date: 2024-05-09 15:39-0400\n" "PO-Revision-Date: 2019-06-18 17:54+0000\n" "Last-Translator: Brian Murray \n" "Language-Team: Swedish \n" @@ -1081,11 +1081,11 @@ msgid "Media Change" msgstr "Mediabyte" -#: ../DistUpgrade/DistUpgradeQuirks.py:248 +#: ../DistUpgrade/DistUpgradeQuirks.py:252 msgid "Your graphics hardware may not be fully supported in Ubuntu 14.04." msgstr "Din grafikhårdvara kanske inte stöds fullt ut i Ubuntu 14.04." -#: ../DistUpgrade/DistUpgradeQuirks.py:250 +#: ../DistUpgrade/DistUpgradeQuirks.py:254 msgid "" "Running the 'unity' desktop environment is not fully supported by your " "graphics hardware. You will maybe end up in a very slow environment after " @@ -1100,11 +1100,11 @@ "information, se https://wiki.ubuntu.com/X/Bugs/" "UpdateManagerWarningForUnity3D Vill du fortsätta uppgraderingen?" -#: ../DistUpgrade/DistUpgradeQuirks.py:274 +#: ../DistUpgrade/DistUpgradeQuirks.py:278 msgid "Your graphics hardware may not be fully supported in Ubuntu 12.04 LTS." msgstr "Ditt grafikkort kanske inte stöds fullt ut i Ubuntu 12.04 LTS." -#: ../DistUpgrade/DistUpgradeQuirks.py:276 +#: ../DistUpgrade/DistUpgradeQuirks.py:280 msgid "" "The support in Ubuntu 12.04 LTS for your Intel graphics hardware is limited " "and you may encounter problems after the upgrade. For more information see " @@ -1116,7 +1116,7 @@ "UpdateManagerWarningForI8xx för mer information. Vill du fortsätta med " "uppgraderingen?" -#: ../DistUpgrade/DistUpgradeQuirks.py:296 +#: ../DistUpgrade/DistUpgradeQuirks.py:300 msgid "" "Upgrading may reduce desktop effects, and performance in games and other " "graphically intensive programs." @@ -1124,7 +1124,7 @@ "Uppgradering kan minska skrivbordseffekter och prestandan i spel och andra " "grafikintensiva program." -#: ../DistUpgrade/DistUpgradeQuirks.py:300 +#: ../DistUpgrade/DistUpgradeQuirks.py:304 msgid "" "This computer is currently using the AMD 'fglrx' graphics driver. No version " "of this driver is available that works with your hardware in Ubuntu 10.04 " @@ -1138,12 +1138,12 @@ "\n" "Vill du fortsätta?" -#: ../DistUpgrade/DistUpgradeQuirks.py:339 -#: ../DistUpgrade/DistUpgradeQuirks.py:408 +#: ../DistUpgrade/DistUpgradeQuirks.py:343 +#: ../DistUpgrade/DistUpgradeQuirks.py:412 msgid "Sorry, no more upgrades for this system" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:340 +#: ../DistUpgrade/DistUpgradeQuirks.py:344 #, python-format msgid "" "There will not be any further Ubuntu releases for this system's 'i386' " @@ -1152,11 +1152,11 @@ "Updates for Ubuntu %s will continue until %s." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:355 +#: ../DistUpgrade/DistUpgradeQuirks.py:359 msgid "No ARMv6 CPU" msgstr "Ingen ARMv6-processor" -#: ../DistUpgrade/DistUpgradeQuirks.py:356 +#: ../DistUpgrade/DistUpgradeQuirks.py:360 msgid "" "Your system uses an ARM CPU that is older than the ARMv6 architecture. All " "packages in karmic were built with optimizations requiring ARMv6 as the " @@ -1168,12 +1168,12 @@ "arkitektur. Det är inte möjligt att uppgradera ditt system till en ny Ubuntu-" "utgåva med denna hårdvara." -#: ../DistUpgrade/DistUpgradeQuirks.py:376 +#: ../DistUpgrade/DistUpgradeQuirks.py:380 msgid "" "Sorry, this storage driver is not supported in kernels for newer releases" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:378 +#: ../DistUpgrade/DistUpgradeQuirks.py:382 #, python-format msgid "" "There will not be any further Ubuntu releases that provide kernel support " @@ -1183,7 +1183,7 @@ "driver, remove the directory %s and try again." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:409 +#: ../DistUpgrade/DistUpgradeQuirks.py:413 #, python-format msgid "" "There will not be any further Ubuntu releases for this system's POWER8 " @@ -1192,11 +1192,11 @@ "Updates for Ubuntu %s will continue until %s." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:427 +#: ../DistUpgrade/DistUpgradeQuirks.py:431 msgid "No init available" msgstr "Ingen init finns tillgänglig" -#: ../DistUpgrade/DistUpgradeQuirks.py:428 +#: ../DistUpgrade/DistUpgradeQuirks.py:432 msgid "" "Your system appears to be a virtualised environment without an init daemon, " "e.g. Linux-VServer. Ubuntu 10.04 LTS cannot function within this type of " @@ -1211,11 +1211,11 @@ "\n" "Är du säker på att du vill fortsätta?" -#: ../DistUpgrade/DistUpgradeQuirks.py:469 +#: ../DistUpgrade/DistUpgradeQuirks.py:473 msgid "The Robot Operating System (ROS) is installed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:470 +#: ../DistUpgrade/DistUpgradeQuirks.py:474 msgid "" "It appears that ROS is currently installed. Each ROS release is very strict " "about the versions of Ubuntu it supports, and Ubuntu upgrades can fail if " @@ -1232,12 +1232,12 @@ "Are you sure you want to continue?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:670 +#: ../DistUpgrade/DistUpgradeQuirks.py:674 #, fuzzy msgid "Connection to the Snap Store failed" msgstr "Anslutning till Snappbutiken misslyckades" -#: ../DistUpgrade/DistUpgradeQuirks.py:671 +#: ../DistUpgrade/DistUpgradeQuirks.py:675 msgid "" "You have the package lxd installed but your system is unable to reach the " "Snap Store. lxd is now provided via a snap and the release upgrade will fail " @@ -1247,11 +1247,11 @@ "may want to configure a Snap Store proxy." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:686 +#: ../DistUpgrade/DistUpgradeQuirks.py:690 msgid "Connection to Snap Store failed" msgstr "Anslutning till Snappbutiken misslyckades" -#: ../DistUpgrade/DistUpgradeQuirks.py:687 +#: ../DistUpgrade/DistUpgradeQuirks.py:691 msgid "" "Your system does not have a connection to the Snap Store. For the best " "upgrade experience make sure that your system can connect to api.snapcraft." @@ -1263,11 +1263,11 @@ "snapcraft.io.\n" "Vill du ändå fortsätta med uppgraderingen?" -#: ../DistUpgrade/DistUpgradeQuirks.py:696 +#: ../DistUpgrade/DistUpgradeQuirks.py:700 msgid "Outdated snapd package" msgstr "Gammalt snapd-paket" -#: ../DistUpgrade/DistUpgradeQuirks.py:697 +#: ../DistUpgrade/DistUpgradeQuirks.py:701 msgid "" "Your system does not have the latest version of snapd. Please update the " "version of snapd on your system to improve the upgrade experience.\n" @@ -1279,36 +1279,36 @@ #. now perform direct API calls to the store, requesting size #. information for each of the snaps needing installation -#: ../DistUpgrade/DistUpgradeQuirks.py:722 +#: ../DistUpgrade/DistUpgradeQuirks.py:726 msgid "Calculating snap size requirements" msgstr "Beräknar utrymmeskrav för snappar" -#: ../DistUpgrade/DistUpgradeQuirks.py:753 +#: ../DistUpgrade/DistUpgradeQuirks.py:757 msgid "Processing snap replacements" msgstr "Utför ersättande av snappar" #. TODO: This status should be updated, but the time of #. this change to snap switch is post-translation freeze. -#: ../DistUpgrade/DistUpgradeQuirks.py:761 +#: ../DistUpgrade/DistUpgradeQuirks.py:765 #, python-format msgid "refreshing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:765 +#: ../DistUpgrade/DistUpgradeQuirks.py:769 #, fuzzy, python-format msgid "removing snap %s" msgstr "installerar snap %s" -#: ../DistUpgrade/DistUpgradeQuirks.py:768 +#: ../DistUpgrade/DistUpgradeQuirks.py:772 #, python-format msgid "installing snap %s" msgstr "installerar snap %s" -#: ../DistUpgrade/DistUpgradeQuirks.py:797 +#: ../DistUpgrade/DistUpgradeQuirks.py:801 msgid "PAE not enabled" msgstr "PAE är inte aktiverat." -#: ../DistUpgrade/DistUpgradeQuirks.py:798 +#: ../DistUpgrade/DistUpgradeQuirks.py:802 msgid "" "Your system uses a CPU that does not have PAE enabled. Ubuntu only supports " "non-PAE systems up to Ubuntu 12.04. To upgrade to a later version of Ubuntu, " @@ -1320,11 +1320,11 @@ "av Ubuntu, så måste du aktivera PAE (Om detta är möjligt) Se: \n" "http://help.ubuntu.com/community/EnablingPAE" -#: ../DistUpgrade/DistUpgradeQuirks.py:1094 +#: ../DistUpgrade/DistUpgradeQuirks.py:1098 msgid "universe component not enabled" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1095 +#: ../DistUpgrade/DistUpgradeQuirks.py:1099 #, python-format msgid "" "You have the package %s installed which is a python2 package. python2 has " @@ -1336,39 +1336,50 @@ "universe component in /etc/apt/sources.list or remove %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1207 +#: ../DistUpgrade/DistUpgradeQuirks.py:1211 msgid "Checking for installed snaps" msgstr "Letar efter installerade snappar" -#: ../DistUpgrade/DistUpgradeQuirks.py:1654 +#: ../DistUpgrade/DistUpgradeQuirks.py:1720 #, fuzzy msgid "Cannot upgrade this system" msgstr "Kan inte uppgradera" -#: ../DistUpgrade/DistUpgradeQuirks.py:1655 +#: ../DistUpgrade/DistUpgradeQuirks.py:1721 msgid "" "Due to a bug in grub, this system cannot be safely upgraded at this time.\n" "\n" "See https://launchpad.net/bugs/2039172." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1721 +#: ../DistUpgrade/DistUpgradeQuirks.py:1787 #, python-brace-format msgid "Updates for Ubuntu {from_release.version} will " msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1731 +#: ../DistUpgrade/DistUpgradeQuirks.py:1797 #, fuzzy msgid "Sorry, cannot upgrade this system to 24.04 LTS" msgstr "Kan inte uppgradera" -#: ../DistUpgrade/DistUpgradeQuirks.py:1734 +#: ../DistUpgrade/DistUpgradeQuirks.py:1800 msgid "" "The Raspberry Pi kernel for Ubuntu 24.04 LTS does not support the armhf " "architecture.\n" "\n" msgstr "" +#: ../DistUpgrade/DistUpgradeQuirks.py:1928 +#, fuzzy, python-brace-format +msgid "Sorry, cannot upgrade this system to {version}" +msgstr "Kan inte uppgradera" + +#: ../DistUpgrade/DistUpgradeQuirks.py:1931 +msgid "" +"Upgrades for desktop systems running TPM FDE are not currently supported. " +"Please see https://launchpad.net/bugs/2065229 for more information." +msgstr "" + #: ../DistUpgrade/DistUpgradeMain.py:62 msgid "" "Use frontend. Currently available: \n" diff -Nru ubuntu-release-upgrader-24.04.17/po/szl.po ubuntu-release-upgrader-24.04.18/po/szl.po --- ubuntu-release-upgrader-24.04.17/po/szl.po 2024-04-29 14:26:40.000000000 +0000 +++ ubuntu-release-upgrader-24.04.18/po/szl.po 2024-05-09 19:39:22.000000000 +0000 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: ubuntu-release-upgrader\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2024-04-29 16:03+0200\n" +"POT-Creation-Date: 2024-05-09 15:39-0400\n" "PO-Revision-Date: 2015-04-21 11:30+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Silesian \n" @@ -1072,11 +1072,11 @@ msgid "Media Change" msgstr "Zmiana medium" -#: ../DistUpgrade/DistUpgradeQuirks.py:248 +#: ../DistUpgrade/DistUpgradeQuirks.py:252 msgid "Your graphics hardware may not be fully supported in Ubuntu 14.04." msgstr "Twoja karta graficzno może niy być cołkym spiyrano w Ubuntu 14.04" -#: ../DistUpgrade/DistUpgradeQuirks.py:250 +#: ../DistUpgrade/DistUpgradeQuirks.py:254 msgid "" "Running the 'unity' desktop environment is not fully supported by your " "graphics hardware. You will maybe end up in a very slow environment after " @@ -1090,11 +1090,11 @@ "wersyjo LTS. Wiyncyj informacyji na: https://wiki.ubuntu.com/X/Bugs/" "UpdateManagerWarningForUnity3D Chcesz durch kōntynuować ze aktualizacyjōm?" -#: ../DistUpgrade/DistUpgradeQuirks.py:274 +#: ../DistUpgrade/DistUpgradeQuirks.py:278 msgid "Your graphics hardware may not be fully supported in Ubuntu 12.04 LTS." msgstr "Karta graficzno może niy być cołkym spiyrano ôd Ubuntu 12.04 LTS." -#: ../DistUpgrade/DistUpgradeQuirks.py:276 +#: ../DistUpgrade/DistUpgradeQuirks.py:280 msgid "" "The support in Ubuntu 12.04 LTS for your Intel graphics hardware is limited " "and you may encounter problems after the upgrade. For more information see " @@ -1106,7 +1106,7 @@ "informacyji, wejzdrzij na https://wiki.ubuntu.com/X/Bugs/" "UpdateManagerWarningForI8xx Kōntynuować aktualizacyjo?" -#: ../DistUpgrade/DistUpgradeQuirks.py:296 +#: ../DistUpgrade/DistUpgradeQuirks.py:300 msgid "" "Upgrading may reduce desktop effects, and performance in games and other " "graphically intensive programs." @@ -1114,7 +1114,7 @@ "Aktualizacyjo może ôgraniczyć efekty pulpitu, wydajność we grach, jak tyż " "inkszych programach intynsywnych graficznie." -#: ../DistUpgrade/DistUpgradeQuirks.py:300 +#: ../DistUpgrade/DistUpgradeQuirks.py:304 msgid "" "This computer is currently using the AMD 'fglrx' graphics driver. No version " "of this driver is available that works with your hardware in Ubuntu 10.04 " @@ -1127,12 +1127,12 @@ "\n" "Kōntynuować?" -#: ../DistUpgrade/DistUpgradeQuirks.py:339 -#: ../DistUpgrade/DistUpgradeQuirks.py:408 +#: ../DistUpgrade/DistUpgradeQuirks.py:343 +#: ../DistUpgrade/DistUpgradeQuirks.py:412 msgid "Sorry, no more upgrades for this system" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:340 +#: ../DistUpgrade/DistUpgradeQuirks.py:344 #, python-format msgid "" "There will not be any further Ubuntu releases for this system's 'i386' " @@ -1141,11 +1141,11 @@ "Updates for Ubuntu %s will continue until %s." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:355 +#: ../DistUpgrade/DistUpgradeQuirks.py:359 msgid "No ARMv6 CPU" msgstr "Niy ma procesora ARMv6" -#: ../DistUpgrade/DistUpgradeQuirks.py:356 +#: ../DistUpgrade/DistUpgradeQuirks.py:360 msgid "" "Your system uses an ARM CPU that is older than the ARMv6 architecture. All " "packages in karmic were built with optimizations requiring ARMv6 as the " @@ -1157,12 +1157,12 @@ "architektury ARMv6. Niy idzie zaktualizować systymu do nowego wydanio na tyj " "maszinie." -#: ../DistUpgrade/DistUpgradeQuirks.py:376 +#: ../DistUpgrade/DistUpgradeQuirks.py:380 msgid "" "Sorry, this storage driver is not supported in kernels for newer releases" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:378 +#: ../DistUpgrade/DistUpgradeQuirks.py:382 #, python-format msgid "" "There will not be any further Ubuntu releases that provide kernel support " @@ -1172,7 +1172,7 @@ "driver, remove the directory %s and try again." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:409 +#: ../DistUpgrade/DistUpgradeQuirks.py:413 #, python-format msgid "" "There will not be any further Ubuntu releases for this system's POWER8 " @@ -1181,11 +1181,11 @@ "Updates for Ubuntu %s will continue until %s." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:427 +#: ../DistUpgrade/DistUpgradeQuirks.py:431 msgid "No init available" msgstr "Brak dostympnego init" -#: ../DistUpgrade/DistUpgradeQuirks.py:428 +#: ../DistUpgrade/DistUpgradeQuirks.py:432 msgid "" "Your system appears to be a virtualised environment without an init daemon, " "e.g. Linux-VServer. Ubuntu 10.04 LTS cannot function within this type of " @@ -1199,11 +1199,11 @@ "strzodowiska i potrzebuje nojprzōd aktualizacyje kōnfiguracyje masziny " "wirtualnyj." -#: ../DistUpgrade/DistUpgradeQuirks.py:469 +#: ../DistUpgrade/DistUpgradeQuirks.py:473 msgid "The Robot Operating System (ROS) is installed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:470 +#: ../DistUpgrade/DistUpgradeQuirks.py:474 msgid "" "It appears that ROS is currently installed. Each ROS release is very strict " "about the versions of Ubuntu it supports, and Ubuntu upgrades can fail if " @@ -1220,12 +1220,12 @@ "Are you sure you want to continue?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:670 +#: ../DistUpgrade/DistUpgradeQuirks.py:674 #, fuzzy msgid "Connection to the Snap Store failed" msgstr "Niy szło sie połōnczyć ze Sklepym Snap" -#: ../DistUpgrade/DistUpgradeQuirks.py:671 +#: ../DistUpgrade/DistUpgradeQuirks.py:675 msgid "" "You have the package lxd installed but your system is unable to reach the " "Snap Store. lxd is now provided via a snap and the release upgrade will fail " @@ -1235,11 +1235,11 @@ "may want to configure a Snap Store proxy." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:686 +#: ../DistUpgrade/DistUpgradeQuirks.py:690 msgid "Connection to Snap Store failed" msgstr "Niy szło sie połōnczyć ze Sklepym Snap" -#: ../DistUpgrade/DistUpgradeQuirks.py:687 +#: ../DistUpgrade/DistUpgradeQuirks.py:691 msgid "" "Your system does not have a connection to the Snap Store. For the best " "upgrade experience make sure that your system can connect to api.snapcraft." @@ -1250,11 +1250,11 @@ "nojlepij, dej pozōr, żeby systym mōg sie łōnczyć ze api.snapcraft.io.\n" "Durch chcesz kōntynuować ze aktualizacyjōm?" -#: ../DistUpgrade/DistUpgradeQuirks.py:696 +#: ../DistUpgrade/DistUpgradeQuirks.py:700 msgid "Outdated snapd package" msgstr "Przestarzały paket Snap" -#: ../DistUpgrade/DistUpgradeQuirks.py:697 +#: ../DistUpgrade/DistUpgradeQuirks.py:701 msgid "" "Your system does not have the latest version of snapd. Please update the " "version of snapd on your system to improve the upgrade experience.\n" @@ -1266,36 +1266,36 @@ #. now perform direct API calls to the store, requesting size #. information for each of the snaps needing installation -#: ../DistUpgrade/DistUpgradeQuirks.py:722 +#: ../DistUpgrade/DistUpgradeQuirks.py:726 msgid "Calculating snap size requirements" msgstr "Rachowanie wymogōw srogości snapa" -#: ../DistUpgrade/DistUpgradeQuirks.py:753 +#: ../DistUpgrade/DistUpgradeQuirks.py:757 msgid "Processing snap replacements" msgstr "Procesowanie wymian snapa" #. TODO: This status should be updated, but the time of #. this change to snap switch is post-translation freeze. -#: ../DistUpgrade/DistUpgradeQuirks.py:761 +#: ../DistUpgrade/DistUpgradeQuirks.py:765 #, python-format msgid "refreshing snap %s" msgstr "ôdświyżanie snapa %s" -#: ../DistUpgrade/DistUpgradeQuirks.py:765 +#: ../DistUpgrade/DistUpgradeQuirks.py:769 #, fuzzy, python-format msgid "removing snap %s" msgstr "ôdświyżanie snapa %s" -#: ../DistUpgrade/DistUpgradeQuirks.py:768 +#: ../DistUpgrade/DistUpgradeQuirks.py:772 #, python-format msgid "installing snap %s" msgstr "instalowanie snapa %s" -#: ../DistUpgrade/DistUpgradeQuirks.py:797 +#: ../DistUpgrade/DistUpgradeQuirks.py:801 msgid "PAE not enabled" msgstr "PAE niyma włōnczōny" -#: ../DistUpgrade/DistUpgradeQuirks.py:798 +#: ../DistUpgrade/DistUpgradeQuirks.py:802 msgid "" "Your system uses a CPU that does not have PAE enabled. Ubuntu only supports " "non-PAE systems up to Ubuntu 12.04. To upgrade to a later version of Ubuntu, " @@ -1307,11 +1307,11 @@ "Ubuntu, włōncz PAE (jeźli je to możliwe), wiyncyj informacyji:\n" "http://help.ubuntu.com/community/EnablingPAE" -#: ../DistUpgrade/DistUpgradeQuirks.py:1094 +#: ../DistUpgrade/DistUpgradeQuirks.py:1098 msgid "universe component not enabled" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1095 +#: ../DistUpgrade/DistUpgradeQuirks.py:1099 #, python-format msgid "" "You have the package %s installed which is a python2 package. python2 has " @@ -1323,39 +1323,50 @@ "universe component in /etc/apt/sources.list or remove %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1207 +#: ../DistUpgrade/DistUpgradeQuirks.py:1211 msgid "Checking for installed snaps" msgstr "Sprawdzanie zainstalowanych snapōw" -#: ../DistUpgrade/DistUpgradeQuirks.py:1654 +#: ../DistUpgrade/DistUpgradeQuirks.py:1720 #, fuzzy msgid "Cannot upgrade this system" msgstr "Niy idzie zaktualizować" -#: ../DistUpgrade/DistUpgradeQuirks.py:1655 +#: ../DistUpgrade/DistUpgradeQuirks.py:1721 msgid "" "Due to a bug in grub, this system cannot be safely upgraded at this time.\n" "\n" "See https://launchpad.net/bugs/2039172." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1721 +#: ../DistUpgrade/DistUpgradeQuirks.py:1787 #, python-brace-format msgid "Updates for Ubuntu {from_release.version} will " msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1731 +#: ../DistUpgrade/DistUpgradeQuirks.py:1797 #, fuzzy msgid "Sorry, cannot upgrade this system to 24.04 LTS" msgstr "Niy idzie zaktualizować" -#: ../DistUpgrade/DistUpgradeQuirks.py:1734 +#: ../DistUpgrade/DistUpgradeQuirks.py:1800 msgid "" "The Raspberry Pi kernel for Ubuntu 24.04 LTS does not support the armhf " "architecture.\n" "\n" msgstr "" +#: ../DistUpgrade/DistUpgradeQuirks.py:1928 +#, fuzzy, python-brace-format +msgid "Sorry, cannot upgrade this system to {version}" +msgstr "Niy idzie zaktualizować" + +#: ../DistUpgrade/DistUpgradeQuirks.py:1931 +msgid "" +"Upgrades for desktop systems running TPM FDE are not currently supported. " +"Please see https://launchpad.net/bugs/2065229 for more information." +msgstr "" + #: ../DistUpgrade/DistUpgradeMain.py:62 msgid "" "Use frontend. Currently available: \n" diff -Nru ubuntu-release-upgrader-24.04.17/po/ta.po ubuntu-release-upgrader-24.04.18/po/ta.po --- ubuntu-release-upgrader-24.04.17/po/ta.po 2024-04-29 14:26:40.000000000 +0000 +++ ubuntu-release-upgrader-24.04.18/po/ta.po 2024-05-09 19:39:22.000000000 +0000 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2024-04-29 16:03+0200\n" +"POT-Creation-Date: 2024-05-09 15:39-0400\n" "PO-Revision-Date: 2013-05-22 11:00+0000\n" "Last-Translator: mano-மனோ \n" "Language-Team: Tamil \n" @@ -902,11 +902,11 @@ msgid "Media Change" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:248 +#: ../DistUpgrade/DistUpgradeQuirks.py:252 msgid "Your graphics hardware may not be fully supported in Ubuntu 14.04." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:250 +#: ../DistUpgrade/DistUpgradeQuirks.py:254 msgid "" "Running the 'unity' desktop environment is not fully supported by your " "graphics hardware. You will maybe end up in a very slow environment after " @@ -916,11 +916,11 @@ "upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:274 +#: ../DistUpgrade/DistUpgradeQuirks.py:278 msgid "Your graphics hardware may not be fully supported in Ubuntu 12.04 LTS." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:276 +#: ../DistUpgrade/DistUpgradeQuirks.py:280 msgid "" "The support in Ubuntu 12.04 LTS for your Intel graphics hardware is limited " "and you may encounter problems after the upgrade. For more information see " @@ -928,13 +928,13 @@ "continue with the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:296 +#: ../DistUpgrade/DistUpgradeQuirks.py:300 msgid "" "Upgrading may reduce desktop effects, and performance in games and other " "graphically intensive programs." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:300 +#: ../DistUpgrade/DistUpgradeQuirks.py:304 msgid "" "This computer is currently using the AMD 'fglrx' graphics driver. No version " "of this driver is available that works with your hardware in Ubuntu 10.04 " @@ -943,12 +943,12 @@ "Do you want to continue?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:339 -#: ../DistUpgrade/DistUpgradeQuirks.py:408 +#: ../DistUpgrade/DistUpgradeQuirks.py:343 +#: ../DistUpgrade/DistUpgradeQuirks.py:412 msgid "Sorry, no more upgrades for this system" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:340 +#: ../DistUpgrade/DistUpgradeQuirks.py:344 #, python-format msgid "" "There will not be any further Ubuntu releases for this system's 'i386' " @@ -957,11 +957,11 @@ "Updates for Ubuntu %s will continue until %s." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:355 +#: ../DistUpgrade/DistUpgradeQuirks.py:359 msgid "No ARMv6 CPU" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:356 +#: ../DistUpgrade/DistUpgradeQuirks.py:360 msgid "" "Your system uses an ARM CPU that is older than the ARMv6 architecture. All " "packages in karmic were built with optimizations requiring ARMv6 as the " @@ -969,12 +969,12 @@ "Ubuntu release with this hardware." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:376 +#: ../DistUpgrade/DistUpgradeQuirks.py:380 msgid "" "Sorry, this storage driver is not supported in kernels for newer releases" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:378 +#: ../DistUpgrade/DistUpgradeQuirks.py:382 #, python-format msgid "" "There will not be any further Ubuntu releases that provide kernel support " @@ -984,7 +984,7 @@ "driver, remove the directory %s and try again." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:409 +#: ../DistUpgrade/DistUpgradeQuirks.py:413 #, python-format msgid "" "There will not be any further Ubuntu releases for this system's POWER8 " @@ -993,11 +993,11 @@ "Updates for Ubuntu %s will continue until %s." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:427 +#: ../DistUpgrade/DistUpgradeQuirks.py:431 msgid "No init available" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:428 +#: ../DistUpgrade/DistUpgradeQuirks.py:432 msgid "" "Your system appears to be a virtualised environment without an init daemon, " "e.g. Linux-VServer. Ubuntu 10.04 LTS cannot function within this type of " @@ -1007,11 +1007,11 @@ "Are you sure you want to continue?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:469 +#: ../DistUpgrade/DistUpgradeQuirks.py:473 msgid "The Robot Operating System (ROS) is installed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:470 +#: ../DistUpgrade/DistUpgradeQuirks.py:474 msgid "" "It appears that ROS is currently installed. Each ROS release is very strict " "about the versions of Ubuntu it supports, and Ubuntu upgrades can fail if " @@ -1028,11 +1028,11 @@ "Are you sure you want to continue?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:670 +#: ../DistUpgrade/DistUpgradeQuirks.py:674 msgid "Connection to the Snap Store failed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:671 +#: ../DistUpgrade/DistUpgradeQuirks.py:675 msgid "" "You have the package lxd installed but your system is unable to reach the " "Snap Store. lxd is now provided via a snap and the release upgrade will fail " @@ -1042,11 +1042,11 @@ "may want to configure a Snap Store proxy." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:686 +#: ../DistUpgrade/DistUpgradeQuirks.py:690 msgid "Connection to Snap Store failed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:687 +#: ../DistUpgrade/DistUpgradeQuirks.py:691 msgid "" "Your system does not have a connection to the Snap Store. For the best " "upgrade experience make sure that your system can connect to api.snapcraft." @@ -1054,11 +1054,11 @@ "Do you still want to continue with the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:696 +#: ../DistUpgrade/DistUpgradeQuirks.py:700 msgid "Outdated snapd package" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:697 +#: ../DistUpgrade/DistUpgradeQuirks.py:701 msgid "" "Your system does not have the latest version of snapd. Please update the " "version of snapd on your system to improve the upgrade experience.\n" @@ -1067,36 +1067,36 @@ #. now perform direct API calls to the store, requesting size #. information for each of the snaps needing installation -#: ../DistUpgrade/DistUpgradeQuirks.py:722 +#: ../DistUpgrade/DistUpgradeQuirks.py:726 msgid "Calculating snap size requirements" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:753 +#: ../DistUpgrade/DistUpgradeQuirks.py:757 msgid "Processing snap replacements" msgstr "" #. TODO: This status should be updated, but the time of #. this change to snap switch is post-translation freeze. -#: ../DistUpgrade/DistUpgradeQuirks.py:761 +#: ../DistUpgrade/DistUpgradeQuirks.py:765 #, python-format msgid "refreshing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:765 +#: ../DistUpgrade/DistUpgradeQuirks.py:769 #, python-format msgid "removing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:768 +#: ../DistUpgrade/DistUpgradeQuirks.py:772 #, python-format msgid "installing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:797 +#: ../DistUpgrade/DistUpgradeQuirks.py:801 msgid "PAE not enabled" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:798 +#: ../DistUpgrade/DistUpgradeQuirks.py:802 msgid "" "Your system uses a CPU that does not have PAE enabled. Ubuntu only supports " "non-PAE systems up to Ubuntu 12.04. To upgrade to a later version of Ubuntu, " @@ -1104,11 +1104,11 @@ "http://help.ubuntu.com/community/EnablingPAE" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1094 +#: ../DistUpgrade/DistUpgradeQuirks.py:1098 msgid "universe component not enabled" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1095 +#: ../DistUpgrade/DistUpgradeQuirks.py:1099 #, python-format msgid "" "You have the package %s installed which is a python2 package. python2 has " @@ -1120,39 +1120,50 @@ "universe component in /etc/apt/sources.list or remove %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1207 +#: ../DistUpgrade/DistUpgradeQuirks.py:1211 msgid "Checking for installed snaps" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1654 +#: ../DistUpgrade/DistUpgradeQuirks.py:1720 #, fuzzy msgid "Cannot upgrade this system" msgstr "மேம்படுத்த முடியவில்லை" -#: ../DistUpgrade/DistUpgradeQuirks.py:1655 +#: ../DistUpgrade/DistUpgradeQuirks.py:1721 msgid "" "Due to a bug in grub, this system cannot be safely upgraded at this time.\n" "\n" "See https://launchpad.net/bugs/2039172." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1721 +#: ../DistUpgrade/DistUpgradeQuirks.py:1787 #, python-brace-format msgid "Updates for Ubuntu {from_release.version} will " msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1731 +#: ../DistUpgrade/DistUpgradeQuirks.py:1797 #, fuzzy msgid "Sorry, cannot upgrade this system to 24.04 LTS" msgstr "மேம்படுத்த முடியவில்லை" -#: ../DistUpgrade/DistUpgradeQuirks.py:1734 +#: ../DistUpgrade/DistUpgradeQuirks.py:1800 msgid "" "The Raspberry Pi kernel for Ubuntu 24.04 LTS does not support the armhf " "architecture.\n" "\n" msgstr "" +#: ../DistUpgrade/DistUpgradeQuirks.py:1928 +#, fuzzy, python-brace-format +msgid "Sorry, cannot upgrade this system to {version}" +msgstr "மேம்படுத்த முடியவில்லை" + +#: ../DistUpgrade/DistUpgradeQuirks.py:1931 +msgid "" +"Upgrades for desktop systems running TPM FDE are not currently supported. " +"Please see https://launchpad.net/bugs/2065229 for more information." +msgstr "" + #: ../DistUpgrade/DistUpgradeMain.py:62 msgid "" "Use frontend. Currently available: \n" diff -Nru ubuntu-release-upgrader-24.04.17/po/ta_LK.po ubuntu-release-upgrader-24.04.18/po/ta_LK.po --- ubuntu-release-upgrader-24.04.17/po/ta_LK.po 2024-04-29 14:26:40.000000000 +0000 +++ ubuntu-release-upgrader-24.04.18/po/ta_LK.po 2024-05-09 19:39:22.000000000 +0000 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2024-04-29 16:03+0200\n" +"POT-Creation-Date: 2024-05-09 15:39-0400\n" "PO-Revision-Date: 2013-05-22 11:00+0000\n" "Last-Translator: Ramesh \n" "Language-Team: Tamil (Sri-Lanka) \n" @@ -900,11 +900,11 @@ msgid "Media Change" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:248 +#: ../DistUpgrade/DistUpgradeQuirks.py:252 msgid "Your graphics hardware may not be fully supported in Ubuntu 14.04." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:250 +#: ../DistUpgrade/DistUpgradeQuirks.py:254 msgid "" "Running the 'unity' desktop environment is not fully supported by your " "graphics hardware. You will maybe end up in a very slow environment after " @@ -914,11 +914,11 @@ "upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:274 +#: ../DistUpgrade/DistUpgradeQuirks.py:278 msgid "Your graphics hardware may not be fully supported in Ubuntu 12.04 LTS." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:276 +#: ../DistUpgrade/DistUpgradeQuirks.py:280 msgid "" "The support in Ubuntu 12.04 LTS for your Intel graphics hardware is limited " "and you may encounter problems after the upgrade. For more information see " @@ -926,13 +926,13 @@ "continue with the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:296 +#: ../DistUpgrade/DistUpgradeQuirks.py:300 msgid "" "Upgrading may reduce desktop effects, and performance in games and other " "graphically intensive programs." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:300 +#: ../DistUpgrade/DistUpgradeQuirks.py:304 msgid "" "This computer is currently using the AMD 'fglrx' graphics driver. No version " "of this driver is available that works with your hardware in Ubuntu 10.04 " @@ -941,12 +941,12 @@ "Do you want to continue?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:339 -#: ../DistUpgrade/DistUpgradeQuirks.py:408 +#: ../DistUpgrade/DistUpgradeQuirks.py:343 +#: ../DistUpgrade/DistUpgradeQuirks.py:412 msgid "Sorry, no more upgrades for this system" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:340 +#: ../DistUpgrade/DistUpgradeQuirks.py:344 #, python-format msgid "" "There will not be any further Ubuntu releases for this system's 'i386' " @@ -955,11 +955,11 @@ "Updates for Ubuntu %s will continue until %s." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:355 +#: ../DistUpgrade/DistUpgradeQuirks.py:359 msgid "No ARMv6 CPU" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:356 +#: ../DistUpgrade/DistUpgradeQuirks.py:360 msgid "" "Your system uses an ARM CPU that is older than the ARMv6 architecture. All " "packages in karmic were built with optimizations requiring ARMv6 as the " @@ -967,12 +967,12 @@ "Ubuntu release with this hardware." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:376 +#: ../DistUpgrade/DistUpgradeQuirks.py:380 msgid "" "Sorry, this storage driver is not supported in kernels for newer releases" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:378 +#: ../DistUpgrade/DistUpgradeQuirks.py:382 #, python-format msgid "" "There will not be any further Ubuntu releases that provide kernel support " @@ -982,7 +982,7 @@ "driver, remove the directory %s and try again." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:409 +#: ../DistUpgrade/DistUpgradeQuirks.py:413 #, python-format msgid "" "There will not be any further Ubuntu releases for this system's POWER8 " @@ -991,11 +991,11 @@ "Updates for Ubuntu %s will continue until %s." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:427 +#: ../DistUpgrade/DistUpgradeQuirks.py:431 msgid "No init available" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:428 +#: ../DistUpgrade/DistUpgradeQuirks.py:432 msgid "" "Your system appears to be a virtualised environment without an init daemon, " "e.g. Linux-VServer. Ubuntu 10.04 LTS cannot function within this type of " @@ -1005,11 +1005,11 @@ "Are you sure you want to continue?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:469 +#: ../DistUpgrade/DistUpgradeQuirks.py:473 msgid "The Robot Operating System (ROS) is installed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:470 +#: ../DistUpgrade/DistUpgradeQuirks.py:474 msgid "" "It appears that ROS is currently installed. Each ROS release is very strict " "about the versions of Ubuntu it supports, and Ubuntu upgrades can fail if " @@ -1026,11 +1026,11 @@ "Are you sure you want to continue?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:670 +#: ../DistUpgrade/DistUpgradeQuirks.py:674 msgid "Connection to the Snap Store failed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:671 +#: ../DistUpgrade/DistUpgradeQuirks.py:675 msgid "" "You have the package lxd installed but your system is unable to reach the " "Snap Store. lxd is now provided via a snap and the release upgrade will fail " @@ -1040,11 +1040,11 @@ "may want to configure a Snap Store proxy." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:686 +#: ../DistUpgrade/DistUpgradeQuirks.py:690 msgid "Connection to Snap Store failed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:687 +#: ../DistUpgrade/DistUpgradeQuirks.py:691 msgid "" "Your system does not have a connection to the Snap Store. For the best " "upgrade experience make sure that your system can connect to api.snapcraft." @@ -1052,11 +1052,11 @@ "Do you still want to continue with the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:696 +#: ../DistUpgrade/DistUpgradeQuirks.py:700 msgid "Outdated snapd package" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:697 +#: ../DistUpgrade/DistUpgradeQuirks.py:701 msgid "" "Your system does not have the latest version of snapd. Please update the " "version of snapd on your system to improve the upgrade experience.\n" @@ -1065,36 +1065,36 @@ #. now perform direct API calls to the store, requesting size #. information for each of the snaps needing installation -#: ../DistUpgrade/DistUpgradeQuirks.py:722 +#: ../DistUpgrade/DistUpgradeQuirks.py:726 msgid "Calculating snap size requirements" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:753 +#: ../DistUpgrade/DistUpgradeQuirks.py:757 msgid "Processing snap replacements" msgstr "" #. TODO: This status should be updated, but the time of #. this change to snap switch is post-translation freeze. -#: ../DistUpgrade/DistUpgradeQuirks.py:761 +#: ../DistUpgrade/DistUpgradeQuirks.py:765 #, python-format msgid "refreshing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:765 +#: ../DistUpgrade/DistUpgradeQuirks.py:769 #, python-format msgid "removing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:768 +#: ../DistUpgrade/DistUpgradeQuirks.py:772 #, python-format msgid "installing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:797 +#: ../DistUpgrade/DistUpgradeQuirks.py:801 msgid "PAE not enabled" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:798 +#: ../DistUpgrade/DistUpgradeQuirks.py:802 msgid "" "Your system uses a CPU that does not have PAE enabled. Ubuntu only supports " "non-PAE systems up to Ubuntu 12.04. To upgrade to a later version of Ubuntu, " @@ -1102,11 +1102,11 @@ "http://help.ubuntu.com/community/EnablingPAE" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1094 +#: ../DistUpgrade/DistUpgradeQuirks.py:1098 msgid "universe component not enabled" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1095 +#: ../DistUpgrade/DistUpgradeQuirks.py:1099 #, python-format msgid "" "You have the package %s installed which is a python2 package. python2 has " @@ -1118,37 +1118,48 @@ "universe component in /etc/apt/sources.list or remove %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1207 +#: ../DistUpgrade/DistUpgradeQuirks.py:1211 msgid "Checking for installed snaps" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1654 +#: ../DistUpgrade/DistUpgradeQuirks.py:1720 msgid "Cannot upgrade this system" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1655 +#: ../DistUpgrade/DistUpgradeQuirks.py:1721 msgid "" "Due to a bug in grub, this system cannot be safely upgraded at this time.\n" "\n" "See https://launchpad.net/bugs/2039172." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1721 +#: ../DistUpgrade/DistUpgradeQuirks.py:1787 #, python-brace-format msgid "Updates for Ubuntu {from_release.version} will " msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1731 +#: ../DistUpgrade/DistUpgradeQuirks.py:1797 msgid "Sorry, cannot upgrade this system to 24.04 LTS" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1734 +#: ../DistUpgrade/DistUpgradeQuirks.py:1800 msgid "" "The Raspberry Pi kernel for Ubuntu 24.04 LTS does not support the armhf " "architecture.\n" "\n" msgstr "" +#: ../DistUpgrade/DistUpgradeQuirks.py:1928 +#, python-brace-format +msgid "Sorry, cannot upgrade this system to {version}" +msgstr "" + +#: ../DistUpgrade/DistUpgradeQuirks.py:1931 +msgid "" +"Upgrades for desktop systems running TPM FDE are not currently supported. " +"Please see https://launchpad.net/bugs/2065229 for more information." +msgstr "" + #: ../DistUpgrade/DistUpgradeMain.py:62 msgid "" "Use frontend. Currently available: \n" diff -Nru ubuntu-release-upgrader-24.04.17/po/te.po ubuntu-release-upgrader-24.04.18/po/te.po --- ubuntu-release-upgrader-24.04.17/po/te.po 2024-04-29 14:26:40.000000000 +0000 +++ ubuntu-release-upgrader-24.04.18/po/te.po 2024-05-09 19:39:22.000000000 +0000 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2024-04-29 16:03+0200\n" +"POT-Creation-Date: 2024-05-09 15:39-0400\n" "PO-Revision-Date: 2013-05-22 11:00+0000\n" "Last-Translator: Praveen Illa \n" "Language-Team: Telugu \n" @@ -928,11 +928,11 @@ msgid "Media Change" msgstr "మీడియా మార్పు" -#: ../DistUpgrade/DistUpgradeQuirks.py:248 +#: ../DistUpgrade/DistUpgradeQuirks.py:252 msgid "Your graphics hardware may not be fully supported in Ubuntu 14.04." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:250 +#: ../DistUpgrade/DistUpgradeQuirks.py:254 msgid "" "Running the 'unity' desktop environment is not fully supported by your " "graphics hardware. You will maybe end up in a very slow environment after " @@ -942,11 +942,11 @@ "upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:274 +#: ../DistUpgrade/DistUpgradeQuirks.py:278 msgid "Your graphics hardware may not be fully supported in Ubuntu 12.04 LTS." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:276 +#: ../DistUpgrade/DistUpgradeQuirks.py:280 msgid "" "The support in Ubuntu 12.04 LTS for your Intel graphics hardware is limited " "and you may encounter problems after the upgrade. For more information see " @@ -954,7 +954,7 @@ "continue with the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:296 +#: ../DistUpgrade/DistUpgradeQuirks.py:300 msgid "" "Upgrading may reduce desktop effects, and performance in games and other " "graphically intensive programs." @@ -962,7 +962,7 @@ "ఉన్నతీకరించడం వలన డెస్క్ టాప్ ప్రభావాలు, మరియు ఆటలలో ప్రదర్శనను మరియు ఇతర గ్రాఫిక్స్ తో కూడిన పెద్ద " "ప్రోగాంల మీద ప్రభావం చూపి వాటి ప్రదర్శనను తగ్గించవచ్చు." -#: ../DistUpgrade/DistUpgradeQuirks.py:300 +#: ../DistUpgrade/DistUpgradeQuirks.py:304 msgid "" "This computer is currently using the AMD 'fglrx' graphics driver. No version " "of this driver is available that works with your hardware in Ubuntu 10.04 " @@ -971,12 +971,12 @@ "Do you want to continue?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:339 -#: ../DistUpgrade/DistUpgradeQuirks.py:408 +#: ../DistUpgrade/DistUpgradeQuirks.py:343 +#: ../DistUpgrade/DistUpgradeQuirks.py:412 msgid "Sorry, no more upgrades for this system" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:340 +#: ../DistUpgrade/DistUpgradeQuirks.py:344 #, python-format msgid "" "There will not be any further Ubuntu releases for this system's 'i386' " @@ -985,11 +985,11 @@ "Updates for Ubuntu %s will continue until %s." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:355 +#: ../DistUpgrade/DistUpgradeQuirks.py:359 msgid "No ARMv6 CPU" msgstr "ARMv6 CPU లేదు" -#: ../DistUpgrade/DistUpgradeQuirks.py:356 +#: ../DistUpgrade/DistUpgradeQuirks.py:360 msgid "" "Your system uses an ARM CPU that is older than the ARMv6 architecture. All " "packages in karmic were built with optimizations requiring ARMv6 as the " @@ -997,12 +997,12 @@ "Ubuntu release with this hardware." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:376 +#: ../DistUpgrade/DistUpgradeQuirks.py:380 msgid "" "Sorry, this storage driver is not supported in kernels for newer releases" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:378 +#: ../DistUpgrade/DistUpgradeQuirks.py:382 #, python-format msgid "" "There will not be any further Ubuntu releases that provide kernel support " @@ -1012,7 +1012,7 @@ "driver, remove the directory %s and try again." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:409 +#: ../DistUpgrade/DistUpgradeQuirks.py:413 #, python-format msgid "" "There will not be any further Ubuntu releases for this system's POWER8 " @@ -1021,11 +1021,11 @@ "Updates for Ubuntu %s will continue until %s." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:427 +#: ../DistUpgrade/DistUpgradeQuirks.py:431 msgid "No init available" msgstr "ఎటువంటి init లభ్యతలో లేదు" -#: ../DistUpgrade/DistUpgradeQuirks.py:428 +#: ../DistUpgrade/DistUpgradeQuirks.py:432 msgid "" "Your system appears to be a virtualised environment without an init daemon, " "e.g. Linux-VServer. Ubuntu 10.04 LTS cannot function within this type of " @@ -1035,11 +1035,11 @@ "Are you sure you want to continue?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:469 +#: ../DistUpgrade/DistUpgradeQuirks.py:473 msgid "The Robot Operating System (ROS) is installed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:470 +#: ../DistUpgrade/DistUpgradeQuirks.py:474 msgid "" "It appears that ROS is currently installed. Each ROS release is very strict " "about the versions of Ubuntu it supports, and Ubuntu upgrades can fail if " @@ -1056,11 +1056,11 @@ "Are you sure you want to continue?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:670 +#: ../DistUpgrade/DistUpgradeQuirks.py:674 msgid "Connection to the Snap Store failed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:671 +#: ../DistUpgrade/DistUpgradeQuirks.py:675 msgid "" "You have the package lxd installed but your system is unable to reach the " "Snap Store. lxd is now provided via a snap and the release upgrade will fail " @@ -1070,11 +1070,11 @@ "may want to configure a Snap Store proxy." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:686 +#: ../DistUpgrade/DistUpgradeQuirks.py:690 msgid "Connection to Snap Store failed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:687 +#: ../DistUpgrade/DistUpgradeQuirks.py:691 msgid "" "Your system does not have a connection to the Snap Store. For the best " "upgrade experience make sure that your system can connect to api.snapcraft." @@ -1082,11 +1082,11 @@ "Do you still want to continue with the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:696 +#: ../DistUpgrade/DistUpgradeQuirks.py:700 msgid "Outdated snapd package" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:697 +#: ../DistUpgrade/DistUpgradeQuirks.py:701 msgid "" "Your system does not have the latest version of snapd. Please update the " "version of snapd on your system to improve the upgrade experience.\n" @@ -1095,36 +1095,36 @@ #. now perform direct API calls to the store, requesting size #. information for each of the snaps needing installation -#: ../DistUpgrade/DistUpgradeQuirks.py:722 +#: ../DistUpgrade/DistUpgradeQuirks.py:726 msgid "Calculating snap size requirements" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:753 +#: ../DistUpgrade/DistUpgradeQuirks.py:757 msgid "Processing snap replacements" msgstr "" #. TODO: This status should be updated, but the time of #. this change to snap switch is post-translation freeze. -#: ../DistUpgrade/DistUpgradeQuirks.py:761 +#: ../DistUpgrade/DistUpgradeQuirks.py:765 #, python-format msgid "refreshing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:765 +#: ../DistUpgrade/DistUpgradeQuirks.py:769 #, python-format msgid "removing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:768 +#: ../DistUpgrade/DistUpgradeQuirks.py:772 #, python-format msgid "installing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:797 +#: ../DistUpgrade/DistUpgradeQuirks.py:801 msgid "PAE not enabled" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:798 +#: ../DistUpgrade/DistUpgradeQuirks.py:802 msgid "" "Your system uses a CPU that does not have PAE enabled. Ubuntu only supports " "non-PAE systems up to Ubuntu 12.04. To upgrade to a later version of Ubuntu, " @@ -1132,11 +1132,11 @@ "http://help.ubuntu.com/community/EnablingPAE" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1094 +#: ../DistUpgrade/DistUpgradeQuirks.py:1098 msgid "universe component not enabled" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1095 +#: ../DistUpgrade/DistUpgradeQuirks.py:1099 #, python-format msgid "" "You have the package %s installed which is a python2 package. python2 has " @@ -1148,39 +1148,50 @@ "universe component in /etc/apt/sources.list or remove %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1207 +#: ../DistUpgrade/DistUpgradeQuirks.py:1211 msgid "Checking for installed snaps" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1654 +#: ../DistUpgrade/DistUpgradeQuirks.py:1720 #, fuzzy msgid "Cannot upgrade this system" msgstr "ఉన్నతీకరణ సాధ్యపడదు" -#: ../DistUpgrade/DistUpgradeQuirks.py:1655 +#: ../DistUpgrade/DistUpgradeQuirks.py:1721 msgid "" "Due to a bug in grub, this system cannot be safely upgraded at this time.\n" "\n" "See https://launchpad.net/bugs/2039172." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1721 +#: ../DistUpgrade/DistUpgradeQuirks.py:1787 #, python-brace-format msgid "Updates for Ubuntu {from_release.version} will " msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1731 +#: ../DistUpgrade/DistUpgradeQuirks.py:1797 #, fuzzy msgid "Sorry, cannot upgrade this system to 24.04 LTS" msgstr "ఉన్నతీకరణ సాధ్యపడదు" -#: ../DistUpgrade/DistUpgradeQuirks.py:1734 +#: ../DistUpgrade/DistUpgradeQuirks.py:1800 msgid "" "The Raspberry Pi kernel for Ubuntu 24.04 LTS does not support the armhf " "architecture.\n" "\n" msgstr "" +#: ../DistUpgrade/DistUpgradeQuirks.py:1928 +#, fuzzy, python-brace-format +msgid "Sorry, cannot upgrade this system to {version}" +msgstr "ఉన్నతీకరణ సాధ్యపడదు" + +#: ../DistUpgrade/DistUpgradeQuirks.py:1931 +msgid "" +"Upgrades for desktop systems running TPM FDE are not currently supported. " +"Please see https://launchpad.net/bugs/2065229 for more information." +msgstr "" + #: ../DistUpgrade/DistUpgradeMain.py:62 msgid "" "Use frontend. Currently available: \n" diff -Nru ubuntu-release-upgrader-24.04.17/po/tg.po ubuntu-release-upgrader-24.04.18/po/tg.po --- ubuntu-release-upgrader-24.04.17/po/tg.po 2024-04-29 14:26:40.000000000 +0000 +++ ubuntu-release-upgrader-24.04.18/po/tg.po 2024-05-09 19:39:22.000000000 +0000 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: ubuntu-release-upgrader\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2024-04-29 16:03+0200\n" +"POT-Creation-Date: 2024-05-09 15:39-0400\n" "PO-Revision-Date: 2019-06-18 17:55+0000\n" "Last-Translator: Brian Murray \n" "Language-Team: Tajik \n" @@ -922,13 +922,13 @@ msgid "Media Change" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:248 +#: ../DistUpgrade/DistUpgradeQuirks.py:252 msgid "Your graphics hardware may not be fully supported in Ubuntu 14.04." msgstr "" "Эҳтимол аст, ки сахтафзори графикии шумо дар Ubuntu 14.04 пуррагӣ дастгирӣ " "намешавад." -#: ../DistUpgrade/DistUpgradeQuirks.py:250 +#: ../DistUpgrade/DistUpgradeQuirks.py:254 msgid "" "Running the 'unity' desktop environment is not fully supported by your " "graphics hardware. You will maybe end up in a very slow environment after " @@ -938,11 +938,11 @@ "upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:274 +#: ../DistUpgrade/DistUpgradeQuirks.py:278 msgid "Your graphics hardware may not be fully supported in Ubuntu 12.04 LTS." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:276 +#: ../DistUpgrade/DistUpgradeQuirks.py:280 msgid "" "The support in Ubuntu 12.04 LTS for your Intel graphics hardware is limited " "and you may encounter problems after the upgrade. For more information see " @@ -950,13 +950,13 @@ "continue with the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:296 +#: ../DistUpgrade/DistUpgradeQuirks.py:300 msgid "" "Upgrading may reduce desktop effects, and performance in games and other " "graphically intensive programs." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:300 +#: ../DistUpgrade/DistUpgradeQuirks.py:304 msgid "" "This computer is currently using the AMD 'fglrx' graphics driver. No version " "of this driver is available that works with your hardware in Ubuntu 10.04 " @@ -965,12 +965,12 @@ "Do you want to continue?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:339 -#: ../DistUpgrade/DistUpgradeQuirks.py:408 +#: ../DistUpgrade/DistUpgradeQuirks.py:343 +#: ../DistUpgrade/DistUpgradeQuirks.py:412 msgid "Sorry, no more upgrades for this system" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:340 +#: ../DistUpgrade/DistUpgradeQuirks.py:344 #, python-format msgid "" "There will not be any further Ubuntu releases for this system's 'i386' " @@ -979,11 +979,11 @@ "Updates for Ubuntu %s will continue until %s." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:355 +#: ../DistUpgrade/DistUpgradeQuirks.py:359 msgid "No ARMv6 CPU" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:356 +#: ../DistUpgrade/DistUpgradeQuirks.py:360 msgid "" "Your system uses an ARM CPU that is older than the ARMv6 architecture. All " "packages in karmic were built with optimizations requiring ARMv6 as the " @@ -991,12 +991,12 @@ "Ubuntu release with this hardware." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:376 +#: ../DistUpgrade/DistUpgradeQuirks.py:380 msgid "" "Sorry, this storage driver is not supported in kernels for newer releases" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:378 +#: ../DistUpgrade/DistUpgradeQuirks.py:382 #, python-format msgid "" "There will not be any further Ubuntu releases that provide kernel support " @@ -1006,7 +1006,7 @@ "driver, remove the directory %s and try again." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:409 +#: ../DistUpgrade/DistUpgradeQuirks.py:413 #, python-format msgid "" "There will not be any further Ubuntu releases for this system's POWER8 " @@ -1015,11 +1015,11 @@ "Updates for Ubuntu %s will continue until %s." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:427 +#: ../DistUpgrade/DistUpgradeQuirks.py:431 msgid "No init available" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:428 +#: ../DistUpgrade/DistUpgradeQuirks.py:432 msgid "" "Your system appears to be a virtualised environment without an init daemon, " "e.g. Linux-VServer. Ubuntu 10.04 LTS cannot function within this type of " @@ -1029,11 +1029,11 @@ "Are you sure you want to continue?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:469 +#: ../DistUpgrade/DistUpgradeQuirks.py:473 msgid "The Robot Operating System (ROS) is installed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:470 +#: ../DistUpgrade/DistUpgradeQuirks.py:474 msgid "" "It appears that ROS is currently installed. Each ROS release is very strict " "about the versions of Ubuntu it supports, and Ubuntu upgrades can fail if " @@ -1050,11 +1050,11 @@ "Are you sure you want to continue?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:670 +#: ../DistUpgrade/DistUpgradeQuirks.py:674 msgid "Connection to the Snap Store failed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:671 +#: ../DistUpgrade/DistUpgradeQuirks.py:675 msgid "" "You have the package lxd installed but your system is unable to reach the " "Snap Store. lxd is now provided via a snap and the release upgrade will fail " @@ -1064,11 +1064,11 @@ "may want to configure a Snap Store proxy." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:686 +#: ../DistUpgrade/DistUpgradeQuirks.py:690 msgid "Connection to Snap Store failed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:687 +#: ../DistUpgrade/DistUpgradeQuirks.py:691 msgid "" "Your system does not have a connection to the Snap Store. For the best " "upgrade experience make sure that your system can connect to api.snapcraft." @@ -1076,11 +1076,11 @@ "Do you still want to continue with the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:696 +#: ../DistUpgrade/DistUpgradeQuirks.py:700 msgid "Outdated snapd package" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:697 +#: ../DistUpgrade/DistUpgradeQuirks.py:701 msgid "" "Your system does not have the latest version of snapd. Please update the " "version of snapd on your system to improve the upgrade experience.\n" @@ -1089,36 +1089,36 @@ #. now perform direct API calls to the store, requesting size #. information for each of the snaps needing installation -#: ../DistUpgrade/DistUpgradeQuirks.py:722 +#: ../DistUpgrade/DistUpgradeQuirks.py:726 msgid "Calculating snap size requirements" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:753 +#: ../DistUpgrade/DistUpgradeQuirks.py:757 msgid "Processing snap replacements" msgstr "" #. TODO: This status should be updated, but the time of #. this change to snap switch is post-translation freeze. -#: ../DistUpgrade/DistUpgradeQuirks.py:761 +#: ../DistUpgrade/DistUpgradeQuirks.py:765 #, python-format msgid "refreshing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:765 +#: ../DistUpgrade/DistUpgradeQuirks.py:769 #, python-format msgid "removing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:768 +#: ../DistUpgrade/DistUpgradeQuirks.py:772 #, python-format msgid "installing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:797 +#: ../DistUpgrade/DistUpgradeQuirks.py:801 msgid "PAE not enabled" msgstr "PAE фаъол нашудааст" -#: ../DistUpgrade/DistUpgradeQuirks.py:798 +#: ../DistUpgrade/DistUpgradeQuirks.py:802 msgid "" "Your system uses a CPU that does not have PAE enabled. Ubuntu only supports " "non-PAE systems up to Ubuntu 12.04. To upgrade to a later version of Ubuntu, " @@ -1131,11 +1131,11 @@ "кунед (агар имкон дошта бошед). Барои маълумоти муфассал:\n" "http://help.ubuntu.com/community/EnablingPAE" -#: ../DistUpgrade/DistUpgradeQuirks.py:1094 +#: ../DistUpgrade/DistUpgradeQuirks.py:1098 msgid "universe component not enabled" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1095 +#: ../DistUpgrade/DistUpgradeQuirks.py:1099 #, python-format msgid "" "You have the package %s installed which is a python2 package. python2 has " @@ -1147,37 +1147,48 @@ "universe component in /etc/apt/sources.list or remove %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1207 +#: ../DistUpgrade/DistUpgradeQuirks.py:1211 msgid "Checking for installed snaps" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1654 +#: ../DistUpgrade/DistUpgradeQuirks.py:1720 msgid "Cannot upgrade this system" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1655 +#: ../DistUpgrade/DistUpgradeQuirks.py:1721 msgid "" "Due to a bug in grub, this system cannot be safely upgraded at this time.\n" "\n" "See https://launchpad.net/bugs/2039172." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1721 +#: ../DistUpgrade/DistUpgradeQuirks.py:1787 #, python-brace-format msgid "Updates for Ubuntu {from_release.version} will " msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1731 +#: ../DistUpgrade/DistUpgradeQuirks.py:1797 msgid "Sorry, cannot upgrade this system to 24.04 LTS" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1734 +#: ../DistUpgrade/DistUpgradeQuirks.py:1800 msgid "" "The Raspberry Pi kernel for Ubuntu 24.04 LTS does not support the armhf " "architecture.\n" "\n" msgstr "" +#: ../DistUpgrade/DistUpgradeQuirks.py:1928 +#, python-brace-format +msgid "Sorry, cannot upgrade this system to {version}" +msgstr "" + +#: ../DistUpgrade/DistUpgradeQuirks.py:1931 +msgid "" +"Upgrades for desktop systems running TPM FDE are not currently supported. " +"Please see https://launchpad.net/bugs/2065229 for more information." +msgstr "" + #: ../DistUpgrade/DistUpgradeMain.py:62 msgid "" "Use frontend. Currently available: \n" diff -Nru ubuntu-release-upgrader-24.04.17/po/th.po ubuntu-release-upgrader-24.04.18/po/th.po --- ubuntu-release-upgrader-24.04.17/po/th.po 2024-04-29 14:26:40.000000000 +0000 +++ ubuntu-release-upgrader-24.04.18/po/th.po 2024-05-09 19:39:22.000000000 +0000 @@ -9,7 +9,7 @@ msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2024-04-29 16:03+0200\n" +"POT-Creation-Date: 2024-05-09 15:39-0400\n" "PO-Revision-Date: 2013-05-22 11:00+0000\n" "Last-Translator: Brian Murray \n" "Language-Team: Thai \n" @@ -999,11 +999,11 @@ msgid "Media Change" msgstr "เปลี่ยนสื่อ" -#: ../DistUpgrade/DistUpgradeQuirks.py:248 +#: ../DistUpgrade/DistUpgradeQuirks.py:252 msgid "Your graphics hardware may not be fully supported in Ubuntu 14.04." msgstr "ฮาร์ดแวร์แสดงผลของคุณอาจไม่ได้รับการสนับสนุนอย่างเต็มที่ใน Ubuntu 14.04" -#: ../DistUpgrade/DistUpgradeQuirks.py:250 +#: ../DistUpgrade/DistUpgradeQuirks.py:254 msgid "" "Running the 'unity' desktop environment is not fully supported by your " "graphics hardware. You will maybe end up in a very slow environment after " @@ -1018,11 +1018,11 @@ "ไปก่อนตอนนี้ สำหรับข้อมูลเพิ่มเติม ดูที่ https://wiki.ubuntu.com/X/Bugs/" "UpdateManagerWarningForUnity3D คุณยังคงต้องการอัปเกรดต่อไปหรือไม่?" -#: ../DistUpgrade/DistUpgradeQuirks.py:274 +#: ../DistUpgrade/DistUpgradeQuirks.py:278 msgid "Your graphics hardware may not be fully supported in Ubuntu 12.04 LTS." msgstr "ฮาร์ดแวร์แสดงผลของคุณอาจไม่ได้รับการสนับสนุนอย่างเต็มที่ใน Ubuntu 12.04 LTS" -#: ../DistUpgrade/DistUpgradeQuirks.py:276 +#: ../DistUpgrade/DistUpgradeQuirks.py:280 msgid "" "The support in Ubuntu 12.04 LTS for your Intel graphics hardware is limited " "and you may encounter problems after the upgrade. For more information see " @@ -1033,14 +1033,14 @@ "ของคุณถูกจำกัดและคุณอาจประสบปัญหาหลังการปรับรุ่นได้ สำหรับข้อมูลเพิ่มเติม ดูที่ https://wiki." "ubuntu.com/X/Bugs/UpdateManagerWarningForI8xx คุณต้องการทำการอัปเกรดต่อไปหรือไม่?" -#: ../DistUpgrade/DistUpgradeQuirks.py:296 +#: ../DistUpgrade/DistUpgradeQuirks.py:300 msgid "" "Upgrading may reduce desktop effects, and performance in games and other " "graphically intensive programs." msgstr "" "การปรับปรุงอาจจะลดลูกเล่นของพื้นโต๊ะ และประสิทธิภาพในเกมและโปรแกมอื่นๆ ที่ต้องใช้กราฟิกมาก" -#: ../DistUpgrade/DistUpgradeQuirks.py:300 +#: ../DistUpgrade/DistUpgradeQuirks.py:304 msgid "" "This computer is currently using the AMD 'fglrx' graphics driver. No version " "of this driver is available that works with your hardware in Ubuntu 10.04 " @@ -1053,12 +1053,12 @@ "\n" "คุณต้องการทำต่อ?" -#: ../DistUpgrade/DistUpgradeQuirks.py:339 -#: ../DistUpgrade/DistUpgradeQuirks.py:408 +#: ../DistUpgrade/DistUpgradeQuirks.py:343 +#: ../DistUpgrade/DistUpgradeQuirks.py:412 msgid "Sorry, no more upgrades for this system" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:340 +#: ../DistUpgrade/DistUpgradeQuirks.py:344 #, python-format msgid "" "There will not be any further Ubuntu releases for this system's 'i386' " @@ -1067,11 +1067,11 @@ "Updates for Ubuntu %s will continue until %s." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:355 +#: ../DistUpgrade/DistUpgradeQuirks.py:359 msgid "No ARMv6 CPU" msgstr "ไม่พบ CPU ARMv6" -#: ../DistUpgrade/DistUpgradeQuirks.py:356 +#: ../DistUpgrade/DistUpgradeQuirks.py:360 msgid "" "Your system uses an ARM CPU that is older than the ARMv6 architecture. All " "packages in karmic were built with optimizations requiring ARMv6 as the " @@ -1082,12 +1082,12 @@ "จะถูกสร้างขึ้นด้วยการเพิ่มประสิทธิภาพซึ่งต้องการ ARMv6 เป็นสถาปัตยกรรมขั้นต่ำสุด " "และเป็นไปไม่ได้ที่จะอัปเกรดระบบของคุณเป็น Ubuntu รุ่นใหม่ด้วยฮาร์ดแวร์นี้" -#: ../DistUpgrade/DistUpgradeQuirks.py:376 +#: ../DistUpgrade/DistUpgradeQuirks.py:380 msgid "" "Sorry, this storage driver is not supported in kernels for newer releases" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:378 +#: ../DistUpgrade/DistUpgradeQuirks.py:382 #, python-format msgid "" "There will not be any further Ubuntu releases that provide kernel support " @@ -1097,7 +1097,7 @@ "driver, remove the directory %s and try again." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:409 +#: ../DistUpgrade/DistUpgradeQuirks.py:413 #, python-format msgid "" "There will not be any further Ubuntu releases for this system's POWER8 " @@ -1106,11 +1106,11 @@ "Updates for Ubuntu %s will continue until %s." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:427 +#: ../DistUpgrade/DistUpgradeQuirks.py:431 msgid "No init available" msgstr "ไม่พบ init" -#: ../DistUpgrade/DistUpgradeQuirks.py:428 +#: ../DistUpgrade/DistUpgradeQuirks.py:432 msgid "" "Your system appears to be a virtualised environment without an init daemon, " "e.g. Linux-VServer. Ubuntu 10.04 LTS cannot function within this type of " @@ -1125,11 +1125,11 @@ "\n" "คุณแน่ใจหรือว่าคุณต้องการทำต่อไป?" -#: ../DistUpgrade/DistUpgradeQuirks.py:469 +#: ../DistUpgrade/DistUpgradeQuirks.py:473 msgid "The Robot Operating System (ROS) is installed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:470 +#: ../DistUpgrade/DistUpgradeQuirks.py:474 msgid "" "It appears that ROS is currently installed. Each ROS release is very strict " "about the versions of Ubuntu it supports, and Ubuntu upgrades can fail if " @@ -1146,12 +1146,12 @@ "Are you sure you want to continue?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:670 +#: ../DistUpgrade/DistUpgradeQuirks.py:674 #, fuzzy msgid "Connection to the Snap Store failed" msgstr "การเชื่อมต่อไปยัง Snap Store ล้มเหลว" -#: ../DistUpgrade/DistUpgradeQuirks.py:671 +#: ../DistUpgrade/DistUpgradeQuirks.py:675 msgid "" "You have the package lxd installed but your system is unable to reach the " "Snap Store. lxd is now provided via a snap and the release upgrade will fail " @@ -1161,11 +1161,11 @@ "may want to configure a Snap Store proxy." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:686 +#: ../DistUpgrade/DistUpgradeQuirks.py:690 msgid "Connection to Snap Store failed" msgstr "การเชื่อมต่อไปยัง Snap Store ล้มเหลว" -#: ../DistUpgrade/DistUpgradeQuirks.py:687 +#: ../DistUpgrade/DistUpgradeQuirks.py:691 msgid "" "Your system does not have a connection to the Snap Store. For the best " "upgrade experience make sure that your system can connect to api.snapcraft." @@ -1176,11 +1176,11 @@ "ตรวจให้แน่ใจว่าระบบของคุณสามารถเชื่อมต่อไปยัง api.snapcraft.io ได้\n" "คุณยังคงต้องการดำเนินการอัปเกรดต่อหรือไม่?" -#: ../DistUpgrade/DistUpgradeQuirks.py:696 +#: ../DistUpgrade/DistUpgradeQuirks.py:700 msgid "Outdated snapd package" msgstr "แพ็กเกจ snapd ล้าสมัย" -#: ../DistUpgrade/DistUpgradeQuirks.py:697 +#: ../DistUpgrade/DistUpgradeQuirks.py:701 msgid "" "Your system does not have the latest version of snapd. Please update the " "version of snapd on your system to improve the upgrade experience.\n" @@ -1192,36 +1192,36 @@ #. now perform direct API calls to the store, requesting size #. information for each of the snaps needing installation -#: ../DistUpgrade/DistUpgradeQuirks.py:722 +#: ../DistUpgrade/DistUpgradeQuirks.py:726 msgid "Calculating snap size requirements" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:753 +#: ../DistUpgrade/DistUpgradeQuirks.py:757 msgid "Processing snap replacements" msgstr "" #. TODO: This status should be updated, but the time of #. this change to snap switch is post-translation freeze. -#: ../DistUpgrade/DistUpgradeQuirks.py:761 +#: ../DistUpgrade/DistUpgradeQuirks.py:765 #, python-format msgid "refreshing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:765 +#: ../DistUpgrade/DistUpgradeQuirks.py:769 #, python-format msgid "removing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:768 +#: ../DistUpgrade/DistUpgradeQuirks.py:772 #, python-format msgid "installing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:797 +#: ../DistUpgrade/DistUpgradeQuirks.py:801 msgid "PAE not enabled" msgstr "ไม่ได้เปิดใช้งาน PAE อยู่" -#: ../DistUpgrade/DistUpgradeQuirks.py:798 +#: ../DistUpgrade/DistUpgradeQuirks.py:802 msgid "" "Your system uses a CPU that does not have PAE enabled. Ubuntu only supports " "non-PAE systems up to Ubuntu 12.04. To upgrade to a later version of Ubuntu, " @@ -1233,11 +1233,11 @@ "(หากเป็นไปได้) ดูที่:\n" "http://help.ubuntu.com/community/EnablingPAE" -#: ../DistUpgrade/DistUpgradeQuirks.py:1094 +#: ../DistUpgrade/DistUpgradeQuirks.py:1098 msgid "universe component not enabled" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1095 +#: ../DistUpgrade/DistUpgradeQuirks.py:1099 #, python-format msgid "" "You have the package %s installed which is a python2 package. python2 has " @@ -1249,39 +1249,50 @@ "universe component in /etc/apt/sources.list or remove %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1207 +#: ../DistUpgrade/DistUpgradeQuirks.py:1211 msgid "Checking for installed snaps" msgstr "กำลังตรวจหา snaps ที่ติดตั้งแล้ว" -#: ../DistUpgrade/DistUpgradeQuirks.py:1654 +#: ../DistUpgrade/DistUpgradeQuirks.py:1720 #, fuzzy msgid "Cannot upgrade this system" msgstr "ไม่สามารถปรับปรุงรุ่น" -#: ../DistUpgrade/DistUpgradeQuirks.py:1655 +#: ../DistUpgrade/DistUpgradeQuirks.py:1721 msgid "" "Due to a bug in grub, this system cannot be safely upgraded at this time.\n" "\n" "See https://launchpad.net/bugs/2039172." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1721 +#: ../DistUpgrade/DistUpgradeQuirks.py:1787 #, python-brace-format msgid "Updates for Ubuntu {from_release.version} will " msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1731 +#: ../DistUpgrade/DistUpgradeQuirks.py:1797 #, fuzzy msgid "Sorry, cannot upgrade this system to 24.04 LTS" msgstr "ไม่สามารถปรับปรุงรุ่น" -#: ../DistUpgrade/DistUpgradeQuirks.py:1734 +#: ../DistUpgrade/DistUpgradeQuirks.py:1800 msgid "" "The Raspberry Pi kernel for Ubuntu 24.04 LTS does not support the armhf " "architecture.\n" "\n" msgstr "" +#: ../DistUpgrade/DistUpgradeQuirks.py:1928 +#, fuzzy, python-brace-format +msgid "Sorry, cannot upgrade this system to {version}" +msgstr "ไม่สามารถปรับปรุงรุ่น" + +#: ../DistUpgrade/DistUpgradeQuirks.py:1931 +msgid "" +"Upgrades for desktop systems running TPM FDE are not currently supported. " +"Please see https://launchpad.net/bugs/2065229 for more information." +msgstr "" + #: ../DistUpgrade/DistUpgradeMain.py:62 msgid "" "Use frontend. Currently available: \n" diff -Nru ubuntu-release-upgrader-24.04.17/po/tl.po ubuntu-release-upgrader-24.04.18/po/tl.po --- ubuntu-release-upgrader-24.04.17/po/tl.po 2024-04-29 14:26:40.000000000 +0000 +++ ubuntu-release-upgrader-24.04.18/po/tl.po 2024-05-09 19:39:22.000000000 +0000 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2024-04-29 16:03+0200\n" +"POT-Creation-Date: 2024-05-09 15:39-0400\n" "PO-Revision-Date: 2013-05-22 11:00+0000\n" "Last-Translator: Ariel S. Betan \n" "Language-Team: Tagalog \n" @@ -928,11 +928,11 @@ msgid "Media Change" msgstr "Binagong Media" -#: ../DistUpgrade/DistUpgradeQuirks.py:248 +#: ../DistUpgrade/DistUpgradeQuirks.py:252 msgid "Your graphics hardware may not be fully supported in Ubuntu 14.04." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:250 +#: ../DistUpgrade/DistUpgradeQuirks.py:254 msgid "" "Running the 'unity' desktop environment is not fully supported by your " "graphics hardware. You will maybe end up in a very slow environment after " @@ -942,11 +942,11 @@ "upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:274 +#: ../DistUpgrade/DistUpgradeQuirks.py:278 msgid "Your graphics hardware may not be fully supported in Ubuntu 12.04 LTS." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:276 +#: ../DistUpgrade/DistUpgradeQuirks.py:280 msgid "" "The support in Ubuntu 12.04 LTS for your Intel graphics hardware is limited " "and you may encounter problems after the upgrade. For more information see " @@ -954,7 +954,7 @@ "continue with the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:296 +#: ../DistUpgrade/DistUpgradeQuirks.py:300 msgid "" "Upgrading may reduce desktop effects, and performance in games and other " "graphically intensive programs." @@ -962,7 +962,7 @@ "Maaaring mabawasan ang desktop effects, at performance ng mga games at iba " "pang graphically intensive programs." -#: ../DistUpgrade/DistUpgradeQuirks.py:300 +#: ../DistUpgrade/DistUpgradeQuirks.py:304 msgid "" "This computer is currently using the AMD 'fglrx' graphics driver. No version " "of this driver is available that works with your hardware in Ubuntu 10.04 " @@ -971,12 +971,12 @@ "Do you want to continue?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:339 -#: ../DistUpgrade/DistUpgradeQuirks.py:408 +#: ../DistUpgrade/DistUpgradeQuirks.py:343 +#: ../DistUpgrade/DistUpgradeQuirks.py:412 msgid "Sorry, no more upgrades for this system" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:340 +#: ../DistUpgrade/DistUpgradeQuirks.py:344 #, python-format msgid "" "There will not be any further Ubuntu releases for this system's 'i386' " @@ -985,11 +985,11 @@ "Updates for Ubuntu %s will continue until %s." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:355 +#: ../DistUpgrade/DistUpgradeQuirks.py:359 msgid "No ARMv6 CPU" msgstr "Walang ARMv6 CPU" -#: ../DistUpgrade/DistUpgradeQuirks.py:356 +#: ../DistUpgrade/DistUpgradeQuirks.py:360 msgid "" "Your system uses an ARM CPU that is older than the ARMv6 architecture. All " "packages in karmic were built with optimizations requiring ARMv6 as the " @@ -997,12 +997,12 @@ "Ubuntu release with this hardware." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:376 +#: ../DistUpgrade/DistUpgradeQuirks.py:380 msgid "" "Sorry, this storage driver is not supported in kernels for newer releases" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:378 +#: ../DistUpgrade/DistUpgradeQuirks.py:382 #, python-format msgid "" "There will not be any further Ubuntu releases that provide kernel support " @@ -1012,7 +1012,7 @@ "driver, remove the directory %s and try again." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:409 +#: ../DistUpgrade/DistUpgradeQuirks.py:413 #, python-format msgid "" "There will not be any further Ubuntu releases for this system's POWER8 " @@ -1021,11 +1021,11 @@ "Updates for Ubuntu %s will continue until %s." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:427 +#: ../DistUpgrade/DistUpgradeQuirks.py:431 msgid "No init available" msgstr "Walang init na available" -#: ../DistUpgrade/DistUpgradeQuirks.py:428 +#: ../DistUpgrade/DistUpgradeQuirks.py:432 msgid "" "Your system appears to be a virtualised environment without an init daemon, " "e.g. Linux-VServer. Ubuntu 10.04 LTS cannot function within this type of " @@ -1035,11 +1035,11 @@ "Are you sure you want to continue?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:469 +#: ../DistUpgrade/DistUpgradeQuirks.py:473 msgid "The Robot Operating System (ROS) is installed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:470 +#: ../DistUpgrade/DistUpgradeQuirks.py:474 msgid "" "It appears that ROS is currently installed. Each ROS release is very strict " "about the versions of Ubuntu it supports, and Ubuntu upgrades can fail if " @@ -1056,11 +1056,11 @@ "Are you sure you want to continue?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:670 +#: ../DistUpgrade/DistUpgradeQuirks.py:674 msgid "Connection to the Snap Store failed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:671 +#: ../DistUpgrade/DistUpgradeQuirks.py:675 msgid "" "You have the package lxd installed but your system is unable to reach the " "Snap Store. lxd is now provided via a snap and the release upgrade will fail " @@ -1070,11 +1070,11 @@ "may want to configure a Snap Store proxy." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:686 +#: ../DistUpgrade/DistUpgradeQuirks.py:690 msgid "Connection to Snap Store failed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:687 +#: ../DistUpgrade/DistUpgradeQuirks.py:691 msgid "" "Your system does not have a connection to the Snap Store. For the best " "upgrade experience make sure that your system can connect to api.snapcraft." @@ -1082,11 +1082,11 @@ "Do you still want to continue with the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:696 +#: ../DistUpgrade/DistUpgradeQuirks.py:700 msgid "Outdated snapd package" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:697 +#: ../DistUpgrade/DistUpgradeQuirks.py:701 msgid "" "Your system does not have the latest version of snapd. Please update the " "version of snapd on your system to improve the upgrade experience.\n" @@ -1095,36 +1095,36 @@ #. now perform direct API calls to the store, requesting size #. information for each of the snaps needing installation -#: ../DistUpgrade/DistUpgradeQuirks.py:722 +#: ../DistUpgrade/DistUpgradeQuirks.py:726 msgid "Calculating snap size requirements" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:753 +#: ../DistUpgrade/DistUpgradeQuirks.py:757 msgid "Processing snap replacements" msgstr "" #. TODO: This status should be updated, but the time of #. this change to snap switch is post-translation freeze. -#: ../DistUpgrade/DistUpgradeQuirks.py:761 +#: ../DistUpgrade/DistUpgradeQuirks.py:765 #, python-format msgid "refreshing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:765 +#: ../DistUpgrade/DistUpgradeQuirks.py:769 #, python-format msgid "removing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:768 +#: ../DistUpgrade/DistUpgradeQuirks.py:772 #, python-format msgid "installing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:797 +#: ../DistUpgrade/DistUpgradeQuirks.py:801 msgid "PAE not enabled" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:798 +#: ../DistUpgrade/DistUpgradeQuirks.py:802 msgid "" "Your system uses a CPU that does not have PAE enabled. Ubuntu only supports " "non-PAE systems up to Ubuntu 12.04. To upgrade to a later version of Ubuntu, " @@ -1132,11 +1132,11 @@ "http://help.ubuntu.com/community/EnablingPAE" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1094 +#: ../DistUpgrade/DistUpgradeQuirks.py:1098 msgid "universe component not enabled" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1095 +#: ../DistUpgrade/DistUpgradeQuirks.py:1099 #, python-format msgid "" "You have the package %s installed which is a python2 package. python2 has " @@ -1148,39 +1148,50 @@ "universe component in /etc/apt/sources.list or remove %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1207 +#: ../DistUpgrade/DistUpgradeQuirks.py:1211 msgid "Checking for installed snaps" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1654 +#: ../DistUpgrade/DistUpgradeQuirks.py:1720 #, fuzzy msgid "Cannot upgrade this system" msgstr "Hindi ma-upgrade" -#: ../DistUpgrade/DistUpgradeQuirks.py:1655 +#: ../DistUpgrade/DistUpgradeQuirks.py:1721 msgid "" "Due to a bug in grub, this system cannot be safely upgraded at this time.\n" "\n" "See https://launchpad.net/bugs/2039172." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1721 +#: ../DistUpgrade/DistUpgradeQuirks.py:1787 #, python-brace-format msgid "Updates for Ubuntu {from_release.version} will " msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1731 +#: ../DistUpgrade/DistUpgradeQuirks.py:1797 #, fuzzy msgid "Sorry, cannot upgrade this system to 24.04 LTS" msgstr "Hindi ma-upgrade" -#: ../DistUpgrade/DistUpgradeQuirks.py:1734 +#: ../DistUpgrade/DistUpgradeQuirks.py:1800 msgid "" "The Raspberry Pi kernel for Ubuntu 24.04 LTS does not support the armhf " "architecture.\n" "\n" msgstr "" +#: ../DistUpgrade/DistUpgradeQuirks.py:1928 +#, fuzzy, python-brace-format +msgid "Sorry, cannot upgrade this system to {version}" +msgstr "Hindi ma-upgrade" + +#: ../DistUpgrade/DistUpgradeQuirks.py:1931 +msgid "" +"Upgrades for desktop systems running TPM FDE are not currently supported. " +"Please see https://launchpad.net/bugs/2065229 for more information." +msgstr "" + #: ../DistUpgrade/DistUpgradeMain.py:62 msgid "" "Use frontend. Currently available: \n" diff -Nru ubuntu-release-upgrader-24.04.17/po/tr.po ubuntu-release-upgrader-24.04.18/po/tr.po --- ubuntu-release-upgrader-24.04.17/po/tr.po 2024-04-29 14:26:40.000000000 +0000 +++ ubuntu-release-upgrader-24.04.18/po/tr.po 2024-05-09 19:39:22.000000000 +0000 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2024-04-29 16:03+0200\n" +"POT-Creation-Date: 2024-05-09 15:39-0400\n" "PO-Revision-Date: 2019-06-18 17:53+0000\n" "Last-Translator: Brian Murray \n" "Language-Team: Turkish \n" @@ -1062,13 +1062,13 @@ msgid "Media Change" msgstr "Ortam Değişimi" -#: ../DistUpgrade/DistUpgradeQuirks.py:248 +#: ../DistUpgrade/DistUpgradeQuirks.py:252 msgid "Your graphics hardware may not be fully supported in Ubuntu 14.04." msgstr "" "Grafik donanımınız Ubuntu 14.04 tarafından tam olarak desteklenmiyor " "olabilir." -#: ../DistUpgrade/DistUpgradeQuirks.py:250 +#: ../DistUpgrade/DistUpgradeQuirks.py:254 msgid "" "Running the 'unity' desktop environment is not fully supported by your " "graphics hardware. You will maybe end up in a very slow environment after " @@ -1083,12 +1083,12 @@ "için https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForUnity3D adresini " "ziyaret edin. Yine de yükseltme işlemine devam etmek istiyor musunuz?" -#: ../DistUpgrade/DistUpgradeQuirks.py:274 +#: ../DistUpgrade/DistUpgradeQuirks.py:278 msgid "Your graphics hardware may not be fully supported in Ubuntu 12.04 LTS." msgstr "" "Ekran kartınız Ubuntu 12.04 sürümünde tam olarak desteklenmiyor olabilir." -#: ../DistUpgrade/DistUpgradeQuirks.py:276 +#: ../DistUpgrade/DistUpgradeQuirks.py:280 msgid "" "The support in Ubuntu 12.04 LTS for your Intel graphics hardware is limited " "and you may encounter problems after the upgrade. For more information see " @@ -1101,7 +1101,7 @@ "UpdateManagerWarningForI8xx bağlantısına göz atınız. Yükseltmeye devam etmek " "istiyor musunuz?" -#: ../DistUpgrade/DistUpgradeQuirks.py:296 +#: ../DistUpgrade/DistUpgradeQuirks.py:300 msgid "" "Upgrading may reduce desktop effects, and performance in games and other " "graphically intensive programs." @@ -1109,7 +1109,7 @@ "Yükseltme; masaüstü efektlerini, oyunların ve diğer yoğun grafik kullanan " "uygulamaların başarımını düşürebilir." -#: ../DistUpgrade/DistUpgradeQuirks.py:300 +#: ../DistUpgrade/DistUpgradeQuirks.py:304 msgid "" "This computer is currently using the AMD 'fglrx' graphics driver. No version " "of this driver is available that works with your hardware in Ubuntu 10.04 " @@ -1122,12 +1122,12 @@ "\n" "Devam etmek istiyor musunuz?" -#: ../DistUpgrade/DistUpgradeQuirks.py:339 -#: ../DistUpgrade/DistUpgradeQuirks.py:408 +#: ../DistUpgrade/DistUpgradeQuirks.py:343 +#: ../DistUpgrade/DistUpgradeQuirks.py:412 msgid "Sorry, no more upgrades for this system" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:340 +#: ../DistUpgrade/DistUpgradeQuirks.py:344 #, python-format msgid "" "There will not be any further Ubuntu releases for this system's 'i386' " @@ -1136,11 +1136,11 @@ "Updates for Ubuntu %s will continue until %s." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:355 +#: ../DistUpgrade/DistUpgradeQuirks.py:359 msgid "No ARMv6 CPU" msgstr "ARMv6 İşlemci Yok" -#: ../DistUpgrade/DistUpgradeQuirks.py:356 +#: ../DistUpgrade/DistUpgradeQuirks.py:360 msgid "" "Your system uses an ARM CPU that is older than the ARMv6 architecture. All " "packages in karmic were built with optimizations requiring ARMv6 as the " @@ -1152,12 +1152,12 @@ "ile oluşturulmuştur. Bu donanım ile, sisteminizi yeni bir Ubuntu sürümüne " "yükseltmek mümkün değil." -#: ../DistUpgrade/DistUpgradeQuirks.py:376 +#: ../DistUpgrade/DistUpgradeQuirks.py:380 msgid "" "Sorry, this storage driver is not supported in kernels for newer releases" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:378 +#: ../DistUpgrade/DistUpgradeQuirks.py:382 #, python-format msgid "" "There will not be any further Ubuntu releases that provide kernel support " @@ -1167,7 +1167,7 @@ "driver, remove the directory %s and try again." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:409 +#: ../DistUpgrade/DistUpgradeQuirks.py:413 #, python-format msgid "" "There will not be any further Ubuntu releases for this system's POWER8 " @@ -1176,11 +1176,11 @@ "Updates for Ubuntu %s will continue until %s." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:427 +#: ../DistUpgrade/DistUpgradeQuirks.py:431 msgid "No init available" msgstr "Başlatıcı mevcut değil" -#: ../DistUpgrade/DistUpgradeQuirks.py:428 +#: ../DistUpgrade/DistUpgradeQuirks.py:432 msgid "" "Your system appears to be a virtualised environment without an init daemon, " "e.g. Linux-VServer. Ubuntu 10.04 LTS cannot function within this type of " @@ -1194,11 +1194,11 @@ "öncelikle sanal makinenizin ayarlarını güncelleştirmeniz gerekiyor.\n" "Devam etmek istediğinizden emin misiniz?" -#: ../DistUpgrade/DistUpgradeQuirks.py:469 +#: ../DistUpgrade/DistUpgradeQuirks.py:473 msgid "The Robot Operating System (ROS) is installed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:470 +#: ../DistUpgrade/DistUpgradeQuirks.py:474 msgid "" "It appears that ROS is currently installed. Each ROS release is very strict " "about the versions of Ubuntu it supports, and Ubuntu upgrades can fail if " @@ -1215,12 +1215,12 @@ "Are you sure you want to continue?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:670 +#: ../DistUpgrade/DistUpgradeQuirks.py:674 #, fuzzy msgid "Connection to the Snap Store failed" msgstr "Snap Mağazasına bağlanma başarısız" -#: ../DistUpgrade/DistUpgradeQuirks.py:671 +#: ../DistUpgrade/DistUpgradeQuirks.py:675 msgid "" "You have the package lxd installed but your system is unable to reach the " "Snap Store. lxd is now provided via a snap and the release upgrade will fail " @@ -1230,11 +1230,11 @@ "may want to configure a Snap Store proxy." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:686 +#: ../DistUpgrade/DistUpgradeQuirks.py:690 msgid "Connection to Snap Store failed" msgstr "Snap Mağazasına bağlanma başarısız" -#: ../DistUpgrade/DistUpgradeQuirks.py:687 +#: ../DistUpgrade/DistUpgradeQuirks.py:691 msgid "" "Your system does not have a connection to the Snap Store. For the best " "upgrade experience make sure that your system can connect to api.snapcraft." @@ -1245,11 +1245,11 @@ "sisteminizin api.snapcraft.io'ya bağlanabildiğinden emin olun.\n" "Yükseltmeye devam etmek istiyor musunuz?" -#: ../DistUpgrade/DistUpgradeQuirks.py:696 +#: ../DistUpgrade/DistUpgradeQuirks.py:700 msgid "Outdated snapd package" msgstr "Eskimiş snapd paketi" -#: ../DistUpgrade/DistUpgradeQuirks.py:697 +#: ../DistUpgrade/DistUpgradeQuirks.py:701 msgid "" "Your system does not have the latest version of snapd. Please update the " "version of snapd on your system to improve the upgrade experience.\n" @@ -1261,36 +1261,36 @@ #. now perform direct API calls to the store, requesting size #. information for each of the snaps needing installation -#: ../DistUpgrade/DistUpgradeQuirks.py:722 +#: ../DistUpgrade/DistUpgradeQuirks.py:726 msgid "Calculating snap size requirements" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:753 +#: ../DistUpgrade/DistUpgradeQuirks.py:757 msgid "Processing snap replacements" msgstr "" #. TODO: This status should be updated, but the time of #. this change to snap switch is post-translation freeze. -#: ../DistUpgrade/DistUpgradeQuirks.py:761 +#: ../DistUpgrade/DistUpgradeQuirks.py:765 #, python-format msgid "refreshing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:765 +#: ../DistUpgrade/DistUpgradeQuirks.py:769 #, python-format msgid "removing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:768 +#: ../DistUpgrade/DistUpgradeQuirks.py:772 #, python-format msgid "installing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:797 +#: ../DistUpgrade/DistUpgradeQuirks.py:801 msgid "PAE not enabled" msgstr "PAE etkin değil" -#: ../DistUpgrade/DistUpgradeQuirks.py:798 +#: ../DistUpgrade/DistUpgradeQuirks.py:802 msgid "" "Your system uses a CPU that does not have PAE enabled. Ubuntu only supports " "non-PAE systems up to Ubuntu 12.04. To upgrade to a later version of Ubuntu, " @@ -1302,11 +1302,11 @@ "sürümlerine yükseltmek için PAE özelliğini (mümkünse) etkinleştirmelisiniz. " "Bkz: http://help.ubuntu.com/community/EnablingPAE" -#: ../DistUpgrade/DistUpgradeQuirks.py:1094 +#: ../DistUpgrade/DistUpgradeQuirks.py:1098 msgid "universe component not enabled" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1095 +#: ../DistUpgrade/DistUpgradeQuirks.py:1099 #, python-format msgid "" "You have the package %s installed which is a python2 package. python2 has " @@ -1318,39 +1318,50 @@ "universe component in /etc/apt/sources.list or remove %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1207 +#: ../DistUpgrade/DistUpgradeQuirks.py:1211 msgid "Checking for installed snaps" msgstr "Kurulu snap araması sürüyor" -#: ../DistUpgrade/DistUpgradeQuirks.py:1654 +#: ../DistUpgrade/DistUpgradeQuirks.py:1720 #, fuzzy msgid "Cannot upgrade this system" msgstr "Yükseltilemiyor" -#: ../DistUpgrade/DistUpgradeQuirks.py:1655 +#: ../DistUpgrade/DistUpgradeQuirks.py:1721 msgid "" "Due to a bug in grub, this system cannot be safely upgraded at this time.\n" "\n" "See https://launchpad.net/bugs/2039172." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1721 +#: ../DistUpgrade/DistUpgradeQuirks.py:1787 #, python-brace-format msgid "Updates for Ubuntu {from_release.version} will " msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1731 +#: ../DistUpgrade/DistUpgradeQuirks.py:1797 #, fuzzy msgid "Sorry, cannot upgrade this system to 24.04 LTS" msgstr "Yükseltilemiyor" -#: ../DistUpgrade/DistUpgradeQuirks.py:1734 +#: ../DistUpgrade/DistUpgradeQuirks.py:1800 msgid "" "The Raspberry Pi kernel for Ubuntu 24.04 LTS does not support the armhf " "architecture.\n" "\n" msgstr "" +#: ../DistUpgrade/DistUpgradeQuirks.py:1928 +#, fuzzy, python-brace-format +msgid "Sorry, cannot upgrade this system to {version}" +msgstr "Yükseltilemiyor" + +#: ../DistUpgrade/DistUpgradeQuirks.py:1931 +msgid "" +"Upgrades for desktop systems running TPM FDE are not currently supported. " +"Please see https://launchpad.net/bugs/2065229 for more information." +msgstr "" + #: ../DistUpgrade/DistUpgradeMain.py:62 msgid "" "Use frontend. Currently available: \n" diff -Nru ubuntu-release-upgrader-24.04.17/po/ubuntu-release-upgrader.pot ubuntu-release-upgrader-24.04.18/po/ubuntu-release-upgrader.pot --- ubuntu-release-upgrader-24.04.17/po/ubuntu-release-upgrader.pot 2024-04-29 14:26:40.000000000 +0000 +++ ubuntu-release-upgrader-24.04.18/po/ubuntu-release-upgrader.pot 2024-05-09 19:39:14.000000000 +0000 @@ -9,7 +9,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2024-04-29 16:03+0200\n" +"POT-Creation-Date: 2024-05-09 15:39-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -896,11 +896,11 @@ msgid "Media Change" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:248 +#: ../DistUpgrade/DistUpgradeQuirks.py:252 msgid "Your graphics hardware may not be fully supported in Ubuntu 14.04." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:250 +#: ../DistUpgrade/DistUpgradeQuirks.py:254 msgid "" "Running the 'unity' desktop environment is not fully supported by your " "graphics hardware. You will maybe end up in a very slow environment after " @@ -910,11 +910,11 @@ "upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:274 +#: ../DistUpgrade/DistUpgradeQuirks.py:278 msgid "Your graphics hardware may not be fully supported in Ubuntu 12.04 LTS." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:276 +#: ../DistUpgrade/DistUpgradeQuirks.py:280 msgid "" "The support in Ubuntu 12.04 LTS for your Intel graphics hardware is limited " "and you may encounter problems after the upgrade. For more information see " @@ -922,13 +922,13 @@ "continue with the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:296 +#: ../DistUpgrade/DistUpgradeQuirks.py:300 msgid "" "Upgrading may reduce desktop effects, and performance in games and other " "graphically intensive programs." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:300 +#: ../DistUpgrade/DistUpgradeQuirks.py:304 msgid "" "This computer is currently using the AMD 'fglrx' graphics driver. No version " "of this driver is available that works with your hardware in Ubuntu 10.04 " @@ -937,12 +937,12 @@ "Do you want to continue?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:339 -#: ../DistUpgrade/DistUpgradeQuirks.py:408 +#: ../DistUpgrade/DistUpgradeQuirks.py:343 +#: ../DistUpgrade/DistUpgradeQuirks.py:412 msgid "Sorry, no more upgrades for this system" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:340 +#: ../DistUpgrade/DistUpgradeQuirks.py:344 #, python-format msgid "" "There will not be any further Ubuntu releases for this system's 'i386' " @@ -951,11 +951,11 @@ "Updates for Ubuntu %s will continue until %s." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:355 +#: ../DistUpgrade/DistUpgradeQuirks.py:359 msgid "No ARMv6 CPU" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:356 +#: ../DistUpgrade/DistUpgradeQuirks.py:360 msgid "" "Your system uses an ARM CPU that is older than the ARMv6 architecture. All " "packages in karmic were built with optimizations requiring ARMv6 as the " @@ -963,12 +963,12 @@ "Ubuntu release with this hardware." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:376 +#: ../DistUpgrade/DistUpgradeQuirks.py:380 msgid "" "Sorry, this storage driver is not supported in kernels for newer releases" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:378 +#: ../DistUpgrade/DistUpgradeQuirks.py:382 #, python-format msgid "" "There will not be any further Ubuntu releases that provide kernel support " @@ -978,7 +978,7 @@ "driver, remove the directory %s and try again." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:409 +#: ../DistUpgrade/DistUpgradeQuirks.py:413 #, python-format msgid "" "There will not be any further Ubuntu releases for this system's POWER8 " @@ -987,11 +987,11 @@ "Updates for Ubuntu %s will continue until %s." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:427 +#: ../DistUpgrade/DistUpgradeQuirks.py:431 msgid "No init available" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:428 +#: ../DistUpgrade/DistUpgradeQuirks.py:432 msgid "" "Your system appears to be a virtualised environment without an init daemon, " "e.g. Linux-VServer. Ubuntu 10.04 LTS cannot function within this type of " @@ -1001,11 +1001,11 @@ "Are you sure you want to continue?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:469 +#: ../DistUpgrade/DistUpgradeQuirks.py:473 msgid "The Robot Operating System (ROS) is installed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:470 +#: ../DistUpgrade/DistUpgradeQuirks.py:474 msgid "" "It appears that ROS is currently installed. Each ROS release is very strict " "about the versions of Ubuntu it supports, and Ubuntu upgrades can fail if " @@ -1022,11 +1022,11 @@ "Are you sure you want to continue?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:670 +#: ../DistUpgrade/DistUpgradeQuirks.py:674 msgid "Connection to the Snap Store failed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:671 +#: ../DistUpgrade/DistUpgradeQuirks.py:675 msgid "" "You have the package lxd installed but your system is unable to reach the " "Snap Store. lxd is now provided via a snap and the release upgrade will fail " @@ -1036,11 +1036,11 @@ "may want to configure a Snap Store proxy." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:686 +#: ../DistUpgrade/DistUpgradeQuirks.py:690 msgid "Connection to Snap Store failed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:687 +#: ../DistUpgrade/DistUpgradeQuirks.py:691 msgid "" "Your system does not have a connection to the Snap Store. For the best " "upgrade experience make sure that your system can connect to api.snapcraft." @@ -1048,11 +1048,11 @@ "Do you still want to continue with the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:696 +#: ../DistUpgrade/DistUpgradeQuirks.py:700 msgid "Outdated snapd package" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:697 +#: ../DistUpgrade/DistUpgradeQuirks.py:701 msgid "" "Your system does not have the latest version of snapd. Please update the " "version of snapd on your system to improve the upgrade experience.\n" @@ -1061,36 +1061,36 @@ #. now perform direct API calls to the store, requesting size #. information for each of the snaps needing installation -#: ../DistUpgrade/DistUpgradeQuirks.py:722 +#: ../DistUpgrade/DistUpgradeQuirks.py:726 msgid "Calculating snap size requirements" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:753 +#: ../DistUpgrade/DistUpgradeQuirks.py:757 msgid "Processing snap replacements" msgstr "" #. TODO: This status should be updated, but the time of #. this change to snap switch is post-translation freeze. -#: ../DistUpgrade/DistUpgradeQuirks.py:761 +#: ../DistUpgrade/DistUpgradeQuirks.py:765 #, python-format msgid "refreshing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:765 +#: ../DistUpgrade/DistUpgradeQuirks.py:769 #, python-format msgid "removing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:768 +#: ../DistUpgrade/DistUpgradeQuirks.py:772 #, python-format msgid "installing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:797 +#: ../DistUpgrade/DistUpgradeQuirks.py:801 msgid "PAE not enabled" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:798 +#: ../DistUpgrade/DistUpgradeQuirks.py:802 msgid "" "Your system uses a CPU that does not have PAE enabled. Ubuntu only supports " "non-PAE systems up to Ubuntu 12.04. To upgrade to a later version of Ubuntu, " @@ -1098,11 +1098,11 @@ "http://help.ubuntu.com/community/EnablingPAE" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1094 +#: ../DistUpgrade/DistUpgradeQuirks.py:1098 msgid "universe component not enabled" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1095 +#: ../DistUpgrade/DistUpgradeQuirks.py:1099 #, python-format msgid "" "You have the package %s installed which is a python2 package. python2 has " @@ -1114,37 +1114,48 @@ "universe component in /etc/apt/sources.list or remove %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1207 +#: ../DistUpgrade/DistUpgradeQuirks.py:1211 msgid "Checking for installed snaps" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1654 +#: ../DistUpgrade/DistUpgradeQuirks.py:1720 msgid "Cannot upgrade this system" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1655 +#: ../DistUpgrade/DistUpgradeQuirks.py:1721 msgid "" "Due to a bug in grub, this system cannot be safely upgraded at this time.\n" "\n" "See https://launchpad.net/bugs/2039172." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1721 +#: ../DistUpgrade/DistUpgradeQuirks.py:1787 #, python-brace-format msgid "Updates for Ubuntu {from_release.version} will " msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1731 +#: ../DistUpgrade/DistUpgradeQuirks.py:1797 msgid "Sorry, cannot upgrade this system to 24.04 LTS" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1734 +#: ../DistUpgrade/DistUpgradeQuirks.py:1800 msgid "" "The Raspberry Pi kernel for Ubuntu 24.04 LTS does not support the armhf " "architecture.\n" "\n" msgstr "" +#: ../DistUpgrade/DistUpgradeQuirks.py:1928 +#, python-brace-format +msgid "Sorry, cannot upgrade this system to {version}" +msgstr "" + +#: ../DistUpgrade/DistUpgradeQuirks.py:1931 +msgid "" +"Upgrades for desktop systems running TPM FDE are not currently supported. " +"Please see https://launchpad.net/bugs/2065229 for more information." +msgstr "" + #: ../DistUpgrade/DistUpgradeMain.py:62 msgid "" "Use frontend. Currently available: \n" diff -Nru ubuntu-release-upgrader-24.04.17/po/ug.po ubuntu-release-upgrader-24.04.18/po/ug.po --- ubuntu-release-upgrader-24.04.17/po/ug.po 2024-04-29 14:26:40.000000000 +0000 +++ ubuntu-release-upgrader-24.04.18/po/ug.po 2024-05-09 19:39:22.000000000 +0000 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2024-04-29 16:03+0200\n" +"POT-Creation-Date: 2024-05-09 15:39-0400\n" "PO-Revision-Date: 2019-06-18 17:55+0000\n" "Last-Translator: Brian Murray \n" "Language-Team: Uyghur Computer Science Association \n" @@ -1018,13 +1018,13 @@ msgid "Media Change" msgstr "ۋاسىتە ئۆزگەرتىش" -#: ../DistUpgrade/DistUpgradeQuirks.py:248 +#: ../DistUpgrade/DistUpgradeQuirks.py:252 msgid "Your graphics hardware may not be fully supported in Ubuntu 14.04." msgstr "" "كومپيۇتېرىڭىزنىڭ گرافىك قاتتىق دېتالىنى ئۇبۇنتۇ 14.04 تە تولۇق ئىشلەتكىلى " "بولماسلىقى مۇمكىن." -#: ../DistUpgrade/DistUpgradeQuirks.py:250 +#: ../DistUpgrade/DistUpgradeQuirks.py:254 msgid "" "Running the 'unity' desktop environment is not fully supported by your " "graphics hardware. You will maybe end up in a very slow environment after " @@ -1039,11 +1039,11 @@ "تەپسىلاتنى https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForUnity3D " "دىن كۆرۈڭ. يۈكسەلدۈرۈشنى داۋاملاشتۇرامسىز؟" -#: ../DistUpgrade/DistUpgradeQuirks.py:274 +#: ../DistUpgrade/DistUpgradeQuirks.py:278 msgid "Your graphics hardware may not be fully supported in Ubuntu 12.04 LTS." msgstr "كومپيۇتېرىدىكى كۆرسىتىش كارتىسىنى ئۇبۇنتۇ 12.04 LTS تولۇق قوللىمايدۇ." -#: ../DistUpgrade/DistUpgradeQuirks.py:276 +#: ../DistUpgrade/DistUpgradeQuirks.py:280 msgid "" "The support in Ubuntu 12.04 LTS for your Intel graphics hardware is limited " "and you may encounter problems after the upgrade. For more information see " @@ -1055,7 +1055,7 @@ "ئۇچۇرلارنى https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForI8xx دىن " "كۆرۈشكە بولىدۇ. يۈكسەلدۈرۈشنى داۋاملاشتۇرامسىز؟" -#: ../DistUpgrade/DistUpgradeQuirks.py:296 +#: ../DistUpgrade/DistUpgradeQuirks.py:300 msgid "" "Upgrading may reduce desktop effects, and performance in games and other " "graphically intensive programs." @@ -1063,7 +1063,7 @@ "يۈكسەلدۈرۈلسە ئۈستەلئۈستى ئۈنۈمى، ئويۇنلار ۋە باشقا گرافىكىلىق " "پروگراممىلارنىڭ ئىقتىدارىدا ئاجىزلاش بولىدۇ." -#: ../DistUpgrade/DistUpgradeQuirks.py:300 +#: ../DistUpgrade/DistUpgradeQuirks.py:304 msgid "" "This computer is currently using the AMD 'fglrx' graphics driver. No version " "of this driver is available that works with your hardware in Ubuntu 10.04 " @@ -1076,12 +1076,12 @@ "\n" "داۋاملاشتۇرامسىز?" -#: ../DistUpgrade/DistUpgradeQuirks.py:339 -#: ../DistUpgrade/DistUpgradeQuirks.py:408 +#: ../DistUpgrade/DistUpgradeQuirks.py:343 +#: ../DistUpgrade/DistUpgradeQuirks.py:412 msgid "Sorry, no more upgrades for this system" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:340 +#: ../DistUpgrade/DistUpgradeQuirks.py:344 #, python-format msgid "" "There will not be any further Ubuntu releases for this system's 'i386' " @@ -1090,11 +1090,11 @@ "Updates for Ubuntu %s will continue until %s." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:355 +#: ../DistUpgrade/DistUpgradeQuirks.py:359 msgid "No ARMv6 CPU" msgstr "ARMv6 تىپىدىكى CPU ئەمەس" -#: ../DistUpgrade/DistUpgradeQuirks.py:356 +#: ../DistUpgrade/DistUpgradeQuirks.py:360 msgid "" "Your system uses an ARM CPU that is older than the ARMv6 architecture. All " "packages in karmic were built with optimizations requiring ARMv6 as the " @@ -1105,12 +1105,12 @@ "كونا. karmic تىكى بارلىق بوغچىلار ARMv6 غا ماسلاشتۇرۇلغان بولۇپ، " "كومپيۇتېرىڭىزدا ئىشلەتكىلى بولمايدۇ. شۇڭا سىستېمىنى يېڭىلىيالمايسىز." -#: ../DistUpgrade/DistUpgradeQuirks.py:376 +#: ../DistUpgrade/DistUpgradeQuirks.py:380 msgid "" "Sorry, this storage driver is not supported in kernels for newer releases" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:378 +#: ../DistUpgrade/DistUpgradeQuirks.py:382 #, python-format msgid "" "There will not be any further Ubuntu releases that provide kernel support " @@ -1120,7 +1120,7 @@ "driver, remove the directory %s and try again." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:409 +#: ../DistUpgrade/DistUpgradeQuirks.py:413 #, python-format msgid "" "There will not be any further Ubuntu releases for this system's POWER8 " @@ -1129,11 +1129,11 @@ "Updates for Ubuntu %s will continue until %s." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:427 +#: ../DistUpgrade/DistUpgradeQuirks.py:431 msgid "No init available" msgstr "init يوقكەن" -#: ../DistUpgrade/DistUpgradeQuirks.py:428 +#: ../DistUpgrade/DistUpgradeQuirks.py:432 msgid "" "Your system appears to be a virtualised environment without an init daemon, " "e.g. Linux-VServer. Ubuntu 10.04 LTS cannot function within this type of " @@ -1148,11 +1148,11 @@ "\n" "داۋاملاشتۇرامسىز?" -#: ../DistUpgrade/DistUpgradeQuirks.py:469 +#: ../DistUpgrade/DistUpgradeQuirks.py:473 msgid "The Robot Operating System (ROS) is installed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:470 +#: ../DistUpgrade/DistUpgradeQuirks.py:474 msgid "" "It appears that ROS is currently installed. Each ROS release is very strict " "about the versions of Ubuntu it supports, and Ubuntu upgrades can fail if " @@ -1169,11 +1169,11 @@ "Are you sure you want to continue?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:670 +#: ../DistUpgrade/DistUpgradeQuirks.py:674 msgid "Connection to the Snap Store failed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:671 +#: ../DistUpgrade/DistUpgradeQuirks.py:675 msgid "" "You have the package lxd installed but your system is unable to reach the " "Snap Store. lxd is now provided via a snap and the release upgrade will fail " @@ -1183,11 +1183,11 @@ "may want to configure a Snap Store proxy." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:686 +#: ../DistUpgrade/DistUpgradeQuirks.py:690 msgid "Connection to Snap Store failed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:687 +#: ../DistUpgrade/DistUpgradeQuirks.py:691 msgid "" "Your system does not have a connection to the Snap Store. For the best " "upgrade experience make sure that your system can connect to api.snapcraft." @@ -1195,11 +1195,11 @@ "Do you still want to continue with the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:696 +#: ../DistUpgrade/DistUpgradeQuirks.py:700 msgid "Outdated snapd package" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:697 +#: ../DistUpgrade/DistUpgradeQuirks.py:701 msgid "" "Your system does not have the latest version of snapd. Please update the " "version of snapd on your system to improve the upgrade experience.\n" @@ -1208,36 +1208,36 @@ #. now perform direct API calls to the store, requesting size #. information for each of the snaps needing installation -#: ../DistUpgrade/DistUpgradeQuirks.py:722 +#: ../DistUpgrade/DistUpgradeQuirks.py:726 msgid "Calculating snap size requirements" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:753 +#: ../DistUpgrade/DistUpgradeQuirks.py:757 msgid "Processing snap replacements" msgstr "" #. TODO: This status should be updated, but the time of #. this change to snap switch is post-translation freeze. -#: ../DistUpgrade/DistUpgradeQuirks.py:761 +#: ../DistUpgrade/DistUpgradeQuirks.py:765 #, python-format msgid "refreshing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:765 +#: ../DistUpgrade/DistUpgradeQuirks.py:769 #, python-format msgid "removing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:768 +#: ../DistUpgrade/DistUpgradeQuirks.py:772 #, python-format msgid "installing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:797 +#: ../DistUpgrade/DistUpgradeQuirks.py:801 msgid "PAE not enabled" msgstr "ئەمەلىي ئادرېسنى كېڭەيتىش ئىقتىدارى (PAE) قوزغىتىلمىغان" -#: ../DistUpgrade/DistUpgradeQuirks.py:798 +#: ../DistUpgrade/DistUpgradeQuirks.py:802 msgid "" "Your system uses a CPU that does not have PAE enabled. Ubuntu only supports " "non-PAE systems up to Ubuntu 12.04. To upgrade to a later version of Ubuntu, " @@ -1250,11 +1250,11 @@ "بولسىڭىز، چوقۇم PAE ئىقتىدارى (ئەگەر مۇمكىن بولسا)نى قوزغىتىڭ، تەپسىلاتى: " "http://help.ubuntu.com/community/EnablingPAE" -#: ../DistUpgrade/DistUpgradeQuirks.py:1094 +#: ../DistUpgrade/DistUpgradeQuirks.py:1098 msgid "universe component not enabled" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1095 +#: ../DistUpgrade/DistUpgradeQuirks.py:1099 #, python-format msgid "" "You have the package %s installed which is a python2 package. python2 has " @@ -1266,39 +1266,50 @@ "universe component in /etc/apt/sources.list or remove %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1207 +#: ../DistUpgrade/DistUpgradeQuirks.py:1211 msgid "Checking for installed snaps" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1654 +#: ../DistUpgrade/DistUpgradeQuirks.py:1720 #, fuzzy msgid "Cannot upgrade this system" msgstr "يېڭىلىغىلى بولمايدۇ" -#: ../DistUpgrade/DistUpgradeQuirks.py:1655 +#: ../DistUpgrade/DistUpgradeQuirks.py:1721 msgid "" "Due to a bug in grub, this system cannot be safely upgraded at this time.\n" "\n" "See https://launchpad.net/bugs/2039172." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1721 +#: ../DistUpgrade/DistUpgradeQuirks.py:1787 #, python-brace-format msgid "Updates for Ubuntu {from_release.version} will " msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1731 +#: ../DistUpgrade/DistUpgradeQuirks.py:1797 #, fuzzy msgid "Sorry, cannot upgrade this system to 24.04 LTS" msgstr "يېڭىلىغىلى بولمايدۇ" -#: ../DistUpgrade/DistUpgradeQuirks.py:1734 +#: ../DistUpgrade/DistUpgradeQuirks.py:1800 msgid "" "The Raspberry Pi kernel for Ubuntu 24.04 LTS does not support the armhf " "architecture.\n" "\n" msgstr "" +#: ../DistUpgrade/DistUpgradeQuirks.py:1928 +#, fuzzy, python-brace-format +msgid "Sorry, cannot upgrade this system to {version}" +msgstr "يېڭىلىغىلى بولمايدۇ" + +#: ../DistUpgrade/DistUpgradeQuirks.py:1931 +msgid "" +"Upgrades for desktop systems running TPM FDE are not currently supported. " +"Please see https://launchpad.net/bugs/2065229 for more information." +msgstr "" + #: ../DistUpgrade/DistUpgradeMain.py:62 msgid "" "Use frontend. Currently available: \n" diff -Nru ubuntu-release-upgrader-24.04.17/po/uk.po ubuntu-release-upgrader-24.04.18/po/uk.po --- ubuntu-release-upgrader-24.04.17/po/uk.po 2024-04-29 14:26:40.000000000 +0000 +++ ubuntu-release-upgrader-24.04.18/po/uk.po 2024-05-09 19:39:22.000000000 +0000 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: uk(5)\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2024-04-29 16:03+0200\n" +"POT-Creation-Date: 2024-05-09 15:39-0400\n" "PO-Revision-Date: 2019-07-12 15:58+0000\n" "Last-Translator: Юрій Олексійчук \n" "Language-Team: Ukrainian \n" @@ -1079,12 +1079,12 @@ msgid "Media Change" msgstr "Зміна носія" -#: ../DistUpgrade/DistUpgradeQuirks.py:248 +#: ../DistUpgrade/DistUpgradeQuirks.py:252 msgid "Your graphics hardware may not be fully supported in Ubuntu 14.04." msgstr "" "Ваше графічне обладнання не може бути повністю підтримуване в Ubuntu 14.04." -#: ../DistUpgrade/DistUpgradeQuirks.py:250 +#: ../DistUpgrade/DistUpgradeQuirks.py:254 msgid "" "Running the 'unity' desktop environment is not fully supported by your " "graphics hardware. You will maybe end up in a very slow environment after " @@ -1099,11 +1099,11 @@ "відомості, див. https://wiki.ubuntu.com/X/Bugs/" "UpdateManagerWarningForUnity3D Ви все ще хочете продовжити оновлення?" -#: ../DistUpgrade/DistUpgradeQuirks.py:274 +#: ../DistUpgrade/DistUpgradeQuirks.py:278 msgid "Your graphics hardware may not be fully supported in Ubuntu 12.04 LTS." msgstr "Ваш графічний пристрій підтримується Ubuntu 12.04 LTS не повністю." -#: ../DistUpgrade/DistUpgradeQuirks.py:276 +#: ../DistUpgrade/DistUpgradeQuirks.py:280 msgid "" "The support in Ubuntu 12.04 LTS for your Intel graphics hardware is limited " "and you may encounter problems after the upgrade. For more information see " @@ -1115,7 +1115,7 @@ "інформації відвідайте https://wiki.ubuntu.com/X/Bugs/" "UpdateManagerWarningForI8xx Ви дійсно бажаєте продовжити оновлення?" -#: ../DistUpgrade/DistUpgradeQuirks.py:296 +#: ../DistUpgrade/DistUpgradeQuirks.py:300 msgid "" "Upgrading may reduce desktop effects, and performance in games and other " "graphically intensive programs." @@ -1123,7 +1123,7 @@ "Оновлення може уповільнити ефекти робочого столу, продуктивність роботи в " "іграх та інших графічно складних програмах." -#: ../DistUpgrade/DistUpgradeQuirks.py:300 +#: ../DistUpgrade/DistUpgradeQuirks.py:304 msgid "" "This computer is currently using the AMD 'fglrx' graphics driver. No version " "of this driver is available that works with your hardware in Ubuntu 10.04 " @@ -1137,12 +1137,12 @@ "\n" "Чи хочете ви продовжувати?" -#: ../DistUpgrade/DistUpgradeQuirks.py:339 -#: ../DistUpgrade/DistUpgradeQuirks.py:408 +#: ../DistUpgrade/DistUpgradeQuirks.py:343 +#: ../DistUpgrade/DistUpgradeQuirks.py:412 msgid "Sorry, no more upgrades for this system" msgstr "Вибачте, цю систему вже не можна оновити" -#: ../DistUpgrade/DistUpgradeQuirks.py:340 +#: ../DistUpgrade/DistUpgradeQuirks.py:344 #, python-format msgid "" "There will not be any further Ubuntu releases for this system's 'i386' " @@ -1154,11 +1154,11 @@ "\n" "Пакунки оновлень Ubuntu %s випускатимуть до %s." -#: ../DistUpgrade/DistUpgradeQuirks.py:355 +#: ../DistUpgrade/DistUpgradeQuirks.py:359 msgid "No ARMv6 CPU" msgstr "Немає ARMv6 CPU" -#: ../DistUpgrade/DistUpgradeQuirks.py:356 +#: ../DistUpgrade/DistUpgradeQuirks.py:360 msgid "" "Your system uses an ARM CPU that is older than the ARMv6 architecture. All " "packages in karmic were built with optimizations requiring ARMv6 as the " @@ -1170,12 +1170,12 @@ "як мінімум. Оновлення вашої системи до нового випуску Ubuntu неможливе на " "даному обладнанні." -#: ../DistUpgrade/DistUpgradeQuirks.py:376 +#: ../DistUpgrade/DistUpgradeQuirks.py:380 msgid "" "Sorry, this storage driver is not supported in kernels for newer releases" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:378 +#: ../DistUpgrade/DistUpgradeQuirks.py:382 #, python-format msgid "" "There will not be any further Ubuntu releases that provide kernel support " @@ -1185,7 +1185,7 @@ "driver, remove the directory %s and try again." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:409 +#: ../DistUpgrade/DistUpgradeQuirks.py:413 #, fuzzy, python-format msgid "" "There will not be any further Ubuntu releases for this system's POWER8 " @@ -1197,11 +1197,11 @@ "\n" "Пакунки оновлень Ubuntu %s випускатимуть до %s." -#: ../DistUpgrade/DistUpgradeQuirks.py:427 +#: ../DistUpgrade/DistUpgradeQuirks.py:431 msgid "No init available" msgstr "Служба init недоступна" -#: ../DistUpgrade/DistUpgradeQuirks.py:428 +#: ../DistUpgrade/DistUpgradeQuirks.py:432 msgid "" "Your system appears to be a virtualised environment without an init daemon, " "e.g. Linux-VServer. Ubuntu 10.04 LTS cannot function within this type of " @@ -1217,11 +1217,11 @@ "\n" "Ви впевнені, що хочете продовжити?" -#: ../DistUpgrade/DistUpgradeQuirks.py:469 +#: ../DistUpgrade/DistUpgradeQuirks.py:473 msgid "The Robot Operating System (ROS) is installed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:470 +#: ../DistUpgrade/DistUpgradeQuirks.py:474 msgid "" "It appears that ROS is currently installed. Each ROS release is very strict " "about the versions of Ubuntu it supports, and Ubuntu upgrades can fail if " @@ -1238,12 +1238,12 @@ "Are you sure you want to continue?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:670 +#: ../DistUpgrade/DistUpgradeQuirks.py:674 #, fuzzy msgid "Connection to the Snap Store failed" msgstr "Помилка з'єднання з магазином Snap" -#: ../DistUpgrade/DistUpgradeQuirks.py:671 +#: ../DistUpgrade/DistUpgradeQuirks.py:675 msgid "" "You have the package lxd installed but your system is unable to reach the " "Snap Store. lxd is now provided via a snap and the release upgrade will fail " @@ -1253,11 +1253,11 @@ "may want to configure a Snap Store proxy." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:686 +#: ../DistUpgrade/DistUpgradeQuirks.py:690 msgid "Connection to Snap Store failed" msgstr "Помилка з'єднання з магазином Snap" -#: ../DistUpgrade/DistUpgradeQuirks.py:687 +#: ../DistUpgrade/DistUpgradeQuirks.py:691 msgid "" "Your system does not have a connection to the Snap Store. For the best " "upgrade experience make sure that your system can connect to api.snapcraft." @@ -1268,11 +1268,11 @@ "процедуру оновлення, переконайтеся, що система може підключитися до api." "snapcraft.io. Продовжити оновлення?" -#: ../DistUpgrade/DistUpgradeQuirks.py:696 +#: ../DistUpgrade/DistUpgradeQuirks.py:700 msgid "Outdated snapd package" msgstr "Застарілий пакунок snapd" -#: ../DistUpgrade/DistUpgradeQuirks.py:697 +#: ../DistUpgrade/DistUpgradeQuirks.py:701 msgid "" "Your system does not have the latest version of snapd. Please update the " "version of snapd on your system to improve the upgrade experience.\n" @@ -1283,36 +1283,36 @@ #. now perform direct API calls to the store, requesting size #. information for each of the snaps needing installation -#: ../DistUpgrade/DistUpgradeQuirks.py:722 +#: ../DistUpgrade/DistUpgradeQuirks.py:726 msgid "Calculating snap size requirements" msgstr "Обчислюємо вимоги щодо розміру для snap" -#: ../DistUpgrade/DistUpgradeQuirks.py:753 +#: ../DistUpgrade/DistUpgradeQuirks.py:757 msgid "Processing snap replacements" msgstr "Обробляємо замінники snap" #. TODO: This status should be updated, but the time of #. this change to snap switch is post-translation freeze. -#: ../DistUpgrade/DistUpgradeQuirks.py:761 +#: ../DistUpgrade/DistUpgradeQuirks.py:765 #, python-format msgid "refreshing snap %s" msgstr "оновлюємо snap %s" -#: ../DistUpgrade/DistUpgradeQuirks.py:765 +#: ../DistUpgrade/DistUpgradeQuirks.py:769 #, fuzzy, python-format msgid "removing snap %s" msgstr "оновлюємо snap %s" -#: ../DistUpgrade/DistUpgradeQuirks.py:768 +#: ../DistUpgrade/DistUpgradeQuirks.py:772 #, python-format msgid "installing snap %s" msgstr "встановлюємо snap %s" -#: ../DistUpgrade/DistUpgradeQuirks.py:797 +#: ../DistUpgrade/DistUpgradeQuirks.py:801 msgid "PAE not enabled" msgstr "PAE не увімкнуто" -#: ../DistUpgrade/DistUpgradeQuirks.py:798 +#: ../DistUpgrade/DistUpgradeQuirks.py:802 msgid "" "Your system uses a CPU that does not have PAE enabled. Ubuntu only supports " "non-PAE systems up to Ubuntu 12.04. To upgrade to a later version of Ubuntu, " @@ -1324,11 +1324,11 @@ "12.10. Оновлення до новішої версії Ubuntu вимагатиме вмикання PAE (якщо це " "можливо). Див.: http://help.ubuntu.com/community/EnablingPAE" -#: ../DistUpgrade/DistUpgradeQuirks.py:1094 +#: ../DistUpgrade/DistUpgradeQuirks.py:1098 msgid "universe component not enabled" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1095 +#: ../DistUpgrade/DistUpgradeQuirks.py:1099 #, python-format msgid "" "You have the package %s installed which is a python2 package. python2 has " @@ -1340,39 +1340,50 @@ "universe component in /etc/apt/sources.list or remove %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1207 +#: ../DistUpgrade/DistUpgradeQuirks.py:1211 msgid "Checking for installed snaps" msgstr "Перевірка на встановлені snap-пакунки" -#: ../DistUpgrade/DistUpgradeQuirks.py:1654 +#: ../DistUpgrade/DistUpgradeQuirks.py:1720 #, fuzzy msgid "Cannot upgrade this system" msgstr "Оновлення неможливе" -#: ../DistUpgrade/DistUpgradeQuirks.py:1655 +#: ../DistUpgrade/DistUpgradeQuirks.py:1721 msgid "" "Due to a bug in grub, this system cannot be safely upgraded at this time.\n" "\n" "See https://launchpad.net/bugs/2039172." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1721 +#: ../DistUpgrade/DistUpgradeQuirks.py:1787 #, python-brace-format msgid "Updates for Ubuntu {from_release.version} will " msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1731 +#: ../DistUpgrade/DistUpgradeQuirks.py:1797 #, fuzzy msgid "Sorry, cannot upgrade this system to 24.04 LTS" msgstr "Оновлення неможливе" -#: ../DistUpgrade/DistUpgradeQuirks.py:1734 +#: ../DistUpgrade/DistUpgradeQuirks.py:1800 msgid "" "The Raspberry Pi kernel for Ubuntu 24.04 LTS does not support the armhf " "architecture.\n" "\n" msgstr "" +#: ../DistUpgrade/DistUpgradeQuirks.py:1928 +#, fuzzy, python-brace-format +msgid "Sorry, cannot upgrade this system to {version}" +msgstr "Оновлення неможливе" + +#: ../DistUpgrade/DistUpgradeQuirks.py:1931 +msgid "" +"Upgrades for desktop systems running TPM FDE are not currently supported. " +"Please see https://launchpad.net/bugs/2065229 for more information." +msgstr "" + #: ../DistUpgrade/DistUpgradeMain.py:62 msgid "" "Use frontend. Currently available: \n" diff -Nru ubuntu-release-upgrader-24.04.17/po/ur.po ubuntu-release-upgrader-24.04.18/po/ur.po --- ubuntu-release-upgrader-24.04.17/po/ur.po 2024-04-29 14:26:40.000000000 +0000 +++ ubuntu-release-upgrader-24.04.18/po/ur.po 2024-05-09 19:39:22.000000000 +0000 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2024-04-29 16:03+0200\n" +"POT-Creation-Date: 2024-05-09 15:39-0400\n" "PO-Revision-Date: 2013-05-22 11:00+0000\n" "Last-Translator: Michael Vogt \n" "Language-Team: Urdu \n" @@ -898,11 +898,11 @@ msgid "Media Change" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:248 +#: ../DistUpgrade/DistUpgradeQuirks.py:252 msgid "Your graphics hardware may not be fully supported in Ubuntu 14.04." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:250 +#: ../DistUpgrade/DistUpgradeQuirks.py:254 msgid "" "Running the 'unity' desktop environment is not fully supported by your " "graphics hardware. You will maybe end up in a very slow environment after " @@ -912,11 +912,11 @@ "upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:274 +#: ../DistUpgrade/DistUpgradeQuirks.py:278 msgid "Your graphics hardware may not be fully supported in Ubuntu 12.04 LTS." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:276 +#: ../DistUpgrade/DistUpgradeQuirks.py:280 msgid "" "The support in Ubuntu 12.04 LTS for your Intel graphics hardware is limited " "and you may encounter problems after the upgrade. For more information see " @@ -924,13 +924,13 @@ "continue with the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:296 +#: ../DistUpgrade/DistUpgradeQuirks.py:300 msgid "" "Upgrading may reduce desktop effects, and performance in games and other " "graphically intensive programs." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:300 +#: ../DistUpgrade/DistUpgradeQuirks.py:304 msgid "" "This computer is currently using the AMD 'fglrx' graphics driver. No version " "of this driver is available that works with your hardware in Ubuntu 10.04 " @@ -939,12 +939,12 @@ "Do you want to continue?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:339 -#: ../DistUpgrade/DistUpgradeQuirks.py:408 +#: ../DistUpgrade/DistUpgradeQuirks.py:343 +#: ../DistUpgrade/DistUpgradeQuirks.py:412 msgid "Sorry, no more upgrades for this system" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:340 +#: ../DistUpgrade/DistUpgradeQuirks.py:344 #, python-format msgid "" "There will not be any further Ubuntu releases for this system's 'i386' " @@ -953,11 +953,11 @@ "Updates for Ubuntu %s will continue until %s." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:355 +#: ../DistUpgrade/DistUpgradeQuirks.py:359 msgid "No ARMv6 CPU" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:356 +#: ../DistUpgrade/DistUpgradeQuirks.py:360 msgid "" "Your system uses an ARM CPU that is older than the ARMv6 architecture. All " "packages in karmic were built with optimizations requiring ARMv6 as the " @@ -965,12 +965,12 @@ "Ubuntu release with this hardware." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:376 +#: ../DistUpgrade/DistUpgradeQuirks.py:380 msgid "" "Sorry, this storage driver is not supported in kernels for newer releases" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:378 +#: ../DistUpgrade/DistUpgradeQuirks.py:382 #, python-format msgid "" "There will not be any further Ubuntu releases that provide kernel support " @@ -980,7 +980,7 @@ "driver, remove the directory %s and try again." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:409 +#: ../DistUpgrade/DistUpgradeQuirks.py:413 #, python-format msgid "" "There will not be any further Ubuntu releases for this system's POWER8 " @@ -989,11 +989,11 @@ "Updates for Ubuntu %s will continue until %s." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:427 +#: ../DistUpgrade/DistUpgradeQuirks.py:431 msgid "No init available" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:428 +#: ../DistUpgrade/DistUpgradeQuirks.py:432 msgid "" "Your system appears to be a virtualised environment without an init daemon, " "e.g. Linux-VServer. Ubuntu 10.04 LTS cannot function within this type of " @@ -1003,11 +1003,11 @@ "Are you sure you want to continue?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:469 +#: ../DistUpgrade/DistUpgradeQuirks.py:473 msgid "The Robot Operating System (ROS) is installed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:470 +#: ../DistUpgrade/DistUpgradeQuirks.py:474 msgid "" "It appears that ROS is currently installed. Each ROS release is very strict " "about the versions of Ubuntu it supports, and Ubuntu upgrades can fail if " @@ -1024,11 +1024,11 @@ "Are you sure you want to continue?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:670 +#: ../DistUpgrade/DistUpgradeQuirks.py:674 msgid "Connection to the Snap Store failed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:671 +#: ../DistUpgrade/DistUpgradeQuirks.py:675 msgid "" "You have the package lxd installed but your system is unable to reach the " "Snap Store. lxd is now provided via a snap and the release upgrade will fail " @@ -1038,11 +1038,11 @@ "may want to configure a Snap Store proxy." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:686 +#: ../DistUpgrade/DistUpgradeQuirks.py:690 msgid "Connection to Snap Store failed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:687 +#: ../DistUpgrade/DistUpgradeQuirks.py:691 msgid "" "Your system does not have a connection to the Snap Store. For the best " "upgrade experience make sure that your system can connect to api.snapcraft." @@ -1050,11 +1050,11 @@ "Do you still want to continue with the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:696 +#: ../DistUpgrade/DistUpgradeQuirks.py:700 msgid "Outdated snapd package" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:697 +#: ../DistUpgrade/DistUpgradeQuirks.py:701 msgid "" "Your system does not have the latest version of snapd. Please update the " "version of snapd on your system to improve the upgrade experience.\n" @@ -1063,36 +1063,36 @@ #. now perform direct API calls to the store, requesting size #. information for each of the snaps needing installation -#: ../DistUpgrade/DistUpgradeQuirks.py:722 +#: ../DistUpgrade/DistUpgradeQuirks.py:726 msgid "Calculating snap size requirements" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:753 +#: ../DistUpgrade/DistUpgradeQuirks.py:757 msgid "Processing snap replacements" msgstr "" #. TODO: This status should be updated, but the time of #. this change to snap switch is post-translation freeze. -#: ../DistUpgrade/DistUpgradeQuirks.py:761 +#: ../DistUpgrade/DistUpgradeQuirks.py:765 #, python-format msgid "refreshing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:765 +#: ../DistUpgrade/DistUpgradeQuirks.py:769 #, python-format msgid "removing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:768 +#: ../DistUpgrade/DistUpgradeQuirks.py:772 #, python-format msgid "installing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:797 +#: ../DistUpgrade/DistUpgradeQuirks.py:801 msgid "PAE not enabled" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:798 +#: ../DistUpgrade/DistUpgradeQuirks.py:802 msgid "" "Your system uses a CPU that does not have PAE enabled. Ubuntu only supports " "non-PAE systems up to Ubuntu 12.04. To upgrade to a later version of Ubuntu, " @@ -1100,11 +1100,11 @@ "http://help.ubuntu.com/community/EnablingPAE" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1094 +#: ../DistUpgrade/DistUpgradeQuirks.py:1098 msgid "universe component not enabled" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1095 +#: ../DistUpgrade/DistUpgradeQuirks.py:1099 #, python-format msgid "" "You have the package %s installed which is a python2 package. python2 has " @@ -1116,37 +1116,48 @@ "universe component in /etc/apt/sources.list or remove %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1207 +#: ../DistUpgrade/DistUpgradeQuirks.py:1211 msgid "Checking for installed snaps" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1654 +#: ../DistUpgrade/DistUpgradeQuirks.py:1720 msgid "Cannot upgrade this system" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1655 +#: ../DistUpgrade/DistUpgradeQuirks.py:1721 msgid "" "Due to a bug in grub, this system cannot be safely upgraded at this time.\n" "\n" "See https://launchpad.net/bugs/2039172." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1721 +#: ../DistUpgrade/DistUpgradeQuirks.py:1787 #, python-brace-format msgid "Updates for Ubuntu {from_release.version} will " msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1731 +#: ../DistUpgrade/DistUpgradeQuirks.py:1797 msgid "Sorry, cannot upgrade this system to 24.04 LTS" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1734 +#: ../DistUpgrade/DistUpgradeQuirks.py:1800 msgid "" "The Raspberry Pi kernel for Ubuntu 24.04 LTS does not support the armhf " "architecture.\n" "\n" msgstr "" +#: ../DistUpgrade/DistUpgradeQuirks.py:1928 +#, python-brace-format +msgid "Sorry, cannot upgrade this system to {version}" +msgstr "" + +#: ../DistUpgrade/DistUpgradeQuirks.py:1931 +msgid "" +"Upgrades for desktop systems running TPM FDE are not currently supported. " +"Please see https://launchpad.net/bugs/2065229 for more information." +msgstr "" + #: ../DistUpgrade/DistUpgradeMain.py:62 msgid "" "Use frontend. Currently available: \n" diff -Nru ubuntu-release-upgrader-24.04.17/po/uz.po ubuntu-release-upgrader-24.04.18/po/uz.po --- ubuntu-release-upgrader-24.04.17/po/uz.po 2024-04-29 14:26:40.000000000 +0000 +++ ubuntu-release-upgrader-24.04.18/po/uz.po 2024-05-09 19:39:22.000000000 +0000 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2024-04-29 16:03+0200\n" +"POT-Creation-Date: 2024-05-09 15:39-0400\n" "PO-Revision-Date: 2013-05-22 15:22+0000\n" "Last-Translator: Akmal Xushvaqov \n" "Language-Team: Uzbek \n" @@ -910,11 +910,11 @@ msgid "Media Change" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:248 +#: ../DistUpgrade/DistUpgradeQuirks.py:252 msgid "Your graphics hardware may not be fully supported in Ubuntu 14.04." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:250 +#: ../DistUpgrade/DistUpgradeQuirks.py:254 msgid "" "Running the 'unity' desktop environment is not fully supported by your " "graphics hardware. You will maybe end up in a very slow environment after " @@ -924,11 +924,11 @@ "upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:274 +#: ../DistUpgrade/DistUpgradeQuirks.py:278 msgid "Your graphics hardware may not be fully supported in Ubuntu 12.04 LTS." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:276 +#: ../DistUpgrade/DistUpgradeQuirks.py:280 msgid "" "The support in Ubuntu 12.04 LTS for your Intel graphics hardware is limited " "and you may encounter problems after the upgrade. For more information see " @@ -936,13 +936,13 @@ "continue with the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:296 +#: ../DistUpgrade/DistUpgradeQuirks.py:300 msgid "" "Upgrading may reduce desktop effects, and performance in games and other " "graphically intensive programs." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:300 +#: ../DistUpgrade/DistUpgradeQuirks.py:304 msgid "" "This computer is currently using the AMD 'fglrx' graphics driver. No version " "of this driver is available that works with your hardware in Ubuntu 10.04 " @@ -951,12 +951,12 @@ "Do you want to continue?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:339 -#: ../DistUpgrade/DistUpgradeQuirks.py:408 +#: ../DistUpgrade/DistUpgradeQuirks.py:343 +#: ../DistUpgrade/DistUpgradeQuirks.py:412 msgid "Sorry, no more upgrades for this system" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:340 +#: ../DistUpgrade/DistUpgradeQuirks.py:344 #, python-format msgid "" "There will not be any further Ubuntu releases for this system's 'i386' " @@ -965,11 +965,11 @@ "Updates for Ubuntu %s will continue until %s." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:355 +#: ../DistUpgrade/DistUpgradeQuirks.py:359 msgid "No ARMv6 CPU" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:356 +#: ../DistUpgrade/DistUpgradeQuirks.py:360 msgid "" "Your system uses an ARM CPU that is older than the ARMv6 architecture. All " "packages in karmic were built with optimizations requiring ARMv6 as the " @@ -977,12 +977,12 @@ "Ubuntu release with this hardware." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:376 +#: ../DistUpgrade/DistUpgradeQuirks.py:380 msgid "" "Sorry, this storage driver is not supported in kernels for newer releases" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:378 +#: ../DistUpgrade/DistUpgradeQuirks.py:382 #, python-format msgid "" "There will not be any further Ubuntu releases that provide kernel support " @@ -992,7 +992,7 @@ "driver, remove the directory %s and try again." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:409 +#: ../DistUpgrade/DistUpgradeQuirks.py:413 #, python-format msgid "" "There will not be any further Ubuntu releases for this system's POWER8 " @@ -1001,11 +1001,11 @@ "Updates for Ubuntu %s will continue until %s." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:427 +#: ../DistUpgrade/DistUpgradeQuirks.py:431 msgid "No init available" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:428 +#: ../DistUpgrade/DistUpgradeQuirks.py:432 msgid "" "Your system appears to be a virtualised environment without an init daemon, " "e.g. Linux-VServer. Ubuntu 10.04 LTS cannot function within this type of " @@ -1015,11 +1015,11 @@ "Are you sure you want to continue?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:469 +#: ../DistUpgrade/DistUpgradeQuirks.py:473 msgid "The Robot Operating System (ROS) is installed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:470 +#: ../DistUpgrade/DistUpgradeQuirks.py:474 msgid "" "It appears that ROS is currently installed. Each ROS release is very strict " "about the versions of Ubuntu it supports, and Ubuntu upgrades can fail if " @@ -1036,11 +1036,11 @@ "Are you sure you want to continue?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:670 +#: ../DistUpgrade/DistUpgradeQuirks.py:674 msgid "Connection to the Snap Store failed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:671 +#: ../DistUpgrade/DistUpgradeQuirks.py:675 msgid "" "You have the package lxd installed but your system is unable to reach the " "Snap Store. lxd is now provided via a snap and the release upgrade will fail " @@ -1050,11 +1050,11 @@ "may want to configure a Snap Store proxy." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:686 +#: ../DistUpgrade/DistUpgradeQuirks.py:690 msgid "Connection to Snap Store failed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:687 +#: ../DistUpgrade/DistUpgradeQuirks.py:691 msgid "" "Your system does not have a connection to the Snap Store. For the best " "upgrade experience make sure that your system can connect to api.snapcraft." @@ -1062,11 +1062,11 @@ "Do you still want to continue with the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:696 +#: ../DistUpgrade/DistUpgradeQuirks.py:700 msgid "Outdated snapd package" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:697 +#: ../DistUpgrade/DistUpgradeQuirks.py:701 msgid "" "Your system does not have the latest version of snapd. Please update the " "version of snapd on your system to improve the upgrade experience.\n" @@ -1075,36 +1075,36 @@ #. now perform direct API calls to the store, requesting size #. information for each of the snaps needing installation -#: ../DistUpgrade/DistUpgradeQuirks.py:722 +#: ../DistUpgrade/DistUpgradeQuirks.py:726 msgid "Calculating snap size requirements" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:753 +#: ../DistUpgrade/DistUpgradeQuirks.py:757 msgid "Processing snap replacements" msgstr "" #. TODO: This status should be updated, but the time of #. this change to snap switch is post-translation freeze. -#: ../DistUpgrade/DistUpgradeQuirks.py:761 +#: ../DistUpgrade/DistUpgradeQuirks.py:765 #, python-format msgid "refreshing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:765 +#: ../DistUpgrade/DistUpgradeQuirks.py:769 #, python-format msgid "removing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:768 +#: ../DistUpgrade/DistUpgradeQuirks.py:772 #, python-format msgid "installing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:797 +#: ../DistUpgrade/DistUpgradeQuirks.py:801 msgid "PAE not enabled" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:798 +#: ../DistUpgrade/DistUpgradeQuirks.py:802 msgid "" "Your system uses a CPU that does not have PAE enabled. Ubuntu only supports " "non-PAE systems up to Ubuntu 12.04. To upgrade to a later version of Ubuntu, " @@ -1112,11 +1112,11 @@ "http://help.ubuntu.com/community/EnablingPAE" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1094 +#: ../DistUpgrade/DistUpgradeQuirks.py:1098 msgid "universe component not enabled" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1095 +#: ../DistUpgrade/DistUpgradeQuirks.py:1099 #, python-format msgid "" "You have the package %s installed which is a python2 package. python2 has " @@ -1128,37 +1128,48 @@ "universe component in /etc/apt/sources.list or remove %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1207 +#: ../DistUpgrade/DistUpgradeQuirks.py:1211 msgid "Checking for installed snaps" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1654 +#: ../DistUpgrade/DistUpgradeQuirks.py:1720 msgid "Cannot upgrade this system" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1655 +#: ../DistUpgrade/DistUpgradeQuirks.py:1721 msgid "" "Due to a bug in grub, this system cannot be safely upgraded at this time.\n" "\n" "See https://launchpad.net/bugs/2039172." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1721 +#: ../DistUpgrade/DistUpgradeQuirks.py:1787 #, python-brace-format msgid "Updates for Ubuntu {from_release.version} will " msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1731 +#: ../DistUpgrade/DistUpgradeQuirks.py:1797 msgid "Sorry, cannot upgrade this system to 24.04 LTS" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1734 +#: ../DistUpgrade/DistUpgradeQuirks.py:1800 msgid "" "The Raspberry Pi kernel for Ubuntu 24.04 LTS does not support the armhf " "architecture.\n" "\n" msgstr "" +#: ../DistUpgrade/DistUpgradeQuirks.py:1928 +#, python-brace-format +msgid "Sorry, cannot upgrade this system to {version}" +msgstr "" + +#: ../DistUpgrade/DistUpgradeQuirks.py:1931 +msgid "" +"Upgrades for desktop systems running TPM FDE are not currently supported. " +"Please see https://launchpad.net/bugs/2065229 for more information." +msgstr "" + #: ../DistUpgrade/DistUpgradeMain.py:62 msgid "" "Use frontend. Currently available: \n" diff -Nru ubuntu-release-upgrader-24.04.17/po/vi.po ubuntu-release-upgrader-24.04.18/po/vi.po --- ubuntu-release-upgrader-24.04.17/po/vi.po 2024-04-29 14:26:40.000000000 +0000 +++ ubuntu-release-upgrader-24.04.18/po/vi.po 2024-05-09 19:39:22.000000000 +0000 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: update-manager Gnome HEAD\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2024-04-29 16:03+0200\n" +"POT-Creation-Date: 2024-05-09 15:39-0400\n" "PO-Revision-Date: 2013-05-23 02:39+0000\n" "Last-Translator: Hai Lang \n" "Language-Team: Vietnamese \n" @@ -974,11 +974,11 @@ msgid "Media Change" msgstr "Đổi đĩa" -#: ../DistUpgrade/DistUpgradeQuirks.py:248 +#: ../DistUpgrade/DistUpgradeQuirks.py:252 msgid "Your graphics hardware may not be fully supported in Ubuntu 14.04." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:250 +#: ../DistUpgrade/DistUpgradeQuirks.py:254 msgid "" "Running the 'unity' desktop environment is not fully supported by your " "graphics hardware. You will maybe end up in a very slow environment after " @@ -993,13 +993,13 @@ "bản Hỗ trợ dài hạn (LTS). Thông tin chi tiết xem tại https://wiki.ubuntu.com/" "X/Bugs/UpdateManagerWarningForUnity3D Bạn còn muốn tiếp tục nâng cấp không?" -#: ../DistUpgrade/DistUpgradeQuirks.py:274 +#: ../DistUpgrade/DistUpgradeQuirks.py:278 msgid "Your graphics hardware may not be fully supported in Ubuntu 12.04 LTS." msgstr "" "Phần cứng đồ họa của bạn có thể không được hỗ trợ đầy đủ trong Ubuntu 12.04 " "LTS." -#: ../DistUpgrade/DistUpgradeQuirks.py:276 +#: ../DistUpgrade/DistUpgradeQuirks.py:280 msgid "" "The support in Ubuntu 12.04 LTS for your Intel graphics hardware is limited " "and you may encounter problems after the upgrade. For more information see " @@ -1011,7 +1011,7 @@ "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForI8xx . Bạn có muốn " "tiếp tục nâng cấp không?" -#: ../DistUpgrade/DistUpgradeQuirks.py:296 +#: ../DistUpgrade/DistUpgradeQuirks.py:300 msgid "" "Upgrading may reduce desktop effects, and performance in games and other " "graphically intensive programs." @@ -1019,7 +1019,7 @@ "Quá trình nâng cấp có thể làm giảm hiệu ứng đồ họa, hiệu năng các trò chơi " "và các chương trình khác yêu cầu đồ họa cao." -#: ../DistUpgrade/DistUpgradeQuirks.py:300 +#: ../DistUpgrade/DistUpgradeQuirks.py:304 msgid "" "This computer is currently using the AMD 'fglrx' graphics driver. No version " "of this driver is available that works with your hardware in Ubuntu 10.04 " @@ -1033,12 +1033,12 @@ "\n" "Bạn có muốn tiếp tục?" -#: ../DistUpgrade/DistUpgradeQuirks.py:339 -#: ../DistUpgrade/DistUpgradeQuirks.py:408 +#: ../DistUpgrade/DistUpgradeQuirks.py:343 +#: ../DistUpgrade/DistUpgradeQuirks.py:412 msgid "Sorry, no more upgrades for this system" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:340 +#: ../DistUpgrade/DistUpgradeQuirks.py:344 #, python-format msgid "" "There will not be any further Ubuntu releases for this system's 'i386' " @@ -1047,11 +1047,11 @@ "Updates for Ubuntu %s will continue until %s." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:355 +#: ../DistUpgrade/DistUpgradeQuirks.py:359 msgid "No ARMv6 CPU" msgstr "Không có ARMv6 CPU" -#: ../DistUpgrade/DistUpgradeQuirks.py:356 +#: ../DistUpgrade/DistUpgradeQuirks.py:360 msgid "" "Your system uses an ARM CPU that is older than the ARMv6 architecture. All " "packages in karmic were built with optimizations requiring ARMv6 as the " @@ -1063,12 +1063,12 @@ "thiểu. Không thể để nâng cấp hệ thống của bạn với một bản phát hành Ubuntu " "mới với phần cứng này." -#: ../DistUpgrade/DistUpgradeQuirks.py:376 +#: ../DistUpgrade/DistUpgradeQuirks.py:380 msgid "" "Sorry, this storage driver is not supported in kernels for newer releases" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:378 +#: ../DistUpgrade/DistUpgradeQuirks.py:382 #, python-format msgid "" "There will not be any further Ubuntu releases that provide kernel support " @@ -1078,7 +1078,7 @@ "driver, remove the directory %s and try again." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:409 +#: ../DistUpgrade/DistUpgradeQuirks.py:413 #, python-format msgid "" "There will not be any further Ubuntu releases for this system's POWER8 " @@ -1087,11 +1087,11 @@ "Updates for Ubuntu %s will continue until %s." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:427 +#: ../DistUpgrade/DistUpgradeQuirks.py:431 msgid "No init available" msgstr "Không init nào có sẵn" -#: ../DistUpgrade/DistUpgradeQuirks.py:428 +#: ../DistUpgrade/DistUpgradeQuirks.py:432 msgid "" "Your system appears to be a virtualised environment without an init daemon, " "e.g. Linux-VServer. Ubuntu 10.04 LTS cannot function within this type of " @@ -1107,11 +1107,11 @@ "\n" "Bạn có chắc chắn muốn tiếp tục không?" -#: ../DistUpgrade/DistUpgradeQuirks.py:469 +#: ../DistUpgrade/DistUpgradeQuirks.py:473 msgid "The Robot Operating System (ROS) is installed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:470 +#: ../DistUpgrade/DistUpgradeQuirks.py:474 msgid "" "It appears that ROS is currently installed. Each ROS release is very strict " "about the versions of Ubuntu it supports, and Ubuntu upgrades can fail if " @@ -1128,11 +1128,11 @@ "Are you sure you want to continue?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:670 +#: ../DistUpgrade/DistUpgradeQuirks.py:674 msgid "Connection to the Snap Store failed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:671 +#: ../DistUpgrade/DistUpgradeQuirks.py:675 msgid "" "You have the package lxd installed but your system is unable to reach the " "Snap Store. lxd is now provided via a snap and the release upgrade will fail " @@ -1142,11 +1142,11 @@ "may want to configure a Snap Store proxy." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:686 +#: ../DistUpgrade/DistUpgradeQuirks.py:690 msgid "Connection to Snap Store failed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:687 +#: ../DistUpgrade/DistUpgradeQuirks.py:691 msgid "" "Your system does not have a connection to the Snap Store. For the best " "upgrade experience make sure that your system can connect to api.snapcraft." @@ -1154,11 +1154,11 @@ "Do you still want to continue with the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:696 +#: ../DistUpgrade/DistUpgradeQuirks.py:700 msgid "Outdated snapd package" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:697 +#: ../DistUpgrade/DistUpgradeQuirks.py:701 msgid "" "Your system does not have the latest version of snapd. Please update the " "version of snapd on your system to improve the upgrade experience.\n" @@ -1167,36 +1167,36 @@ #. now perform direct API calls to the store, requesting size #. information for each of the snaps needing installation -#: ../DistUpgrade/DistUpgradeQuirks.py:722 +#: ../DistUpgrade/DistUpgradeQuirks.py:726 msgid "Calculating snap size requirements" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:753 +#: ../DistUpgrade/DistUpgradeQuirks.py:757 msgid "Processing snap replacements" msgstr "" #. TODO: This status should be updated, but the time of #. this change to snap switch is post-translation freeze. -#: ../DistUpgrade/DistUpgradeQuirks.py:761 +#: ../DistUpgrade/DistUpgradeQuirks.py:765 #, python-format msgid "refreshing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:765 +#: ../DistUpgrade/DistUpgradeQuirks.py:769 #, python-format msgid "removing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:768 +#: ../DistUpgrade/DistUpgradeQuirks.py:772 #, python-format msgid "installing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:797 +#: ../DistUpgrade/DistUpgradeQuirks.py:801 msgid "PAE not enabled" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:798 +#: ../DistUpgrade/DistUpgradeQuirks.py:802 msgid "" "Your system uses a CPU that does not have PAE enabled. Ubuntu only supports " "non-PAE systems up to Ubuntu 12.04. To upgrade to a later version of Ubuntu, " @@ -1204,11 +1204,11 @@ "http://help.ubuntu.com/community/EnablingPAE" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1094 +#: ../DistUpgrade/DistUpgradeQuirks.py:1098 msgid "universe component not enabled" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1095 +#: ../DistUpgrade/DistUpgradeQuirks.py:1099 #, python-format msgid "" "You have the package %s installed which is a python2 package. python2 has " @@ -1220,39 +1220,50 @@ "universe component in /etc/apt/sources.list or remove %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1207 +#: ../DistUpgrade/DistUpgradeQuirks.py:1211 msgid "Checking for installed snaps" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1654 +#: ../DistUpgrade/DistUpgradeQuirks.py:1720 #, fuzzy msgid "Cannot upgrade this system" msgstr "Không thể nâng cấp" -#: ../DistUpgrade/DistUpgradeQuirks.py:1655 +#: ../DistUpgrade/DistUpgradeQuirks.py:1721 msgid "" "Due to a bug in grub, this system cannot be safely upgraded at this time.\n" "\n" "See https://launchpad.net/bugs/2039172." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1721 +#: ../DistUpgrade/DistUpgradeQuirks.py:1787 #, python-brace-format msgid "Updates for Ubuntu {from_release.version} will " msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1731 +#: ../DistUpgrade/DistUpgradeQuirks.py:1797 #, fuzzy msgid "Sorry, cannot upgrade this system to 24.04 LTS" msgstr "Không thể nâng cấp" -#: ../DistUpgrade/DistUpgradeQuirks.py:1734 +#: ../DistUpgrade/DistUpgradeQuirks.py:1800 msgid "" "The Raspberry Pi kernel for Ubuntu 24.04 LTS does not support the armhf " "architecture.\n" "\n" msgstr "" +#: ../DistUpgrade/DistUpgradeQuirks.py:1928 +#, fuzzy, python-brace-format +msgid "Sorry, cannot upgrade this system to {version}" +msgstr "Không thể nâng cấp" + +#: ../DistUpgrade/DistUpgradeQuirks.py:1931 +msgid "" +"Upgrades for desktop systems running TPM FDE are not currently supported. " +"Please see https://launchpad.net/bugs/2065229 for more information." +msgstr "" + #: ../DistUpgrade/DistUpgradeMain.py:62 msgid "" "Use frontend. Currently available: \n" diff -Nru ubuntu-release-upgrader-24.04.17/po/xh.po ubuntu-release-upgrader-24.04.18/po/xh.po --- ubuntu-release-upgrader-24.04.17/po/xh.po 2024-04-29 14:26:40.000000000 +0000 +++ ubuntu-release-upgrader-24.04.18/po/xh.po 2024-05-09 19:39:22.000000000 +0000 @@ -9,7 +9,7 @@ msgstr "" "Project-Id-Version: update-notifier\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2024-04-29 16:03+0200\n" +"POT-Creation-Date: 2024-05-09 15:39-0400\n" "PO-Revision-Date: 2013-05-22 11:00+0000\n" "Last-Translator: Michael Terry \n" "Language-Team: Xhosa \n" @@ -898,11 +898,11 @@ msgid "Media Change" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:248 +#: ../DistUpgrade/DistUpgradeQuirks.py:252 msgid "Your graphics hardware may not be fully supported in Ubuntu 14.04." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:250 +#: ../DistUpgrade/DistUpgradeQuirks.py:254 msgid "" "Running the 'unity' desktop environment is not fully supported by your " "graphics hardware. You will maybe end up in a very slow environment after " @@ -912,11 +912,11 @@ "upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:274 +#: ../DistUpgrade/DistUpgradeQuirks.py:278 msgid "Your graphics hardware may not be fully supported in Ubuntu 12.04 LTS." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:276 +#: ../DistUpgrade/DistUpgradeQuirks.py:280 msgid "" "The support in Ubuntu 12.04 LTS for your Intel graphics hardware is limited " "and you may encounter problems after the upgrade. For more information see " @@ -924,13 +924,13 @@ "continue with the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:296 +#: ../DistUpgrade/DistUpgradeQuirks.py:300 msgid "" "Upgrading may reduce desktop effects, and performance in games and other " "graphically intensive programs." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:300 +#: ../DistUpgrade/DistUpgradeQuirks.py:304 msgid "" "This computer is currently using the AMD 'fglrx' graphics driver. No version " "of this driver is available that works with your hardware in Ubuntu 10.04 " @@ -939,12 +939,12 @@ "Do you want to continue?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:339 -#: ../DistUpgrade/DistUpgradeQuirks.py:408 +#: ../DistUpgrade/DistUpgradeQuirks.py:343 +#: ../DistUpgrade/DistUpgradeQuirks.py:412 msgid "Sorry, no more upgrades for this system" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:340 +#: ../DistUpgrade/DistUpgradeQuirks.py:344 #, python-format msgid "" "There will not be any further Ubuntu releases for this system's 'i386' " @@ -953,11 +953,11 @@ "Updates for Ubuntu %s will continue until %s." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:355 +#: ../DistUpgrade/DistUpgradeQuirks.py:359 msgid "No ARMv6 CPU" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:356 +#: ../DistUpgrade/DistUpgradeQuirks.py:360 msgid "" "Your system uses an ARM CPU that is older than the ARMv6 architecture. All " "packages in karmic were built with optimizations requiring ARMv6 as the " @@ -965,12 +965,12 @@ "Ubuntu release with this hardware." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:376 +#: ../DistUpgrade/DistUpgradeQuirks.py:380 msgid "" "Sorry, this storage driver is not supported in kernels for newer releases" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:378 +#: ../DistUpgrade/DistUpgradeQuirks.py:382 #, python-format msgid "" "There will not be any further Ubuntu releases that provide kernel support " @@ -980,7 +980,7 @@ "driver, remove the directory %s and try again." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:409 +#: ../DistUpgrade/DistUpgradeQuirks.py:413 #, python-format msgid "" "There will not be any further Ubuntu releases for this system's POWER8 " @@ -989,11 +989,11 @@ "Updates for Ubuntu %s will continue until %s." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:427 +#: ../DistUpgrade/DistUpgradeQuirks.py:431 msgid "No init available" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:428 +#: ../DistUpgrade/DistUpgradeQuirks.py:432 msgid "" "Your system appears to be a virtualised environment without an init daemon, " "e.g. Linux-VServer. Ubuntu 10.04 LTS cannot function within this type of " @@ -1003,11 +1003,11 @@ "Are you sure you want to continue?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:469 +#: ../DistUpgrade/DistUpgradeQuirks.py:473 msgid "The Robot Operating System (ROS) is installed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:470 +#: ../DistUpgrade/DistUpgradeQuirks.py:474 msgid "" "It appears that ROS is currently installed. Each ROS release is very strict " "about the versions of Ubuntu it supports, and Ubuntu upgrades can fail if " @@ -1024,11 +1024,11 @@ "Are you sure you want to continue?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:670 +#: ../DistUpgrade/DistUpgradeQuirks.py:674 msgid "Connection to the Snap Store failed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:671 +#: ../DistUpgrade/DistUpgradeQuirks.py:675 msgid "" "You have the package lxd installed but your system is unable to reach the " "Snap Store. lxd is now provided via a snap and the release upgrade will fail " @@ -1038,11 +1038,11 @@ "may want to configure a Snap Store proxy." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:686 +#: ../DistUpgrade/DistUpgradeQuirks.py:690 msgid "Connection to Snap Store failed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:687 +#: ../DistUpgrade/DistUpgradeQuirks.py:691 msgid "" "Your system does not have a connection to the Snap Store. For the best " "upgrade experience make sure that your system can connect to api.snapcraft." @@ -1050,11 +1050,11 @@ "Do you still want to continue with the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:696 +#: ../DistUpgrade/DistUpgradeQuirks.py:700 msgid "Outdated snapd package" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:697 +#: ../DistUpgrade/DistUpgradeQuirks.py:701 msgid "" "Your system does not have the latest version of snapd. Please update the " "version of snapd on your system to improve the upgrade experience.\n" @@ -1063,36 +1063,36 @@ #. now perform direct API calls to the store, requesting size #. information for each of the snaps needing installation -#: ../DistUpgrade/DistUpgradeQuirks.py:722 +#: ../DistUpgrade/DistUpgradeQuirks.py:726 msgid "Calculating snap size requirements" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:753 +#: ../DistUpgrade/DistUpgradeQuirks.py:757 msgid "Processing snap replacements" msgstr "" #. TODO: This status should be updated, but the time of #. this change to snap switch is post-translation freeze. -#: ../DistUpgrade/DistUpgradeQuirks.py:761 +#: ../DistUpgrade/DistUpgradeQuirks.py:765 #, python-format msgid "refreshing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:765 +#: ../DistUpgrade/DistUpgradeQuirks.py:769 #, python-format msgid "removing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:768 +#: ../DistUpgrade/DistUpgradeQuirks.py:772 #, python-format msgid "installing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:797 +#: ../DistUpgrade/DistUpgradeQuirks.py:801 msgid "PAE not enabled" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:798 +#: ../DistUpgrade/DistUpgradeQuirks.py:802 msgid "" "Your system uses a CPU that does not have PAE enabled. Ubuntu only supports " "non-PAE systems up to Ubuntu 12.04. To upgrade to a later version of Ubuntu, " @@ -1100,11 +1100,11 @@ "http://help.ubuntu.com/community/EnablingPAE" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1094 +#: ../DistUpgrade/DistUpgradeQuirks.py:1098 msgid "universe component not enabled" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1095 +#: ../DistUpgrade/DistUpgradeQuirks.py:1099 #, python-format msgid "" "You have the package %s installed which is a python2 package. python2 has " @@ -1116,37 +1116,48 @@ "universe component in /etc/apt/sources.list or remove %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1207 +#: ../DistUpgrade/DistUpgradeQuirks.py:1211 msgid "Checking for installed snaps" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1654 +#: ../DistUpgrade/DistUpgradeQuirks.py:1720 msgid "Cannot upgrade this system" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1655 +#: ../DistUpgrade/DistUpgradeQuirks.py:1721 msgid "" "Due to a bug in grub, this system cannot be safely upgraded at this time.\n" "\n" "See https://launchpad.net/bugs/2039172." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1721 +#: ../DistUpgrade/DistUpgradeQuirks.py:1787 #, python-brace-format msgid "Updates for Ubuntu {from_release.version} will " msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1731 +#: ../DistUpgrade/DistUpgradeQuirks.py:1797 msgid "Sorry, cannot upgrade this system to 24.04 LTS" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1734 +#: ../DistUpgrade/DistUpgradeQuirks.py:1800 msgid "" "The Raspberry Pi kernel for Ubuntu 24.04 LTS does not support the armhf " "architecture.\n" "\n" msgstr "" +#: ../DistUpgrade/DistUpgradeQuirks.py:1928 +#, python-brace-format +msgid "Sorry, cannot upgrade this system to {version}" +msgstr "" + +#: ../DistUpgrade/DistUpgradeQuirks.py:1931 +msgid "" +"Upgrades for desktop systems running TPM FDE are not currently supported. " +"Please see https://launchpad.net/bugs/2065229 for more information." +msgstr "" + #: ../DistUpgrade/DistUpgradeMain.py:62 msgid "" "Use frontend. Currently available: \n" diff -Nru ubuntu-release-upgrader-24.04.17/po/zh_CN.po ubuntu-release-upgrader-24.04.18/po/zh_CN.po --- ubuntu-release-upgrader-24.04.17/po/zh_CN.po 2024-04-29 14:26:40.000000000 +0000 +++ ubuntu-release-upgrader-24.04.18/po/zh_CN.po 2024-05-09 19:39:23.000000000 +0000 @@ -10,7 +10,7 @@ msgstr "" "Project-Id-Version: update-manager HEAD\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2024-04-29 16:03+0200\n" +"POT-Creation-Date: 2024-05-09 15:39-0400\n" "PO-Revision-Date: 2019-10-26 18:45+0000\n" "Last-Translator: Xu Zhen \n" "Language-Team: Chinese (simplified) \n" @@ -976,11 +976,11 @@ msgid "Media Change" msgstr "改变介质" -#: ../DistUpgrade/DistUpgradeQuirks.py:248 +#: ../DistUpgrade/DistUpgradeQuirks.py:252 msgid "Your graphics hardware may not be fully supported in Ubuntu 14.04." msgstr "您的图形硬件可能无法在 Ubuntu 14.04 上完全支持。" -#: ../DistUpgrade/DistUpgradeQuirks.py:250 +#: ../DistUpgrade/DistUpgradeQuirks.py:254 msgid "" "Running the 'unity' desktop environment is not fully supported by your " "graphics hardware. You will maybe end up in a very slow environment after " @@ -993,11 +993,11 @@ "境。我们建议暂时保持 LTS 版本。要获取更多信息,请访问 https://wiki.ubuntu." "com/X/Bugs/UpdateManagerWarningForUnity3D 您是否要继续升级?" -#: ../DistUpgrade/DistUpgradeQuirks.py:274 +#: ../DistUpgrade/DistUpgradeQuirks.py:278 msgid "Your graphics hardware may not be fully supported in Ubuntu 12.04 LTS." msgstr "Ubuntu 12.04 LTS 可能无法完全支持您的显卡。" -#: ../DistUpgrade/DistUpgradeQuirks.py:276 +#: ../DistUpgrade/DistUpgradeQuirks.py:280 msgid "" "The support in Ubuntu 12.04 LTS for your Intel graphics hardware is limited " "and you may encounter problems after the upgrade. For more information see " @@ -1008,13 +1008,13 @@ "信息,请查看 https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForI8xx 。仍" "然想要继续升级吗?" -#: ../DistUpgrade/DistUpgradeQuirks.py:296 +#: ../DistUpgrade/DistUpgradeQuirks.py:300 msgid "" "Upgrading may reduce desktop effects, and performance in games and other " "graphically intensive programs." msgstr "升级过程可能会降低桌面特效,游戏性能以及对显示要求高的程序。" -#: ../DistUpgrade/DistUpgradeQuirks.py:300 +#: ../DistUpgrade/DistUpgradeQuirks.py:304 msgid "" "This computer is currently using the AMD 'fglrx' graphics driver. No version " "of this driver is available that works with your hardware in Ubuntu 10.04 " @@ -1027,12 +1027,12 @@ "\n" "您想继续吗?" -#: ../DistUpgrade/DistUpgradeQuirks.py:339 -#: ../DistUpgrade/DistUpgradeQuirks.py:408 +#: ../DistUpgrade/DistUpgradeQuirks.py:343 +#: ../DistUpgrade/DistUpgradeQuirks.py:412 msgid "Sorry, no more upgrades for this system" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:340 +#: ../DistUpgrade/DistUpgradeQuirks.py:344 #, python-format msgid "" "There will not be any further Ubuntu releases for this system's 'i386' " @@ -1041,11 +1041,11 @@ "Updates for Ubuntu %s will continue until %s." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:355 +#: ../DistUpgrade/DistUpgradeQuirks.py:359 msgid "No ARMv6 CPU" msgstr "没有 ARMv6 CPU" -#: ../DistUpgrade/DistUpgradeQuirks.py:356 +#: ../DistUpgrade/DistUpgradeQuirks.py:360 msgid "" "Your system uses an ARM CPU that is older than the ARMv6 architecture. All " "packages in karmic were built with optimizations requiring ARMv6 as the " @@ -1056,12 +1056,12 @@ "化都需要至少 ARMv6 的 CPU 架构。在这种硬件基础上无法将您的系统升级到一个新的 " "Ubuntu 发行版。" -#: ../DistUpgrade/DistUpgradeQuirks.py:376 +#: ../DistUpgrade/DistUpgradeQuirks.py:380 msgid "" "Sorry, this storage driver is not supported in kernels for newer releases" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:378 +#: ../DistUpgrade/DistUpgradeQuirks.py:382 #, python-format msgid "" "There will not be any further Ubuntu releases that provide kernel support " @@ -1071,7 +1071,7 @@ "driver, remove the directory %s and try again." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:409 +#: ../DistUpgrade/DistUpgradeQuirks.py:413 #, python-format msgid "" "There will not be any further Ubuntu releases for this system's POWER8 " @@ -1080,11 +1080,11 @@ "Updates for Ubuntu %s will continue until %s." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:427 +#: ../DistUpgrade/DistUpgradeQuirks.py:431 msgid "No init available" msgstr "无可用的 init" -#: ../DistUpgrade/DistUpgradeQuirks.py:428 +#: ../DistUpgrade/DistUpgradeQuirks.py:432 msgid "" "Your system appears to be a virtualised environment without an init daemon, " "e.g. Linux-VServer. Ubuntu 10.04 LTS cannot function within this type of " @@ -1098,11 +1098,11 @@ "\n" "您确定要继续吗?" -#: ../DistUpgrade/DistUpgradeQuirks.py:469 +#: ../DistUpgrade/DistUpgradeQuirks.py:473 msgid "The Robot Operating System (ROS) is installed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:470 +#: ../DistUpgrade/DistUpgradeQuirks.py:474 msgid "" "It appears that ROS is currently installed. Each ROS release is very strict " "about the versions of Ubuntu it supports, and Ubuntu upgrades can fail if " @@ -1119,12 +1119,12 @@ "Are you sure you want to continue?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:670 +#: ../DistUpgrade/DistUpgradeQuirks.py:674 #, fuzzy msgid "Connection to the Snap Store failed" msgstr "与 Snap Store 的连接失败" -#: ../DistUpgrade/DistUpgradeQuirks.py:671 +#: ../DistUpgrade/DistUpgradeQuirks.py:675 msgid "" "You have the package lxd installed but your system is unable to reach the " "Snap Store. lxd is now provided via a snap and the release upgrade will fail " @@ -1134,11 +1134,11 @@ "may want to configure a Snap Store proxy." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:686 +#: ../DistUpgrade/DistUpgradeQuirks.py:690 msgid "Connection to Snap Store failed" msgstr "与 Snap Store 的连接失败" -#: ../DistUpgrade/DistUpgradeQuirks.py:687 +#: ../DistUpgrade/DistUpgradeQuirks.py:691 msgid "" "Your system does not have a connection to the Snap Store. For the best " "upgrade experience make sure that your system can connect to api.snapcraft." @@ -1149,11 +1149,11 @@ "接 api.snapcraft.io。\n" "你还想继续升级吗?" -#: ../DistUpgrade/DistUpgradeQuirks.py:696 +#: ../DistUpgrade/DistUpgradeQuirks.py:700 msgid "Outdated snapd package" msgstr "过时的 snapd 软件包" -#: ../DistUpgrade/DistUpgradeQuirks.py:697 +#: ../DistUpgrade/DistUpgradeQuirks.py:701 msgid "" "Your system does not have the latest version of snapd. Please update the " "version of snapd on your system to improve the upgrade experience.\n" @@ -1162,36 +1162,36 @@ #. now perform direct API calls to the store, requesting size #. information for each of the snaps needing installation -#: ../DistUpgrade/DistUpgradeQuirks.py:722 +#: ../DistUpgrade/DistUpgradeQuirks.py:726 msgid "Calculating snap size requirements" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:753 +#: ../DistUpgrade/DistUpgradeQuirks.py:757 msgid "Processing snap replacements" msgstr "" #. TODO: This status should be updated, but the time of #. this change to snap switch is post-translation freeze. -#: ../DistUpgrade/DistUpgradeQuirks.py:761 +#: ../DistUpgrade/DistUpgradeQuirks.py:765 #, python-format msgid "refreshing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:765 +#: ../DistUpgrade/DistUpgradeQuirks.py:769 #, python-format msgid "removing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:768 +#: ../DistUpgrade/DistUpgradeQuirks.py:772 #, python-format msgid "installing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:797 +#: ../DistUpgrade/DistUpgradeQuirks.py:801 msgid "PAE not enabled" msgstr "未启用 PAE 功能" -#: ../DistUpgrade/DistUpgradeQuirks.py:798 +#: ../DistUpgrade/DistUpgradeQuirks.py:802 msgid "" "Your system uses a CPU that does not have PAE enabled. Ubuntu only supports " "non-PAE systems up to Ubuntu 12.04. To upgrade to a later version of Ubuntu, " @@ -1202,11 +1202,11 @@ "能到 12.04 版。如果想升级到更高版本的 Ubuntu,您必须启用 PAE 功能(在可能的前" "提下)。请常见:http://help.ubuntu.com/community/EnablingPAE" -#: ../DistUpgrade/DistUpgradeQuirks.py:1094 +#: ../DistUpgrade/DistUpgradeQuirks.py:1098 msgid "universe component not enabled" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1095 +#: ../DistUpgrade/DistUpgradeQuirks.py:1099 #, python-format msgid "" "You have the package %s installed which is a python2 package. python2 has " @@ -1218,39 +1218,50 @@ "universe component in /etc/apt/sources.list or remove %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1207 +#: ../DistUpgrade/DistUpgradeQuirks.py:1211 msgid "Checking for installed snaps" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1654 +#: ../DistUpgrade/DistUpgradeQuirks.py:1720 #, fuzzy msgid "Cannot upgrade this system" msgstr "无法升级" -#: ../DistUpgrade/DistUpgradeQuirks.py:1655 +#: ../DistUpgrade/DistUpgradeQuirks.py:1721 msgid "" "Due to a bug in grub, this system cannot be safely upgraded at this time.\n" "\n" "See https://launchpad.net/bugs/2039172." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1721 +#: ../DistUpgrade/DistUpgradeQuirks.py:1787 #, python-brace-format msgid "Updates for Ubuntu {from_release.version} will " msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1731 +#: ../DistUpgrade/DistUpgradeQuirks.py:1797 #, fuzzy msgid "Sorry, cannot upgrade this system to 24.04 LTS" msgstr "无法升级" -#: ../DistUpgrade/DistUpgradeQuirks.py:1734 +#: ../DistUpgrade/DistUpgradeQuirks.py:1800 msgid "" "The Raspberry Pi kernel for Ubuntu 24.04 LTS does not support the armhf " "architecture.\n" "\n" msgstr "" +#: ../DistUpgrade/DistUpgradeQuirks.py:1928 +#, fuzzy, python-brace-format +msgid "Sorry, cannot upgrade this system to {version}" +msgstr "无法升级" + +#: ../DistUpgrade/DistUpgradeQuirks.py:1931 +msgid "" +"Upgrades for desktop systems running TPM FDE are not currently supported. " +"Please see https://launchpad.net/bugs/2065229 for more information." +msgstr "" + #: ../DistUpgrade/DistUpgradeMain.py:62 msgid "" "Use frontend. Currently available: \n" diff -Nru ubuntu-release-upgrader-24.04.17/po/zh_HK.po ubuntu-release-upgrader-24.04.18/po/zh_HK.po --- ubuntu-release-upgrader-24.04.17/po/zh_HK.po 2024-04-29 14:26:40.000000000 +0000 +++ ubuntu-release-upgrader-24.04.18/po/zh_HK.po 2024-05-09 19:39:23.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: update-manager 0.41.1\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2024-04-29 16:03+0200\n" +"POT-Creation-Date: 2024-05-09 15:39-0400\n" "PO-Revision-Date: 2019-06-18 17:55+0000\n" "Last-Translator: Walter Cheuk \n" "Language-Team: Chinese (Hong Kong) \n" @@ -948,11 +948,11 @@ msgid "Media Change" msgstr "媒體變更" -#: ../DistUpgrade/DistUpgradeQuirks.py:248 +#: ../DistUpgrade/DistUpgradeQuirks.py:252 msgid "Your graphics hardware may not be fully supported in Ubuntu 14.04." msgstr "Ubuntu 14.04 未必能完全支援你的圖像硬件。" -#: ../DistUpgrade/DistUpgradeQuirks.py:250 +#: ../DistUpgrade/DistUpgradeQuirks.py:254 msgid "" "Running the 'unity' desktop environment is not fully supported by your " "graphics hardware. You will maybe end up in a very slow environment after " @@ -966,11 +966,11 @@ "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForUnity3D 。你仍想要繼續" "升級嗎?" -#: ../DistUpgrade/DistUpgradeQuirks.py:274 +#: ../DistUpgrade/DistUpgradeQuirks.py:278 msgid "Your graphics hardware may not be fully supported in Ubuntu 12.04 LTS." msgstr "Ubuntu 12.04 LTS 未必能完全支援你的圖像卡硬件。" -#: ../DistUpgrade/DistUpgradeQuirks.py:276 +#: ../DistUpgrade/DistUpgradeQuirks.py:280 msgid "" "The support in Ubuntu 12.04 LTS for your Intel graphics hardware is limited " "and you may encounter problems after the upgrade. For more information see " @@ -981,13 +981,13 @@ "題。更多資訊可以查看 https://wiki.ubuntu.com/X/Bugs/" "UpdateManagerWarningForI8xx 。你仍想要繼續升級嗎?" -#: ../DistUpgrade/DistUpgradeQuirks.py:296 +#: ../DistUpgrade/DistUpgradeQuirks.py:300 msgid "" "Upgrading may reduce desktop effects, and performance in games and other " "graphically intensive programs." msgstr "升級可能減低桌面特效和遊戲及其他著重圖形程式的表現。" -#: ../DistUpgrade/DistUpgradeQuirks.py:300 +#: ../DistUpgrade/DistUpgradeQuirks.py:304 msgid "" "This computer is currently using the AMD 'fglrx' graphics driver. No version " "of this driver is available that works with your hardware in Ubuntu 10.04 " @@ -1000,12 +1000,12 @@ "\n" "是否要繼續?" -#: ../DistUpgrade/DistUpgradeQuirks.py:339 -#: ../DistUpgrade/DistUpgradeQuirks.py:408 +#: ../DistUpgrade/DistUpgradeQuirks.py:343 +#: ../DistUpgrade/DistUpgradeQuirks.py:412 msgid "Sorry, no more upgrades for this system" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:340 +#: ../DistUpgrade/DistUpgradeQuirks.py:344 #, python-format msgid "" "There will not be any further Ubuntu releases for this system's 'i386' " @@ -1017,11 +1017,11 @@ "\n" "Ubuntu %s 版的更新會繼續提供,直至 %s。" -#: ../DistUpgrade/DistUpgradeQuirks.py:355 +#: ../DistUpgrade/DistUpgradeQuirks.py:359 msgid "No ARMv6 CPU" msgstr "非 ARMv6 處理器" -#: ../DistUpgrade/DistUpgradeQuirks.py:356 +#: ../DistUpgrade/DistUpgradeQuirks.py:360 msgid "" "Your system uses an ARM CPU that is older than the ARMv6 architecture. All " "packages in karmic were built with optimizations requiring ARMv6 as the " @@ -1032,12 +1032,12 @@ "化目標來建置,所以處理器至少需要有 ARMv6 等級。對於目前的硬件來說,無法將系統" "升級到新的 Ubuntu 發行版。" -#: ../DistUpgrade/DistUpgradeQuirks.py:376 +#: ../DistUpgrade/DistUpgradeQuirks.py:380 msgid "" "Sorry, this storage driver is not supported in kernels for newer releases" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:378 +#: ../DistUpgrade/DistUpgradeQuirks.py:382 #, python-format msgid "" "There will not be any further Ubuntu releases that provide kernel support " @@ -1047,7 +1047,7 @@ "driver, remove the directory %s and try again." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:409 +#: ../DistUpgrade/DistUpgradeQuirks.py:413 #, fuzzy, python-format msgid "" "There will not be any further Ubuntu releases for this system's POWER8 " @@ -1059,11 +1059,11 @@ "\n" "Ubuntu %s 版的更新會繼續提供,直至 %s。" -#: ../DistUpgrade/DistUpgradeQuirks.py:427 +#: ../DistUpgrade/DistUpgradeQuirks.py:431 msgid "No init available" msgstr "無法初始化" -#: ../DistUpgrade/DistUpgradeQuirks.py:428 +#: ../DistUpgrade/DistUpgradeQuirks.py:432 msgid "" "Your system appears to be a virtualised environment without an init daemon, " "e.g. Linux-VServer. Ubuntu 10.04 LTS cannot function within this type of " @@ -1077,11 +1077,11 @@ "\n" "您確定想要繼續?" -#: ../DistUpgrade/DistUpgradeQuirks.py:469 +#: ../DistUpgrade/DistUpgradeQuirks.py:473 msgid "The Robot Operating System (ROS) is installed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:470 +#: ../DistUpgrade/DistUpgradeQuirks.py:474 msgid "" "It appears that ROS is currently installed. Each ROS release is very strict " "about the versions of Ubuntu it supports, and Ubuntu upgrades can fail if " @@ -1098,11 +1098,11 @@ "Are you sure you want to continue?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:670 +#: ../DistUpgrade/DistUpgradeQuirks.py:674 msgid "Connection to the Snap Store failed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:671 +#: ../DistUpgrade/DistUpgradeQuirks.py:675 msgid "" "You have the package lxd installed but your system is unable to reach the " "Snap Store. lxd is now provided via a snap and the release upgrade will fail " @@ -1112,11 +1112,11 @@ "may want to configure a Snap Store proxy." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:686 +#: ../DistUpgrade/DistUpgradeQuirks.py:690 msgid "Connection to Snap Store failed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:687 +#: ../DistUpgrade/DistUpgradeQuirks.py:691 msgid "" "Your system does not have a connection to the Snap Store. For the best " "upgrade experience make sure that your system can connect to api.snapcraft." @@ -1124,11 +1124,11 @@ "Do you still want to continue with the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:696 +#: ../DistUpgrade/DistUpgradeQuirks.py:700 msgid "Outdated snapd package" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:697 +#: ../DistUpgrade/DistUpgradeQuirks.py:701 msgid "" "Your system does not have the latest version of snapd. Please update the " "version of snapd on your system to improve the upgrade experience.\n" @@ -1137,36 +1137,36 @@ #. now perform direct API calls to the store, requesting size #. information for each of the snaps needing installation -#: ../DistUpgrade/DistUpgradeQuirks.py:722 +#: ../DistUpgrade/DistUpgradeQuirks.py:726 msgid "Calculating snap size requirements" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:753 +#: ../DistUpgrade/DistUpgradeQuirks.py:757 msgid "Processing snap replacements" msgstr "" #. TODO: This status should be updated, but the time of #. this change to snap switch is post-translation freeze. -#: ../DistUpgrade/DistUpgradeQuirks.py:761 +#: ../DistUpgrade/DistUpgradeQuirks.py:765 #, python-format msgid "refreshing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:765 +#: ../DistUpgrade/DistUpgradeQuirks.py:769 #, python-format msgid "removing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:768 +#: ../DistUpgrade/DistUpgradeQuirks.py:772 #, python-format msgid "installing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:797 +#: ../DistUpgrade/DistUpgradeQuirks.py:801 msgid "PAE not enabled" msgstr "物理地址擴展(PAE)未啟用" -#: ../DistUpgrade/DistUpgradeQuirks.py:798 +#: ../DistUpgrade/DistUpgradeQuirks.py:802 msgid "" "Your system uses a CPU that does not have PAE enabled. Ubuntu only supports " "non-PAE systems up to Ubuntu 12.04. To upgrade to a later version of Ubuntu, " @@ -1174,11 +1174,11 @@ "http://help.ubuntu.com/community/EnablingPAE" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1094 +#: ../DistUpgrade/DistUpgradeQuirks.py:1098 msgid "universe component not enabled" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1095 +#: ../DistUpgrade/DistUpgradeQuirks.py:1099 #, python-format msgid "" "You have the package %s installed which is a python2 package. python2 has " @@ -1190,39 +1190,50 @@ "universe component in /etc/apt/sources.list or remove %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1207 +#: ../DistUpgrade/DistUpgradeQuirks.py:1211 msgid "Checking for installed snaps" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1654 +#: ../DistUpgrade/DistUpgradeQuirks.py:1720 #, fuzzy msgid "Cannot upgrade this system" msgstr "無法升級" -#: ../DistUpgrade/DistUpgradeQuirks.py:1655 +#: ../DistUpgrade/DistUpgradeQuirks.py:1721 msgid "" "Due to a bug in grub, this system cannot be safely upgraded at this time.\n" "\n" "See https://launchpad.net/bugs/2039172." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1721 +#: ../DistUpgrade/DistUpgradeQuirks.py:1787 #, python-brace-format msgid "Updates for Ubuntu {from_release.version} will " msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1731 +#: ../DistUpgrade/DistUpgradeQuirks.py:1797 #, fuzzy msgid "Sorry, cannot upgrade this system to 24.04 LTS" msgstr "無法升級" -#: ../DistUpgrade/DistUpgradeQuirks.py:1734 +#: ../DistUpgrade/DistUpgradeQuirks.py:1800 msgid "" "The Raspberry Pi kernel for Ubuntu 24.04 LTS does not support the armhf " "architecture.\n" "\n" msgstr "" +#: ../DistUpgrade/DistUpgradeQuirks.py:1928 +#, fuzzy, python-brace-format +msgid "Sorry, cannot upgrade this system to {version}" +msgstr "無法升級" + +#: ../DistUpgrade/DistUpgradeQuirks.py:1931 +msgid "" +"Upgrades for desktop systems running TPM FDE are not currently supported. " +"Please see https://launchpad.net/bugs/2065229 for more information." +msgstr "" + #: ../DistUpgrade/DistUpgradeMain.py:62 msgid "" "Use frontend. Currently available: \n" diff -Nru ubuntu-release-upgrader-24.04.17/po/zh_TW.po ubuntu-release-upgrader-24.04.18/po/zh_TW.po --- ubuntu-release-upgrader-24.04.17/po/zh_TW.po 2024-04-29 14:26:40.000000000 +0000 +++ ubuntu-release-upgrader-24.04.18/po/zh_TW.po 2024-05-09 19:39:23.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: update-manager 0.41.1\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2024-04-29 16:03+0200\n" +"POT-Creation-Date: 2024-05-09 15:39-0400\n" "PO-Revision-Date: 2019-06-18 17:54+0000\n" "Last-Translator: Walter Cheuk \n" "Language-Team: Chinese (Taiwan) \n" @@ -982,11 +982,11 @@ msgid "Media Change" msgstr "媒體變更" -#: ../DistUpgrade/DistUpgradeQuirks.py:248 +#: ../DistUpgrade/DistUpgradeQuirks.py:252 msgid "Your graphics hardware may not be fully supported in Ubuntu 14.04." msgstr "Ubuntu 14.04 未必能完全支援您的圖像硬體。" -#: ../DistUpgrade/DistUpgradeQuirks.py:250 +#: ../DistUpgrade/DistUpgradeQuirks.py:254 msgid "" "Running the 'unity' desktop environment is not fully supported by your " "graphics hardware. You will maybe end up in a very slow environment after " @@ -1000,11 +1000,11 @@ "https://wiki.ubuntu.com/X/Bugs/UpdateManagerWarningForUnity3D 您仍想要繼續升" "級嗎?" -#: ../DistUpgrade/DistUpgradeQuirks.py:274 +#: ../DistUpgrade/DistUpgradeQuirks.py:278 msgid "Your graphics hardware may not be fully supported in Ubuntu 12.04 LTS." msgstr "您的繪圖硬體可能無法被 Ubuntu 12.04 LTS 完整支援。" -#: ../DistUpgrade/DistUpgradeQuirks.py:276 +#: ../DistUpgrade/DistUpgradeQuirks.py:280 msgid "" "The support in Ubuntu 12.04 LTS for your Intel graphics hardware is limited " "and you may encounter problems after the upgrade. For more information see " @@ -1015,13 +1015,13 @@ "題。更多資訊可以查看 \"https://wiki.ubuntu.com/X/Bugs/" "UpdateManagerWarningForI8xx\"。您是否要繼續升級?" -#: ../DistUpgrade/DistUpgradeQuirks.py:296 +#: ../DistUpgrade/DistUpgradeQuirks.py:300 msgid "" "Upgrading may reduce desktop effects, and performance in games and other " "graphically intensive programs." msgstr "升級可能減低桌面特效和遊戲及其他著重圖形程式的表現。" -#: ../DistUpgrade/DistUpgradeQuirks.py:300 +#: ../DistUpgrade/DistUpgradeQuirks.py:304 msgid "" "This computer is currently using the AMD 'fglrx' graphics driver. No version " "of this driver is available that works with your hardware in Ubuntu 10.04 " @@ -1034,12 +1034,12 @@ "\n" "是否要繼續?" -#: ../DistUpgrade/DistUpgradeQuirks.py:339 -#: ../DistUpgrade/DistUpgradeQuirks.py:408 +#: ../DistUpgrade/DistUpgradeQuirks.py:343 +#: ../DistUpgrade/DistUpgradeQuirks.py:412 msgid "Sorry, no more upgrades for this system" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:340 +#: ../DistUpgrade/DistUpgradeQuirks.py:344 #, python-format msgid "" "There will not be any further Ubuntu releases for this system's 'i386' " @@ -1051,11 +1051,11 @@ "\n" "Ubuntu %s 版的更新會繼續提供,直至 %s。" -#: ../DistUpgrade/DistUpgradeQuirks.py:355 +#: ../DistUpgrade/DistUpgradeQuirks.py:359 msgid "No ARMv6 CPU" msgstr "無 ARMv6 處理器" -#: ../DistUpgrade/DistUpgradeQuirks.py:356 +#: ../DistUpgrade/DistUpgradeQuirks.py:360 msgid "" "Your system uses an ARM CPU that is older than the ARMv6 architecture. All " "packages in karmic were built with optimizations requiring ARMv6 as the " @@ -1065,12 +1065,12 @@ "您系統使用的 ARM 處理器舊於 ARMv6 架構。所有 karmic 軟體包都是以 ARMv6 為最低" "架構優化建造的。所以伴隨此硬體無法升級您的系統到新的 Ubuntu 版本。" -#: ../DistUpgrade/DistUpgradeQuirks.py:376 +#: ../DistUpgrade/DistUpgradeQuirks.py:380 msgid "" "Sorry, this storage driver is not supported in kernels for newer releases" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:378 +#: ../DistUpgrade/DistUpgradeQuirks.py:382 #, python-format msgid "" "There will not be any further Ubuntu releases that provide kernel support " @@ -1080,7 +1080,7 @@ "driver, remove the directory %s and try again." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:409 +#: ../DistUpgrade/DistUpgradeQuirks.py:413 #, fuzzy, python-format msgid "" "There will not be any further Ubuntu releases for this system's POWER8 " @@ -1092,11 +1092,11 @@ "\n" "Ubuntu %s 版的更新會繼續提供,直至 %s。" -#: ../DistUpgrade/DistUpgradeQuirks.py:427 +#: ../DistUpgrade/DistUpgradeQuirks.py:431 msgid "No init available" msgstr "無法初始化" -#: ../DistUpgrade/DistUpgradeQuirks.py:428 +#: ../DistUpgrade/DistUpgradeQuirks.py:432 msgid "" "Your system appears to be a virtualised environment without an init daemon, " "e.g. Linux-VServer. Ubuntu 10.04 LTS cannot function within this type of " @@ -1110,11 +1110,11 @@ "\n" "您確定想要繼續?" -#: ../DistUpgrade/DistUpgradeQuirks.py:469 +#: ../DistUpgrade/DistUpgradeQuirks.py:473 msgid "The Robot Operating System (ROS) is installed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:470 +#: ../DistUpgrade/DistUpgradeQuirks.py:474 msgid "" "It appears that ROS is currently installed. Each ROS release is very strict " "about the versions of Ubuntu it supports, and Ubuntu upgrades can fail if " @@ -1131,12 +1131,12 @@ "Are you sure you want to continue?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:670 +#: ../DistUpgrade/DistUpgradeQuirks.py:674 #, fuzzy msgid "Connection to the Snap Store failed" msgstr "連線到 Snap 商店失敗" -#: ../DistUpgrade/DistUpgradeQuirks.py:671 +#: ../DistUpgrade/DistUpgradeQuirks.py:675 msgid "" "You have the package lxd installed but your system is unable to reach the " "Snap Store. lxd is now provided via a snap and the release upgrade will fail " @@ -1146,11 +1146,11 @@ "may want to configure a Snap Store proxy." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:686 +#: ../DistUpgrade/DistUpgradeQuirks.py:690 msgid "Connection to Snap Store failed" msgstr "連線到 Snap 商店失敗" -#: ../DistUpgrade/DistUpgradeQuirks.py:687 +#: ../DistUpgrade/DistUpgradeQuirks.py:691 msgid "" "Your system does not have a connection to the Snap Store. For the best " "upgrade experience make sure that your system can connect to api.snapcraft." @@ -1161,11 +1161,11 @@ "到 api.snapcraft.io。\n" "仍然繼續升級?" -#: ../DistUpgrade/DistUpgradeQuirks.py:696 +#: ../DistUpgrade/DistUpgradeQuirks.py:700 msgid "Outdated snapd package" msgstr "過期的 snapd 軟體包" -#: ../DistUpgrade/DistUpgradeQuirks.py:697 +#: ../DistUpgrade/DistUpgradeQuirks.py:701 msgid "" "Your system does not have the latest version of snapd. Please update the " "version of snapd on your system to improve the upgrade experience.\n" @@ -1176,36 +1176,36 @@ #. now perform direct API calls to the store, requesting size #. information for each of the snaps needing installation -#: ../DistUpgrade/DistUpgradeQuirks.py:722 +#: ../DistUpgrade/DistUpgradeQuirks.py:726 msgid "Calculating snap size requirements" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:753 +#: ../DistUpgrade/DistUpgradeQuirks.py:757 msgid "Processing snap replacements" msgstr "" #. TODO: This status should be updated, but the time of #. this change to snap switch is post-translation freeze. -#: ../DistUpgrade/DistUpgradeQuirks.py:761 +#: ../DistUpgrade/DistUpgradeQuirks.py:765 #, python-format msgid "refreshing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:765 +#: ../DistUpgrade/DistUpgradeQuirks.py:769 #, fuzzy, python-format msgid "removing snap %s" msgstr "正在安裝 snap %s" -#: ../DistUpgrade/DistUpgradeQuirks.py:768 +#: ../DistUpgrade/DistUpgradeQuirks.py:772 #, python-format msgid "installing snap %s" msgstr "正在安裝 snap %s" -#: ../DistUpgrade/DistUpgradeQuirks.py:797 +#: ../DistUpgrade/DistUpgradeQuirks.py:801 msgid "PAE not enabled" msgstr "實體位址延伸功能 (PAE) 尚未啟用" -#: ../DistUpgrade/DistUpgradeQuirks.py:798 +#: ../DistUpgrade/DistUpgradeQuirks.py:802 msgid "" "Your system uses a CPU that does not have PAE enabled. Ubuntu only supports " "non-PAE systems up to Ubuntu 12.04. To upgrade to a later version of Ubuntu, " @@ -1217,11 +1217,11 @@ "能 (若可能的話) 詳見:\n" "http://help.ubuntu.com/community/EnablingPAE" -#: ../DistUpgrade/DistUpgradeQuirks.py:1094 +#: ../DistUpgrade/DistUpgradeQuirks.py:1098 msgid "universe component not enabled" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1095 +#: ../DistUpgrade/DistUpgradeQuirks.py:1099 #, python-format msgid "" "You have the package %s installed which is a python2 package. python2 has " @@ -1233,39 +1233,50 @@ "universe component in /etc/apt/sources.list or remove %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1207 +#: ../DistUpgrade/DistUpgradeQuirks.py:1211 msgid "Checking for installed snaps" msgstr "正在檢查已經安裝的 snap" -#: ../DistUpgrade/DistUpgradeQuirks.py:1654 +#: ../DistUpgrade/DistUpgradeQuirks.py:1720 #, fuzzy msgid "Cannot upgrade this system" msgstr "無法升級" -#: ../DistUpgrade/DistUpgradeQuirks.py:1655 +#: ../DistUpgrade/DistUpgradeQuirks.py:1721 msgid "" "Due to a bug in grub, this system cannot be safely upgraded at this time.\n" "\n" "See https://launchpad.net/bugs/2039172." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1721 +#: ../DistUpgrade/DistUpgradeQuirks.py:1787 #, python-brace-format msgid "Updates for Ubuntu {from_release.version} will " msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1731 +#: ../DistUpgrade/DistUpgradeQuirks.py:1797 #, fuzzy msgid "Sorry, cannot upgrade this system to 24.04 LTS" msgstr "無法升級" -#: ../DistUpgrade/DistUpgradeQuirks.py:1734 +#: ../DistUpgrade/DistUpgradeQuirks.py:1800 msgid "" "The Raspberry Pi kernel for Ubuntu 24.04 LTS does not support the armhf " "architecture.\n" "\n" msgstr "" +#: ../DistUpgrade/DistUpgradeQuirks.py:1928 +#, fuzzy, python-brace-format +msgid "Sorry, cannot upgrade this system to {version}" +msgstr "無法升級" + +#: ../DistUpgrade/DistUpgradeQuirks.py:1931 +msgid "" +"Upgrades for desktop systems running TPM FDE are not currently supported. " +"Please see https://launchpad.net/bugs/2065229 for more information." +msgstr "" + #: ../DistUpgrade/DistUpgradeMain.py:62 msgid "" "Use frontend. Currently available: \n" diff -Nru ubuntu-release-upgrader-24.04.17/po/zu.po ubuntu-release-upgrader-24.04.18/po/zu.po --- ubuntu-release-upgrader-24.04.17/po/zu.po 2024-04-29 14:26:40.000000000 +0000 +++ ubuntu-release-upgrader-24.04.18/po/zu.po 2024-05-09 19:39:23.000000000 +0000 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: update-manager\n" "Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n" -"POT-Creation-Date: 2024-04-29 16:03+0200\n" +"POT-Creation-Date: 2024-05-09 15:39-0400\n" "PO-Revision-Date: 2013-05-22 11:00+0000\n" "Last-Translator: Xolani1990 \n" "Language-Team: Zulu \n" @@ -897,11 +897,11 @@ msgid "Media Change" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:248 +#: ../DistUpgrade/DistUpgradeQuirks.py:252 msgid "Your graphics hardware may not be fully supported in Ubuntu 14.04." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:250 +#: ../DistUpgrade/DistUpgradeQuirks.py:254 msgid "" "Running the 'unity' desktop environment is not fully supported by your " "graphics hardware. You will maybe end up in a very slow environment after " @@ -911,11 +911,11 @@ "upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:274 +#: ../DistUpgrade/DistUpgradeQuirks.py:278 msgid "Your graphics hardware may not be fully supported in Ubuntu 12.04 LTS." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:276 +#: ../DistUpgrade/DistUpgradeQuirks.py:280 msgid "" "The support in Ubuntu 12.04 LTS for your Intel graphics hardware is limited " "and you may encounter problems after the upgrade. For more information see " @@ -923,13 +923,13 @@ "continue with the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:296 +#: ../DistUpgrade/DistUpgradeQuirks.py:300 msgid "" "Upgrading may reduce desktop effects, and performance in games and other " "graphically intensive programs." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:300 +#: ../DistUpgrade/DistUpgradeQuirks.py:304 msgid "" "This computer is currently using the AMD 'fglrx' graphics driver. No version " "of this driver is available that works with your hardware in Ubuntu 10.04 " @@ -938,12 +938,12 @@ "Do you want to continue?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:339 -#: ../DistUpgrade/DistUpgradeQuirks.py:408 +#: ../DistUpgrade/DistUpgradeQuirks.py:343 +#: ../DistUpgrade/DistUpgradeQuirks.py:412 msgid "Sorry, no more upgrades for this system" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:340 +#: ../DistUpgrade/DistUpgradeQuirks.py:344 #, python-format msgid "" "There will not be any further Ubuntu releases for this system's 'i386' " @@ -952,11 +952,11 @@ "Updates for Ubuntu %s will continue until %s." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:355 +#: ../DistUpgrade/DistUpgradeQuirks.py:359 msgid "No ARMv6 CPU" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:356 +#: ../DistUpgrade/DistUpgradeQuirks.py:360 msgid "" "Your system uses an ARM CPU that is older than the ARMv6 architecture. All " "packages in karmic were built with optimizations requiring ARMv6 as the " @@ -964,12 +964,12 @@ "Ubuntu release with this hardware." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:376 +#: ../DistUpgrade/DistUpgradeQuirks.py:380 msgid "" "Sorry, this storage driver is not supported in kernels for newer releases" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:378 +#: ../DistUpgrade/DistUpgradeQuirks.py:382 #, python-format msgid "" "There will not be any further Ubuntu releases that provide kernel support " @@ -979,7 +979,7 @@ "driver, remove the directory %s and try again." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:409 +#: ../DistUpgrade/DistUpgradeQuirks.py:413 #, python-format msgid "" "There will not be any further Ubuntu releases for this system's POWER8 " @@ -988,11 +988,11 @@ "Updates for Ubuntu %s will continue until %s." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:427 +#: ../DistUpgrade/DistUpgradeQuirks.py:431 msgid "No init available" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:428 +#: ../DistUpgrade/DistUpgradeQuirks.py:432 msgid "" "Your system appears to be a virtualised environment without an init daemon, " "e.g. Linux-VServer. Ubuntu 10.04 LTS cannot function within this type of " @@ -1002,11 +1002,11 @@ "Are you sure you want to continue?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:469 +#: ../DistUpgrade/DistUpgradeQuirks.py:473 msgid "The Robot Operating System (ROS) is installed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:470 +#: ../DistUpgrade/DistUpgradeQuirks.py:474 msgid "" "It appears that ROS is currently installed. Each ROS release is very strict " "about the versions of Ubuntu it supports, and Ubuntu upgrades can fail if " @@ -1023,11 +1023,11 @@ "Are you sure you want to continue?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:670 +#: ../DistUpgrade/DistUpgradeQuirks.py:674 msgid "Connection to the Snap Store failed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:671 +#: ../DistUpgrade/DistUpgradeQuirks.py:675 msgid "" "You have the package lxd installed but your system is unable to reach the " "Snap Store. lxd is now provided via a snap and the release upgrade will fail " @@ -1037,11 +1037,11 @@ "may want to configure a Snap Store proxy." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:686 +#: ../DistUpgrade/DistUpgradeQuirks.py:690 msgid "Connection to Snap Store failed" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:687 +#: ../DistUpgrade/DistUpgradeQuirks.py:691 msgid "" "Your system does not have a connection to the Snap Store. For the best " "upgrade experience make sure that your system can connect to api.snapcraft." @@ -1049,11 +1049,11 @@ "Do you still want to continue with the upgrade?" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:696 +#: ../DistUpgrade/DistUpgradeQuirks.py:700 msgid "Outdated snapd package" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:697 +#: ../DistUpgrade/DistUpgradeQuirks.py:701 msgid "" "Your system does not have the latest version of snapd. Please update the " "version of snapd on your system to improve the upgrade experience.\n" @@ -1062,36 +1062,36 @@ #. now perform direct API calls to the store, requesting size #. information for each of the snaps needing installation -#: ../DistUpgrade/DistUpgradeQuirks.py:722 +#: ../DistUpgrade/DistUpgradeQuirks.py:726 msgid "Calculating snap size requirements" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:753 +#: ../DistUpgrade/DistUpgradeQuirks.py:757 msgid "Processing snap replacements" msgstr "" #. TODO: This status should be updated, but the time of #. this change to snap switch is post-translation freeze. -#: ../DistUpgrade/DistUpgradeQuirks.py:761 +#: ../DistUpgrade/DistUpgradeQuirks.py:765 #, python-format msgid "refreshing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:765 +#: ../DistUpgrade/DistUpgradeQuirks.py:769 #, python-format msgid "removing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:768 +#: ../DistUpgrade/DistUpgradeQuirks.py:772 #, python-format msgid "installing snap %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:797 +#: ../DistUpgrade/DistUpgradeQuirks.py:801 msgid "PAE not enabled" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:798 +#: ../DistUpgrade/DistUpgradeQuirks.py:802 msgid "" "Your system uses a CPU that does not have PAE enabled. Ubuntu only supports " "non-PAE systems up to Ubuntu 12.04. To upgrade to a later version of Ubuntu, " @@ -1099,11 +1099,11 @@ "http://help.ubuntu.com/community/EnablingPAE" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1094 +#: ../DistUpgrade/DistUpgradeQuirks.py:1098 msgid "universe component not enabled" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1095 +#: ../DistUpgrade/DistUpgradeQuirks.py:1099 #, python-format msgid "" "You have the package %s installed which is a python2 package. python2 has " @@ -1115,37 +1115,48 @@ "universe component in /etc/apt/sources.list or remove %s" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1207 +#: ../DistUpgrade/DistUpgradeQuirks.py:1211 msgid "Checking for installed snaps" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1654 +#: ../DistUpgrade/DistUpgradeQuirks.py:1720 msgid "Cannot upgrade this system" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1655 +#: ../DistUpgrade/DistUpgradeQuirks.py:1721 msgid "" "Due to a bug in grub, this system cannot be safely upgraded at this time.\n" "\n" "See https://launchpad.net/bugs/2039172." msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1721 +#: ../DistUpgrade/DistUpgradeQuirks.py:1787 #, python-brace-format msgid "Updates for Ubuntu {from_release.version} will " msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1731 +#: ../DistUpgrade/DistUpgradeQuirks.py:1797 msgid "Sorry, cannot upgrade this system to 24.04 LTS" msgstr "" -#: ../DistUpgrade/DistUpgradeQuirks.py:1734 +#: ../DistUpgrade/DistUpgradeQuirks.py:1800 msgid "" "The Raspberry Pi kernel for Ubuntu 24.04 LTS does not support the armhf " "architecture.\n" "\n" msgstr "" +#: ../DistUpgrade/DistUpgradeQuirks.py:1928 +#, python-brace-format +msgid "Sorry, cannot upgrade this system to {version}" +msgstr "" + +#: ../DistUpgrade/DistUpgradeQuirks.py:1931 +msgid "" +"Upgrades for desktop systems running TPM FDE are not currently supported. " +"Please see https://launchpad.net/bugs/2065229 for more information." +msgstr "" + #: ../DistUpgrade/DistUpgradeMain.py:62 msgid "" "Use frontend. Currently available: \n" diff -Nru ubuntu-release-upgrader-24.04.17/tests/data-deb822-migration-test/test_ports_sources_list_migration/expect/ubuntu.sources ubuntu-release-upgrader-24.04.18/tests/data-deb822-migration-test/test_ports_sources_list_migration/expect/ubuntu.sources --- ubuntu-release-upgrader-24.04.17/tests/data-deb822-migration-test/test_ports_sources_list_migration/expect/ubuntu.sources 2024-04-29 14:26:40.000000000 +0000 +++ ubuntu-release-upgrader-24.04.18/tests/data-deb822-migration-test/test_ports_sources_list_migration/expect/ubuntu.sources 2024-05-09 19:36:16.000000000 +0000 @@ -1,5 +1,5 @@ Types: deb URIs: http://ports.ubuntu.com/ubuntu-ports -Suites: mantic mantic-updates mantic-security mantic-backports +Suites: {dist} {dist}-updates {dist}-security {dist}-backports Components: main restricted universe multiverse Signed-By: /usr/share/keyrings/ubuntu-archive-keyring.gpg diff -Nru ubuntu-release-upgrader-24.04.17/tests/test_quirks.py ubuntu-release-upgrader-24.04.18/tests/test_quirks.py --- ubuntu-release-upgrader-24.04.17/tests/test_quirks.py 2024-04-29 14:26:40.000000000 +0000 +++ ubuntu-release-upgrader-24.04.18/tests/test_quirks.py 2024-05-09 19:36:16.000000000 +0000 @@ -522,6 +522,85 @@ with open(os.path.join(boot_dir, 'config.txt')) as f: self.assertTrue(f.read() == expected_config) + def test_add_kms_overlay_no_config(self): + with tempfile.TemporaryDirectory() as boot_dir: + mock_controller = mock.Mock() + + q = DistUpgradeQuirks(mock_controller, mock.Mock()) + + q._add_kms_overlay(boot_dir) + self.assertFalse(os.path.exists(os.path.join( + boot_dir, 'config.txt.distUpgrade'))) + + def test_add_kms_overlay_no_changes(self): + with tempfile.TemporaryDirectory() as boot_dir: + boot_config = """\ +arm_64bit=1 +kernel=vmlinuz +initramfs initrd.img followkernel + +# This line is implicitly in an [all] section and +# should prevent the quirk from doing anything +dtoverlay=vc4-kms-v3d,cma-128 + +[pi4] +max_framebuffers=2 +""" + with open(os.path.join(boot_dir, 'config.txt'), 'w') as f: + f.write(boot_config) + + mock_controller = mock.Mock() + q = DistUpgradeQuirks(mock_controller, mock.Mock()) + q._add_kms_overlay(boot_dir) + + self.assertFalse(os.path.exists(os.path.join( + boot_dir, 'config.txt.distUpgrade'))) + with open(os.path.join(boot_dir, 'config.txt')) as f: + self.assertTrue(f.read() == boot_config) + + def test_add_kms_overlay_with_changes(self): + with tempfile.TemporaryDirectory() as boot_dir: + config_txt = """\ +arm_64bit=1 +kernel=vmlinuz +initramfs initrd.img followkernel + +[pi4] +max_framebuffers=2 +""" + expected_config_txt = """\ +arm_64bit=1 +kernel=vmlinuz +initramfs initrd.img followkernel + +# added by do-release-upgrade (LP: #2065051) +dtoverlay=vc4-kms-v3d +disable_fw_kms_setup=1 + +[pi3+] +dtoverlay=vc4-kms-v3d,cma-128 + +[pi02] +dtoverlay=vc4-kms-v3d,cma-128 + +[all] +[pi4] +max_framebuffers=2 +""" + with open(os.path.join(boot_dir, 'config.txt'), 'w') as f: + f.write(config_txt) + + mock_controller = mock.Mock() + q = DistUpgradeQuirks(mock_controller, mock.Mock()) + q._add_kms_overlay(boot_dir) + + self.assertTrue(os.path.exists(os.path.join( + boot_dir, 'config.txt.distUpgrade'))) + self.assertTrue(os.path.exists(os.path.join( + boot_dir, 'config.txt'))) + with open(os.path.join(boot_dir, 'config.txt')) as f: + self.assertTrue(f.read() == expected_config_txt) + def test_remove_uboot_no_config(self): with tempfile.TemporaryDirectory() as boot_dir: mock_controller = mock.Mock()