├── .gitignore ├── Makefile ├── README.md ├── debian ├── changelog ├── compat ├── control ├── copyright ├── install ├── postinst ├── rules └── source │ └── format ├── generate_desktop_files ├── makepot ├── mintupgrade.pot ├── po ├── mintupgrade-am.po ├── mintupgrade-ar.po ├── mintupgrade-ast.po ├── mintupgrade-be.po ├── mintupgrade-bg.po ├── mintupgrade-br.po ├── mintupgrade-ca.po ├── mintupgrade-cs.po ├── mintupgrade-cy.po ├── mintupgrade-da.po ├── mintupgrade-de.po ├── mintupgrade-el.po ├── mintupgrade-en_CA.po ├── mintupgrade-en_GB.po ├── mintupgrade-eo.po ├── mintupgrade-es.po ├── mintupgrade-et.po ├── mintupgrade-eu.po ├── mintupgrade-fa.po ├── mintupgrade-fi.po ├── mintupgrade-fr.po ├── mintupgrade-fr_CA.po ├── mintupgrade-he.po ├── mintupgrade-hi.po ├── mintupgrade-hr.po ├── mintupgrade-hu.po ├── mintupgrade-ia.po ├── mintupgrade-id.po ├── mintupgrade-ie.po ├── mintupgrade-is.po ├── mintupgrade-it.po ├── mintupgrade-ja.po ├── mintupgrade-ka.po ├── mintupgrade-kab.po ├── mintupgrade-ko.po ├── mintupgrade-la.po ├── mintupgrade-lt.po ├── mintupgrade-nb.po ├── mintupgrade-nl.po ├── mintupgrade-oc.po ├── mintupgrade-pl.po ├── mintupgrade-pt.po ├── mintupgrade-pt_BR.po ├── mintupgrade-ro.po ├── mintupgrade-ru.po ├── mintupgrade-sk.po ├── mintupgrade-sl.po ├── mintupgrade-sr.po ├── mintupgrade-sv.po ├── mintupgrade-tr.po ├── mintupgrade-uk.po ├── mintupgrade-uz.po ├── mintupgrade-vi.po ├── mintupgrade-zh_CN.po └── mintupgrade-zh_TW.po ├── test └── usr ├── bin ├── mintupgrade └── mintupgrade-inhibit-power ├── lib └── linuxmint │ └── mintupgrade │ ├── apt_utils.py │ ├── checks.py │ ├── common.py │ ├── constants.py │ ├── constants_lmde.py │ ├── constants_mint.py │ └── mintupgrade.py └── share ├── applications └── mintupgrade.desktop ├── glib-2.0 └── schemas │ └── com.linuxmint.mintupgrade.gschema.xml ├── icons └── hicolor │ └── scalable │ └── apps │ └── mintupgrade.svg └── linuxmint └── mintupgrade ├── mintupgrade.css ├── mintupgrade.ui └── style.css /.gitignore: -------------------------------------------------------------------------------- 1 | debian/mintupgrade 2 | debian/*substvars* 3 | debian/*debhelper* 4 | debian/files 5 | usr/share/locale -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- 1 | all: buildmo 2 | 3 | buildmo: 4 | @echo "Building the mo files" 5 | # WARNING: the second sed below will only works correctly with the languages that don't contain "-" 6 | for file in `ls po/*.po`; do \ 7 | lang=`echo $$file | sed 's@po/@@' | sed 's/\.po//' | sed 's/mintupgrade-//'`; \ 8 | install -d usr/share/locale/$$lang/LC_MESSAGES/; \ 9 | msgfmt -o usr/share/locale/$$lang/LC_MESSAGES/mintupgrade.mo $$file; \ 10 | done \ 11 | 12 | clean: 13 | rm -rf usr/share/locale 14 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # MintUpgrade 2 | 3 | Upgrade your Operating System to a new version 4 | 5 | # TODO 6 | 7 | debconf 8 | show prefs by clicking a button 9 | add translations 10 | -------------------------------------------------------------------------------- /debian/changelog: -------------------------------------------------------------------------------- 1 | mintupgrade (2024.12.05) xia; urgency=medium 2 | 3 | * l10n: Update translations 4 | * l10n: Update files 5 | 6 | -- Clement Lefebvre Thu, 05 Dec 2024 10:49:01 +0000 7 | 8 | mintupgrade (2024.11.26) xia; urgency=medium 9 | 10 | * Switch to aptkit 11 | 12 | -- Clement Lefebvre Tue, 26 Nov 2024 10:19:41 +0000 13 | 14 | mintupgrade (2024.07.27.3) wilma; urgency=medium 15 | 16 | * new orphans: Check if we're dealing with a t64 migration 17 | 18 | -- Clement Lefebvre Sat, 27 Jul 2024 21:17:43 +0100 19 | 20 | mintupgrade (2024.07.27.2) wilma; urgency=medium 21 | 22 | * Add hplip 23 | * Add nemo-preview (Cinnamon only) 24 | 25 | -- Clement Lefebvre Sat, 27 Jul 2024 17:36:29 +0100 26 | 27 | mintupgrade (2024.07.27.1) wilma; urgency=medium 28 | 29 | * Add celluloid, simple-scan, hypnotix 30 | 31 | -- Clement Lefebvre Sat, 27 Jul 2024 13:31:17 +0100 32 | 33 | mintupgrade (2024.07.27) wilma; urgency=medium 34 | 35 | * constants: Don't add touchegg 36 | * constants: Remove postfix 37 | 38 | -- Clement Lefebvre Sat, 27 Jul 2024 09:50:29 +0100 39 | 40 | mintupgrade (2024.07.26.2) wilma; urgency=medium 41 | 42 | * Set the application font to Sans. 43 | * Add .gitignore 44 | 45 | -- Clement Lefebvre Fri, 26 Jul 2024 13:15:34 +0100 46 | 47 | mintupgrade (2024.07.26.1) wilma; urgency=medium 48 | 49 | * constants: Fix wrong codename for Mint 21.3 50 | 51 | -- Clement Lefebvre Fri, 26 Jul 2024 10:22:45 +0100 52 | 53 | mintupgrade (2024.07.26) wilma; urgency=medium 54 | 55 | * l10n: Update files 56 | * l10n: Update translations 57 | * constants: Update info for Mint 22 58 | * constants: Move definition blocks 59 | * Don't remove pipewire-audio 60 | 61 | -- Clement Lefebvre Fri, 26 Jul 2024 10:10:22 +0100 62 | 63 | mintupgrade (2024.01.12) virginia; urgency=medium 64 | 65 | * Foreign/orphans: Ignore mintupgrade 66 | 67 | -- Clement Lefebvre Fri, 12 Jan 2024 16:27:20 +0000 68 | 69 | mintupgrade (2024.01.11) virginia; urgency=medium 70 | 71 | [ carlosmintfan ] 72 | * Minor fixes (#77) 73 | 74 | [ Clement Lefebvre ] 75 | * l10n: Update translations 76 | * l10n: Update files 77 | * ui: Remove copied leftover 78 | * checks: Remove obsolete special case 79 | * checks: Fix exception when additional size is negative 80 | 81 | -- Clement Lefebvre Thu, 11 Jan 2024 14:17:34 +0000 82 | 83 | mintupgrade (2023.10.24) faye; urgency=medium 84 | 85 | * New orphans: Don't remove dnscrypt-proxy 86 | 87 | -- Clement Lefebvre Tue, 24 Oct 2023 14:31:43 +0100 88 | 89 | mintupgrade (2023.09.29.1) faye; urgency=medium 90 | 91 | * Fix case where the main repository is unreachable. 92 | 93 | -- Clement Lefebvre Fri, 29 Sep 2023 17:23:49 +0100 94 | 95 | mintupgrade (2023.09.29) faye; urgency=medium 96 | 97 | [ Michael Webster ] 98 | * Fix pre-upgrade orphan re-check. 99 | 100 | [ Butterfly ] 101 | * constants_lmde.py: fix typo (#75) 102 | 103 | [ Clement Lefebvre ] 104 | * LMDE: Remove /etc/lsb-release 105 | * l10n: Update translations 106 | 107 | -- Clement Lefebvre Fri, 29 Sep 2023 15:32:52 +0100 108 | 109 | mintupgrade (2023.09.26) faye; urgency=medium 110 | 111 | [ kinglike1337 ] 112 | * Fix for external apt repos with mint codenames (#40) 113 | * Rewrite https keyword used by apt-cacher-ng (#41) 114 | 115 | [ Clement Lefebvre ] 116 | * l10n: Update translations 117 | * l10n: Update files 118 | * l10n: Update POT 119 | 120 | [ rilysh ] 121 | * clean: remove all unused deps (#66) 122 | 123 | [ Benjamin Loison ] 124 | * Correct a typo in `po/mintupgrade-fr{, _CA}.po` (#64) 125 | 126 | [ Clement Lefebvre ] 127 | * LMDE: Update info for LMDE 6 128 | * Refuse deb822 sources 129 | * timeshift: Rephrase check page 130 | * orphans: Don't list kernel pkgs 131 | * Remove unused variable 132 | * orphans: Turn check into an INFO check 133 | * Remove now unused orphan management code 134 | * Fix orphan management 135 | * Remove obsolete special case 136 | * LMDE: Add non-free-firmware component to APT sources 137 | * Remove desktop-base and malcontent 138 | 139 | -- Clement Lefebvre Tue, 26 Sep 2023 14:11:40 +0100 140 | 141 | mintupgrade (2022.08.13) vanessa; urgency=medium 142 | 143 | [ Corey Wetherington ] 144 | * fix minor grammar issue (#37) 145 | 146 | [ Clement Lefebvre ] 147 | * l10n: Update POT 148 | * Always use dialog-info for RESULT_INFO 149 | * aptsources: Don't use any matching templates 150 | * debug: Print out repositories at the start of each phase 151 | * Phase 2 and 3: Ensure the repositories point to the new release 152 | * l10n: Update POT 153 | 154 | -- Clement Lefebvre Sat, 13 Aug 2022 12:05:51 +0200 155 | 156 | mintupgrade (2022.08.05) vanessa; urgency=medium 157 | 158 | [ Clement Lefebvre ] 159 | * l10n: Update translations 160 | * l10n: Update files 161 | * Mint 21: Replace blueberry with blueman 162 | * Add Xapp thumbnailers 163 | * Replace gnote with sticky 164 | * Add gstreamer1.0-gtk3 and gstreamer1.0-pipewire 165 | * Remove no longer needed gnome pkgs 166 | 167 | [ Michael Webster ] 168 | * Exit the program if the window is closed. 169 | * Sync our new mintupdate timer flags at the end of the upgrade. 170 | * Fix mintupgrade-inhibit-power inhibiting mintupgrade from exiting. 171 | 172 | [ Clement Lefebvre ] 173 | * Skip some checks if we already point to the destination release (#24) 174 | 175 | [ Michael Webster ] 176 | * Make sure the automation flags directory exits. 177 | * Populate supported editions. 178 | 179 | -- Clement Lefebvre Fri, 05 Aug 2022 15:46:59 +0200 180 | 181 | mintupgrade (2022.05.05.2) elsie; urgency=medium 182 | 183 | * Fix missing import 184 | 185 | -- Clement Lefebvre Thu, 05 May 2022 16:23:06 +0100 186 | 187 | mintupgrade (2022.05.05.1) elsie; urgency=medium 188 | 189 | * Adapt to the different kernel meta names in Ubuntu/Debian and 32 vs 64bit 190 | * l10n: Update translations 191 | 192 | -- Clement Lefebvre Thu, 05 May 2022 16:18:46 +0100 193 | 194 | mintupgrade (2022.05.05) elsie; urgency=medium 195 | 196 | [ Clement Lefebvre ] 197 | * Make final terminal output a little bit clearer. 198 | * Add a dependency on acpi 199 | * Final phase: Clean APT cache 200 | * Remove usrmerge 201 | 202 | [ Michael Webster ] 203 | * Log the upgrade to a file. 204 | * Make the logfile deletable by the user. 205 | * Add a timestamp to the logfiles, forward output to real stdout instead of printing, to preserve console formatting. 206 | * Handle logging/stdout in byte mode, this seems to prevent the stairstep effect in the terminal. 207 | 208 | [ Clement Lefebvre ] 209 | * Add linux-generic in additions 210 | * Depend on system adjustment package 211 | 212 | -- Clement Lefebvre Thu, 05 May 2022 12:05:19 +0100 213 | 214 | mintupgrade (2022.04.17) elsie; urgency=medium 215 | 216 | * Preserve localedef locales in LMDE 217 | * Add translations 218 | * UI: Wrap welcome message label 219 | 220 | -- Clement Lefebvre Sun, 17 Apr 2022 10:48:01 +0100 221 | 222 | mintupgrade (2022.04.15) elsie; urgency=medium 223 | 224 | [ Clement Lefebvre ] 225 | * Fix missing phase 3 info screen 226 | * Add gvfs-fuse 227 | * Remove pkexec and policy file 228 | 229 | [ Asier Iturralde Sarasola ] 230 | * Fix typo: explictly -> explicitly (#8) 231 | 232 | [ Clement Lefebvre ] 233 | * l10n: Update POT 234 | * Preserve APT conffiles by default 235 | 236 | -- Clement Lefebvre Fri, 15 Apr 2022 16:59:09 +0100 237 | 238 | mintupgrade (2022.04.14) elsie; urgency=medium 239 | 240 | [ Clement Lefebvre ] 241 | * Switch to English when calling commands 242 | * Fix session inhibitor 243 | * l10n: Update POT and msgids 244 | * Mint: Don't support any editions just yet. 245 | 246 | [ Michael Webster ] 247 | * mintupgrade-inhibit-power: Add xfce inhibitor. 248 | 249 | [ Clement Lefebvre ] 250 | * Remove brltty 251 | * Add missing packages 252 | * Add fuse3 253 | * Allow 3rd party repositories if their dist is "stable" 254 | * Remove desktop-base 255 | * Don't install recommends when adding packages 256 | * Fix plymouth theme 257 | * Fix foreign package detection 258 | * Fix kept packages list 259 | 260 | -- Clement Lefebvre Thu, 14 Apr 2022 11:59:29 +0100 261 | 262 | mintupgrade (1.0.1) elsie; urgency=medium 263 | 264 | * Run as root 265 | * Domain: Move from org.x to com.linuxmint 266 | * Domain: Move files to /usr/lib/linuxmint/mintupgrade and /usr/share/linuxmint/mintupgrade 267 | * Change icon 268 | * Start adding checks 269 | * Add checks override in preferences 270 | * Add a page to show after tests have completed. 271 | * Move constants to a separate file 272 | * Treat VersionCheck like other checks 273 | * Add a Timeshift check 274 | * Add APT checks 275 | * Let checks provide information and lists to be displayed in the UI 276 | * Let checks provide a fix action 277 | * Clean check state before runs 278 | * Fix icon in error page 279 | * Add a fix for timeshift 280 | * Add a fix for pkgs install/remove 281 | * UI: Don't prefer dark mode by default 282 | * Test: use sudo 283 | * Add some dependencies 284 | * Make checks.py executable 285 | * Change constants to simulate a Mint 21 upgrade 286 | * Don't run mintupdate as root. 287 | * same 288 | * Improve table lists 289 | * Small fixes 290 | * Add AptRepoCheck 291 | * Add APTForeignCheck 292 | * Fix test code running all the time 293 | * Fail if apt-get update fails 294 | * Add APTOrphanCheck 295 | * Remove ippusbxd prior to upgrade 296 | * Repos: Handle syntax change for Debian bullseye security 297 | * APT: Don't rely on --error-on=any, it doesn't exist in Debian buster. 298 | * Apt cache: handle exceptions on opening and creating the cache also 299 | * Fix typo 300 | * Provide constants for both LMDE and Mint 301 | * Add the ability to show info pages 302 | * Add a preference to skip orphans check 303 | * Increase HTTP connection timeout from 5s to 30s 304 | * Add more info, rephrase a few things.. 305 | * Implement APT repos switch 306 | * Add support for separators and markups 307 | * UI info improvements 308 | * Add a check for upgrade simulation and free-space 309 | * Remove debug line 310 | * Add a check for held packages 311 | * Disable Ubuntu partner repository 312 | * Implement the download of packages 313 | * Hide menu item 314 | * Add upgrade code from mintupgrade 315 | * Remove sudo calls 316 | * Remove progress calls 317 | * Depend on crudini 318 | * Remove warn call 319 | * Add items to todo 320 | * Use non-interactive variables for all apt-get calls 321 | * Add missing dependency 322 | * Fix upgrade checks 323 | * Add mintupgrade-inhibit-power 324 | * Fix typo 325 | * Wrap print and system calls 326 | * Fix case when PACKAGE_ADDITIONS is empty 327 | * Fix typo 328 | * Don't consider mintupgrade itself an orphan 329 | * Try to fix the staircase effect output in terminal 330 | * Don't require default-jre 331 | * Check Foreign/Orphan pkgs post-upgrade 332 | * Fix typo 333 | * Use subprocess in run_command 334 | * LMDE: Remove adwaita-icon-theme-full 335 | * Fix typo 336 | * Adjust constants 337 | * Fix typo 338 | * LMDE: Update constants 339 | * Try to fix staircase and I/O issues between apt and tty 340 | * Update TODO 341 | * Update TODO 342 | * Adjust messages in foreign/orphan steps 343 | * UI: Update success page 344 | * Update TODO 345 | * Fix typo 346 | * Fix typo 347 | * Use run_command instead of os.system 348 | * Completely reset cache before updating it 349 | 350 | -- Clement Lefebvre Sun, 10 Apr 2022 20:27:16 +0100 351 | 352 | mintupgrade (1.0.0) una; urgency=low 353 | 354 | * Initial release 355 | 356 | -- Clement Lefebvre Wed, 26 Jan 2022 12:37:00 +0000 357 | -------------------------------------------------------------------------------- /debian/compat: -------------------------------------------------------------------------------- 1 | 10 2 | -------------------------------------------------------------------------------- /debian/control: -------------------------------------------------------------------------------- 1 | Source: mintupgrade 2 | Section: gnome 3 | Priority: optional 4 | Maintainer: Linux Mint 5 | Build-Depends: debhelper (>= 9) 6 | Standards-Version: 3.9.6 7 | Rules-Requires-Root: no 8 | 9 | Package: mintupgrade 10 | Architecture: all 11 | Depends: gir1.2-xapp-1.0 (>= 1.4), 12 | python3, 13 | python3-apt, 14 | python3-gi, 15 | python3-setproctitle, 16 | xapps-common, 17 | mintsources, 18 | mintupdate, 19 | acpi, 20 | aptkit, 21 | crudini, 22 | debian-system-adjustments | ubuntu-system-adjustments, 23 | inxi, 24 | ${misc:Depends} 25 | Description: Upgrade Tool 26 | Upgrade your Operating System to a new version. 27 | -------------------------------------------------------------------------------- /debian/copyright: -------------------------------------------------------------------------------- 1 | Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ 2 | Upstream-Name: mintupgrade 3 | Upstream-Contact: Linux Mint 4 | Source: https://github.com/linuxmint/mintupgrade 5 | 6 | Files: * 7 | Copyright: 2022 Linux Mint 8 | License: GPL-3+ 9 | This program is free software; you can redistribute it and/or modify 10 | it under the terms of the GNU General Public License as published by 11 | the Free Software Foundation; either version 3 of the License, or 12 | (at your option) any later version. 13 | . 14 | This program is distributed in the hope that it will be useful, 15 | but WITHOUT ANY WARRANTY; without even the implied warranty of 16 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 17 | GNU General Public License for more details. 18 | . 19 | On Debian systems, the complete text of the GNU General 20 | Public License can be found in `/usr/share/common-licenses/GPL' 21 | -------------------------------------------------------------------------------- /debian/install: -------------------------------------------------------------------------------- 1 | usr 2 | -------------------------------------------------------------------------------- /debian/postinst: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | set -e 3 | 4 | case "$1" in 5 | configure) 6 | if which glib-compile-schemas >/dev/null 2>&1 7 | then 8 | glib-compile-schemas /usr/share/glib-2.0/schemas 9 | fi 10 | ;; 11 | 12 | abort-upgrade|abort-remove|abort-deconfigure) 13 | 14 | ;; 15 | 16 | *) 17 | echo "postinst called with unknown argument \`$1'" >&2 18 | exit 1 19 | ;; 20 | esac 21 | -------------------------------------------------------------------------------- /debian/rules: -------------------------------------------------------------------------------- 1 | #!/usr/bin/make -f 2 | 3 | DEB_VERSION := $(shell dpkg-parsechangelog | egrep '^Version:' | cut -f 2 -d ' ') 4 | 5 | %: 6 | dh ${@} 7 | 8 | # Inject version number in the code 9 | override_dh_installdeb: 10 | dh_installdeb 11 | for pkg in $$(dh_listpackages -i); do \ 12 | find debian/$$pkg -type f -exec sed -i -e s/__DEB_VERSION__/$(DEB_VERSION)/g {} +; \ 13 | done 14 | -------------------------------------------------------------------------------- /debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (native) 2 | -------------------------------------------------------------------------------- /generate_desktop_files: -------------------------------------------------------------------------------- 1 | #!/usr/bin/python3 2 | 3 | DOMAIN = "mintupgrade" 4 | PATH = "/usr/share/locale" 5 | 6 | import os 7 | import gettext 8 | from mintcommon import additionalfiles 9 | 10 | os.environ['LANGUAGE'] = "en_US.UTF-8" 11 | gettext.install(DOMAIN, PATH) 12 | 13 | prefix = "[Desktop Entry]\n" 14 | 15 | suffix = """Exec=bash -c 'sudo mintupgrade;$SHELL' 16 | Icon=mintupgrade 17 | Terminal=true 18 | Type=Application 19 | Encoding=UTF-8 20 | Categories=GTK;GNOME;Utility;X-GNOME-Utilities; 21 | Keywords=project;keywords; 22 | StartupNotify=false 23 | NoDisplay=true 24 | """ 25 | 26 | additionalfiles.generate(DOMAIN, PATH, "usr/share/applications/mintupgrade.desktop", prefix, _("Upgrade Tool"), _("Upgrade Tool"), suffix) 27 | -------------------------------------------------------------------------------- /makepot: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | intltool-extract --type=gettext/glade usr/share/linuxmint/mintupgrade/mintupgrade.ui 3 | xgettext --language=Python --keyword=_ --keyword=N_ --output=mintupgrade.pot usr/lib/linuxmint/mintupgrade/*.py generate_desktop_files usr/share/linuxmint/mintupgrade/mintupgrade.ui.h 4 | rm -f usr/share/linuxmint/mintupgrade/*.ui.h 5 | -------------------------------------------------------------------------------- /mintupgrade.pot: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the PACKAGE package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: PACKAGE VERSION\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2023-09-26 14:10+0100\n" 12 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 13 | "Last-Translator: FULL NAME \n" 14 | "Language-Team: LANGUAGE \n" 15 | "Language: \n" 16 | "MIME-Version: 1.0\n" 17 | "Content-Type: text/plain; charset=CHARSET\n" 18 | "Content-Transfer-Encoding: 8bit\n" 19 | 20 | #: usr/lib/linuxmint/mintupgrade/checks.py:32 21 | #, python-format 22 | msgid "The package repositories need to point towards the new release (%s/%s)." 23 | msgstr "" 24 | 25 | #: usr/lib/linuxmint/mintupgrade/checks.py:34 26 | msgid "This should have be done by the Upgrade Tool already." 27 | msgstr "" 28 | 29 | #: usr/lib/linuxmint/mintupgrade/checks.py:35 30 | msgid "Were the repositories modified since?" 31 | msgstr "" 32 | 33 | #: usr/lib/linuxmint/mintupgrade/checks.py:36 34 | msgid "Re-run the Upgrade tool so that it migrates the repositories again." 35 | msgstr "" 36 | 37 | #: usr/lib/linuxmint/mintupgrade/checks.py:143 38 | msgid "Linux Mint version" 39 | msgstr "" 40 | 41 | #: usr/lib/linuxmint/mintupgrade/checks.py:143 42 | msgid "Checking your version of Linux Mint..." 43 | msgstr "" 44 | 45 | #: usr/lib/linuxmint/mintupgrade/checks.py:151 46 | msgid "Your version of Linux Mint is unknown. /etc/linuxmint/info is missing." 47 | msgstr "" 48 | 49 | #: usr/lib/linuxmint/mintupgrade/checks.py:168 50 | #, python-format 51 | msgid "Your version of Linux Mint is '%s'. Only %s can be upgraded to %s." 52 | msgstr "" 53 | 54 | #: usr/lib/linuxmint/mintupgrade/checks.py:174 55 | #, python-format 56 | msgid "Your edition of Linux Mint is '%s'. It cannot be upgraded to %s." 57 | msgstr "" 58 | 59 | #: usr/lib/linuxmint/mintupgrade/checks.py:181 60 | msgid "Power source" 61 | msgstr "" 62 | 63 | #: usr/lib/linuxmint/mintupgrade/checks.py:181 64 | msgid "Checking the power source..." 65 | msgstr "" 66 | 67 | #: usr/lib/linuxmint/mintupgrade/checks.py:186 68 | msgid "Connect the computer to a power source before attempting to upgrade." 69 | msgstr "" 70 | 71 | #: usr/lib/linuxmint/mintupgrade/checks.py:192 72 | msgid "System snapshots" 73 | msgstr "" 74 | 75 | #: usr/lib/linuxmint/mintupgrade/checks.py:192 76 | msgid "Checking system snapshots..." 77 | msgstr "" 78 | 79 | #: usr/lib/linuxmint/mintupgrade/checks.py:197 80 | msgid "" 81 | "If the upgrade isn't successful, a system snapshot will allow you to go back " 82 | "in time and revert all the changes." 83 | msgstr "" 84 | 85 | #: usr/lib/linuxmint/mintupgrade/checks.py:198 86 | msgid "Press 'Fix' to perform a system snapshot." 87 | msgstr "" 88 | 89 | #: usr/lib/linuxmint/mintupgrade/checks.py:214 90 | msgid "APT cache" 91 | msgstr "" 92 | 93 | #: usr/lib/linuxmint/mintupgrade/checks.py:214 94 | msgid "Checking the APT cache..." 95 | msgstr "" 96 | 97 | #: usr/lib/linuxmint/mintupgrade/checks.py:232 98 | msgid "" 99 | "Your package cache can't refresh correctly. Run 'apt update' and fix the " 100 | "errors it displays." 101 | msgstr "" 102 | 103 | #: usr/lib/linuxmint/mintupgrade/checks.py:241 104 | msgid "" 105 | "Some of your packages are broken. Run 'apt install -f' to fix the issue." 106 | msgstr "" 107 | 108 | #: usr/lib/linuxmint/mintupgrade/checks.py:252 109 | msgid "" 110 | "Your operating system is not up to date. Apply available updates before " 111 | "attempting the upgrade." 112 | msgstr "" 113 | 114 | #: usr/lib/linuxmint/mintupgrade/checks.py:273 115 | msgid "The following operations need to be performed:" 116 | msgstr "" 117 | 118 | #: usr/lib/linuxmint/mintupgrade/checks.py:275 119 | #: usr/lib/linuxmint/mintupgrade/checks.py:499 120 | msgid "Package" 121 | msgstr "" 122 | 123 | #: usr/lib/linuxmint/mintupgrade/checks.py:275 124 | msgid "Operation" 125 | msgstr "" 126 | 127 | #: usr/lib/linuxmint/mintupgrade/checks.py:277 128 | msgid "needs to be installed" 129 | msgstr "" 130 | 131 | #: usr/lib/linuxmint/mintupgrade/checks.py:279 132 | msgid "needs to be removed" 133 | msgstr "" 134 | 135 | #: usr/lib/linuxmint/mintupgrade/checks.py:308 136 | #: usr/lib/linuxmint/mintupgrade/checks.py:588 137 | msgid "Package repositories" 138 | msgstr "" 139 | 140 | #: usr/lib/linuxmint/mintupgrade/checks.py:308 141 | msgid "Checking package repositories..." 142 | msgstr "" 143 | 144 | #: usr/lib/linuxmint/mintupgrade/checks.py:322 145 | msgid "" 146 | "The following sources are defined in DEB822 format. This format isn't " 147 | "supported yet." 148 | msgstr "" 149 | 150 | #: usr/lib/linuxmint/mintupgrade/checks.py:328 151 | msgid "Backup and then delete these files to continue." 152 | msgstr "" 153 | 154 | #: usr/lib/linuxmint/mintupgrade/checks.py:356 155 | msgid "" 156 | "The following repositories do not explicitly support your version of Linux " 157 | "Mint." 158 | msgstr "" 159 | 160 | #: usr/lib/linuxmint/mintupgrade/checks.py:364 161 | msgid "These repositories need to be disabled." 162 | msgstr "" 163 | 164 | #: usr/lib/linuxmint/mintupgrade/checks.py:377 165 | msgid "Your APT policy is incorrect." 166 | msgstr "" 167 | 168 | #: usr/lib/linuxmint/mintupgrade/checks.py:378 169 | msgid "Reboot your computer." 170 | msgstr "" 171 | 172 | #: usr/lib/linuxmint/mintupgrade/checks.py:401 173 | #, python-format 174 | msgid "%s is unreachable" 175 | msgstr "" 176 | 177 | #: usr/lib/linuxmint/mintupgrade/checks.py:406 178 | #, python-format 179 | msgid "%s is not up to date. Switch to a different mirror." 180 | msgstr "" 181 | 182 | #: usr/lib/linuxmint/mintupgrade/checks.py:418 183 | #, python-format 184 | msgid "%s does not support %s" 185 | msgstr "" 186 | 187 | #: usr/lib/linuxmint/mintupgrade/checks.py:422 188 | msgid "The following problems were found:" 189 | msgstr "" 190 | 191 | #: usr/lib/linuxmint/mintupgrade/checks.py:464 192 | msgid "Held packages" 193 | msgstr "" 194 | 195 | #: usr/lib/linuxmint/mintupgrade/checks.py:464 196 | msgid "Looking for held packages..." 197 | msgstr "" 198 | 199 | #: usr/lib/linuxmint/mintupgrade/checks.py:470 200 | msgid "The following packages are held:" 201 | msgstr "" 202 | 203 | #: usr/lib/linuxmint/mintupgrade/checks.py:477 204 | msgid "Held packages can break the upgrade." 205 | msgstr "" 206 | 207 | #: usr/lib/linuxmint/mintupgrade/checks.py:491 208 | msgid "Foreign packages" 209 | msgstr "" 210 | 211 | #: usr/lib/linuxmint/mintupgrade/checks.py:491 212 | msgid "Looking for foreign packages..." 213 | msgstr "" 214 | 215 | #: usr/lib/linuxmint/mintupgrade/checks.py:497 216 | msgid "The following packages need to be downgraded back to official versions:" 217 | msgstr "" 218 | 219 | #: usr/lib/linuxmint/mintupgrade/checks.py:499 220 | msgid "Installed Version" 221 | msgstr "" 222 | 223 | #: usr/lib/linuxmint/mintupgrade/checks.py:499 224 | msgid "Official version" 225 | msgstr "" 226 | 227 | #: usr/lib/linuxmint/mintupgrade/checks.py:499 228 | msgid "Archive" 229 | msgstr "" 230 | 231 | #: usr/lib/linuxmint/mintupgrade/checks.py:504 232 | msgid "Otherwise these packages can create conflicts." 233 | msgstr "" 234 | 235 | #: usr/lib/linuxmint/mintupgrade/checks.py:520 236 | #: usr/lib/linuxmint/mintupgrade/checks.py:556 237 | msgid "Orphan packages" 238 | msgstr "" 239 | 240 | #: usr/lib/linuxmint/mintupgrade/checks.py:520 241 | msgid "Looking for orphan packages..." 242 | msgstr "" 243 | 244 | #: usr/lib/linuxmint/mintupgrade/checks.py:540 245 | msgid "The following packages do not exist in the repositories:" 246 | msgstr "" 247 | 248 | #: usr/lib/linuxmint/mintupgrade/checks.py:546 249 | msgid "In some rare cases orphan packages can interfere with the upgrade." 250 | msgstr "" 251 | 252 | #: usr/lib/linuxmint/mintupgrade/checks.py:547 253 | msgid "" 254 | "If you decide to uninstall some of these packages press 'Check again' after " 255 | "their removal." 256 | msgstr "" 257 | 258 | #: usr/lib/linuxmint/mintupgrade/checks.py:548 259 | msgid "Press 'OK' to continue with the upgrade." 260 | msgstr "" 261 | 262 | #: usr/lib/linuxmint/mintupgrade/checks.py:556 263 | msgid "Removing newly orphaned packages..." 264 | msgstr "" 265 | 266 | #: usr/lib/linuxmint/mintupgrade/checks.py:588 267 | msgid "Pointing to the new release..." 268 | msgstr "" 269 | 270 | #: usr/lib/linuxmint/mintupgrade/checks.py:627 271 | msgid "Upgrade simulation" 272 | msgstr "" 273 | 274 | #: usr/lib/linuxmint/mintupgrade/checks.py:627 275 | msgid "Simulating upgrade to check hard disk space and potential issues..." 276 | msgstr "" 277 | 278 | #: usr/lib/linuxmint/mintupgrade/checks.py:666 279 | msgid "The simulation was not successful." 280 | msgstr "" 281 | 282 | #: usr/lib/linuxmint/mintupgrade/checks.py:667 283 | msgid "Upgrading would remove the following important packages:" 284 | msgstr "" 285 | 286 | #: usr/lib/linuxmint/mintupgrade/checks.py:668 287 | msgid "Unwanted removals" 288 | msgstr "" 289 | 290 | #: usr/lib/linuxmint/mintupgrade/checks.py:672 291 | msgid "" 292 | "This is a sign that something is wrong and needs to be fixed before going " 293 | "further." 294 | msgstr "" 295 | 296 | #: usr/lib/linuxmint/mintupgrade/checks.py:674 297 | msgid "Recommended solution" 298 | msgstr "" 299 | 300 | #: usr/lib/linuxmint/mintupgrade/checks.py:675 301 | msgid "Use apt-get in a terminal to troubleshoot and solve the issue." 302 | msgstr "" 303 | 304 | #: usr/lib/linuxmint/mintupgrade/checks.py:676 305 | msgid "Don't hesitate to seek help on the forums and the chat room." 306 | msgstr "" 307 | 308 | #: usr/lib/linuxmint/mintupgrade/checks.py:678 309 | msgid "Additional information" 310 | msgstr "" 311 | 312 | #: usr/lib/linuxmint/mintupgrade/checks.py:679 313 | msgid "The information below might help solve the issue." 314 | msgstr "" 315 | 316 | #: usr/lib/linuxmint/mintupgrade/checks.py:680 317 | #: usr/lib/linuxmint/mintupgrade/checks.py:692 318 | msgid "Kept packages" 319 | msgstr "" 320 | 321 | #: usr/lib/linuxmint/mintupgrade/checks.py:681 322 | #: usr/lib/linuxmint/mintupgrade/checks.py:696 323 | msgid "Removed packages" 324 | msgstr "" 325 | 326 | #: usr/lib/linuxmint/mintupgrade/checks.py:682 327 | #: usr/lib/linuxmint/mintupgrade/checks.py:695 328 | msgid "Added packages" 329 | msgstr "" 330 | 331 | #: usr/lib/linuxmint/mintupgrade/checks.py:683 332 | #: usr/lib/linuxmint/mintupgrade/checks.py:691 333 | #, python-format 334 | msgid "Packages updated: %d, added: %d , kept: %d, deleted: %d" 335 | msgstr "" 336 | 337 | #: usr/lib/linuxmint/mintupgrade/checks.py:686 338 | msgid "Upgrading will perform the following changes." 339 | msgstr "" 340 | 341 | #: usr/lib/linuxmint/mintupgrade/checks.py:694 342 | msgid "" 343 | "Note: Ideally, no packages should be kept. This might indicate an issue." 344 | msgstr "" 345 | 346 | #: usr/lib/linuxmint/mintupgrade/checks.py:698 347 | msgid "" 348 | "Go through the list above and make sure you are happy with the removals " 349 | "before going further with the upgrade." 350 | msgstr "" 351 | 352 | #: usr/lib/linuxmint/mintupgrade/checks.py:795 353 | #, python-format 354 | msgid "You need %s on '%s' but only have %s. You must free an additional %s." 355 | msgstr "" 356 | 357 | #: usr/lib/linuxmint/mintupgrade/checks.py:799 358 | #, python-format 359 | msgid "Download size: %s. Additional space needed: %s." 360 | msgstr "" 361 | 362 | #: usr/lib/linuxmint/mintupgrade/checks.py:805 363 | msgid "Package download" 364 | msgstr "" 365 | 366 | #: usr/lib/linuxmint/mintupgrade/checks.py:805 367 | msgid "Downloading packages..." 368 | msgstr "" 369 | 370 | #: usr/lib/linuxmint/mintupgrade/checks.py:817 371 | msgid "An error occurred while downloading the packages." 372 | msgstr "" 373 | 374 | #: usr/lib/linuxmint/mintupgrade/checks.py:824 375 | msgid "Session inhibition" 376 | msgstr "" 377 | 378 | #: usr/lib/linuxmint/mintupgrade/checks.py:824 379 | msgid "Inhibiting session..." 380 | msgstr "" 381 | 382 | #: usr/lib/linuxmint/mintupgrade/checks.py:833 383 | msgid "Upgrade preparation" 384 | msgstr "" 385 | 386 | #: usr/lib/linuxmint/mintupgrade/checks.py:833 387 | msgid "Preparing the upgrade..." 388 | msgstr "" 389 | 390 | #: usr/lib/linuxmint/mintupgrade/checks.py:862 391 | msgid "Upgrade phase" 392 | msgstr "" 393 | 394 | #: usr/lib/linuxmint/mintupgrade/checks.py:862 395 | msgid "Upgrading the system..." 396 | msgstr "" 397 | 398 | #: usr/lib/linuxmint/mintupgrade/checks.py:879 399 | #: usr/lib/linuxmint/mintupgrade/checks.py:885 400 | msgid "An issue was detected during the upgrade." 401 | msgstr "" 402 | 403 | #: usr/lib/linuxmint/mintupgrade/checks.py:904 404 | #, python-format 405 | msgid "%d packages still need to be updated (%d kept, %d deleted)" 406 | msgstr "" 407 | 408 | #: usr/lib/linuxmint/mintupgrade/checks.py:910 409 | msgid "Final phase" 410 | msgstr "" 411 | 412 | #: usr/lib/linuxmint/mintupgrade/checks.py:910 413 | msgid "Finalizing the upgrade..." 414 | msgstr "" 415 | 416 | #: usr/lib/linuxmint/mintupgrade/checks.py:929 417 | #, python-format 418 | msgid "%s could not be installed." 419 | msgstr "" 420 | 421 | #: usr/lib/linuxmint/mintupgrade/checks.py:936 422 | msgid "mint-meta-codecs could not be installed." 423 | msgstr "" 424 | 425 | #: usr/lib/linuxmint/mintupgrade/checks.py:944 426 | #: usr/lib/linuxmint/mintupgrade/checks.py:967 427 | msgid "The following packages could not be installed:" 428 | msgstr "" 429 | 430 | #: usr/lib/linuxmint/mintupgrade/checks.py:1030 431 | msgid "/etc/fstab was modified during the upgrade." 432 | msgstr "" 433 | 434 | #: usr/lib/linuxmint/mintupgrade/checks.py:1031 435 | msgid "" 436 | "To ensure a successful boot, the upgrade tool restored your original /etc/" 437 | "fstab" 438 | msgstr "" 439 | 440 | #: usr/lib/linuxmint/mintupgrade/checks.py:1032 441 | msgid "A copy of the modified file was saved as /etc/fstab.upgraded" 442 | msgstr "" 443 | 444 | #: usr/lib/linuxmint/mintupgrade/mintupgrade.py:63 445 | #: usr/lib/linuxmint/mintupgrade/mintupgrade.py:285 generate_desktop_files:26 446 | #: usr/share/linuxmint/mintupgrade/mintupgrade.ui.h:16 447 | msgid "Upgrade Tool" 448 | msgstr "" 449 | 450 | #: usr/lib/linuxmint/mintupgrade/mintupgrade.py:74 451 | #: usr/share/linuxmint/mintupgrade/mintupgrade.ui.h:2 452 | #, python-format 453 | msgid "Upgrade to %s" 454 | msgstr "" 455 | 456 | #: usr/lib/linuxmint/mintupgrade/mintupgrade.py:90 457 | msgid "Preferences" 458 | msgstr "" 459 | 460 | #: usr/lib/linuxmint/mintupgrade/mintupgrade.py:95 461 | #: usr/lib/linuxmint/mintupgrade/mintupgrade.py:284 462 | msgid "About" 463 | msgstr "" 464 | 465 | #: usr/lib/linuxmint/mintupgrade/mintupgrade.py:100 466 | msgid "Quit" 467 | msgstr "" 468 | 469 | #: usr/lib/linuxmint/mintupgrade/mintupgrade.py:144 470 | msgid "Phase 1: Preparation" 471 | msgstr "" 472 | 473 | #: usr/lib/linuxmint/mintupgrade/mintupgrade.py:145 474 | msgid "" 475 | "A series of tests will now be performed to prepare the computer for the " 476 | "upgrade." 477 | msgstr "" 478 | 479 | #: usr/lib/linuxmint/mintupgrade/mintupgrade.py:157 480 | msgid "Phase 2: Simulation and download" 481 | msgstr "" 482 | 483 | #: usr/lib/linuxmint/mintupgrade/mintupgrade.py:158 484 | msgid "Your package repositories will now point towards the new release." 485 | msgstr "" 486 | 487 | #: usr/lib/linuxmint/mintupgrade/mintupgrade.py:159 488 | msgid "A few more tests will be run and package updates will be downloaded." 489 | msgstr "" 490 | 491 | #: usr/lib/linuxmint/mintupgrade/mintupgrade.py:165 492 | msgid "Phase 3: Upgrade" 493 | msgstr "" 494 | 495 | #: usr/lib/linuxmint/mintupgrade/mintupgrade.py:166 496 | msgid "The packages will now be upgraded." 497 | msgstr "" 498 | 499 | #: usr/share/linuxmint/mintupgrade/mintupgrade.ui.h:3 500 | msgid "" 501 | "This program will ask you some questions and upgrade your operating system." 502 | msgstr "" 503 | 504 | #: usr/share/linuxmint/mintupgrade/mintupgrade.ui.h:4 505 | msgid "Let's go!" 506 | msgstr "" 507 | 508 | #: usr/share/linuxmint/mintupgrade/mintupgrade.ui.h:5 509 | msgid "OK" 510 | msgstr "" 511 | 512 | #: usr/share/linuxmint/mintupgrade/mintupgrade.ui.h:6 513 | msgid "Fix" 514 | msgstr "" 515 | 516 | #: usr/share/linuxmint/mintupgrade/mintupgrade.ui.h:7 517 | msgid "Check again" 518 | msgstr "" 519 | 520 | #: usr/share/linuxmint/mintupgrade/mintupgrade.ui.h:8 521 | msgid "The following error occurred:" 522 | msgstr "" 523 | 524 | #: usr/share/linuxmint/mintupgrade/mintupgrade.ui.h:9 525 | msgid "The upgrade was successful." 526 | msgstr "" 527 | 528 | #: usr/share/linuxmint/mintupgrade/mintupgrade.ui.h:10 529 | msgid "Reboot the computer for all the changes to take effect." 530 | msgstr "" 531 | 532 | #: usr/share/linuxmint/mintupgrade/mintupgrade.ui.h:11 533 | msgid "Recent Timeshift snapshot" 534 | msgstr "" 535 | 536 | #: usr/share/linuxmint/mintupgrade/mintupgrade.ui.h:12 537 | msgid "Applied software updates" 538 | msgstr "" 539 | 540 | #: usr/share/linuxmint/mintupgrade/mintupgrade.ui.h:13 541 | msgid "" 542 | "These requirements are there to guarantee a safe upgrade. Only disable them " 543 | "if you know what you are doing." 544 | msgstr "" 545 | 546 | #: usr/share/linuxmint/mintupgrade/mintupgrade.ui.h:14 547 | msgid "Supported Linux Mint version" 548 | msgstr "" 549 | 550 | #: usr/share/linuxmint/mintupgrade/mintupgrade.ui.h:15 551 | msgid "Requirements" 552 | msgstr "" 553 | -------------------------------------------------------------------------------- /po/mintupgrade-am.po: -------------------------------------------------------------------------------- 1 | # Amharic translation for linuxmint 2 | # Copyright (c) 2023 Rosetta Contributors and Canonical Ltd 2023 3 | # This file is distributed under the same license as the linuxmint package. 4 | # FIRST AUTHOR , 2023. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: linuxmint\n" 9 | "Report-Msgid-Bugs-To: FULL NAME \n" 10 | "POT-Creation-Date: 2023-09-26 14:10+0100\n" 11 | "PO-Revision-Date: 2024-11-29 21:09+0000\n" 12 | "Last-Translator: samson \n" 13 | "Language-Team: Amharic \n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "X-Launchpad-Export-Date: 2025-01-06 12:02+0000\n" 18 | "X-Generator: Launchpad (build 6394e03793719e8d73f5a60b5439440e693c92f1)\n" 19 | 20 | #: usr/lib/linuxmint/mintupgrade/checks.py:32 21 | #, python-format 22 | msgid "" 23 | "The package repositories need to point towards the new release (%s/%s)." 24 | msgstr "" 25 | 26 | #: usr/lib/linuxmint/mintupgrade/checks.py:34 27 | msgid "This should have be done by the Upgrade Tool already." 28 | msgstr "" 29 | 30 | #: usr/lib/linuxmint/mintupgrade/checks.py:35 31 | msgid "Were the repositories modified since?" 32 | msgstr "" 33 | 34 | #: usr/lib/linuxmint/mintupgrade/checks.py:36 35 | msgid "Re-run the Upgrade tool so that it migrates the repositories again." 36 | msgstr "" 37 | 38 | #: usr/lib/linuxmint/mintupgrade/checks.py:143 39 | msgid "Linux Mint version" 40 | msgstr "" 41 | 42 | #: usr/lib/linuxmint/mintupgrade/checks.py:143 43 | msgid "Checking your version of Linux Mint..." 44 | msgstr "" 45 | 46 | #: usr/lib/linuxmint/mintupgrade/checks.py:151 47 | msgid "" 48 | "Your version of Linux Mint is unknown. /etc/linuxmint/info is missing." 49 | msgstr "" 50 | 51 | #: usr/lib/linuxmint/mintupgrade/checks.py:168 52 | #, python-format 53 | msgid "Your version of Linux Mint is '%s'. Only %s can be upgraded to %s." 54 | msgstr "" 55 | 56 | #: usr/lib/linuxmint/mintupgrade/checks.py:174 57 | #, python-format 58 | msgid "Your edition of Linux Mint is '%s'. It cannot be upgraded to %s." 59 | msgstr "" 60 | 61 | #: usr/lib/linuxmint/mintupgrade/checks.py:181 62 | msgid "Power source" 63 | msgstr "" 64 | 65 | #: usr/lib/linuxmint/mintupgrade/checks.py:181 66 | msgid "Checking the power source..." 67 | msgstr "" 68 | 69 | #: usr/lib/linuxmint/mintupgrade/checks.py:186 70 | msgid "Connect the computer to a power source before attempting to upgrade." 71 | msgstr "" 72 | 73 | #: usr/lib/linuxmint/mintupgrade/checks.py:192 74 | msgid "System snapshots" 75 | msgstr "" 76 | 77 | #: usr/lib/linuxmint/mintupgrade/checks.py:192 78 | msgid "Checking system snapshots..." 79 | msgstr "" 80 | 81 | #: usr/lib/linuxmint/mintupgrade/checks.py:197 82 | msgid "" 83 | "If the upgrade isn't successful, a system snapshot will allow you to go back " 84 | "in time and revert all the changes." 85 | msgstr "" 86 | 87 | #: usr/lib/linuxmint/mintupgrade/checks.py:198 88 | msgid "Press 'Fix' to perform a system snapshot." 89 | msgstr "" 90 | 91 | #: usr/lib/linuxmint/mintupgrade/checks.py:214 92 | msgid "APT cache" 93 | msgstr "" 94 | 95 | #: usr/lib/linuxmint/mintupgrade/checks.py:214 96 | msgid "Checking the APT cache..." 97 | msgstr "" 98 | 99 | #: usr/lib/linuxmint/mintupgrade/checks.py:232 100 | msgid "" 101 | "Your package cache can't refresh correctly. Run 'apt update' and fix the " 102 | "errors it displays." 103 | msgstr "" 104 | 105 | #: usr/lib/linuxmint/mintupgrade/checks.py:241 106 | msgid "" 107 | "Some of your packages are broken. Run 'apt install -f' to fix the issue." 108 | msgstr "" 109 | 110 | #: usr/lib/linuxmint/mintupgrade/checks.py:252 111 | msgid "" 112 | "Your operating system is not up to date. Apply available updates before " 113 | "attempting the upgrade." 114 | msgstr "" 115 | 116 | #: usr/lib/linuxmint/mintupgrade/checks.py:273 117 | msgid "The following operations need to be performed:" 118 | msgstr "" 119 | 120 | #: usr/lib/linuxmint/mintupgrade/checks.py:275 121 | #: usr/lib/linuxmint/mintupgrade/checks.py:499 122 | msgid "Package" 123 | msgstr "ጥቅል" 124 | 125 | #: usr/lib/linuxmint/mintupgrade/checks.py:275 126 | msgid "Operation" 127 | msgstr "" 128 | 129 | #: usr/lib/linuxmint/mintupgrade/checks.py:277 130 | msgid "needs to be installed" 131 | msgstr "" 132 | 133 | #: usr/lib/linuxmint/mintupgrade/checks.py:279 134 | msgid "needs to be removed" 135 | msgstr "" 136 | 137 | #: usr/lib/linuxmint/mintupgrade/checks.py:308 138 | #: usr/lib/linuxmint/mintupgrade/checks.py:588 139 | msgid "Package repositories" 140 | msgstr "" 141 | 142 | #: usr/lib/linuxmint/mintupgrade/checks.py:308 143 | msgid "Checking package repositories..." 144 | msgstr "" 145 | 146 | #: usr/lib/linuxmint/mintupgrade/checks.py:322 147 | msgid "" 148 | "The following sources are defined in DEB822 format. This format isn't " 149 | "supported yet." 150 | msgstr "" 151 | 152 | #: usr/lib/linuxmint/mintupgrade/checks.py:328 153 | msgid "Backup and then delete these files to continue." 154 | msgstr "" 155 | 156 | #: usr/lib/linuxmint/mintupgrade/checks.py:356 157 | msgid "" 158 | "The following repositories do not explicitly support your version of Linux " 159 | "Mint." 160 | msgstr "" 161 | 162 | #: usr/lib/linuxmint/mintupgrade/checks.py:364 163 | msgid "These repositories need to be disabled." 164 | msgstr "" 165 | 166 | #: usr/lib/linuxmint/mintupgrade/checks.py:377 167 | msgid "Your APT policy is incorrect." 168 | msgstr "" 169 | 170 | #: usr/lib/linuxmint/mintupgrade/checks.py:378 171 | msgid "Reboot your computer." 172 | msgstr "" 173 | 174 | #: usr/lib/linuxmint/mintupgrade/checks.py:401 175 | #, python-format 176 | msgid "%s is unreachable" 177 | msgstr "" 178 | 179 | #: usr/lib/linuxmint/mintupgrade/checks.py:406 180 | #, python-format 181 | msgid "%s is not up to date. Switch to a different mirror." 182 | msgstr "" 183 | 184 | #: usr/lib/linuxmint/mintupgrade/checks.py:418 185 | #, python-format 186 | msgid "%s does not support %s" 187 | msgstr "" 188 | 189 | #: usr/lib/linuxmint/mintupgrade/checks.py:422 190 | msgid "The following problems were found:" 191 | msgstr "" 192 | 193 | #: usr/lib/linuxmint/mintupgrade/checks.py:464 194 | msgid "Held packages" 195 | msgstr "" 196 | 197 | #: usr/lib/linuxmint/mintupgrade/checks.py:464 198 | msgid "Looking for held packages..." 199 | msgstr "" 200 | 201 | #: usr/lib/linuxmint/mintupgrade/checks.py:470 202 | msgid "The following packages are held:" 203 | msgstr "" 204 | 205 | #: usr/lib/linuxmint/mintupgrade/checks.py:477 206 | msgid "Held packages can break the upgrade." 207 | msgstr "" 208 | 209 | #: usr/lib/linuxmint/mintupgrade/checks.py:491 210 | msgid "Foreign packages" 211 | msgstr "እንግዳ ጥቅሎች" 212 | 213 | #: usr/lib/linuxmint/mintupgrade/checks.py:491 214 | msgid "Looking for foreign packages..." 215 | msgstr "" 216 | 217 | #: usr/lib/linuxmint/mintupgrade/checks.py:497 218 | msgid "" 219 | "The following packages need to be downgraded back to official versions:" 220 | msgstr "" 221 | 222 | #: usr/lib/linuxmint/mintupgrade/checks.py:499 223 | msgid "Installed Version" 224 | msgstr "የተገጠመው እትም" 225 | 226 | #: usr/lib/linuxmint/mintupgrade/checks.py:499 227 | msgid "Official version" 228 | msgstr "ዋናው እትም" 229 | 230 | #: usr/lib/linuxmint/mintupgrade/checks.py:499 231 | msgid "Archive" 232 | msgstr "ማህደር" 233 | 234 | #: usr/lib/linuxmint/mintupgrade/checks.py:504 235 | msgid "Otherwise these packages can create conflicts." 236 | msgstr "" 237 | 238 | #: usr/lib/linuxmint/mintupgrade/checks.py:520 239 | #: usr/lib/linuxmint/mintupgrade/checks.py:556 240 | msgid "Orphan packages" 241 | msgstr "" 242 | 243 | #: usr/lib/linuxmint/mintupgrade/checks.py:520 244 | msgid "Looking for orphan packages..." 245 | msgstr "" 246 | 247 | #: usr/lib/linuxmint/mintupgrade/checks.py:540 248 | msgid "The following packages do not exist in the repositories:" 249 | msgstr "" 250 | 251 | #: usr/lib/linuxmint/mintupgrade/checks.py:546 252 | msgid "In some rare cases orphan packages can interfere with the upgrade." 253 | msgstr "" 254 | 255 | #: usr/lib/linuxmint/mintupgrade/checks.py:547 256 | msgid "" 257 | "If you decide to uninstall some of these packages press 'Check again' after " 258 | "their removal." 259 | msgstr "" 260 | 261 | #: usr/lib/linuxmint/mintupgrade/checks.py:548 262 | msgid "Press 'OK' to continue with the upgrade." 263 | msgstr "" 264 | 265 | #: usr/lib/linuxmint/mintupgrade/checks.py:556 266 | msgid "Removing newly orphaned packages..." 267 | msgstr "" 268 | 269 | #: usr/lib/linuxmint/mintupgrade/checks.py:588 270 | msgid "Pointing to the new release..." 271 | msgstr "" 272 | 273 | #: usr/lib/linuxmint/mintupgrade/checks.py:627 274 | msgid "Upgrade simulation" 275 | msgstr "" 276 | 277 | #: usr/lib/linuxmint/mintupgrade/checks.py:627 278 | msgid "Simulating upgrade to check hard disk space and potential issues..." 279 | msgstr "" 280 | 281 | #: usr/lib/linuxmint/mintupgrade/checks.py:666 282 | msgid "The simulation was not successful." 283 | msgstr "" 284 | 285 | #: usr/lib/linuxmint/mintupgrade/checks.py:667 286 | msgid "Upgrading would remove the following important packages:" 287 | msgstr "" 288 | 289 | #: usr/lib/linuxmint/mintupgrade/checks.py:668 290 | msgid "Unwanted removals" 291 | msgstr "" 292 | 293 | #: usr/lib/linuxmint/mintupgrade/checks.py:672 294 | msgid "" 295 | "This is a sign that something is wrong and needs to be fixed before going " 296 | "further." 297 | msgstr "" 298 | 299 | #: usr/lib/linuxmint/mintupgrade/checks.py:674 300 | msgid "Recommended solution" 301 | msgstr "" 302 | 303 | #: usr/lib/linuxmint/mintupgrade/checks.py:675 304 | msgid "Use apt-get in a terminal to troubleshoot and solve the issue." 305 | msgstr "" 306 | 307 | #: usr/lib/linuxmint/mintupgrade/checks.py:676 308 | msgid "Don't hesitate to seek help on the forums and the chat room." 309 | msgstr "" 310 | 311 | #: usr/lib/linuxmint/mintupgrade/checks.py:678 312 | msgid "Additional information" 313 | msgstr "ተጨማሪ መረጃ" 314 | 315 | #: usr/lib/linuxmint/mintupgrade/checks.py:679 316 | msgid "The information below might help solve the issue." 317 | msgstr "" 318 | 319 | #: usr/lib/linuxmint/mintupgrade/checks.py:680 320 | #: usr/lib/linuxmint/mintupgrade/checks.py:692 321 | msgid "Kept packages" 322 | msgstr "" 323 | 324 | #: usr/lib/linuxmint/mintupgrade/checks.py:681 325 | #: usr/lib/linuxmint/mintupgrade/checks.py:696 326 | msgid "Removed packages" 327 | msgstr "የ ተወገዱ ጥቅሎች" 328 | 329 | #: usr/lib/linuxmint/mintupgrade/checks.py:682 330 | #: usr/lib/linuxmint/mintupgrade/checks.py:695 331 | msgid "Added packages" 332 | msgstr "የ ተጨመሩ ጥቅሎች" 333 | 334 | #: usr/lib/linuxmint/mintupgrade/checks.py:683 335 | #: usr/lib/linuxmint/mintupgrade/checks.py:691 336 | #, python-format 337 | msgid "Packages updated: %d, added: %d , kept: %d, deleted: %d" 338 | msgstr "" 339 | 340 | #: usr/lib/linuxmint/mintupgrade/checks.py:686 341 | msgid "Upgrading will perform the following changes." 342 | msgstr "" 343 | 344 | #: usr/lib/linuxmint/mintupgrade/checks.py:694 345 | msgid "" 346 | "Note: Ideally, no packages should be kept. This might indicate an issue." 347 | msgstr "" 348 | 349 | #: usr/lib/linuxmint/mintupgrade/checks.py:698 350 | msgid "" 351 | "Go through the list above and make sure you are happy with the removals " 352 | "before going further with the upgrade." 353 | msgstr "" 354 | 355 | #: usr/lib/linuxmint/mintupgrade/checks.py:795 356 | #, python-format 357 | msgid "You need %s on '%s' but only have %s. You must free an additional %s." 358 | msgstr "" 359 | 360 | #: usr/lib/linuxmint/mintupgrade/checks.py:799 361 | #, python-format 362 | msgid "Download size: %s. Additional space needed: %s." 363 | msgstr "" 364 | 365 | #: usr/lib/linuxmint/mintupgrade/checks.py:805 366 | msgid "Package download" 367 | msgstr "" 368 | 369 | #: usr/lib/linuxmint/mintupgrade/checks.py:805 370 | msgid "Downloading packages..." 371 | msgstr "ጥቅሎች በ ማውረድ ላይ..." 372 | 373 | #: usr/lib/linuxmint/mintupgrade/checks.py:817 374 | msgid "An error occurred while downloading the packages." 375 | msgstr "ጥቅሎች በ ማውረድ ላይ እንዳለ ስህተት ተፈጥሯል" 376 | 377 | #: usr/lib/linuxmint/mintupgrade/checks.py:824 378 | msgid "Session inhibition" 379 | msgstr "" 380 | 381 | #: usr/lib/linuxmint/mintupgrade/checks.py:824 382 | msgid "Inhibiting session..." 383 | msgstr "" 384 | 385 | #: usr/lib/linuxmint/mintupgrade/checks.py:833 386 | msgid "Upgrade preparation" 387 | msgstr "" 388 | 389 | #: usr/lib/linuxmint/mintupgrade/checks.py:833 390 | msgid "Preparing the upgrade..." 391 | msgstr "" 392 | 393 | #: usr/lib/linuxmint/mintupgrade/checks.py:862 394 | msgid "Upgrade phase" 395 | msgstr "" 396 | 397 | #: usr/lib/linuxmint/mintupgrade/checks.py:862 398 | msgid "Upgrading the system..." 399 | msgstr "" 400 | 401 | #: usr/lib/linuxmint/mintupgrade/checks.py:879 402 | #: usr/lib/linuxmint/mintupgrade/checks.py:885 403 | msgid "An issue was detected during the upgrade." 404 | msgstr "" 405 | 406 | #: usr/lib/linuxmint/mintupgrade/checks.py:904 407 | #, python-format 408 | msgid "%d packages still need to be updated (%d kept, %d deleted)" 409 | msgstr "" 410 | 411 | #: usr/lib/linuxmint/mintupgrade/checks.py:910 412 | msgid "Final phase" 413 | msgstr "" 414 | 415 | #: usr/lib/linuxmint/mintupgrade/checks.py:910 416 | msgid "Finalizing the upgrade..." 417 | msgstr "" 418 | 419 | #: usr/lib/linuxmint/mintupgrade/checks.py:929 420 | #, python-format 421 | msgid "%s could not be installed." 422 | msgstr "" 423 | 424 | #: usr/lib/linuxmint/mintupgrade/checks.py:936 425 | msgid "mint-meta-codecs could not be installed." 426 | msgstr "" 427 | 428 | #: usr/lib/linuxmint/mintupgrade/checks.py:944 429 | #: usr/lib/linuxmint/mintupgrade/checks.py:967 430 | msgid "The following packages could not be installed:" 431 | msgstr "" 432 | 433 | #: usr/lib/linuxmint/mintupgrade/checks.py:1030 434 | msgid "/etc/fstab was modified during the upgrade." 435 | msgstr "" 436 | 437 | #: usr/lib/linuxmint/mintupgrade/checks.py:1031 438 | msgid "" 439 | "To ensure a successful boot, the upgrade tool restored your original " 440 | "/etc/fstab" 441 | msgstr "" 442 | 443 | #: usr/lib/linuxmint/mintupgrade/checks.py:1032 444 | msgid "A copy of the modified file was saved as /etc/fstab.upgraded" 445 | msgstr "" 446 | 447 | #: usr/lib/linuxmint/mintupgrade/mintupgrade.py:63 448 | #: usr/lib/linuxmint/mintupgrade/mintupgrade.py:285 generate_desktop_files:26 449 | #: usr/share/linuxmint/mintupgrade/mintupgrade.ui.h:16 450 | msgid "Upgrade Tool" 451 | msgstr "የ ማሻሻያ መሳሪያዎች" 452 | 453 | #: usr/lib/linuxmint/mintupgrade/mintupgrade.py:74 454 | #: usr/share/linuxmint/mintupgrade/mintupgrade.ui.h:2 455 | #, python-format 456 | msgid "Upgrade to %s" 457 | msgstr "ማሻሻያ ወደ %s" 458 | 459 | #: usr/lib/linuxmint/mintupgrade/mintupgrade.py:90 460 | msgid "Preferences" 461 | msgstr "ምርጫዎች" 462 | 463 | #: usr/lib/linuxmint/mintupgrade/mintupgrade.py:95 464 | #: usr/lib/linuxmint/mintupgrade/mintupgrade.py:284 465 | msgid "About" 466 | msgstr "ስለ" 467 | 468 | #: usr/lib/linuxmint/mintupgrade/mintupgrade.py:100 469 | msgid "Quit" 470 | msgstr "ማጥፊያ" 471 | 472 | #: usr/lib/linuxmint/mintupgrade/mintupgrade.py:144 473 | msgid "Phase 1: Preparation" 474 | msgstr "" 475 | 476 | #: usr/lib/linuxmint/mintupgrade/mintupgrade.py:145 477 | msgid "" 478 | "A series of tests will now be performed to prepare the computer for the " 479 | "upgrade." 480 | msgstr "" 481 | 482 | #: usr/lib/linuxmint/mintupgrade/mintupgrade.py:157 483 | msgid "Phase 2: Simulation and download" 484 | msgstr "" 485 | 486 | #: usr/lib/linuxmint/mintupgrade/mintupgrade.py:158 487 | msgid "Your package repositories will now point towards the new release." 488 | msgstr "" 489 | 490 | #: usr/lib/linuxmint/mintupgrade/mintupgrade.py:159 491 | msgid "A few more tests will be run and package updates will be downloaded." 492 | msgstr "" 493 | 494 | #: usr/lib/linuxmint/mintupgrade/mintupgrade.py:165 495 | msgid "Phase 3: Upgrade" 496 | msgstr "" 497 | 498 | #: usr/lib/linuxmint/mintupgrade/mintupgrade.py:166 499 | msgid "The packages will now be upgraded." 500 | msgstr "" 501 | 502 | #: usr/share/linuxmint/mintupgrade/mintupgrade.ui.h:3 503 | msgid "" 504 | "This program will ask you some questions and upgrade your operating system." 505 | msgstr "" 506 | 507 | #: usr/share/linuxmint/mintupgrade/mintupgrade.ui.h:4 508 | msgid "Let's go!" 509 | msgstr "እንሂድ!" 510 | 511 | #: usr/share/linuxmint/mintupgrade/mintupgrade.ui.h:5 512 | msgid "OK" 513 | msgstr "እሺ" 514 | 515 | #: usr/share/linuxmint/mintupgrade/mintupgrade.ui.h:6 516 | msgid "Fix" 517 | msgstr "መጠገኛ" 518 | 519 | #: usr/share/linuxmint/mintupgrade/mintupgrade.ui.h:7 520 | msgid "Check again" 521 | msgstr "እንደገና ይሞክሩ" 522 | 523 | #: usr/share/linuxmint/mintupgrade/mintupgrade.ui.h:8 524 | msgid "The following error occurred:" 525 | msgstr "የሚቀጥለው ስህተት ተፈጥሯል:" 526 | 527 | #: usr/share/linuxmint/mintupgrade/mintupgrade.ui.h:9 528 | msgid "The upgrade was successful." 529 | msgstr "ማሻሻሉ ተሳክቷል" 530 | 531 | #: usr/share/linuxmint/mintupgrade/mintupgrade.ui.h:10 532 | msgid "Reboot the computer for all the changes to take effect." 533 | msgstr "" 534 | 535 | #: usr/share/linuxmint/mintupgrade/mintupgrade.ui.h:11 536 | msgid "Recent Timeshift snapshot" 537 | msgstr "" 538 | 539 | #: usr/share/linuxmint/mintupgrade/mintupgrade.ui.h:12 540 | msgid "Applied software updates" 541 | msgstr "" 542 | 543 | #: usr/share/linuxmint/mintupgrade/mintupgrade.ui.h:13 544 | msgid "" 545 | "These requirements are there to guarantee a safe upgrade. Only disable them " 546 | "if you know what you are doing." 547 | msgstr "" 548 | 549 | #: usr/share/linuxmint/mintupgrade/mintupgrade.ui.h:14 550 | msgid "Supported Linux Mint version" 551 | msgstr "" 552 | 553 | #: usr/share/linuxmint/mintupgrade/mintupgrade.ui.h:15 554 | msgid "Requirements" 555 | msgstr "የሚያስፈልገው" 556 | -------------------------------------------------------------------------------- /po/mintupgrade-br.po: -------------------------------------------------------------------------------- 1 | # Breton translation for linuxmint 2 | # Copyright (c) 2024 Rosetta Contributors and Canonical Ltd 2024 3 | # This file is distributed under the same license as the linuxmint package. 4 | # FIRST AUTHOR , 2024. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: linuxmint\n" 9 | "Report-Msgid-Bugs-To: FULL NAME \n" 10 | "POT-Creation-Date: 2023-09-26 14:10+0100\n" 11 | "PO-Revision-Date: 2024-06-24 14:12+0000\n" 12 | "Last-Translator: Anthony Guechoum \n" 13 | "Language-Team: Breton \n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "X-Launchpad-Export-Date: 2025-01-06 12:02+0000\n" 18 | "X-Generator: Launchpad (build 6394e03793719e8d73f5a60b5439440e693c92f1)\n" 19 | 20 | #: usr/lib/linuxmint/mintupgrade/checks.py:32 21 | #, python-format 22 | msgid "" 23 | "The package repositories need to point towards the new release (%s/%s)." 24 | msgstr "" 25 | 26 | #: usr/lib/linuxmint/mintupgrade/checks.py:34 27 | msgid "This should have be done by the Upgrade Tool already." 28 | msgstr "" 29 | 30 | #: usr/lib/linuxmint/mintupgrade/checks.py:35 31 | msgid "Were the repositories modified since?" 32 | msgstr "" 33 | 34 | #: usr/lib/linuxmint/mintupgrade/checks.py:36 35 | msgid "Re-run the Upgrade tool so that it migrates the repositories again." 36 | msgstr "" 37 | 38 | #: usr/lib/linuxmint/mintupgrade/checks.py:143 39 | msgid "Linux Mint version" 40 | msgstr "Handelv Linux Mint" 41 | 42 | #: usr/lib/linuxmint/mintupgrade/checks.py:143 43 | msgid "Checking your version of Linux Mint..." 44 | msgstr "" 45 | 46 | #: usr/lib/linuxmint/mintupgrade/checks.py:151 47 | msgid "" 48 | "Your version of Linux Mint is unknown. /etc/linuxmint/info is missing." 49 | msgstr "" 50 | 51 | #: usr/lib/linuxmint/mintupgrade/checks.py:168 52 | #, python-format 53 | msgid "Your version of Linux Mint is '%s'. Only %s can be upgraded to %s." 54 | msgstr "" 55 | 56 | #: usr/lib/linuxmint/mintupgrade/checks.py:174 57 | #, python-format 58 | msgid "Your edition of Linux Mint is '%s'. It cannot be upgraded to %s." 59 | msgstr "" 60 | 61 | #: usr/lib/linuxmint/mintupgrade/checks.py:181 62 | msgid "Power source" 63 | msgstr "" 64 | 65 | #: usr/lib/linuxmint/mintupgrade/checks.py:181 66 | msgid "Checking the power source..." 67 | msgstr "" 68 | 69 | #: usr/lib/linuxmint/mintupgrade/checks.py:186 70 | msgid "Connect the computer to a power source before attempting to upgrade." 71 | msgstr "" 72 | 73 | #: usr/lib/linuxmint/mintupgrade/checks.py:192 74 | msgid "System snapshots" 75 | msgstr "" 76 | 77 | #: usr/lib/linuxmint/mintupgrade/checks.py:192 78 | msgid "Checking system snapshots..." 79 | msgstr "" 80 | 81 | #: usr/lib/linuxmint/mintupgrade/checks.py:197 82 | msgid "" 83 | "If the upgrade isn't successful, a system snapshot will allow you to go back " 84 | "in time and revert all the changes." 85 | msgstr "" 86 | 87 | #: usr/lib/linuxmint/mintupgrade/checks.py:198 88 | msgid "Press 'Fix' to perform a system snapshot." 89 | msgstr "" 90 | 91 | #: usr/lib/linuxmint/mintupgrade/checks.py:214 92 | msgid "APT cache" 93 | msgstr "" 94 | 95 | #: usr/lib/linuxmint/mintupgrade/checks.py:214 96 | msgid "Checking the APT cache..." 97 | msgstr "" 98 | 99 | #: usr/lib/linuxmint/mintupgrade/checks.py:232 100 | msgid "" 101 | "Your package cache can't refresh correctly. Run 'apt update' and fix the " 102 | "errors it displays." 103 | msgstr "" 104 | 105 | #: usr/lib/linuxmint/mintupgrade/checks.py:241 106 | msgid "" 107 | "Some of your packages are broken. Run 'apt install -f' to fix the issue." 108 | msgstr "" 109 | 110 | #: usr/lib/linuxmint/mintupgrade/checks.py:252 111 | msgid "" 112 | "Your operating system is not up to date. Apply available updates before " 113 | "attempting the upgrade." 114 | msgstr "" 115 | 116 | #: usr/lib/linuxmint/mintupgrade/checks.py:273 117 | msgid "The following operations need to be performed:" 118 | msgstr "" 119 | 120 | #: usr/lib/linuxmint/mintupgrade/checks.py:275 121 | #: usr/lib/linuxmint/mintupgrade/checks.py:499 122 | msgid "Package" 123 | msgstr "Pakad" 124 | 125 | #: usr/lib/linuxmint/mintupgrade/checks.py:275 126 | msgid "Operation" 127 | msgstr "" 128 | 129 | #: usr/lib/linuxmint/mintupgrade/checks.py:277 130 | msgid "needs to be installed" 131 | msgstr "a zo ret staliañ" 132 | 133 | #: usr/lib/linuxmint/mintupgrade/checks.py:279 134 | msgid "needs to be removed" 135 | msgstr "a zo ret dilemel" 136 | 137 | #: usr/lib/linuxmint/mintupgrade/checks.py:308 138 | #: usr/lib/linuxmint/mintupgrade/checks.py:588 139 | msgid "Package repositories" 140 | msgstr "" 141 | 142 | #: usr/lib/linuxmint/mintupgrade/checks.py:308 143 | msgid "Checking package repositories..." 144 | msgstr "" 145 | 146 | #: usr/lib/linuxmint/mintupgrade/checks.py:322 147 | msgid "" 148 | "The following sources are defined in DEB822 format. This format isn't " 149 | "supported yet." 150 | msgstr "" 151 | 152 | #: usr/lib/linuxmint/mintupgrade/checks.py:328 153 | msgid "Backup and then delete these files to continue." 154 | msgstr "" 155 | 156 | #: usr/lib/linuxmint/mintupgrade/checks.py:356 157 | msgid "" 158 | "The following repositories do not explicitly support your version of Linux " 159 | "Mint." 160 | msgstr "" 161 | 162 | #: usr/lib/linuxmint/mintupgrade/checks.py:364 163 | msgid "These repositories need to be disabled." 164 | msgstr "" 165 | 166 | #: usr/lib/linuxmint/mintupgrade/checks.py:377 167 | msgid "Your APT policy is incorrect." 168 | msgstr "" 169 | 170 | #: usr/lib/linuxmint/mintupgrade/checks.py:378 171 | msgid "Reboot your computer." 172 | msgstr "" 173 | 174 | #: usr/lib/linuxmint/mintupgrade/checks.py:401 175 | #, python-format 176 | msgid "%s is unreachable" 177 | msgstr "" 178 | 179 | #: usr/lib/linuxmint/mintupgrade/checks.py:406 180 | #, python-format 181 | msgid "%s is not up to date. Switch to a different mirror." 182 | msgstr "" 183 | 184 | #: usr/lib/linuxmint/mintupgrade/checks.py:418 185 | #, python-format 186 | msgid "%s does not support %s" 187 | msgstr "" 188 | 189 | #: usr/lib/linuxmint/mintupgrade/checks.py:422 190 | msgid "The following problems were found:" 191 | msgstr "" 192 | 193 | #: usr/lib/linuxmint/mintupgrade/checks.py:464 194 | msgid "Held packages" 195 | msgstr "" 196 | 197 | #: usr/lib/linuxmint/mintupgrade/checks.py:464 198 | msgid "Looking for held packages..." 199 | msgstr "" 200 | 201 | #: usr/lib/linuxmint/mintupgrade/checks.py:470 202 | msgid "The following packages are held:" 203 | msgstr "" 204 | 205 | #: usr/lib/linuxmint/mintupgrade/checks.py:477 206 | msgid "Held packages can break the upgrade." 207 | msgstr "" 208 | 209 | #: usr/lib/linuxmint/mintupgrade/checks.py:491 210 | msgid "Foreign packages" 211 | msgstr "" 212 | 213 | #: usr/lib/linuxmint/mintupgrade/checks.py:491 214 | msgid "Looking for foreign packages..." 215 | msgstr "" 216 | 217 | #: usr/lib/linuxmint/mintupgrade/checks.py:497 218 | msgid "" 219 | "The following packages need to be downgraded back to official versions:" 220 | msgstr "" 221 | 222 | #: usr/lib/linuxmint/mintupgrade/checks.py:499 223 | msgid "Installed Version" 224 | msgstr "Handelv staliet" 225 | 226 | #: usr/lib/linuxmint/mintupgrade/checks.py:499 227 | msgid "Official version" 228 | msgstr "Handelv ofisiel" 229 | 230 | #: usr/lib/linuxmint/mintupgrade/checks.py:499 231 | msgid "Archive" 232 | msgstr "Diell" 233 | 234 | #: usr/lib/linuxmint/mintupgrade/checks.py:504 235 | msgid "Otherwise these packages can create conflicts." 236 | msgstr "" 237 | 238 | #: usr/lib/linuxmint/mintupgrade/checks.py:520 239 | #: usr/lib/linuxmint/mintupgrade/checks.py:556 240 | msgid "Orphan packages" 241 | msgstr "" 242 | 243 | #: usr/lib/linuxmint/mintupgrade/checks.py:520 244 | msgid "Looking for orphan packages..." 245 | msgstr "" 246 | 247 | #: usr/lib/linuxmint/mintupgrade/checks.py:540 248 | msgid "The following packages do not exist in the repositories:" 249 | msgstr "" 250 | 251 | #: usr/lib/linuxmint/mintupgrade/checks.py:546 252 | msgid "In some rare cases orphan packages can interfere with the upgrade." 253 | msgstr "" 254 | 255 | #: usr/lib/linuxmint/mintupgrade/checks.py:547 256 | msgid "" 257 | "If you decide to uninstall some of these packages press 'Check again' after " 258 | "their removal." 259 | msgstr "" 260 | 261 | #: usr/lib/linuxmint/mintupgrade/checks.py:548 262 | msgid "Press 'OK' to continue with the upgrade." 263 | msgstr "" 264 | 265 | #: usr/lib/linuxmint/mintupgrade/checks.py:556 266 | msgid "Removing newly orphaned packages..." 267 | msgstr "" 268 | 269 | #: usr/lib/linuxmint/mintupgrade/checks.py:588 270 | msgid "Pointing to the new release..." 271 | msgstr "" 272 | 273 | #: usr/lib/linuxmint/mintupgrade/checks.py:627 274 | msgid "Upgrade simulation" 275 | msgstr "" 276 | 277 | #: usr/lib/linuxmint/mintupgrade/checks.py:627 278 | msgid "Simulating upgrade to check hard disk space and potential issues..." 279 | msgstr "" 280 | 281 | #: usr/lib/linuxmint/mintupgrade/checks.py:666 282 | msgid "The simulation was not successful." 283 | msgstr "" 284 | 285 | #: usr/lib/linuxmint/mintupgrade/checks.py:667 286 | msgid "Upgrading would remove the following important packages:" 287 | msgstr "" 288 | 289 | #: usr/lib/linuxmint/mintupgrade/checks.py:668 290 | msgid "Unwanted removals" 291 | msgstr "" 292 | 293 | #: usr/lib/linuxmint/mintupgrade/checks.py:672 294 | msgid "" 295 | "This is a sign that something is wrong and needs to be fixed before going " 296 | "further." 297 | msgstr "" 298 | 299 | #: usr/lib/linuxmint/mintupgrade/checks.py:674 300 | msgid "Recommended solution" 301 | msgstr "" 302 | 303 | #: usr/lib/linuxmint/mintupgrade/checks.py:675 304 | msgid "Use apt-get in a terminal to troubleshoot and solve the issue." 305 | msgstr "" 306 | 307 | #: usr/lib/linuxmint/mintupgrade/checks.py:676 308 | msgid "Don't hesitate to seek help on the forums and the chat room." 309 | msgstr "" 310 | 311 | #: usr/lib/linuxmint/mintupgrade/checks.py:678 312 | msgid "Additional information" 313 | msgstr "Titouroù ouzhpenn" 314 | 315 | #: usr/lib/linuxmint/mintupgrade/checks.py:679 316 | msgid "The information below might help solve the issue." 317 | msgstr "" 318 | 319 | #: usr/lib/linuxmint/mintupgrade/checks.py:680 320 | #: usr/lib/linuxmint/mintupgrade/checks.py:692 321 | msgid "Kept packages" 322 | msgstr "Pakadoù miret" 323 | 324 | #: usr/lib/linuxmint/mintupgrade/checks.py:681 325 | #: usr/lib/linuxmint/mintupgrade/checks.py:696 326 | msgid "Removed packages" 327 | msgstr "Pakadoù dilamet" 328 | 329 | #: usr/lib/linuxmint/mintupgrade/checks.py:682 330 | #: usr/lib/linuxmint/mintupgrade/checks.py:695 331 | msgid "Added packages" 332 | msgstr "Pakadoù ouzhpennet" 333 | 334 | #: usr/lib/linuxmint/mintupgrade/checks.py:683 335 | #: usr/lib/linuxmint/mintupgrade/checks.py:691 336 | #, python-format 337 | msgid "Packages updated: %d, added: %d , kept: %d, deleted: %d" 338 | msgstr "Pakadoù hizivaet: %d, ouzhpennet: %d, miret: %d, dilamet: %d" 339 | 340 | #: usr/lib/linuxmint/mintupgrade/checks.py:686 341 | msgid "Upgrading will perform the following changes." 342 | msgstr "" 343 | 344 | #: usr/lib/linuxmint/mintupgrade/checks.py:694 345 | msgid "" 346 | "Note: Ideally, no packages should be kept. This might indicate an issue." 347 | msgstr "" 348 | 349 | #: usr/lib/linuxmint/mintupgrade/checks.py:698 350 | msgid "" 351 | "Go through the list above and make sure you are happy with the removals " 352 | "before going further with the upgrade." 353 | msgstr "" 354 | 355 | #: usr/lib/linuxmint/mintupgrade/checks.py:795 356 | #, python-format 357 | msgid "You need %s on '%s' but only have %s. You must free an additional %s." 358 | msgstr "" 359 | 360 | #: usr/lib/linuxmint/mintupgrade/checks.py:799 361 | #, python-format 362 | msgid "Download size: %s. Additional space needed: %s." 363 | msgstr "" 364 | 365 | #: usr/lib/linuxmint/mintupgrade/checks.py:805 366 | msgid "Package download" 367 | msgstr "Pellgargañ ar pakad" 368 | 369 | #: usr/lib/linuxmint/mintupgrade/checks.py:805 370 | msgid "Downloading packages..." 371 | msgstr "O pellgargañ pakadoù..." 372 | 373 | #: usr/lib/linuxmint/mintupgrade/checks.py:817 374 | msgid "An error occurred while downloading the packages." 375 | msgstr "" 376 | 377 | #: usr/lib/linuxmint/mintupgrade/checks.py:824 378 | msgid "Session inhibition" 379 | msgstr "" 380 | 381 | #: usr/lib/linuxmint/mintupgrade/checks.py:824 382 | msgid "Inhibiting session..." 383 | msgstr "" 384 | 385 | #: usr/lib/linuxmint/mintupgrade/checks.py:833 386 | msgid "Upgrade preparation" 387 | msgstr "" 388 | 389 | #: usr/lib/linuxmint/mintupgrade/checks.py:833 390 | msgid "Preparing the upgrade..." 391 | msgstr "" 392 | 393 | #: usr/lib/linuxmint/mintupgrade/checks.py:862 394 | msgid "Upgrade phase" 395 | msgstr "" 396 | 397 | #: usr/lib/linuxmint/mintupgrade/checks.py:862 398 | msgid "Upgrading the system..." 399 | msgstr "" 400 | 401 | #: usr/lib/linuxmint/mintupgrade/checks.py:879 402 | #: usr/lib/linuxmint/mintupgrade/checks.py:885 403 | msgid "An issue was detected during the upgrade." 404 | msgstr "" 405 | 406 | #: usr/lib/linuxmint/mintupgrade/checks.py:904 407 | #, python-format 408 | msgid "%d packages still need to be updated (%d kept, %d deleted)" 409 | msgstr "" 410 | 411 | #: usr/lib/linuxmint/mintupgrade/checks.py:910 412 | msgid "Final phase" 413 | msgstr "" 414 | 415 | #: usr/lib/linuxmint/mintupgrade/checks.py:910 416 | msgid "Finalizing the upgrade..." 417 | msgstr "" 418 | 419 | #: usr/lib/linuxmint/mintupgrade/checks.py:929 420 | #, python-format 421 | msgid "%s could not be installed." 422 | msgstr "" 423 | 424 | #: usr/lib/linuxmint/mintupgrade/checks.py:936 425 | msgid "mint-meta-codecs could not be installed." 426 | msgstr "" 427 | 428 | #: usr/lib/linuxmint/mintupgrade/checks.py:944 429 | #: usr/lib/linuxmint/mintupgrade/checks.py:967 430 | msgid "The following packages could not be installed:" 431 | msgstr "" 432 | 433 | #: usr/lib/linuxmint/mintupgrade/checks.py:1030 434 | msgid "/etc/fstab was modified during the upgrade." 435 | msgstr "" 436 | 437 | #: usr/lib/linuxmint/mintupgrade/checks.py:1031 438 | msgid "" 439 | "To ensure a successful boot, the upgrade tool restored your original " 440 | "/etc/fstab" 441 | msgstr "" 442 | 443 | #: usr/lib/linuxmint/mintupgrade/checks.py:1032 444 | msgid "A copy of the modified file was saved as /etc/fstab.upgraded" 445 | msgstr "" 446 | 447 | #: usr/lib/linuxmint/mintupgrade/mintupgrade.py:63 448 | #: usr/lib/linuxmint/mintupgrade/mintupgrade.py:285 generate_desktop_files:26 449 | #: usr/share/linuxmint/mintupgrade/mintupgrade.ui.h:16 450 | msgid "Upgrade Tool" 451 | msgstr "" 452 | 453 | #: usr/lib/linuxmint/mintupgrade/mintupgrade.py:74 454 | #: usr/share/linuxmint/mintupgrade/mintupgrade.ui.h:2 455 | #, python-format 456 | msgid "Upgrade to %s" 457 | msgstr "" 458 | 459 | #: usr/lib/linuxmint/mintupgrade/mintupgrade.py:90 460 | msgid "Preferences" 461 | msgstr "Gwellvezioù" 462 | 463 | #: usr/lib/linuxmint/mintupgrade/mintupgrade.py:95 464 | #: usr/lib/linuxmint/mintupgrade/mintupgrade.py:284 465 | msgid "About" 466 | msgstr "Diwar-benn" 467 | 468 | #: usr/lib/linuxmint/mintupgrade/mintupgrade.py:100 469 | msgid "Quit" 470 | msgstr "Kuitaat" 471 | 472 | #: usr/lib/linuxmint/mintupgrade/mintupgrade.py:144 473 | msgid "Phase 1: Preparation" 474 | msgstr "" 475 | 476 | #: usr/lib/linuxmint/mintupgrade/mintupgrade.py:145 477 | msgid "" 478 | "A series of tests will now be performed to prepare the computer for the " 479 | "upgrade." 480 | msgstr "" 481 | 482 | #: usr/lib/linuxmint/mintupgrade/mintupgrade.py:157 483 | msgid "Phase 2: Simulation and download" 484 | msgstr "" 485 | 486 | #: usr/lib/linuxmint/mintupgrade/mintupgrade.py:158 487 | msgid "Your package repositories will now point towards the new release." 488 | msgstr "" 489 | 490 | #: usr/lib/linuxmint/mintupgrade/mintupgrade.py:159 491 | msgid "A few more tests will be run and package updates will be downloaded." 492 | msgstr "" 493 | 494 | #: usr/lib/linuxmint/mintupgrade/mintupgrade.py:165 495 | msgid "Phase 3: Upgrade" 496 | msgstr "" 497 | 498 | #: usr/lib/linuxmint/mintupgrade/mintupgrade.py:166 499 | msgid "The packages will now be upgraded." 500 | msgstr "" 501 | 502 | #: usr/share/linuxmint/mintupgrade/mintupgrade.ui.h:3 503 | msgid "" 504 | "This program will ask you some questions and upgrade your operating system." 505 | msgstr "" 506 | 507 | #: usr/share/linuxmint/mintupgrade/mintupgrade.ui.h:4 508 | msgid "Let's go!" 509 | msgstr "Deomp dezhi!" 510 | 511 | #: usr/share/linuxmint/mintupgrade/mintupgrade.ui.h:5 512 | msgid "OK" 513 | msgstr "" 514 | 515 | #: usr/share/linuxmint/mintupgrade/mintupgrade.ui.h:6 516 | msgid "Fix" 517 | msgstr "" 518 | 519 | #: usr/share/linuxmint/mintupgrade/mintupgrade.ui.h:7 520 | msgid "Check again" 521 | msgstr "" 522 | 523 | #: usr/share/linuxmint/mintupgrade/mintupgrade.ui.h:8 524 | msgid "The following error occurred:" 525 | msgstr "" 526 | 527 | #: usr/share/linuxmint/mintupgrade/mintupgrade.ui.h:9 528 | msgid "The upgrade was successful." 529 | msgstr "" 530 | 531 | #: usr/share/linuxmint/mintupgrade/mintupgrade.ui.h:10 532 | msgid "Reboot the computer for all the changes to take effect." 533 | msgstr "" 534 | 535 | #: usr/share/linuxmint/mintupgrade/mintupgrade.ui.h:11 536 | msgid "Recent Timeshift snapshot" 537 | msgstr "" 538 | 539 | #: usr/share/linuxmint/mintupgrade/mintupgrade.ui.h:12 540 | msgid "Applied software updates" 541 | msgstr "" 542 | 543 | #: usr/share/linuxmint/mintupgrade/mintupgrade.ui.h:13 544 | msgid "" 545 | "These requirements are there to guarantee a safe upgrade. Only disable them " 546 | "if you know what you are doing." 547 | msgstr "" 548 | 549 | #: usr/share/linuxmint/mintupgrade/mintupgrade.ui.h:14 550 | msgid "Supported Linux Mint version" 551 | msgstr "" 552 | 553 | #: usr/share/linuxmint/mintupgrade/mintupgrade.ui.h:15 554 | msgid "Requirements" 555 | msgstr "" 556 | -------------------------------------------------------------------------------- /po/mintupgrade-ie.po: -------------------------------------------------------------------------------- 1 | # Interlingue translation for linuxmint 2 | # Copyright (c) 2022 Rosetta Contributors and Canonical Ltd 2022 3 | # This file is distributed under the same license as the linuxmint package. 4 | # FIRST AUTHOR , 2022. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: linuxmint\n" 9 | "Report-Msgid-Bugs-To: FULL NAME \n" 10 | "POT-Creation-Date: 2023-09-26 14:10+0100\n" 11 | "PO-Revision-Date: 2023-11-07 13:33+0000\n" 12 | "Last-Translator: Launchpad Translations Administrators \n" 13 | "Language-Team: Interlingue \n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "X-Launchpad-Export-Date: 2025-01-06 12:02+0000\n" 18 | "X-Generator: Launchpad (build 6394e03793719e8d73f5a60b5439440e693c92f1)\n" 19 | 20 | #: usr/lib/linuxmint/mintupgrade/checks.py:32 21 | #, python-format 22 | msgid "" 23 | "The package repositories need to point towards the new release (%s/%s)." 24 | msgstr "Li repositorias de paccages deve indicar li nov version (%s/%s)." 25 | 26 | #: usr/lib/linuxmint/mintupgrade/checks.py:34 27 | msgid "This should have be done by the Upgrade Tool already." 28 | msgstr "" 29 | 30 | #: usr/lib/linuxmint/mintupgrade/checks.py:35 31 | msgid "Were the repositories modified since?" 32 | msgstr "Esque li repositorias esset modificat de tande?" 33 | 34 | #: usr/lib/linuxmint/mintupgrade/checks.py:36 35 | msgid "Re-run the Upgrade tool so that it migrates the repositories again." 36 | msgstr "" 37 | 38 | #: usr/lib/linuxmint/mintupgrade/checks.py:143 39 | msgid "Linux Mint version" 40 | msgstr "Version de Linux Mint" 41 | 42 | #: usr/lib/linuxmint/mintupgrade/checks.py:143 43 | msgid "Checking your version of Linux Mint..." 44 | msgstr "Controllante vor version de Linux Mint..." 45 | 46 | #: usr/lib/linuxmint/mintupgrade/checks.py:151 47 | msgid "" 48 | "Your version of Linux Mint is unknown. /etc/linuxmint/info is missing." 49 | msgstr "" 50 | "Vor version de Linux Mint es ínconosset. /etc/linuxmint/info es mancant." 51 | 52 | #: usr/lib/linuxmint/mintupgrade/checks.py:168 53 | #, python-format 54 | msgid "Your version of Linux Mint is '%s'. Only %s can be upgraded to %s." 55 | msgstr "" 56 | "Vor version de Linux Mint es «%s». Solmen %s posse esser actualisat a %s." 57 | 58 | #: usr/lib/linuxmint/mintupgrade/checks.py:174 59 | #, python-format 60 | msgid "Your edition of Linux Mint is '%s'. It cannot be upgraded to %s." 61 | msgstr "" 62 | "Vor version de Linux Mint es «%s». It ne posse esser actualisat a %s." 63 | 64 | #: usr/lib/linuxmint/mintupgrade/checks.py:181 65 | msgid "Power source" 66 | msgstr "Fonte de energie" 67 | 68 | #: usr/lib/linuxmint/mintupgrade/checks.py:181 69 | msgid "Checking the power source..." 70 | msgstr "Controllante li fonte de energie..." 71 | 72 | #: usr/lib/linuxmint/mintupgrade/checks.py:186 73 | msgid "Connect the computer to a power source before attempting to upgrade." 74 | msgstr "Connexe li computator al rete electric ante li actualisation." 75 | 76 | #: usr/lib/linuxmint/mintupgrade/checks.py:192 77 | msgid "System snapshots" 78 | msgstr "" 79 | 80 | #: usr/lib/linuxmint/mintupgrade/checks.py:192 81 | msgid "Checking system snapshots..." 82 | msgstr "" 83 | 84 | #: usr/lib/linuxmint/mintupgrade/checks.py:197 85 | msgid "" 86 | "If the upgrade isn't successful, a system snapshot will allow you to go back " 87 | "in time and revert all the changes." 88 | msgstr "" 89 | 90 | #: usr/lib/linuxmint/mintupgrade/checks.py:198 91 | msgid "Press 'Fix' to perform a system snapshot." 92 | msgstr "" 93 | 94 | #: usr/lib/linuxmint/mintupgrade/checks.py:214 95 | msgid "APT cache" 96 | msgstr "Cache de APT" 97 | 98 | #: usr/lib/linuxmint/mintupgrade/checks.py:214 99 | msgid "Checking the APT cache..." 100 | msgstr "Controllante li cache de APT..." 101 | 102 | #: usr/lib/linuxmint/mintupgrade/checks.py:232 103 | msgid "" 104 | "Your package cache can't refresh correctly. Run 'apt update' and fix the " 105 | "errors it displays." 106 | msgstr "" 107 | 108 | #: usr/lib/linuxmint/mintupgrade/checks.py:241 109 | msgid "" 110 | "Some of your packages are broken. Run 'apt install -f' to fix the issue." 111 | msgstr "" 112 | 113 | #: usr/lib/linuxmint/mintupgrade/checks.py:252 114 | msgid "" 115 | "Your operating system is not up to date. Apply available updates before " 116 | "attempting the upgrade." 117 | msgstr "" 118 | 119 | #: usr/lib/linuxmint/mintupgrade/checks.py:273 120 | msgid "The following operations need to be performed:" 121 | msgstr "Li sequent operationes es besonat:" 122 | 123 | #: usr/lib/linuxmint/mintupgrade/checks.py:275 124 | #: usr/lib/linuxmint/mintupgrade/checks.py:499 125 | msgid "Package" 126 | msgstr "Paccage" 127 | 128 | #: usr/lib/linuxmint/mintupgrade/checks.py:275 129 | msgid "Operation" 130 | msgstr "Operation" 131 | 132 | #: usr/lib/linuxmint/mintupgrade/checks.py:277 133 | msgid "needs to be installed" 134 | msgstr "deve esser installat" 135 | 136 | #: usr/lib/linuxmint/mintupgrade/checks.py:279 137 | msgid "needs to be removed" 138 | msgstr "deve esset removet" 139 | 140 | #: usr/lib/linuxmint/mintupgrade/checks.py:308 141 | #: usr/lib/linuxmint/mintupgrade/checks.py:588 142 | msgid "Package repositories" 143 | msgstr "Repositorias de paccages" 144 | 145 | #: usr/lib/linuxmint/mintupgrade/checks.py:308 146 | msgid "Checking package repositories..." 147 | msgstr "Controllante li repositorias de paccages" 148 | 149 | #: usr/lib/linuxmint/mintupgrade/checks.py:322 150 | msgid "" 151 | "The following sources are defined in DEB822 format. This format isn't " 152 | "supported yet." 153 | msgstr "" 154 | 155 | #: usr/lib/linuxmint/mintupgrade/checks.py:328 156 | msgid "Backup and then delete these files to continue." 157 | msgstr "" 158 | 159 | #: usr/lib/linuxmint/mintupgrade/checks.py:356 160 | msgid "" 161 | "The following repositories do not explicitly support your version of Linux " 162 | "Mint." 163 | msgstr "" 164 | 165 | #: usr/lib/linuxmint/mintupgrade/checks.py:364 166 | msgid "These repositories need to be disabled." 167 | msgstr "Ti repositorias deve esser desactivat." 168 | 169 | #: usr/lib/linuxmint/mintupgrade/checks.py:377 170 | msgid "Your APT policy is incorrect." 171 | msgstr "Vor politica de APT es íncorrect." 172 | 173 | #: usr/lib/linuxmint/mintupgrade/checks.py:378 174 | msgid "Reboot your computer." 175 | msgstr "Ples reiniciar vor computator." 176 | 177 | #: usr/lib/linuxmint/mintupgrade/checks.py:401 178 | #, python-format 179 | msgid "%s is unreachable" 180 | msgstr "%s is índisponibil" 181 | 182 | #: usr/lib/linuxmint/mintupgrade/checks.py:406 183 | #, python-format 184 | msgid "%s is not up to date. Switch to a different mirror." 185 | msgstr "%s ne es actual. Usa un altri spegul." 186 | 187 | #: usr/lib/linuxmint/mintupgrade/checks.py:418 188 | #, python-format 189 | msgid "%s does not support %s" 190 | msgstr "%s ne suporta %s" 191 | 192 | #: usr/lib/linuxmint/mintupgrade/checks.py:422 193 | msgid "The following problems were found:" 194 | msgstr "Li sequent problemas esset trovat:" 195 | 196 | #: usr/lib/linuxmint/mintupgrade/checks.py:464 197 | msgid "Held packages" 198 | msgstr "Fixat paccages" 199 | 200 | #: usr/lib/linuxmint/mintupgrade/checks.py:464 201 | msgid "Looking for held packages..." 202 | msgstr "Sercha por fixat paccages..." 203 | 204 | #: usr/lib/linuxmint/mintupgrade/checks.py:470 205 | msgid "The following packages are held:" 206 | msgstr "Li sequent paccages es fixat:" 207 | 208 | #: usr/lib/linuxmint/mintupgrade/checks.py:477 209 | msgid "Held packages can break the upgrade." 210 | msgstr "Li fixat paccages posse disrupter li actualisation." 211 | 212 | #: usr/lib/linuxmint/mintupgrade/checks.py:491 213 | msgid "Foreign packages" 214 | msgstr "Foren paccages" 215 | 216 | #: usr/lib/linuxmint/mintupgrade/checks.py:491 217 | msgid "Looking for foreign packages..." 218 | msgstr "Sercha por foren paccages..." 219 | 220 | #: usr/lib/linuxmint/mintupgrade/checks.py:497 221 | msgid "" 222 | "The following packages need to be downgraded back to official versions:" 223 | msgstr "" 224 | 225 | #: usr/lib/linuxmint/mintupgrade/checks.py:499 226 | msgid "Installed Version" 227 | msgstr "Installat version" 228 | 229 | #: usr/lib/linuxmint/mintupgrade/checks.py:499 230 | msgid "Official version" 231 | msgstr "Oficial version" 232 | 233 | #: usr/lib/linuxmint/mintupgrade/checks.py:499 234 | msgid "Archive" 235 | msgstr "" 236 | 237 | #: usr/lib/linuxmint/mintupgrade/checks.py:504 238 | msgid "Otherwise these packages can create conflicts." 239 | msgstr "" 240 | 241 | #: usr/lib/linuxmint/mintupgrade/checks.py:520 242 | #: usr/lib/linuxmint/mintupgrade/checks.py:556 243 | msgid "Orphan packages" 244 | msgstr "" 245 | 246 | #: usr/lib/linuxmint/mintupgrade/checks.py:520 247 | msgid "Looking for orphan packages..." 248 | msgstr "" 249 | 250 | #: usr/lib/linuxmint/mintupgrade/checks.py:540 251 | msgid "The following packages do not exist in the repositories:" 252 | msgstr "Li sequent paccages ne existe in li repositorias:" 253 | 254 | #: usr/lib/linuxmint/mintupgrade/checks.py:546 255 | msgid "In some rare cases orphan packages can interfere with the upgrade." 256 | msgstr "" 257 | 258 | #: usr/lib/linuxmint/mintupgrade/checks.py:547 259 | msgid "" 260 | "If you decide to uninstall some of these packages press 'Check again' after " 261 | "their removal." 262 | msgstr "" 263 | 264 | #: usr/lib/linuxmint/mintupgrade/checks.py:548 265 | msgid "Press 'OK' to continue with the upgrade." 266 | msgstr "" 267 | 268 | #: usr/lib/linuxmint/mintupgrade/checks.py:556 269 | msgid "Removing newly orphaned packages..." 270 | msgstr "" 271 | 272 | #: usr/lib/linuxmint/mintupgrade/checks.py:588 273 | msgid "Pointing to the new release..." 274 | msgstr "" 275 | 276 | #: usr/lib/linuxmint/mintupgrade/checks.py:627 277 | msgid "Upgrade simulation" 278 | msgstr "Simulation de actualisation" 279 | 280 | #: usr/lib/linuxmint/mintupgrade/checks.py:627 281 | msgid "Simulating upgrade to check hard disk space and potential issues..." 282 | msgstr "" 283 | 284 | #: usr/lib/linuxmint/mintupgrade/checks.py:666 285 | msgid "The simulation was not successful." 286 | msgstr "Li simulation ne successat." 287 | 288 | #: usr/lib/linuxmint/mintupgrade/checks.py:667 289 | msgid "Upgrading would remove the following important packages:" 290 | msgstr "" 291 | 292 | #: usr/lib/linuxmint/mintupgrade/checks.py:668 293 | msgid "Unwanted removals" 294 | msgstr "Índesirat remotiones" 295 | 296 | #: usr/lib/linuxmint/mintupgrade/checks.py:672 297 | msgid "" 298 | "This is a sign that something is wrong and needs to be fixed before going " 299 | "further." 300 | msgstr "" 301 | 302 | #: usr/lib/linuxmint/mintupgrade/checks.py:674 303 | msgid "Recommended solution" 304 | msgstr "Li recomandat solution" 305 | 306 | #: usr/lib/linuxmint/mintupgrade/checks.py:675 307 | msgid "Use apt-get in a terminal to troubleshoot and solve the issue." 308 | msgstr "" 309 | 310 | #: usr/lib/linuxmint/mintupgrade/checks.py:676 311 | msgid "Don't hesitate to seek help on the forums and the chat room." 312 | msgstr "" 313 | 314 | #: usr/lib/linuxmint/mintupgrade/checks.py:678 315 | msgid "Additional information" 316 | msgstr "Extra information" 317 | 318 | #: usr/lib/linuxmint/mintupgrade/checks.py:679 319 | msgid "The information below might help solve the issue." 320 | msgstr "" 321 | 322 | #: usr/lib/linuxmint/mintupgrade/checks.py:680 323 | #: usr/lib/linuxmint/mintupgrade/checks.py:692 324 | msgid "Kept packages" 325 | msgstr "Retenet paccages" 326 | 327 | #: usr/lib/linuxmint/mintupgrade/checks.py:681 328 | #: usr/lib/linuxmint/mintupgrade/checks.py:696 329 | msgid "Removed packages" 330 | msgstr "Removet paccages" 331 | 332 | #: usr/lib/linuxmint/mintupgrade/checks.py:682 333 | #: usr/lib/linuxmint/mintupgrade/checks.py:695 334 | msgid "Added packages" 335 | msgstr "Adjuntet paccages" 336 | 337 | #: usr/lib/linuxmint/mintupgrade/checks.py:683 338 | #: usr/lib/linuxmint/mintupgrade/checks.py:691 339 | #, python-format 340 | msgid "Packages updated: %d, added: %d , kept: %d, deleted: %d" 341 | msgstr "Paccages actualisat: %d, adjuntet: %d , retenet: %d, removet: %d" 342 | 343 | #: usr/lib/linuxmint/mintupgrade/checks.py:686 344 | msgid "Upgrading will perform the following changes." 345 | msgstr "" 346 | 347 | #: usr/lib/linuxmint/mintupgrade/checks.py:694 348 | msgid "" 349 | "Note: Ideally, no packages should be kept. This might indicate an issue." 350 | msgstr "" 351 | 352 | #: usr/lib/linuxmint/mintupgrade/checks.py:698 353 | msgid "" 354 | "Go through the list above and make sure you are happy with the removals " 355 | "before going further with the upgrade." 356 | msgstr "" 357 | 358 | #: usr/lib/linuxmint/mintupgrade/checks.py:795 359 | #, python-format 360 | msgid "You need %s on '%s' but only have %s. You must free an additional %s." 361 | msgstr "Vu besona %s sur «%s» ma have solmen %s. Vu deve liberar anc %s." 362 | 363 | #: usr/lib/linuxmint/mintupgrade/checks.py:799 364 | #, python-format 365 | msgid "Download size: %s. Additional space needed: %s." 366 | msgstr "Grandore de descarga: %s. Extra spacie besonat: %s" 367 | 368 | #: usr/lib/linuxmint/mintupgrade/checks.py:805 369 | msgid "Package download" 370 | msgstr "Descarga de paccages" 371 | 372 | #: usr/lib/linuxmint/mintupgrade/checks.py:805 373 | msgid "Downloading packages..." 374 | msgstr "Descargante paccages..." 375 | 376 | #: usr/lib/linuxmint/mintupgrade/checks.py:817 377 | msgid "An error occurred while downloading the packages." 378 | msgstr "Un errore evenit durante li descarga del paccages." 379 | 380 | #: usr/lib/linuxmint/mintupgrade/checks.py:824 381 | msgid "Session inhibition" 382 | msgstr "Inhibition del session" 383 | 384 | #: usr/lib/linuxmint/mintupgrade/checks.py:824 385 | msgid "Inhibiting session..." 386 | msgstr "Inhibinte li session..." 387 | 388 | #: usr/lib/linuxmint/mintupgrade/checks.py:833 389 | msgid "Upgrade preparation" 390 | msgstr "Preparation del actualisation" 391 | 392 | #: usr/lib/linuxmint/mintupgrade/checks.py:833 393 | msgid "Preparing the upgrade..." 394 | msgstr "Preparation del actualisation..." 395 | 396 | #: usr/lib/linuxmint/mintupgrade/checks.py:862 397 | msgid "Upgrade phase" 398 | msgstr "Fasa de actualisation" 399 | 400 | #: usr/lib/linuxmint/mintupgrade/checks.py:862 401 | msgid "Upgrading the system..." 402 | msgstr "Actualisante li sistema..." 403 | 404 | #: usr/lib/linuxmint/mintupgrade/checks.py:879 405 | #: usr/lib/linuxmint/mintupgrade/checks.py:885 406 | msgid "An issue was detected during the upgrade." 407 | msgstr "" 408 | 409 | #: usr/lib/linuxmint/mintupgrade/checks.py:904 410 | #, python-format 411 | msgid "%d packages still need to be updated (%d kept, %d deleted)" 412 | msgstr "" 413 | 414 | #: usr/lib/linuxmint/mintupgrade/checks.py:910 415 | msgid "Final phase" 416 | msgstr "Fasa final" 417 | 418 | #: usr/lib/linuxmint/mintupgrade/checks.py:910 419 | msgid "Finalizing the upgrade..." 420 | msgstr "" 421 | 422 | #: usr/lib/linuxmint/mintupgrade/checks.py:929 423 | #, python-format 424 | msgid "%s could not be installed." 425 | msgstr "%s ne posset esser installat." 426 | 427 | #: usr/lib/linuxmint/mintupgrade/checks.py:936 428 | msgid "mint-meta-codecs could not be installed." 429 | msgstr "mint-meta-codecs ne posset esser installat." 430 | 431 | #: usr/lib/linuxmint/mintupgrade/checks.py:944 432 | #: usr/lib/linuxmint/mintupgrade/checks.py:967 433 | msgid "The following packages could not be installed:" 434 | msgstr "" 435 | 436 | #: usr/lib/linuxmint/mintupgrade/checks.py:1030 437 | msgid "/etc/fstab was modified during the upgrade." 438 | msgstr "/etc/fstab esset modificat durante li actualisation." 439 | 440 | #: usr/lib/linuxmint/mintupgrade/checks.py:1031 441 | msgid "" 442 | "To ensure a successful boot, the upgrade tool restored your original " 443 | "/etc/fstab" 444 | msgstr "" 445 | 446 | #: usr/lib/linuxmint/mintupgrade/checks.py:1032 447 | msgid "A copy of the modified file was saved as /etc/fstab.upgraded" 448 | msgstr "Un copie del modificat file esset gardat quam /etc/fstab.upgraded" 449 | 450 | #: usr/lib/linuxmint/mintupgrade/mintupgrade.py:63 451 | #: usr/lib/linuxmint/mintupgrade/mintupgrade.py:285 generate_desktop_files:26 452 | #: usr/share/linuxmint/mintupgrade/mintupgrade.ui.h:16 453 | msgid "Upgrade Tool" 454 | msgstr "Actualisation del version" 455 | 456 | #: usr/lib/linuxmint/mintupgrade/mintupgrade.py:74 457 | #: usr/share/linuxmint/mintupgrade/mintupgrade.ui.h:2 458 | #, python-format 459 | msgid "Upgrade to %s" 460 | msgstr "Actualisar a %s" 461 | 462 | #: usr/lib/linuxmint/mintupgrade/mintupgrade.py:90 463 | msgid "Preferences" 464 | msgstr "Preferenties" 465 | 466 | #: usr/lib/linuxmint/mintupgrade/mintupgrade.py:95 467 | #: usr/lib/linuxmint/mintupgrade/mintupgrade.py:284 468 | msgid "About" 469 | msgstr "Pri" 470 | 471 | #: usr/lib/linuxmint/mintupgrade/mintupgrade.py:100 472 | msgid "Quit" 473 | msgstr "Surtir" 474 | 475 | #: usr/lib/linuxmint/mintupgrade/mintupgrade.py:144 476 | msgid "Phase 1: Preparation" 477 | msgstr "Fasa 1: preparation" 478 | 479 | #: usr/lib/linuxmint/mintupgrade/mintupgrade.py:145 480 | msgid "" 481 | "A series of tests will now be performed to prepare the computer for the " 482 | "upgrade." 483 | msgstr "" 484 | 485 | #: usr/lib/linuxmint/mintupgrade/mintupgrade.py:157 486 | msgid "Phase 2: Simulation and download" 487 | msgstr "Fasa 2: Simulation e discarga" 488 | 489 | #: usr/lib/linuxmint/mintupgrade/mintupgrade.py:158 490 | msgid "Your package repositories will now point towards the new release." 491 | msgstr "" 492 | 493 | #: usr/lib/linuxmint/mintupgrade/mintupgrade.py:159 494 | msgid "A few more tests will be run and package updates will be downloaded." 495 | msgstr "" 496 | 497 | #: usr/lib/linuxmint/mintupgrade/mintupgrade.py:165 498 | msgid "Phase 3: Upgrade" 499 | msgstr "Fasa 3: actualisation" 500 | 501 | #: usr/lib/linuxmint/mintupgrade/mintupgrade.py:166 502 | msgid "The packages will now be upgraded." 503 | msgstr "" 504 | 505 | #: usr/share/linuxmint/mintupgrade/mintupgrade.ui.h:3 506 | msgid "" 507 | "This program will ask you some questions and upgrade your operating system." 508 | msgstr "" 509 | 510 | #: usr/share/linuxmint/mintupgrade/mintupgrade.ui.h:4 511 | msgid "Let's go!" 512 | msgstr "Ad avan!" 513 | 514 | #: usr/share/linuxmint/mintupgrade/mintupgrade.ui.h:5 515 | msgid "OK" 516 | msgstr "OK" 517 | 518 | #: usr/share/linuxmint/mintupgrade/mintupgrade.ui.h:6 519 | msgid "Fix" 520 | msgstr "Reparar" 521 | 522 | #: usr/share/linuxmint/mintupgrade/mintupgrade.ui.h:7 523 | msgid "Check again" 524 | msgstr "Controllar denov" 525 | 526 | #: usr/share/linuxmint/mintupgrade/mintupgrade.ui.h:8 527 | msgid "The following error occurred:" 528 | msgstr "Li sequent errore evenit:" 529 | 530 | #: usr/share/linuxmint/mintupgrade/mintupgrade.ui.h:9 531 | msgid "The upgrade was successful." 532 | msgstr "Li actualisation esset successosi." 533 | 534 | #: usr/share/linuxmint/mintupgrade/mintupgrade.ui.h:10 535 | msgid "Reboot the computer for all the changes to take effect." 536 | msgstr "Reinicia vor computator por efectivar li modificationes." 537 | 538 | #: usr/share/linuxmint/mintupgrade/mintupgrade.ui.h:11 539 | msgid "Recent Timeshift snapshot" 540 | msgstr "" 541 | 542 | #: usr/share/linuxmint/mintupgrade/mintupgrade.ui.h:12 543 | msgid "Applied software updates" 544 | msgstr "Applicat li actualisamentes de programmas" 545 | 546 | #: usr/share/linuxmint/mintupgrade/mintupgrade.ui.h:13 547 | msgid "" 548 | "These requirements are there to guarantee a safe upgrade. Only disable them " 549 | "if you know what you are doing." 550 | msgstr "" 551 | 552 | #: usr/share/linuxmint/mintupgrade/mintupgrade.ui.h:14 553 | msgid "Supported Linux Mint version" 554 | msgstr "Supportat version de Linux Mint" 555 | 556 | #: usr/share/linuxmint/mintupgrade/mintupgrade.ui.h:15 557 | msgid "Requirements" 558 | msgstr "Besones" 559 | -------------------------------------------------------------------------------- /po/mintupgrade-ka.po: -------------------------------------------------------------------------------- 1 | # Georgian translation for linuxmint 2 | # Copyright (c) 2023 Rosetta Contributors and Canonical Ltd 2023 3 | # This file is distributed under the same license as the linuxmint package. 4 | # FIRST AUTHOR , 2023. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: linuxmint\n" 9 | "Report-Msgid-Bugs-To: FULL NAME \n" 10 | "POT-Creation-Date: 2023-09-26 14:10+0100\n" 11 | "PO-Revision-Date: 2023-11-07 13:33+0000\n" 12 | "Last-Translator: Launchpad Translations Administrators \n" 13 | "Language-Team: Georgian \n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "X-Launchpad-Export-Date: 2025-01-06 12:02+0000\n" 18 | "X-Generator: Launchpad (build 6394e03793719e8d73f5a60b5439440e693c92f1)\n" 19 | "Language: ka\n" 20 | 21 | #: usr/lib/linuxmint/mintupgrade/checks.py:32 22 | #, python-format 23 | msgid "" 24 | "The package repositories need to point towards the new release (%s/%s)." 25 | msgstr "" 26 | 27 | #: usr/lib/linuxmint/mintupgrade/checks.py:34 28 | msgid "This should have be done by the Upgrade Tool already." 29 | msgstr "" 30 | 31 | #: usr/lib/linuxmint/mintupgrade/checks.py:35 32 | msgid "Were the repositories modified since?" 33 | msgstr "" 34 | 35 | #: usr/lib/linuxmint/mintupgrade/checks.py:36 36 | msgid "Re-run the Upgrade tool so that it migrates the repositories again." 37 | msgstr "" 38 | 39 | #: usr/lib/linuxmint/mintupgrade/checks.py:143 40 | msgid "Linux Mint version" 41 | msgstr "" 42 | 43 | #: usr/lib/linuxmint/mintupgrade/checks.py:143 44 | msgid "Checking your version of Linux Mint..." 45 | msgstr "" 46 | 47 | #: usr/lib/linuxmint/mintupgrade/checks.py:151 48 | msgid "" 49 | "Your version of Linux Mint is unknown. /etc/linuxmint/info is missing." 50 | msgstr "" 51 | 52 | #: usr/lib/linuxmint/mintupgrade/checks.py:168 53 | #, python-format 54 | msgid "Your version of Linux Mint is '%s'. Only %s can be upgraded to %s." 55 | msgstr "" 56 | 57 | #: usr/lib/linuxmint/mintupgrade/checks.py:174 58 | #, python-format 59 | msgid "Your edition of Linux Mint is '%s'. It cannot be upgraded to %s." 60 | msgstr "" 61 | 62 | #: usr/lib/linuxmint/mintupgrade/checks.py:181 63 | msgid "Power source" 64 | msgstr "კვების წყარო" 65 | 66 | #: usr/lib/linuxmint/mintupgrade/checks.py:181 67 | msgid "Checking the power source..." 68 | msgstr "" 69 | 70 | #: usr/lib/linuxmint/mintupgrade/checks.py:186 71 | msgid "Connect the computer to a power source before attempting to upgrade." 72 | msgstr "" 73 | 74 | #: usr/lib/linuxmint/mintupgrade/checks.py:192 75 | msgid "System snapshots" 76 | msgstr "სისტემის სწრაფი ასლები" 77 | 78 | #: usr/lib/linuxmint/mintupgrade/checks.py:192 79 | msgid "Checking system snapshots..." 80 | msgstr "სისტემის სწრაფი ასლების შემოწმება..." 81 | 82 | #: usr/lib/linuxmint/mintupgrade/checks.py:197 83 | msgid "" 84 | "If the upgrade isn't successful, a system snapshot will allow you to go back " 85 | "in time and revert all the changes." 86 | msgstr "" 87 | 88 | #: usr/lib/linuxmint/mintupgrade/checks.py:198 89 | msgid "Press 'Fix' to perform a system snapshot." 90 | msgstr "" 91 | 92 | #: usr/lib/linuxmint/mintupgrade/checks.py:214 93 | msgid "APT cache" 94 | msgstr "APT -ის კეში" 95 | 96 | #: usr/lib/linuxmint/mintupgrade/checks.py:214 97 | msgid "Checking the APT cache..." 98 | msgstr "" 99 | 100 | #: usr/lib/linuxmint/mintupgrade/checks.py:232 101 | msgid "" 102 | "Your package cache can't refresh correctly. Run 'apt update' and fix the " 103 | "errors it displays." 104 | msgstr "" 105 | 106 | #: usr/lib/linuxmint/mintupgrade/checks.py:241 107 | msgid "" 108 | "Some of your packages are broken. Run 'apt install -f' to fix the issue." 109 | msgstr "" 110 | 111 | #: usr/lib/linuxmint/mintupgrade/checks.py:252 112 | msgid "" 113 | "Your operating system is not up to date. Apply available updates before " 114 | "attempting the upgrade." 115 | msgstr "" 116 | 117 | #: usr/lib/linuxmint/mintupgrade/checks.py:273 118 | msgid "The following operations need to be performed:" 119 | msgstr "" 120 | 121 | #: usr/lib/linuxmint/mintupgrade/checks.py:275 122 | #: usr/lib/linuxmint/mintupgrade/checks.py:499 123 | msgid "Package" 124 | msgstr "პაკეტი" 125 | 126 | #: usr/lib/linuxmint/mintupgrade/checks.py:275 127 | msgid "Operation" 128 | msgstr "ოეპრაცია" 129 | 130 | #: usr/lib/linuxmint/mintupgrade/checks.py:277 131 | msgid "needs to be installed" 132 | msgstr "საჭიროა დაყენება" 133 | 134 | #: usr/lib/linuxmint/mintupgrade/checks.py:279 135 | msgid "needs to be removed" 136 | msgstr "საჭიროა წაშლა" 137 | 138 | #: usr/lib/linuxmint/mintupgrade/checks.py:308 139 | #: usr/lib/linuxmint/mintupgrade/checks.py:588 140 | msgid "Package repositories" 141 | msgstr "პაკეტის რეპოზიტორიები" 142 | 143 | #: usr/lib/linuxmint/mintupgrade/checks.py:308 144 | msgid "Checking package repositories..." 145 | msgstr "" 146 | 147 | #: usr/lib/linuxmint/mintupgrade/checks.py:322 148 | msgid "" 149 | "The following sources are defined in DEB822 format. This format isn't " 150 | "supported yet." 151 | msgstr "" 152 | 153 | #: usr/lib/linuxmint/mintupgrade/checks.py:328 154 | msgid "Backup and then delete these files to continue." 155 | msgstr "" 156 | 157 | #: usr/lib/linuxmint/mintupgrade/checks.py:356 158 | msgid "" 159 | "The following repositories do not explicitly support your version of Linux " 160 | "Mint." 161 | msgstr "" 162 | 163 | #: usr/lib/linuxmint/mintupgrade/checks.py:364 164 | msgid "These repositories need to be disabled." 165 | msgstr "" 166 | 167 | #: usr/lib/linuxmint/mintupgrade/checks.py:377 168 | msgid "Your APT policy is incorrect." 169 | msgstr "APT-ის თქვენი პოლიტიკა არასწორია." 170 | 171 | #: usr/lib/linuxmint/mintupgrade/checks.py:378 172 | msgid "Reboot your computer." 173 | msgstr "გადატვირთეთ კომპიუტერი." 174 | 175 | #: usr/lib/linuxmint/mintupgrade/checks.py:401 176 | #, python-format 177 | msgid "%s is unreachable" 178 | msgstr "%s მიუწვდომელია" 179 | 180 | #: usr/lib/linuxmint/mintupgrade/checks.py:406 181 | #, python-format 182 | msgid "%s is not up to date. Switch to a different mirror." 183 | msgstr "" 184 | 185 | #: usr/lib/linuxmint/mintupgrade/checks.py:418 186 | #, python-format 187 | msgid "%s does not support %s" 188 | msgstr "%s -ს %s-ის მხარდაჭერა არ გააჩნია" 189 | 190 | #: usr/lib/linuxmint/mintupgrade/checks.py:422 191 | msgid "The following problems were found:" 192 | msgstr "" 193 | 194 | #: usr/lib/linuxmint/mintupgrade/checks.py:464 195 | msgid "Held packages" 196 | msgstr "" 197 | 198 | #: usr/lib/linuxmint/mintupgrade/checks.py:464 199 | msgid "Looking for held packages..." 200 | msgstr "" 201 | 202 | #: usr/lib/linuxmint/mintupgrade/checks.py:470 203 | msgid "The following packages are held:" 204 | msgstr "" 205 | 206 | #: usr/lib/linuxmint/mintupgrade/checks.py:477 207 | msgid "Held packages can break the upgrade." 208 | msgstr "" 209 | 210 | #: usr/lib/linuxmint/mintupgrade/checks.py:491 211 | msgid "Foreign packages" 212 | msgstr "" 213 | 214 | #: usr/lib/linuxmint/mintupgrade/checks.py:491 215 | msgid "Looking for foreign packages..." 216 | msgstr "" 217 | 218 | #: usr/lib/linuxmint/mintupgrade/checks.py:497 219 | msgid "" 220 | "The following packages need to be downgraded back to official versions:" 221 | msgstr "" 222 | 223 | #: usr/lib/linuxmint/mintupgrade/checks.py:499 224 | msgid "Installed Version" 225 | msgstr "დაყენებული ვერსია" 226 | 227 | #: usr/lib/linuxmint/mintupgrade/checks.py:499 228 | msgid "Official version" 229 | msgstr "" 230 | 231 | #: usr/lib/linuxmint/mintupgrade/checks.py:499 232 | msgid "Archive" 233 | msgstr "არქივი" 234 | 235 | #: usr/lib/linuxmint/mintupgrade/checks.py:504 236 | msgid "Otherwise these packages can create conflicts." 237 | msgstr "" 238 | 239 | #: usr/lib/linuxmint/mintupgrade/checks.py:520 240 | #: usr/lib/linuxmint/mintupgrade/checks.py:556 241 | msgid "Orphan packages" 242 | msgstr "" 243 | 244 | #: usr/lib/linuxmint/mintupgrade/checks.py:520 245 | msgid "Looking for orphan packages..." 246 | msgstr "" 247 | 248 | #: usr/lib/linuxmint/mintupgrade/checks.py:540 249 | msgid "The following packages do not exist in the repositories:" 250 | msgstr "" 251 | 252 | #: usr/lib/linuxmint/mintupgrade/checks.py:546 253 | msgid "In some rare cases orphan packages can interfere with the upgrade." 254 | msgstr "" 255 | 256 | #: usr/lib/linuxmint/mintupgrade/checks.py:547 257 | msgid "" 258 | "If you decide to uninstall some of these packages press 'Check again' after " 259 | "their removal." 260 | msgstr "" 261 | 262 | #: usr/lib/linuxmint/mintupgrade/checks.py:548 263 | msgid "Press 'OK' to continue with the upgrade." 264 | msgstr "" 265 | 266 | #: usr/lib/linuxmint/mintupgrade/checks.py:556 267 | msgid "Removing newly orphaned packages..." 268 | msgstr "" 269 | 270 | #: usr/lib/linuxmint/mintupgrade/checks.py:588 271 | msgid "Pointing to the new release..." 272 | msgstr "" 273 | 274 | #: usr/lib/linuxmint/mintupgrade/checks.py:627 275 | msgid "Upgrade simulation" 276 | msgstr "" 277 | 278 | #: usr/lib/linuxmint/mintupgrade/checks.py:627 279 | msgid "Simulating upgrade to check hard disk space and potential issues..." 280 | msgstr "" 281 | 282 | #: usr/lib/linuxmint/mintupgrade/checks.py:666 283 | msgid "The simulation was not successful." 284 | msgstr "" 285 | 286 | #: usr/lib/linuxmint/mintupgrade/checks.py:667 287 | msgid "Upgrading would remove the following important packages:" 288 | msgstr "" 289 | 290 | #: usr/lib/linuxmint/mintupgrade/checks.py:668 291 | msgid "Unwanted removals" 292 | msgstr "" 293 | 294 | #: usr/lib/linuxmint/mintupgrade/checks.py:672 295 | msgid "" 296 | "This is a sign that something is wrong and needs to be fixed before going " 297 | "further." 298 | msgstr "" 299 | 300 | #: usr/lib/linuxmint/mintupgrade/checks.py:674 301 | msgid "Recommended solution" 302 | msgstr "" 303 | 304 | #: usr/lib/linuxmint/mintupgrade/checks.py:675 305 | msgid "Use apt-get in a terminal to troubleshoot and solve the issue." 306 | msgstr "" 307 | 308 | #: usr/lib/linuxmint/mintupgrade/checks.py:676 309 | msgid "Don't hesitate to seek help on the forums and the chat room." 310 | msgstr "" 311 | 312 | #: usr/lib/linuxmint/mintupgrade/checks.py:678 313 | msgid "Additional information" 314 | msgstr "" 315 | 316 | #: usr/lib/linuxmint/mintupgrade/checks.py:679 317 | msgid "The information below might help solve the issue." 318 | msgstr "" 319 | 320 | #: usr/lib/linuxmint/mintupgrade/checks.py:680 321 | #: usr/lib/linuxmint/mintupgrade/checks.py:692 322 | msgid "Kept packages" 323 | msgstr "" 324 | 325 | #: usr/lib/linuxmint/mintupgrade/checks.py:681 326 | #: usr/lib/linuxmint/mintupgrade/checks.py:696 327 | msgid "Removed packages" 328 | msgstr "წაშლილი პაკეტები" 329 | 330 | #: usr/lib/linuxmint/mintupgrade/checks.py:682 331 | #: usr/lib/linuxmint/mintupgrade/checks.py:695 332 | msgid "Added packages" 333 | msgstr "" 334 | 335 | #: usr/lib/linuxmint/mintupgrade/checks.py:683 336 | #: usr/lib/linuxmint/mintupgrade/checks.py:691 337 | #, python-format 338 | msgid "Packages updated: %d, added: %d , kept: %d, deleted: %d" 339 | msgstr "" 340 | 341 | #: usr/lib/linuxmint/mintupgrade/checks.py:686 342 | msgid "Upgrading will perform the following changes." 343 | msgstr "" 344 | 345 | #: usr/lib/linuxmint/mintupgrade/checks.py:694 346 | msgid "" 347 | "Note: Ideally, no packages should be kept. This might indicate an issue." 348 | msgstr "" 349 | 350 | #: usr/lib/linuxmint/mintupgrade/checks.py:698 351 | msgid "" 352 | "Go through the list above and make sure you are happy with the removals " 353 | "before going further with the upgrade." 354 | msgstr "" 355 | 356 | #: usr/lib/linuxmint/mintupgrade/checks.py:795 357 | #, python-format 358 | msgid "You need %s on '%s' but only have %s. You must free an additional %s." 359 | msgstr "" 360 | 361 | #: usr/lib/linuxmint/mintupgrade/checks.py:799 362 | #, python-format 363 | msgid "Download size: %s. Additional space needed: %s." 364 | msgstr "" 365 | 366 | #: usr/lib/linuxmint/mintupgrade/checks.py:805 367 | msgid "Package download" 368 | msgstr "" 369 | 370 | #: usr/lib/linuxmint/mintupgrade/checks.py:805 371 | msgid "Downloading packages..." 372 | msgstr "" 373 | 374 | #: usr/lib/linuxmint/mintupgrade/checks.py:817 375 | msgid "An error occurred while downloading the packages." 376 | msgstr "" 377 | 378 | #: usr/lib/linuxmint/mintupgrade/checks.py:824 379 | msgid "Session inhibition" 380 | msgstr "" 381 | 382 | #: usr/lib/linuxmint/mintupgrade/checks.py:824 383 | msgid "Inhibiting session..." 384 | msgstr "" 385 | 386 | #: usr/lib/linuxmint/mintupgrade/checks.py:833 387 | msgid "Upgrade preparation" 388 | msgstr "" 389 | 390 | #: usr/lib/linuxmint/mintupgrade/checks.py:833 391 | msgid "Preparing the upgrade..." 392 | msgstr "" 393 | 394 | #: usr/lib/linuxmint/mintupgrade/checks.py:862 395 | msgid "Upgrade phase" 396 | msgstr "" 397 | 398 | #: usr/lib/linuxmint/mintupgrade/checks.py:862 399 | msgid "Upgrading the system..." 400 | msgstr "" 401 | 402 | #: usr/lib/linuxmint/mintupgrade/checks.py:879 403 | #: usr/lib/linuxmint/mintupgrade/checks.py:885 404 | msgid "An issue was detected during the upgrade." 405 | msgstr "" 406 | 407 | #: usr/lib/linuxmint/mintupgrade/checks.py:904 408 | #, python-format 409 | msgid "%d packages still need to be updated (%d kept, %d deleted)" 410 | msgstr "" 411 | 412 | #: usr/lib/linuxmint/mintupgrade/checks.py:910 413 | msgid "Final phase" 414 | msgstr "" 415 | 416 | #: usr/lib/linuxmint/mintupgrade/checks.py:910 417 | msgid "Finalizing the upgrade..." 418 | msgstr "" 419 | 420 | #: usr/lib/linuxmint/mintupgrade/checks.py:929 421 | #, python-format 422 | msgid "%s could not be installed." 423 | msgstr "" 424 | 425 | #: usr/lib/linuxmint/mintupgrade/checks.py:936 426 | msgid "mint-meta-codecs could not be installed." 427 | msgstr "" 428 | 429 | #: usr/lib/linuxmint/mintupgrade/checks.py:944 430 | #: usr/lib/linuxmint/mintupgrade/checks.py:967 431 | msgid "The following packages could not be installed:" 432 | msgstr "" 433 | 434 | #: usr/lib/linuxmint/mintupgrade/checks.py:1030 435 | msgid "/etc/fstab was modified during the upgrade." 436 | msgstr "" 437 | 438 | #: usr/lib/linuxmint/mintupgrade/checks.py:1031 439 | msgid "" 440 | "To ensure a successful boot, the upgrade tool restored your original " 441 | "/etc/fstab" 442 | msgstr "" 443 | 444 | #: usr/lib/linuxmint/mintupgrade/checks.py:1032 445 | msgid "A copy of the modified file was saved as /etc/fstab.upgraded" 446 | msgstr "" 447 | 448 | #: usr/lib/linuxmint/mintupgrade/mintupgrade.py:63 449 | #: usr/lib/linuxmint/mintupgrade/mintupgrade.py:285 generate_desktop_files:26 450 | #: usr/share/linuxmint/mintupgrade/mintupgrade.ui.h:16 451 | msgid "Upgrade Tool" 452 | msgstr "" 453 | 454 | #: usr/lib/linuxmint/mintupgrade/mintupgrade.py:74 455 | #: usr/share/linuxmint/mintupgrade/mintupgrade.ui.h:2 456 | #, python-format 457 | msgid "Upgrade to %s" 458 | msgstr "%s-მდე განახლება" 459 | 460 | #: usr/lib/linuxmint/mintupgrade/mintupgrade.py:90 461 | msgid "Preferences" 462 | msgstr "მორგება" 463 | 464 | #: usr/lib/linuxmint/mintupgrade/mintupgrade.py:95 465 | #: usr/lib/linuxmint/mintupgrade/mintupgrade.py:284 466 | msgid "About" 467 | msgstr "შესახებ" 468 | 469 | #: usr/lib/linuxmint/mintupgrade/mintupgrade.py:100 470 | msgid "Quit" 471 | msgstr "გასვლა" 472 | 473 | #: usr/lib/linuxmint/mintupgrade/mintupgrade.py:144 474 | msgid "Phase 1: Preparation" 475 | msgstr "" 476 | 477 | #: usr/lib/linuxmint/mintupgrade/mintupgrade.py:145 478 | msgid "" 479 | "A series of tests will now be performed to prepare the computer for the " 480 | "upgrade." 481 | msgstr "" 482 | 483 | #: usr/lib/linuxmint/mintupgrade/mintupgrade.py:157 484 | msgid "Phase 2: Simulation and download" 485 | msgstr "" 486 | 487 | #: usr/lib/linuxmint/mintupgrade/mintupgrade.py:158 488 | msgid "Your package repositories will now point towards the new release." 489 | msgstr "" 490 | 491 | #: usr/lib/linuxmint/mintupgrade/mintupgrade.py:159 492 | msgid "A few more tests will be run and package updates will be downloaded." 493 | msgstr "" 494 | 495 | #: usr/lib/linuxmint/mintupgrade/mintupgrade.py:165 496 | msgid "Phase 3: Upgrade" 497 | msgstr "" 498 | 499 | #: usr/lib/linuxmint/mintupgrade/mintupgrade.py:166 500 | msgid "The packages will now be upgraded." 501 | msgstr "" 502 | 503 | #: usr/share/linuxmint/mintupgrade/mintupgrade.ui.h:3 504 | msgid "" 505 | "This program will ask you some questions and upgrade your operating system." 506 | msgstr "" 507 | 508 | #: usr/share/linuxmint/mintupgrade/mintupgrade.ui.h:4 509 | msgid "Let's go!" 510 | msgstr "წავედით!" 511 | 512 | #: usr/share/linuxmint/mintupgrade/mintupgrade.ui.h:5 513 | msgid "OK" 514 | msgstr "დიახ" 515 | 516 | #: usr/share/linuxmint/mintupgrade/mintupgrade.ui.h:6 517 | msgid "Fix" 518 | msgstr "გასწორება" 519 | 520 | #: usr/share/linuxmint/mintupgrade/mintupgrade.ui.h:7 521 | msgid "Check again" 522 | msgstr "თავიდან შემოწმება" 523 | 524 | #: usr/share/linuxmint/mintupgrade/mintupgrade.ui.h:8 525 | msgid "The following error occurred:" 526 | msgstr "აღმოჩენილია შემდეგი შეცდომა:" 527 | 528 | #: usr/share/linuxmint/mintupgrade/mintupgrade.ui.h:9 529 | msgid "The upgrade was successful." 530 | msgstr "განახლება წარმატებულია." 531 | 532 | #: usr/share/linuxmint/mintupgrade/mintupgrade.ui.h:10 533 | msgid "Reboot the computer for all the changes to take effect." 534 | msgstr "" 535 | 536 | #: usr/share/linuxmint/mintupgrade/mintupgrade.ui.h:11 537 | msgid "Recent Timeshift snapshot" 538 | msgstr "" 539 | 540 | #: usr/share/linuxmint/mintupgrade/mintupgrade.ui.h:12 541 | msgid "Applied software updates" 542 | msgstr "" 543 | 544 | #: usr/share/linuxmint/mintupgrade/mintupgrade.ui.h:13 545 | msgid "" 546 | "These requirements are there to guarantee a safe upgrade. Only disable them " 547 | "if you know what you are doing." 548 | msgstr "" 549 | 550 | #: usr/share/linuxmint/mintupgrade/mintupgrade.ui.h:14 551 | msgid "Supported Linux Mint version" 552 | msgstr "" 553 | 554 | #: usr/share/linuxmint/mintupgrade/mintupgrade.ui.h:15 555 | msgid "Requirements" 556 | msgstr "მოთხოვნები" 557 | -------------------------------------------------------------------------------- /po/mintupgrade-kab.po: -------------------------------------------------------------------------------- 1 | # Kabyle translation for linuxmint 2 | # Copyright (c) 2022 Rosetta Contributors and Canonical Ltd 2022 3 | # This file is distributed under the same license as the linuxmint package. 4 | # FIRST AUTHOR , 2022. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: linuxmint\n" 9 | "Report-Msgid-Bugs-To: FULL NAME \n" 10 | "POT-Creation-Date: 2023-09-26 14:10+0100\n" 11 | "PO-Revision-Date: 2023-11-07 13:33+0000\n" 12 | "Last-Translator: Launchpad Translations Administrators \n" 13 | "Language-Team: Kabyle \n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "X-Launchpad-Export-Date: 2025-01-06 12:01+0000\n" 18 | "X-Generator: Launchpad (build 6394e03793719e8d73f5a60b5439440e693c92f1)\n" 19 | 20 | #: usr/lib/linuxmint/mintupgrade/checks.py:32 21 | #, python-format 22 | msgid "" 23 | "The package repositories need to point towards the new release (%s/%s)." 24 | msgstr "" 25 | 26 | #: usr/lib/linuxmint/mintupgrade/checks.py:34 27 | msgid "This should have be done by the Upgrade Tool already." 28 | msgstr "" 29 | 30 | #: usr/lib/linuxmint/mintupgrade/checks.py:35 31 | msgid "Were the repositories modified since?" 32 | msgstr "" 33 | 34 | #: usr/lib/linuxmint/mintupgrade/checks.py:36 35 | msgid "Re-run the Upgrade tool so that it migrates the repositories again." 36 | msgstr "" 37 | 38 | #: usr/lib/linuxmint/mintupgrade/checks.py:143 39 | msgid "Linux Mint version" 40 | msgstr "Lqem n Linux Mint" 41 | 42 | #: usr/lib/linuxmint/mintupgrade/checks.py:143 43 | msgid "Checking your version of Linux Mint..." 44 | msgstr "Aselken n lqem-inek inem n Linux Mint..." 45 | 46 | #: usr/lib/linuxmint/mintupgrade/checks.py:151 47 | msgid "" 48 | "Your version of Linux Mint is unknown. /etc/linuxmint/info is missing." 49 | msgstr "" 50 | "Llqem-inek inem n Linux Mint d arussin. /etc/linuxmint/info is missing." 51 | 52 | #: usr/lib/linuxmint/mintupgrade/checks.py:168 53 | #, python-format 54 | msgid "Your version of Linux Mint is '%s'. Only %s can be upgraded to %s." 55 | msgstr "" 56 | "Llqem-inek inem n Linux Mint d '%s'. Anagar %s i tzemreḍ ad tleqqemeḍ ɣer %s." 57 | 58 | #: usr/lib/linuxmint/mintupgrade/checks.py:174 59 | #, python-format 60 | msgid "Your edition of Linux Mint is '%s'. It cannot be upgraded to %s." 61 | msgstr "" 62 | 63 | #: usr/lib/linuxmint/mintupgrade/checks.py:181 64 | msgid "Power source" 65 | msgstr "" 66 | 67 | #: usr/lib/linuxmint/mintupgrade/checks.py:181 68 | msgid "Checking the power source..." 69 | msgstr "" 70 | 71 | #: usr/lib/linuxmint/mintupgrade/checks.py:186 72 | msgid "Connect the computer to a power source before attempting to upgrade." 73 | msgstr "" 74 | 75 | #: usr/lib/linuxmint/mintupgrade/checks.py:192 76 | msgid "System snapshots" 77 | msgstr "Tuṭṭfiwin n unagraw" 78 | 79 | #: usr/lib/linuxmint/mintupgrade/checks.py:192 80 | msgid "Checking system snapshots..." 81 | msgstr "Aseken n tuṭṭfiwin n unagraw..." 82 | 83 | #: usr/lib/linuxmint/mintupgrade/checks.py:197 84 | msgid "" 85 | "If the upgrade isn't successful, a system snapshot will allow you to go back " 86 | "in time and revert all the changes." 87 | msgstr "" 88 | 89 | #: usr/lib/linuxmint/mintupgrade/checks.py:198 90 | msgid "Press 'Fix' to perform a system snapshot." 91 | msgstr "" 92 | 93 | #: usr/lib/linuxmint/mintupgrade/checks.py:214 94 | msgid "APT cache" 95 | msgstr "Tuffirt APT" 96 | 97 | #: usr/lib/linuxmint/mintupgrade/checks.py:214 98 | msgid "Checking the APT cache..." 99 | msgstr "Aselken n tuffirt n APT..." 100 | 101 | #: usr/lib/linuxmint/mintupgrade/checks.py:232 102 | msgid "" 103 | "Your package cache can't refresh correctly. Run 'apt update' and fix the " 104 | "errors it displays." 105 | msgstr "" 106 | 107 | #: usr/lib/linuxmint/mintupgrade/checks.py:241 108 | msgid "" 109 | "Some of your packages are broken. Run 'apt install -f' to fix the issue." 110 | msgstr "" 111 | 112 | #: usr/lib/linuxmint/mintupgrade/checks.py:252 113 | msgid "" 114 | "Your operating system is not up to date. Apply available updates before " 115 | "attempting the upgrade." 116 | msgstr "" 117 | 118 | #: usr/lib/linuxmint/mintupgrade/checks.py:273 119 | msgid "The following operations need to be performed:" 120 | msgstr "" 121 | 122 | #: usr/lib/linuxmint/mintupgrade/checks.py:275 123 | #: usr/lib/linuxmint/mintupgrade/checks.py:499 124 | msgid "Package" 125 | msgstr "Akemmus" 126 | 127 | #: usr/lib/linuxmint/mintupgrade/checks.py:275 128 | msgid "Operation" 129 | msgstr "Tamhelt" 130 | 131 | #: usr/lib/linuxmint/mintupgrade/checks.py:277 132 | msgid "needs to be installed" 133 | msgstr "yesra ad yettwasbedd" 134 | 135 | #: usr/lib/linuxmint/mintupgrade/checks.py:279 136 | msgid "needs to be removed" 137 | msgstr "yesra ad yettwakkes" 138 | 139 | #: usr/lib/linuxmint/mintupgrade/checks.py:308 140 | #: usr/lib/linuxmint/mintupgrade/checks.py:588 141 | msgid "Package repositories" 142 | msgstr "Isarsayen n yikemmusen" 143 | 144 | #: usr/lib/linuxmint/mintupgrade/checks.py:308 145 | msgid "Checking package repositories..." 146 | msgstr "Aselken n yisarsayen n yikemmusen..." 147 | 148 | #: usr/lib/linuxmint/mintupgrade/checks.py:322 149 | msgid "" 150 | "The following sources are defined in DEB822 format. This format isn't " 151 | "supported yet." 152 | msgstr "" 153 | 154 | #: usr/lib/linuxmint/mintupgrade/checks.py:328 155 | msgid "Backup and then delete these files to continue." 156 | msgstr "" 157 | 158 | #: usr/lib/linuxmint/mintupgrade/checks.py:356 159 | msgid "" 160 | "The following repositories do not explicitly support your version of Linux " 161 | "Mint." 162 | msgstr "" 163 | 164 | #: usr/lib/linuxmint/mintupgrade/checks.py:364 165 | msgid "These repositories need to be disabled." 166 | msgstr "Isarsayen-agi sran ad ttusensen." 167 | 168 | #: usr/lib/linuxmint/mintupgrade/checks.py:377 169 | msgid "Your APT policy is incorrect." 170 | msgstr "" 171 | 172 | #: usr/lib/linuxmint/mintupgrade/checks.py:378 173 | msgid "Reboot your computer." 174 | msgstr "Ales asekker n uselkim-inek inem." 175 | 176 | #: usr/lib/linuxmint/mintupgrade/checks.py:401 177 | #, python-format 178 | msgid "%s is unreachable" 179 | msgstr "" 180 | 181 | #: usr/lib/linuxmint/mintupgrade/checks.py:406 182 | #, python-format 183 | msgid "%s is not up to date. Switch to a different mirror." 184 | msgstr "" 185 | 186 | #: usr/lib/linuxmint/mintupgrade/checks.py:418 187 | #, python-format 188 | msgid "%s does not support %s" 189 | msgstr "%s ur yedhil ara %s" 190 | 191 | #: usr/lib/linuxmint/mintupgrade/checks.py:422 192 | msgid "The following problems were found:" 193 | msgstr "Nufa-d uguren-agi ara d-iḍefen:" 194 | 195 | #: usr/lib/linuxmint/mintupgrade/checks.py:464 196 | msgid "Held packages" 197 | msgstr "" 198 | 199 | #: usr/lib/linuxmint/mintupgrade/checks.py:464 200 | msgid "Looking for held packages..." 201 | msgstr "" 202 | 203 | #: usr/lib/linuxmint/mintupgrade/checks.py:470 204 | msgid "The following packages are held:" 205 | msgstr "" 206 | 207 | #: usr/lib/linuxmint/mintupgrade/checks.py:477 208 | msgid "Held packages can break the upgrade." 209 | msgstr "" 210 | 211 | #: usr/lib/linuxmint/mintupgrade/checks.py:491 212 | msgid "Foreign packages" 213 | msgstr "" 214 | 215 | #: usr/lib/linuxmint/mintupgrade/checks.py:491 216 | msgid "Looking for foreign packages..." 217 | msgstr "Anadi n yikemmusen ibeṛṛaniyen..." 218 | 219 | #: usr/lib/linuxmint/mintupgrade/checks.py:497 220 | msgid "" 221 | "The following packages need to be downgraded back to official versions:" 222 | msgstr "" 223 | 224 | #: usr/lib/linuxmint/mintupgrade/checks.py:499 225 | msgid "Installed Version" 226 | msgstr "Lqem yettwasbedden" 227 | 228 | #: usr/lib/linuxmint/mintupgrade/checks.py:499 229 | msgid "Official version" 230 | msgstr "Lqem unṣib" 231 | 232 | #: usr/lib/linuxmint/mintupgrade/checks.py:499 233 | msgid "Archive" 234 | msgstr "Aɣbar" 235 | 236 | #: usr/lib/linuxmint/mintupgrade/checks.py:504 237 | msgid "Otherwise these packages can create conflicts." 238 | msgstr "" 239 | 240 | #: usr/lib/linuxmint/mintupgrade/checks.py:520 241 | #: usr/lib/linuxmint/mintupgrade/checks.py:556 242 | msgid "Orphan packages" 243 | msgstr "" 244 | 245 | #: usr/lib/linuxmint/mintupgrade/checks.py:520 246 | msgid "Looking for orphan packages..." 247 | msgstr "" 248 | 249 | #: usr/lib/linuxmint/mintupgrade/checks.py:540 250 | msgid "The following packages do not exist in the repositories:" 251 | msgstr "Ikemmusen-agi ara d-iḍefren ulac-iten deg yisarsayen:" 252 | 253 | #: usr/lib/linuxmint/mintupgrade/checks.py:546 254 | msgid "In some rare cases orphan packages can interfere with the upgrade." 255 | msgstr "" 256 | 257 | #: usr/lib/linuxmint/mintupgrade/checks.py:547 258 | msgid "" 259 | "If you decide to uninstall some of these packages press 'Check again' after " 260 | "their removal." 261 | msgstr "" 262 | 263 | #: usr/lib/linuxmint/mintupgrade/checks.py:548 264 | msgid "Press 'OK' to continue with the upgrade." 265 | msgstr "" 266 | 267 | #: usr/lib/linuxmint/mintupgrade/checks.py:556 268 | msgid "Removing newly orphaned packages..." 269 | msgstr "" 270 | 271 | #: usr/lib/linuxmint/mintupgrade/checks.py:588 272 | msgid "Pointing to the new release..." 273 | msgstr "" 274 | 275 | #: usr/lib/linuxmint/mintupgrade/checks.py:627 276 | msgid "Upgrade simulation" 277 | msgstr "" 278 | 279 | #: usr/lib/linuxmint/mintupgrade/checks.py:627 280 | msgid "Simulating upgrade to check hard disk space and potential issues..." 281 | msgstr "" 282 | 283 | #: usr/lib/linuxmint/mintupgrade/checks.py:666 284 | msgid "The simulation was not successful." 285 | msgstr "" 286 | 287 | #: usr/lib/linuxmint/mintupgrade/checks.py:667 288 | msgid "Upgrading would remove the following important packages:" 289 | msgstr "" 290 | 291 | #: usr/lib/linuxmint/mintupgrade/checks.py:668 292 | msgid "Unwanted removals" 293 | msgstr "" 294 | 295 | #: usr/lib/linuxmint/mintupgrade/checks.py:672 296 | msgid "" 297 | "This is a sign that something is wrong and needs to be fixed before going " 298 | "further." 299 | msgstr "" 300 | 301 | #: usr/lib/linuxmint/mintupgrade/checks.py:674 302 | msgid "Recommended solution" 303 | msgstr "" 304 | 305 | #: usr/lib/linuxmint/mintupgrade/checks.py:675 306 | msgid "Use apt-get in a terminal to troubleshoot and solve the issue." 307 | msgstr "" 308 | 309 | #: usr/lib/linuxmint/mintupgrade/checks.py:676 310 | msgid "Don't hesitate to seek help on the forums and the chat room." 311 | msgstr "" 312 | 313 | #: usr/lib/linuxmint/mintupgrade/checks.py:678 314 | msgid "Additional information" 315 | msgstr "Talɣut-nniḍen" 316 | 317 | #: usr/lib/linuxmint/mintupgrade/checks.py:679 318 | msgid "The information below might help solve the issue." 319 | msgstr "" 320 | 321 | #: usr/lib/linuxmint/mintupgrade/checks.py:680 322 | #: usr/lib/linuxmint/mintupgrade/checks.py:692 323 | msgid "Kept packages" 324 | msgstr "" 325 | 326 | #: usr/lib/linuxmint/mintupgrade/checks.py:681 327 | #: usr/lib/linuxmint/mintupgrade/checks.py:696 328 | msgid "Removed packages" 329 | msgstr "Ikemmusen yettwakksen" 330 | 331 | #: usr/lib/linuxmint/mintupgrade/checks.py:682 332 | #: usr/lib/linuxmint/mintupgrade/checks.py:695 333 | msgid "Added packages" 334 | msgstr "Ikemmusen yettwarnan" 335 | 336 | #: usr/lib/linuxmint/mintupgrade/checks.py:683 337 | #: usr/lib/linuxmint/mintupgrade/checks.py:691 338 | #, python-format 339 | msgid "Packages updated: %d, added: %d , kept: %d, deleted: %d" 340 | msgstr "" 341 | 342 | #: usr/lib/linuxmint/mintupgrade/checks.py:686 343 | msgid "Upgrading will perform the following changes." 344 | msgstr "" 345 | 346 | #: usr/lib/linuxmint/mintupgrade/checks.py:694 347 | msgid "" 348 | "Note: Ideally, no packages should be kept. This might indicate an issue." 349 | msgstr "" 350 | 351 | #: usr/lib/linuxmint/mintupgrade/checks.py:698 352 | msgid "" 353 | "Go through the list above and make sure you are happy with the removals " 354 | "before going further with the upgrade." 355 | msgstr "" 356 | 357 | #: usr/lib/linuxmint/mintupgrade/checks.py:795 358 | #, python-format 359 | msgid "You need %s on '%s' but only have %s. You must free an additional %s." 360 | msgstr "" 361 | 362 | #: usr/lib/linuxmint/mintupgrade/checks.py:799 363 | #, python-format 364 | msgid "Download size: %s. Additional space needed: %s." 365 | msgstr "" 366 | 367 | #: usr/lib/linuxmint/mintupgrade/checks.py:805 368 | msgid "Package download" 369 | msgstr "" 370 | 371 | #: usr/lib/linuxmint/mintupgrade/checks.py:805 372 | msgid "Downloading packages..." 373 | msgstr "Asader n yikemmusen..." 374 | 375 | #: usr/lib/linuxmint/mintupgrade/checks.py:817 376 | msgid "An error occurred while downloading the packages." 377 | msgstr "Teḍra-d tuccḍa deg usader n yikemmusen." 378 | 379 | #: usr/lib/linuxmint/mintupgrade/checks.py:824 380 | msgid "Session inhibition" 381 | msgstr "" 382 | 383 | #: usr/lib/linuxmint/mintupgrade/checks.py:824 384 | msgid "Inhibiting session..." 385 | msgstr "" 386 | 387 | #: usr/lib/linuxmint/mintupgrade/checks.py:833 388 | msgid "Upgrade preparation" 389 | msgstr "" 390 | 391 | #: usr/lib/linuxmint/mintupgrade/checks.py:833 392 | msgid "Preparing the upgrade..." 393 | msgstr "" 394 | 395 | #: usr/lib/linuxmint/mintupgrade/checks.py:862 396 | msgid "Upgrade phase" 397 | msgstr "" 398 | 399 | #: usr/lib/linuxmint/mintupgrade/checks.py:862 400 | msgid "Upgrading the system..." 401 | msgstr "" 402 | 403 | #: usr/lib/linuxmint/mintupgrade/checks.py:879 404 | #: usr/lib/linuxmint/mintupgrade/checks.py:885 405 | msgid "An issue was detected during the upgrade." 406 | msgstr "" 407 | 408 | #: usr/lib/linuxmint/mintupgrade/checks.py:904 409 | #, python-format 410 | msgid "%d packages still need to be updated (%d kept, %d deleted)" 411 | msgstr "" 412 | 413 | #: usr/lib/linuxmint/mintupgrade/checks.py:910 414 | msgid "Final phase" 415 | msgstr "" 416 | 417 | #: usr/lib/linuxmint/mintupgrade/checks.py:910 418 | msgid "Finalizing the upgrade..." 419 | msgstr "" 420 | 421 | #: usr/lib/linuxmint/mintupgrade/checks.py:929 422 | #, python-format 423 | msgid "%s could not be installed." 424 | msgstr "" 425 | 426 | #: usr/lib/linuxmint/mintupgrade/checks.py:936 427 | msgid "mint-meta-codecs could not be installed." 428 | msgstr "" 429 | 430 | #: usr/lib/linuxmint/mintupgrade/checks.py:944 431 | #: usr/lib/linuxmint/mintupgrade/checks.py:967 432 | msgid "The following packages could not be installed:" 433 | msgstr "" 434 | 435 | #: usr/lib/linuxmint/mintupgrade/checks.py:1030 436 | msgid "/etc/fstab was modified during the upgrade." 437 | msgstr "" 438 | 439 | #: usr/lib/linuxmint/mintupgrade/checks.py:1031 440 | msgid "" 441 | "To ensure a successful boot, the upgrade tool restored your original " 442 | "/etc/fstab" 443 | msgstr "" 444 | 445 | #: usr/lib/linuxmint/mintupgrade/checks.py:1032 446 | msgid "A copy of the modified file was saved as /etc/fstab.upgraded" 447 | msgstr "" 448 | 449 | #: usr/lib/linuxmint/mintupgrade/mintupgrade.py:63 450 | #: usr/lib/linuxmint/mintupgrade/mintupgrade.py:285 generate_desktop_files:26 451 | #: usr/share/linuxmint/mintupgrade/mintupgrade.ui.h:16 452 | msgid "Upgrade Tool" 453 | msgstr "" 454 | 455 | #: usr/lib/linuxmint/mintupgrade/mintupgrade.py:74 456 | #: usr/share/linuxmint/mintupgrade/mintupgrade.ui.h:2 457 | #, python-format 458 | msgid "Upgrade to %s" 459 | msgstr "" 460 | 461 | #: usr/lib/linuxmint/mintupgrade/mintupgrade.py:90 462 | msgid "Preferences" 463 | msgstr "Ismenyifen" 464 | 465 | #: usr/lib/linuxmint/mintupgrade/mintupgrade.py:95 466 | #: usr/lib/linuxmint/mintupgrade/mintupgrade.py:284 467 | msgid "About" 468 | msgstr "Ɣef" 469 | 470 | #: usr/lib/linuxmint/mintupgrade/mintupgrade.py:100 471 | msgid "Quit" 472 | msgstr "Ffeɣ" 473 | 474 | #: usr/lib/linuxmint/mintupgrade/mintupgrade.py:144 475 | msgid "Phase 1: Preparation" 476 | msgstr "" 477 | 478 | #: usr/lib/linuxmint/mintupgrade/mintupgrade.py:145 479 | msgid "" 480 | "A series of tests will now be performed to prepare the computer for the " 481 | "upgrade." 482 | msgstr "" 483 | 484 | #: usr/lib/linuxmint/mintupgrade/mintupgrade.py:157 485 | msgid "Phase 2: Simulation and download" 486 | msgstr "" 487 | 488 | #: usr/lib/linuxmint/mintupgrade/mintupgrade.py:158 489 | msgid "Your package repositories will now point towards the new release." 490 | msgstr "" 491 | 492 | #: usr/lib/linuxmint/mintupgrade/mintupgrade.py:159 493 | msgid "A few more tests will be run and package updates will be downloaded." 494 | msgstr "" 495 | 496 | #: usr/lib/linuxmint/mintupgrade/mintupgrade.py:165 497 | msgid "Phase 3: Upgrade" 498 | msgstr "" 499 | 500 | #: usr/lib/linuxmint/mintupgrade/mintupgrade.py:166 501 | msgid "The packages will now be upgraded." 502 | msgstr "" 503 | 504 | #: usr/share/linuxmint/mintupgrade/mintupgrade.ui.h:3 505 | msgid "" 506 | "This program will ask you some questions and upgrade your operating system." 507 | msgstr "" 508 | 509 | #: usr/share/linuxmint/mintupgrade/mintupgrade.ui.h:4 510 | msgid "Let's go!" 511 | msgstr "" 512 | 513 | #: usr/share/linuxmint/mintupgrade/mintupgrade.ui.h:5 514 | msgid "OK" 515 | msgstr "IH" 516 | 517 | #: usr/share/linuxmint/mintupgrade/mintupgrade.ui.h:6 518 | msgid "Fix" 519 | msgstr "Seggem" 520 | 521 | #: usr/share/linuxmint/mintupgrade/mintupgrade.ui.h:7 522 | msgid "Check again" 523 | msgstr "Selken tikkelt-nniḍen" 524 | 525 | #: usr/share/linuxmint/mintupgrade/mintupgrade.ui.h:8 526 | msgid "The following error occurred:" 527 | msgstr "Teḍra-d tuccḍa-yagi:" 528 | 529 | #: usr/share/linuxmint/mintupgrade/mintupgrade.ui.h:9 530 | msgid "The upgrade was successful." 531 | msgstr "" 532 | 533 | #: usr/share/linuxmint/mintupgrade/mintupgrade.ui.h:10 534 | msgid "Reboot the computer for all the changes to take effect." 535 | msgstr "Ales tanekra n uselkim akken ad ddun akk ibeddilen." 536 | 537 | #: usr/share/linuxmint/mintupgrade/mintupgrade.ui.h:11 538 | msgid "Recent Timeshift snapshot" 539 | msgstr "" 540 | 541 | #: usr/share/linuxmint/mintupgrade/mintupgrade.ui.h:12 542 | msgid "Applied software updates" 543 | msgstr "Ileqman n yiseɣẓanen yettwansesen." 544 | 545 | #: usr/share/linuxmint/mintupgrade/mintupgrade.ui.h:13 546 | msgid "" 547 | "These requirements are there to guarantee a safe upgrade. Only disable them " 548 | "if you know what you are doing." 549 | msgstr "" 550 | 551 | #: usr/share/linuxmint/mintupgrade/mintupgrade.ui.h:14 552 | msgid "Supported Linux Mint version" 553 | msgstr "Ileqman n Linux Mint yettwadehlen" 554 | 555 | #: usr/share/linuxmint/mintupgrade/mintupgrade.ui.h:15 556 | msgid "Requirements" 557 | msgstr "Ayen yettwasran" 558 | -------------------------------------------------------------------------------- /po/mintupgrade-la.po: -------------------------------------------------------------------------------- 1 | # Latin translation for linuxmint 2 | # Copyright (c) 2022 Rosetta Contributors and Canonical Ltd 2022 3 | # This file is distributed under the same license as the linuxmint package. 4 | # FIRST AUTHOR , 2022. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: linuxmint\n" 9 | "Report-Msgid-Bugs-To: FULL NAME \n" 10 | "POT-Creation-Date: 2023-09-26 14:10+0100\n" 11 | "PO-Revision-Date: 2023-11-07 13:33+0000\n" 12 | "Last-Translator: Launchpad Translations Administrators \n" 13 | "Language-Team: Latin \n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "X-Launchpad-Export-Date: 2025-01-06 12:01+0000\n" 18 | "X-Generator: Launchpad (build 6394e03793719e8d73f5a60b5439440e693c92f1)\n" 19 | "Language: la\n" 20 | 21 | #: usr/lib/linuxmint/mintupgrade/checks.py:32 22 | #, python-format 23 | msgid "" 24 | "The package repositories need to point towards the new release (%s/%s)." 25 | msgstr "" 26 | 27 | #: usr/lib/linuxmint/mintupgrade/checks.py:34 28 | msgid "This should have be done by the Upgrade Tool already." 29 | msgstr "" 30 | 31 | #: usr/lib/linuxmint/mintupgrade/checks.py:35 32 | msgid "Were the repositories modified since?" 33 | msgstr "" 34 | 35 | #: usr/lib/linuxmint/mintupgrade/checks.py:36 36 | msgid "Re-run the Upgrade tool so that it migrates the repositories again." 37 | msgstr "" 38 | 39 | #: usr/lib/linuxmint/mintupgrade/checks.py:143 40 | msgid "Linux Mint version" 41 | msgstr "Versio Linucis Mint" 42 | 43 | #: usr/lib/linuxmint/mintupgrade/checks.py:143 44 | msgid "Checking your version of Linux Mint..." 45 | msgstr "" 46 | 47 | #: usr/lib/linuxmint/mintupgrade/checks.py:151 48 | msgid "" 49 | "Your version of Linux Mint is unknown. /etc/linuxmint/info is missing." 50 | msgstr "" 51 | 52 | #: usr/lib/linuxmint/mintupgrade/checks.py:168 53 | #, python-format 54 | msgid "Your version of Linux Mint is '%s'. Only %s can be upgraded to %s." 55 | msgstr "" 56 | 57 | #: usr/lib/linuxmint/mintupgrade/checks.py:174 58 | #, python-format 59 | msgid "Your edition of Linux Mint is '%s'. It cannot be upgraded to %s." 60 | msgstr "" 61 | 62 | #: usr/lib/linuxmint/mintupgrade/checks.py:181 63 | msgid "Power source" 64 | msgstr "Fons alimoniae" 65 | 66 | #: usr/lib/linuxmint/mintupgrade/checks.py:181 67 | msgid "Checking the power source..." 68 | msgstr "Fons alimoniae inspicitur ..." 69 | 70 | #: usr/lib/linuxmint/mintupgrade/checks.py:186 71 | msgid "Connect the computer to a power source before attempting to upgrade." 72 | msgstr "" 73 | 74 | #: usr/lib/linuxmint/mintupgrade/checks.py:192 75 | msgid "System snapshots" 76 | msgstr "Photographia systematis" 77 | 78 | #: usr/lib/linuxmint/mintupgrade/checks.py:192 79 | msgid "Checking system snapshots..." 80 | msgstr "" 81 | 82 | #: usr/lib/linuxmint/mintupgrade/checks.py:197 83 | msgid "" 84 | "If the upgrade isn't successful, a system snapshot will allow you to go back " 85 | "in time and revert all the changes." 86 | msgstr "" 87 | 88 | #: usr/lib/linuxmint/mintupgrade/checks.py:198 89 | msgid "Press 'Fix' to perform a system snapshot." 90 | msgstr "" 91 | 92 | #: usr/lib/linuxmint/mintupgrade/checks.py:214 93 | msgid "APT cache" 94 | msgstr "APT cache" 95 | 96 | #: usr/lib/linuxmint/mintupgrade/checks.py:214 97 | msgid "Checking the APT cache..." 98 | msgstr "APT cache inspicitur ..." 99 | 100 | #: usr/lib/linuxmint/mintupgrade/checks.py:232 101 | msgid "" 102 | "Your package cache can't refresh correctly. Run 'apt update' and fix the " 103 | "errors it displays." 104 | msgstr "" 105 | 106 | #: usr/lib/linuxmint/mintupgrade/checks.py:241 107 | msgid "" 108 | "Some of your packages are broken. Run 'apt install -f' to fix the issue." 109 | msgstr "" 110 | 111 | #: usr/lib/linuxmint/mintupgrade/checks.py:252 112 | msgid "" 113 | "Your operating system is not up to date. Apply available updates before " 114 | "attempting the upgrade." 115 | msgstr "" 116 | 117 | #: usr/lib/linuxmint/mintupgrade/checks.py:273 118 | msgid "The following operations need to be performed:" 119 | msgstr "" 120 | 121 | #: usr/lib/linuxmint/mintupgrade/checks.py:275 122 | #: usr/lib/linuxmint/mintupgrade/checks.py:499 123 | msgid "Package" 124 | msgstr "Fasciculus" 125 | 126 | #: usr/lib/linuxmint/mintupgrade/checks.py:275 127 | msgid "Operation" 128 | msgstr "Operatio" 129 | 130 | #: usr/lib/linuxmint/mintupgrade/checks.py:277 131 | msgid "needs to be installed" 132 | msgstr "" 133 | 134 | #: usr/lib/linuxmint/mintupgrade/checks.py:279 135 | msgid "needs to be removed" 136 | msgstr "" 137 | 138 | #: usr/lib/linuxmint/mintupgrade/checks.py:308 139 | #: usr/lib/linuxmint/mintupgrade/checks.py:588 140 | msgid "Package repositories" 141 | msgstr "" 142 | 143 | #: usr/lib/linuxmint/mintupgrade/checks.py:308 144 | msgid "Checking package repositories..." 145 | msgstr "" 146 | 147 | #: usr/lib/linuxmint/mintupgrade/checks.py:322 148 | msgid "" 149 | "The following sources are defined in DEB822 format. This format isn't " 150 | "supported yet." 151 | msgstr "" 152 | 153 | #: usr/lib/linuxmint/mintupgrade/checks.py:328 154 | msgid "Backup and then delete these files to continue." 155 | msgstr "" 156 | 157 | #: usr/lib/linuxmint/mintupgrade/checks.py:356 158 | msgid "" 159 | "The following repositories do not explicitly support your version of Linux " 160 | "Mint." 161 | msgstr "" 162 | 163 | #: usr/lib/linuxmint/mintupgrade/checks.py:364 164 | msgid "These repositories need to be disabled." 165 | msgstr "" 166 | 167 | #: usr/lib/linuxmint/mintupgrade/checks.py:377 168 | msgid "Your APT policy is incorrect." 169 | msgstr "" 170 | 171 | #: usr/lib/linuxmint/mintupgrade/checks.py:378 172 | msgid "Reboot your computer." 173 | msgstr "Computatorem iterum accende." 174 | 175 | #: usr/lib/linuxmint/mintupgrade/checks.py:401 176 | #, python-format 177 | msgid "%s is unreachable" 178 | msgstr "%s invium est" 179 | 180 | #: usr/lib/linuxmint/mintupgrade/checks.py:406 181 | #, python-format 182 | msgid "%s is not up to date. Switch to a different mirror." 183 | msgstr "" 184 | 185 | #: usr/lib/linuxmint/mintupgrade/checks.py:418 186 | #, python-format 187 | msgid "%s does not support %s" 188 | msgstr "" 189 | 190 | #: usr/lib/linuxmint/mintupgrade/checks.py:422 191 | msgid "The following problems were found:" 192 | msgstr "" 193 | 194 | #: usr/lib/linuxmint/mintupgrade/checks.py:464 195 | msgid "Held packages" 196 | msgstr "" 197 | 198 | #: usr/lib/linuxmint/mintupgrade/checks.py:464 199 | msgid "Looking for held packages..." 200 | msgstr "" 201 | 202 | #: usr/lib/linuxmint/mintupgrade/checks.py:470 203 | msgid "The following packages are held:" 204 | msgstr "" 205 | 206 | #: usr/lib/linuxmint/mintupgrade/checks.py:477 207 | msgid "Held packages can break the upgrade." 208 | msgstr "" 209 | 210 | #: usr/lib/linuxmint/mintupgrade/checks.py:491 211 | msgid "Foreign packages" 212 | msgstr "Fasciculi externi" 213 | 214 | #: usr/lib/linuxmint/mintupgrade/checks.py:491 215 | msgid "Looking for foreign packages..." 216 | msgstr "" 217 | 218 | #: usr/lib/linuxmint/mintupgrade/checks.py:497 219 | msgid "" 220 | "The following packages need to be downgraded back to official versions:" 221 | msgstr "" 222 | 223 | #: usr/lib/linuxmint/mintupgrade/checks.py:499 224 | msgid "Installed Version" 225 | msgstr "" 226 | 227 | #: usr/lib/linuxmint/mintupgrade/checks.py:499 228 | msgid "Official version" 229 | msgstr "" 230 | 231 | #: usr/lib/linuxmint/mintupgrade/checks.py:499 232 | msgid "Archive" 233 | msgstr "Tabularium" 234 | 235 | #: usr/lib/linuxmint/mintupgrade/checks.py:504 236 | msgid "Otherwise these packages can create conflicts." 237 | msgstr "" 238 | 239 | #: usr/lib/linuxmint/mintupgrade/checks.py:520 240 | #: usr/lib/linuxmint/mintupgrade/checks.py:556 241 | msgid "Orphan packages" 242 | msgstr "" 243 | 244 | #: usr/lib/linuxmint/mintupgrade/checks.py:520 245 | msgid "Looking for orphan packages..." 246 | msgstr "" 247 | 248 | #: usr/lib/linuxmint/mintupgrade/checks.py:540 249 | msgid "The following packages do not exist in the repositories:" 250 | msgstr "" 251 | 252 | #: usr/lib/linuxmint/mintupgrade/checks.py:546 253 | msgid "In some rare cases orphan packages can interfere with the upgrade." 254 | msgstr "" 255 | 256 | #: usr/lib/linuxmint/mintupgrade/checks.py:547 257 | msgid "" 258 | "If you decide to uninstall some of these packages press 'Check again' after " 259 | "their removal." 260 | msgstr "" 261 | 262 | #: usr/lib/linuxmint/mintupgrade/checks.py:548 263 | msgid "Press 'OK' to continue with the upgrade." 264 | msgstr "" 265 | 266 | #: usr/lib/linuxmint/mintupgrade/checks.py:556 267 | msgid "Removing newly orphaned packages..." 268 | msgstr "" 269 | 270 | #: usr/lib/linuxmint/mintupgrade/checks.py:588 271 | msgid "Pointing to the new release..." 272 | msgstr "" 273 | 274 | #: usr/lib/linuxmint/mintupgrade/checks.py:627 275 | msgid "Upgrade simulation" 276 | msgstr "" 277 | 278 | #: usr/lib/linuxmint/mintupgrade/checks.py:627 279 | msgid "Simulating upgrade to check hard disk space and potential issues..." 280 | msgstr "" 281 | 282 | #: usr/lib/linuxmint/mintupgrade/checks.py:666 283 | msgid "The simulation was not successful." 284 | msgstr "" 285 | 286 | #: usr/lib/linuxmint/mintupgrade/checks.py:667 287 | msgid "Upgrading would remove the following important packages:" 288 | msgstr "" 289 | 290 | #: usr/lib/linuxmint/mintupgrade/checks.py:668 291 | msgid "Unwanted removals" 292 | msgstr "" 293 | 294 | #: usr/lib/linuxmint/mintupgrade/checks.py:672 295 | msgid "" 296 | "This is a sign that something is wrong and needs to be fixed before going " 297 | "further." 298 | msgstr "" 299 | 300 | #: usr/lib/linuxmint/mintupgrade/checks.py:674 301 | msgid "Recommended solution" 302 | msgstr "" 303 | 304 | #: usr/lib/linuxmint/mintupgrade/checks.py:675 305 | msgid "Use apt-get in a terminal to troubleshoot and solve the issue." 306 | msgstr "" 307 | 308 | #: usr/lib/linuxmint/mintupgrade/checks.py:676 309 | msgid "Don't hesitate to seek help on the forums and the chat room." 310 | msgstr "" 311 | 312 | #: usr/lib/linuxmint/mintupgrade/checks.py:678 313 | msgid "Additional information" 314 | msgstr "" 315 | 316 | #: usr/lib/linuxmint/mintupgrade/checks.py:679 317 | msgid "The information below might help solve the issue." 318 | msgstr "" 319 | 320 | #: usr/lib/linuxmint/mintupgrade/checks.py:680 321 | #: usr/lib/linuxmint/mintupgrade/checks.py:692 322 | msgid "Kept packages" 323 | msgstr "" 324 | 325 | #: usr/lib/linuxmint/mintupgrade/checks.py:681 326 | #: usr/lib/linuxmint/mintupgrade/checks.py:696 327 | msgid "Removed packages" 328 | msgstr "" 329 | 330 | #: usr/lib/linuxmint/mintupgrade/checks.py:682 331 | #: usr/lib/linuxmint/mintupgrade/checks.py:695 332 | msgid "Added packages" 333 | msgstr "" 334 | 335 | #: usr/lib/linuxmint/mintupgrade/checks.py:683 336 | #: usr/lib/linuxmint/mintupgrade/checks.py:691 337 | #, python-format 338 | msgid "Packages updated: %d, added: %d , kept: %d, deleted: %d" 339 | msgstr "" 340 | 341 | #: usr/lib/linuxmint/mintupgrade/checks.py:686 342 | msgid "Upgrading will perform the following changes." 343 | msgstr "" 344 | 345 | #: usr/lib/linuxmint/mintupgrade/checks.py:694 346 | msgid "" 347 | "Note: Ideally, no packages should be kept. This might indicate an issue." 348 | msgstr "" 349 | 350 | #: usr/lib/linuxmint/mintupgrade/checks.py:698 351 | msgid "" 352 | "Go through the list above and make sure you are happy with the removals " 353 | "before going further with the upgrade." 354 | msgstr "" 355 | 356 | #: usr/lib/linuxmint/mintupgrade/checks.py:795 357 | #, python-format 358 | msgid "You need %s on '%s' but only have %s. You must free an additional %s." 359 | msgstr "" 360 | 361 | #: usr/lib/linuxmint/mintupgrade/checks.py:799 362 | #, python-format 363 | msgid "Download size: %s. Additional space needed: %s." 364 | msgstr "" 365 | 366 | #: usr/lib/linuxmint/mintupgrade/checks.py:805 367 | msgid "Package download" 368 | msgstr "" 369 | 370 | #: usr/lib/linuxmint/mintupgrade/checks.py:805 371 | msgid "Downloading packages..." 372 | msgstr "" 373 | 374 | #: usr/lib/linuxmint/mintupgrade/checks.py:817 375 | msgid "An error occurred while downloading the packages." 376 | msgstr "" 377 | 378 | #: usr/lib/linuxmint/mintupgrade/checks.py:824 379 | msgid "Session inhibition" 380 | msgstr "" 381 | 382 | #: usr/lib/linuxmint/mintupgrade/checks.py:824 383 | msgid "Inhibiting session..." 384 | msgstr "" 385 | 386 | #: usr/lib/linuxmint/mintupgrade/checks.py:833 387 | msgid "Upgrade preparation" 388 | msgstr "" 389 | 390 | #: usr/lib/linuxmint/mintupgrade/checks.py:833 391 | msgid "Preparing the upgrade..." 392 | msgstr "" 393 | 394 | #: usr/lib/linuxmint/mintupgrade/checks.py:862 395 | msgid "Upgrade phase" 396 | msgstr "" 397 | 398 | #: usr/lib/linuxmint/mintupgrade/checks.py:862 399 | msgid "Upgrading the system..." 400 | msgstr "" 401 | 402 | #: usr/lib/linuxmint/mintupgrade/checks.py:879 403 | #: usr/lib/linuxmint/mintupgrade/checks.py:885 404 | msgid "An issue was detected during the upgrade." 405 | msgstr "" 406 | 407 | #: usr/lib/linuxmint/mintupgrade/checks.py:904 408 | #, python-format 409 | msgid "%d packages still need to be updated (%d kept, %d deleted)" 410 | msgstr "" 411 | 412 | #: usr/lib/linuxmint/mintupgrade/checks.py:910 413 | msgid "Final phase" 414 | msgstr "" 415 | 416 | #: usr/lib/linuxmint/mintupgrade/checks.py:910 417 | msgid "Finalizing the upgrade..." 418 | msgstr "" 419 | 420 | #: usr/lib/linuxmint/mintupgrade/checks.py:929 421 | #, python-format 422 | msgid "%s could not be installed." 423 | msgstr "" 424 | 425 | #: usr/lib/linuxmint/mintupgrade/checks.py:936 426 | msgid "mint-meta-codecs could not be installed." 427 | msgstr "" 428 | 429 | #: usr/lib/linuxmint/mintupgrade/checks.py:944 430 | #: usr/lib/linuxmint/mintupgrade/checks.py:967 431 | msgid "The following packages could not be installed:" 432 | msgstr "" 433 | 434 | #: usr/lib/linuxmint/mintupgrade/checks.py:1030 435 | msgid "/etc/fstab was modified during the upgrade." 436 | msgstr "" 437 | 438 | #: usr/lib/linuxmint/mintupgrade/checks.py:1031 439 | msgid "" 440 | "To ensure a successful boot, the upgrade tool restored your original " 441 | "/etc/fstab" 442 | msgstr "" 443 | 444 | #: usr/lib/linuxmint/mintupgrade/checks.py:1032 445 | msgid "A copy of the modified file was saved as /etc/fstab.upgraded" 446 | msgstr "" 447 | 448 | #: usr/lib/linuxmint/mintupgrade/mintupgrade.py:63 449 | #: usr/lib/linuxmint/mintupgrade/mintupgrade.py:285 generate_desktop_files:26 450 | #: usr/share/linuxmint/mintupgrade/mintupgrade.ui.h:16 451 | msgid "Upgrade Tool" 452 | msgstr "" 453 | 454 | #: usr/lib/linuxmint/mintupgrade/mintupgrade.py:74 455 | #: usr/share/linuxmint/mintupgrade/mintupgrade.ui.h:2 456 | #, python-format 457 | msgid "Upgrade to %s" 458 | msgstr "Ad %s renova" 459 | 460 | #: usr/lib/linuxmint/mintupgrade/mintupgrade.py:90 461 | msgid "Preferences" 462 | msgstr "Praepositiones" 463 | 464 | #: usr/lib/linuxmint/mintupgrade/mintupgrade.py:95 465 | #: usr/lib/linuxmint/mintupgrade/mintupgrade.py:284 466 | msgid "About" 467 | msgstr "Circa" 468 | 469 | #: usr/lib/linuxmint/mintupgrade/mintupgrade.py:100 470 | msgid "Quit" 471 | msgstr "Relinque" 472 | 473 | #: usr/lib/linuxmint/mintupgrade/mintupgrade.py:144 474 | msgid "Phase 1: Preparation" 475 | msgstr "" 476 | 477 | #: usr/lib/linuxmint/mintupgrade/mintupgrade.py:145 478 | msgid "" 479 | "A series of tests will now be performed to prepare the computer for the " 480 | "upgrade." 481 | msgstr "" 482 | 483 | #: usr/lib/linuxmint/mintupgrade/mintupgrade.py:157 484 | msgid "Phase 2: Simulation and download" 485 | msgstr "" 486 | 487 | #: usr/lib/linuxmint/mintupgrade/mintupgrade.py:158 488 | msgid "Your package repositories will now point towards the new release." 489 | msgstr "" 490 | 491 | #: usr/lib/linuxmint/mintupgrade/mintupgrade.py:159 492 | msgid "A few more tests will be run and package updates will be downloaded." 493 | msgstr "" 494 | 495 | #: usr/lib/linuxmint/mintupgrade/mintupgrade.py:165 496 | msgid "Phase 3: Upgrade" 497 | msgstr "" 498 | 499 | #: usr/lib/linuxmint/mintupgrade/mintupgrade.py:166 500 | msgid "The packages will now be upgraded." 501 | msgstr "" 502 | 503 | #: usr/share/linuxmint/mintupgrade/mintupgrade.ui.h:3 504 | msgid "" 505 | "This program will ask you some questions and upgrade your operating system." 506 | msgstr "" 507 | 508 | #: usr/share/linuxmint/mintupgrade/mintupgrade.ui.h:4 509 | msgid "Let's go!" 510 | msgstr "Eamus!" 511 | 512 | #: usr/share/linuxmint/mintupgrade/mintupgrade.ui.h:5 513 | msgid "OK" 514 | msgstr "Bene" 515 | 516 | #: usr/share/linuxmint/mintupgrade/mintupgrade.ui.h:6 517 | msgid "Fix" 518 | msgstr "Repara" 519 | 520 | #: usr/share/linuxmint/mintupgrade/mintupgrade.ui.h:7 521 | msgid "Check again" 522 | msgstr "Iterum inspice" 523 | 524 | #: usr/share/linuxmint/mintupgrade/mintupgrade.ui.h:8 525 | msgid "The following error occurred:" 526 | msgstr "" 527 | 528 | #: usr/share/linuxmint/mintupgrade/mintupgrade.ui.h:9 529 | msgid "The upgrade was successful." 530 | msgstr "" 531 | 532 | #: usr/share/linuxmint/mintupgrade/mintupgrade.ui.h:10 533 | msgid "Reboot the computer for all the changes to take effect." 534 | msgstr "" 535 | 536 | #: usr/share/linuxmint/mintupgrade/mintupgrade.ui.h:11 537 | msgid "Recent Timeshift snapshot" 538 | msgstr "" 539 | 540 | #: usr/share/linuxmint/mintupgrade/mintupgrade.ui.h:12 541 | msgid "Applied software updates" 542 | msgstr "" 543 | 544 | #: usr/share/linuxmint/mintupgrade/mintupgrade.ui.h:13 545 | msgid "" 546 | "These requirements are there to guarantee a safe upgrade. Only disable them " 547 | "if you know what you are doing." 548 | msgstr "" 549 | 550 | #: usr/share/linuxmint/mintupgrade/mintupgrade.ui.h:14 551 | msgid "Supported Linux Mint version" 552 | msgstr "Versiones Linuce Mint toleratae" 553 | 554 | #: usr/share/linuxmint/mintupgrade/mintupgrade.ui.h:15 555 | msgid "Requirements" 556 | msgstr "Necessaria" 557 | -------------------------------------------------------------------------------- /po/mintupgrade-lt.po: -------------------------------------------------------------------------------- 1 | # Lithuanian translation for linuxmint 2 | # Copyright (c) 2022 Rosetta Contributors and Canonical Ltd 2022 3 | # This file is distributed under the same license as the linuxmint package. 4 | # FIRST AUTHOR , 2022. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: linuxmint\n" 9 | "Report-Msgid-Bugs-To: FULL NAME \n" 10 | "POT-Creation-Date: 2023-09-26 14:10+0100\n" 11 | "PO-Revision-Date: 2024-12-08 00:18+0000\n" 12 | "Last-Translator: Moo \n" 13 | "Language-Team: Lithuanian \n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "X-Launchpad-Export-Date: 2025-01-06 12:02+0000\n" 18 | "X-Generator: Launchpad (build 6394e03793719e8d73f5a60b5439440e693c92f1)\n" 19 | 20 | #: usr/lib/linuxmint/mintupgrade/checks.py:32 21 | #, python-format 22 | msgid "" 23 | "The package repositories need to point towards the new release (%s/%s)." 24 | msgstr "" 25 | 26 | #: usr/lib/linuxmint/mintupgrade/checks.py:34 27 | msgid "This should have be done by the Upgrade Tool already." 28 | msgstr "" 29 | 30 | #: usr/lib/linuxmint/mintupgrade/checks.py:35 31 | msgid "Were the repositories modified since?" 32 | msgstr "" 33 | 34 | #: usr/lib/linuxmint/mintupgrade/checks.py:36 35 | msgid "Re-run the Upgrade tool so that it migrates the repositories again." 36 | msgstr "" 37 | 38 | #: usr/lib/linuxmint/mintupgrade/checks.py:143 39 | msgid "Linux Mint version" 40 | msgstr "Linux Mint versija" 41 | 42 | #: usr/lib/linuxmint/mintupgrade/checks.py:143 43 | msgid "Checking your version of Linux Mint..." 44 | msgstr "Tikrinama jūsų Linux Mint versija..." 45 | 46 | #: usr/lib/linuxmint/mintupgrade/checks.py:151 47 | msgid "" 48 | "Your version of Linux Mint is unknown. /etc/linuxmint/info is missing." 49 | msgstr "Jūsų Linux Mint versija yra nežinoma. Nėra /etc/linuxmint/info." 50 | 51 | #: usr/lib/linuxmint/mintupgrade/checks.py:168 52 | #, python-format 53 | msgid "Your version of Linux Mint is '%s'. Only %s can be upgraded to %s." 54 | msgstr "" 55 | 56 | #: usr/lib/linuxmint/mintupgrade/checks.py:174 57 | #, python-format 58 | msgid "Your edition of Linux Mint is '%s'. It cannot be upgraded to %s." 59 | msgstr "" 60 | 61 | #: usr/lib/linuxmint/mintupgrade/checks.py:181 62 | msgid "Power source" 63 | msgstr "" 64 | 65 | #: usr/lib/linuxmint/mintupgrade/checks.py:181 66 | msgid "Checking the power source..." 67 | msgstr "Tikrinamas energijos šaltinis..." 68 | 69 | #: usr/lib/linuxmint/mintupgrade/checks.py:186 70 | msgid "Connect the computer to a power source before attempting to upgrade." 71 | msgstr "Prieš naujinimą prijunkite kompiuterį prie energijos šaltinio." 72 | 73 | #: usr/lib/linuxmint/mintupgrade/checks.py:192 74 | msgid "System snapshots" 75 | msgstr "Sistemos momentinės kopijos" 76 | 77 | #: usr/lib/linuxmint/mintupgrade/checks.py:192 78 | msgid "Checking system snapshots..." 79 | msgstr "Tikrinamos sistemos momentinės kopijos..." 80 | 81 | #: usr/lib/linuxmint/mintupgrade/checks.py:197 82 | msgid "" 83 | "If the upgrade isn't successful, a system snapshot will allow you to go back " 84 | "in time and revert all the changes." 85 | msgstr "" 86 | 87 | #: usr/lib/linuxmint/mintupgrade/checks.py:198 88 | msgid "Press 'Fix' to perform a system snapshot." 89 | msgstr "" 90 | 91 | #: usr/lib/linuxmint/mintupgrade/checks.py:214 92 | msgid "APT cache" 93 | msgstr "APT podėlis" 94 | 95 | #: usr/lib/linuxmint/mintupgrade/checks.py:214 96 | msgid "Checking the APT cache..." 97 | msgstr "Tikrinamas APT podėlis" 98 | 99 | #: usr/lib/linuxmint/mintupgrade/checks.py:232 100 | msgid "" 101 | "Your package cache can't refresh correctly. Run 'apt update' and fix the " 102 | "errors it displays." 103 | msgstr "" 104 | 105 | #: usr/lib/linuxmint/mintupgrade/checks.py:241 106 | msgid "" 107 | "Some of your packages are broken. Run 'apt install -f' to fix the issue." 108 | msgstr "" 109 | 110 | #: usr/lib/linuxmint/mintupgrade/checks.py:252 111 | msgid "" 112 | "Your operating system is not up to date. Apply available updates before " 113 | "attempting the upgrade." 114 | msgstr "" 115 | 116 | #: usr/lib/linuxmint/mintupgrade/checks.py:273 117 | msgid "The following operations need to be performed:" 118 | msgstr "" 119 | 120 | #: usr/lib/linuxmint/mintupgrade/checks.py:275 121 | #: usr/lib/linuxmint/mintupgrade/checks.py:499 122 | msgid "Package" 123 | msgstr "Paketas" 124 | 125 | #: usr/lib/linuxmint/mintupgrade/checks.py:275 126 | msgid "Operation" 127 | msgstr "Operacija" 128 | 129 | #: usr/lib/linuxmint/mintupgrade/checks.py:277 130 | msgid "needs to be installed" 131 | msgstr "" 132 | 133 | #: usr/lib/linuxmint/mintupgrade/checks.py:279 134 | msgid "needs to be removed" 135 | msgstr "" 136 | 137 | #: usr/lib/linuxmint/mintupgrade/checks.py:308 138 | #: usr/lib/linuxmint/mintupgrade/checks.py:588 139 | msgid "Package repositories" 140 | msgstr "" 141 | 142 | #: usr/lib/linuxmint/mintupgrade/checks.py:308 143 | msgid "Checking package repositories..." 144 | msgstr "" 145 | 146 | #: usr/lib/linuxmint/mintupgrade/checks.py:322 147 | msgid "" 148 | "The following sources are defined in DEB822 format. This format isn't " 149 | "supported yet." 150 | msgstr "" 151 | 152 | #: usr/lib/linuxmint/mintupgrade/checks.py:328 153 | msgid "Backup and then delete these files to continue." 154 | msgstr "" 155 | 156 | #: usr/lib/linuxmint/mintupgrade/checks.py:356 157 | msgid "" 158 | "The following repositories do not explicitly support your version of Linux " 159 | "Mint." 160 | msgstr "" 161 | 162 | #: usr/lib/linuxmint/mintupgrade/checks.py:364 163 | msgid "These repositories need to be disabled." 164 | msgstr "" 165 | 166 | #: usr/lib/linuxmint/mintupgrade/checks.py:377 167 | msgid "Your APT policy is incorrect." 168 | msgstr "" 169 | 170 | #: usr/lib/linuxmint/mintupgrade/checks.py:378 171 | msgid "Reboot your computer." 172 | msgstr "Iš naujo paleiskite kompiuterį" 173 | 174 | #: usr/lib/linuxmint/mintupgrade/checks.py:401 175 | #, python-format 176 | msgid "%s is unreachable" 177 | msgstr "%s yra nepasiekiamas" 178 | 179 | #: usr/lib/linuxmint/mintupgrade/checks.py:406 180 | #, python-format 181 | msgid "%s is not up to date. Switch to a different mirror." 182 | msgstr "" 183 | 184 | #: usr/lib/linuxmint/mintupgrade/checks.py:418 185 | #, python-format 186 | msgid "%s does not support %s" 187 | msgstr "" 188 | 189 | #: usr/lib/linuxmint/mintupgrade/checks.py:422 190 | msgid "The following problems were found:" 191 | msgstr "" 192 | 193 | #: usr/lib/linuxmint/mintupgrade/checks.py:464 194 | msgid "Held packages" 195 | msgstr "" 196 | 197 | #: usr/lib/linuxmint/mintupgrade/checks.py:464 198 | msgid "Looking for held packages..." 199 | msgstr "" 200 | 201 | #: usr/lib/linuxmint/mintupgrade/checks.py:470 202 | msgid "The following packages are held:" 203 | msgstr "" 204 | 205 | #: usr/lib/linuxmint/mintupgrade/checks.py:477 206 | msgid "Held packages can break the upgrade." 207 | msgstr "" 208 | 209 | #: usr/lib/linuxmint/mintupgrade/checks.py:491 210 | msgid "Foreign packages" 211 | msgstr "Svetimi paketai" 212 | 213 | #: usr/lib/linuxmint/mintupgrade/checks.py:491 214 | msgid "Looking for foreign packages..." 215 | msgstr "Ieškoma svetimų paketų" 216 | 217 | #: usr/lib/linuxmint/mintupgrade/checks.py:497 218 | msgid "" 219 | "The following packages need to be downgraded back to official versions:" 220 | msgstr "" 221 | 222 | #: usr/lib/linuxmint/mintupgrade/checks.py:499 223 | msgid "Installed Version" 224 | msgstr "Įdiegta versija" 225 | 226 | #: usr/lib/linuxmint/mintupgrade/checks.py:499 227 | msgid "Official version" 228 | msgstr "Oficiali versija" 229 | 230 | #: usr/lib/linuxmint/mintupgrade/checks.py:499 231 | msgid "Archive" 232 | msgstr "" 233 | 234 | #: usr/lib/linuxmint/mintupgrade/checks.py:504 235 | msgid "Otherwise these packages can create conflicts." 236 | msgstr "" 237 | 238 | #: usr/lib/linuxmint/mintupgrade/checks.py:520 239 | #: usr/lib/linuxmint/mintupgrade/checks.py:556 240 | msgid "Orphan packages" 241 | msgstr "" 242 | 243 | #: usr/lib/linuxmint/mintupgrade/checks.py:520 244 | msgid "Looking for orphan packages..." 245 | msgstr "" 246 | 247 | #: usr/lib/linuxmint/mintupgrade/checks.py:540 248 | msgid "The following packages do not exist in the repositories:" 249 | msgstr "" 250 | 251 | #: usr/lib/linuxmint/mintupgrade/checks.py:546 252 | msgid "In some rare cases orphan packages can interfere with the upgrade." 253 | msgstr "" 254 | 255 | #: usr/lib/linuxmint/mintupgrade/checks.py:547 256 | msgid "" 257 | "If you decide to uninstall some of these packages press 'Check again' after " 258 | "their removal." 259 | msgstr "" 260 | 261 | #: usr/lib/linuxmint/mintupgrade/checks.py:548 262 | msgid "Press 'OK' to continue with the upgrade." 263 | msgstr "" 264 | 265 | #: usr/lib/linuxmint/mintupgrade/checks.py:556 266 | msgid "Removing newly orphaned packages..." 267 | msgstr "" 268 | 269 | #: usr/lib/linuxmint/mintupgrade/checks.py:588 270 | msgid "Pointing to the new release..." 271 | msgstr "" 272 | 273 | #: usr/lib/linuxmint/mintupgrade/checks.py:627 274 | msgid "Upgrade simulation" 275 | msgstr "" 276 | 277 | #: usr/lib/linuxmint/mintupgrade/checks.py:627 278 | msgid "Simulating upgrade to check hard disk space and potential issues..." 279 | msgstr "" 280 | 281 | #: usr/lib/linuxmint/mintupgrade/checks.py:666 282 | msgid "The simulation was not successful." 283 | msgstr "" 284 | 285 | #: usr/lib/linuxmint/mintupgrade/checks.py:667 286 | msgid "Upgrading would remove the following important packages:" 287 | msgstr "" 288 | 289 | #: usr/lib/linuxmint/mintupgrade/checks.py:668 290 | msgid "Unwanted removals" 291 | msgstr "" 292 | 293 | #: usr/lib/linuxmint/mintupgrade/checks.py:672 294 | msgid "" 295 | "This is a sign that something is wrong and needs to be fixed before going " 296 | "further." 297 | msgstr "" 298 | 299 | #: usr/lib/linuxmint/mintupgrade/checks.py:674 300 | msgid "Recommended solution" 301 | msgstr "" 302 | 303 | #: usr/lib/linuxmint/mintupgrade/checks.py:675 304 | msgid "Use apt-get in a terminal to troubleshoot and solve the issue." 305 | msgstr "" 306 | 307 | #: usr/lib/linuxmint/mintupgrade/checks.py:676 308 | msgid "Don't hesitate to seek help on the forums and the chat room." 309 | msgstr "" 310 | 311 | #: usr/lib/linuxmint/mintupgrade/checks.py:678 312 | msgid "Additional information" 313 | msgstr "" 314 | 315 | #: usr/lib/linuxmint/mintupgrade/checks.py:679 316 | msgid "The information below might help solve the issue." 317 | msgstr "" 318 | 319 | #: usr/lib/linuxmint/mintupgrade/checks.py:680 320 | #: usr/lib/linuxmint/mintupgrade/checks.py:692 321 | msgid "Kept packages" 322 | msgstr "" 323 | 324 | #: usr/lib/linuxmint/mintupgrade/checks.py:681 325 | #: usr/lib/linuxmint/mintupgrade/checks.py:696 326 | msgid "Removed packages" 327 | msgstr "" 328 | 329 | #: usr/lib/linuxmint/mintupgrade/checks.py:682 330 | #: usr/lib/linuxmint/mintupgrade/checks.py:695 331 | msgid "Added packages" 332 | msgstr "" 333 | 334 | #: usr/lib/linuxmint/mintupgrade/checks.py:683 335 | #: usr/lib/linuxmint/mintupgrade/checks.py:691 336 | #, python-format 337 | msgid "Packages updated: %d, added: %d , kept: %d, deleted: %d" 338 | msgstr "" 339 | 340 | #: usr/lib/linuxmint/mintupgrade/checks.py:686 341 | msgid "Upgrading will perform the following changes." 342 | msgstr "" 343 | 344 | #: usr/lib/linuxmint/mintupgrade/checks.py:694 345 | msgid "" 346 | "Note: Ideally, no packages should be kept. This might indicate an issue." 347 | msgstr "" 348 | 349 | #: usr/lib/linuxmint/mintupgrade/checks.py:698 350 | msgid "" 351 | "Go through the list above and make sure you are happy with the removals " 352 | "before going further with the upgrade." 353 | msgstr "" 354 | 355 | #: usr/lib/linuxmint/mintupgrade/checks.py:795 356 | #, python-format 357 | msgid "You need %s on '%s' but only have %s. You must free an additional %s." 358 | msgstr "" 359 | 360 | #: usr/lib/linuxmint/mintupgrade/checks.py:799 361 | #, python-format 362 | msgid "Download size: %s. Additional space needed: %s." 363 | msgstr "" 364 | 365 | #: usr/lib/linuxmint/mintupgrade/checks.py:805 366 | msgid "Package download" 367 | msgstr "" 368 | 369 | #: usr/lib/linuxmint/mintupgrade/checks.py:805 370 | msgid "Downloading packages..." 371 | msgstr "" 372 | 373 | #: usr/lib/linuxmint/mintupgrade/checks.py:817 374 | msgid "An error occurred while downloading the packages." 375 | msgstr "" 376 | 377 | #: usr/lib/linuxmint/mintupgrade/checks.py:824 378 | msgid "Session inhibition" 379 | msgstr "" 380 | 381 | #: usr/lib/linuxmint/mintupgrade/checks.py:824 382 | msgid "Inhibiting session..." 383 | msgstr "" 384 | 385 | #: usr/lib/linuxmint/mintupgrade/checks.py:833 386 | msgid "Upgrade preparation" 387 | msgstr "" 388 | 389 | #: usr/lib/linuxmint/mintupgrade/checks.py:833 390 | msgid "Preparing the upgrade..." 391 | msgstr "" 392 | 393 | #: usr/lib/linuxmint/mintupgrade/checks.py:862 394 | msgid "Upgrade phase" 395 | msgstr "" 396 | 397 | #: usr/lib/linuxmint/mintupgrade/checks.py:862 398 | msgid "Upgrading the system..." 399 | msgstr "" 400 | 401 | #: usr/lib/linuxmint/mintupgrade/checks.py:879 402 | #: usr/lib/linuxmint/mintupgrade/checks.py:885 403 | msgid "An issue was detected during the upgrade." 404 | msgstr "" 405 | 406 | #: usr/lib/linuxmint/mintupgrade/checks.py:904 407 | #, python-format 408 | msgid "%d packages still need to be updated (%d kept, %d deleted)" 409 | msgstr "" 410 | 411 | #: usr/lib/linuxmint/mintupgrade/checks.py:910 412 | msgid "Final phase" 413 | msgstr "" 414 | 415 | #: usr/lib/linuxmint/mintupgrade/checks.py:910 416 | msgid "Finalizing the upgrade..." 417 | msgstr "" 418 | 419 | #: usr/lib/linuxmint/mintupgrade/checks.py:929 420 | #, python-format 421 | msgid "%s could not be installed." 422 | msgstr "" 423 | 424 | #: usr/lib/linuxmint/mintupgrade/checks.py:936 425 | msgid "mint-meta-codecs could not be installed." 426 | msgstr "" 427 | 428 | #: usr/lib/linuxmint/mintupgrade/checks.py:944 429 | #: usr/lib/linuxmint/mintupgrade/checks.py:967 430 | msgid "The following packages could not be installed:" 431 | msgstr "" 432 | 433 | #: usr/lib/linuxmint/mintupgrade/checks.py:1030 434 | msgid "/etc/fstab was modified during the upgrade." 435 | msgstr "" 436 | 437 | #: usr/lib/linuxmint/mintupgrade/checks.py:1031 438 | msgid "" 439 | "To ensure a successful boot, the upgrade tool restored your original " 440 | "/etc/fstab" 441 | msgstr "" 442 | 443 | #: usr/lib/linuxmint/mintupgrade/checks.py:1032 444 | msgid "A copy of the modified file was saved as /etc/fstab.upgraded" 445 | msgstr "" 446 | 447 | #: usr/lib/linuxmint/mintupgrade/mintupgrade.py:63 448 | #: usr/lib/linuxmint/mintupgrade/mintupgrade.py:285 generate_desktop_files:26 449 | #: usr/share/linuxmint/mintupgrade/mintupgrade.ui.h:16 450 | msgid "Upgrade Tool" 451 | msgstr "" 452 | 453 | #: usr/lib/linuxmint/mintupgrade/mintupgrade.py:74 454 | #: usr/share/linuxmint/mintupgrade/mintupgrade.ui.h:2 455 | #, python-format 456 | msgid "Upgrade to %s" 457 | msgstr "" 458 | 459 | #: usr/lib/linuxmint/mintupgrade/mintupgrade.py:90 460 | msgid "Preferences" 461 | msgstr "" 462 | 463 | #: usr/lib/linuxmint/mintupgrade/mintupgrade.py:95 464 | #: usr/lib/linuxmint/mintupgrade/mintupgrade.py:284 465 | msgid "About" 466 | msgstr "" 467 | 468 | #: usr/lib/linuxmint/mintupgrade/mintupgrade.py:100 469 | msgid "Quit" 470 | msgstr "" 471 | 472 | #: usr/lib/linuxmint/mintupgrade/mintupgrade.py:144 473 | msgid "Phase 1: Preparation" 474 | msgstr "" 475 | 476 | #: usr/lib/linuxmint/mintupgrade/mintupgrade.py:145 477 | msgid "" 478 | "A series of tests will now be performed to prepare the computer for the " 479 | "upgrade." 480 | msgstr "" 481 | 482 | #: usr/lib/linuxmint/mintupgrade/mintupgrade.py:157 483 | msgid "Phase 2: Simulation and download" 484 | msgstr "" 485 | 486 | #: usr/lib/linuxmint/mintupgrade/mintupgrade.py:158 487 | msgid "Your package repositories will now point towards the new release." 488 | msgstr "" 489 | 490 | #: usr/lib/linuxmint/mintupgrade/mintupgrade.py:159 491 | msgid "A few more tests will be run and package updates will be downloaded." 492 | msgstr "" 493 | 494 | #: usr/lib/linuxmint/mintupgrade/mintupgrade.py:165 495 | msgid "Phase 3: Upgrade" 496 | msgstr "" 497 | 498 | #: usr/lib/linuxmint/mintupgrade/mintupgrade.py:166 499 | msgid "The packages will now be upgraded." 500 | msgstr "" 501 | 502 | #: usr/share/linuxmint/mintupgrade/mintupgrade.ui.h:3 503 | msgid "" 504 | "This program will ask you some questions and upgrade your operating system." 505 | msgstr "" 506 | 507 | #: usr/share/linuxmint/mintupgrade/mintupgrade.ui.h:4 508 | msgid "Let's go!" 509 | msgstr "" 510 | 511 | #: usr/share/linuxmint/mintupgrade/mintupgrade.ui.h:5 512 | msgid "OK" 513 | msgstr "" 514 | 515 | #: usr/share/linuxmint/mintupgrade/mintupgrade.ui.h:6 516 | msgid "Fix" 517 | msgstr "" 518 | 519 | #: usr/share/linuxmint/mintupgrade/mintupgrade.ui.h:7 520 | msgid "Check again" 521 | msgstr "" 522 | 523 | #: usr/share/linuxmint/mintupgrade/mintupgrade.ui.h:8 524 | msgid "The following error occurred:" 525 | msgstr "" 526 | 527 | #: usr/share/linuxmint/mintupgrade/mintupgrade.ui.h:9 528 | msgid "The upgrade was successful." 529 | msgstr "" 530 | 531 | #: usr/share/linuxmint/mintupgrade/mintupgrade.ui.h:10 532 | msgid "Reboot the computer for all the changes to take effect." 533 | msgstr "" 534 | 535 | #: usr/share/linuxmint/mintupgrade/mintupgrade.ui.h:11 536 | msgid "Recent Timeshift snapshot" 537 | msgstr "" 538 | 539 | #: usr/share/linuxmint/mintupgrade/mintupgrade.ui.h:12 540 | msgid "Applied software updates" 541 | msgstr "" 542 | 543 | #: usr/share/linuxmint/mintupgrade/mintupgrade.ui.h:13 544 | msgid "" 545 | "These requirements are there to guarantee a safe upgrade. Only disable them " 546 | "if you know what you are doing." 547 | msgstr "" 548 | 549 | #: usr/share/linuxmint/mintupgrade/mintupgrade.ui.h:14 550 | msgid "Supported Linux Mint version" 551 | msgstr "" 552 | 553 | #: usr/share/linuxmint/mintupgrade/mintupgrade.ui.h:15 554 | msgid "Requirements" 555 | msgstr "" 556 | -------------------------------------------------------------------------------- /po/mintupgrade-zh_CN.po: -------------------------------------------------------------------------------- 1 | # Chinese (Simplified) translation for linuxmint 2 | # Copyright (c) 2022 Rosetta Contributors and Canonical Ltd 2022 3 | # This file is distributed under the same license as the linuxmint package. 4 | # FIRST AUTHOR , 2022. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: linuxmint\n" 9 | "Report-Msgid-Bugs-To: FULL NAME \n" 10 | "POT-Creation-Date: 2023-09-26 14:10+0100\n" 11 | "PO-Revision-Date: 2024-07-19 06:44+0000\n" 12 | "Last-Translator: 张鹏 \n" 13 | "Language-Team: Chinese (Simplified) \n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "X-Launchpad-Export-Date: 2025-01-06 12:01+0000\n" 18 | "X-Generator: Launchpad (build 6394e03793719e8d73f5a60b5439440e693c92f1)\n" 19 | 20 | #: usr/lib/linuxmint/mintupgrade/checks.py:32 21 | #, python-format 22 | msgid "" 23 | "The package repositories need to point towards the new release (%s/%s)." 24 | msgstr "软件包存储库需要指向新版本 (%s/%s)。" 25 | 26 | #: usr/lib/linuxmint/mintupgrade/checks.py:34 27 | msgid "This should have be done by the Upgrade Tool already." 28 | msgstr "升级工具应该已经完成升级操作。" 29 | 30 | #: usr/lib/linuxmint/mintupgrade/checks.py:35 31 | msgid "Were the repositories modified since?" 32 | msgstr "存储库至那以后是否被修改过?" 33 | 34 | #: usr/lib/linuxmint/mintupgrade/checks.py:36 35 | msgid "Re-run the Upgrade tool so that it migrates the repositories again." 36 | msgstr "重新运行升级工具,以便再次迁移存储库。" 37 | 38 | #: usr/lib/linuxmint/mintupgrade/checks.py:143 39 | msgid "Linux Mint version" 40 | msgstr "Linux Mint 版本" 41 | 42 | #: usr/lib/linuxmint/mintupgrade/checks.py:143 43 | msgid "Checking your version of Linux Mint..." 44 | msgstr "正在检查您的 Linux Mint 版本..." 45 | 46 | #: usr/lib/linuxmint/mintupgrade/checks.py:151 47 | msgid "" 48 | "Your version of Linux Mint is unknown. /etc/linuxmint/info is missing." 49 | msgstr "未知的Linux Mint版本。 /etc/linuxmint/info文件不存在。" 50 | 51 | #: usr/lib/linuxmint/mintupgrade/checks.py:168 52 | #, python-format 53 | msgid "Your version of Linux Mint is '%s'. Only %s can be upgraded to %s." 54 | msgstr "当前Linux Mint版本为 '%s'。仅 %s 可以升级为 %s。" 55 | 56 | #: usr/lib/linuxmint/mintupgrade/checks.py:174 57 | #, python-format 58 | msgid "Your edition of Linux Mint is '%s'. It cannot be upgraded to %s." 59 | msgstr "您的 Linux Mint 版本为 “%s”,它不能升级到 %s。" 60 | 61 | #: usr/lib/linuxmint/mintupgrade/checks.py:181 62 | msgid "Power source" 63 | msgstr "电源适配器" 64 | 65 | #: usr/lib/linuxmint/mintupgrade/checks.py:181 66 | msgid "Checking the power source..." 67 | msgstr "正在检测电源适配器..." 68 | 69 | #: usr/lib/linuxmint/mintupgrade/checks.py:186 70 | msgid "Connect the computer to a power source before attempting to upgrade." 71 | msgstr "在尝试升级之前,先将计算机连接到电源。" 72 | 73 | #: usr/lib/linuxmint/mintupgrade/checks.py:192 74 | msgid "System snapshots" 75 | msgstr "系统快照" 76 | 77 | #: usr/lib/linuxmint/mintupgrade/checks.py:192 78 | msgid "Checking system snapshots..." 79 | msgstr "正在检测系统快照..." 80 | 81 | #: usr/lib/linuxmint/mintupgrade/checks.py:197 82 | msgid "" 83 | "If the upgrade isn't successful, a system snapshot will allow you to go back " 84 | "in time and revert all the changes." 85 | msgstr "如果升级失败, 系统快照可以让你回滚所有的修改。" 86 | 87 | #: usr/lib/linuxmint/mintupgrade/checks.py:198 88 | msgid "Press 'Fix' to perform a system snapshot." 89 | msgstr "按下“修复”以执行系统快照。" 90 | 91 | #: usr/lib/linuxmint/mintupgrade/checks.py:214 92 | msgid "APT cache" 93 | msgstr "APT 缓存" 94 | 95 | #: usr/lib/linuxmint/mintupgrade/checks.py:214 96 | msgid "Checking the APT cache..." 97 | msgstr "正在检查 APT 缓存" 98 | 99 | #: usr/lib/linuxmint/mintupgrade/checks.py:232 100 | msgid "" 101 | "Your package cache can't refresh correctly. Run 'apt update' and fix the " 102 | "errors it displays." 103 | msgstr "您的软件包缓存没有正确更新。运行 ”apt update“ 可解决显示的问题" 104 | 105 | #: usr/lib/linuxmint/mintupgrade/checks.py:241 106 | msgid "" 107 | "Some of your packages are broken. Run 'apt install -f' to fix the issue." 108 | msgstr "一些软件包损坏。运行 ”apt install -f “ 可修复问题。" 109 | 110 | #: usr/lib/linuxmint/mintupgrade/checks.py:252 111 | msgid "" 112 | "Your operating system is not up to date. Apply available updates before " 113 | "attempting the upgrade." 114 | msgstr "您的操作系统不是最新的。请在尝试升级之前应用可用更新。" 115 | 116 | #: usr/lib/linuxmint/mintupgrade/checks.py:273 117 | msgid "The following operations need to be performed:" 118 | msgstr "需要执行以下操作:" 119 | 120 | #: usr/lib/linuxmint/mintupgrade/checks.py:275 121 | #: usr/lib/linuxmint/mintupgrade/checks.py:499 122 | msgid "Package" 123 | msgstr "软件包" 124 | 125 | #: usr/lib/linuxmint/mintupgrade/checks.py:275 126 | msgid "Operation" 127 | msgstr "操作" 128 | 129 | #: usr/lib/linuxmint/mintupgrade/checks.py:277 130 | msgid "needs to be installed" 131 | msgstr "需要被安装" 132 | 133 | #: usr/lib/linuxmint/mintupgrade/checks.py:279 134 | msgid "needs to be removed" 135 | msgstr "需要被移除" 136 | 137 | #: usr/lib/linuxmint/mintupgrade/checks.py:308 138 | #: usr/lib/linuxmint/mintupgrade/checks.py:588 139 | msgid "Package repositories" 140 | msgstr "软件源" 141 | 142 | #: usr/lib/linuxmint/mintupgrade/checks.py:308 143 | msgid "Checking package repositories..." 144 | msgstr "正在检查软件源..." 145 | 146 | #: usr/lib/linuxmint/mintupgrade/checks.py:322 147 | msgid "" 148 | "The following sources are defined in DEB822 format. This format isn't " 149 | "supported yet." 150 | msgstr "以下源以 DEB822 格式定义。尚不支持此格式。" 151 | 152 | #: usr/lib/linuxmint/mintupgrade/checks.py:328 153 | msgid "Backup and then delete these files to continue." 154 | msgstr "备份,然后删除这些文件以继续。" 155 | 156 | #: usr/lib/linuxmint/mintupgrade/checks.py:356 157 | msgid "" 158 | "The following repositories do not explicitly support your version of Linux " 159 | "Mint." 160 | msgstr "以下软件源不明确支持您的 Linux Mint 版本。" 161 | 162 | #: usr/lib/linuxmint/mintupgrade/checks.py:364 163 | msgid "These repositories need to be disabled." 164 | msgstr "这些软件源需要被禁用。" 165 | 166 | #: usr/lib/linuxmint/mintupgrade/checks.py:377 167 | msgid "Your APT policy is incorrect." 168 | msgstr "您的APT策略不正确。" 169 | 170 | #: usr/lib/linuxmint/mintupgrade/checks.py:378 171 | msgid "Reboot your computer." 172 | msgstr "重启你的电脑。" 173 | 174 | #: usr/lib/linuxmint/mintupgrade/checks.py:401 175 | #, python-format 176 | msgid "%s is unreachable" 177 | msgstr "%s 不可达" 178 | 179 | #: usr/lib/linuxmint/mintupgrade/checks.py:406 180 | #, python-format 181 | msgid "%s is not up to date. Switch to a different mirror." 182 | msgstr "%s 不是最新的。请切换到另外一个镜像。" 183 | 184 | #: usr/lib/linuxmint/mintupgrade/checks.py:418 185 | #, python-format 186 | msgid "%s does not support %s" 187 | msgstr "%s 不支持 %s" 188 | 189 | #: usr/lib/linuxmint/mintupgrade/checks.py:422 190 | msgid "The following problems were found:" 191 | msgstr "发现了以下问题:" 192 | 193 | #: usr/lib/linuxmint/mintupgrade/checks.py:464 194 | msgid "Held packages" 195 | msgstr "挂起的软件包" 196 | 197 | #: usr/lib/linuxmint/mintupgrade/checks.py:464 198 | msgid "Looking for held packages..." 199 | msgstr "正在搜索挂起的软件包" 200 | 201 | #: usr/lib/linuxmint/mintupgrade/checks.py:470 202 | msgid "The following packages are held:" 203 | msgstr "下面的软件包被挂起:" 204 | 205 | #: usr/lib/linuxmint/mintupgrade/checks.py:477 206 | msgid "Held packages can break the upgrade." 207 | msgstr "挂起的软件包将会导致升级中断或失败。" 208 | 209 | #: usr/lib/linuxmint/mintupgrade/checks.py:491 210 | msgid "Foreign packages" 211 | msgstr "外来软件包" 212 | 213 | #: usr/lib/linuxmint/mintupgrade/checks.py:491 214 | msgid "Looking for foreign packages..." 215 | msgstr "查找外来软件包..." 216 | 217 | #: usr/lib/linuxmint/mintupgrade/checks.py:497 218 | msgid "" 219 | "The following packages need to be downgraded back to official versions:" 220 | msgstr "以下软件包需要降级回官方版本:" 221 | 222 | #: usr/lib/linuxmint/mintupgrade/checks.py:499 223 | msgid "Installed Version" 224 | msgstr "已安装版本" 225 | 226 | #: usr/lib/linuxmint/mintupgrade/checks.py:499 227 | msgid "Official version" 228 | msgstr "官方版本" 229 | 230 | #: usr/lib/linuxmint/mintupgrade/checks.py:499 231 | msgid "Archive" 232 | msgstr "归档" 233 | 234 | #: usr/lib/linuxmint/mintupgrade/checks.py:504 235 | msgid "Otherwise these packages can create conflicts." 236 | msgstr "否则这些软件包会产生冲突。" 237 | 238 | #: usr/lib/linuxmint/mintupgrade/checks.py:520 239 | #: usr/lib/linuxmint/mintupgrade/checks.py:556 240 | msgid "Orphan packages" 241 | msgstr "孤立的软件包" 242 | 243 | #: usr/lib/linuxmint/mintupgrade/checks.py:520 244 | msgid "Looking for orphan packages..." 245 | msgstr "正在查找孤立的软件包..." 246 | 247 | #: usr/lib/linuxmint/mintupgrade/checks.py:540 248 | msgid "The following packages do not exist in the repositories:" 249 | msgstr "软件源中不存在以下软件包:" 250 | 251 | #: usr/lib/linuxmint/mintupgrade/checks.py:546 252 | msgid "In some rare cases orphan packages can interfere with the upgrade." 253 | msgstr "在极少数情况下,孤立包可能会干扰升级。" 254 | 255 | #: usr/lib/linuxmint/mintupgrade/checks.py:547 256 | msgid "" 257 | "If you decide to uninstall some of these packages press 'Check again' after " 258 | "their removal." 259 | msgstr "如果您决定卸载其中一些软件包,请在删除它们后按“再次检查”。" 260 | 261 | #: usr/lib/linuxmint/mintupgrade/checks.py:548 262 | msgid "Press 'OK' to continue with the upgrade." 263 | msgstr "按下“确定”继续升级。" 264 | 265 | #: usr/lib/linuxmint/mintupgrade/checks.py:556 266 | msgid "Removing newly orphaned packages..." 267 | msgstr "正在删除新的孤立的软件包..." 268 | 269 | #: usr/lib/linuxmint/mintupgrade/checks.py:588 270 | msgid "Pointing to the new release..." 271 | msgstr "正在指向新版本..." 272 | 273 | #: usr/lib/linuxmint/mintupgrade/checks.py:627 274 | msgid "Upgrade simulation" 275 | msgstr "模拟升级" 276 | 277 | #: usr/lib/linuxmint/mintupgrade/checks.py:627 278 | msgid "Simulating upgrade to check hard disk space and potential issues..." 279 | msgstr "正在模拟升级以检测硬盘及分区问题.." 280 | 281 | #: usr/lib/linuxmint/mintupgrade/checks.py:666 282 | msgid "The simulation was not successful." 283 | msgstr "模拟没有成功。" 284 | 285 | #: usr/lib/linuxmint/mintupgrade/checks.py:667 286 | msgid "Upgrading would remove the following important packages:" 287 | msgstr "系统升级将移除以下重要的软件包:" 288 | 289 | #: usr/lib/linuxmint/mintupgrade/checks.py:668 290 | msgid "Unwanted removals" 291 | msgstr "不需要的移除" 292 | 293 | #: usr/lib/linuxmint/mintupgrade/checks.py:672 294 | msgid "" 295 | "This is a sign that something is wrong and needs to be fixed before going " 296 | "further." 297 | msgstr "这表明有些地方出了问题,需要在继续之前进行修复。" 298 | 299 | #: usr/lib/linuxmint/mintupgrade/checks.py:674 300 | msgid "Recommended solution" 301 | msgstr "推荐的解决方案" 302 | 303 | #: usr/lib/linuxmint/mintupgrade/checks.py:675 304 | msgid "Use apt-get in a terminal to troubleshoot and solve the issue." 305 | msgstr "请在终端上使用apt-get来排除并解决这个问题。" 306 | 307 | #: usr/lib/linuxmint/mintupgrade/checks.py:676 308 | msgid "Don't hesitate to seek help on the forums and the chat room." 309 | msgstr "在论坛和聊天室寻求帮助时不用犹豫。" 310 | 311 | #: usr/lib/linuxmint/mintupgrade/checks.py:678 312 | msgid "Additional information" 313 | msgstr "附加信息" 314 | 315 | #: usr/lib/linuxmint/mintupgrade/checks.py:679 316 | msgid "The information below might help solve the issue." 317 | msgstr "以下信息可能有助于解决问题。" 318 | 319 | #: usr/lib/linuxmint/mintupgrade/checks.py:680 320 | #: usr/lib/linuxmint/mintupgrade/checks.py:692 321 | msgid "Kept packages" 322 | msgstr "保留的软件包" 323 | 324 | #: usr/lib/linuxmint/mintupgrade/checks.py:681 325 | #: usr/lib/linuxmint/mintupgrade/checks.py:696 326 | msgid "Removed packages" 327 | msgstr "已删除的软件包" 328 | 329 | #: usr/lib/linuxmint/mintupgrade/checks.py:682 330 | #: usr/lib/linuxmint/mintupgrade/checks.py:695 331 | msgid "Added packages" 332 | msgstr "已添加的软件包" 333 | 334 | #: usr/lib/linuxmint/mintupgrade/checks.py:683 335 | #: usr/lib/linuxmint/mintupgrade/checks.py:691 336 | #, python-format 337 | msgid "Packages updated: %d, added: %d , kept: %d, deleted: %d" 338 | msgstr "软件包已更新:%d,已添加:%d,已保留:%d,已删除:%d" 339 | 340 | #: usr/lib/linuxmint/mintupgrade/checks.py:686 341 | msgid "Upgrading will perform the following changes." 342 | msgstr "升级将执行以下更改。" 343 | 344 | #: usr/lib/linuxmint/mintupgrade/checks.py:694 345 | msgid "" 346 | "Note: Ideally, no packages should be kept. This might indicate an issue." 347 | msgstr "注意:理想的情况下,不应保存任何软件包。否则可能表明存在问题。" 348 | 349 | #: usr/lib/linuxmint/mintupgrade/checks.py:698 350 | msgid "" 351 | "Go through the list above and make sure you are happy with the removals " 352 | "before going further with the upgrade." 353 | msgstr "浏览上面的列表并确保您愿意进行移除操作,然后再进行下一步升级。" 354 | 355 | #: usr/lib/linuxmint/mintupgrade/checks.py:795 356 | #, python-format 357 | msgid "You need %s on '%s' but only have %s. You must free an additional %s." 358 | msgstr "'%s' 上需要 %s,但当前系统中只有 %s。 您必须释放或卸载额外的 %s。" 359 | 360 | #: usr/lib/linuxmint/mintupgrade/checks.py:799 361 | #, python-format 362 | msgid "Download size: %s. Additional space needed: %s." 363 | msgstr "下载大小:%s。需要的额外空间:%s。" 364 | 365 | #: usr/lib/linuxmint/mintupgrade/checks.py:805 366 | msgid "Package download" 367 | msgstr "软件包下载" 368 | 369 | #: usr/lib/linuxmint/mintupgrade/checks.py:805 370 | msgid "Downloading packages..." 371 | msgstr "正在下载软件包..." 372 | 373 | #: usr/lib/linuxmint/mintupgrade/checks.py:817 374 | msgid "An error occurred while downloading the packages." 375 | msgstr "在下载软件包期间发生了一个错误。" 376 | 377 | #: usr/lib/linuxmint/mintupgrade/checks.py:824 378 | msgid "Session inhibition" 379 | msgstr "会话禁止" 380 | 381 | #: usr/lib/linuxmint/mintupgrade/checks.py:824 382 | msgid "Inhibiting session..." 383 | msgstr "禁止会话..." 384 | 385 | #: usr/lib/linuxmint/mintupgrade/checks.py:833 386 | msgid "Upgrade preparation" 387 | msgstr "升级准备" 388 | 389 | #: usr/lib/linuxmint/mintupgrade/checks.py:833 390 | msgid "Preparing the upgrade..." 391 | msgstr "正在准备升级..." 392 | 393 | #: usr/lib/linuxmint/mintupgrade/checks.py:862 394 | msgid "Upgrade phase" 395 | msgstr "升级阶段" 396 | 397 | #: usr/lib/linuxmint/mintupgrade/checks.py:862 398 | msgid "Upgrading the system..." 399 | msgstr "正在升级系统..." 400 | 401 | #: usr/lib/linuxmint/mintupgrade/checks.py:879 402 | #: usr/lib/linuxmint/mintupgrade/checks.py:885 403 | msgid "An issue was detected during the upgrade." 404 | msgstr "升级过程中检测出了一个问题。" 405 | 406 | #: usr/lib/linuxmint/mintupgrade/checks.py:904 407 | #, python-format 408 | msgid "%d packages still need to be updated (%d kept, %d deleted)" 409 | msgstr "%d个软件包仍然需要升级(保留%d个,删除%d个)。" 410 | 411 | #: usr/lib/linuxmint/mintupgrade/checks.py:910 412 | msgid "Final phase" 413 | msgstr "最后阶段" 414 | 415 | #: usr/lib/linuxmint/mintupgrade/checks.py:910 416 | msgid "Finalizing the upgrade..." 417 | msgstr "正在完成升级..." 418 | 419 | #: usr/lib/linuxmint/mintupgrade/checks.py:929 420 | #, python-format 421 | msgid "%s could not be installed." 422 | msgstr "%s 无法被安装。" 423 | 424 | #: usr/lib/linuxmint/mintupgrade/checks.py:936 425 | msgid "mint-meta-codecs could not be installed." 426 | msgstr "mint-meta-codecs无法安装。" 427 | 428 | #: usr/lib/linuxmint/mintupgrade/checks.py:944 429 | #: usr/lib/linuxmint/mintupgrade/checks.py:967 430 | msgid "The following packages could not be installed:" 431 | msgstr "以下软件包无法被安装:" 432 | 433 | #: usr/lib/linuxmint/mintupgrade/checks.py:1030 434 | msgid "/etc/fstab was modified during the upgrade." 435 | msgstr "升级过程中 /etc/fstab 被修改。" 436 | 437 | #: usr/lib/linuxmint/mintupgrade/checks.py:1031 438 | msgid "" 439 | "To ensure a successful boot, the upgrade tool restored your original " 440 | "/etc/fstab" 441 | msgstr "为了确保成功启动,升级工具恢复了您原有的 /etc/fstab" 442 | 443 | #: usr/lib/linuxmint/mintupgrade/checks.py:1032 444 | msgid "A copy of the modified file was saved as /etc/fstab.upgraded" 445 | msgstr "‎修改后文件的副本已另存为 /etc/fstab.upgraded‎" 446 | 447 | #: usr/lib/linuxmint/mintupgrade/mintupgrade.py:63 448 | #: usr/lib/linuxmint/mintupgrade/mintupgrade.py:285 generate_desktop_files:26 449 | #: usr/share/linuxmint/mintupgrade/mintupgrade.ui.h:16 450 | msgid "Upgrade Tool" 451 | msgstr "升级工具" 452 | 453 | #: usr/lib/linuxmint/mintupgrade/mintupgrade.py:74 454 | #: usr/share/linuxmint/mintupgrade/mintupgrade.ui.h:2 455 | #, python-format 456 | msgid "Upgrade to %s" 457 | msgstr "升级到 %s" 458 | 459 | #: usr/lib/linuxmint/mintupgrade/mintupgrade.py:90 460 | msgid "Preferences" 461 | msgstr "首选项" 462 | 463 | #: usr/lib/linuxmint/mintupgrade/mintupgrade.py:95 464 | #: usr/lib/linuxmint/mintupgrade/mintupgrade.py:284 465 | msgid "About" 466 | msgstr "关于" 467 | 468 | #: usr/lib/linuxmint/mintupgrade/mintupgrade.py:100 469 | msgid "Quit" 470 | msgstr "退出" 471 | 472 | #: usr/lib/linuxmint/mintupgrade/mintupgrade.py:144 473 | msgid "Phase 1: Preparation" 474 | msgstr "第 1 阶段:准备" 475 | 476 | #: usr/lib/linuxmint/mintupgrade/mintupgrade.py:145 477 | msgid "" 478 | "A series of tests will now be performed to prepare the computer for the " 479 | "upgrade." 480 | msgstr "现在将执行一系列测试,为计算机升级做好准备。" 481 | 482 | #: usr/lib/linuxmint/mintupgrade/mintupgrade.py:157 483 | msgid "Phase 2: Simulation and download" 484 | msgstr "第 2 阶段:模拟和下载" 485 | 486 | #: usr/lib/linuxmint/mintupgrade/mintupgrade.py:158 487 | msgid "Your package repositories will now point towards the new release." 488 | msgstr "您的软件源存储库现在将指向新版本。" 489 | 490 | #: usr/lib/linuxmint/mintupgrade/mintupgrade.py:159 491 | msgid "A few more tests will be run and package updates will be downloaded." 492 | msgstr "将运行更多测试并下载软件包更新。" 493 | 494 | #: usr/lib/linuxmint/mintupgrade/mintupgrade.py:165 495 | msgid "Phase 3: Upgrade" 496 | msgstr "第 3 阶段:升级" 497 | 498 | #: usr/lib/linuxmint/mintupgrade/mintupgrade.py:166 499 | msgid "The packages will now be upgraded." 500 | msgstr "软件包将会被升级。" 501 | 502 | #: usr/share/linuxmint/mintupgrade/mintupgrade.ui.h:3 503 | msgid "" 504 | "This program will ask you some questions and upgrade your operating system." 505 | msgstr "本程序将询问您一些问题并升级您的操作系统。" 506 | 507 | #: usr/share/linuxmint/mintupgrade/mintupgrade.ui.h:4 508 | msgid "Let's go!" 509 | msgstr "现在开始!" 510 | 511 | #: usr/share/linuxmint/mintupgrade/mintupgrade.ui.h:5 512 | msgid "OK" 513 | msgstr "确定" 514 | 515 | #: usr/share/linuxmint/mintupgrade/mintupgrade.ui.h:6 516 | msgid "Fix" 517 | msgstr "修复" 518 | 519 | #: usr/share/linuxmint/mintupgrade/mintupgrade.ui.h:7 520 | msgid "Check again" 521 | msgstr "再次检查" 522 | 523 | #: usr/share/linuxmint/mintupgrade/mintupgrade.ui.h:8 524 | msgid "The following error occurred:" 525 | msgstr "产生了下列错误:" 526 | 527 | #: usr/share/linuxmint/mintupgrade/mintupgrade.ui.h:9 528 | msgid "The upgrade was successful." 529 | msgstr "升级已成功" 530 | 531 | #: usr/share/linuxmint/mintupgrade/mintupgrade.ui.h:10 532 | msgid "Reboot the computer for all the changes to take effect." 533 | msgstr "‎重新启动计算机以使所有更改生效。‎" 534 | 535 | #: usr/share/linuxmint/mintupgrade/mintupgrade.ui.h:11 536 | msgid "Recent Timeshift snapshot" 537 | msgstr "最近的Timeshift快照" 538 | 539 | #: usr/share/linuxmint/mintupgrade/mintupgrade.ui.h:12 540 | msgid "Applied software updates" 541 | msgstr "已应用软件包更新" 542 | 543 | #: usr/share/linuxmint/mintupgrade/mintupgrade.ui.h:13 544 | msgid "" 545 | "These requirements are there to guarantee a safe upgrade. Only disable them " 546 | "if you know what you are doing." 547 | msgstr "这些要求是为了保证安全升级。只有当你知道自己在做什么时才禁用它们。" 548 | 549 | #: usr/share/linuxmint/mintupgrade/mintupgrade.ui.h:14 550 | msgid "Supported Linux Mint version" 551 | msgstr "支持的 Linux Mint 版本" 552 | 553 | #: usr/share/linuxmint/mintupgrade/mintupgrade.ui.h:15 554 | msgid "Requirements" 555 | msgstr "依赖" 556 | -------------------------------------------------------------------------------- /po/mintupgrade-zh_TW.po: -------------------------------------------------------------------------------- 1 | # Chinese (Traditional) translation for linuxmint 2 | # Copyright (c) 2024 Rosetta Contributors and Canonical Ltd 2024 3 | # This file is distributed under the same license as the linuxmint package. 4 | # FIRST AUTHOR , 2024. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: linuxmint\n" 9 | "Report-Msgid-Bugs-To: FULL NAME \n" 10 | "POT-Creation-Date: 2023-09-26 14:10+0100\n" 11 | "PO-Revision-Date: 2024-02-12 09:27+0000\n" 12 | "Last-Translator: 爽自由 \n" 13 | "Language-Team: Chinese (Traditional) \n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "X-Launchpad-Export-Date: 2025-01-06 12:02+0000\n" 18 | "X-Generator: Launchpad (build 6394e03793719e8d73f5a60b5439440e693c92f1)\n" 19 | 20 | #: usr/lib/linuxmint/mintupgrade/checks.py:32 21 | #, python-format 22 | msgid "" 23 | "The package repositories need to point towards the new release (%s/%s)." 24 | msgstr "套件儲存場需指向新發行版 (%s/%s)." 25 | 26 | #: usr/lib/linuxmint/mintupgrade/checks.py:34 27 | msgid "This should have be done by the Upgrade Tool already." 28 | msgstr "升級工具應已完成工作" 29 | 30 | #: usr/lib/linuxmint/mintupgrade/checks.py:35 31 | msgid "Were the repositories modified since?" 32 | msgstr "是被更改的套件倉庫嗎?" 33 | 34 | #: usr/lib/linuxmint/mintupgrade/checks.py:36 35 | msgid "Re-run the Upgrade tool so that it migrates the repositories again." 36 | msgstr "重新執行升級工具讓它使用新轉移的儲存場" 37 | 38 | #: usr/lib/linuxmint/mintupgrade/checks.py:143 39 | msgid "Linux Mint version" 40 | msgstr "Linux Mint 版本" 41 | 42 | #: usr/lib/linuxmint/mintupgrade/checks.py:143 43 | msgid "Checking your version of Linux Mint..." 44 | msgstr "檢查 Linux Mint 版本..." 45 | 46 | #: usr/lib/linuxmint/mintupgrade/checks.py:151 47 | msgid "" 48 | "Your version of Linux Mint is unknown. /etc/linuxmint/info is missing." 49 | msgstr "現在正使用的 Linux Mint 版本不明. 找不到 /etc/linuxmint/info" 50 | 51 | #: usr/lib/linuxmint/mintupgrade/checks.py:168 52 | #, python-format 53 | msgid "Your version of Linux Mint is '%s'. Only %s can be upgraded to %s." 54 | msgstr "您的 Linux Mint 是 '%s' 版. 只有 %s 才能升級到 %s." 55 | 56 | #: usr/lib/linuxmint/mintupgrade/checks.py:174 57 | #, python-format 58 | msgid "Your edition of Linux Mint is '%s'. It cannot be upgraded to %s." 59 | msgstr "您的 Linux Mint 是 '%s' 版. 它無法升級到 %s." 60 | 61 | #: usr/lib/linuxmint/mintupgrade/checks.py:181 62 | msgid "Power source" 63 | msgstr "電源來源" 64 | 65 | #: usr/lib/linuxmint/mintupgrade/checks.py:181 66 | msgid "Checking the power source..." 67 | msgstr "檢查電源來源..." 68 | 69 | #: usr/lib/linuxmint/mintupgrade/checks.py:186 70 | msgid "Connect the computer to a power source before attempting to upgrade." 71 | msgstr "升級前請將電腦接上電源" 72 | 73 | #: usr/lib/linuxmint/mintupgrade/checks.py:192 74 | msgid "System snapshots" 75 | msgstr "系統快照" 76 | 77 | #: usr/lib/linuxmint/mintupgrade/checks.py:192 78 | msgid "Checking system snapshots..." 79 | msgstr "檢查系統快照..." 80 | 81 | #: usr/lib/linuxmint/mintupgrade/checks.py:197 82 | msgid "" 83 | "If the upgrade isn't successful, a system snapshot will allow you to go back " 84 | "in time and revert all the changes." 85 | msgstr "如果升級失敗,系統快照可讓您回復到升級前的狀態" 86 | 87 | #: usr/lib/linuxmint/mintupgrade/checks.py:198 88 | msgid "Press 'Fix' to perform a system snapshot." 89 | msgstr "輸入 'Fix' 以進行系統快照" 90 | 91 | #: usr/lib/linuxmint/mintupgrade/checks.py:214 92 | msgid "APT cache" 93 | msgstr "APT 快取" 94 | 95 | #: usr/lib/linuxmint/mintupgrade/checks.py:214 96 | msgid "Checking the APT cache..." 97 | msgstr "檢查 APT 快取..." 98 | 99 | #: usr/lib/linuxmint/mintupgrade/checks.py:232 100 | msgid "" 101 | "Your package cache can't refresh correctly. Run 'apt update' and fix the " 102 | "errors it displays." 103 | msgstr "套件快取無法正確更新,執行 apt update 並修正它列出的問題" 104 | 105 | #: usr/lib/linuxmint/mintupgrade/checks.py:241 106 | msgid "" 107 | "Some of your packages are broken. Run 'apt install -f' to fix the issue." 108 | msgstr "有些套件有破損,執行 apt install -f 修復它" 109 | 110 | #: usr/lib/linuxmint/mintupgrade/checks.py:252 111 | msgid "" 112 | "Your operating system is not up to date. Apply available updates before " 113 | "attempting the upgrade." 114 | msgstr "軟體系統不是最新狀態。 先更新完成才能升級。" 115 | 116 | #: usr/lib/linuxmint/mintupgrade/checks.py:273 117 | msgid "The following operations need to be performed:" 118 | msgstr "下列作業需先進行:" 119 | 120 | #: usr/lib/linuxmint/mintupgrade/checks.py:275 121 | #: usr/lib/linuxmint/mintupgrade/checks.py:499 122 | msgid "Package" 123 | msgstr "軟體包" 124 | 125 | #: usr/lib/linuxmint/mintupgrade/checks.py:275 126 | msgid "Operation" 127 | msgstr "運作" 128 | 129 | #: usr/lib/linuxmint/mintupgrade/checks.py:277 130 | msgid "needs to be installed" 131 | msgstr "需要安裝" 132 | 133 | #: usr/lib/linuxmint/mintupgrade/checks.py:279 134 | msgid "needs to be removed" 135 | msgstr "需移除" 136 | 137 | #: usr/lib/linuxmint/mintupgrade/checks.py:308 138 | #: usr/lib/linuxmint/mintupgrade/checks.py:588 139 | msgid "Package repositories" 140 | msgstr "軟體倉庫" 141 | 142 | #: usr/lib/linuxmint/mintupgrade/checks.py:308 143 | msgid "Checking package repositories..." 144 | msgstr "檢查軟體倉庫..." 145 | 146 | #: usr/lib/linuxmint/mintupgrade/checks.py:322 147 | msgid "" 148 | "The following sources are defined in DEB822 format. This format isn't " 149 | "supported yet." 150 | msgstr "下列來源使用未不支援 DEB822 格式" 151 | 152 | #: usr/lib/linuxmint/mintupgrade/checks.py:328 153 | msgid "Backup and then delete these files to continue." 154 | msgstr "備份並刪除後繼續。" 155 | 156 | #: usr/lib/linuxmint/mintupgrade/checks.py:356 157 | msgid "" 158 | "The following repositories do not explicitly support your version of Linux " 159 | "Mint." 160 | msgstr "下列軟體倉庫並不支援您的 Linux Mint 版本" 161 | 162 | #: usr/lib/linuxmint/mintupgrade/checks.py:364 163 | msgid "These repositories need to be disabled." 164 | msgstr "需關閉這些軟體倉庫" 165 | 166 | #: usr/lib/linuxmint/mintupgrade/checks.py:377 167 | msgid "Your APT policy is incorrect." 168 | msgstr "您的 APT 政策錯誤" 169 | 170 | #: usr/lib/linuxmint/mintupgrade/checks.py:378 171 | msgid "Reboot your computer." 172 | msgstr "重啟電腦" 173 | 174 | #: usr/lib/linuxmint/mintupgrade/checks.py:401 175 | #, python-format 176 | msgid "%s is unreachable" 177 | msgstr "%s 無法存取" 178 | 179 | #: usr/lib/linuxmint/mintupgrade/checks.py:406 180 | #, python-format 181 | msgid "%s is not up to date. Switch to a different mirror." 182 | msgstr "%s 並不是最新的,切換到其他鏡像站" 183 | 184 | #: usr/lib/linuxmint/mintupgrade/checks.py:418 185 | #, python-format 186 | msgid "%s does not support %s" 187 | msgstr "%s 不支援 %s" 188 | 189 | #: usr/lib/linuxmint/mintupgrade/checks.py:422 190 | msgid "The following problems were found:" 191 | msgstr "找到下列問題:" 192 | 193 | #: usr/lib/linuxmint/mintupgrade/checks.py:464 194 | msgid "Held packages" 195 | msgstr "靜止的軟體套件" 196 | 197 | #: usr/lib/linuxmint/mintupgrade/checks.py:464 198 | msgid "Looking for held packages..." 199 | msgstr "尋找靜止的套件..." 200 | 201 | #: usr/lib/linuxmint/mintupgrade/checks.py:470 202 | msgid "The following packages are held:" 203 | msgstr "下列套件是靜止的" 204 | 205 | #: usr/lib/linuxmint/mintupgrade/checks.py:477 206 | msgid "Held packages can break the upgrade." 207 | msgstr "靜止的套件可能會中斷升級的進行" 208 | 209 | #: usr/lib/linuxmint/mintupgrade/checks.py:491 210 | msgid "Foreign packages" 211 | msgstr "外部套件" 212 | 213 | #: usr/lib/linuxmint/mintupgrade/checks.py:491 214 | msgid "Looking for foreign packages..." 215 | msgstr "尋找外部套件..." 216 | 217 | #: usr/lib/linuxmint/mintupgrade/checks.py:497 218 | msgid "" 219 | "The following packages need to be downgraded back to official versions:" 220 | msgstr "下列套件需退回到原本的版本:" 221 | 222 | #: usr/lib/linuxmint/mintupgrade/checks.py:499 223 | msgid "Installed Version" 224 | msgstr "已安裝版本" 225 | 226 | #: usr/lib/linuxmint/mintupgrade/checks.py:499 227 | msgid "Official version" 228 | msgstr "官方版本" 229 | 230 | #: usr/lib/linuxmint/mintupgrade/checks.py:499 231 | msgid "Archive" 232 | msgstr "封存" 233 | 234 | #: usr/lib/linuxmint/mintupgrade/checks.py:504 235 | msgid "Otherwise these packages can create conflicts." 236 | msgstr "否則這些套件會造成混亂。" 237 | 238 | #: usr/lib/linuxmint/mintupgrade/checks.py:520 239 | #: usr/lib/linuxmint/mintupgrade/checks.py:556 240 | msgid "Orphan packages" 241 | msgstr "孤獨套件" 242 | 243 | #: usr/lib/linuxmint/mintupgrade/checks.py:520 244 | msgid "Looking for orphan packages..." 245 | msgstr "尋找孤獨套件..." 246 | 247 | #: usr/lib/linuxmint/mintupgrade/checks.py:540 248 | msgid "The following packages do not exist in the repositories:" 249 | msgstr "下列套件並在倉庫內:" 250 | 251 | #: usr/lib/linuxmint/mintupgrade/checks.py:546 252 | msgid "In some rare cases orphan packages can interfere with the upgrade." 253 | msgstr "有少數情況下孤獨套件會影響升級的進行。" 254 | 255 | #: usr/lib/linuxmint/mintupgrade/checks.py:547 256 | msgid "" 257 | "If you decide to uninstall some of these packages press 'Check again' after " 258 | "their removal." 259 | msgstr "如果決定要反安裝部份這些套件,在移除後再按「再次檢查」" 260 | 261 | #: usr/lib/linuxmint/mintupgrade/checks.py:548 262 | msgid "Press 'OK' to continue with the upgrade." 263 | msgstr "按「確認」繼續升級" 264 | 265 | #: usr/lib/linuxmint/mintupgrade/checks.py:556 266 | msgid "Removing newly orphaned packages..." 267 | msgstr "移除最新的孤獨套件..." 268 | 269 | #: usr/lib/linuxmint/mintupgrade/checks.py:588 270 | msgid "Pointing to the new release..." 271 | msgstr "指向新版本..." 272 | 273 | #: usr/lib/linuxmint/mintupgrade/checks.py:627 274 | msgid "Upgrade simulation" 275 | msgstr "升級模擬" 276 | 277 | #: usr/lib/linuxmint/mintupgrade/checks.py:627 278 | msgid "Simulating upgrade to check hard disk space and potential issues..." 279 | msgstr "模擬升級可檢視硬碟空間和潛在問題..." 280 | 281 | #: usr/lib/linuxmint/mintupgrade/checks.py:666 282 | msgid "The simulation was not successful." 283 | msgstr "模擬不成功。" 284 | 285 | #: usr/lib/linuxmint/mintupgrade/checks.py:667 286 | msgid "Upgrading would remove the following important packages:" 287 | msgstr "升級會移除下列重要套件:" 288 | 289 | #: usr/lib/linuxmint/mintupgrade/checks.py:668 290 | msgid "Unwanted removals" 291 | msgstr "非自願的移除" 292 | 293 | #: usr/lib/linuxmint/mintupgrade/checks.py:672 294 | msgid "" 295 | "This is a sign that something is wrong and needs to be fixed before going " 296 | "further." 297 | msgstr "這表示哪邊出了問題,必須修正後才能繼續。" 298 | 299 | #: usr/lib/linuxmint/mintupgrade/checks.py:674 300 | msgid "Recommended solution" 301 | msgstr "建議的方案" 302 | 303 | #: usr/lib/linuxmint/mintupgrade/checks.py:675 304 | msgid "Use apt-get in a terminal to troubleshoot and solve the issue." 305 | msgstr "在終端機下使用 apt-get 找出並排除問題。" 306 | 307 | #: usr/lib/linuxmint/mintupgrade/checks.py:676 308 | msgid "Don't hesitate to seek help on the forums and the chat room." 309 | msgstr "不用客氣地在論壇或聊天室尋求幫助。" 310 | 311 | #: usr/lib/linuxmint/mintupgrade/checks.py:678 312 | msgid "Additional information" 313 | msgstr "更多資訊" 314 | 315 | #: usr/lib/linuxmint/mintupgrade/checks.py:679 316 | msgid "The information below might help solve the issue." 317 | msgstr "下列資訊也許有助於解決問題。" 318 | 319 | #: usr/lib/linuxmint/mintupgrade/checks.py:680 320 | #: usr/lib/linuxmint/mintupgrade/checks.py:692 321 | msgid "Kept packages" 322 | msgstr "保留的套件" 323 | 324 | #: usr/lib/linuxmint/mintupgrade/checks.py:681 325 | #: usr/lib/linuxmint/mintupgrade/checks.py:696 326 | msgid "Removed packages" 327 | msgstr "移除的套件" 328 | 329 | #: usr/lib/linuxmint/mintupgrade/checks.py:682 330 | #: usr/lib/linuxmint/mintupgrade/checks.py:695 331 | msgid "Added packages" 332 | msgstr "新加入的套件" 333 | 334 | #: usr/lib/linuxmint/mintupgrade/checks.py:683 335 | #: usr/lib/linuxmint/mintupgrade/checks.py:691 336 | #, python-format 337 | msgid "Packages updated: %d, added: %d , kept: %d, deleted: %d" 338 | msgstr "套件 %d 更新, %d 加入 , %d 保留, %d 刪除" 339 | 340 | #: usr/lib/linuxmint/mintupgrade/checks.py:686 341 | msgid "Upgrading will perform the following changes." 342 | msgstr "升級會有下列改變。" 343 | 344 | #: usr/lib/linuxmint/mintupgrade/checks.py:694 345 | msgid "" 346 | "Note: Ideally, no packages should be kept. This might indicate an issue." 347 | msgstr "註:理想上,沒有套件會被保留,也許是有什麼問題" 348 | 349 | #: usr/lib/linuxmint/mintupgrade/checks.py:698 350 | msgid "" 351 | "Go through the list above and make sure you are happy with the removals " 352 | "before going further with the upgrade." 353 | msgstr "在升級前請仔細檢查上方要移除的套件列表,同意再進行" 354 | 355 | #: usr/lib/linuxmint/mintupgrade/checks.py:795 356 | #, python-format 357 | msgid "You need %s on '%s' but only have %s. You must free an additional %s." 358 | msgstr "您需要 %s / '%s' 但卻只有 %s 。必須清出至少 %s。" 359 | 360 | #: usr/lib/linuxmint/mintupgrade/checks.py:799 361 | #, python-format 362 | msgid "Download size: %s. Additional space needed: %s." 363 | msgstr "下載: %s 還需要 %s 的空間" 364 | 365 | #: usr/lib/linuxmint/mintupgrade/checks.py:805 366 | msgid "Package download" 367 | msgstr "下載的套件" 368 | 369 | #: usr/lib/linuxmint/mintupgrade/checks.py:805 370 | msgid "Downloading packages..." 371 | msgstr "下載套件..." 372 | 373 | #: usr/lib/linuxmint/mintupgrade/checks.py:817 374 | msgid "An error occurred while downloading the packages." 375 | msgstr "下載套件時出錯。" 376 | 377 | #: usr/lib/linuxmint/mintupgrade/checks.py:824 378 | msgid "Session inhibition" 379 | msgstr "存取禁止" 380 | 381 | #: usr/lib/linuxmint/mintupgrade/checks.py:824 382 | msgid "Inhibiting session..." 383 | msgstr "禁止存取..." 384 | 385 | #: usr/lib/linuxmint/mintupgrade/checks.py:833 386 | msgid "Upgrade preparation" 387 | msgstr "升級準備" 388 | 389 | #: usr/lib/linuxmint/mintupgrade/checks.py:833 390 | msgid "Preparing the upgrade..." 391 | msgstr "準備升級..." 392 | 393 | #: usr/lib/linuxmint/mintupgrade/checks.py:862 394 | msgid "Upgrade phase" 395 | msgstr "升級階段" 396 | 397 | #: usr/lib/linuxmint/mintupgrade/checks.py:862 398 | msgid "Upgrading the system..." 399 | msgstr "升級系統..." 400 | 401 | #: usr/lib/linuxmint/mintupgrade/checks.py:879 402 | #: usr/lib/linuxmint/mintupgrade/checks.py:885 403 | msgid "An issue was detected during the upgrade." 404 | msgstr "升級期間偵測到問題" 405 | 406 | #: usr/lib/linuxmint/mintupgrade/checks.py:904 407 | #, python-format 408 | msgid "%d packages still need to be updated (%d kept, %d deleted)" 409 | msgstr "%d 個套件需更新 (%d 保留, %d 刪除)" 410 | 411 | #: usr/lib/linuxmint/mintupgrade/checks.py:910 412 | msgid "Final phase" 413 | msgstr "最後階段" 414 | 415 | #: usr/lib/linuxmint/mintupgrade/checks.py:910 416 | msgid "Finalizing the upgrade..." 417 | msgstr "完成升級..." 418 | 419 | #: usr/lib/linuxmint/mintupgrade/checks.py:929 420 | #, python-format 421 | msgid "%s could not be installed." 422 | msgstr "無法安裝 %s" 423 | 424 | #: usr/lib/linuxmint/mintupgrade/checks.py:936 425 | msgid "mint-meta-codecs could not be installed." 426 | msgstr "無法安裝 mint-meta-codecs" 427 | 428 | #: usr/lib/linuxmint/mintupgrade/checks.py:944 429 | #: usr/lib/linuxmint/mintupgrade/checks.py:967 430 | msgid "The following packages could not be installed:" 431 | msgstr "無法安裝下列套件:" 432 | 433 | #: usr/lib/linuxmint/mintupgrade/checks.py:1030 434 | msgid "/etc/fstab was modified during the upgrade." 435 | msgstr "升級時有更動 /etc/fstab" 436 | 437 | #: usr/lib/linuxmint/mintupgrade/checks.py:1031 438 | msgid "" 439 | "To ensure a successful boot, the upgrade tool restored your original " 440 | "/etc/fstab" 441 | msgstr "為確保成功啟動,升級工具會回復原來的 /etc/fstab" 442 | 443 | #: usr/lib/linuxmint/mintupgrade/checks.py:1032 444 | msgid "A copy of the modified file was saved as /etc/fstab.upgraded" 445 | msgstr "更改的檔案被改成 /etc/fstab.upgraded" 446 | 447 | #: usr/lib/linuxmint/mintupgrade/mintupgrade.py:63 448 | #: usr/lib/linuxmint/mintupgrade/mintupgrade.py:285 generate_desktop_files:26 449 | #: usr/share/linuxmint/mintupgrade/mintupgrade.ui.h:16 450 | msgid "Upgrade Tool" 451 | msgstr "升級工具" 452 | 453 | #: usr/lib/linuxmint/mintupgrade/mintupgrade.py:74 454 | #: usr/share/linuxmint/mintupgrade/mintupgrade.ui.h:2 455 | #, python-format 456 | msgid "Upgrade to %s" 457 | msgstr "升級成 %s" 458 | 459 | #: usr/lib/linuxmint/mintupgrade/mintupgrade.py:90 460 | msgid "Preferences" 461 | msgstr "偏好設定" 462 | 463 | #: usr/lib/linuxmint/mintupgrade/mintupgrade.py:95 464 | #: usr/lib/linuxmint/mintupgrade/mintupgrade.py:284 465 | msgid "About" 466 | msgstr "關於" 467 | 468 | #: usr/lib/linuxmint/mintupgrade/mintupgrade.py:100 469 | msgid "Quit" 470 | msgstr "結束" 471 | 472 | #: usr/lib/linuxmint/mintupgrade/mintupgrade.py:144 473 | msgid "Phase 1: Preparation" 474 | msgstr "階段 1: 準備" 475 | 476 | #: usr/lib/linuxmint/mintupgrade/mintupgrade.py:145 477 | msgid "" 478 | "A series of tests will now be performed to prepare the computer for the " 479 | "upgrade." 480 | msgstr "為準備升級,將先執行一系列的測試" 481 | 482 | #: usr/lib/linuxmint/mintupgrade/mintupgrade.py:157 483 | msgid "Phase 2: Simulation and download" 484 | msgstr "階段 2: 模擬和下載" 485 | 486 | #: usr/lib/linuxmint/mintupgrade/mintupgrade.py:158 487 | msgid "Your package repositories will now point towards the new release." 488 | msgstr "套件倉庫將指向新版本。" 489 | 490 | #: usr/lib/linuxmint/mintupgrade/mintupgrade.py:159 491 | msgid "A few more tests will be run and package updates will be downloaded." 492 | msgstr "會進行一些測試後將下載升級套件" 493 | 494 | #: usr/lib/linuxmint/mintupgrade/mintupgrade.py:165 495 | msgid "Phase 3: Upgrade" 496 | msgstr "階段 3: 升級" 497 | 498 | #: usr/lib/linuxmint/mintupgrade/mintupgrade.py:166 499 | msgid "The packages will now be upgraded." 500 | msgstr "將進行套件升級" 501 | 502 | #: usr/share/linuxmint/mintupgrade/mintupgrade.ui.h:3 503 | msgid "" 504 | "This program will ask you some questions and upgrade your operating system." 505 | msgstr "程式問些問題後會升級作業系統。" 506 | 507 | #: usr/share/linuxmint/mintupgrade/mintupgrade.ui.h:4 508 | msgid "Let's go!" 509 | msgstr "開始吧!" 510 | 511 | #: usr/share/linuxmint/mintupgrade/mintupgrade.ui.h:5 512 | msgid "OK" 513 | msgstr "確定" 514 | 515 | #: usr/share/linuxmint/mintupgrade/mintupgrade.ui.h:6 516 | msgid "Fix" 517 | msgstr "修復" 518 | 519 | #: usr/share/linuxmint/mintupgrade/mintupgrade.ui.h:7 520 | msgid "Check again" 521 | msgstr "再次檢查" 522 | 523 | #: usr/share/linuxmint/mintupgrade/mintupgrade.ui.h:8 524 | msgid "The following error occurred:" 525 | msgstr "發生了下列錯誤:" 526 | 527 | #: usr/share/linuxmint/mintupgrade/mintupgrade.ui.h:9 528 | msgid "The upgrade was successful." 529 | msgstr "升級成功。" 530 | 531 | #: usr/share/linuxmint/mintupgrade/mintupgrade.ui.h:10 532 | msgid "Reboot the computer for all the changes to take effect." 533 | msgstr "重啟電腦讓更新完成" 534 | 535 | #: usr/share/linuxmint/mintupgrade/mintupgrade.ui.h:11 536 | msgid "Recent Timeshift snapshot" 537 | msgstr "最近的時光備份" 538 | 539 | #: usr/share/linuxmint/mintupgrade/mintupgrade.ui.h:12 540 | msgid "Applied software updates" 541 | msgstr "套用軟體更新" 542 | 543 | #: usr/share/linuxmint/mintupgrade/mintupgrade.ui.h:13 544 | msgid "" 545 | "These requirements are there to guarantee a safe upgrade. Only disable them " 546 | "if you know what you are doing." 547 | msgstr "下列條件有滿足才能保証有安全的升級。您要知道在幹嘛才可關閉條件。" 548 | 549 | #: usr/share/linuxmint/mintupgrade/mintupgrade.ui.h:14 550 | msgid "Supported Linux Mint version" 551 | msgstr "有支援的 Linux Mint 版本" 552 | 553 | #: usr/share/linuxmint/mintupgrade/mintupgrade.ui.h:15 554 | msgid "Requirements" 555 | msgstr "必備條件" 556 | -------------------------------------------------------------------------------- /test: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | sudo rm -rf /usr/lib/linuxmint/mintupgrade 3 | sudo rm -rf /usr/share/linuxmint/mintupgrade 4 | sudo cp -R usr / 5 | sudo mintupgrade 6 | -------------------------------------------------------------------------------- /usr/bin/mintupgrade: -------------------------------------------------------------------------------- 1 | #!/usr/bin/python3 2 | 3 | import os 4 | import subprocess 5 | import sys 6 | import datetime 7 | 8 | color_array = [ 9 | b'\033[95m', # Magenta 10 | b'\033[94m',# Light Blue 11 | b'\033[92m', # Light Green 12 | b'\033[38;5;202m', # Orange 13 | b'\033[91m', # Light Red 14 | b'\033[0m', 15 | b'\033[1m', 16 | b'\033[4m' 17 | ] 18 | 19 | # Makes sure stderr and stdout stay in order 20 | os.environ["PYTHONUNBUFFERED"] = "1" 21 | 22 | if os.getuid() != 0: 23 | print("mintupgrade needs to be run as root.") 24 | sys.exit(1) 25 | 26 | logfile = "mintupgrade-%s.log" % datetime.datetime.now().strftime("%Y-%m-%dT%H%M%S") 27 | 28 | os.system("touch %s" % logfile) 29 | os.chmod(logfile, 0o666) 30 | 31 | with subprocess.Popen("/usr/lib/linuxmint/mintupgrade/mintupgrade.py", stderr=subprocess.STDOUT, stdout=subprocess.PIPE, bufsize=0) as sub: 32 | with open(logfile, mode="wb", buffering=0) as f: 33 | buffer = b"" 34 | 35 | while True: 36 | b = sub.stdout.read(32) 37 | if not b: 38 | break 39 | 40 | sys.stdout.buffer.write(b) 41 | sys.stdout.buffer.flush() 42 | 43 | # Collect a line at a time so colors can be stripped reliably. 44 | # Look for a newline before writing. 45 | buffer += b 46 | 47 | try: 48 | newline = buffer.find(b"\n") 49 | except: 50 | continue 51 | 52 | to_write = buffer[:newline + 1] 53 | buffer = buffer[newline + 1:] 54 | 55 | for color in color_array: 56 | to_write = to_write.replace(color, b"") 57 | 58 | f.write(to_write) 59 | 60 | sys.exit(0) 61 | -------------------------------------------------------------------------------- /usr/bin/mintupgrade-inhibit-power: -------------------------------------------------------------------------------- 1 | #!/usr/bin/python3 2 | import sys 3 | import time 4 | import os 5 | import subprocess 6 | import signal 7 | 8 | from gi.repository import GLib, Gio 9 | 10 | signal.signal(signal.SIGTERM, lambda n, f: sys.exit(0)) 11 | 12 | uid = int(sys.argv[1]) 13 | os.seteuid(uid) 14 | 15 | bus = Gio.DBusConnection.new_for_address_sync("unix:path=/run/user/%d/bus" % uid, Gio.DBusConnectionFlags.AUTHENTICATION_CLIENT | Gio.DBusConnectionFlags.MESSAGE_BUS_CONNECTION, None, None) 16 | 17 | # 1: Inhibit logging out 18 | # 2: Inhibit user switching 19 | # 4: Inhibit suspending the session or computer 20 | # 8: Inhibit the session being marked as idle 21 | 22 | FLAGS = 1 | 2 | 4 | 8 23 | 24 | os.system("killall mate-screensaver") 25 | os.system("killall light-locker") 26 | edition = subprocess.getoutput("crudini --get /etc/linuxmint/info DEFAULT EDITION") 27 | edition = edition.lower().replace('"', '') 28 | 29 | if edition == "xfce": 30 | name = "org.freedesktop.PowerManagement" 31 | path = "/org/freedesktop/PowerManagement/Inhibit" 32 | iface = "org.freedesktop.PowerManagement.Inhibit" 33 | args = GLib.Variant("(ss)", ("mintupgrade", "Performing a system upgrade")) 34 | else: 35 | name = "org.gnome.SessionManager" 36 | path = "/org/gnome/SessionManager" 37 | iface = "org.gnome.SessionManager" 38 | args = GLib.Variant("(susu)", ("mintupgrade", 0, "Performing a system upgrade", FLAGS)) 39 | 40 | try: 41 | bus.call_sync(name, 42 | path, 43 | iface, 44 | "Inhibit", 45 | args, 46 | None, 47 | Gio.DBusCallFlags.NONE, 48 | 2000, 49 | None) 50 | except Exception as e: 51 | print(e) 52 | exit(1) 53 | 54 | while True: 55 | time.sleep(1) 56 | 57 | exit(0) -------------------------------------------------------------------------------- /usr/lib/linuxmint/mintupgrade/apt_utils.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/python3 2 | import apt 3 | import apt_pkg 4 | import aptsources.sourceslist 5 | import subprocess 6 | 7 | from constants import * 8 | 9 | APT_GET = 'DEBIAN_FRONTEND=noninteractive DEBIAN_PRIORITY=critical apt-get' 10 | APT_QUIET = '-fyq -o Dpkg::Options::="--force-confold" -o Dpkg::Options::="--force-overwrite"' 11 | 12 | # Returns a tuple containing two lists 13 | # The first list is a list of orphaned packages (packages which have no origin) 14 | # The second list is a list of packages which version is not the official version (this does not 15 | # include packages which simply aren't up to date) 16 | def get_foreign_packages(find_orphans=True, find_downgradable_packages=True): 17 | orphan_packages = [] 18 | orphan_t64_names = [] 19 | downgradable_packages = [] 20 | 21 | cache = apt.Cache() 22 | 23 | for key in cache.keys(): 24 | if key == "mintupgrade": 25 | # Ignore mintupgrade, so we can test foreign versions of it. 26 | continue 27 | pkg = cache[key] 28 | if (pkg.is_installed): 29 | installed_version = pkg.installed.version 30 | 31 | # Find packages which aren't downloadable 32 | if (pkg.candidate == None) or (not pkg.candidate.downloadable): 33 | if find_orphans: 34 | downloadable = False 35 | for version in pkg.versions: 36 | if version.downloadable: 37 | downloadable = True 38 | if not downloadable: 39 | t64_name = f"{pkg.name}t64" 40 | if t64_name in cache: 41 | orphan_t64_names.append(t64_name) 42 | else: 43 | orphan_packages.append([pkg, installed_version]) 44 | if (pkg.candidate != None): 45 | if find_downgradable_packages: 46 | best_version = None 47 | archive = None 48 | for version in pkg.versions: 49 | if not version.downloadable: 50 | continue 51 | for origin in version.origins: 52 | if origin.origin != None and origin.origin.lower() in ("ubuntu", "canonical", "debian", "linuxmint"): 53 | if best_version is None: 54 | best_version = version 55 | archive = origin.archive 56 | else: 57 | if version.policy_priority > best_version.policy_priority: 58 | best_version = version 59 | archive = origin.archive 60 | elif version.policy_priority == best_version.policy_priority: 61 | # same priorities, compare version 62 | return_code = subprocess.call(["dpkg", "--compare-versions", version.version, "gt", best_version.version]) 63 | if return_code == 0: 64 | best_version = version 65 | archive = origin.archive 66 | 67 | if best_version != None and installed_version != best_version and pkg.candidate.version != best_version.version: 68 | downgradable_packages.append([pkg, installed_version, best_version, archive]) 69 | 70 | return (orphan_packages, orphan_t64_names, downgradable_packages) 71 | 72 | # Returns a list of held packages 73 | def get_held_packages(): 74 | held_packages = [] 75 | cache = apt.Cache() 76 | for key in cache.keys(): 77 | pkg = cache[key] 78 | if pkg._pkg.selected_state == apt_pkg.SELSTATE_HOLD: 79 | held_packages.append(pkg) 80 | return (held_packages) 81 | 82 | # Returns True if and only if 83 | # APT points to the Mint and base destination codenames 84 | def apt_points_to_destination(): 85 | apt_pkg.init_config() 86 | sources = aptsources.sourceslist.SourcesList(withMatcher=False) 87 | mint_points_to_dest = False 88 | base_points_to_dest = False 89 | for source in sources: 90 | if source.disabled: 91 | # commented out repos 92 | continue 93 | if source.uri == "": 94 | # repos file entries themselves 95 | continue 96 | if DESTINATION_CODENAME in source.dist: 97 | mint_points_to_dest = True 98 | elif DESTINATION_BASE_CODENAME in source.dist: 99 | base_points_to_dest = True 100 | if mint_points_to_dest and base_points_to_dest: 101 | return True 102 | else: 103 | return False 104 | 105 | if __name__ == "__main__": 106 | # orphans, foreign = get_foreign_packages() 107 | # if len(orphans) > 0: 108 | # print("Orphan packages:") 109 | # for pkg in orphans: 110 | # print(" ", pkg) 111 | # if len(foreign) > 0: 112 | # print ("Foreign packages:") 113 | # for pkg in foreign: 114 | # print(" ", pkg) 115 | 116 | held = get_held_packages() 117 | if len(held) > 0: 118 | print("Held packages:") 119 | for pkg in held: 120 | print(" ", pkg.name) 121 | -------------------------------------------------------------------------------- /usr/lib/linuxmint/mintupgrade/common.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/python3 2 | import threading 3 | from gi.repository import GObject 4 | 5 | # Used as a decorator to run things in the background 6 | def async_function(func): 7 | def wrapper(*args, **kwargs): 8 | thread = threading.Thread(target=func, args=args, kwargs=kwargs) 9 | thread.daemon = True 10 | thread.start() 11 | return thread 12 | return wrapper 13 | 14 | # Used as a decorator to run things in the main loop, from another thread 15 | def idle_function(func): 16 | def wrapper(*args): 17 | GObject.idle_add(func, *args) 18 | return wrapper 19 | 20 | -------------------------------------------------------------------------------- /usr/lib/linuxmint/mintupgrade/constants.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/python3 2 | import os 3 | 4 | RESULT_SUCCESS, RESULT_INFO, RESULT_WARNING, RESULT_ERROR, RESULT_EXCEPTION = range(5) 5 | 6 | IS_LMDE = os.path.exists("/usr/share/doc/debian-system-adjustments/copyright") 7 | if IS_LMDE: 8 | from constants_lmde import * 9 | else: 10 | from constants_mint import * 11 | 12 | BACKUP_FSTAB = os.path.expanduser("~/.fstab.bk") 13 | BACKUP_LOCALEDEF = os.path.expanduser("~/.localedef.bk") 14 | 15 | APT_CACHER_NG_HTTPS = 'http://HTTPS///' 16 | -------------------------------------------------------------------------------- /usr/lib/linuxmint/mintupgrade/constants_lmde.py: -------------------------------------------------------------------------------- 1 | ORIGIN = "LMDE 5 'Elsie'" 2 | ORIGIN_CODENAME = "elsie" 3 | ORIGIN_BASE_CODENAME = "bullseye" 4 | 5 | DESTINATION = "LMDE 6 'Faye'" 6 | DESTINATION_CODENAME = "faye" 7 | DESTINATION_BASE_CODENAME = "bookworm" 8 | 9 | SUPPORTED_EDITIONS = ["cinnamon"] 10 | 11 | CHECK_ABSENT = [] 12 | 13 | CHECK_PRESENT = ["os-prober"] 14 | CHECK_UP_TO_DATE = ["mintupgrade", "apt", "dpkg", "linuxmint-keyring", "debian-keyring", "debian-archive-keyring", "mintsystem"] 15 | 16 | KERNEL_META_32 = ["linux-image-686", "linux-headers-686"] 17 | KERNEL_META_64 = ["linux-image-amd64", "linux-headers-amd64"] 18 | 19 | PACKAGES_PRE_REMOVALS = [] 20 | 21 | PACKAGES_ADDITIONS = [ 22 | "wmctrl", 23 | "mint-l-theme", 24 | "mint-l-icons", 25 | "heif-gdk-pixbuf", 26 | "xdg-desktop-portal-xapp", 27 | "switcheroo-control", 28 | "mint-backgrounds-victoria", 29 | "systemd-timesyncd", 30 | "pipewire-audio", 31 | "touchegg", 32 | "zstd", 33 | "yt-dlp" 34 | ] 35 | 36 | PACKAGES_REMOVALS = [ 37 | "gnome-font-viewer", 38 | "gnome-control-center", 39 | "desktop-base", 40 | "malcontent" 41 | ] 42 | 43 | IMPORTANT_PACKAGES = [ 44 | "mint-meta-cinnamon", 45 | "mint-meta-mate", 46 | "mint-meta-xfce", 47 | "xreader", 48 | "xed", 49 | "xviewer", 50 | "pix", 51 | "mintsystem", 52 | "metacity", 53 | "nemo-preview", 54 | "mintdrivers", 55 | "mintupdate", 56 | "mintsources", 57 | "mintinstall", 58 | "ubuntu-system-adjustments", 59 | "debian-system-adjustments", 60 | "cinnamon", 61 | "cinnamon-control-center", 62 | "cinnamon-session", 63 | "cinnamon-settings-daemon", 64 | "cinnamon-screensaver", 65 | "cjs", 66 | "nemo", 67 | "xfwm4", 68 | "mate-panel", 69 | "marco", 70 | "caja", 71 | "mate-settings-daemon", 72 | "xfce4-xapp-status-plugin", 73 | "gnome-calendar", 74 | "onboard", 75 | "lightdm", 76 | "slick-greeter", 77 | "plymouth" 78 | ] 79 | 80 | NEW_ORPHANS_TO_KEEP = [ 81 | "dnscrypt-proxy" 82 | ] -------------------------------------------------------------------------------- /usr/lib/linuxmint/mintupgrade/constants_mint.py: -------------------------------------------------------------------------------- 1 | ORIGIN = "Linux Mint 21.3 'Virginia'" 2 | ORIGIN_CODENAME = "virginia" 3 | ORIGIN_BASE_CODENAME = "jammy" 4 | 5 | DESTINATION = "Linux Mint 22 'Wilma'" 6 | DESTINATION_CODENAME = "wilma" 7 | DESTINATION_BASE_CODENAME = "noble" 8 | 9 | SUPPORTED_EDITIONS = ["cinnamon", "mate", "xfce"] 10 | 11 | CHECK_ABSENT = ["ippusbxd"] 12 | 13 | CHECK_PRESENT = ["os-prober"] 14 | CHECK_UP_TO_DATE = ["mintupgrade", "apt", "dpkg", "linuxmint-keyring", "ubuntu-keyring", "mintsystem"] 15 | 16 | KERNEL_META_32 = ["linux-generic"] 17 | KERNEL_META_64 = ["linux-generic"] 18 | 19 | PACKAGES_PRE_REMOVALS = [] 20 | 21 | PACKAGES_ADDITIONS = [ 22 | "celluloid", 23 | "fonts-noto-core", 24 | "gnome-online-accounts-gtk", 25 | "hplip", 26 | "hypnotix", 27 | "pipewire-alsa", 28 | "pipewire-audio", 29 | "pipewire-pulse", 30 | "simple-scan", 31 | "systemd-timesyncd", 32 | "wireplumber", 33 | "xapp-jxl-thumbnailer", 34 | "xcvt", 35 | "yt-dlp", 36 | "zstd" 37 | ] 38 | 39 | PACKAGES_ADDITIONS_CINNAMON = [ 40 | "nemo-preview" 41 | ] 42 | 43 | PACKAGES_ADDITIONS_MATE = [] 44 | 45 | PACKAGES_ADDITIONS_XFCE = [] 46 | 47 | PACKAGES_REMOVALS = [ 48 | "gnome-font-viewer", 49 | "gnome-logs", 50 | "gstreamer1.0-pulseaudio", 51 | "ntp", 52 | "ntpdate", 53 | "postfix", 54 | "pulseaudio", 55 | "pulseaudio-module-bluetooth", 56 | "qt5ct", 57 | "redshift-gtk", 58 | "xfce4-statusnotifier-plugin", 59 | "xfce4-volumed", 60 | "youtube-dl" 61 | ] 62 | 63 | IMPORTANT_PACKAGES = [ 64 | "mint-meta-cinnamon", 65 | "mint-meta-mate", 66 | "mint-meta-xfce", 67 | "xreader", 68 | "xed", 69 | "xviewer", 70 | "pix", 71 | "mintsystem", 72 | "metacity", 73 | "nemo-preview", 74 | "mintdrivers", 75 | "mintupdate", 76 | "mintsources", 77 | "mintinstall", 78 | "ubuntu-system-adjustments", 79 | "debian-system-adjustments", 80 | "cinnamon", 81 | "cinnamon-control-center", 82 | "cinnamon-session", 83 | "cinnamon-settings-daemon", 84 | "cinnamon-screensaver", 85 | "cjs", 86 | "nemo", 87 | "xfwm4", 88 | "mate-panel", 89 | "marco", 90 | "caja", 91 | "mate-settings-daemon", 92 | "xfce4-xapp-status-plugin", 93 | "gnome-calendar", 94 | "onboard", 95 | "lightdm", 96 | "slick-greeter", 97 | "plymouth" 98 | ] 99 | 100 | NEW_ORPHANS_TO_KEEP = [] -------------------------------------------------------------------------------- /usr/lib/linuxmint/mintupgrade/mintupgrade.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/python3 2 | import gettext 3 | import gi 4 | import locale 5 | import os 6 | import setproctitle 7 | import warnings 8 | 9 | # Suppress GTK deprecation warnings 10 | warnings.filterwarnings("ignore") 11 | 12 | gi.require_version("Gtk", "3.0") 13 | gi.require_version('XApp', '1.0') 14 | from gi.repository import Gtk, Gdk, Gio, XApp 15 | 16 | from common import * 17 | from constants import * 18 | from checks import * 19 | from apt_utils import * 20 | 21 | setproctitle.setproctitle("mintupgrade") 22 | 23 | # i18n 24 | APP = 'mintupgrade' 25 | LOCALE_DIR = "/usr/share/locale" 26 | locale.bindtextdomain(APP, LOCALE_DIR) 27 | gettext.bindtextdomain(APP, LOCALE_DIR) 28 | gettext.textdomain(APP) 29 | _ = gettext.gettext 30 | 31 | 32 | class MyApplication(Gtk.Application): 33 | 34 | def __init__(self, application_id, flags): 35 | Gtk.Application.__init__(self, application_id=application_id, flags=flags) 36 | self.connect("activate", self.activate) 37 | 38 | def activate(self, application): 39 | windows = self.get_windows() 40 | if (len(windows) > 0): 41 | window = windows[0] 42 | window.present() 43 | window.show() 44 | else: 45 | window = MainWindow(self) 46 | self.add_window(window.window) 47 | window.window.show() 48 | 49 | css_provider = Gtk.CssProvider() 50 | css_provider.load_from_path("/usr/share/linuxmint/mintupgrade/style.css") 51 | Gtk.StyleContext.add_provider_for_screen( 52 | Gdk.Screen.get_default(), 53 | css_provider, 54 | Gtk.STYLE_PROVIDER_PRIORITY_APPLICATION 55 | ) 56 | 57 | class MainWindow(): 58 | 59 | def __init__(self, application): 60 | 61 | self.application = application 62 | self.settings = Gio.Settings(schema_id="com.linuxmint.mintupgrade") 63 | 64 | # Main UI 65 | gladefile = "/usr/share/linuxmint/mintupgrade/mintupgrade.ui" 66 | self.builder = Gtk.Builder() 67 | self.builder.set_translation_domain(APP) 68 | self.builder.add_from_file(gladefile) 69 | self.window = self.builder.get_object("main_window") 70 | self.window.connect("delete-event", self.on_window_close) 71 | self.window.set_title(_("Upgrade Tool")) 72 | self.window.set_icon_name("mintupgrade") 73 | self.stack = self.builder.get_object("stack") 74 | self.builder.get_object("headerbar").set_subtitle(DESTINATION) 75 | 76 | # CSS 77 | provider = Gtk.CssProvider() 78 | provider.load_from_path("/usr/share/linuxmint/mintupgrade/mintupgrade.css") 79 | screen = Gdk.Display.get_default_screen(Gdk.Display.get_default()) 80 | Gtk.StyleContext.add_provider_for_screen(screen, provider, Gtk.STYLE_PROVIDER_PRIORITY_APPLICATION) 81 | 82 | self.builder.get_object("label_welcome").set_text(_("Upgrade to %s") % DESTINATION) 83 | 84 | # Widget signals 85 | self.window.connect("key-press-event",self.on_key_press_event) 86 | 87 | # preferences 88 | self.settings.bind("check-timeshift", self.builder.get_object("timeshift_switch"), "active", Gio.SettingsBindFlags.DEFAULT) 89 | self.settings.bind("check-updates", self.builder.get_object("updates_switch"), "active", Gio.SettingsBindFlags.DEFAULT) 90 | self.settings.bind("check-version", self.builder.get_object("version_switch"), "active", Gio.SettingsBindFlags.DEFAULT) 91 | 92 | # Menubar 93 | accel_group = Gtk.AccelGroup() 94 | self.window.add_accel_group(accel_group) 95 | menu = self.builder.get_object("main_menu") 96 | item = Gtk.ImageMenuItem() 97 | item.set_image(Gtk.Image.new_from_icon_name("preferences-system-symbolic", Gtk.IconSize.MENU)) 98 | item.set_label(_("Preferences")) 99 | item.connect("activate", self.open_preferences) 100 | menu.append(item) 101 | item = Gtk.ImageMenuItem() 102 | item.set_image(Gtk.Image.new_from_icon_name("help-about-symbolic", Gtk.IconSize.MENU)) 103 | item.set_label(_("About")) 104 | item.connect("activate", self.open_about) 105 | key, mod = Gtk.accelerator_parse("F1") 106 | item.add_accelerator("activate", accel_group, key, mod, Gtk.AccelFlags.VISIBLE) 107 | menu.append(item) 108 | item = Gtk.ImageMenuItem(label=_("Quit")) 109 | image = Gtk.Image.new_from_icon_name("application-exit-symbolic", Gtk.IconSize.MENU) 110 | item.set_image(image) 111 | item.connect('activate', self.on_menu_quit) 112 | key, mod = Gtk.accelerator_parse("Q") 113 | item.add_accelerator("activate", accel_group, key, mod, Gtk.AccelFlags.VISIBLE) 114 | key, mod = Gtk.accelerator_parse("W") 115 | item.add_accelerator("activate", accel_group, key, mod, Gtk.AccelFlags.VISIBLE) 116 | menu.append(item) 117 | menu.show_all() 118 | 119 | self.window.show() 120 | 121 | self.builder.get_object("go_back_button").hide() 122 | self.builder.get_object("go_back_button").connect("clicked", self.go_back) 123 | 124 | self.builder.get_object("button_lets_go").connect("clicked", self.letsgo) 125 | 126 | self.last_check = None # the last check which finished 127 | self.builder.get_object("error_check_button").connect("clicked", self.check_again) 128 | self.builder.get_object("error_fix_button").connect("clicked", self.fix_check) 129 | self.builder.get_object("error_ok_button").connect("clicked", self.check_ok) 130 | self.builder.get_object("upgrade_stack").set_visible_child_name("page_welcome") 131 | 132 | def check_again(self, button): 133 | if self.last_check != None: 134 | self.builder.get_object("upgrade_stack").set_visible_child_name("page_spinner") 135 | self.last_check.run() 136 | 137 | def fix_check(self, button): 138 | if self.last_check != None: 139 | self.builder.get_object("upgrade_stack").set_visible_child_name("page_spinner") 140 | self.last_check.run_fix() 141 | 142 | def check_ok(self, button): 143 | if self.last_check != None: 144 | self.run_next_check() 145 | 146 | def letsgo(self, button): 147 | self.checks = [] 148 | pre_upgrade_orphans = [] 149 | skip = apt_points_to_destination() 150 | if skip: 151 | print("Note: The APT repositories point towards the destination.") 152 | info = ShowInfoCheck(_("Phase 1: Preparation"), callback=self.process_check_result) 153 | info.message = _("A series of tests will now be performed to prepare the computer for the upgrade.") 154 | self.checks.append(info) 155 | self.checks.append(VersionCheck(callback=self.process_check_result)) 156 | self.checks.append(PowerCheck(callback=self.process_check_result)) 157 | if not skip: 158 | self.checks.append(APTCacheCheck(self.window, callback=self.process_check_result)) 159 | self.checks.append(TimeshiftCheck(callback=self.process_check_result)) 160 | self.checks.append(APTHeldCheck(callback=self.process_check_result)) 161 | self.checks.append(APTRepoCheck(callback=self.process_check_result)) 162 | if not skip: 163 | self.checks.append(APTForeignCheck(callback=self.process_check_result)) 164 | self.checks.append(APTOrphanCheck(pre_upgrade_orphans, self.process_check_result)) 165 | info = ShowInfoCheck(_("Phase 2: Simulation and download"), callback=self.process_check_result) 166 | info.message = "%s\n%s" % (_("Your package repositories will now point towards the new release."), _("A few more tests will be run and package updates will be downloaded.")) 167 | self.checks.append(info) 168 | self.checks.append(UpdateReposCheck(callback=self.process_check_result)) 169 | self.checks.append(APTCacheCheck(self.window, callback=self.process_check_result)) 170 | self.checks.append(SimulateUpgradeCheck(callback=self.process_check_result)) 171 | self.checks.append(DownloadCheck(self.window, callback=self.process_check_result)) 172 | info = ShowInfoCheck(_("Phase 3: Upgrade"), callback=self.process_check_result) 173 | info.message = _("The packages will now be upgraded.") 174 | self.checks.append(info) 175 | self.checks.append(InhibitCheck(callback=self.process_check_result)) 176 | self.checks.append(PreUpgradeCheck(callback=self.process_check_result)) 177 | self.checks.append(DistUpgradeCheck(callback=self.process_check_result)) 178 | self.checks.append(APTForeignCheck(callback=self.process_check_result)) 179 | if not skip: 180 | # Only remove orphans if we started the upgrade pointing at the origin repos 181 | # otherwise pre_upgrade_orphans would be empty and we could remove wanted orphan pkgs. 182 | self.checks.append(APTRemoveOrphansCheck(pre_upgrade_orphans, self.process_check_result)) 183 | self.checks.append(PostUpgradeCheck(callback=self.process_check_result)) 184 | self.run_next_check() 185 | 186 | def run_next_check(self): 187 | if len(self.checks) > 0: 188 | check = self.checks[0] 189 | self.builder.get_object("upgrade_stack").set_visible_child_name("page_spinner") 190 | self.builder.get_object("label_check_title").set_text(check.title) 191 | self.builder.get_object("label_check_description").set_text(check.description) 192 | check.run() 193 | else: 194 | print("Upgrade successful! You can now close this terminal and reboot your computer.") 195 | self.builder.get_object("upgrade_stack").set_visible_child_name("page_ready") 196 | 197 | @idle_function 198 | def process_check_result(self, check): 199 | self.last_check = check 200 | if check.result == RESULT_SUCCESS: 201 | print("Check succeeded: ", check.title) 202 | if check in self.checks: 203 | self.checks.remove(check) 204 | self.run_next_check() 205 | elif check.result == RESULT_EXCEPTION: 206 | self.builder.get_object("upgrade_stack").set_visible_child_name("page_exception") 207 | self.builder.get_object("label_stacktrace").set_text(check.message) 208 | else: 209 | self.builder.get_object("upgrade_stack").set_visible_child_name("page_error") 210 | self.builder.get_object("label_error_title").set_text(check.title) 211 | self.builder.get_object("label_error_text").set_text(check.message) 212 | self.builder.get_object("error_check_button").set_visible(check.allow_recheck) 213 | self.builder.get_object("error_ok_button").set_visible(False) 214 | if check.result == RESULT_ERROR: 215 | self.builder.get_object("image_error").set_from_icon_name("dialog-error", Gtk.IconSize.DIALOG) 216 | elif check.result == RESULT_WARNING: 217 | self.builder.get_object("image_error").set_from_icon_name("dialog-warning", Gtk.IconSize.DIALOG) 218 | elif check.result == RESULT_INFO: 219 | self.builder.get_object("error_ok_button").set_visible(True) 220 | self.builder.get_object("image_error").set_from_icon_name("dialog-info", Gtk.IconSize.DIALOG) 221 | if check in self.checks: 222 | self.checks.remove(check) 223 | 224 | # Show info if any 225 | box_info = self.builder.get_object("box_info") 226 | for child in box_info.get_children(): 227 | child.destroy() 228 | for info in check.info: 229 | if isinstance(info, str): 230 | if info == "---": 231 | widget = Gtk.Separator() 232 | else: 233 | widget = Gtk.Label() 234 | widget.set_markup(info) 235 | widget.set_line_wrap(True) 236 | elif isinstance(info, TableList): 237 | widget = Gtk.ScrolledWindow() 238 | widget.set_min_content_width(400) 239 | widget.set_min_content_height(200) 240 | widget.set_shadow_type(Gtk.ShadowType.IN) 241 | treeview = Gtk.TreeView() 242 | treeview.set_headers_visible(info.show_column_names) 243 | widget.add(treeview) 244 | index = 0 245 | types = [] 246 | for name in info.columns: 247 | column = Gtk.TreeViewColumn(name, Gtk.CellRendererText(), text=index) 248 | treeview.append_column(column) 249 | index += 1 250 | types.append(str) 251 | model = Gtk.ListStore() 252 | model.set_column_types(types) 253 | model.set_sort_column_id(0, Gtk.SortType.ASCENDING) 254 | for value in info.values: 255 | iter = model.insert_before(None, None) 256 | index = 0 257 | for subval in value: 258 | model.set_value(iter, index, subval) 259 | index += 1 260 | treeview.set_model(model) 261 | box_info.pack_start(widget, False, False, 0) 262 | box_info.show_all() 263 | if len(check.info) > 0: 264 | self.builder.get_object("scroll_info").show_all() 265 | else: 266 | self.builder.get_object("scroll_info").hide() 267 | if check.message == "": 268 | self.builder.get_object("label_error_text").hide() 269 | else: 270 | self.builder.get_object("label_error_text").show() 271 | # Activate Fix button if appropriate 272 | self.builder.get_object("error_fix_button").set_visible(check.fix != None) 273 | 274 | @idle_function 275 | def navigate_to(self, page, name=""): 276 | if page == "main_page": 277 | self.builder.get_object("go_back_button").hide() 278 | else: 279 | self.builder.get_object("go_back_button").show() 280 | self.stack.set_visible_child_name(page) 281 | 282 | def open_preferences(self, widget): 283 | self.navigate_to("preferences_page") 284 | 285 | def go_back(self, widget): 286 | self.navigate_to("main_page") 287 | 288 | def open_about(self, widget): 289 | dlg = Gtk.AboutDialog() 290 | dlg.set_transient_for(self.window) 291 | dlg.set_title(_("About")) 292 | dlg.set_program_name(_("Upgrade Tool")) 293 | dlg.set_comments("mintupgrade") 294 | try: 295 | h = open('/usr/share/common-licenses/GPL', encoding="utf-8") 296 | s = h.readlines() 297 | gpl = "" 298 | for line in s: 299 | gpl += line 300 | h.close() 301 | dlg.set_license(gpl) 302 | except Exception as e: 303 | print (e) 304 | 305 | dlg.set_version("__DEB_VERSION__") 306 | dlg.set_icon_name("mintupgrade") 307 | dlg.set_logo_icon_name("mintupgrade") 308 | def close(w, res): 309 | if res == Gtk.ResponseType.CANCEL or res == Gtk.ResponseType.DELETE_EVENT: 310 | w.destroy() 311 | dlg.connect("response", close) 312 | dlg.show() 313 | 314 | def on_window_close(self, widget, event): 315 | self.cleanup_and_exit() 316 | 317 | def on_menu_quit(self, widget): 318 | self.cleanup_and_exit() 319 | 320 | def cleanup_and_exit(self): 321 | os.system("killall mintupgrade-inhibit-power") 322 | self.application.quit() 323 | 324 | def on_key_press_event(self, widget, event): 325 | persistant_modifiers = Gtk.accelerator_get_default_mod_mask() 326 | modifier = event.get_state() & persistant_modifiers 327 | ctrl = modifier == Gdk.ModifierType.CONTROL_MASK 328 | shift = modifier == Gdk.ModifierType.SHIFT_MASK 329 | 330 | if ctrl and event.keyval == Gdk.KEY_r: 331 | # Ctrl + R 332 | pass 333 | elif ctrl and event.keyval == Gdk.KEY_f: 334 | # Ctrl + F 335 | pass 336 | elif event.keyval == Gdk.KEY_F11: 337 | # F11.. 338 | pass 339 | 340 | if __name__ == "__main__": 341 | application = MyApplication("com.linuxmint.mintupgrade", Gio.ApplicationFlags.FLAGS_NONE) 342 | application.run() 343 | -------------------------------------------------------------------------------- /usr/share/applications/mintupgrade.desktop: -------------------------------------------------------------------------------- 1 | [Desktop Entry] 2 | Name=Upgrade Tool 3 | Name[am]=የ ማሻሻያ መሳሪያዎች 4 | Name[ar]=اداة الترقية 5 | Name[ast]=Ferramienta d'anovamientu 6 | Name[be]=Абнаўленне 7 | Name[ca]=Eina d'actualització 8 | Name[cs]=Nástroj pro upgrade 9 | Name[cy]=Teclyn Diweddaru 10 | Name[da]=Opgraderingsværktøj 11 | Name[de]=Aktualisierungswerkzeug 12 | Name[el]=Εργαλείο αναβάθμισης 13 | Name[eo]=Promociilo 14 | Name[es]=Herramienta de actualización 15 | Name[et]=Uuendamise tööriist 16 | Name[eu]=Bertsio-berritze tresna 17 | Name[fi]=Versiopäivitys työkalu 18 | Name[fr]=Outil de mise à niveau 19 | Name[fr_CA]=Outil de mise à niveau 20 | Name[he]=כלי שדרוג 21 | Name[hi]=अपग्रेड साधन 22 | Name[hr]=Alat nadogradnje 23 | Name[hu]=Rendszermegújító 24 | Name[ia]=Instrumento de modernisation 25 | Name[id]=Perangkat Pemutakhiran 26 | Name[ie]=Actualisation del version 27 | Name[is]=Uppfærsluforrit 28 | Name[it]=Strumento di aggiornamento 29 | Name[ja]=アップグレードツール 30 | Name[ko]=업그레이드 도구 31 | Name[nb]=Oppgraderingsverktøy 32 | Name[nl]=Opwaarderingsgereedschap 33 | Name[oc]=Aisina de mesa a nivèl 34 | Name[pl]=Narzędzie aktualizacji 35 | Name[pt]=Ferramenta de atualização 36 | Name[pt_BR]=Ferramenta de atualização 37 | Name[ro]=Instrument de actualizare 38 | Name[ru]=Средство обновления версии 39 | Name[sk]=Nástroj na povýšenie verzie systému 40 | Name[sl]=Orodje za nadgradnjo 41 | Name[sr]=Алат за надоградњу 42 | Name[sv]=Uppgraderingsverktyg 43 | Name[tr]=Yükseltme Aracı 44 | Name[uk]=Засіб оновлення 45 | Name[uz]=Yangilash vositasi 46 | Name[vi]=Công cụ nâng cấp 47 | Name[zh_CN]=升级工具 48 | Name[zh_TW]=升級工具 49 | Comment=Upgrade Tool 50 | Comment[am]=የ ማሻሻያ መሳሪያዎች 51 | Comment[ar]=اداة الترقية 52 | Comment[ast]=Ferramienta d'anovamientu 53 | Comment[be]=Абнаўленне 54 | Comment[ca]=Eina d'actualització 55 | Comment[cs]=Nástroj pro upgrade 56 | Comment[cy]=Teclyn Diweddaru 57 | Comment[da]=Opgraderingsværktøj 58 | Comment[de]=Aktualisierungswerkzeug 59 | Comment[el]=Εργαλείο αναβάθμισης 60 | Comment[eo]=Promociilo 61 | Comment[es]=Herramienta de actualización 62 | Comment[et]=Uuendamise tööriist 63 | Comment[eu]=Bertsio-berritze tresna 64 | Comment[fi]=Versiopäivitys työkalu 65 | Comment[fr]=Outil de mise à niveau 66 | Comment[fr_CA]=Outil de mise à niveau 67 | Comment[he]=כלי שדרוג 68 | Comment[hi]=अपग्रेड साधन 69 | Comment[hr]=Alat nadogradnje 70 | Comment[hu]=Rendszermegújító 71 | Comment[ia]=Instrumento de modernisation 72 | Comment[id]=Perangkat Pemutakhiran 73 | Comment[ie]=Actualisation del version 74 | Comment[is]=Uppfærsluforrit 75 | Comment[it]=Strumento di aggiornamento 76 | Comment[ja]=アップグレードツール 77 | Comment[ko]=업그레이드 도구 78 | Comment[nb]=Oppgraderingsverktøy 79 | Comment[nl]=Opwaarderingsgereedschap 80 | Comment[oc]=Aisina de mesa a nivèl 81 | Comment[pl]=Narzędzie aktualizacji 82 | Comment[pt]=Ferramenta de atualização 83 | Comment[pt_BR]=Ferramenta de atualização 84 | Comment[ro]=Instrument de actualizare 85 | Comment[ru]=Средство обновления версии 86 | Comment[sk]=Nástroj na povýšenie verzie systému 87 | Comment[sl]=Orodje za nadgradnjo 88 | Comment[sr]=Алат за надоградњу 89 | Comment[sv]=Uppgraderingsverktyg 90 | Comment[tr]=Yükseltme Aracı 91 | Comment[uk]=Засіб оновлення 92 | Comment[uz]=Yangilash vositasi 93 | Comment[vi]=Công cụ nâng cấp 94 | Comment[zh_CN]=升级工具 95 | Comment[zh_TW]=升級工具 96 | Exec=bash -c 'sudo mintupgrade;$SHELL' 97 | Icon=mintupgrade 98 | Terminal=true 99 | Type=Application 100 | Encoding=UTF-8 101 | Categories=GTK;GNOME;Utility;X-GNOME-Utilities; 102 | Keywords=project;keywords; 103 | StartupNotify=false 104 | NoDisplay=true 105 | -------------------------------------------------------------------------------- /usr/share/glib-2.0/schemas/com.linuxmint.mintupgrade.gschema.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | true 6 | 7 | 8 | 9 | 10 | true 11 | 12 | 13 | 14 | 15 | true 16 | 17 | 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /usr/share/linuxmint/mintupgrade/mintupgrade.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linuxmint/mintupgrade/059bbc67d468c1814a2fbf834f4ac42eb229801c/usr/share/linuxmint/mintupgrade/mintupgrade.css -------------------------------------------------------------------------------- /usr/share/linuxmint/mintupgrade/style.css: -------------------------------------------------------------------------------- 1 | * { 2 | font-family: Sans; 3 | } 4 | --------------------------------------------------------------------------------